diff --git a/perf_tests/compute_air.py-2024-03-03T07:42:36+05:30.svg b/perf_tests/compute_air.py-2024-03-03T07:42:36+05:30.svg new file mode 100644 index 0000000..cc1780f --- /dev/null +++ b/perf_tests/compute_air.py-2024-03-03T07:42:36+05:30.svg @@ -0,0 +1,415 @@ +<?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="2090" onload="init(evt)" viewBox="0 0 1200 2090" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2090" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./compute_air.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2079.00"> </text><svg id="frames" x="10" width="1180" total_samples="267"><g><title>Databricks (sqlglot/dialects/databricks.py:10) (1 samples, 0.37%)</title><rect x="3.7453%" y="724" width="0.3745%" height="15" fill="rgb(227,0,7)" fg:x="10" fg:w="1"/><text x="3.9953%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.37%)</title><rect x="3.7453%" y="740" width="0.3745%" height="15" fill="rgb(217,0,24)" fg:x="10" fg:w="1"/><text x="3.9953%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.37%)</title><rect x="3.7453%" y="756" width="0.3745%" height="15" fill="rgb(221,193,54)" fg:x="10" fg:w="1"/><text x="3.9953%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.37%)</title><rect x="3.7453%" y="772" width="0.3745%" height="15" fill="rgb(248,212,6)" fg:x="10" fg:w="1"/><text x="3.9953%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.37%)</title><rect x="3.7453%" y="788" width="0.3745%" height="15" fill="rgb(208,68,35)" fg:x="10" fg:w="1"/><text x="3.9953%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/databricks.py:1) (2 samples, 0.75%)</title><rect x="3.7453%" y="708" width="0.7491%" height="15" fill="rgb(232,128,0)" fg:x="10" fg:w="2"/><text x="3.9953%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="4.1199%" y="724" width="0.3745%" height="15" fill="rgb(207,160,47)" fg:x="11" fg:w="1"/><text x="4.3699%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="4.1199%" y="740" width="0.3745%" height="15" fill="rgb(228,23,34)" fg:x="11" fg:w="1"/><text x="4.3699%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="4.1199%" y="756" width="0.3745%" height="15" fill="rgb(218,30,26)" fg:x="11" fg:w="1"/><text x="4.3699%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="4.1199%" y="772" width="0.3745%" height="15" fill="rgb(220,122,19)" fg:x="11" fg:w="1"/><text x="4.3699%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="4.1199%" y="788" width="0.3745%" height="15" fill="rgb(250,228,42)" fg:x="11" fg:w="1"/><text x="4.3699%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/spark.py:1) (1 samples, 0.37%)</title><rect x="4.1199%" y="804" width="0.3745%" height="15" fill="rgb(240,193,28)" fg:x="11" fg:w="1"/><text x="4.3699%" y="814.50"></text></g><g><title>Spark (sqlglot/dialects/spark.py:37) (1 samples, 0.37%)</title><rect x="4.1199%" y="820" width="0.3745%" height="15" fill="rgb(216,20,37)" fg:x="11" fg:w="1"/><text x="4.3699%" y="830.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.37%)</title><rect x="4.1199%" y="836" width="0.3745%" height="15" fill="rgb(206,188,39)" fg:x="11" fg:w="1"/><text x="4.3699%" y="846.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.37%)</title><rect x="4.1199%" y="852" width="0.3745%" height="15" fill="rgb(217,207,13)" fg:x="11" fg:w="1"/><text x="4.3699%" y="862.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.37%)</title><rect x="4.1199%" y="868" width="0.3745%" height="15" fill="rgb(231,73,38)" fg:x="11" fg:w="1"/><text x="4.3699%" y="878.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.37%)</title><rect x="4.1199%" y="884" width="0.3745%" height="15" fill="rgb(225,20,46)" fg:x="11" fg:w="1"/><text x="4.3699%" y="894.50"></text></g><g><title><module> (sqlglot/dialects/drill.py:1) (1 samples, 0.37%)</title><rect x="4.4944%" y="708" width="0.3745%" height="15" fill="rgb(210,31,41)" fg:x="12" fg:w="1"/><text x="4.7444%" y="718.50"></text></g><g><title>Drill (sqlglot/dialects/drill.py:36) (1 samples, 0.37%)</title><rect x="4.4944%" y="724" width="0.3745%" height="15" fill="rgb(221,200,47)" fg:x="12" fg:w="1"/><text x="4.7444%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.37%)</title><rect x="4.4944%" y="740" width="0.3745%" height="15" fill="rgb(226,26,5)" fg:x="12" fg:w="1"/><text x="4.7444%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.37%)</title><rect x="4.4944%" y="756" width="0.3745%" height="15" fill="rgb(249,33,26)" fg:x="12" fg:w="1"/><text x="4.7444%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.37%)</title><rect x="4.4944%" y="772" width="0.3745%" height="15" fill="rgb(235,183,28)" fg:x="12" fg:w="1"/><text x="4.7444%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.37%)</title><rect x="4.4944%" y="788" width="0.3745%" height="15" fill="rgb(221,5,38)" fg:x="12" fg:w="1"/><text x="4.7444%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="3.7453%" y="484" width="1.4981%" height="15" fill="rgb(247,18,42)" fg:x="10" fg:w="4"/><text x="3.9953%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="3.7453%" y="500" width="1.4981%" height="15" fill="rgb(241,131,45)" fg:x="10" fg:w="4"/><text x="3.9953%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="3.7453%" y="516" width="1.4981%" height="15" fill="rgb(249,31,29)" fg:x="10" fg:w="4"/><text x="3.9953%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="3.7453%" y="532" width="1.4981%" height="15" fill="rgb(225,111,53)" fg:x="10" fg:w="4"/><text x="3.9953%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="3.7453%" y="548" width="1.4981%" height="15" fill="rgb(238,160,17)" fg:x="10" fg:w="4"/><text x="3.9953%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="3.7453%" y="564" width="1.4981%" height="15" fill="rgb(214,148,48)" fg:x="10" fg:w="4"/><text x="3.9953%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="3.7453%" y="580" width="1.4981%" height="15" fill="rgb(232,36,49)" fg:x="10" fg:w="4"/><text x="3.9953%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="3.7453%" y="596" width="1.4981%" height="15" fill="rgb(209,103,24)" fg:x="10" fg:w="4"/><text x="3.9953%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (4 samples, 1.50%)</title><rect x="3.7453%" y="612" width="1.4981%" height="15" fill="rgb(229,88,8)" fg:x="10" fg:w="4"/><text x="3.9953%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="3.7453%" y="628" width="1.4981%" height="15" fill="rgb(213,181,19)" fg:x="10" fg:w="4"/><text x="3.9953%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="3.7453%" y="644" width="1.4981%" height="15" fill="rgb(254,191,54)" fg:x="10" fg:w="4"/><text x="3.9953%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="3.7453%" y="660" width="1.4981%" height="15" fill="rgb(241,83,37)" fg:x="10" fg:w="4"/><text x="3.9953%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="3.7453%" y="676" width="1.4981%" height="15" fill="rgb(233,36,39)" fg:x="10" fg:w="4"/><text x="3.9953%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="3.7453%" y="692" width="1.4981%" height="15" fill="rgb(226,3,54)" fg:x="10" fg:w="4"/><text x="3.9953%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/redshift.py:1) (1 samples, 0.37%)</title><rect x="4.8689%" y="708" width="0.3745%" height="15" fill="rgb(245,192,40)" fg:x="13" fg:w="1"/><text x="5.1189%" y="718.50"></text></g><g><title>Redshift (sqlglot/dialects/redshift.py:29) (1 samples, 0.37%)</title><rect x="4.8689%" y="724" width="0.3745%" height="15" fill="rgb(238,167,29)" fg:x="13" fg:w="1"/><text x="5.1189%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.37%)</title><rect x="4.8689%" y="740" width="0.3745%" height="15" fill="rgb(232,182,51)" fg:x="13" fg:w="1"/><text x="5.1189%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.37%)</title><rect x="4.8689%" y="756" width="0.3745%" height="15" fill="rgb(231,60,39)" fg:x="13" fg:w="1"/><text x="5.1189%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.37%)</title><rect x="4.8689%" y="772" width="0.3745%" height="15" fill="rgb(208,69,12)" fg:x="13" fg:w="1"/><text x="5.1189%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.37%)</title><rect x="4.8689%" y="788" width="0.3745%" height="15" fill="rgb(235,93,37)" fg:x="13" fg:w="1"/><text x="5.1189%" y="798.50"></text></g><g><title>Hint (sqlglot/expressions.py:1603) (1 samples, 0.37%)</title><rect x="5.2434%" y="612" width="0.3745%" height="15" fill="rgb(213,116,39)" fg:x="14" fg:w="1"/><text x="5.4934%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="3.7453%" y="372" width="3.3708%" height="15" fill="rgb(222,207,29)" fg:x="10" fg:w="9"/><text x="3.9953%" y="382.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.37%)</title><rect x="3.7453%" y="388" width="3.3708%" height="15" fill="rgb(206,96,30)" fg:x="10" fg:w="9"/><text x="3.9953%" y="398.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.37%)</title><rect x="3.7453%" y="404" width="3.3708%" height="15" fill="rgb(218,138,4)" fg:x="10" fg:w="9"/><text x="3.9953%" y="414.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.37%)</title><rect x="3.7453%" y="420" width="3.3708%" height="15" fill="rgb(250,191,14)" fg:x="10" fg:w="9"/><text x="3.9953%" y="430.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.37%)</title><rect x="3.7453%" y="436" width="3.3708%" height="15" fill="rgb(239,60,40)" fg:x="10" fg:w="9"/><text x="3.9953%" y="446.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="3.7453%" y="452" width="3.3708%" height="15" fill="rgb(206,27,48)" fg:x="10" fg:w="9"/><text x="3.9953%" y="462.50">_ca..</text></g><g><title><module> (sqlglot/__init__.py:1) (9 samples, 3.37%)</title><rect x="3.7453%" y="468" width="3.3708%" height="15" fill="rgb(225,35,8)" fg:x="10" fg:w="9"/><text x="3.9953%" y="478.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.87%)</title><rect x="5.2434%" y="484" width="1.8727%" height="15" fill="rgb(250,213,24)" fg:x="14" fg:w="5"/><text x="5.4934%" y="494.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="5.2434%" y="500" width="1.8727%" height="15" fill="rgb(247,123,22)" fg:x="14" fg:w="5"/><text x="5.4934%" y="510.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="5.2434%" y="516" width="1.8727%" height="15" fill="rgb(231,138,38)" fg:x="14" fg:w="5"/><text x="5.4934%" y="526.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="5.2434%" y="532" width="1.8727%" height="15" fill="rgb(231,145,46)" fg:x="14" fg:w="5"/><text x="5.4934%" y="542.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="5.2434%" y="548" width="1.8727%" height="15" fill="rgb(251,118,11)" fg:x="14" fg:w="5"/><text x="5.4934%" y="558.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="5.2434%" y="564" width="1.8727%" height="15" fill="rgb(217,147,25)" fg:x="14" fg:w="5"/><text x="5.4934%" y="574.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="5.2434%" y="580" width="1.8727%" height="15" fill="rgb(247,81,37)" fg:x="14" fg:w="5"/><text x="5.4934%" y="590.50">_..</text></g><g><title><module> (sqlglot/expressions.py:1) (5 samples, 1.87%)</title><rect x="5.2434%" y="596" width="1.8727%" height="15" fill="rgb(209,12,38)" fg:x="14" fg:w="5"/><text x="5.4934%" y="606.50"><..</text></g><g><title>__new__ (sqlglot/expressions.py:42) (4 samples, 1.50%)</title><rect x="5.6180%" y="612" width="1.4981%" height="15" fill="rgb(227,1,9)" fg:x="15" fg:w="4"/><text x="5.8680%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="7.1161%" y="532" width="0.3745%" height="15" fill="rgb(248,47,43)" fg:x="19" fg:w="1"/><text x="7.3661%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="7.1161%" y="548" width="0.3745%" height="15" fill="rgb(221,10,30)" fg:x="19" fg:w="1"/><text x="7.3661%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="7.1161%" y="564" width="0.3745%" height="15" fill="rgb(210,229,1)" fg:x="19" fg:w="1"/><text x="7.3661%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="7.1161%" y="580" width="0.3745%" height="15" fill="rgb(222,148,37)" fg:x="19" fg:w="1"/><text x="7.3661%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="7.1161%" y="596" width="0.3745%" height="15" fill="rgb(234,67,33)" fg:x="19" fg:w="1"/><text x="7.3661%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (1 samples, 0.37%)</title><rect x="7.1161%" y="612" width="0.3745%" height="15" fill="rgb(247,98,35)" fg:x="19" fg:w="1"/><text x="7.3661%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="7.1161%" y="628" width="0.3745%" height="15" fill="rgb(247,138,52)" fg:x="19" fg:w="1"/><text x="7.3661%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="7.1161%" y="644" width="0.3745%" height="15" fill="rgb(213,79,30)" fg:x="19" fg:w="1"/><text x="7.3661%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="7.1161%" y="660" width="0.3745%" height="15" fill="rgb(246,177,23)" fg:x="19" fg:w="1"/><text x="7.3661%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="7.1161%" y="676" width="0.3745%" height="15" fill="rgb(230,62,27)" fg:x="19" fg:w="1"/><text x="7.3661%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="7.1161%" y="692" width="0.3745%" height="15" fill="rgb(216,154,8)" fg:x="19" fg:w="1"/><text x="7.3661%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (1 samples, 0.37%)</title><rect x="7.1161%" y="708" width="0.3745%" height="15" fill="rgb(244,35,45)" fg:x="19" fg:w="1"/><text x="7.3661%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="7.1161%" y="724" width="0.3745%" height="15" fill="rgb(251,115,12)" fg:x="19" fg:w="1"/><text x="7.3661%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="7.1161%" y="740" width="0.3745%" height="15" fill="rgb(240,54,50)" fg:x="19" fg:w="1"/><text x="7.3661%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="7.1161%" y="756" width="0.3745%" height="15" fill="rgb(233,84,52)" fg:x="19" fg:w="1"/><text x="7.3661%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="7.1161%" y="772" width="0.3745%" height="15" fill="rgb(207,117,47)" fg:x="19" fg:w="1"/><text x="7.3661%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="7.1161%" y="788" width="0.3745%" height="15" fill="rgb(249,43,39)" fg:x="19" fg:w="1"/><text x="7.3661%" y="798.50"></text></g><g><title><module> (statistics.py:1) (1 samples, 0.37%)</title><rect x="7.1161%" y="804" width="0.3745%" height="15" fill="rgb(209,38,44)" fg:x="19" fg:w="1"/><text x="7.3661%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="7.1161%" y="820" width="0.3745%" height="15" fill="rgb(236,212,23)" fg:x="19" fg:w="1"/><text x="7.3661%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="7.1161%" y="836" width="0.3745%" height="15" fill="rgb(242,79,21)" fg:x="19" fg:w="1"/><text x="7.3661%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="7.1161%" y="852" width="0.3745%" height="15" fill="rgb(211,96,35)" fg:x="19" fg:w="1"/><text x="7.3661%" y="862.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="7.1161%" y="868" width="0.3745%" height="15" fill="rgb(253,215,40)" fg:x="19" fg:w="1"/><text x="7.3661%" y="878.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="7.1161%" y="884" width="0.3745%" height="15" fill="rgb(211,81,21)" fg:x="19" fg:w="1"/><text x="7.3661%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="7.1161%" y="900" width="0.3745%" height="15" fill="rgb(208,190,38)" fg:x="19" fg:w="1"/><text x="7.3661%" y="910.50"></text></g><g><title><module> (qarray/core.py:1) (11 samples, 4.12%)</title><rect x="3.7453%" y="276" width="4.1199%" height="15" fill="rgb(235,213,38)" fg:x="10" fg:w="11"/><text x="3.9953%" y="286.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 4.12%)</title><rect x="3.7453%" y="292" width="4.1199%" height="15" fill="rgb(237,122,38)" fg:x="10" fg:w="11"/><text x="3.9953%" y="302.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 4.12%)</title><rect x="3.7453%" y="308" width="4.1199%" height="15" fill="rgb(244,218,35)" fg:x="10" fg:w="11"/><text x="3.9953%" y="318.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 4.12%)</title><rect x="3.7453%" y="324" width="4.1199%" height="15" fill="rgb(240,68,47)" fg:x="10" fg:w="11"/><text x="3.9953%" y="334.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 4.12%)</title><rect x="3.7453%" y="340" width="4.1199%" height="15" fill="rgb(210,16,53)" fg:x="10" fg:w="11"/><text x="3.9953%" y="350.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 4.12%)</title><rect x="3.7453%" y="356" width="4.1199%" height="15" fill="rgb(235,124,12)" fg:x="10" fg:w="11"/><text x="3.9953%" y="366.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="7.1161%" y="372" width="0.7491%" height="15" fill="rgb(224,169,11)" fg:x="19" fg:w="2"/><text x="7.3661%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="7.1161%" y="388" width="0.7491%" height="15" fill="rgb(250,166,2)" fg:x="19" fg:w="2"/><text x="7.3661%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="7.1161%" y="404" width="0.7491%" height="15" fill="rgb(242,216,29)" fg:x="19" fg:w="2"/><text x="7.3661%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (2 samples, 0.75%)</title><rect x="7.1161%" y="420" width="0.7491%" height="15" fill="rgb(230,116,27)" fg:x="19" fg:w="2"/><text x="7.3661%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="7.1161%" y="436" width="0.7491%" height="15" fill="rgb(228,99,48)" fg:x="19" fg:w="2"/><text x="7.3661%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="7.1161%" y="452" width="0.7491%" height="15" fill="rgb(253,11,6)" fg:x="19" fg:w="2"/><text x="7.3661%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="7.1161%" y="468" width="0.7491%" height="15" fill="rgb(247,143,39)" fg:x="19" fg:w="2"/><text x="7.3661%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="7.1161%" y="484" width="0.7491%" height="15" fill="rgb(236,97,10)" fg:x="19" fg:w="2"/><text x="7.3661%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="7.1161%" y="500" width="0.7491%" height="15" fill="rgb(233,208,19)" fg:x="19" fg:w="2"/><text x="7.3661%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (2 samples, 0.75%)</title><rect x="7.1161%" y="516" width="0.7491%" height="15" fill="rgb(216,164,2)" fg:x="19" fg:w="2"/><text x="7.3661%" y="526.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="7.4906%" y="532" width="0.3745%" height="15" fill="rgb(220,129,5)" fg:x="20" fg:w="1"/><text x="7.7406%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="7.4906%" y="548" width="0.3745%" height="15" fill="rgb(242,17,10)" fg:x="20" fg:w="1"/><text x="7.7406%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="7.4906%" y="564" width="0.3745%" height="15" fill="rgb(242,107,0)" fg:x="20" fg:w="1"/><text x="7.7406%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="7.4906%" y="580" width="0.3745%" height="15" fill="rgb(251,28,31)" fg:x="20" fg:w="1"/><text x="7.7406%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="7.4906%" y="596" width="0.3745%" height="15" fill="rgb(233,223,10)" fg:x="20" fg:w="1"/><text x="7.7406%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="7.4906%" y="612" width="0.3745%" height="15" fill="rgb(215,21,27)" fg:x="20" fg:w="1"/><text x="7.7406%" y="622.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="7.4906%" y="628" width="0.3745%" height="15" fill="rgb(232,23,21)" fg:x="20" fg:w="1"/><text x="7.7406%" y="638.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="7.4906%" y="644" width="0.3745%" height="15" fill="rgb(244,5,23)" fg:x="20" fg:w="1"/><text x="7.7406%" y="654.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.37%)</title><rect x="7.8652%" y="1204" width="0.3745%" height="15" fill="rgb(226,81,46)" fg:x="21" fg:w="1"/><text x="8.1152%" y="1214.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.37%)</title><rect x="7.8652%" y="1220" width="0.3745%" height="15" fill="rgb(247,70,30)" fg:x="21" fg:w="1"/><text x="8.1152%" y="1230.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.37%)</title><rect x="7.8652%" y="1236" width="0.3745%" height="15" fill="rgb(212,68,19)" fg:x="21" fg:w="1"/><text x="8.1152%" y="1246.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.37%)</title><rect x="7.8652%" y="1252" width="0.3745%" height="15" fill="rgb(240,187,13)" fg:x="21" fg:w="1"/><text x="8.1152%" y="1262.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="7.8652%" y="1268" width="0.3745%" height="15" fill="rgb(223,113,26)" fg:x="21" fg:w="1"/><text x="8.1152%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="7.8652%" y="1140" width="0.7491%" height="15" fill="rgb(206,192,2)" fg:x="21" fg:w="2"/><text x="8.1152%" y="1150.50"></text></g><g><title><module> (scipy/sparse/_csr.py:1) (2 samples, 0.75%)</title><rect x="7.8652%" y="1156" width="0.7491%" height="15" fill="rgb(241,108,4)" fg:x="21" fg:w="2"/><text x="8.1152%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="7.8652%" y="1172" width="0.7491%" height="15" fill="rgb(247,173,49)" fg:x="21" fg:w="2"/><text x="8.1152%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="7.8652%" y="1188" width="0.7491%" height="15" fill="rgb(224,114,35)" fg:x="21" fg:w="2"/><text x="8.1152%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="8.2397%" y="1204" width="0.3745%" height="15" fill="rgb(245,159,27)" fg:x="22" fg:w="1"/><text x="8.4897%" y="1214.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="8.2397%" y="1220" width="0.3745%" height="15" fill="rgb(245,172,44)" fg:x="22" fg:w="1"/><text x="8.4897%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="7.8652%" y="1076" width="1.4981%" height="15" fill="rgb(236,23,11)" fg:x="21" fg:w="4"/><text x="8.1152%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="7.8652%" y="1092" width="1.4981%" height="15" fill="rgb(205,117,38)" fg:x="21" fg:w="4"/><text x="8.1152%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="7.8652%" y="1108" width="1.4981%" height="15" fill="rgb(237,72,25)" fg:x="21" fg:w="4"/><text x="8.1152%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="7.8652%" y="1124" width="1.4981%" height="15" fill="rgb(244,70,9)" fg:x="21" fg:w="4"/><text x="8.1152%" y="1134.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="8.6142%" y="1140" width="0.7491%" height="15" fill="rgb(217,125,39)" fg:x="23" fg:w="2"/><text x="8.8642%" y="1150.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.75%)</title><rect x="8.6142%" y="1156" width="0.7491%" height="15" fill="rgb(235,36,10)" fg:x="23" fg:w="2"/><text x="8.8642%" y="1166.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (2 samples, 0.75%)</title><rect x="9.3633%" y="1572" width="0.7491%" height="15" fill="rgb(251,123,47)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="9.3633%" y="1588" width="0.7491%" height="15" fill="rgb(221,13,13)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="9.3633%" y="1604" width="0.7491%" height="15" fill="rgb(238,131,9)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="9.3633%" y="1620" width="0.7491%" height="15" fill="rgb(211,50,8)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="9.3633%" y="1636" width="0.7491%" height="15" fill="rgb(245,182,24)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1646.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="9.3633%" y="1652" width="0.7491%" height="15" fill="rgb(242,14,37)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1662.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.75%)</title><rect x="9.3633%" y="1668" width="0.7491%" height="15" fill="rgb(246,228,12)" fg:x="25" fg:w="2"/><text x="9.6133%" y="1678.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.37%)</title><rect x="10.1124%" y="1812" width="0.3745%" height="15" fill="rgb(213,55,15)" fg:x="27" fg:w="1"/><text x="10.3624%" y="1822.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.37%)</title><rect x="10.1124%" y="1828" width="0.3745%" height="15" fill="rgb(209,9,3)" fg:x="27" fg:w="1"/><text x="10.3624%" y="1838.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.37%)</title><rect x="10.1124%" y="1844" width="0.3745%" height="15" fill="rgb(230,59,30)" fg:x="27" fg:w="1"/><text x="10.3624%" y="1854.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.37%)</title><rect x="10.1124%" y="1860" width="0.3745%" height="15" fill="rgb(209,121,21)" fg:x="27" fg:w="1"/><text x="10.3624%" y="1870.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="10.1124%" y="1876" width="0.3745%" height="15" fill="rgb(220,109,13)" fg:x="27" fg:w="1"/><text x="10.3624%" y="1886.50"></text></g><g><title><module> (scipy/linalg/blas.py:1) (1 samples, 0.37%)</title><rect x="10.4869%" y="1860" width="0.3745%" height="15" fill="rgb(232,18,1)" fg:x="28" fg:w="1"/><text x="10.7369%" y="1870.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="10.4869%" y="1844" width="0.7491%" height="15" fill="rgb(215,41,42)" fg:x="28" fg:w="2"/><text x="10.7369%" y="1854.50"></text></g><g><title><module> (scipy/linalg/lapack.py:1) (1 samples, 0.37%)</title><rect x="10.8614%" y="1860" width="0.3745%" height="15" fill="rgb(224,123,36)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1870.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="10.8614%" y="1876" width="0.3745%" height="15" fill="rgb(240,125,3)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1886.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="10.8614%" y="1892" width="0.3745%" height="15" fill="rgb(205,98,50)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1902.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="10.8614%" y="1908" width="0.3745%" height="15" fill="rgb(205,185,37)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1918.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="10.8614%" y="1924" width="0.3745%" height="15" fill="rgb(238,207,15)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1934.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="10.8614%" y="1940" width="0.3745%" height="15" fill="rgb(213,199,42)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1950.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="10.8614%" y="1956" width="0.3745%" height="15" fill="rgb(235,201,11)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1966.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="10.8614%" y="1972" width="0.3745%" height="15" fill="rgb(207,46,11)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1982.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="10.8614%" y="1988" width="0.3745%" height="15" fill="rgb(241,35,35)" fg:x="29" fg:w="1"/><text x="11.1114%" y="1998.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="10.4869%" y="1828" width="1.1236%" height="15" fill="rgb(243,32,47)" fg:x="28" fg:w="3"/><text x="10.7369%" y="1838.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="11.2360%" y="1844" width="0.3745%" height="15" fill="rgb(247,202,23)" fg:x="30" fg:w="1"/><text x="11.4860%" y="1854.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="11.2360%" y="1860" width="0.3745%" height="15" fill="rgb(219,102,11)" fg:x="30" fg:w="1"/><text x="11.4860%" y="1870.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="10.1124%" y="1732" width="1.8727%" height="15" fill="rgb(243,110,44)" fg:x="27" fg:w="5"/><text x="10.3624%" y="1742.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="10.1124%" y="1748" width="1.8727%" height="15" fill="rgb(222,74,54)" fg:x="27" fg:w="5"/><text x="10.3624%" y="1758.50">_..</text></g><g><title><module> (scipy/linalg/_misc.py:1) (5 samples, 1.87%)</title><rect x="10.1124%" y="1764" width="1.8727%" height="15" fill="rgb(216,99,12)" fg:x="27" fg:w="5"/><text x="10.3624%" y="1774.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="10.1124%" y="1780" width="1.8727%" height="15" fill="rgb(226,22,26)" fg:x="27" fg:w="5"/><text x="10.3624%" y="1790.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="10.1124%" y="1796" width="1.8727%" height="15" fill="rgb(217,163,10)" fg:x="27" fg:w="5"/><text x="10.3624%" y="1806.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="10.4869%" y="1812" width="1.4981%" height="15" fill="rgb(213,25,53)" fg:x="28" fg:w="4"/><text x="10.7369%" y="1822.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="11.6105%" y="1828" width="0.3745%" height="15" fill="rgb(252,105,26)" fg:x="31" fg:w="1"/><text x="11.8605%" y="1838.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.37%)</title><rect x="11.6105%" y="1844" width="0.3745%" height="15" fill="rgb(220,39,43)" fg:x="31" fg:w="1"/><text x="11.8605%" y="1854.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.37%)</title><rect x="11.6105%" y="1860" width="0.3745%" height="15" fill="rgb(229,68,48)" fg:x="31" fg:w="1"/><text x="11.8605%" y="1870.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.37%)</title><rect x="11.6105%" y="1876" width="0.3745%" height="15" fill="rgb(252,8,32)" fg:x="31" fg:w="1"/><text x="11.8605%" y="1886.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.37%)</title><rect x="11.6105%" y="1892" width="0.3745%" height="15" fill="rgb(223,20,43)" fg:x="31" fg:w="1"/><text x="11.8605%" y="1902.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="9.3633%" y="1252" width="2.9963%" height="15" fill="rgb(229,81,49)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1262.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="9.3633%" y="1268" width="2.9963%" height="15" fill="rgb(236,28,36)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1278.50">_ca..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (8 samples, 3.00%)</title><rect x="9.3633%" y="1284" width="2.9963%" height="15" fill="rgb(249,185,26)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1294.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="9.3633%" y="1300" width="2.9963%" height="15" fill="rgb(249,174,33)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1310.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="9.3633%" y="1316" width="2.9963%" height="15" fill="rgb(233,201,37)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1326.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="9.3633%" y="1332" width="2.9963%" height="15" fill="rgb(221,78,26)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1342.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="9.3633%" y="1348" width="2.9963%" height="15" fill="rgb(250,127,30)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1358.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="9.3633%" y="1364" width="2.9963%" height="15" fill="rgb(230,49,44)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1374.50">_ca..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (8 samples, 3.00%)</title><rect x="9.3633%" y="1380" width="2.9963%" height="15" fill="rgb(229,67,23)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1390.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="9.3633%" y="1396" width="2.9963%" height="15" fill="rgb(249,83,47)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1406.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="9.3633%" y="1412" width="2.9963%" height="15" fill="rgb(215,43,3)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1422.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="9.3633%" y="1428" width="2.9963%" height="15" fill="rgb(238,154,13)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1438.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="9.3633%" y="1444" width="2.9963%" height="15" fill="rgb(219,56,2)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1454.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="9.3633%" y="1460" width="2.9963%" height="15" fill="rgb(233,0,4)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1470.50">_ca..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (8 samples, 3.00%)</title><rect x="9.3633%" y="1476" width="2.9963%" height="15" fill="rgb(235,30,7)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1486.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="9.3633%" y="1492" width="2.9963%" height="15" fill="rgb(250,79,13)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1502.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="9.3633%" y="1508" width="2.9963%" height="15" fill="rgb(211,146,34)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1518.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="9.3633%" y="1524" width="2.9963%" height="15" fill="rgb(228,22,38)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1534.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="9.3633%" y="1540" width="2.9963%" height="15" fill="rgb(235,168,5)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1550.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="9.3633%" y="1556" width="2.9963%" height="15" fill="rgb(221,155,16)" fg:x="25" fg:w="8"/><text x="9.6133%" y="1566.50">_ca..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (6 samples, 2.25%)</title><rect x="10.1124%" y="1572" width="2.2472%" height="15" fill="rgb(215,215,53)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1582.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="10.1124%" y="1588" width="2.2472%" height="15" fill="rgb(223,4,10)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="10.1124%" y="1604" width="2.2472%" height="15" fill="rgb(234,103,6)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1614.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="10.1124%" y="1620" width="2.2472%" height="15" fill="rgb(227,97,0)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1630.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="10.1124%" y="1636" width="2.2472%" height="15" fill="rgb(234,150,53)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1646.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="10.1124%" y="1652" width="2.2472%" height="15" fill="rgb(228,201,54)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1662.50">_..</text></g><g><title><module> (scipy/linalg/__init__.py:1) (6 samples, 2.25%)</title><rect x="10.1124%" y="1668" width="2.2472%" height="15" fill="rgb(222,22,37)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1678.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="10.1124%" y="1684" width="2.2472%" height="15" fill="rgb(237,53,32)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1694.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="10.1124%" y="1700" width="2.2472%" height="15" fill="rgb(233,25,53)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1710.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="10.1124%" y="1716" width="2.2472%" height="15" fill="rgb(210,40,34)" fg:x="27" fg:w="6"/><text x="10.3624%" y="1726.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="11.9850%" y="1732" width="0.3745%" height="15" fill="rgb(241,220,44)" fg:x="32" fg:w="1"/><text x="12.2350%" y="1742.50"></text></g><g><title><module> (dask/array/chunk_types.py:1) (15 samples, 5.62%)</title><rect x="7.8652%" y="964" width="5.6180%" height="15" fill="rgb(235,28,35)" fg:x="21" fg:w="15"/><text x="8.1152%" y="974.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.62%)</title><rect x="7.8652%" y="980" width="5.6180%" height="15" fill="rgb(210,56,17)" fg:x="21" fg:w="15"/><text x="8.1152%" y="990.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.62%)</title><rect x="7.8652%" y="996" width="5.6180%" height="15" fill="rgb(224,130,29)" fg:x="21" fg:w="15"/><text x="8.1152%" y="1006.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.62%)</title><rect x="7.8652%" y="1012" width="5.6180%" height="15" fill="rgb(235,212,8)" fg:x="21" fg:w="15"/><text x="8.1152%" y="1022.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.62%)</title><rect x="7.8652%" y="1028" width="5.6180%" height="15" fill="rgb(223,33,50)" fg:x="21" fg:w="15"/><text x="8.1152%" y="1038.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.62%)</title><rect x="7.8652%" y="1044" width="5.6180%" height="15" fill="rgb(219,149,13)" fg:x="21" fg:w="15"/><text x="8.1152%" y="1054.50">_call_w..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (15 samples, 5.62%)</title><rect x="7.8652%" y="1060" width="5.6180%" height="15" fill="rgb(250,156,29)" fg:x="21" fg:w="15"/><text x="8.1152%" y="1070.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 4.12%)</title><rect x="9.3633%" y="1076" width="4.1199%" height="15" fill="rgb(216,193,19)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1086.50">_han..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 4.12%)</title><rect x="9.3633%" y="1092" width="4.1199%" height="15" fill="rgb(216,135,14)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1102.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 4.12%)</title><rect x="9.3633%" y="1108" width="4.1199%" height="15" fill="rgb(241,47,5)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1118.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 4.12%)</title><rect x="9.3633%" y="1124" width="4.1199%" height="15" fill="rgb(233,42,35)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1134.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 4.12%)</title><rect x="9.3633%" y="1140" width="4.1199%" height="15" fill="rgb(231,13,6)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1150.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 4.12%)</title><rect x="9.3633%" y="1156" width="4.1199%" height="15" fill="rgb(207,181,40)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1166.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 4.12%)</title><rect x="9.3633%" y="1172" width="4.1199%" height="15" fill="rgb(254,173,49)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1182.50">_cal..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (11 samples, 4.12%)</title><rect x="9.3633%" y="1188" width="4.1199%" height="15" fill="rgb(221,1,38)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1198.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 4.12%)</title><rect x="9.3633%" y="1204" width="4.1199%" height="15" fill="rgb(206,124,46)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1214.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 4.12%)</title><rect x="9.3633%" y="1220" width="4.1199%" height="15" fill="rgb(249,21,11)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1230.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 4.12%)</title><rect x="9.3633%" y="1236" width="4.1199%" height="15" fill="rgb(222,201,40)" fg:x="25" fg:w="11"/><text x="9.6133%" y="1246.50">_loa..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.12%)</title><rect x="12.3596%" y="1252" width="1.1236%" height="15" fill="rgb(235,61,29)" fg:x="33" fg:w="3"/><text x="12.6096%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.12%)</title><rect x="12.3596%" y="1268" width="1.1236%" height="15" fill="rgb(219,207,3)" fg:x="33" fg:w="3"/><text x="12.6096%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="12.3596%" y="1284" width="1.1236%" height="15" fill="rgb(222,56,46)" fg:x="33" fg:w="3"/><text x="12.6096%" y="1294.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.37%)</title><rect x="13.4831%" y="1028" width="0.3745%" height="15" fill="rgb(239,76,54)" fg:x="36" fg:w="1"/><text x="13.7331%" y="1038.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.37%)</title><rect x="13.4831%" y="1044" width="0.3745%" height="15" fill="rgb(231,124,27)" fg:x="36" fg:w="1"/><text x="13.7331%" y="1054.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.37%)</title><rect x="13.4831%" y="1060" width="0.3745%" height="15" fill="rgb(249,195,6)" fg:x="36" fg:w="1"/><text x="13.7331%" y="1070.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.37%)</title><rect x="13.4831%" y="1076" width="0.3745%" height="15" fill="rgb(237,174,47)" fg:x="36" fg:w="1"/><text x="13.7331%" y="1086.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.37%)</title><rect x="13.4831%" y="1092" width="0.3745%" height="15" fill="rgb(206,201,31)" fg:x="36" fg:w="1"/><text x="13.7331%" y="1102.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.37%)</title><rect x="13.8577%" y="1044" width="0.3745%" height="15" fill="rgb(231,57,52)" fg:x="37" fg:w="1"/><text x="14.1077%" y="1054.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:340) (1 samples, 0.37%)</title><rect x="13.8577%" y="1060" width="0.3745%" height="15" fill="rgb(248,177,22)" fg:x="37" fg:w="1"/><text x="14.1077%" y="1070.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:945) (3 samples, 1.12%)</title><rect x="13.4831%" y="1012" width="1.1236%" height="15" fill="rgb(215,211,37)" fg:x="36" fg:w="3"/><text x="13.7331%" y="1022.50"></text></g><g><title>unique_everseen (importlib_metadata/_itertools.py:4) (2 samples, 0.75%)</title><rect x="13.8577%" y="1028" width="0.7491%" height="15" fill="rgb(241,128,51)" fg:x="37" fg:w="2"/><text x="14.1077%" y="1038.50"></text></g><g><title>normalized_name (importlib_metadata/_py39compat.py:13) (1 samples, 0.37%)</title><rect x="14.2322%" y="1044" width="0.3745%" height="15" fill="rgb(227,165,31)" fg:x="38" fg:w="1"/><text x="14.4822%" y="1054.50"></text></g><g><title>_normalized_name (importlib_metadata/__init__.py:861) (1 samples, 0.37%)</title><rect x="14.2322%" y="1060" width="0.3745%" height="15" fill="rgb(228,167,24)" fg:x="38" fg:w="1"/><text x="14.4822%" y="1070.50"></text></g><g><title>_name_from_stem (importlib_metadata/__init__.py:873) (1 samples, 0.37%)</title><rect x="14.2322%" y="1076" width="0.3745%" height="15" fill="rgb(228,143,12)" fg:x="38" fg:w="1"/><text x="14.4822%" y="1086.50"></text></g><g><title>splitext (posixpath.py:117) (1 samples, 0.37%)</title><rect x="14.2322%" y="1092" width="0.3745%" height="15" fill="rgb(249,149,8)" fg:x="38" fg:w="1"/><text x="14.4822%" y="1102.50"></text></g><g><title>_splitext (genericpath.py:121) (1 samples, 0.37%)</title><rect x="14.2322%" y="1108" width="0.3745%" height="15" fill="rgb(243,35,44)" fg:x="38" fg:w="1"/><text x="14.4822%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 7.12%)</title><rect x="7.8652%" y="900" width="7.1161%" height="15" fill="rgb(246,89,9)" fg:x="21" fg:w="19"/><text x="8.1152%" y="910.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 7.12%)</title><rect x="7.8652%" y="916" width="7.1161%" height="15" fill="rgb(233,213,13)" fg:x="21" fg:w="19"/><text x="8.1152%" y="926.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 7.12%)</title><rect x="7.8652%" y="932" width="7.1161%" height="15" fill="rgb(233,141,41)" fg:x="21" fg:w="19"/><text x="8.1152%" y="942.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 7.12%)</title><rect x="7.8652%" y="948" width="7.1161%" height="15" fill="rgb(239,167,4)" fg:x="21" fg:w="19"/><text x="8.1152%" y="958.50">_call_with..</text></g><g><title><module> (dask/sizeof.py:1) (4 samples, 1.50%)</title><rect x="13.4831%" y="964" width="1.4981%" height="15" fill="rgb(209,217,16)" fg:x="36" fg:w="4"/><text x="13.7331%" y="974.50"></text></g><g><title>_register_entry_point_plugins (dask/sizeof.py:261) (4 samples, 1.50%)</title><rect x="13.4831%" y="980" width="1.4981%" height="15" fill="rgb(219,88,35)" fg:x="36" fg:w="4"/><text x="13.7331%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:936) (4 samples, 1.50%)</title><rect x="13.4831%" y="996" width="1.4981%" height="15" fill="rgb(220,193,23)" fg:x="36" fg:w="4"/><text x="13.7331%" y="1006.50"></text></g><g><title>select (importlib_metadata/__init__.py:278) (1 samples, 0.37%)</title><rect x="14.6067%" y="1012" width="0.3745%" height="15" fill="rgb(230,90,52)" fg:x="39" fg:w="1"/><text x="14.8567%" y="1022.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:283) (1 samples, 0.37%)</title><rect x="14.6067%" y="1028" width="0.3745%" height="15" fill="rgb(252,106,19)" fg:x="39" fg:w="1"/><text x="14.8567%" y="1038.50"></text></g><g><title>ep_matches (importlib_metadata/_py39compat.py:25) (1 samples, 0.37%)</title><rect x="14.6067%" y="1044" width="0.3745%" height="15" fill="rgb(206,74,20)" fg:x="39" fg:w="1"/><text x="14.8567%" y="1054.50"></text></g><g><title>matches (importlib_metadata/__init__.py:210) (1 samples, 0.37%)</title><rect x="14.6067%" y="1060" width="0.3745%" height="15" fill="rgb(230,138,44)" fg:x="39" fg:w="1"/><text x="14.8567%" y="1070.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:230) (1 samples, 0.37%)</title><rect x="14.6067%" y="1076" width="0.3745%" height="15" fill="rgb(235,182,43)" fg:x="39" fg:w="1"/><text x="14.8567%" y="1086.50"></text></g><g><title><module> (dask/array/backends.py:1) (20 samples, 7.49%)</title><rect x="7.8652%" y="772" width="7.4906%" height="15" fill="rgb(242,16,51)" fg:x="21" fg:w="20"/><text x="8.1152%" y="782.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (20 samples, 7.49%)</title><rect x="7.8652%" y="788" width="7.4906%" height="15" fill="rgb(248,9,4)" fg:x="21" fg:w="20"/><text x="8.1152%" y="798.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (20 samples, 7.49%)</title><rect x="7.8652%" y="804" width="7.4906%" height="15" fill="rgb(210,31,22)" fg:x="21" fg:w="20"/><text x="8.1152%" y="814.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (20 samples, 7.49%)</title><rect x="7.8652%" y="820" width="7.4906%" height="15" fill="rgb(239,54,39)" fg:x="21" fg:w="20"/><text x="8.1152%" y="830.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (20 samples, 7.49%)</title><rect x="7.8652%" y="836" width="7.4906%" height="15" fill="rgb(230,99,41)" fg:x="21" fg:w="20"/><text x="8.1152%" y="846.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (20 samples, 7.49%)</title><rect x="7.8652%" y="852" width="7.4906%" height="15" fill="rgb(253,106,12)" fg:x="21" fg:w="20"/><text x="8.1152%" y="862.50">_call_with..</text></g><g><title><module> (dask/array/core.py:1) (20 samples, 7.49%)</title><rect x="7.8652%" y="868" width="7.4906%" height="15" fill="rgb(213,46,41)" fg:x="21" fg:w="20"/><text x="8.1152%" y="878.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (20 samples, 7.49%)</title><rect x="7.8652%" y="884" width="7.4906%" height="15" fill="rgb(215,133,35)" fg:x="21" fg:w="20"/><text x="8.1152%" y="894.50">_find_and_..</text></g><g><title>cb (<frozen importlib._bootstrap>:185) (1 samples, 0.37%)</title><rect x="14.9813%" y="900" width="0.3745%" height="15" fill="rgb(213,28,5)" fg:x="40" fg:w="1"/><text x="15.2313%" y="910.50"></text></g><g><title><module> (dask/array/creation.py:1) (1 samples, 0.37%)</title><rect x="15.3558%" y="868" width="0.3745%" height="15" fill="rgb(215,77,49)" fg:x="41" fg:w="1"/><text x="15.6058%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="15.3558%" y="884" width="0.3745%" height="15" fill="rgb(248,100,22)" fg:x="41" fg:w="1"/><text x="15.6058%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="15.3558%" y="900" width="0.3745%" height="15" fill="rgb(208,67,9)" fg:x="41" fg:w="1"/><text x="15.6058%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="15.3558%" y="916" width="0.3745%" height="15" fill="rgb(219,133,21)" fg:x="41" fg:w="1"/><text x="15.6058%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="15.3558%" y="932" width="0.3745%" height="15" fill="rgb(246,46,29)" fg:x="41" fg:w="1"/><text x="15.6058%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="15.3558%" y="948" width="0.3745%" height="15" fill="rgb(246,185,52)" fg:x="41" fg:w="1"/><text x="15.6058%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (1 samples, 0.37%)</title><rect x="15.3558%" y="964" width="0.3745%" height="15" fill="rgb(252,136,11)" fg:x="41" fg:w="1"/><text x="15.6058%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (1 samples, 0.37%)</title><rect x="15.3558%" y="980" width="0.3745%" height="15" fill="rgb(219,138,53)" fg:x="41" fg:w="1"/><text x="15.6058%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.37%)</title><rect x="15.3558%" y="996" width="0.3745%" height="15" fill="rgb(211,51,23)" fg:x="41" fg:w="1"/><text x="15.6058%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.37%)</title><rect x="15.3558%" y="1012" width="0.3745%" height="15" fill="rgb(247,221,28)" fg:x="41" fg:w="1"/><text x="15.6058%" y="1022.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.37%)</title><rect x="15.3558%" y="1028" width="0.3745%" height="15" fill="rgb(251,222,45)" fg:x="41" fg:w="1"/><text x="15.6058%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="15.7303%" y="884" width="0.3745%" height="15" fill="rgb(217,162,53)" fg:x="42" fg:w="1"/><text x="15.9803%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="15.7303%" y="900" width="0.3745%" height="15" fill="rgb(229,93,14)" fg:x="42" fg:w="1"/><text x="15.9803%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="15.7303%" y="916" width="0.3745%" height="15" fill="rgb(209,67,49)" fg:x="42" fg:w="1"/><text x="15.9803%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="15.7303%" y="932" width="0.3745%" height="15" fill="rgb(213,87,29)" fg:x="42" fg:w="1"/><text x="15.9803%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="15.7303%" y="948" width="0.3745%" height="15" fill="rgb(205,151,52)" fg:x="42" fg:w="1"/><text x="15.9803%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (1 samples, 0.37%)</title><rect x="15.7303%" y="964" width="0.3745%" height="15" fill="rgb(253,215,39)" fg:x="42" fg:w="1"/><text x="15.9803%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="15.7303%" y="980" width="0.3745%" height="15" fill="rgb(221,220,41)" fg:x="42" fg:w="1"/><text x="15.9803%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="15.7303%" y="996" width="0.3745%" height="15" fill="rgb(218,133,21)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="15.7303%" y="1012" width="0.3745%" height="15" fill="rgb(221,193,43)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="15.7303%" y="1028" width="0.3745%" height="15" fill="rgb(240,128,52)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="15.7303%" y="1044" width="0.3745%" height="15" fill="rgb(253,114,12)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (1 samples, 0.37%)</title><rect x="15.7303%" y="1060" width="0.3745%" height="15" fill="rgb(215,223,47)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="15.7303%" y="1076" width="0.3745%" height="15" fill="rgb(248,225,23)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="15.7303%" y="1092" width="0.3745%" height="15" fill="rgb(250,108,0)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="15.7303%" y="1108" width="0.3745%" height="15" fill="rgb(228,208,7)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="15.7303%" y="1124" width="0.3745%" height="15" fill="rgb(244,45,10)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="15.7303%" y="1140" width="0.3745%" height="15" fill="rgb(207,125,25)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1150.50"></text></g><g><title><module> (scipy/fft/_basic.py:1) (1 samples, 0.37%)</title><rect x="15.7303%" y="1156" width="0.3745%" height="15" fill="rgb(210,195,18)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1166.50"></text></g><g><title>_dispatch (scipy/fft/_basic.py:16) (1 samples, 0.37%)</title><rect x="15.7303%" y="1172" width="0.3745%" height="15" fill="rgb(249,80,12)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1182.50"></text></g><g><title>generate_multimethod (scipy/_lib/_uarray/_backend.py:173) (1 samples, 0.37%)</title><rect x="15.7303%" y="1188" width="0.3745%" height="15" fill="rgb(221,65,9)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1198.50"></text></g><g><title>get_defaults (scipy/_lib/_uarray/_backend.py:306) (1 samples, 0.37%)</title><rect x="15.7303%" y="1204" width="0.3745%" height="15" fill="rgb(235,49,36)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1214.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.37%)</title><rect x="15.7303%" y="1220" width="0.3745%" height="15" fill="rgb(225,32,20)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1230.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.37%)</title><rect x="15.7303%" y="1236" width="0.3745%" height="15" fill="rgb(215,141,46)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1246.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.37%)</title><rect x="15.7303%" y="1252" width="0.3745%" height="15" fill="rgb(250,160,47)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1262.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.37%)</title><rect x="15.7303%" y="1268" width="0.3745%" height="15" fill="rgb(216,222,40)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1278.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.37%)</title><rect x="15.7303%" y="1284" width="0.3745%" height="15" fill="rgb(234,217,39)" fg:x="42" fg:w="1"/><text x="15.9803%" y="1294.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.37%)</title><rect x="16.1049%" y="932" width="0.3745%" height="15" fill="rgb(207,178,40)" fg:x="43" fg:w="1"/><text x="16.3549%" y="942.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.37%)</title><rect x="16.1049%" y="948" width="0.3745%" height="15" fill="rgb(221,136,13)" fg:x="43" fg:w="1"/><text x="16.3549%" y="958.50"></text></g><g><title><module> (dask/array/fft.py:1) (5 samples, 1.87%)</title><rect x="15.3558%" y="772" width="1.8727%" height="15" fill="rgb(249,199,10)" fg:x="41" fg:w="5"/><text x="15.6058%" y="782.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="15.3558%" y="788" width="1.8727%" height="15" fill="rgb(249,222,13)" fg:x="41" fg:w="5"/><text x="15.6058%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="15.3558%" y="804" width="1.8727%" height="15" fill="rgb(244,185,38)" fg:x="41" fg:w="5"/><text x="15.6058%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="15.3558%" y="820" width="1.8727%" height="15" fill="rgb(236,202,9)" fg:x="41" fg:w="5"/><text x="15.6058%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="15.3558%" y="836" width="1.8727%" height="15" fill="rgb(250,229,37)" fg:x="41" fg:w="5"/><text x="15.6058%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="15.3558%" y="852" width="1.8727%" height="15" fill="rgb(206,174,23)" fg:x="41" fg:w="5"/><text x="15.6058%" y="862.50">_..</text></g><g><title><module> (scipy/fftpack/__init__.py:1) (4 samples, 1.50%)</title><rect x="15.7303%" y="868" width="1.4981%" height="15" fill="rgb(211,33,43)" fg:x="42" fg:w="4"/><text x="15.9803%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.12%)</title><rect x="16.1049%" y="884" width="1.1236%" height="15" fill="rgb(245,58,50)" fg:x="43" fg:w="3"/><text x="16.3549%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="16.1049%" y="900" width="1.1236%" height="15" fill="rgb(244,68,36)" fg:x="43" fg:w="3"/><text x="16.3549%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="16.1049%" y="916" width="1.1236%" height="15" fill="rgb(232,229,15)" fg:x="43" fg:w="3"/><text x="16.3549%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="16.4794%" y="932" width="0.7491%" height="15" fill="rgb(254,30,23)" fg:x="44" fg:w="2"/><text x="16.7294%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="16.4794%" y="948" width="0.7491%" height="15" fill="rgb(235,160,14)" fg:x="44" fg:w="2"/><text x="16.7294%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="16.4794%" y="964" width="0.7491%" height="15" fill="rgb(212,155,44)" fg:x="44" fg:w="2"/><text x="16.7294%" y="974.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="16.4794%" y="980" width="0.7491%" height="15" fill="rgb(226,2,50)" fg:x="44" fg:w="2"/><text x="16.7294%" y="990.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.75%)</title><rect x="16.4794%" y="996" width="0.7491%" height="15" fill="rgb(234,177,6)" fg:x="44" fg:w="2"/><text x="16.7294%" y="1006.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.37%)</title><rect x="17.2285%" y="916" width="0.3745%" height="15" fill="rgb(217,24,9)" fg:x="46" fg:w="1"/><text x="17.4785%" y="926.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.37%)</title><rect x="17.2285%" y="932" width="0.3745%" height="15" fill="rgb(220,13,46)" fg:x="46" fg:w="1"/><text x="17.4785%" y="942.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.37%)</title><rect x="17.2285%" y="948" width="0.3745%" height="15" fill="rgb(239,221,27)" fg:x="46" fg:w="1"/><text x="17.4785%" y="958.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.37%)</title><rect x="17.2285%" y="964" width="0.3745%" height="15" fill="rgb(222,198,25)" fg:x="46" fg:w="1"/><text x="17.4785%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="17.2285%" y="788" width="0.7491%" height="15" fill="rgb(211,99,13)" fg:x="46" fg:w="2"/><text x="17.4785%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="17.2285%" y="804" width="0.7491%" height="15" fill="rgb(232,111,31)" fg:x="46" fg:w="2"/><text x="17.4785%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="17.2285%" y="820" width="0.7491%" height="15" fill="rgb(245,82,37)" fg:x="46" fg:w="2"/><text x="17.4785%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="17.2285%" y="836" width="0.7491%" height="15" fill="rgb(227,149,46)" fg:x="46" fg:w="2"/><text x="17.4785%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="17.2285%" y="852" width="0.7491%" height="15" fill="rgb(218,36,50)" fg:x="46" fg:w="2"/><text x="17.4785%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (2 samples, 0.75%)</title><rect x="17.2285%" y="868" width="0.7491%" height="15" fill="rgb(226,80,48)" fg:x="46" fg:w="2"/><text x="17.4785%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.75%)</title><rect x="17.2285%" y="884" width="0.7491%" height="15" fill="rgb(238,224,15)" fg:x="46" fg:w="2"/><text x="17.4785%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.75%)</title><rect x="17.2285%" y="900" width="0.7491%" height="15" fill="rgb(241,136,10)" fg:x="46" fg:w="2"/><text x="17.4785%" y="910.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.37%)</title><rect x="17.6030%" y="916" width="0.3745%" height="15" fill="rgb(208,32,45)" fg:x="47" fg:w="1"/><text x="17.8530%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.37%)</title><rect x="17.6030%" y="932" width="0.3745%" height="15" fill="rgb(207,135,9)" fg:x="47" fg:w="1"/><text x="17.8530%" y="942.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.37%)</title><rect x="17.6030%" y="948" width="0.3745%" height="15" fill="rgb(206,86,44)" fg:x="47" fg:w="1"/><text x="17.8530%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 10.86%)</title><rect x="7.8652%" y="548" width="10.8614%" height="15" fill="rgb(245,177,15)" fg:x="21" fg:w="29"/><text x="8.1152%" y="558.50">_call_with_frame..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 10.86%)</title><rect x="7.8652%" y="564" width="10.8614%" height="15" fill="rgb(206,64,50)" fg:x="21" fg:w="29"/><text x="8.1152%" y="574.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 10.86%)</title><rect x="7.8652%" y="580" width="10.8614%" height="15" fill="rgb(234,36,40)" fg:x="21" fg:w="29"/><text x="8.1152%" y="590.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (29 samples, 10.86%)</title><rect x="7.8652%" y="596" width="10.8614%" height="15" fill="rgb(213,64,8)" fg:x="21" fg:w="29"/><text x="8.1152%" y="606.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (29 samples, 10.86%)</title><rect x="7.8652%" y="612" width="10.8614%" height="15" fill="rgb(210,75,36)" fg:x="21" fg:w="29"/><text x="8.1152%" y="622.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 10.86%)</title><rect x="7.8652%" y="628" width="10.8614%" height="15" fill="rgb(229,88,21)" fg:x="21" fg:w="29"/><text x="8.1152%" y="638.50">_call_with_frame..</text></g><g><title><module> (dask/array/__init__.py:1) (29 samples, 10.86%)</title><rect x="7.8652%" y="644" width="10.8614%" height="15" fill="rgb(252,204,47)" fg:x="21" fg:w="29"/><text x="8.1152%" y="654.50"><module> (dask/a..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (29 samples, 10.86%)</title><rect x="7.8652%" y="660" width="10.8614%" height="15" fill="rgb(208,77,27)" fg:x="21" fg:w="29"/><text x="8.1152%" y="670.50">_handle_fromlist..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 10.86%)</title><rect x="7.8652%" y="676" width="10.8614%" height="15" fill="rgb(221,76,26)" fg:x="21" fg:w="29"/><text x="8.1152%" y="686.50">_call_with_frame..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 10.86%)</title><rect x="7.8652%" y="692" width="10.8614%" height="15" fill="rgb(225,139,18)" fg:x="21" fg:w="29"/><text x="8.1152%" y="702.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 10.86%)</title><rect x="7.8652%" y="708" width="10.8614%" height="15" fill="rgb(230,137,11)" fg:x="21" fg:w="29"/><text x="8.1152%" y="718.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (29 samples, 10.86%)</title><rect x="7.8652%" y="724" width="10.8614%" height="15" fill="rgb(212,28,1)" fg:x="21" fg:w="29"/><text x="8.1152%" y="734.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (29 samples, 10.86%)</title><rect x="7.8652%" y="740" width="10.8614%" height="15" fill="rgb(248,164,17)" fg:x="21" fg:w="29"/><text x="8.1152%" y="750.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 10.86%)</title><rect x="7.8652%" y="756" width="10.8614%" height="15" fill="rgb(222,171,42)" fg:x="21" fg:w="29"/><text x="8.1152%" y="766.50">_call_with_frame..</text></g><g><title><module> (dask/array/ma.py:1) (4 samples, 1.50%)</title><rect x="17.2285%" y="772" width="1.4981%" height="15" fill="rgb(243,84,45)" fg:x="46" fg:w="4"/><text x="17.4785%" y="782.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.75%)</title><rect x="17.9775%" y="788" width="0.7491%" height="15" fill="rgb(252,49,23)" fg:x="48" fg:w="2"/><text x="18.2275%" y="798.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.75%)</title><rect x="17.9775%" y="804" width="0.7491%" height="15" fill="rgb(215,19,7)" fg:x="48" fg:w="2"/><text x="18.2275%" y="814.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (2 samples, 0.75%)</title><rect x="17.9775%" y="820" width="0.7491%" height="15" fill="rgb(238,81,41)" fg:x="48" fg:w="2"/><text x="18.2275%" y="830.50"></text></g><g><title><listcomp> (dask/utils.py:874) (2 samples, 0.75%)</title><rect x="17.9775%" y="836" width="0.7491%" height="15" fill="rgb(210,199,37)" fg:x="48" fg:w="2"/><text x="18.2275%" y="846.50"></text></g><g><title>match (re.py:188) (2 samples, 0.75%)</title><rect x="17.9775%" y="852" width="0.7491%" height="15" fill="rgb(244,192,49)" fg:x="48" fg:w="2"/><text x="18.2275%" y="862.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="18.3521%" y="868" width="0.3745%" height="15" fill="rgb(226,211,11)" fg:x="49" fg:w="1"/><text x="18.6021%" y="878.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.37%)</title><rect x="18.3521%" y="884" width="0.3745%" height="15" fill="rgb(236,162,54)" fg:x="49" fg:w="1"/><text x="18.6021%" y="894.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.37%)</title><rect x="18.3521%" y="900" width="0.3745%" height="15" fill="rgb(220,229,9)" fg:x="49" fg:w="1"/><text x="18.6021%" y="910.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="18.3521%" y="916" width="0.3745%" height="15" fill="rgb(250,87,22)" fg:x="49" fg:w="1"/><text x="18.6021%" y="926.50"></text></g><g><title>_simple (sre_compile.py:447) (1 samples, 0.37%)</title><rect x="18.3521%" y="932" width="0.3745%" height="15" fill="rgb(239,43,17)" fg:x="49" fg:w="1"/><text x="18.6021%" y="942.50"></text></g><g><title>__getitem__ (sre_parse.py:165) (1 samples, 0.37%)</title><rect x="18.3521%" y="948" width="0.3745%" height="15" fill="rgb(231,177,25)" fg:x="49" fg:w="1"/><text x="18.6021%" y="958.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (3 samples, 1.12%)</title><rect x="18.7266%" y="612" width="1.1236%" height="15" fill="rgb(219,179,1)" fg:x="50" fg:w="3"/><text x="18.9766%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 1.12%)</title><rect x="18.7266%" y="628" width="1.1236%" height="15" fill="rgb(238,219,53)" fg:x="50" fg:w="3"/><text x="18.9766%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 1.12%)</title><rect x="18.7266%" y="644" width="1.1236%" height="15" fill="rgb(232,167,36)" fg:x="50" fg:w="3"/><text x="18.9766%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (3 samples, 1.12%)</title><rect x="18.7266%" y="660" width="1.1236%" height="15" fill="rgb(244,19,51)" fg:x="50" fg:w="3"/><text x="18.9766%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (3 samples, 1.12%)</title><rect x="18.7266%" y="676" width="1.1236%" height="15" fill="rgb(224,6,22)" fg:x="50" fg:w="3"/><text x="18.9766%" y="686.50"></text></g><g><title>match (re.py:188) (3 samples, 1.12%)</title><rect x="18.7266%" y="692" width="1.1236%" height="15" fill="rgb(224,145,5)" fg:x="50" fg:w="3"/><text x="18.9766%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="19.4757%" y="708" width="0.3745%" height="15" fill="rgb(234,130,49)" fg:x="52" fg:w="1"/><text x="19.7257%" y="718.50"></text></g><g><title>Series (dask/dataframe/core.py:3995) (2 samples, 0.75%)</title><rect x="19.8502%" y="612" width="0.7491%" height="15" fill="rgb(254,6,2)" fg:x="53" fg:w="2"/><text x="20.1002%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.75%)</title><rect x="19.8502%" y="628" width="0.7491%" height="15" fill="rgb(208,96,46)" fg:x="53" fg:w="2"/><text x="20.1002%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.75%)</title><rect x="19.8502%" y="644" width="0.7491%" height="15" fill="rgb(239,3,39)" fg:x="53" fg:w="2"/><text x="20.1002%" y="654.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.37%)</title><rect x="20.2247%" y="660" width="0.3745%" height="15" fill="rgb(233,210,1)" fg:x="54" fg:w="1"/><text x="20.4747%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.37%)</title><rect x="20.2247%" y="676" width="0.3745%" height="15" fill="rgb(244,137,37)" fg:x="54" fg:w="1"/><text x="20.4747%" y="686.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.37%)</title><rect x="20.2247%" y="692" width="0.3745%" height="15" fill="rgb(240,136,2)" fg:x="54" fg:w="1"/><text x="20.4747%" y="702.50"></text></g><g><title>_bind_comparison_method (dask/dataframe/core.py:6169) (1 samples, 0.37%)</title><rect x="20.5993%" y="612" width="0.3745%" height="15" fill="rgb(239,18,37)" fg:x="55" fg:w="1"/><text x="20.8493%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.37%)</title><rect x="20.5993%" y="628" width="0.3745%" height="15" fill="rgb(218,185,22)" fg:x="55" fg:w="1"/><text x="20.8493%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.37%)</title><rect x="20.5993%" y="644" width="0.3745%" height="15" fill="rgb(225,218,4)" fg:x="55" fg:w="1"/><text x="20.8493%" y="654.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.37%)</title><rect x="20.5993%" y="660" width="0.3745%" height="15" fill="rgb(230,182,32)" fg:x="55" fg:w="1"/><text x="20.8493%" y="670.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.37%)</title><rect x="20.5993%" y="676" width="0.3745%" height="15" fill="rgb(242,56,43)" fg:x="55" fg:w="1"/><text x="20.8493%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="20.9738%" y="948" width="0.3745%" height="15" fill="rgb(233,99,24)" fg:x="56" fg:w="1"/><text x="21.2238%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="20.9738%" y="964" width="0.3745%" height="15" fill="rgb(234,209,42)" fg:x="56" fg:w="1"/><text x="21.2238%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="20.9738%" y="980" width="0.3745%" height="15" fill="rgb(227,7,12)" fg:x="56" fg:w="1"/><text x="21.2238%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="20.9738%" y="996" width="0.3745%" height="15" fill="rgb(245,203,43)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="20.9738%" y="1012" width="0.3745%" height="15" fill="rgb(238,205,33)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1022.50"></text></g><g><title><module> (fsspec/compression.py:1) (1 samples, 0.37%)</title><rect x="20.9738%" y="1028" width="0.3745%" height="15" fill="rgb(231,56,7)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="20.9738%" y="1044" width="0.3745%" height="15" fill="rgb(244,186,29)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="20.9738%" y="1060" width="0.3745%" height="15" fill="rgb(234,111,31)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="20.9738%" y="1076" width="0.3745%" height="15" fill="rgb(241,149,10)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="20.9738%" y="1092" width="0.3745%" height="15" fill="rgb(249,206,44)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1102.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="20.9738%" y="1108" width="0.3745%" height="15" fill="rgb(251,153,30)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1118.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="20.9738%" y="1124" width="0.3745%" height="15" fill="rgb(239,152,38)" fg:x="56" fg:w="1"/><text x="21.2238%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="20.9738%" y="612" width="1.1236%" height="15" fill="rgb(249,139,47)" fg:x="56" fg:w="3"/><text x="21.2238%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="20.9738%" y="628" width="1.1236%" height="15" fill="rgb(244,64,35)" fg:x="56" fg:w="3"/><text x="21.2238%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="20.9738%" y="644" width="1.1236%" height="15" fill="rgb(216,46,15)" fg:x="56" fg:w="3"/><text x="21.2238%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="20.9738%" y="660" width="1.1236%" height="15" fill="rgb(250,74,19)" fg:x="56" fg:w="3"/><text x="21.2238%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="20.9738%" y="676" width="1.1236%" height="15" fill="rgb(249,42,33)" fg:x="56" fg:w="3"/><text x="21.2238%" y="686.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (3 samples, 1.12%)</title><rect x="20.9738%" y="692" width="1.1236%" height="15" fill="rgb(242,149,17)" fg:x="56" fg:w="3"/><text x="21.2238%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="20.9738%" y="708" width="1.1236%" height="15" fill="rgb(244,29,21)" fg:x="56" fg:w="3"/><text x="21.2238%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="20.9738%" y="724" width="1.1236%" height="15" fill="rgb(220,130,37)" fg:x="56" fg:w="3"/><text x="21.2238%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="20.9738%" y="740" width="1.1236%" height="15" fill="rgb(211,67,2)" fg:x="56" fg:w="3"/><text x="21.2238%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="20.9738%" y="756" width="1.1236%" height="15" fill="rgb(235,68,52)" fg:x="56" fg:w="3"/><text x="21.2238%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="20.9738%" y="772" width="1.1236%" height="15" fill="rgb(246,142,3)" fg:x="56" fg:w="3"/><text x="21.2238%" y="782.50"></text></g><g><title><module> (dask/bag/avro.py:1) (3 samples, 1.12%)</title><rect x="20.9738%" y="788" width="1.1236%" height="15" fill="rgb(241,25,7)" fg:x="56" fg:w="3"/><text x="21.2238%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="20.9738%" y="804" width="1.1236%" height="15" fill="rgb(242,119,39)" fg:x="56" fg:w="3"/><text x="21.2238%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="20.9738%" y="820" width="1.1236%" height="15" fill="rgb(241,98,45)" fg:x="56" fg:w="3"/><text x="21.2238%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="20.9738%" y="836" width="1.1236%" height="15" fill="rgb(254,28,30)" fg:x="56" fg:w="3"/><text x="21.2238%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="20.9738%" y="852" width="1.1236%" height="15" fill="rgb(241,142,54)" fg:x="56" fg:w="3"/><text x="21.2238%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="20.9738%" y="868" width="1.1236%" height="15" fill="rgb(222,85,15)" fg:x="56" fg:w="3"/><text x="21.2238%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="20.9738%" y="884" width="1.1236%" height="15" fill="rgb(210,85,47)" fg:x="56" fg:w="3"/><text x="21.2238%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="20.9738%" y="900" width="1.1236%" height="15" fill="rgb(224,206,25)" fg:x="56" fg:w="3"/><text x="21.2238%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="20.9738%" y="916" width="1.1236%" height="15" fill="rgb(243,201,19)" fg:x="56" fg:w="3"/><text x="21.2238%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (3 samples, 1.12%)</title><rect x="20.9738%" y="932" width="1.1236%" height="15" fill="rgb(236,59,4)" fg:x="56" fg:w="3"/><text x="21.2238%" y="942.50"></text></g><g><title>process_entries (fsspec/__init__.py:40) (2 samples, 0.75%)</title><rect x="21.3483%" y="948" width="0.7491%" height="15" fill="rgb(254,179,45)" fg:x="57" fg:w="2"/><text x="21.5983%" y="958.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (2 samples, 0.75%)</title><rect x="21.3483%" y="964" width="0.7491%" height="15" fill="rgb(226,14,10)" fg:x="57" fg:w="2"/><text x="21.5983%" y="974.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (2 samples, 0.75%)</title><rect x="21.3483%" y="980" width="0.7491%" height="15" fill="rgb(244,27,41)" fg:x="57" fg:w="2"/><text x="21.5983%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (2 samples, 0.75%)</title><rect x="21.3483%" y="996" width="0.7491%" height="15" fill="rgb(235,35,32)" fg:x="57" fg:w="2"/><text x="21.5983%" y="1006.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (2 samples, 0.75%)</title><rect x="21.3483%" y="1012" width="0.7491%" height="15" fill="rgb(218,68,31)" fg:x="57" fg:w="2"/><text x="21.5983%" y="1022.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.37%)</title><rect x="21.7228%" y="1028" width="0.3745%" height="15" fill="rgb(207,120,37)" fg:x="58" fg:w="1"/><text x="21.9728%" y="1038.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.37%)</title><rect x="21.7228%" y="1044" width="0.3745%" height="15" fill="rgb(227,98,0)" fg:x="58" fg:w="1"/><text x="21.9728%" y="1054.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.37%)</title><rect x="21.7228%" y="1060" width="0.3745%" height="15" fill="rgb(207,7,3)" fg:x="58" fg:w="1"/><text x="21.9728%" y="1070.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (39 samples, 14.61%)</title><rect x="7.8652%" y="500" width="14.6067%" height="15" fill="rgb(206,98,19)" fg:x="21" fg:w="39"/><text x="8.1152%" y="510.50"><module> (dask/datafra..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (39 samples, 14.61%)</title><rect x="7.8652%" y="516" width="14.6067%" height="15" fill="rgb(217,5,26)" fg:x="21" fg:w="39"/><text x="8.1152%" y="526.50">_find_and_load (<froze..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (39 samples, 14.61%)</title><rect x="7.8652%" y="532" width="14.6067%" height="15" fill="rgb(235,190,38)" fg:x="21" fg:w="39"/><text x="8.1152%" y="542.50">_find_and_load_unlocke..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.75%)</title><rect x="18.7266%" y="548" width="3.7453%" height="15" fill="rgb(247,86,24)" fg:x="50" fg:w="10"/><text x="18.9766%" y="558.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.75%)</title><rect x="18.7266%" y="564" width="3.7453%" height="15" fill="rgb(205,101,16)" fg:x="50" fg:w="10"/><text x="18.9766%" y="574.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.75%)</title><rect x="18.7266%" y="580" width="3.7453%" height="15" fill="rgb(246,168,33)" fg:x="50" fg:w="10"/><text x="18.9766%" y="590.50">_cal..</text></g><g><title><module> (dask/dataframe/core.py:1) (10 samples, 3.75%)</title><rect x="18.7266%" y="596" width="3.7453%" height="15" fill="rgb(231,114,1)" fg:x="50" fg:w="10"/><text x="18.9766%" y="606.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="22.0974%" y="612" width="0.3745%" height="15" fill="rgb(207,184,53)" fg:x="59" fg:w="1"/><text x="22.3474%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="628" width="0.3745%" height="15" fill="rgb(224,95,51)" fg:x="59" fg:w="1"/><text x="22.3474%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.0974%" y="644" width="0.3745%" height="15" fill="rgb(212,188,45)" fg:x="59" fg:w="1"/><text x="22.3474%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.0974%" y="660" width="0.3745%" height="15" fill="rgb(223,154,38)" fg:x="59" fg:w="1"/><text x="22.3474%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.0974%" y="676" width="0.3745%" height="15" fill="rgb(251,22,52)" fg:x="59" fg:w="1"/><text x="22.3474%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.0974%" y="692" width="0.3745%" height="15" fill="rgb(229,209,22)" fg:x="59" fg:w="1"/><text x="22.3474%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="708" width="0.3745%" height="15" fill="rgb(234,138,34)" fg:x="59" fg:w="1"/><text x="22.3474%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (1 samples, 0.37%)</title><rect x="22.0974%" y="724" width="0.3745%" height="15" fill="rgb(212,95,11)" fg:x="59" fg:w="1"/><text x="22.3474%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.0974%" y="740" width="0.3745%" height="15" fill="rgb(240,179,47)" fg:x="59" fg:w="1"/><text x="22.3474%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.0974%" y="756" width="0.3745%" height="15" fill="rgb(240,163,11)" fg:x="59" fg:w="1"/><text x="22.3474%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.0974%" y="772" width="0.3745%" height="15" fill="rgb(236,37,12)" fg:x="59" fg:w="1"/><text x="22.3474%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.0974%" y="788" width="0.3745%" height="15" fill="rgb(232,164,16)" fg:x="59" fg:w="1"/><text x="22.3474%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="804" width="0.3745%" height="15" fill="rgb(244,205,15)" fg:x="59" fg:w="1"/><text x="22.3474%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (1 samples, 0.37%)</title><rect x="22.0974%" y="820" width="0.3745%" height="15" fill="rgb(223,117,47)" fg:x="59" fg:w="1"/><text x="22.3474%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="22.0974%" y="836" width="0.3745%" height="15" fill="rgb(244,107,35)" fg:x="59" fg:w="1"/><text x="22.3474%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="852" width="0.3745%" height="15" fill="rgb(205,140,8)" fg:x="59" fg:w="1"/><text x="22.3474%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.0974%" y="868" width="0.3745%" height="15" fill="rgb(228,84,46)" fg:x="59" fg:w="1"/><text x="22.3474%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.0974%" y="884" width="0.3745%" height="15" fill="rgb(254,188,9)" fg:x="59" fg:w="1"/><text x="22.3474%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.0974%" y="900" width="0.3745%" height="15" fill="rgb(206,112,54)" fg:x="59" fg:w="1"/><text x="22.3474%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.0974%" y="916" width="0.3745%" height="15" fill="rgb(216,84,49)" fg:x="59" fg:w="1"/><text x="22.3474%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="932" width="0.3745%" height="15" fill="rgb(214,194,35)" fg:x="59" fg:w="1"/><text x="22.3474%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (1 samples, 0.37%)</title><rect x="22.0974%" y="948" width="0.3745%" height="15" fill="rgb(249,28,3)" fg:x="59" fg:w="1"/><text x="22.3474%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.0974%" y="964" width="0.3745%" height="15" fill="rgb(222,56,52)" fg:x="59" fg:w="1"/><text x="22.3474%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.0974%" y="980" width="0.3745%" height="15" fill="rgb(245,217,50)" fg:x="59" fg:w="1"/><text x="22.3474%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.0974%" y="996" width="0.3745%" height="15" fill="rgb(213,201,24)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.0974%" y="1012" width="0.3745%" height="15" fill="rgb(248,116,28)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="1028" width="0.3745%" height="15" fill="rgb(219,72,43)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (1 samples, 0.37%)</title><rect x="22.0974%" y="1044" width="0.3745%" height="15" fill="rgb(209,138,14)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.0974%" y="1060" width="0.3745%" height="15" fill="rgb(222,18,33)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.0974%" y="1076" width="0.3745%" height="15" fill="rgb(213,199,7)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.0974%" y="1092" width="0.3745%" height="15" fill="rgb(250,110,10)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.0974%" y="1108" width="0.3745%" height="15" fill="rgb(248,123,6)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.0974%" y="1124" width="0.3745%" height="15" fill="rgb(206,91,31)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (1 samples, 0.37%)</title><rect x="22.0974%" y="1140" width="0.3745%" height="15" fill="rgb(211,154,13)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1150.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.37%)</title><rect x="22.0974%" y="1156" width="0.3745%" height="15" fill="rgb(225,148,7)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1166.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.37%)</title><rect x="22.0974%" y="1172" width="0.3745%" height="15" fill="rgb(220,160,43)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1182.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.37%)</title><rect x="22.0974%" y="1188" width="0.3745%" height="15" fill="rgb(213,52,39)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1198.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.37%)</title><rect x="22.0974%" y="1204" width="0.3745%" height="15" fill="rgb(243,137,7)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1214.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.37%)</title><rect x="22.0974%" y="1220" width="0.3745%" height="15" fill="rgb(230,79,13)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1230.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.37%)</title><rect x="22.0974%" y="1236" width="0.3745%" height="15" fill="rgb(247,105,23)" fg:x="59" fg:w="1"/><text x="22.3474%" y="1246.50"></text></g><g><title>Rolling (dask/dataframe/rolling.py:456) (1 samples, 0.37%)</title><rect x="22.4719%" y="516" width="0.3745%" height="15" fill="rgb(223,179,41)" fg:x="60" fg:w="1"/><text x="22.7219%" y="526.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.37%)</title><rect x="22.4719%" y="532" width="0.3745%" height="15" fill="rgb(218,9,34)" fg:x="60" fg:w="1"/><text x="22.7219%" y="542.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.37%)</title><rect x="22.4719%" y="548" width="0.3745%" height="15" fill="rgb(222,106,8)" fg:x="60" fg:w="1"/><text x="22.7219%" y="558.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.37%)</title><rect x="22.4719%" y="564" width="0.3745%" height="15" fill="rgb(211,220,0)" fg:x="60" fg:w="1"/><text x="22.7219%" y="574.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.37%)</title><rect x="22.4719%" y="580" width="0.3745%" height="15" fill="rgb(229,52,16)" fg:x="60" fg:w="1"/><text x="22.7219%" y="590.50"></text></g><g><title>match (re.py:188) (1 samples, 0.37%)</title><rect x="22.4719%" y="596" width="0.3745%" height="15" fill="rgb(212,155,18)" fg:x="60" fg:w="1"/><text x="22.7219%" y="606.50"></text></g><g><title><module> (dask/dataframe/io/csv.py:1) (1 samples, 0.37%)</title><rect x="22.8464%" y="692" width="0.3745%" height="15" fill="rgb(242,21,14)" fg:x="61" fg:w="1"/><text x="23.0964%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="22.8464%" y="708" width="0.3745%" height="15" fill="rgb(222,19,48)" fg:x="61" fg:w="1"/><text x="23.0964%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="22.8464%" y="724" width="0.3745%" height="15" fill="rgb(232,45,27)" fg:x="61" fg:w="1"/><text x="23.0964%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="22.8464%" y="740" width="0.3745%" height="15" fill="rgb(249,103,42)" fg:x="61" fg:w="1"/><text x="23.0964%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="22.8464%" y="756" width="0.3745%" height="15" fill="rgb(246,81,33)" fg:x="61" fg:w="1"/><text x="23.0964%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="22.8464%" y="772" width="0.3745%" height="15" fill="rgb(252,33,42)" fg:x="61" fg:w="1"/><text x="23.0964%" y="782.50"></text></g><g><title><module> (dask/dataframe/io/io.py:1) (1 samples, 0.37%)</title><rect x="22.8464%" y="788" width="0.3745%" height="15" fill="rgb(209,212,41)" fg:x="61" fg:w="1"/><text x="23.0964%" y="798.50"></text></g><g><title>insert_meta_param_description (dask/dataframe/utils.py:156) (1 samples, 0.37%)</title><rect x="22.8464%" y="804" width="0.3745%" height="15" fill="rgb(207,154,6)" fg:x="61" fg:w="1"/><text x="23.0964%" y="814.50"></text></g><g><title>wrap (textwrap.py:368) (1 samples, 0.37%)</title><rect x="22.8464%" y="820" width="0.3745%" height="15" fill="rgb(223,64,47)" fg:x="61" fg:w="1"/><text x="23.0964%" y="830.50"></text></g><g><title>wrap (textwrap.py:342) (1 samples, 0.37%)</title><rect x="22.8464%" y="836" width="0.3745%" height="15" fill="rgb(211,161,38)" fg:x="61" fg:w="1"/><text x="23.0964%" y="846.50"></text></g><g><title>_split_chunks (textwrap.py:336) (1 samples, 0.37%)</title><rect x="22.8464%" y="852" width="0.3745%" height="15" fill="rgb(219,138,40)" fg:x="61" fg:w="1"/><text x="23.0964%" y="862.50"></text></g><g><title>_split (textwrap.py:160) (1 samples, 0.37%)</title><rect x="22.8464%" y="868" width="0.3745%" height="15" fill="rgb(241,228,46)" fg:x="61" fg:w="1"/><text x="23.0964%" y="878.50"></text></g><g><title><listcomp> (textwrap.py:179) (1 samples, 0.37%)</title><rect x="22.8464%" y="884" width="0.3745%" height="15" fill="rgb(223,209,38)" fg:x="61" fg:w="1"/><text x="23.0964%" y="894.50"></text></g><g><title><module> (dask/dataframe/io/json.py:1) (1 samples, 0.37%)</title><rect x="23.2210%" y="692" width="0.3745%" height="15" fill="rgb(236,164,45)" fg:x="62" fg:w="1"/><text x="23.4710%" y="702.50"></text></g><g><title>insert_meta_param_description (dask/dataframe/utils.py:156) (1 samples, 0.37%)</title><rect x="23.2210%" y="708" width="0.3745%" height="15" fill="rgb(231,15,5)" fg:x="62" fg:w="1"/><text x="23.4710%" y="718.50"></text></g><g><title>wrap (textwrap.py:368) (1 samples, 0.37%)</title><rect x="23.2210%" y="724" width="0.3745%" height="15" fill="rgb(252,35,15)" fg:x="62" fg:w="1"/><text x="23.4710%" y="734.50"></text></g><g><title>wrap (textwrap.py:342) (1 samples, 0.37%)</title><rect x="23.2210%" y="740" width="0.3745%" height="15" fill="rgb(248,181,18)" fg:x="62" fg:w="1"/><text x="23.4710%" y="750.50"></text></g><g><title>_wrap_chunks (textwrap.py:233) (1 samples, 0.37%)</title><rect x="23.2210%" y="756" width="0.3745%" height="15" fill="rgb(233,39,42)" fg:x="62" fg:w="1"/><text x="23.4710%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="22.8464%" y="676" width="1.1236%" height="15" fill="rgb(238,110,33)" fg:x="61" fg:w="3"/><text x="23.0964%" y="686.50"></text></g><g><title><module> (dask/dataframe/io/parquet/__init__.py:1) (1 samples, 0.37%)</title><rect x="23.5955%" y="692" width="0.3745%" height="15" fill="rgb(233,195,10)" fg:x="63" fg:w="1"/><text x="23.8455%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="23.5955%" y="708" width="0.3745%" height="15" fill="rgb(254,105,3)" fg:x="63" fg:w="1"/><text x="23.8455%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="23.5955%" y="724" width="0.3745%" height="15" fill="rgb(221,225,9)" fg:x="63" fg:w="1"/><text x="23.8455%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="23.5955%" y="740" width="0.3745%" height="15" fill="rgb(224,227,45)" fg:x="63" fg:w="1"/><text x="23.8455%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="23.5955%" y="756" width="0.3745%" height="15" fill="rgb(229,198,43)" fg:x="63" fg:w="1"/><text x="23.8455%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="23.5955%" y="772" width="0.3745%" height="15" fill="rgb(206,209,35)" fg:x="63" fg:w="1"/><text x="23.8455%" y="782.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="23.5955%" y="788" width="0.3745%" height="15" fill="rgb(245,195,53)" fg:x="63" fg:w="1"/><text x="23.8455%" y="798.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (4 samples, 1.50%)</title><rect x="22.8464%" y="596" width="1.4981%" height="15" fill="rgb(240,92,26)" fg:x="61" fg:w="4"/><text x="23.0964%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="22.8464%" y="612" width="1.4981%" height="15" fill="rgb(207,40,23)" fg:x="61" fg:w="4"/><text x="23.0964%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="22.8464%" y="628" width="1.4981%" height="15" fill="rgb(223,111,35)" fg:x="61" fg:w="4"/><text x="23.0964%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="22.8464%" y="644" width="1.4981%" height="15" fill="rgb(229,147,28)" fg:x="61" fg:w="4"/><text x="23.0964%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="22.8464%" y="660" width="1.4981%" height="15" fill="rgb(211,29,28)" fg:x="61" fg:w="4"/><text x="23.0964%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="23.9700%" y="676" width="0.3745%" height="15" fill="rgb(228,72,33)" fg:x="64" fg:w="1"/><text x="24.2200%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 20.97%)</title><rect x="3.7453%" y="260" width="20.9738%" height="15" fill="rgb(205,214,31)" fg:x="10" fg:w="56"/><text x="3.9953%" y="270.50">_call_with_frames_removed (<froze..</text></g><g><title><module> (qarray/df.py:1) (45 samples, 16.85%)</title><rect x="7.8652%" y="276" width="16.8539%" height="15" fill="rgb(224,111,15)" fg:x="21" fg:w="45"/><text x="8.1152%" y="286.50"><module> (qarray/df.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (45 samples, 16.85%)</title><rect x="7.8652%" y="292" width="16.8539%" height="15" fill="rgb(253,21,26)" fg:x="21" fg:w="45"/><text x="8.1152%" y="302.50">_find_and_load (<frozen im..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (45 samples, 16.85%)</title><rect x="7.8652%" y="308" width="16.8539%" height="15" fill="rgb(245,139,43)" fg:x="21" fg:w="45"/><text x="8.1152%" y="318.50">_find_and_load_unlocked (<..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (45 samples, 16.85%)</title><rect x="7.8652%" y="324" width="16.8539%" height="15" fill="rgb(252,170,7)" fg:x="21" fg:w="45"/><text x="8.1152%" y="334.50">_load_unlocked (<frozen im..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (45 samples, 16.85%)</title><rect x="7.8652%" y="340" width="16.8539%" height="15" fill="rgb(231,118,14)" fg:x="21" fg:w="45"/><text x="8.1152%" y="350.50">exec_module (<frozen impor..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (45 samples, 16.85%)</title><rect x="7.8652%" y="356" width="16.8539%" height="15" fill="rgb(238,83,0)" fg:x="21" fg:w="45"/><text x="8.1152%" y="366.50">_call_with_frames_removed ..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (45 samples, 16.85%)</title><rect x="7.8652%" y="372" width="16.8539%" height="15" fill="rgb(221,39,39)" fg:x="21" fg:w="45"/><text x="8.1152%" y="382.50"><module> (dask/dataframe/_..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (45 samples, 16.85%)</title><rect x="7.8652%" y="388" width="16.8539%" height="15" fill="rgb(222,119,46)" fg:x="21" fg:w="45"/><text x="8.1152%" y="398.50">_handle_fromlist (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (45 samples, 16.85%)</title><rect x="7.8652%" y="404" width="16.8539%" height="15" fill="rgb(222,165,49)" fg:x="21" fg:w="45"/><text x="8.1152%" y="414.50">_call_with_frames_removed ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (45 samples, 16.85%)</title><rect x="7.8652%" y="420" width="16.8539%" height="15" fill="rgb(219,113,52)" fg:x="21" fg:w="45"/><text x="8.1152%" y="430.50">_find_and_load (<frozen im..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (45 samples, 16.85%)</title><rect x="7.8652%" y="436" width="16.8539%" height="15" fill="rgb(214,7,15)" fg:x="21" fg:w="45"/><text x="8.1152%" y="446.50">_find_and_load_unlocked (<..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (45 samples, 16.85%)</title><rect x="7.8652%" y="452" width="16.8539%" height="15" fill="rgb(235,32,4)" fg:x="21" fg:w="45"/><text x="8.1152%" y="462.50">_load_unlocked (<frozen im..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (45 samples, 16.85%)</title><rect x="7.8652%" y="468" width="16.8539%" height="15" fill="rgb(238,90,54)" fg:x="21" fg:w="45"/><text x="8.1152%" y="478.50">exec_module (<frozen impor..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (45 samples, 16.85%)</title><rect x="7.8652%" y="484" width="16.8539%" height="15" fill="rgb(213,208,19)" fg:x="21" fg:w="45"/><text x="8.1152%" y="494.50">_call_with_frames_removed ..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (6 samples, 2.25%)</title><rect x="22.4719%" y="500" width="2.2472%" height="15" fill="rgb(233,156,4)" fg:x="60" fg:w="6"/><text x="22.7219%" y="510.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="22.8464%" y="516" width="1.8727%" height="15" fill="rgb(207,194,5)" fg:x="61" fg:w="5"/><text x="23.0964%" y="526.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="22.8464%" y="532" width="1.8727%" height="15" fill="rgb(206,111,30)" fg:x="61" fg:w="5"/><text x="23.0964%" y="542.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="22.8464%" y="548" width="1.8727%" height="15" fill="rgb(243,70,54)" fg:x="61" fg:w="5"/><text x="23.0964%" y="558.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="22.8464%" y="564" width="1.8727%" height="15" fill="rgb(242,28,8)" fg:x="61" fg:w="5"/><text x="23.0964%" y="574.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="22.8464%" y="580" width="1.8727%" height="15" fill="rgb(219,106,18)" fg:x="61" fg:w="5"/><text x="23.0964%" y="590.50">_..</text></g><g><title><module> (dask/dataframe/multi.py:1) (1 samples, 0.37%)</title><rect x="24.3446%" y="596" width="0.3745%" height="15" fill="rgb(244,222,10)" fg:x="65" fg:w="1"/><text x="24.5946%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="24.3446%" y="612" width="0.3745%" height="15" fill="rgb(236,179,52)" fg:x="65" fg:w="1"/><text x="24.5946%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="24.3446%" y="628" width="0.3745%" height="15" fill="rgb(213,23,39)" fg:x="65" fg:w="1"/><text x="24.5946%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="24.3446%" y="644" width="0.3745%" height="15" fill="rgb(238,48,10)" fg:x="65" fg:w="1"/><text x="24.5946%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="24.3446%" y="660" width="0.3745%" height="15" fill="rgb(251,196,23)" fg:x="65" fg:w="1"/><text x="24.5946%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="24.3446%" y="676" width="0.3745%" height="15" fill="rgb(250,152,24)" fg:x="65" fg:w="1"/><text x="24.5946%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="24.3446%" y="692" width="0.3745%" height="15" fill="rgb(209,150,17)" fg:x="65" fg:w="1"/><text x="24.5946%" y="702.50"></text></g><g><title><module> (qarray/__init__.py:1) (57 samples, 21.35%)</title><rect x="3.7453%" y="180" width="21.3483%" height="15" fill="rgb(234,202,34)" fg:x="10" fg:w="57"/><text x="3.9953%" y="190.50"><module> (qarray/__init__.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (57 samples, 21.35%)</title><rect x="3.7453%" y="196" width="21.3483%" height="15" fill="rgb(253,148,53)" fg:x="10" fg:w="57"/><text x="3.9953%" y="206.50">_find_and_load (<frozen importlib...</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (57 samples, 21.35%)</title><rect x="3.7453%" y="212" width="21.3483%" height="15" fill="rgb(218,129,16)" fg:x="10" fg:w="57"/><text x="3.9953%" y="222.50">_find_and_load_unlocked (<frozen i..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (57 samples, 21.35%)</title><rect x="3.7453%" y="228" width="21.3483%" height="15" fill="rgb(216,85,19)" fg:x="10" fg:w="57"/><text x="3.9953%" y="238.50">_load_unlocked (<frozen importlib...</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (57 samples, 21.35%)</title><rect x="3.7453%" y="244" width="21.3483%" height="15" fill="rgb(235,228,7)" fg:x="10" fg:w="57"/><text x="3.9953%" y="254.50">exec_module (<frozen importlib._bo..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="24.7191%" y="260" width="0.3745%" height="15" fill="rgb(245,175,0)" fg:x="66" fg:w="1"/><text x="24.9691%" y="270.50"></text></g><g><title>source_to_code (<frozen importlib._bootstrap_external>:908) (1 samples, 0.37%)</title><rect x="24.7191%" y="276" width="0.3745%" height="15" fill="rgb(208,168,36)" fg:x="66" fg:w="1"/><text x="24.9691%" y="286.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="24.7191%" y="292" width="0.3745%" height="15" fill="rgb(246,171,24)" fg:x="66" fg:w="1"/><text x="24.9691%" y="302.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.37%)</title><rect x="25.0936%" y="724" width="0.3745%" height="15" fill="rgb(215,142,24)" fg:x="67" fg:w="1"/><text x="25.3436%" y="734.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.37%)</title><rect x="25.0936%" y="740" width="0.3745%" height="15" fill="rgb(250,187,7)" fg:x="67" fg:w="1"/><text x="25.3436%" y="750.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.37%)</title><rect x="25.0936%" y="756" width="0.3745%" height="15" fill="rgb(228,66,33)" fg:x="67" fg:w="1"/><text x="25.3436%" y="766.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.37%)</title><rect x="25.0936%" y="772" width="0.3745%" height="15" fill="rgb(234,215,21)" fg:x="67" fg:w="1"/><text x="25.3436%" y="782.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="25.0936%" y="788" width="0.3745%" height="15" fill="rgb(222,191,20)" fg:x="67" fg:w="1"/><text x="25.3436%" y="798.50"></text></g><g><title><module> (numpy/core/numeric.py:1) (1 samples, 0.37%)</title><rect x="25.4682%" y="772" width="0.3745%" height="15" fill="rgb(245,79,54)" fg:x="68" fg:w="1"/><text x="25.7182%" y="782.50"></text></g><g><title>decorator (numpy/core/overrides.py:142) (1 samples, 0.37%)</title><rect x="25.4682%" y="788" width="0.3745%" height="15" fill="rgb(240,10,37)" fg:x="68" fg:w="1"/><text x="25.7182%" y="798.50"></text></g><g><title>verify_matching_signatures (numpy/core/overrides.py:83) (1 samples, 0.37%)</title><rect x="25.4682%" y="804" width="0.3745%" height="15" fill="rgb(214,192,32)" fg:x="68" fg:w="1"/><text x="25.7182%" y="814.50"></text></g><g><title>getargspec (numpy/_utils/_inspect.py:96) (1 samples, 0.37%)</title><rect x="25.4682%" y="820" width="0.3745%" height="15" fill="rgb(209,36,54)" fg:x="68" fg:w="1"/><text x="25.7182%" y="830.50"></text></g><g><title>getargs (numpy/_utils/_inspect.py:65) (1 samples, 0.37%)</title><rect x="25.4682%" y="836" width="0.3745%" height="15" fill="rgb(220,10,11)" fg:x="68" fg:w="1"/><text x="25.7182%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="25.4682%" y="740" width="0.7491%" height="15" fill="rgb(221,106,17)" fg:x="68" fg:w="2"/><text x="25.7182%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="25.4682%" y="756" width="0.7491%" height="15" fill="rgb(251,142,44)" fg:x="68" fg:w="2"/><text x="25.7182%" y="766.50"></text></g><g><title><module> (numpy/core/numerictypes.py:1) (1 samples, 0.37%)</title><rect x="25.8427%" y="772" width="0.3745%" height="15" fill="rgb(238,13,15)" fg:x="69" fg:w="1"/><text x="26.0927%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="25.8427%" y="788" width="0.3745%" height="15" fill="rgb(208,107,27)" fg:x="69" fg:w="1"/><text x="26.0927%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="25.8427%" y="804" width="0.3745%" height="15" fill="rgb(205,136,37)" fg:x="69" fg:w="1"/><text x="26.0927%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="25.8427%" y="820" width="0.3745%" height="15" fill="rgb(250,205,27)" fg:x="69" fg:w="1"/><text x="26.0927%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="25.8427%" y="836" width="0.3745%" height="15" fill="rgb(210,80,43)" fg:x="69" fg:w="1"/><text x="26.0927%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="25.8427%" y="852" width="0.3745%" height="15" fill="rgb(247,160,36)" fg:x="69" fg:w="1"/><text x="26.0927%" y="862.50"></text></g><g><title><module> (numpy/core/_type_aliases.py:1) (1 samples, 0.37%)</title><rect x="25.8427%" y="868" width="0.3745%" height="15" fill="rgb(234,13,49)" fg:x="69" fg:w="1"/><text x="26.0927%" y="878.50"></text></g><g><title>_set_array_types (numpy/core/_type_aliases.py:211) (1 samples, 0.37%)</title><rect x="25.8427%" y="884" width="0.3745%" height="15" fill="rgb(234,122,0)" fg:x="69" fg:w="1"/><text x="26.0927%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="25.0936%" y="692" width="1.4981%" height="15" fill="rgb(207,146,38)" fg:x="67" fg:w="4"/><text x="25.3436%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="25.0936%" y="708" width="1.4981%" height="15" fill="rgb(207,177,25)" fg:x="67" fg:w="4"/><text x="25.3436%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="25.4682%" y="724" width="1.1236%" height="15" fill="rgb(211,178,42)" fg:x="68" fg:w="3"/><text x="25.7182%" y="734.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="26.2172%" y="740" width="0.3745%" height="15" fill="rgb(230,69,54)" fg:x="70" fg:w="1"/><text x="26.4672%" y="750.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.37%)</title><rect x="26.2172%" y="756" width="0.3745%" height="15" fill="rgb(214,135,41)" fg:x="70" fg:w="1"/><text x="26.4672%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="25.0936%" y="420" width="1.8727%" height="15" fill="rgb(237,67,25)" fg:x="67" fg:w="5"/><text x="25.3436%" y="430.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="25.0936%" y="436" width="1.8727%" height="15" fill="rgb(222,189,50)" fg:x="67" fg:w="5"/><text x="25.3436%" y="446.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="25.0936%" y="452" width="1.8727%" height="15" fill="rgb(245,148,34)" fg:x="67" fg:w="5"/><text x="25.3436%" y="462.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="25.0936%" y="468" width="1.8727%" height="15" fill="rgb(222,29,6)" fg:x="67" fg:w="5"/><text x="25.3436%" y="478.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="25.0936%" y="484" width="1.8727%" height="15" fill="rgb(221,189,43)" fg:x="67" fg:w="5"/><text x="25.3436%" y="494.50">_..</text></g><g><title><module> (numpy/__config__.py:3) (5 samples, 1.87%)</title><rect x="25.0936%" y="500" width="1.8727%" height="15" fill="rgb(207,36,27)" fg:x="67" fg:w="5"/><text x="25.3436%" y="510.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="25.0936%" y="516" width="1.8727%" height="15" fill="rgb(217,90,24)" fg:x="67" fg:w="5"/><text x="25.3436%" y="526.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="25.0936%" y="532" width="1.8727%" height="15" fill="rgb(224,66,35)" fg:x="67" fg:w="5"/><text x="25.3436%" y="542.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="25.0936%" y="548" width="1.8727%" height="15" fill="rgb(221,13,50)" fg:x="67" fg:w="5"/><text x="25.3436%" y="558.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="25.0936%" y="564" width="1.8727%" height="15" fill="rgb(236,68,49)" fg:x="67" fg:w="5"/><text x="25.3436%" y="574.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="25.0936%" y="580" width="1.8727%" height="15" fill="rgb(229,146,28)" fg:x="67" fg:w="5"/><text x="25.3436%" y="590.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="25.0936%" y="596" width="1.8727%" height="15" fill="rgb(225,31,38)" fg:x="67" fg:w="5"/><text x="25.3436%" y="606.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="25.0936%" y="612" width="1.8727%" height="15" fill="rgb(250,208,3)" fg:x="67" fg:w="5"/><text x="25.3436%" y="622.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="25.0936%" y="628" width="1.8727%" height="15" fill="rgb(246,54,23)" fg:x="67" fg:w="5"/><text x="25.3436%" y="638.50">_..</text></g><g><title><module> (numpy/core/__init__.py:1) (5 samples, 1.87%)</title><rect x="25.0936%" y="644" width="1.8727%" height="15" fill="rgb(243,76,11)" fg:x="67" fg:w="5"/><text x="25.3436%" y="654.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.87%)</title><rect x="25.0936%" y="660" width="1.8727%" height="15" fill="rgb(245,21,50)" fg:x="67" fg:w="5"/><text x="25.3436%" y="670.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="25.0936%" y="676" width="1.8727%" height="15" fill="rgb(228,9,43)" fg:x="67" fg:w="5"/><text x="25.3436%" y="686.50">_..</text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.37%)</title><rect x="26.5918%" y="692" width="0.3745%" height="15" fill="rgb(208,100,47)" fg:x="71" fg:w="1"/><text x="26.8418%" y="702.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.37%)</title><rect x="26.5918%" y="708" width="0.3745%" height="15" fill="rgb(232,26,8)" fg:x="71" fg:w="1"/><text x="26.8418%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="26.9663%" y="1284" width="0.3745%" height="15" fill="rgb(216,166,38)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1294.50"></text></g><g><title><module> (numpy/_typing/_char_codes.py:1) (1 samples, 0.37%)</title><rect x="26.9663%" y="1300" width="0.3745%" height="15" fill="rgb(251,202,51)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1310.50"></text></g><g><title>__getitem__ (typing.py:358) (1 samples, 0.37%)</title><rect x="26.9663%" y="1316" width="0.3745%" height="15" fill="rgb(254,216,34)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1326.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.37%)</title><rect x="26.9663%" y="1332" width="0.3745%" height="15" fill="rgb(251,32,27)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1342.50"></text></g><g><title>Literal (typing.py:481) (1 samples, 0.37%)</title><rect x="26.9663%" y="1348" width="0.3745%" height="15" fill="rgb(208,127,28)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1358.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.37%)</title><rect x="26.9663%" y="1364" width="0.3745%" height="15" fill="rgb(224,137,22)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1374.50"></text></g><g><title>_collect_type_vars (typing.py:191) (1 samples, 0.37%)</title><rect x="26.9663%" y="1380" width="0.3745%" height="15" fill="rgb(254,70,32)" fg:x="72" fg:w="1"/><text x="27.2163%" y="1390.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="660" width="0.7491%" height="15" fill="rgb(229,75,37)" fg:x="72" fg:w="2"/><text x="27.2163%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="676" width="0.7491%" height="15" fill="rgb(252,64,23)" fg:x="72" fg:w="2"/><text x="27.2163%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="692" width="0.7491%" height="15" fill="rgb(232,162,48)" fg:x="72" fg:w="2"/><text x="27.2163%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="708" width="0.7491%" height="15" fill="rgb(246,160,12)" fg:x="72" fg:w="2"/><text x="27.2163%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="724" width="0.7491%" height="15" fill="rgb(247,166,0)" fg:x="72" fg:w="2"/><text x="27.2163%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="740" width="0.7491%" height="15" fill="rgb(249,219,21)" fg:x="72" fg:w="2"/><text x="27.2163%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="756" width="0.7491%" height="15" fill="rgb(205,209,3)" fg:x="72" fg:w="2"/><text x="27.2163%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="26.9663%" y="772" width="0.7491%" height="15" fill="rgb(243,44,1)" fg:x="72" fg:w="2"/><text x="27.2163%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="788" width="0.7491%" height="15" fill="rgb(206,159,16)" fg:x="72" fg:w="2"/><text x="27.2163%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="804" width="0.7491%" height="15" fill="rgb(244,77,30)" fg:x="72" fg:w="2"/><text x="27.2163%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="820" width="0.7491%" height="15" fill="rgb(218,69,12)" fg:x="72" fg:w="2"/><text x="27.2163%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="836" width="0.7491%" height="15" fill="rgb(212,87,7)" fg:x="72" fg:w="2"/><text x="27.2163%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="852" width="0.7491%" height="15" fill="rgb(245,114,25)" fg:x="72" fg:w="2"/><text x="27.2163%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="868" width="0.7491%" height="15" fill="rgb(210,61,42)" fg:x="72" fg:w="2"/><text x="27.2163%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="884" width="0.7491%" height="15" fill="rgb(211,52,33)" fg:x="72" fg:w="2"/><text x="27.2163%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="900" width="0.7491%" height="15" fill="rgb(234,58,33)" fg:x="72" fg:w="2"/><text x="27.2163%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="916" width="0.7491%" height="15" fill="rgb(220,115,36)" fg:x="72" fg:w="2"/><text x="27.2163%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="932" width="0.7491%" height="15" fill="rgb(243,153,54)" fg:x="72" fg:w="2"/><text x="27.2163%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="948" width="0.7491%" height="15" fill="rgb(251,47,18)" fg:x="72" fg:w="2"/><text x="27.2163%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="964" width="0.7491%" height="15" fill="rgb(242,102,42)" fg:x="72" fg:w="2"/><text x="27.2163%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="980" width="0.7491%" height="15" fill="rgb(234,31,38)" fg:x="72" fg:w="2"/><text x="27.2163%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="26.9663%" y="996" width="0.7491%" height="15" fill="rgb(221,117,51)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="1012" width="0.7491%" height="15" fill="rgb(212,20,18)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="1028" width="0.7491%" height="15" fill="rgb(245,133,36)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="1044" width="0.7491%" height="15" fill="rgb(212,6,19)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="1060" width="0.7491%" height="15" fill="rgb(218,1,36)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="1076" width="0.7491%" height="15" fill="rgb(246,84,54)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="1092" width="0.7491%" height="15" fill="rgb(242,110,6)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="1108" width="0.7491%" height="15" fill="rgb(214,47,5)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="1124" width="0.7491%" height="15" fill="rgb(218,159,25)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="1140" width="0.7491%" height="15" fill="rgb(215,211,28)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="1156" width="0.7491%" height="15" fill="rgb(238,59,32)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="1172" width="0.7491%" height="15" fill="rgb(226,82,3)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="26.9663%" y="1188" width="0.7491%" height="15" fill="rgb(240,164,32)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1198.50"></text></g><g><title><module> (numpy/_typing/__init__.py:1) (2 samples, 0.75%)</title><rect x="26.9663%" y="1204" width="0.7491%" height="15" fill="rgb(232,46,7)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="26.9663%" y="1220" width="0.7491%" height="15" fill="rgb(229,129,53)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="26.9663%" y="1236" width="0.7491%" height="15" fill="rgb(234,188,29)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="26.9663%" y="1252" width="0.7491%" height="15" fill="rgb(246,141,4)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="26.9663%" y="1268" width="0.7491%" height="15" fill="rgb(229,23,39)" fg:x="72" fg:w="2"/><text x="27.2163%" y="1278.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="27.3408%" y="1284" width="0.3745%" height="15" fill="rgb(206,12,3)" fg:x="73" fg:w="1"/><text x="27.5908%" y="1294.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="27.3408%" y="1300" width="0.3745%" height="15" fill="rgb(252,226,20)" fg:x="73" fg:w="1"/><text x="27.5908%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="26.9663%" y="644" width="1.1236%" height="15" fill="rgb(216,123,35)" fg:x="72" fg:w="3"/><text x="27.2163%" y="654.50"></text></g><g><title><module> (numpy/lib/utils.py:1) (1 samples, 0.37%)</title><rect x="27.7154%" y="660" width="0.3745%" height="15" fill="rgb(212,68,40)" fg:x="74" fg:w="1"/><text x="27.9654%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="27.7154%" y="676" width="0.3745%" height="15" fill="rgb(254,125,32)" fg:x="74" fg:w="1"/><text x="27.9654%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="27.7154%" y="692" width="0.3745%" height="15" fill="rgb(253,97,22)" fg:x="74" fg:w="1"/><text x="27.9654%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="27.7154%" y="708" width="0.3745%" height="15" fill="rgb(241,101,14)" fg:x="74" fg:w="1"/><text x="27.9654%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="27.7154%" y="724" width="0.3745%" height="15" fill="rgb(238,103,29)" fg:x="74" fg:w="1"/><text x="27.9654%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="27.7154%" y="740" width="0.3745%" height="15" fill="rgb(233,195,47)" fg:x="74" fg:w="1"/><text x="27.9654%" y="750.50"></text></g><g><title><module> (platform.py:3) (1 samples, 0.37%)</title><rect x="27.7154%" y="756" width="0.3745%" height="15" fill="rgb(246,218,30)" fg:x="74" fg:w="1"/><text x="27.9654%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="27.7154%" y="772" width="0.3745%" height="15" fill="rgb(219,145,47)" fg:x="74" fg:w="1"/><text x="27.9654%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="27.7154%" y="788" width="0.3745%" height="15" fill="rgb(243,12,26)" fg:x="74" fg:w="1"/><text x="27.9654%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="27.7154%" y="804" width="0.3745%" height="15" fill="rgb(214,87,16)" fg:x="74" fg:w="1"/><text x="27.9654%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="27.7154%" y="820" width="0.3745%" height="15" fill="rgb(208,99,42)" fg:x="74" fg:w="1"/><text x="27.9654%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="27.7154%" y="836" width="0.3745%" height="15" fill="rgb(253,99,2)" fg:x="74" fg:w="1"/><text x="27.9654%" y="846.50"></text></g><g><title><module> (subprocess.py:10) (1 samples, 0.37%)</title><rect x="27.7154%" y="852" width="0.3745%" height="15" fill="rgb(220,168,23)" fg:x="74" fg:w="1"/><text x="27.9654%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="27.7154%" y="868" width="0.3745%" height="15" fill="rgb(242,38,24)" fg:x="74" fg:w="1"/><text x="27.9654%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="27.7154%" y="884" width="0.3745%" height="15" fill="rgb(225,182,9)" fg:x="74" fg:w="1"/><text x="27.9654%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="27.7154%" y="900" width="0.3745%" height="15" fill="rgb(243,178,37)" fg:x="74" fg:w="1"/><text x="27.9654%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="27.7154%" y="916" width="0.3745%" height="15" fill="rgb(232,139,19)" fg:x="74" fg:w="1"/><text x="27.9654%" y="926.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="27.7154%" y="932" width="0.3745%" height="15" fill="rgb(225,201,24)" fg:x="74" fg:w="1"/><text x="27.9654%" y="942.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="27.7154%" y="948" width="0.3745%" height="15" fill="rgb(221,47,46)" fg:x="74" fg:w="1"/><text x="27.9654%" y="958.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (4 samples, 1.50%)</title><rect x="26.9663%" y="532" width="1.4981%" height="15" fill="rgb(249,23,13)" fg:x="72" fg:w="4"/><text x="27.2163%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.50%)</title><rect x="26.9663%" y="548" width="1.4981%" height="15" fill="rgb(219,9,5)" fg:x="72" fg:w="4"/><text x="27.2163%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="26.9663%" y="564" width="1.4981%" height="15" fill="rgb(254,171,16)" fg:x="72" fg:w="4"/><text x="27.2163%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="26.9663%" y="580" width="1.4981%" height="15" fill="rgb(230,171,20)" fg:x="72" fg:w="4"/><text x="27.2163%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="26.9663%" y="596" width="1.4981%" height="15" fill="rgb(210,71,41)" fg:x="72" fg:w="4"/><text x="27.2163%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="26.9663%" y="612" width="1.4981%" height="15" fill="rgb(206,173,20)" fg:x="72" fg:w="4"/><text x="27.2163%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="26.9663%" y="628" width="1.4981%" height="15" fill="rgb(233,88,34)" fg:x="72" fg:w="4"/><text x="27.2163%" y="638.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="28.0899%" y="644" width="0.3745%" height="15" fill="rgb(223,209,46)" fg:x="75" fg:w="1"/><text x="28.3399%" y="654.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="28.0899%" y="660" width="0.3745%" height="15" fill="rgb(250,43,18)" fg:x="75" fg:w="1"/><text x="28.3399%" y="670.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (2 samples, 0.75%)</title><rect x="28.4644%" y="532" width="0.7491%" height="15" fill="rgb(208,13,10)" fg:x="76" fg:w="2"/><text x="28.7144%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="28.4644%" y="548" width="0.7491%" height="15" fill="rgb(212,200,36)" fg:x="76" fg:w="2"/><text x="28.7144%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="28.4644%" y="564" width="0.7491%" height="15" fill="rgb(225,90,30)" fg:x="76" fg:w="2"/><text x="28.7144%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="28.4644%" y="580" width="0.7491%" height="15" fill="rgb(236,182,39)" fg:x="76" fg:w="2"/><text x="28.7144%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="28.4644%" y="596" width="0.7491%" height="15" fill="rgb(212,144,35)" fg:x="76" fg:w="2"/><text x="28.7144%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="28.4644%" y="612" width="0.7491%" height="15" fill="rgb(228,63,44)" fg:x="76" fg:w="2"/><text x="28.7144%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="28.4644%" y="628" width="0.7491%" height="15" fill="rgb(228,109,6)" fg:x="76" fg:w="2"/><text x="28.7144%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="28.4644%" y="644" width="0.7491%" height="15" fill="rgb(238,117,24)" fg:x="76" fg:w="2"/><text x="28.7144%" y="654.50"></text></g><g><title><module> (numpy/ma/core.py:1) (2 samples, 0.75%)</title><rect x="28.4644%" y="660" width="0.7491%" height="15" fill="rgb(242,26,26)" fg:x="76" fg:w="2"/><text x="28.7144%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="28.4644%" y="676" width="0.7491%" height="15" fill="rgb(221,92,48)" fg:x="76" fg:w="2"/><text x="28.7144%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="28.4644%" y="692" width="0.7491%" height="15" fill="rgb(209,209,32)" fg:x="76" fg:w="2"/><text x="28.7144%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="28.4644%" y="708" width="0.7491%" height="15" fill="rgb(221,70,22)" fg:x="76" fg:w="2"/><text x="28.7144%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="28.4644%" y="724" width="0.7491%" height="15" fill="rgb(248,145,5)" fg:x="76" fg:w="2"/><text x="28.7144%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="28.4644%" y="740" width="0.7491%" height="15" fill="rgb(226,116,26)" fg:x="76" fg:w="2"/><text x="28.7144%" y="750.50"></text></g><g><title><module> (inspect.py:1) (2 samples, 0.75%)</title><rect x="28.4644%" y="756" width="0.7491%" height="15" fill="rgb(244,5,17)" fg:x="76" fg:w="2"/><text x="28.7144%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="28.4644%" y="772" width="0.7491%" height="15" fill="rgb(252,159,33)" fg:x="76" fg:w="2"/><text x="28.7144%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="28.4644%" y="788" width="0.7491%" height="15" fill="rgb(206,71,0)" fg:x="76" fg:w="2"/><text x="28.7144%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="28.4644%" y="804" width="0.7491%" height="15" fill="rgb(233,118,54)" fg:x="76" fg:w="2"/><text x="28.7144%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="28.4644%" y="820" width="0.7491%" height="15" fill="rgb(234,83,48)" fg:x="76" fg:w="2"/><text x="28.7144%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="28.4644%" y="836" width="0.7491%" height="15" fill="rgb(228,3,54)" fg:x="76" fg:w="2"/><text x="28.7144%" y="846.50"></text></g><g><title><module> (dis.py:1) (2 samples, 0.75%)</title><rect x="28.4644%" y="852" width="0.7491%" height="15" fill="rgb(226,155,13)" fg:x="76" fg:w="2"/><text x="28.7144%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="28.4644%" y="868" width="0.7491%" height="15" fill="rgb(241,28,37)" fg:x="76" fg:w="2"/><text x="28.7144%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="28.4644%" y="884" width="0.7491%" height="15" fill="rgb(233,93,10)" fg:x="76" fg:w="2"/><text x="28.7144%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="28.4644%" y="900" width="0.7491%" height="15" fill="rgb(225,113,19)" fg:x="76" fg:w="2"/><text x="28.7144%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="28.4644%" y="916" width="0.7491%" height="15" fill="rgb(241,2,18)" fg:x="76" fg:w="2"/><text x="28.7144%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="28.4644%" y="932" width="0.7491%" height="15" fill="rgb(228,207,21)" fg:x="76" fg:w="2"/><text x="28.7144%" y="942.50"></text></g><g><title><module> (opcode.py:2) (2 samples, 0.75%)</title><rect x="28.4644%" y="948" width="0.7491%" height="15" fill="rgb(213,211,35)" fg:x="76" fg:w="2"/><text x="28.7144%" y="958.50"></text></g><g><title><listcomp> (opcode.py:36) (2 samples, 0.75%)</title><rect x="28.4644%" y="964" width="0.7491%" height="15" fill="rgb(209,83,10)" fg:x="76" fg:w="2"/><text x="28.7144%" y="974.50"></text></g><g><title><module> (numpy/polynomial/chebyshev.py:1) (1 samples, 0.37%)</title><rect x="29.2135%" y="628" width="0.3745%" height="15" fill="rgb(209,164,1)" fg:x="78" fg:w="1"/><text x="29.4635%" y="638.50"></text></g><g><title><module> (numpy/polynomial/__init__.py:1) (2 samples, 0.75%)</title><rect x="29.2135%" y="532" width="0.7491%" height="15" fill="rgb(213,184,43)" fg:x="78" fg:w="2"/><text x="29.4635%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="29.2135%" y="548" width="0.7491%" height="15" fill="rgb(231,61,34)" fg:x="78" fg:w="2"/><text x="29.4635%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="29.2135%" y="564" width="0.7491%" height="15" fill="rgb(235,75,3)" fg:x="78" fg:w="2"/><text x="29.4635%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="29.2135%" y="580" width="0.7491%" height="15" fill="rgb(220,106,47)" fg:x="78" fg:w="2"/><text x="29.4635%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="29.2135%" y="596" width="0.7491%" height="15" fill="rgb(210,196,33)" fg:x="78" fg:w="2"/><text x="29.4635%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="29.2135%" y="612" width="0.7491%" height="15" fill="rgb(229,154,42)" fg:x="78" fg:w="2"/><text x="29.4635%" y="622.50"></text></g><g><title><module> (numpy/polynomial/polynomial.py:1) (1 samples, 0.37%)</title><rect x="29.5880%" y="628" width="0.3745%" height="15" fill="rgb(228,114,26)" fg:x="79" fg:w="1"/><text x="29.8380%" y="638.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.37%)</title><rect x="29.5880%" y="644" width="0.3745%" height="15" fill="rgb(208,144,1)" fg:x="79" fg:w="1"/><text x="29.8380%" y="654.50"></text></g><g><title><module> (numpy/__init__.py:1) (14 samples, 5.24%)</title><rect x="25.0936%" y="404" width="5.2434%" height="15" fill="rgb(239,112,37)" fg:x="67" fg:w="14"/><text x="25.3436%" y="414.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 3.37%)</title><rect x="26.9663%" y="420" width="3.3708%" height="15" fill="rgb(210,96,50)" fg:x="72" fg:w="9"/><text x="27.2163%" y="430.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="26.9663%" y="436" width="3.3708%" height="15" fill="rgb(222,178,2)" fg:x="72" fg:w="9"/><text x="27.2163%" y="446.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.37%)</title><rect x="26.9663%" y="452" width="3.3708%" height="15" fill="rgb(226,74,18)" fg:x="72" fg:w="9"/><text x="27.2163%" y="462.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.37%)</title><rect x="26.9663%" y="468" width="3.3708%" height="15" fill="rgb(225,67,54)" fg:x="72" fg:w="9"/><text x="27.2163%" y="478.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.37%)</title><rect x="26.9663%" y="484" width="3.3708%" height="15" fill="rgb(251,92,32)" fg:x="72" fg:w="9"/><text x="27.2163%" y="494.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.37%)</title><rect x="26.9663%" y="500" width="3.3708%" height="15" fill="rgb(228,149,22)" fg:x="72" fg:w="9"/><text x="27.2163%" y="510.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="26.9663%" y="516" width="3.3708%" height="15" fill="rgb(243,54,13)" fg:x="72" fg:w="9"/><text x="27.2163%" y="526.50">_ca..</text></g><g><title><module> (numpy/random/__init__.py:1) (1 samples, 0.37%)</title><rect x="29.9625%" y="532" width="0.3745%" height="15" fill="rgb(243,180,28)" fg:x="80" fg:w="1"/><text x="30.2125%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="29.9625%" y="548" width="0.3745%" height="15" fill="rgb(208,167,24)" fg:x="80" fg:w="1"/><text x="30.2125%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="564" width="0.3745%" height="15" fill="rgb(245,73,45)" fg:x="80" fg:w="1"/><text x="30.2125%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="580" width="0.3745%" height="15" fill="rgb(237,203,48)" fg:x="80" fg:w="1"/><text x="30.2125%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="596" width="0.3745%" height="15" fill="rgb(211,197,16)" fg:x="80" fg:w="1"/><text x="30.2125%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="612" width="0.3745%" height="15" fill="rgb(243,99,51)" fg:x="80" fg:w="1"/><text x="30.2125%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="29.9625%" y="628" width="0.3745%" height="15" fill="rgb(215,123,29)" fg:x="80" fg:w="1"/><text x="30.2125%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="644" width="0.3745%" height="15" fill="rgb(239,186,37)" fg:x="80" fg:w="1"/><text x="30.2125%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (1 samples, 0.37%)</title><rect x="29.9625%" y="660" width="0.3745%" height="15" fill="rgb(252,136,39)" fg:x="80" fg:w="1"/><text x="30.2125%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="676" width="0.3745%" height="15" fill="rgb(223,213,32)" fg:x="80" fg:w="1"/><text x="30.2125%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="692" width="0.3745%" height="15" fill="rgb(233,115,5)" fg:x="80" fg:w="1"/><text x="30.2125%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="708" width="0.3745%" height="15" fill="rgb(207,226,44)" fg:x="80" fg:w="1"/><text x="30.2125%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.37%)</title><rect x="29.9625%" y="724" width="0.3745%" height="15" fill="rgb(208,126,0)" fg:x="80" fg:w="1"/><text x="30.2125%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="740" width="0.3745%" height="15" fill="rgb(244,66,21)" fg:x="80" fg:w="1"/><text x="30.2125%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="756" width="0.3745%" height="15" fill="rgb(222,97,12)" fg:x="80" fg:w="1"/><text x="30.2125%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="772" width="0.3745%" height="15" fill="rgb(219,213,19)" fg:x="80" fg:w="1"/><text x="30.2125%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="788" width="0.3745%" height="15" fill="rgb(252,169,30)" fg:x="80" fg:w="1"/><text x="30.2125%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.37%)</title><rect x="29.9625%" y="804" width="0.3745%" height="15" fill="rgb(206,32,51)" fg:x="80" fg:w="1"/><text x="30.2125%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="820" width="0.3745%" height="15" fill="rgb(250,172,42)" fg:x="80" fg:w="1"/><text x="30.2125%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="836" width="0.3745%" height="15" fill="rgb(209,34,43)" fg:x="80" fg:w="1"/><text x="30.2125%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="852" width="0.3745%" height="15" fill="rgb(223,11,35)" fg:x="80" fg:w="1"/><text x="30.2125%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="868" width="0.3745%" height="15" fill="rgb(251,219,26)" fg:x="80" fg:w="1"/><text x="30.2125%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="29.9625%" y="884" width="0.3745%" height="15" fill="rgb(231,119,3)" fg:x="80" fg:w="1"/><text x="30.2125%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="900" width="0.3745%" height="15" fill="rgb(216,97,11)" fg:x="80" fg:w="1"/><text x="30.2125%" y="910.50"></text></g><g><title><module> (secrets.py:1) (1 samples, 0.37%)</title><rect x="29.9625%" y="916" width="0.3745%" height="15" fill="rgb(223,59,9)" fg:x="80" fg:w="1"/><text x="30.2125%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="932" width="0.3745%" height="15" fill="rgb(233,93,31)" fg:x="80" fg:w="1"/><text x="30.2125%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="948" width="0.3745%" height="15" fill="rgb(239,81,33)" fg:x="80" fg:w="1"/><text x="30.2125%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="964" width="0.3745%" height="15" fill="rgb(213,120,34)" fg:x="80" fg:w="1"/><text x="30.2125%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="29.9625%" y="980" width="0.3745%" height="15" fill="rgb(243,49,53)" fg:x="80" fg:w="1"/><text x="30.2125%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="996" width="0.3745%" height="15" fill="rgb(247,216,33)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1006.50"></text></g><g><title><module> (hmac.py:1) (1 samples, 0.37%)</title><rect x="29.9625%" y="1012" width="0.3745%" height="15" fill="rgb(226,26,14)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="29.9625%" y="1028" width="0.3745%" height="15" fill="rgb(215,49,53)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="29.9625%" y="1044" width="0.3745%" height="15" fill="rgb(245,162,40)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="29.9625%" y="1060" width="0.3745%" height="15" fill="rgb(229,68,17)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="29.9625%" y="1076" width="0.3745%" height="15" fill="rgb(213,182,10)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="29.9625%" y="1092" width="0.3745%" height="15" fill="rgb(245,125,30)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="29.9625%" y="1108" width="0.3745%" height="15" fill="rgb(232,202,2)" fg:x="80" fg:w="1"/><text x="30.2125%" y="1118.50"></text></g><g><title><module> (pandas/_config/__init__.py:1) (1 samples, 0.37%)</title><rect x="30.3371%" y="500" width="0.3745%" height="15" fill="rgb(237,140,51)" fg:x="81" fg:w="1"/><text x="30.5871%" y="510.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="30.3371%" y="516" width="0.3745%" height="15" fill="rgb(236,157,25)" fg:x="81" fg:w="1"/><text x="30.5871%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="30.3371%" y="532" width="0.3745%" height="15" fill="rgb(219,209,0)" fg:x="81" fg:w="1"/><text x="30.5871%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="30.3371%" y="548" width="0.3745%" height="15" fill="rgb(240,116,54)" fg:x="81" fg:w="1"/><text x="30.5871%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="30.3371%" y="564" width="0.3745%" height="15" fill="rgb(216,10,36)" fg:x="81" fg:w="1"/><text x="30.5871%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="30.3371%" y="580" width="0.3745%" height="15" fill="rgb(222,72,44)" fg:x="81" fg:w="1"/><text x="30.5871%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="30.3371%" y="596" width="0.3745%" height="15" fill="rgb(232,159,9)" fg:x="81" fg:w="1"/><text x="30.5871%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="30.3371%" y="612" width="0.3745%" height="15" fill="rgb(210,39,32)" fg:x="81" fg:w="1"/><text x="30.5871%" y="622.50"></text></g><g><title><module> (pandas/_config/config.py:1) (1 samples, 0.37%)</title><rect x="30.3371%" y="628" width="0.3745%" height="15" fill="rgb(216,194,45)" fg:x="81" fg:w="1"/><text x="30.5871%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="30.3371%" y="644" width="0.3745%" height="15" fill="rgb(218,18,35)" fg:x="81" fg:w="1"/><text x="30.5871%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="30.3371%" y="660" width="0.3745%" height="15" fill="rgb(207,83,51)" fg:x="81" fg:w="1"/><text x="30.5871%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="30.3371%" y="676" width="0.3745%" height="15" fill="rgb(225,63,43)" fg:x="81" fg:w="1"/><text x="30.5871%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="30.3371%" y="692" width="0.3745%" height="15" fill="rgb(207,57,36)" fg:x="81" fg:w="1"/><text x="30.5871%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="30.3371%" y="708" width="0.3745%" height="15" fill="rgb(216,99,33)" fg:x="81" fg:w="1"/><text x="30.5871%" y="718.50"></text></g><g><title><module> (pandas/_typing.py:1) (1 samples, 0.37%)</title><rect x="30.3371%" y="724" width="0.3745%" height="15" fill="rgb(225,42,16)" fg:x="81" fg:w="1"/><text x="30.5871%" y="734.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.37%)</title><rect x="30.3371%" y="740" width="0.3745%" height="15" fill="rgb(220,201,45)" fg:x="81" fg:w="1"/><text x="30.5871%" y="750.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.37%)</title><rect x="30.3371%" y="756" width="0.3745%" height="15" fill="rgb(225,33,4)" fg:x="81" fg:w="1"/><text x="30.5871%" y="766.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.37%)</title><rect x="30.3371%" y="772" width="0.3745%" height="15" fill="rgb(224,33,50)" fg:x="81" fg:w="1"/><text x="30.5871%" y="782.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.37%)</title><rect x="30.3371%" y="788" width="0.3745%" height="15" fill="rgb(246,198,51)" fg:x="81" fg:w="1"/><text x="30.5871%" y="798.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.37%)</title><rect x="30.3371%" y="804" width="0.3745%" height="15" fill="rgb(205,22,4)" fg:x="81" fg:w="1"/><text x="30.5871%" y="814.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.37%)</title><rect x="30.3371%" y="820" width="0.3745%" height="15" fill="rgb(206,3,8)" fg:x="81" fg:w="1"/><text x="30.5871%" y="830.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.37%)</title><rect x="30.3371%" y="836" width="0.3745%" height="15" fill="rgb(251,23,15)" fg:x="81" fg:w="1"/><text x="30.5871%" y="846.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="31.0861%" y="1220" width="0.3745%" height="15" fill="rgb(252,88,28)" fg:x="83" fg:w="1"/><text x="31.3361%" y="1230.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="31.0861%" y="1236" width="0.3745%" height="15" fill="rgb(212,127,14)" fg:x="83" fg:w="1"/><text x="31.3361%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="31.0861%" y="788" width="0.7491%" height="15" fill="rgb(247,145,37)" fg:x="83" fg:w="2"/><text x="31.3361%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="31.0861%" y="804" width="0.7491%" height="15" fill="rgb(209,117,53)" fg:x="83" fg:w="2"/><text x="31.3361%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="31.0861%" y="820" width="0.7491%" height="15" fill="rgb(212,90,42)" fg:x="83" fg:w="2"/><text x="31.3361%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="31.0861%" y="836" width="0.7491%" height="15" fill="rgb(218,164,37)" fg:x="83" fg:w="2"/><text x="31.3361%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="31.0861%" y="852" width="0.7491%" height="15" fill="rgb(246,65,34)" fg:x="83" fg:w="2"/><text x="31.3361%" y="862.50"></text></g><g><title><module> (cloudpickle/__init__.py:1) (2 samples, 0.75%)</title><rect x="31.0861%" y="868" width="0.7491%" height="15" fill="rgb(231,100,33)" fg:x="83" fg:w="2"/><text x="31.3361%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="31.0861%" y="884" width="0.7491%" height="15" fill="rgb(228,126,14)" fg:x="83" fg:w="2"/><text x="31.3361%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="31.0861%" y="900" width="0.7491%" height="15" fill="rgb(215,173,21)" fg:x="83" fg:w="2"/><text x="31.3361%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="31.0861%" y="916" width="0.7491%" height="15" fill="rgb(210,6,40)" fg:x="83" fg:w="2"/><text x="31.3361%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="31.0861%" y="932" width="0.7491%" height="15" fill="rgb(212,48,18)" fg:x="83" fg:w="2"/><text x="31.3361%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="31.0861%" y="948" width="0.7491%" height="15" fill="rgb(230,214,11)" fg:x="83" fg:w="2"/><text x="31.3361%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="31.0861%" y="964" width="0.7491%" height="15" fill="rgb(254,105,39)" fg:x="83" fg:w="2"/><text x="31.3361%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="31.0861%" y="980" width="0.7491%" height="15" fill="rgb(245,158,5)" fg:x="83" fg:w="2"/><text x="31.3361%" y="990.50"></text></g><g><title><module> (cloudpickle/cloudpickle.py:1) (2 samples, 0.75%)</title><rect x="31.0861%" y="996" width="0.7491%" height="15" fill="rgb(249,208,11)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="31.0861%" y="1012" width="0.7491%" height="15" fill="rgb(210,39,28)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="31.0861%" y="1028" width="0.7491%" height="15" fill="rgb(211,56,53)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="31.0861%" y="1044" width="0.7491%" height="15" fill="rgb(226,201,30)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="31.0861%" y="1060" width="0.7491%" height="15" fill="rgb(239,101,34)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="31.0861%" y="1076" width="0.7491%" height="15" fill="rgb(226,209,5)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1086.50"></text></g><g><title><module> (logging/__init__.py:17) (2 samples, 0.75%)</title><rect x="31.0861%" y="1092" width="0.7491%" height="15" fill="rgb(250,105,47)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1102.50"></text></g><g><title>StrFormatStyle (logging/__init__.py:439) (2 samples, 0.75%)</title><rect x="31.0861%" y="1108" width="0.7491%" height="15" fill="rgb(230,72,3)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1118.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.75%)</title><rect x="31.0861%" y="1124" width="0.7491%" height="15" fill="rgb(232,218,39)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1134.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.75%)</title><rect x="31.0861%" y="1140" width="0.7491%" height="15" fill="rgb(248,166,6)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1150.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.75%)</title><rect x="31.0861%" y="1156" width="0.7491%" height="15" fill="rgb(247,89,20)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1166.50"></text></g><g><title>_code (sre_compile.py:622) (2 samples, 0.75%)</title><rect x="31.0861%" y="1172" width="0.7491%" height="15" fill="rgb(248,130,54)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1182.50"></text></g><g><title>_compile (sre_compile.py:87) (2 samples, 0.75%)</title><rect x="31.0861%" y="1188" width="0.7491%" height="15" fill="rgb(234,196,4)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1198.50"></text></g><g><title>_compile (sre_compile.py:87) (2 samples, 0.75%)</title><rect x="31.0861%" y="1204" width="0.7491%" height="15" fill="rgb(250,143,31)" fg:x="83" fg:w="2"/><text x="31.3361%" y="1214.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.37%)</title><rect x="31.4607%" y="1220" width="0.3745%" height="15" fill="rgb(211,110,34)" fg:x="84" fg:w="1"/><text x="31.7107%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.12%)</title><rect x="31.0861%" y="756" width="1.1236%" height="15" fill="rgb(215,124,48)" fg:x="83" fg:w="3"/><text x="31.3361%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="31.0861%" y="772" width="1.1236%" height="15" fill="rgb(216,46,13)" fg:x="83" fg:w="3"/><text x="31.3361%" y="782.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.37%)</title><rect x="31.8352%" y="788" width="0.3745%" height="15" fill="rgb(205,184,25)" fg:x="85" fg:w="1"/><text x="32.0852%" y="798.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (18 samples, 6.74%)</title><rect x="30.7116%" y="500" width="6.7416%" height="15" fill="rgb(228,1,10)" fg:x="82" fg:w="18"/><text x="30.9616%" y="510.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="30.7116%" y="516" width="6.7416%" height="15" fill="rgb(213,116,27)" fg:x="82" fg:w="18"/><text x="30.9616%" y="526.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="30.7116%" y="532" width="6.7416%" height="15" fill="rgb(241,95,50)" fg:x="82" fg:w="18"/><text x="30.9616%" y="542.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="30.7116%" y="548" width="6.7416%" height="15" fill="rgb(238,48,32)" fg:x="82" fg:w="18"/><text x="30.9616%" y="558.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="30.7116%" y="564" width="6.7416%" height="15" fill="rgb(235,113,49)" fg:x="82" fg:w="18"/><text x="30.9616%" y="574.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="30.7116%" y="580" width="6.7416%" height="15" fill="rgb(205,127,43)" fg:x="82" fg:w="18"/><text x="30.9616%" y="590.50">_call_wit..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (18 samples, 6.74%)</title><rect x="30.7116%" y="596" width="6.7416%" height="15" fill="rgb(250,162,2)" fg:x="82" fg:w="18"/><text x="30.9616%" y="606.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="30.7116%" y="612" width="6.7416%" height="15" fill="rgb(220,13,41)" fg:x="82" fg:w="18"/><text x="30.9616%" y="622.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="30.7116%" y="628" width="6.7416%" height="15" fill="rgb(249,221,25)" fg:x="82" fg:w="18"/><text x="30.9616%" y="638.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="30.7116%" y="644" width="6.7416%" height="15" fill="rgb(215,208,19)" fg:x="82" fg:w="18"/><text x="30.9616%" y="654.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="30.7116%" y="660" width="6.7416%" height="15" fill="rgb(236,175,2)" fg:x="82" fg:w="18"/><text x="30.9616%" y="670.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="30.7116%" y="676" width="6.7416%" height="15" fill="rgb(241,52,2)" fg:x="82" fg:w="18"/><text x="30.9616%" y="686.50">_call_wit..</text></g><g><title><module> (pyarrow/__init__.py:20) (18 samples, 6.74%)</title><rect x="30.7116%" y="692" width="6.7416%" height="15" fill="rgb(248,140,14)" fg:x="82" fg:w="18"/><text x="30.9616%" y="702.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 6.37%)</title><rect x="31.0861%" y="708" width="6.3670%" height="15" fill="rgb(253,22,42)" fg:x="83" fg:w="17"/><text x="31.3361%" y="718.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 6.37%)</title><rect x="31.0861%" y="724" width="6.3670%" height="15" fill="rgb(234,61,47)" fg:x="83" fg:w="17"/><text x="31.3361%" y="734.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 6.37%)</title><rect x="31.0861%" y="740" width="6.3670%" height="15" fill="rgb(208,226,15)" fg:x="83" fg:w="17"/><text x="31.3361%" y="750.50">_load_un..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (14 samples, 5.24%)</title><rect x="32.2097%" y="756" width="5.2434%" height="15" fill="rgb(217,221,4)" fg:x="86" fg:w="14"/><text x="32.4597%" y="766.50">module..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (14 samples, 5.24%)</title><rect x="32.2097%" y="772" width="5.2434%" height="15" fill="rgb(212,174,34)" fg:x="86" fg:w="14"/><text x="32.4597%" y="782.50">create..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 5.24%)</title><rect x="32.2097%" y="788" width="5.2434%" height="15" fill="rgb(253,83,4)" fg:x="86" fg:w="14"/><text x="32.4597%" y="798.50">_call_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.75%)</title><rect x="37.4532%" y="740" width="0.7491%" height="15" fill="rgb(250,195,49)" fg:x="100" fg:w="2"/><text x="37.7032%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="756" width="0.7491%" height="15" fill="rgb(241,192,25)" fg:x="100" fg:w="2"/><text x="37.7032%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="772" width="0.7491%" height="15" fill="rgb(208,124,10)" fg:x="100" fg:w="2"/><text x="37.7032%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="788" width="0.7491%" height="15" fill="rgb(222,33,0)" fg:x="100" fg:w="2"/><text x="37.7032%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="804" width="0.7491%" height="15" fill="rgb(234,209,28)" fg:x="100" fg:w="2"/><text x="37.7032%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.75%)</title><rect x="37.4532%" y="820" width="0.7491%" height="15" fill="rgb(224,11,23)" fg:x="100" fg:w="2"/><text x="37.7032%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="836" width="0.7491%" height="15" fill="rgb(232,99,1)" fg:x="100" fg:w="2"/><text x="37.7032%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="852" width="0.7491%" height="15" fill="rgb(237,95,45)" fg:x="100" fg:w="2"/><text x="37.7032%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="868" width="0.7491%" height="15" fill="rgb(208,109,11)" fg:x="100" fg:w="2"/><text x="37.7032%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="884" width="0.7491%" height="15" fill="rgb(216,190,48)" fg:x="100" fg:w="2"/><text x="37.7032%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="900" width="0.7491%" height="15" fill="rgb(251,171,36)" fg:x="100" fg:w="2"/><text x="37.7032%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="916" width="0.7491%" height="15" fill="rgb(230,62,22)" fg:x="100" fg:w="2"/><text x="37.7032%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="932" width="0.7491%" height="15" fill="rgb(225,114,35)" fg:x="100" fg:w="2"/><text x="37.7032%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="37.4532%" y="948" width="0.7491%" height="15" fill="rgb(215,118,42)" fg:x="100" fg:w="2"/><text x="37.7032%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="964" width="0.7491%" height="15" fill="rgb(243,119,21)" fg:x="100" fg:w="2"/><text x="37.7032%" y="974.50"></text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (2 samples, 0.75%)</title><rect x="37.4532%" y="980" width="0.7491%" height="15" fill="rgb(252,177,53)" fg:x="100" fg:w="2"/><text x="37.7032%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="996" width="0.7491%" height="15" fill="rgb(237,209,29)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="1012" width="0.7491%" height="15" fill="rgb(212,65,23)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="1028" width="0.7491%" height="15" fill="rgb(230,222,46)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.75%)</title><rect x="37.4532%" y="1044" width="0.7491%" height="15" fill="rgb(215,135,32)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="1060" width="0.7491%" height="15" fill="rgb(246,101,22)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="1076" width="0.7491%" height="15" fill="rgb(206,107,13)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="1092" width="0.7491%" height="15" fill="rgb(250,100,44)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="1108" width="0.7491%" height="15" fill="rgb(231,147,38)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.75%)</title><rect x="37.4532%" y="1124" width="0.7491%" height="15" fill="rgb(229,8,40)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="1140" width="0.7491%" height="15" fill="rgb(221,135,30)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="1156" width="0.7491%" height="15" fill="rgb(249,193,18)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="1172" width="0.7491%" height="15" fill="rgb(209,133,39)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="1188" width="0.7491%" height="15" fill="rgb(232,100,14)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.75%)</title><rect x="37.4532%" y="1204" width="0.7491%" height="15" fill="rgb(224,185,1)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="37.4532%" y="1220" width="0.7491%" height="15" fill="rgb(223,139,8)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="37.4532%" y="1236" width="0.7491%" height="15" fill="rgb(232,213,38)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="37.4532%" y="1252" width="0.7491%" height="15" fill="rgb(207,94,22)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="37.4532%" y="1268" width="0.7491%" height="15" fill="rgb(219,183,54)" fg:x="100" fg:w="2"/><text x="37.7032%" y="1278.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="37.8277%" y="1284" width="0.3745%" height="15" fill="rgb(216,185,54)" fg:x="101" fg:w="1"/><text x="38.0777%" y="1294.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="37.8277%" y="1300" width="0.3745%" height="15" fill="rgb(254,217,39)" fg:x="101" fg:w="1"/><text x="38.0777%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="37.8277%" y="1316" width="0.3745%" height="15" fill="rgb(240,178,23)" fg:x="101" fg:w="1"/><text x="38.0777%" y="1326.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (5 samples, 1.87%)</title><rect x="37.4532%" y="596" width="1.8727%" height="15" fill="rgb(218,11,47)" fg:x="100" fg:w="5"/><text x="37.7032%" y="606.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="37.4532%" y="612" width="1.8727%" height="15" fill="rgb(218,51,51)" fg:x="100" fg:w="5"/><text x="37.7032%" y="622.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="37.4532%" y="628" width="1.8727%" height="15" fill="rgb(238,126,27)" fg:x="100" fg:w="5"/><text x="37.7032%" y="638.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="37.4532%" y="644" width="1.8727%" height="15" fill="rgb(249,202,22)" fg:x="100" fg:w="5"/><text x="37.7032%" y="654.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (5 samples, 1.87%)</title><rect x="37.4532%" y="660" width="1.8727%" height="15" fill="rgb(254,195,49)" fg:x="100" fg:w="5"/><text x="37.7032%" y="670.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="37.4532%" y="676" width="1.8727%" height="15" fill="rgb(208,123,14)" fg:x="100" fg:w="5"/><text x="37.7032%" y="686.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="37.4532%" y="692" width="1.8727%" height="15" fill="rgb(224,200,8)" fg:x="100" fg:w="5"/><text x="37.7032%" y="702.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="37.4532%" y="708" width="1.8727%" height="15" fill="rgb(217,61,36)" fg:x="100" fg:w="5"/><text x="37.7032%" y="718.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="37.4532%" y="724" width="1.8727%" height="15" fill="rgb(206,35,45)" fg:x="100" fg:w="5"/><text x="37.7032%" y="734.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.12%)</title><rect x="38.2022%" y="740" width="1.1236%" height="15" fill="rgb(217,65,33)" fg:x="102" fg:w="3"/><text x="38.4522%" y="750.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.12%)</title><rect x="38.2022%" y="756" width="1.1236%" height="15" fill="rgb(222,158,48)" fg:x="102" fg:w="3"/><text x="38.4522%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="38.2022%" y="772" width="1.1236%" height="15" fill="rgb(254,2,54)" fg:x="102" fg:w="3"/><text x="38.4522%" y="782.50"></text></g><g><title><module> (pandas/core/algorithms.py:1) (1 samples, 0.37%)</title><rect x="39.3258%" y="596" width="0.3745%" height="15" fill="rgb(250,143,38)" fg:x="105" fg:w="1"/><text x="39.5758%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="39.3258%" y="612" width="0.3745%" height="15" fill="rgb(248,25,0)" fg:x="105" fg:w="1"/><text x="39.5758%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="39.3258%" y="628" width="0.3745%" height="15" fill="rgb(206,152,27)" fg:x="105" fg:w="1"/><text x="39.5758%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="39.3258%" y="644" width="0.3745%" height="15" fill="rgb(240,77,30)" fg:x="105" fg:w="1"/><text x="39.5758%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="39.3258%" y="660" width="0.3745%" height="15" fill="rgb(231,5,3)" fg:x="105" fg:w="1"/><text x="39.5758%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="39.3258%" y="676" width="0.3745%" height="15" fill="rgb(207,226,32)" fg:x="105" fg:w="1"/><text x="39.5758%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="39.3258%" y="692" width="0.3745%" height="15" fill="rgb(222,207,47)" fg:x="105" fg:w="1"/><text x="39.5758%" y="702.50"></text></g><g><title><module> (pandas/core/arraylike.py:1) (1 samples, 0.37%)</title><rect x="39.7004%" y="884" width="0.3745%" height="15" fill="rgb(229,115,45)" fg:x="106" fg:w="1"/><text x="39.9504%" y="894.50"></text></g><g><title>OpsMixin (pandas/core/arraylike.py:31) (1 samples, 0.37%)</title><rect x="39.7004%" y="900" width="0.3745%" height="15" fill="rgb(224,191,6)" fg:x="106" fg:w="1"/><text x="39.9504%" y="910.50"></text></g><g><title>wrapper (pandas/core/ops/common.py:37) (1 samples, 0.37%)</title><rect x="39.7004%" y="916" width="0.3745%" height="15" fill="rgb(230,227,24)" fg:x="106" fg:w="1"/><text x="39.9504%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="40.0749%" y="996" width="0.7491%" height="15" fill="rgb(228,80,19)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="40.0749%" y="1012" width="0.7491%" height="15" fill="rgb(247,229,0)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="40.0749%" y="1028" width="0.7491%" height="15" fill="rgb(237,194,15)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1038.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.75%)</title><rect x="40.0749%" y="1044" width="0.7491%" height="15" fill="rgb(219,203,20)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.75%)</title><rect x="40.0749%" y="1060" width="0.7491%" height="15" fill="rgb(234,128,8)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="40.0749%" y="1076" width="0.7491%" height="15" fill="rgb(248,202,8)" fg:x="107" fg:w="2"/><text x="40.3249%" y="1086.50"></text></g><g><title>_parse (pyarrow/vendored/docscrape.py:384) (1 samples, 0.37%)</title><rect x="41.5730%" y="1076" width="0.3745%" height="15" fill="rgb(206,104,37)" fg:x="111" fg:w="1"/><text x="41.8230%" y="1086.50"></text></g><g><title>_parse_param_list (pyarrow/vendored/docscrape.py:228) (1 samples, 0.37%)</title><rect x="41.5730%" y="1092" width="0.3745%" height="15" fill="rgb(223,8,27)" fg:x="111" fg:w="1"/><text x="41.8230%" y="1102.50"></text></g><g><title>dedent_lines (pyarrow/vendored/docscrape.py:558) (1 samples, 0.37%)</title><rect x="41.5730%" y="1108" width="0.3745%" height="15" fill="rgb(216,217,28)" fg:x="111" fg:w="1"/><text x="41.8230%" y="1118.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.37%)</title><rect x="41.5730%" y="1124" width="0.3745%" height="15" fill="rgb(249,199,1)" fg:x="111" fg:w="1"/><text x="41.8230%" y="1134.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (3 samples, 1.12%)</title><rect x="41.1985%" y="1028" width="1.1236%" height="15" fill="rgb(240,85,17)" fg:x="110" fg:w="3"/><text x="41.4485%" y="1038.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (2 samples, 0.75%)</title><rect x="41.5730%" y="1044" width="0.7491%" height="15" fill="rgb(206,108,45)" fg:x="111" fg:w="2"/><text x="41.8230%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (2 samples, 0.75%)</title><rect x="41.5730%" y="1060" width="0.7491%" height="15" fill="rgb(245,210,41)" fg:x="111" fg:w="2"/><text x="41.8230%" y="1070.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.37%)</title><rect x="41.9476%" y="1076" width="0.3745%" height="15" fill="rgb(206,13,37)" fg:x="112" fg:w="1"/><text x="42.1976%" y="1086.50"></text></g><g><title>_deepcopy_dict (copy.py:226) (1 samples, 0.37%)</title><rect x="41.9476%" y="1092" width="0.3745%" height="15" fill="rgb(250,61,18)" fg:x="112" fg:w="1"/><text x="42.1976%" y="1102.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.37%)</title><rect x="41.9476%" y="1108" width="0.3745%" height="15" fill="rgb(235,172,48)" fg:x="112" fg:w="1"/><text x="42.1976%" y="1118.50"></text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (7 samples, 2.62%)</title><rect x="40.0749%" y="884" width="2.6217%" height="15" fill="rgb(249,201,17)" fg:x="107" fg:w="7"/><text x="40.3249%" y="894.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.62%)</title><rect x="40.0749%" y="900" width="2.6217%" height="15" fill="rgb(219,208,6)" fg:x="107" fg:w="7"/><text x="40.3249%" y="910.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.62%)</title><rect x="40.0749%" y="916" width="2.6217%" height="15" fill="rgb(248,31,23)" fg:x="107" fg:w="7"/><text x="40.3249%" y="926.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.62%)</title><rect x="40.0749%" y="932" width="2.6217%" height="15" fill="rgb(245,15,42)" fg:x="107" fg:w="7"/><text x="40.3249%" y="942.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.62%)</title><rect x="40.0749%" y="948" width="2.6217%" height="15" fill="rgb(222,217,39)" fg:x="107" fg:w="7"/><text x="40.3249%" y="958.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.62%)</title><rect x="40.0749%" y="964" width="2.6217%" height="15" fill="rgb(210,219,27)" fg:x="107" fg:w="7"/><text x="40.3249%" y="974.50">_c..</text></g><g><title><module> (pyarrow/compute.py:18) (7 samples, 2.62%)</title><rect x="40.0749%" y="980" width="2.6217%" height="15" fill="rgb(252,166,36)" fg:x="107" fg:w="7"/><text x="40.3249%" y="990.50"><m..</text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (5 samples, 1.87%)</title><rect x="40.8240%" y="996" width="1.8727%" height="15" fill="rgb(245,132,34)" fg:x="109" fg:w="5"/><text x="41.0740%" y="1006.50">_..</text></g><g><title>_wrap_function (pyarrow/compute.py:290) (5 samples, 1.87%)</title><rect x="40.8240%" y="1012" width="1.8727%" height="15" fill="rgb(236,54,3)" fg:x="109" fg:w="5"/><text x="41.0740%" y="1022.50">_..</text></g><g><title>_make_signature (pyarrow/compute.py:267) (1 samples, 0.37%)</title><rect x="42.3221%" y="1028" width="0.3745%" height="15" fill="rgb(241,173,43)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.37%)</title><rect x="42.3221%" y="1044" width="0.3745%" height="15" fill="rgb(215,190,9)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.37%)</title><rect x="42.3221%" y="1060" width="0.3745%" height="15" fill="rgb(242,101,16)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.37%)</title><rect x="42.3221%" y="1076" width="0.3745%" height="15" fill="rgb(223,190,21)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1086.50"></text></g><g><title>_signature_bound_method (inspect.py:1840) (1 samples, 0.37%)</title><rect x="42.3221%" y="1092" width="0.3745%" height="15" fill="rgb(215,228,25)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1102.50"></text></g><g><title>replace (inspect.py:2873) (1 samples, 0.37%)</title><rect x="42.3221%" y="1108" width="0.3745%" height="15" fill="rgb(225,36,22)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1118.50"></text></g><g><title>__init__ (inspect.py:2781) (1 samples, 0.37%)</title><rect x="42.3221%" y="1124" width="0.3745%" height="15" fill="rgb(251,106,46)" fg:x="113" fg:w="1"/><text x="42.5721%" y="1134.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (10 samples, 3.75%)</title><rect x="39.7004%" y="692" width="3.7453%" height="15" fill="rgb(208,90,1)" fg:x="106" fg:w="10"/><text x="39.9504%" y="702.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.75%)</title><rect x="39.7004%" y="708" width="3.7453%" height="15" fill="rgb(243,10,4)" fg:x="106" fg:w="10"/><text x="39.9504%" y="718.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.75%)</title><rect x="39.7004%" y="724" width="3.7453%" height="15" fill="rgb(212,137,27)" fg:x="106" fg:w="10"/><text x="39.9504%" y="734.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.75%)</title><rect x="39.7004%" y="740" width="3.7453%" height="15" fill="rgb(231,220,49)" fg:x="106" fg:w="10"/><text x="39.9504%" y="750.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.75%)</title><rect x="39.7004%" y="756" width="3.7453%" height="15" fill="rgb(237,96,20)" fg:x="106" fg:w="10"/><text x="39.9504%" y="766.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.75%)</title><rect x="39.7004%" y="772" width="3.7453%" height="15" fill="rgb(239,229,30)" fg:x="106" fg:w="10"/><text x="39.9504%" y="782.50">_cal..</text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (10 samples, 3.75%)</title><rect x="39.7004%" y="788" width="3.7453%" height="15" fill="rgb(219,65,33)" fg:x="106" fg:w="10"/><text x="39.9504%" y="798.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.75%)</title><rect x="39.7004%" y="804" width="3.7453%" height="15" fill="rgb(243,134,7)" fg:x="106" fg:w="10"/><text x="39.9504%" y="814.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.75%)</title><rect x="39.7004%" y="820" width="3.7453%" height="15" fill="rgb(216,177,54)" fg:x="106" fg:w="10"/><text x="39.9504%" y="830.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.75%)</title><rect x="39.7004%" y="836" width="3.7453%" height="15" fill="rgb(211,160,20)" fg:x="106" fg:w="10"/><text x="39.9504%" y="846.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.75%)</title><rect x="39.7004%" y="852" width="3.7453%" height="15" fill="rgb(239,85,39)" fg:x="106" fg:w="10"/><text x="39.9504%" y="862.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.75%)</title><rect x="39.7004%" y="868" width="3.7453%" height="15" fill="rgb(232,125,22)" fg:x="106" fg:w="10"/><text x="39.9504%" y="878.50">_cal..</text></g><g><title><module> (pandas/core/arrays/string_.py:1) (2 samples, 0.75%)</title><rect x="42.6966%" y="884" width="0.7491%" height="15" fill="rgb(244,57,34)" fg:x="114" fg:w="2"/><text x="42.9466%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="42.6966%" y="900" width="0.7491%" height="15" fill="rgb(214,203,32)" fg:x="114" fg:w="2"/><text x="42.9466%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="42.6966%" y="916" width="0.7491%" height="15" fill="rgb(207,58,43)" fg:x="114" fg:w="2"/><text x="42.9466%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="42.6966%" y="932" width="0.7491%" height="15" fill="rgb(215,193,15)" fg:x="114" fg:w="2"/><text x="42.9466%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="42.6966%" y="948" width="0.7491%" height="15" fill="rgb(232,15,44)" fg:x="114" fg:w="2"/><text x="42.9466%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="42.6966%" y="964" width="0.7491%" height="15" fill="rgb(212,3,48)" fg:x="114" fg:w="2"/><text x="42.9466%" y="974.50"></text></g><g><title><module> (pandas/core/arrays/numpy_.py:1) (2 samples, 0.75%)</title><rect x="42.6966%" y="980" width="0.7491%" height="15" fill="rgb(218,128,7)" fg:x="114" fg:w="2"/><text x="42.9466%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="42.6966%" y="996" width="0.7491%" height="15" fill="rgb(226,216,39)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="42.6966%" y="1012" width="0.7491%" height="15" fill="rgb(243,47,51)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="42.6966%" y="1028" width="0.7491%" height="15" fill="rgb(241,183,40)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="42.6966%" y="1044" width="0.7491%" height="15" fill="rgb(231,217,32)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="42.6966%" y="1060" width="0.7491%" height="15" fill="rgb(229,61,38)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1070.50"></text></g><g><title><module> (pandas/core/arrays/_mixins.py:1) (2 samples, 0.75%)</title><rect x="42.6966%" y="1076" width="0.7491%" height="15" fill="rgb(225,210,5)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1086.50"></text></g><g><title>NDArrayBackedExtensionArray (pandas/core/arrays/_mixins.py:91) (2 samples, 0.75%)</title><rect x="42.6966%" y="1092" width="0.7491%" height="15" fill="rgb(231,79,45)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1102.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (2 samples, 0.75%)</title><rect x="42.6966%" y="1108" width="0.7491%" height="15" fill="rgb(224,100,7)" fg:x="114" fg:w="2"/><text x="42.9466%" y="1118.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (1 samples, 0.37%)</title><rect x="43.0712%" y="1124" width="0.3745%" height="15" fill="rgb(241,198,18)" fg:x="115" fg:w="1"/><text x="43.3212%" y="1134.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.37%)</title><rect x="43.0712%" y="1140" width="0.3745%" height="15" fill="rgb(252,97,53)" fg:x="115" fg:w="1"/><text x="43.3212%" y="1150.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.37%)</title><rect x="43.0712%" y="1156" width="0.3745%" height="15" fill="rgb(220,88,7)" fg:x="115" fg:w="1"/><text x="43.3212%" y="1166.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (12 samples, 4.49%)</title><rect x="39.7004%" y="596" width="4.4944%" height="15" fill="rgb(213,176,14)" fg:x="106" fg:w="12"/><text x="39.9504%" y="606.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 4.49%)</title><rect x="39.7004%" y="612" width="4.4944%" height="15" fill="rgb(246,73,7)" fg:x="106" fg:w="12"/><text x="39.9504%" y="622.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 4.49%)</title><rect x="39.7004%" y="628" width="4.4944%" height="15" fill="rgb(245,64,36)" fg:x="106" fg:w="12"/><text x="39.9504%" y="638.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 4.49%)</title><rect x="39.7004%" y="644" width="4.4944%" height="15" fill="rgb(245,80,10)" fg:x="106" fg:w="12"/><text x="39.9504%" y="654.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 4.49%)</title><rect x="39.7004%" y="660" width="4.4944%" height="15" fill="rgb(232,107,50)" fg:x="106" fg:w="12"/><text x="39.9504%" y="670.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 4.49%)</title><rect x="39.7004%" y="676" width="4.4944%" height="15" fill="rgb(253,3,0)" fg:x="106" fg:w="12"/><text x="39.9504%" y="686.50">_call..</text></g><g><title><module> (pandas/core/arrays/categorical.py:1) (2 samples, 0.75%)</title><rect x="43.4457%" y="692" width="0.7491%" height="15" fill="rgb(212,99,53)" fg:x="116" fg:w="2"/><text x="43.6957%" y="702.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="43.4457%" y="708" width="0.7491%" height="15" fill="rgb(249,111,54)" fg:x="116" fg:w="2"/><text x="43.6957%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="43.4457%" y="724" width="0.7491%" height="15" fill="rgb(249,55,30)" fg:x="116" fg:w="2"/><text x="43.6957%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="43.4457%" y="740" width="0.7491%" height="15" fill="rgb(237,47,42)" fg:x="116" fg:w="2"/><text x="43.6957%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="43.4457%" y="756" width="0.7491%" height="15" fill="rgb(211,20,18)" fg:x="116" fg:w="2"/><text x="43.6957%" y="766.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.75%)</title><rect x="43.4457%" y="772" width="0.7491%" height="15" fill="rgb(231,203,46)" fg:x="116" fg:w="2"/><text x="43.6957%" y="782.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.75%)</title><rect x="43.4457%" y="788" width="0.7491%" height="15" fill="rgb(237,142,3)" fg:x="116" fg:w="2"/><text x="43.6957%" y="798.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.75%)</title><rect x="43.4457%" y="804" width="0.7491%" height="15" fill="rgb(241,107,1)" fg:x="116" fg:w="2"/><text x="43.6957%" y="814.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (2 samples, 0.75%)</title><rect x="43.4457%" y="820" width="0.7491%" height="15" fill="rgb(229,83,13)" fg:x="116" fg:w="2"/><text x="43.6957%" y="830.50"></text></g><g><title>_path_hooks (<frozen importlib._bootstrap_external>:1333) (1 samples, 0.37%)</title><rect x="43.8202%" y="836" width="0.3745%" height="15" fill="rgb(241,91,40)" fg:x="117" fg:w="1"/><text x="44.0702%" y="846.50"></text></g><g><title>__init__ (<frozen zipimport>:63) (1 samples, 0.37%)</title><rect x="43.8202%" y="852" width="0.3745%" height="15" fill="rgb(225,3,45)" fg:x="117" fg:w="1"/><text x="44.0702%" y="862.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (1 samples, 0.37%)</title><rect x="44.1948%" y="804" width="0.3745%" height="15" fill="rgb(244,223,14)" fg:x="118" fg:w="1"/><text x="44.4448%" y="814.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.37%)</title><rect x="44.1948%" y="820" width="0.3745%" height="15" fill="rgb(224,124,37)" fg:x="118" fg:w="1"/><text x="44.4448%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.37%)</title><rect x="44.1948%" y="836" width="0.3745%" height="15" fill="rgb(251,171,30)" fg:x="118" fg:w="1"/><text x="44.4448%" y="846.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (2 samples, 0.75%)</title><rect x="44.5693%" y="900" width="0.7491%" height="15" fill="rgb(236,46,54)" fg:x="119" fg:w="2"/><text x="44.8193%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="45.3184%" y="900" width="0.7491%" height="15" fill="rgb(245,213,5)" fg:x="121" fg:w="2"/><text x="45.5684%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="45.3184%" y="916" width="0.7491%" height="15" fill="rgb(230,144,27)" fg:x="121" fg:w="2"/><text x="45.5684%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="45.3184%" y="932" width="0.7491%" height="15" fill="rgb(220,86,6)" fg:x="121" fg:w="2"/><text x="45.5684%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="45.3184%" y="948" width="0.7491%" height="15" fill="rgb(240,20,13)" fg:x="121" fg:w="2"/><text x="45.5684%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="45.3184%" y="964" width="0.7491%" height="15" fill="rgb(217,89,34)" fg:x="121" fg:w="2"/><text x="45.5684%" y="974.50"></text></g><g><title><module> (pandas/core/window/__init__.py:1) (2 samples, 0.75%)</title><rect x="45.3184%" y="980" width="0.7491%" height="15" fill="rgb(229,13,5)" fg:x="121" fg:w="2"/><text x="45.5684%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="45.3184%" y="996" width="0.7491%" height="15" fill="rgb(244,67,35)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="45.3184%" y="1012" width="0.7491%" height="15" fill="rgb(221,40,2)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="45.3184%" y="1028" width="0.7491%" height="15" fill="rgb(237,157,21)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="45.3184%" y="1044" width="0.7491%" height="15" fill="rgb(222,94,11)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="45.3184%" y="1060" width="0.7491%" height="15" fill="rgb(249,113,6)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1070.50"></text></g><g><title><module> (pandas/core/window/ewm.py:1) (2 samples, 0.75%)</title><rect x="45.3184%" y="1076" width="0.7491%" height="15" fill="rgb(238,137,36)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="45.3184%" y="1092" width="0.7491%" height="15" fill="rgb(210,102,26)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="45.3184%" y="1108" width="0.7491%" height="15" fill="rgb(218,30,30)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1118.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.75%)</title><rect x="45.3184%" y="1124" width="0.7491%" height="15" fill="rgb(214,67,26)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1134.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.75%)</title><rect x="45.3184%" y="1140" width="0.7491%" height="15" fill="rgb(251,9,53)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1150.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.75%)</title><rect x="45.3184%" y="1156" width="0.7491%" height="15" fill="rgb(228,204,25)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1166.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 0.75%)</title><rect x="45.3184%" y="1172" width="0.7491%" height="15" fill="rgb(207,153,8)" fg:x="121" fg:w="2"/><text x="45.5684%" y="1182.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.37%)</title><rect x="45.6929%" y="1188" width="0.3745%" height="15" fill="rgb(242,9,16)" fg:x="122" fg:w="1"/><text x="45.9429%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="46.0674%" y="1284" width="0.7491%" height="15" fill="rgb(217,211,10)" fg:x="123" fg:w="2"/><text x="46.3174%" y="1294.50"></text></g><g><title><module> (pandas/core/strings/accessor.py:1) (2 samples, 0.75%)</title><rect x="46.0674%" y="1300" width="0.7491%" height="15" fill="rgb(219,228,52)" fg:x="123" fg:w="2"/><text x="46.3174%" y="1310.50"></text></g><g><title>StringMethods (pandas/core/strings/accessor.py:156) (2 samples, 0.75%)</title><rect x="46.0674%" y="1316" width="0.7491%" height="15" fill="rgb(231,92,29)" fg:x="123" fg:w="2"/><text x="46.3174%" y="1326.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (2 samples, 0.75%)</title><rect x="46.0674%" y="1332" width="0.7491%" height="15" fill="rgb(232,8,23)" fg:x="123" fg:w="2"/><text x="46.3174%" y="1342.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.75%)</title><rect x="46.0674%" y="1348" width="0.7491%" height="15" fill="rgb(216,211,34)" fg:x="123" fg:w="2"/><text x="46.3174%" y="1358.50"></text></g><g><title><module> (pandas/core/indexes/base.py:1) (3 samples, 1.12%)</title><rect x="46.0674%" y="1204" width="1.1236%" height="15" fill="rgb(236,151,0)" fg:x="123" fg:w="3"/><text x="46.3174%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="46.0674%" y="1220" width="1.1236%" height="15" fill="rgb(209,168,3)" fg:x="123" fg:w="3"/><text x="46.3174%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="46.0674%" y="1236" width="1.1236%" height="15" fill="rgb(208,129,28)" fg:x="123" fg:w="3"/><text x="46.3174%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="46.0674%" y="1252" width="1.1236%" height="15" fill="rgb(229,78,22)" fg:x="123" fg:w="3"/><text x="46.3174%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="46.0674%" y="1268" width="1.1236%" height="15" fill="rgb(228,187,13)" fg:x="123" fg:w="3"/><text x="46.3174%" y="1278.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="46.8165%" y="1284" width="0.3745%" height="15" fill="rgb(240,119,24)" fg:x="125" fg:w="1"/><text x="47.0665%" y="1294.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="46.8165%" y="1300" width="0.3745%" height="15" fill="rgb(209,194,42)" fg:x="125" fg:w="1"/><text x="47.0665%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (46 samples, 17.23%)</title><rect x="30.3371%" y="420" width="17.2285%" height="15" fill="rgb(247,200,46)" fg:x="81" fg:w="46"/><text x="30.5871%" y="430.50">_find_and_load (<frozen imp..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (46 samples, 17.23%)</title><rect x="30.3371%" y="436" width="17.2285%" height="15" fill="rgb(218,76,16)" fg:x="81" fg:w="46"/><text x="30.5871%" y="446.50">_find_and_load_unlocked (<f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (46 samples, 17.23%)</title><rect x="30.3371%" y="452" width="17.2285%" height="15" fill="rgb(225,21,48)" fg:x="81" fg:w="46"/><text x="30.5871%" y="462.50">_load_unlocked (<frozen imp..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (46 samples, 17.23%)</title><rect x="30.3371%" y="468" width="17.2285%" height="15" fill="rgb(239,223,50)" fg:x="81" fg:w="46"/><text x="30.5871%" y="478.50">exec_module (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (46 samples, 17.23%)</title><rect x="30.3371%" y="484" width="17.2285%" height="15" fill="rgb(244,45,21)" fg:x="81" fg:w="46"/><text x="30.5871%" y="494.50">_call_with_frames_removed (..</text></g><g><title><module> (pandas/core/api.py:1) (27 samples, 10.11%)</title><rect x="37.4532%" y="500" width="10.1124%" height="15" fill="rgb(232,33,43)" fg:x="100" fg:w="27"/><text x="37.7032%" y="510.50"><module> (panda..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (27 samples, 10.11%)</title><rect x="37.4532%" y="516" width="10.1124%" height="15" fill="rgb(209,8,3)" fg:x="100" fg:w="27"/><text x="37.7032%" y="526.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (27 samples, 10.11%)</title><rect x="37.4532%" y="532" width="10.1124%" height="15" fill="rgb(214,25,53)" fg:x="100" fg:w="27"/><text x="37.7032%" y="542.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (27 samples, 10.11%)</title><rect x="37.4532%" y="548" width="10.1124%" height="15" fill="rgb(254,186,54)" fg:x="100" fg:w="27"/><text x="37.7032%" y="558.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (27 samples, 10.11%)</title><rect x="37.4532%" y="564" width="10.1124%" height="15" fill="rgb(208,174,49)" fg:x="100" fg:w="27"/><text x="37.7032%" y="574.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (27 samples, 10.11%)</title><rect x="37.4532%" y="580" width="10.1124%" height="15" fill="rgb(233,191,51)" fg:x="100" fg:w="27"/><text x="37.7032%" y="590.50">_call_with_fram..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (9 samples, 3.37%)</title><rect x="44.1948%" y="596" width="3.3708%" height="15" fill="rgb(222,134,10)" fg:x="118" fg:w="9"/><text x="44.4448%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.37%)</title><rect x="44.1948%" y="612" width="3.3708%" height="15" fill="rgb(230,226,20)" fg:x="118" fg:w="9"/><text x="44.4448%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.37%)</title><rect x="44.1948%" y="628" width="3.3708%" height="15" fill="rgb(251,111,25)" fg:x="118" fg:w="9"/><text x="44.4448%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.37%)</title><rect x="44.1948%" y="644" width="3.3708%" height="15" fill="rgb(224,40,46)" fg:x="118" fg:w="9"/><text x="44.4448%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.37%)</title><rect x="44.1948%" y="660" width="3.3708%" height="15" fill="rgb(236,108,47)" fg:x="118" fg:w="9"/><text x="44.4448%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="44.1948%" y="676" width="3.3708%" height="15" fill="rgb(234,93,0)" fg:x="118" fg:w="9"/><text x="44.4448%" y="686.50">_ca..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (9 samples, 3.37%)</title><rect x="44.1948%" y="692" width="3.3708%" height="15" fill="rgb(224,213,32)" fg:x="118" fg:w="9"/><text x="44.4448%" y="702.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.37%)</title><rect x="44.1948%" y="708" width="3.3708%" height="15" fill="rgb(251,11,48)" fg:x="118" fg:w="9"/><text x="44.4448%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.37%)</title><rect x="44.1948%" y="724" width="3.3708%" height="15" fill="rgb(236,173,5)" fg:x="118" fg:w="9"/><text x="44.4448%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.37%)</title><rect x="44.1948%" y="740" width="3.3708%" height="15" fill="rgb(230,95,12)" fg:x="118" fg:w="9"/><text x="44.4448%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.37%)</title><rect x="44.1948%" y="756" width="3.3708%" height="15" fill="rgb(232,209,1)" fg:x="118" fg:w="9"/><text x="44.4448%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="44.1948%" y="772" width="3.3708%" height="15" fill="rgb(232,6,1)" fg:x="118" fg:w="9"/><text x="44.4448%" y="782.50">_ca..</text></g><g><title><module> (pandas/core/frame.py:1) (9 samples, 3.37%)</title><rect x="44.1948%" y="788" width="3.3708%" height="15" fill="rgb(210,224,50)" fg:x="118" fg:w="9"/><text x="44.4448%" y="798.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="44.5693%" y="804" width="2.9963%" height="15" fill="rgb(228,127,35)" fg:x="119" fg:w="8"/><text x="44.8193%" y="814.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="44.5693%" y="820" width="2.9963%" height="15" fill="rgb(245,102,45)" fg:x="119" fg:w="8"/><text x="44.8193%" y="830.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="44.5693%" y="836" width="2.9963%" height="15" fill="rgb(214,1,49)" fg:x="119" fg:w="8"/><text x="44.8193%" y="846.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="44.5693%" y="852" width="2.9963%" height="15" fill="rgb(226,163,40)" fg:x="119" fg:w="8"/><text x="44.8193%" y="862.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="44.5693%" y="868" width="2.9963%" height="15" fill="rgb(239,212,28)" fg:x="119" fg:w="8"/><text x="44.8193%" y="878.50">_ca..</text></g><g><title><module> (pandas/core/generic.py:2) (8 samples, 3.00%)</title><rect x="44.5693%" y="884" width="2.9963%" height="15" fill="rgb(220,20,13)" fg:x="119" fg:w="8"/><text x="44.8193%" y="894.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.50%)</title><rect x="46.0674%" y="900" width="1.4981%" height="15" fill="rgb(210,164,35)" fg:x="123" fg:w="4"/><text x="46.3174%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="46.0674%" y="916" width="1.4981%" height="15" fill="rgb(248,109,41)" fg:x="123" fg:w="4"/><text x="46.3174%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="46.0674%" y="932" width="1.4981%" height="15" fill="rgb(238,23,50)" fg:x="123" fg:w="4"/><text x="46.3174%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="46.0674%" y="948" width="1.4981%" height="15" fill="rgb(211,48,49)" fg:x="123" fg:w="4"/><text x="46.3174%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="46.0674%" y="964" width="1.4981%" height="15" fill="rgb(223,36,21)" fg:x="123" fg:w="4"/><text x="46.3174%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="46.0674%" y="980" width="1.4981%" height="15" fill="rgb(207,123,46)" fg:x="123" fg:w="4"/><text x="46.3174%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="46.0674%" y="996" width="1.4981%" height="15" fill="rgb(240,218,32)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (4 samples, 1.50%)</title><rect x="46.0674%" y="1012" width="1.4981%" height="15" fill="rgb(252,5,43)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="46.0674%" y="1028" width="1.4981%" height="15" fill="rgb(252,84,19)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="46.0674%" y="1044" width="1.4981%" height="15" fill="rgb(243,152,39)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="46.0674%" y="1060" width="1.4981%" height="15" fill="rgb(234,160,15)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="46.0674%" y="1076" width="1.4981%" height="15" fill="rgb(237,34,20)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="46.0674%" y="1092" width="1.4981%" height="15" fill="rgb(229,97,13)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (4 samples, 1.50%)</title><rect x="46.0674%" y="1108" width="1.4981%" height="15" fill="rgb(234,71,50)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="46.0674%" y="1124" width="1.4981%" height="15" fill="rgb(253,155,4)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="46.0674%" y="1140" width="1.4981%" height="15" fill="rgb(222,185,37)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="46.0674%" y="1156" width="1.4981%" height="15" fill="rgb(251,177,13)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="46.0674%" y="1172" width="1.4981%" height="15" fill="rgb(250,179,40)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="46.0674%" y="1188" width="1.4981%" height="15" fill="rgb(242,44,2)" fg:x="123" fg:w="4"/><text x="46.3174%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/interval.py:1) (1 samples, 0.37%)</title><rect x="47.1910%" y="1204" width="0.3745%" height="15" fill="rgb(216,177,13)" fg:x="126" fg:w="1"/><text x="47.4410%" y="1214.50"></text></g><g><title>IntervalIndex (pandas/core/indexes/interval.py:157) (1 samples, 0.37%)</title><rect x="47.1910%" y="1220" width="0.3745%" height="15" fill="rgb(216,106,43)" fg:x="126" fg:w="1"/><text x="47.4410%" y="1230.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.37%)</title><rect x="47.1910%" y="1236" width="0.3745%" height="15" fill="rgb(216,183,2)" fg:x="126" fg:w="1"/><text x="47.4410%" y="1246.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.37%)</title><rect x="47.1910%" y="1252" width="0.3745%" height="15" fill="rgb(249,75,3)" fg:x="126" fg:w="1"/><text x="47.4410%" y="1262.50"></text></g><g><title><module> (pandas/__init__.py:1) (47 samples, 17.60%)</title><rect x="30.3371%" y="404" width="17.6030%" height="15" fill="rgb(219,67,39)" fg:x="81" fg:w="47"/><text x="30.5871%" y="414.50"><module> (pandas/__init__.p..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="47.5655%" y="420" width="0.3745%" height="15" fill="rgb(253,228,2)" fg:x="127" fg:w="1"/><text x="47.8155%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="436" width="0.3745%" height="15" fill="rgb(235,138,27)" fg:x="127" fg:w="1"/><text x="47.8155%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="452" width="0.3745%" height="15" fill="rgb(236,97,51)" fg:x="127" fg:w="1"/><text x="47.8155%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="468" width="0.3745%" height="15" fill="rgb(240,80,30)" fg:x="127" fg:w="1"/><text x="47.8155%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="47.5655%" y="484" width="0.3745%" height="15" fill="rgb(230,178,19)" fg:x="127" fg:w="1"/><text x="47.8155%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="47.5655%" y="500" width="0.3745%" height="15" fill="rgb(210,190,27)" fg:x="127" fg:w="1"/><text x="47.8155%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="516" width="0.3745%" height="15" fill="rgb(222,107,31)" fg:x="127" fg:w="1"/><text x="47.8155%" y="526.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (1 samples, 0.37%)</title><rect x="47.5655%" y="532" width="0.3745%" height="15" fill="rgb(216,127,34)" fg:x="127" fg:w="1"/><text x="47.8155%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="47.5655%" y="548" width="0.3745%" height="15" fill="rgb(234,116,52)" fg:x="127" fg:w="1"/><text x="47.8155%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="564" width="0.3745%" height="15" fill="rgb(222,124,15)" fg:x="127" fg:w="1"/><text x="47.8155%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="580" width="0.3745%" height="15" fill="rgb(231,179,28)" fg:x="127" fg:w="1"/><text x="47.8155%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="596" width="0.3745%" height="15" fill="rgb(226,93,45)" fg:x="127" fg:w="1"/><text x="47.8155%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="47.5655%" y="612" width="0.3745%" height="15" fill="rgb(215,8,51)" fg:x="127" fg:w="1"/><text x="47.8155%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="47.5655%" y="628" width="0.3745%" height="15" fill="rgb(223,106,5)" fg:x="127" fg:w="1"/><text x="47.8155%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="644" width="0.3745%" height="15" fill="rgb(250,191,5)" fg:x="127" fg:w="1"/><text x="47.8155%" y="654.50"></text></g><g><title><module> (pandas/api/typing/__init__.py:1) (1 samples, 0.37%)</title><rect x="47.5655%" y="660" width="0.3745%" height="15" fill="rgb(242,132,44)" fg:x="127" fg:w="1"/><text x="47.8155%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="676" width="0.3745%" height="15" fill="rgb(251,152,29)" fg:x="127" fg:w="1"/><text x="47.8155%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="692" width="0.3745%" height="15" fill="rgb(218,179,5)" fg:x="127" fg:w="1"/><text x="47.8155%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="708" width="0.3745%" height="15" fill="rgb(227,67,19)" fg:x="127" fg:w="1"/><text x="47.8155%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="724" width="0.3745%" height="15" fill="rgb(233,119,31)" fg:x="127" fg:w="1"/><text x="47.8155%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="740" width="0.3745%" height="15" fill="rgb(241,120,22)" fg:x="127" fg:w="1"/><text x="47.8155%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="47.5655%" y="756" width="0.3745%" height="15" fill="rgb(224,102,30)" fg:x="127" fg:w="1"/><text x="47.8155%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="47.5655%" y="772" width="0.3745%" height="15" fill="rgb(210,164,37)" fg:x="127" fg:w="1"/><text x="47.8155%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="788" width="0.3745%" height="15" fill="rgb(226,191,16)" fg:x="127" fg:w="1"/><text x="47.8155%" y="798.50"></text></g><g><title><module> (pandas/io/json/__init__.py:1) (1 samples, 0.37%)</title><rect x="47.5655%" y="804" width="0.3745%" height="15" fill="rgb(214,40,45)" fg:x="127" fg:w="1"/><text x="47.8155%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="820" width="0.3745%" height="15" fill="rgb(244,29,26)" fg:x="127" fg:w="1"/><text x="47.8155%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="836" width="0.3745%" height="15" fill="rgb(216,16,5)" fg:x="127" fg:w="1"/><text x="47.8155%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="47.5655%" y="852" width="0.3745%" height="15" fill="rgb(249,76,35)" fg:x="127" fg:w="1"/><text x="47.8155%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="47.5655%" y="868" width="0.3745%" height="15" fill="rgb(207,11,44)" fg:x="127" fg:w="1"/><text x="47.8155%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="884" width="0.3745%" height="15" fill="rgb(228,190,49)" fg:x="127" fg:w="1"/><text x="47.8155%" y="894.50"></text></g><g><title><module> (pandas/io/json/_json.py:1) (1 samples, 0.37%)</title><rect x="47.5655%" y="900" width="0.3745%" height="15" fill="rgb(214,173,12)" fg:x="127" fg:w="1"/><text x="47.8155%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="47.5655%" y="916" width="0.3745%" height="15" fill="rgb(218,26,35)" fg:x="127" fg:w="1"/><text x="47.8155%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="47.5655%" y="932" width="0.3745%" height="15" fill="rgb(220,200,19)" fg:x="127" fg:w="1"/><text x="47.8155%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="47.5655%" y="948" width="0.3745%" height="15" fill="rgb(239,95,49)" fg:x="127" fg:w="1"/><text x="47.8155%" y="958.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="47.5655%" y="964" width="0.3745%" height="15" fill="rgb(235,85,53)" fg:x="127" fg:w="1"/><text x="47.8155%" y="974.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="47.5655%" y="980" width="0.3745%" height="15" fill="rgb(233,133,31)" fg:x="127" fg:w="1"/><text x="47.8155%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="47.5655%" y="996" width="0.3745%" height="15" fill="rgb(218,25,20)" fg:x="127" fg:w="1"/><text x="47.8155%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (63 samples, 23.60%)</title><rect x="25.0936%" y="324" width="23.5955%" height="15" fill="rgb(252,210,38)" fg:x="67" fg:w="63"/><text x="25.3436%" y="334.50">_find_and_load (<frozen importlib._bo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (63 samples, 23.60%)</title><rect x="25.0936%" y="340" width="23.5955%" height="15" fill="rgb(242,134,21)" fg:x="67" fg:w="63"/><text x="25.3436%" y="350.50">_find_and_load_unlocked (<frozen impo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (63 samples, 23.60%)</title><rect x="25.0936%" y="356" width="23.5955%" height="15" fill="rgb(213,28,48)" fg:x="67" fg:w="63"/><text x="25.3436%" y="366.50">_load_unlocked (<frozen importlib._bo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (63 samples, 23.60%)</title><rect x="25.0936%" y="372" width="23.5955%" height="15" fill="rgb(250,196,2)" fg:x="67" fg:w="63"/><text x="25.3436%" y="382.50">exec_module (<frozen importlib._boots..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (63 samples, 23.60%)</title><rect x="25.0936%" y="388" width="23.5955%" height="15" fill="rgb(227,5,17)" fg:x="67" fg:w="63"/><text x="25.3436%" y="398.50">_call_with_frames_removed (<frozen im..</text></g><g><title><module> (xarray/core/dataarray.py:1) (2 samples, 0.75%)</title><rect x="47.9401%" y="404" width="0.7491%" height="15" fill="rgb(221,226,24)" fg:x="128" fg:w="2"/><text x="48.1901%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="47.9401%" y="420" width="0.7491%" height="15" fill="rgb(211,5,48)" fg:x="128" fg:w="2"/><text x="48.1901%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="47.9401%" y="436" width="0.7491%" height="15" fill="rgb(219,150,6)" fg:x="128" fg:w="2"/><text x="48.1901%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="47.9401%" y="452" width="0.7491%" height="15" fill="rgb(251,46,16)" fg:x="128" fg:w="2"/><text x="48.1901%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="47.9401%" y="468" width="0.7491%" height="15" fill="rgb(220,204,40)" fg:x="128" fg:w="2"/><text x="48.1901%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="47.9401%" y="484" width="0.7491%" height="15" fill="rgb(211,85,2)" fg:x="128" fg:w="2"/><text x="48.1901%" y="494.50"></text></g><g><title><module> (xarray/core/dataset.py:1) (2 samples, 0.75%)</title><rect x="47.9401%" y="500" width="0.7491%" height="15" fill="rgb(229,17,7)" fg:x="128" fg:w="2"/><text x="48.1901%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="47.9401%" y="516" width="0.7491%" height="15" fill="rgb(239,72,28)" fg:x="128" fg:w="2"/><text x="48.1901%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="47.9401%" y="532" width="0.7491%" height="15" fill="rgb(230,47,54)" fg:x="128" fg:w="2"/><text x="48.1901%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="47.9401%" y="548" width="0.7491%" height="15" fill="rgb(214,50,8)" fg:x="128" fg:w="2"/><text x="48.1901%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="47.9401%" y="564" width="0.7491%" height="15" fill="rgb(216,198,43)" fg:x="128" fg:w="2"/><text x="48.1901%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="47.9401%" y="580" width="0.7491%" height="15" fill="rgb(234,20,35)" fg:x="128" fg:w="2"/><text x="48.1901%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="47.9401%" y="596" width="0.7491%" height="15" fill="rgb(254,45,19)" fg:x="128" fg:w="2"/><text x="48.1901%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="47.9401%" y="612" width="0.7491%" height="15" fill="rgb(219,14,44)" fg:x="128" fg:w="2"/><text x="48.1901%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="47.9401%" y="628" width="0.7491%" height="15" fill="rgb(217,220,26)" fg:x="128" fg:w="2"/><text x="48.1901%" y="638.50"></text></g><g><title><module> (xarray/plot/__init__.py:1) (2 samples, 0.75%)</title><rect x="47.9401%" y="644" width="0.7491%" height="15" fill="rgb(213,158,28)" fg:x="128" fg:w="2"/><text x="48.1901%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="47.9401%" y="660" width="0.7491%" height="15" fill="rgb(252,51,52)" fg:x="128" fg:w="2"/><text x="48.1901%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="47.9401%" y="676" width="0.7491%" height="15" fill="rgb(246,89,16)" fg:x="128" fg:w="2"/><text x="48.1901%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="47.9401%" y="692" width="0.7491%" height="15" fill="rgb(216,158,49)" fg:x="128" fg:w="2"/><text x="48.1901%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="47.9401%" y="708" width="0.7491%" height="15" fill="rgb(236,107,19)" fg:x="128" fg:w="2"/><text x="48.1901%" y="718.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="47.9401%" y="724" width="0.7491%" height="15" fill="rgb(228,185,30)" fg:x="128" fg:w="2"/><text x="48.1901%" y="734.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.75%)</title><rect x="47.9401%" y="740" width="0.7491%" height="15" fill="rgb(246,134,8)" fg:x="128" fg:w="2"/><text x="48.1901%" y="750.50"></text></g><g><title><module> (xarray/testing.py:1) (64 samples, 23.97%)</title><rect x="25.0936%" y="308" width="23.9700%" height="15" fill="rgb(214,143,50)" fg:x="67" fg:w="64"/><text x="25.3436%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="48.6891%" y="324" width="0.3745%" height="15" fill="rgb(228,75,8)" fg:x="130" fg:w="1"/><text x="48.9391%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="48.6891%" y="340" width="0.3745%" height="15" fill="rgb(207,175,4)" fg:x="130" fg:w="1"/><text x="48.9391%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="48.6891%" y="356" width="0.3745%" height="15" fill="rgb(205,108,24)" fg:x="130" fg:w="1"/><text x="48.9391%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="48.6891%" y="372" width="0.3745%" height="15" fill="rgb(244,120,49)" fg:x="130" fg:w="1"/><text x="48.9391%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="48.6891%" y="388" width="0.3745%" height="15" fill="rgb(223,47,38)" fg:x="130" fg:w="1"/><text x="48.9391%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="48.6891%" y="404" width="0.3745%" height="15" fill="rgb(229,179,11)" fg:x="130" fg:w="1"/><text x="48.9391%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="48.6891%" y="420" width="0.3745%" height="15" fill="rgb(231,122,1)" fg:x="130" fg:w="1"/><text x="48.9391%" y="430.50"></text></g><g><title><module> (xarray/core/formatting.py:1) (1 samples, 0.37%)</title><rect x="48.6891%" y="436" width="0.3745%" height="15" fill="rgb(245,119,9)" fg:x="130" fg:w="1"/><text x="48.9391%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="48.6891%" y="452" width="0.3745%" height="15" fill="rgb(241,163,25)" fg:x="130" fg:w="1"/><text x="48.9391%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="48.6891%" y="468" width="0.3745%" height="15" fill="rgb(217,214,3)" fg:x="130" fg:w="1"/><text x="48.9391%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="48.6891%" y="484" width="0.3745%" height="15" fill="rgb(240,86,28)" fg:x="130" fg:w="1"/><text x="48.9391%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="48.6891%" y="500" width="0.3745%" height="15" fill="rgb(215,47,9)" fg:x="130" fg:w="1"/><text x="48.9391%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="48.6891%" y="516" width="0.3745%" height="15" fill="rgb(252,25,45)" fg:x="130" fg:w="1"/><text x="48.9391%" y="526.50"></text></g><g><title><module> (xarray/core/indexing.py:1) (1 samples, 0.37%)</title><rect x="48.6891%" y="532" width="0.3745%" height="15" fill="rgb(251,164,9)" fg:x="130" fg:w="1"/><text x="48.9391%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="48.6891%" y="548" width="0.3745%" height="15" fill="rgb(233,194,0)" fg:x="130" fg:w="1"/><text x="48.9391%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="48.6891%" y="564" width="0.3745%" height="15" fill="rgb(249,111,24)" fg:x="130" fg:w="1"/><text x="48.9391%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="48.6891%" y="580" width="0.3745%" height="15" fill="rgb(250,223,3)" fg:x="130" fg:w="1"/><text x="48.9391%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="48.6891%" y="596" width="0.3745%" height="15" fill="rgb(236,178,37)" fg:x="130" fg:w="1"/><text x="48.9391%" y="606.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="48.6891%" y="612" width="0.3745%" height="15" fill="rgb(241,158,50)" fg:x="130" fg:w="1"/><text x="48.9391%" y="622.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="48.6891%" y="628" width="0.3745%" height="15" fill="rgb(213,121,41)" fg:x="130" fg:w="1"/><text x="48.9391%" y="638.50"></text></g><g><title><module> (xarray/backends/common.py:1) (1 samples, 0.37%)</title><rect x="49.0637%" y="548" width="0.3745%" height="15" fill="rgb(240,92,3)" fg:x="131" fg:w="1"/><text x="49.3137%" y="558.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="49.4382%" y="1028" width="0.3745%" height="15" fill="rgb(205,123,3)" fg:x="132" fg:w="1"/><text x="49.6882%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="49.4382%" y="932" width="0.7491%" height="15" fill="rgb(205,97,47)" fg:x="132" fg:w="2"/><text x="49.6882%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="49.4382%" y="948" width="0.7491%" height="15" fill="rgb(247,152,14)" fg:x="132" fg:w="2"/><text x="49.6882%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="49.4382%" y="964" width="0.7491%" height="15" fill="rgb(248,195,53)" fg:x="132" fg:w="2"/><text x="49.6882%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="49.4382%" y="980" width="0.7491%" height="15" fill="rgb(226,201,16)" fg:x="132" fg:w="2"/><text x="49.6882%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="49.4382%" y="996" width="0.7491%" height="15" fill="rgb(205,98,0)" fg:x="132" fg:w="2"/><text x="49.6882%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="49.4382%" y="1012" width="0.7491%" height="15" fill="rgb(214,191,48)" fg:x="132" fg:w="2"/><text x="49.6882%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="49.8127%" y="1028" width="0.3745%" height="15" fill="rgb(237,112,39)" fg:x="133" fg:w="1"/><text x="50.0627%" y="1038.50"></text></g><g><title><module> (dask/base.py:1) (5 samples, 1.87%)</title><rect x="49.4382%" y="884" width="1.8727%" height="15" fill="rgb(247,203,27)" fg:x="132" fg:w="5"/><text x="49.6882%" y="894.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="49.4382%" y="900" width="1.8727%" height="15" fill="rgb(235,124,28)" fg:x="132" fg:w="5"/><text x="49.6882%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="49.4382%" y="916" width="1.8727%" height="15" fill="rgb(208,207,46)" fg:x="132" fg:w="5"/><text x="49.6882%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="50.1873%" y="932" width="1.1236%" height="15" fill="rgb(234,176,4)" fg:x="134" fg:w="3"/><text x="50.4373%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="50.1873%" y="948" width="1.1236%" height="15" fill="rgb(230,133,28)" fg:x="134" fg:w="3"/><text x="50.4373%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="50.1873%" y="964" width="1.1236%" height="15" fill="rgb(211,137,40)" fg:x="134" fg:w="3"/><text x="50.4373%" y="974.50"></text></g><g><title><module> (dask/system.py:1) (3 samples, 1.12%)</title><rect x="50.1873%" y="980" width="1.1236%" height="15" fill="rgb(254,35,13)" fg:x="134" fg:w="3"/><text x="50.4373%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="50.1873%" y="996" width="1.1236%" height="15" fill="rgb(225,49,51)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="50.1873%" y="1012" width="1.1236%" height="15" fill="rgb(251,10,15)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="50.1873%" y="1028" width="1.1236%" height="15" fill="rgb(228,207,15)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="50.1873%" y="1044" width="1.1236%" height="15" fill="rgb(241,99,19)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="50.1873%" y="1060" width="1.1236%" height="15" fill="rgb(207,104,49)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1070.50"></text></g><g><title><module> (psutil/__init__.py:7) (3 samples, 1.12%)</title><rect x="50.1873%" y="1076" width="1.1236%" height="15" fill="rgb(234,99,18)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="50.1873%" y="1092" width="1.1236%" height="15" fill="rgb(213,191,49)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="50.1873%" y="1108" width="1.1236%" height="15" fill="rgb(210,226,19)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="50.1873%" y="1124" width="1.1236%" height="15" fill="rgb(229,97,18)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="50.1873%" y="1140" width="1.1236%" height="15" fill="rgb(211,167,15)" fg:x="134" fg:w="3"/><text x="50.4373%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="50.5618%" y="1156" width="0.7491%" height="15" fill="rgb(210,169,34)" fg:x="135" fg:w="2"/><text x="50.8118%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.75%)</title><rect x="50.5618%" y="1172" width="0.7491%" height="15" fill="rgb(241,121,31)" fg:x="135" fg:w="2"/><text x="50.8118%" y="1182.50"></text></g><g><title><module> (jinja2/compiler.py:1) (2 samples, 0.75%)</title><rect x="51.3109%" y="1460" width="0.7491%" height="15" fill="rgb(232,40,11)" fg:x="137" fg:w="2"/><text x="51.5609%" y="1470.50"></text></g><g><title>CodeGenerator (jinja2/compiler.py:300) (2 samples, 0.75%)</title><rect x="51.3109%" y="1476" width="0.7491%" height="15" fill="rgb(205,86,26)" fg:x="137" fg:w="2"/><text x="51.5609%" y="1486.50"></text></g><g><title>__new__ (typing.py:1866) (2 samples, 0.75%)</title><rect x="51.3109%" y="1492" width="0.7491%" height="15" fill="rgb(231,126,28)" fg:x="137" fg:w="2"/><text x="51.5609%" y="1502.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (2 samples, 0.75%)</title><rect x="51.3109%" y="1508" width="0.7491%" height="15" fill="rgb(219,221,18)" fg:x="137" fg:w="2"/><text x="51.5609%" y="1518.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (2 samples, 0.75%)</title><rect x="51.3109%" y="1524" width="0.7491%" height="15" fill="rgb(211,40,0)" fg:x="137" fg:w="2"/><text x="51.5609%" y="1534.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.37%)</title><rect x="52.0599%" y="1668" width="0.3745%" height="15" fill="rgb(239,85,43)" fg:x="139" fg:w="1"/><text x="52.3099%" y="1678.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.37%)</title><rect x="52.0599%" y="1684" width="0.3745%" height="15" fill="rgb(231,55,21)" fg:x="139" fg:w="1"/><text x="52.3099%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="51.3109%" y="1348" width="1.8727%" height="15" fill="rgb(225,184,43)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1358.50">_..</text></g><g><title><module> (jinja2/environment.py:1) (5 samples, 1.87%)</title><rect x="51.3109%" y="1364" width="1.8727%" height="15" fill="rgb(251,158,41)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1374.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="51.3109%" y="1380" width="1.8727%" height="15" fill="rgb(234,159,37)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1390.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="51.3109%" y="1396" width="1.8727%" height="15" fill="rgb(216,204,22)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1406.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="51.3109%" y="1412" width="1.8727%" height="15" fill="rgb(214,17,3)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1422.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="51.3109%" y="1428" width="1.8727%" height="15" fill="rgb(212,111,17)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1438.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="51.3109%" y="1444" width="1.8727%" height="15" fill="rgb(221,157,24)" fg:x="137" fg:w="5"/><text x="51.5609%" y="1454.50">_..</text></g><g><title><module> (jinja2/defaults.py:1) (3 samples, 1.12%)</title><rect x="52.0599%" y="1460" width="1.1236%" height="15" fill="rgb(252,16,13)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="52.0599%" y="1476" width="1.1236%" height="15" fill="rgb(221,62,2)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="52.0599%" y="1492" width="1.1236%" height="15" fill="rgb(247,87,22)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="52.0599%" y="1508" width="1.1236%" height="15" fill="rgb(215,73,9)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1518.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="52.0599%" y="1524" width="1.1236%" height="15" fill="rgb(207,175,33)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1534.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="52.0599%" y="1540" width="1.1236%" height="15" fill="rgb(243,129,54)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1550.50"></text></g><g><title><module> (jinja2/filters.py:1) (3 samples, 1.12%)</title><rect x="52.0599%" y="1556" width="1.1236%" height="15" fill="rgb(227,119,45)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1566.50"></text></g><g><title>inner (typing.py:271) (3 samples, 1.12%)</title><rect x="52.0599%" y="1572" width="1.1236%" height="15" fill="rgb(205,109,36)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1582.50"></text></g><g><title>__getitem__ (typing.py:352) (3 samples, 1.12%)</title><rect x="52.0599%" y="1588" width="1.1236%" height="15" fill="rgb(205,6,39)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1598.50"></text></g><g><title>Optional (typing.py:472) (3 samples, 1.12%)</title><rect x="52.0599%" y="1604" width="1.1236%" height="15" fill="rgb(221,32,16)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1614.50"></text></g><g><title>inner (typing.py:271) (3 samples, 1.12%)</title><rect x="52.0599%" y="1620" width="1.1236%" height="15" fill="rgb(228,144,50)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1630.50"></text></g><g><title>__getitem__ (typing.py:352) (3 samples, 1.12%)</title><rect x="52.0599%" y="1636" width="1.1236%" height="15" fill="rgb(229,201,53)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1646.50"></text></g><g><title>Union (typing.py:434) (3 samples, 1.12%)</title><rect x="52.0599%" y="1652" width="1.1236%" height="15" fill="rgb(249,153,27)" fg:x="139" fg:w="3"/><text x="52.3099%" y="1662.50"></text></g><g><title>__init__ (typing.py:739) (2 samples, 0.75%)</title><rect x="52.4345%" y="1668" width="0.7491%" height="15" fill="rgb(227,106,25)" fg:x="140" fg:w="2"/><text x="52.6845%" y="1678.50"></text></g><g><title>_collect_type_vars (typing_extensions.py:182) (1 samples, 0.37%)</title><rect x="52.8090%" y="1684" width="0.3745%" height="15" fill="rgb(230,65,29)" fg:x="141" fg:w="1"/><text x="53.0590%" y="1694.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 4.12%)</title><rect x="49.4382%" y="804" width="4.1199%" height="15" fill="rgb(221,57,46)" fg:x="132" fg:w="11"/><text x="49.6882%" y="814.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 4.12%)</title><rect x="49.4382%" y="820" width="4.1199%" height="15" fill="rgb(229,161,17)" fg:x="132" fg:w="11"/><text x="49.6882%" y="830.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 4.12%)</title><rect x="49.4382%" y="836" width="4.1199%" height="15" fill="rgb(222,213,11)" fg:x="132" fg:w="11"/><text x="49.6882%" y="846.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 4.12%)</title><rect x="49.4382%" y="852" width="4.1199%" height="15" fill="rgb(235,35,13)" fg:x="132" fg:w="11"/><text x="49.6882%" y="862.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 4.12%)</title><rect x="49.4382%" y="868" width="4.1199%" height="15" fill="rgb(233,158,34)" fg:x="132" fg:w="11"/><text x="49.6882%" y="878.50">_cal..</text></g><g><title><module> (dask/delayed.py:1) (6 samples, 2.25%)</title><rect x="51.3109%" y="884" width="2.2472%" height="15" fill="rgb(215,151,48)" fg:x="137" fg:w="6"/><text x="51.5609%" y="894.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="51.3109%" y="900" width="2.2472%" height="15" fill="rgb(229,84,14)" fg:x="137" fg:w="6"/><text x="51.5609%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="51.3109%" y="916" width="2.2472%" height="15" fill="rgb(229,68,14)" fg:x="137" fg:w="6"/><text x="51.5609%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="51.3109%" y="932" width="2.2472%" height="15" fill="rgb(243,106,26)" fg:x="137" fg:w="6"/><text x="51.5609%" y="942.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="51.3109%" y="948" width="2.2472%" height="15" fill="rgb(206,45,38)" fg:x="137" fg:w="6"/><text x="51.5609%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="51.3109%" y="964" width="2.2472%" height="15" fill="rgb(226,6,15)" fg:x="137" fg:w="6"/><text x="51.5609%" y="974.50">_..</text></g><g><title><module> (dask/highlevelgraph.py:1) (6 samples, 2.25%)</title><rect x="51.3109%" y="980" width="2.2472%" height="15" fill="rgb(232,22,54)" fg:x="137" fg:w="6"/><text x="51.5609%" y="990.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="51.3109%" y="996" width="2.2472%" height="15" fill="rgb(229,222,32)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1006.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="51.3109%" y="1012" width="2.2472%" height="15" fill="rgb(228,62,29)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1022.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="51.3109%" y="1028" width="2.2472%" height="15" fill="rgb(251,103,34)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1038.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="51.3109%" y="1044" width="2.2472%" height="15" fill="rgb(233,12,30)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1054.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="51.3109%" y="1060" width="2.2472%" height="15" fill="rgb(238,52,0)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1070.50">_..</text></g><g><title><module> (dask/widgets/__init__.py:1) (6 samples, 2.25%)</title><rect x="51.3109%" y="1076" width="2.2472%" height="15" fill="rgb(223,98,5)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1086.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="51.3109%" y="1092" width="2.2472%" height="15" fill="rgb(228,75,37)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1102.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="51.3109%" y="1108" width="2.2472%" height="15" fill="rgb(205,115,49)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1118.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="51.3109%" y="1124" width="2.2472%" height="15" fill="rgb(250,154,43)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1134.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="51.3109%" y="1140" width="2.2472%" height="15" fill="rgb(226,43,29)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1150.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="51.3109%" y="1156" width="2.2472%" height="15" fill="rgb(249,228,39)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1166.50">_..</text></g><g><title><module> (dask/widgets/widgets.py:1) (6 samples, 2.25%)</title><rect x="51.3109%" y="1172" width="2.2472%" height="15" fill="rgb(216,79,43)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1182.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="51.3109%" y="1188" width="2.2472%" height="15" fill="rgb(228,95,12)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1198.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="51.3109%" y="1204" width="2.2472%" height="15" fill="rgb(249,221,15)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1214.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="51.3109%" y="1220" width="2.2472%" height="15" fill="rgb(233,34,13)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1230.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="51.3109%" y="1236" width="2.2472%" height="15" fill="rgb(214,103,39)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1246.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="51.3109%" y="1252" width="2.2472%" height="15" fill="rgb(251,126,39)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1262.50">_..</text></g><g><title><module> (jinja2/__init__.py:1) (6 samples, 2.25%)</title><rect x="51.3109%" y="1268" width="2.2472%" height="15" fill="rgb(214,216,36)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1278.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="51.3109%" y="1284" width="2.2472%" height="15" fill="rgb(220,221,8)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1294.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="51.3109%" y="1300" width="2.2472%" height="15" fill="rgb(240,216,3)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1310.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="51.3109%" y="1316" width="2.2472%" height="15" fill="rgb(232,218,17)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1326.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="51.3109%" y="1332" width="2.2472%" height="15" fill="rgb(229,163,45)" fg:x="137" fg:w="6"/><text x="51.5609%" y="1342.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="53.1835%" y="1348" width="0.3745%" height="15" fill="rgb(231,110,42)" fg:x="142" fg:w="1"/><text x="53.4335%" y="1358.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="53.1835%" y="1364" width="0.3745%" height="15" fill="rgb(208,170,48)" fg:x="142" fg:w="1"/><text x="53.4335%" y="1374.50"></text></g><g><title><module> (yaml/reader.py:18) (1 samples, 0.37%)</title><rect x="53.5581%" y="1204" width="0.3745%" height="15" fill="rgb(239,116,25)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1214.50"></text></g><g><title>Reader (yaml/reader.py:45) (1 samples, 0.37%)</title><rect x="53.5581%" y="1220" width="0.3745%" height="15" fill="rgb(219,200,50)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1230.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.37%)</title><rect x="53.5581%" y="1236" width="0.3745%" height="15" fill="rgb(245,200,0)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1246.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="53.5581%" y="1252" width="0.3745%" height="15" fill="rgb(245,119,33)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1262.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.37%)</title><rect x="53.5581%" y="1268" width="0.3745%" height="15" fill="rgb(231,125,12)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1278.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.37%)</title><rect x="53.5581%" y="1284" width="0.3745%" height="15" fill="rgb(216,96,41)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1294.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="53.5581%" y="1300" width="0.3745%" height="15" fill="rgb(248,43,45)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1310.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.37%)</title><rect x="53.5581%" y="1316" width="0.3745%" height="15" fill="rgb(217,222,7)" fg:x="143" fg:w="1"/><text x="53.8081%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="53.5581%" y="932" width="0.7491%" height="15" fill="rgb(233,28,6)" fg:x="143" fg:w="2"/><text x="53.8081%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="53.5581%" y="948" width="0.7491%" height="15" fill="rgb(231,218,15)" fg:x="143" fg:w="2"/><text x="53.8081%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="53.5581%" y="964" width="0.7491%" height="15" fill="rgb(226,171,48)" fg:x="143" fg:w="2"/><text x="53.8081%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="53.5581%" y="980" width="0.7491%" height="15" fill="rgb(235,201,9)" fg:x="143" fg:w="2"/><text x="53.8081%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="53.5581%" y="996" width="0.7491%" height="15" fill="rgb(217,80,15)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (2 samples, 0.75%)</title><rect x="53.5581%" y="1012" width="0.7491%" height="15" fill="rgb(219,152,8)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="53.5581%" y="1028" width="0.7491%" height="15" fill="rgb(243,107,38)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="53.5581%" y="1044" width="0.7491%" height="15" fill="rgb(231,17,5)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="53.5581%" y="1060" width="0.7491%" height="15" fill="rgb(209,25,54)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="53.5581%" y="1076" width="0.7491%" height="15" fill="rgb(219,0,2)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="53.5581%" y="1092" width="0.7491%" height="15" fill="rgb(246,9,5)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (2 samples, 0.75%)</title><rect x="53.5581%" y="1108" width="0.7491%" height="15" fill="rgb(226,159,4)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="53.5581%" y="1124" width="0.7491%" height="15" fill="rgb(219,175,34)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="53.5581%" y="1140" width="0.7491%" height="15" fill="rgb(236,10,46)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="53.5581%" y="1156" width="0.7491%" height="15" fill="rgb(240,211,16)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="53.5581%" y="1172" width="0.7491%" height="15" fill="rgb(205,3,43)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="53.5581%" y="1188" width="0.7491%" height="15" fill="rgb(245,7,22)" fg:x="143" fg:w="2"/><text x="53.8081%" y="1198.50"></text></g><g><title><module> (yaml/resolver.py:2) (1 samples, 0.37%)</title><rect x="53.9326%" y="1204" width="0.3745%" height="15" fill="rgb(239,132,32)" fg:x="144" fg:w="1"/><text x="54.1826%" y="1214.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.37%)</title><rect x="53.9326%" y="1220" width="0.3745%" height="15" fill="rgb(228,202,34)" fg:x="144" fg:w="1"/><text x="54.1826%" y="1230.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="53.9326%" y="1236" width="0.3745%" height="15" fill="rgb(254,200,22)" fg:x="144" fg:w="1"/><text x="54.1826%" y="1246.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.37%)</title><rect x="53.9326%" y="1252" width="0.3745%" height="15" fill="rgb(219,10,39)" fg:x="144" fg:w="1"/><text x="54.1826%" y="1262.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.75%)</title><rect x="54.3071%" y="1092" width="0.7491%" height="15" fill="rgb(226,210,39)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1102.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (2 samples, 0.75%)</title><rect x="54.3071%" y="1108" width="0.7491%" height="15" fill="rgb(208,219,16)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1118.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.75%)</title><rect x="54.3071%" y="1124" width="0.7491%" height="15" fill="rgb(216,158,51)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1134.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.75%)</title><rect x="54.3071%" y="1140" width="0.7491%" height="15" fill="rgb(233,14,44)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1150.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 0.75%)</title><rect x="54.3071%" y="1156" width="0.7491%" height="15" fill="rgb(237,97,39)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1166.50"></text></g><g><title>forward (yaml/reader.py:99) (2 samples, 0.75%)</title><rect x="54.3071%" y="1172" width="0.7491%" height="15" fill="rgb(218,198,43)" fg:x="145" fg:w="2"/><text x="54.5571%" y="1182.50"></text></g><g><title><module> (dask/config.py:1) (5 samples, 1.87%)</title><rect x="53.5581%" y="916" width="1.8727%" height="15" fill="rgb(231,104,20)" fg:x="143" fg:w="5"/><text x="53.8081%" y="926.50"><..</text></g><g><title>_initialize (dask/config.py:792) (3 samples, 1.12%)</title><rect x="54.3071%" y="932" width="1.1236%" height="15" fill="rgb(254,36,13)" fg:x="145" fg:w="3"/><text x="54.5571%" y="942.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (3 samples, 1.12%)</title><rect x="54.3071%" y="948" width="1.1236%" height="15" fill="rgb(248,14,50)" fg:x="145" fg:w="3"/><text x="54.5571%" y="958.50"></text></g><g><title>load (yaml/__init__.py:74) (3 samples, 1.12%)</title><rect x="54.3071%" y="964" width="1.1236%" height="15" fill="rgb(217,107,29)" fg:x="145" fg:w="3"/><text x="54.5571%" y="974.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (3 samples, 1.12%)</title><rect x="54.3071%" y="980" width="1.1236%" height="15" fill="rgb(251,169,33)" fg:x="145" fg:w="3"/><text x="54.5571%" y="990.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (3 samples, 1.12%)</title><rect x="54.3071%" y="996" width="1.1236%" height="15" fill="rgb(217,108,32)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1006.50"></text></g><g><title>compose_document (yaml/composer.py:50) (3 samples, 1.12%)</title><rect x="54.3071%" y="1012" width="1.1236%" height="15" fill="rgb(219,66,42)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1022.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 1.12%)</title><rect x="54.3071%" y="1028" width="1.1236%" height="15" fill="rgb(206,180,7)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1038.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 1.12%)</title><rect x="54.3071%" y="1044" width="1.1236%" height="15" fill="rgb(208,226,31)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1054.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 1.12%)</title><rect x="54.3071%" y="1060" width="1.1236%" height="15" fill="rgb(218,26,49)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1070.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 1.12%)</title><rect x="54.3071%" y="1076" width="1.1236%" height="15" fill="rgb(233,197,48)" fg:x="145" fg:w="3"/><text x="54.5571%" y="1086.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.37%)</title><rect x="55.0562%" y="1092" width="0.3745%" height="15" fill="rgb(252,181,51)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1102.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.37%)</title><rect x="55.0562%" y="1108" width="0.3745%" height="15" fill="rgb(253,90,19)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1118.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.37%)</title><rect x="55.0562%" y="1124" width="0.3745%" height="15" fill="rgb(215,171,30)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1134.50"></text></g><g><title>compose_sequence_node (yaml/composer.py:99) (1 samples, 0.37%)</title><rect x="55.0562%" y="1140" width="0.3745%" height="15" fill="rgb(214,222,9)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1150.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.37%)</title><rect x="55.0562%" y="1156" width="0.3745%" height="15" fill="rgb(223,3,22)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1166.50"></text></g><g><title>parse_block_sequence_entry (yaml/parser.py:381) (1 samples, 0.37%)</title><rect x="55.0562%" y="1172" width="0.3745%" height="15" fill="rgb(225,196,46)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1182.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.37%)</title><rect x="55.0562%" y="1188" width="0.3745%" height="15" fill="rgb(209,110,37)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1198.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.37%)</title><rect x="55.0562%" y="1204" width="0.3745%" height="15" fill="rgb(249,89,12)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1214.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.37%)</title><rect x="55.0562%" y="1220" width="0.3745%" height="15" fill="rgb(226,27,33)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1230.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.37%)</title><rect x="55.0562%" y="1236" width="0.3745%" height="15" fill="rgb(213,82,22)" fg:x="147" fg:w="1"/><text x="55.3062%" y="1246.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (82 samples, 30.71%)</title><rect x="25.0936%" y="196" width="30.7116%" height="15" fill="rgb(248,140,0)" fg:x="67" fg:w="82"/><text x="25.3436%" y="206.50">_handle_fromlist (<frozen importlib._bootstrap>:10..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 30.71%)</title><rect x="25.0936%" y="212" width="30.7116%" height="15" fill="rgb(228,106,3)" fg:x="67" fg:w="82"/><text x="25.3436%" y="222.50">_call_with_frames_removed (<frozen importlib._boot..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (82 samples, 30.71%)</title><rect x="25.0936%" y="228" width="30.7116%" height="15" fill="rgb(209,23,37)" fg:x="67" fg:w="82"/><text x="25.3436%" y="238.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (82 samples, 30.71%)</title><rect x="25.0936%" y="244" width="30.7116%" height="15" fill="rgb(241,93,50)" fg:x="67" fg:w="82"/><text x="25.3436%" y="254.50">_find_and_load_unlocked (<frozen importlib._bootst..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (82 samples, 30.71%)</title><rect x="25.0936%" y="260" width="30.7116%" height="15" fill="rgb(253,46,43)" fg:x="67" fg:w="82"/><text x="25.3436%" y="270.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (82 samples, 30.71%)</title><rect x="25.0936%" y="276" width="30.7116%" height="15" fill="rgb(226,206,43)" fg:x="67" fg:w="82"/><text x="25.3436%" y="286.50">exec_module (<frozen importlib._bootstrap_external..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 30.71%)</title><rect x="25.0936%" y="292" width="30.7116%" height="15" fill="rgb(217,54,7)" fg:x="67" fg:w="82"/><text x="25.3436%" y="302.50">_call_with_frames_removed (<frozen importlib._boot..</text></g><g><title><module> (xarray/tutorial.py:1) (18 samples, 6.74%)</title><rect x="49.0637%" y="308" width="6.7416%" height="15" fill="rgb(223,5,52)" fg:x="131" fg:w="18"/><text x="49.3137%" y="318.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="49.0637%" y="324" width="6.7416%" height="15" fill="rgb(206,52,46)" fg:x="131" fg:w="18"/><text x="49.3137%" y="334.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="49.0637%" y="340" width="6.7416%" height="15" fill="rgb(253,136,11)" fg:x="131" fg:w="18"/><text x="49.3137%" y="350.50">_find_and..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="49.0637%" y="356" width="6.7416%" height="15" fill="rgb(208,106,33)" fg:x="131" fg:w="18"/><text x="49.3137%" y="366.50">_call_wit..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="49.0637%" y="372" width="6.7416%" height="15" fill="rgb(206,54,4)" fg:x="131" fg:w="18"/><text x="49.3137%" y="382.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="49.0637%" y="388" width="6.7416%" height="15" fill="rgb(213,3,15)" fg:x="131" fg:w="18"/><text x="49.3137%" y="398.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="49.0637%" y="404" width="6.7416%" height="15" fill="rgb(252,211,39)" fg:x="131" fg:w="18"/><text x="49.3137%" y="414.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="49.0637%" y="420" width="6.7416%" height="15" fill="rgb(223,6,36)" fg:x="131" fg:w="18"/><text x="49.3137%" y="430.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="49.0637%" y="436" width="6.7416%" height="15" fill="rgb(252,169,45)" fg:x="131" fg:w="18"/><text x="49.3137%" y="446.50">_call_wit..</text></g><g><title><module> (xarray/backends/__init__.py:1) (18 samples, 6.74%)</title><rect x="49.0637%" y="452" width="6.7416%" height="15" fill="rgb(212,48,26)" fg:x="131" fg:w="18"/><text x="49.3137%" y="462.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="49.0637%" y="468" width="6.7416%" height="15" fill="rgb(251,102,48)" fg:x="131" fg:w="18"/><text x="49.3137%" y="478.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="49.0637%" y="484" width="6.7416%" height="15" fill="rgb(243,208,16)" fg:x="131" fg:w="18"/><text x="49.3137%" y="494.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="49.0637%" y="500" width="6.7416%" height="15" fill="rgb(219,96,24)" fg:x="131" fg:w="18"/><text x="49.3137%" y="510.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="49.0637%" y="516" width="6.7416%" height="15" fill="rgb(219,33,29)" fg:x="131" fg:w="18"/><text x="49.3137%" y="526.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="49.0637%" y="532" width="6.7416%" height="15" fill="rgb(223,176,5)" fg:x="131" fg:w="18"/><text x="49.3137%" y="542.50">_call_wit..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (17 samples, 6.37%)</title><rect x="49.4382%" y="548" width="6.3670%" height="15" fill="rgb(228,140,14)" fg:x="132" fg:w="17"/><text x="49.6882%" y="558.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 6.37%)</title><rect x="49.4382%" y="564" width="6.3670%" height="15" fill="rgb(217,179,31)" fg:x="132" fg:w="17"/><text x="49.6882%" y="574.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 6.37%)</title><rect x="49.4382%" y="580" width="6.3670%" height="15" fill="rgb(230,9,30)" fg:x="132" fg:w="17"/><text x="49.6882%" y="590.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 6.37%)</title><rect x="49.4382%" y="596" width="6.3670%" height="15" fill="rgb(230,136,20)" fg:x="132" fg:w="17"/><text x="49.6882%" y="606.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 6.37%)</title><rect x="49.4382%" y="612" width="6.3670%" height="15" fill="rgb(215,210,22)" fg:x="132" fg:w="17"/><text x="49.6882%" y="622.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 6.37%)</title><rect x="49.4382%" y="628" width="6.3670%" height="15" fill="rgb(218,43,5)" fg:x="132" fg:w="17"/><text x="49.6882%" y="638.50">_call_wi..</text></g><g><title><module> (xarray/backends/locks.py:1) (17 samples, 6.37%)</title><rect x="49.4382%" y="644" width="6.3670%" height="15" fill="rgb(216,11,5)" fg:x="132" fg:w="17"/><text x="49.6882%" y="654.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 6.37%)</title><rect x="49.4382%" y="660" width="6.3670%" height="15" fill="rgb(209,82,29)" fg:x="132" fg:w="17"/><text x="49.6882%" y="670.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 6.37%)</title><rect x="49.4382%" y="676" width="6.3670%" height="15" fill="rgb(244,115,12)" fg:x="132" fg:w="17"/><text x="49.6882%" y="686.50">_find_an..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 6.37%)</title><rect x="49.4382%" y="692" width="6.3670%" height="15" fill="rgb(222,82,18)" fg:x="132" fg:w="17"/><text x="49.6882%" y="702.50">_call_wi..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 6.37%)</title><rect x="49.4382%" y="708" width="6.3670%" height="15" fill="rgb(249,227,8)" fg:x="132" fg:w="17"/><text x="49.6882%" y="718.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 6.37%)</title><rect x="49.4382%" y="724" width="6.3670%" height="15" fill="rgb(253,141,45)" fg:x="132" fg:w="17"/><text x="49.6882%" y="734.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 6.37%)</title><rect x="49.4382%" y="740" width="6.3670%" height="15" fill="rgb(234,184,4)" fg:x="132" fg:w="17"/><text x="49.6882%" y="750.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 6.37%)</title><rect x="49.4382%" y="756" width="6.3670%" height="15" fill="rgb(218,194,23)" fg:x="132" fg:w="17"/><text x="49.6882%" y="766.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 6.37%)</title><rect x="49.4382%" y="772" width="6.3670%" height="15" fill="rgb(235,66,41)" fg:x="132" fg:w="17"/><text x="49.6882%" y="782.50">_call_wi..</text></g><g><title><module> (dask/__init__.py:1) (17 samples, 6.37%)</title><rect x="49.4382%" y="788" width="6.3670%" height="15" fill="rgb(245,217,1)" fg:x="132" fg:w="17"/><text x="49.6882%" y="798.50"><module>..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.25%)</title><rect x="53.5581%" y="804" width="2.2472%" height="15" fill="rgb(229,91,1)" fg:x="143" fg:w="6"/><text x="53.8081%" y="814.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="53.5581%" y="820" width="2.2472%" height="15" fill="rgb(207,101,30)" fg:x="143" fg:w="6"/><text x="53.8081%" y="830.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="53.5581%" y="836" width="2.2472%" height="15" fill="rgb(223,82,49)" fg:x="143" fg:w="6"/><text x="53.8081%" y="846.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="53.5581%" y="852" width="2.2472%" height="15" fill="rgb(218,167,17)" fg:x="143" fg:w="6"/><text x="53.8081%" y="862.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="53.5581%" y="868" width="2.2472%" height="15" fill="rgb(208,103,14)" fg:x="143" fg:w="6"/><text x="53.8081%" y="878.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="53.5581%" y="884" width="2.2472%" height="15" fill="rgb(238,20,8)" fg:x="143" fg:w="6"/><text x="53.8081%" y="894.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="53.5581%" y="900" width="2.2472%" height="15" fill="rgb(218,80,54)" fg:x="143" fg:w="6"/><text x="53.8081%" y="910.50">_..</text></g><g><title><module> (dask/datasets.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="916" width="0.3745%" height="15" fill="rgb(240,144,17)" fg:x="148" fg:w="1"/><text x="55.6807%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="932" width="0.3745%" height="15" fill="rgb(245,27,50)" fg:x="148" fg:w="1"/><text x="55.6807%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="948" width="0.3745%" height="15" fill="rgb(251,51,7)" fg:x="148" fg:w="1"/><text x="55.6807%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="964" width="0.3745%" height="15" fill="rgb(245,217,29)" fg:x="148" fg:w="1"/><text x="55.6807%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="980" width="0.3745%" height="15" fill="rgb(221,176,29)" fg:x="148" fg:w="1"/><text x="55.6807%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="996" width="0.3745%" height="15" fill="rgb(212,180,24)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1012" width="0.3745%" height="15" fill="rgb(254,24,2)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="1028" width="0.3745%" height="15" fill="rgb(230,100,2)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="1044" width="0.3745%" height="15" fill="rgb(219,142,25)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="1060" width="0.3745%" height="15" fill="rgb(240,73,43)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="1076" width="0.3745%" height="15" fill="rgb(214,114,15)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1092" width="0.3745%" height="15" fill="rgb(207,130,4)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1108" width="0.3745%" height="15" fill="rgb(221,25,40)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="55.4307%" y="1124" width="0.3745%" height="15" fill="rgb(241,184,7)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1140" width="0.3745%" height="15" fill="rgb(235,159,4)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="1156" width="0.3745%" height="15" fill="rgb(214,87,48)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="1172" width="0.3745%" height="15" fill="rgb(246,198,24)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="1188" width="0.3745%" height="15" fill="rgb(209,66,40)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="1204" width="0.3745%" height="15" fill="rgb(233,147,39)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1220" width="0.3745%" height="15" fill="rgb(231,145,52)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1230.50"></text></g><g><title><module> (tlz/_build_tlz.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1236" width="0.3745%" height="15" fill="rgb(206,20,26)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="1252" width="0.3745%" height="15" fill="rgb(238,220,4)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="1268" width="0.3745%" height="15" fill="rgb(252,195,42)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="1284" width="0.3745%" height="15" fill="rgb(209,10,6)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="1300" width="0.3745%" height="15" fill="rgb(229,3,52)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1316" width="0.3745%" height="15" fill="rgb(253,49,37)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1326.50"></text></g><g><title><module> (toolz/__init__.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1332" width="0.3745%" height="15" fill="rgb(240,103,49)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1342.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="55.4307%" y="1348" width="0.3745%" height="15" fill="rgb(250,182,30)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1364" width="0.3745%" height="15" fill="rgb(248,8,30)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="1380" width="0.3745%" height="15" fill="rgb(237,120,30)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="1396" width="0.3745%" height="15" fill="rgb(221,146,34)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="1412" width="0.3745%" height="15" fill="rgb(242,55,13)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="1428" width="0.3745%" height="15" fill="rgb(242,112,31)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1444" width="0.3745%" height="15" fill="rgb(249,192,27)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1454.50"></text></g><g><title><module> (toolz/curried/__init__.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1460" width="0.3745%" height="15" fill="rgb(208,204,44)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1470.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="55.4307%" y="1476" width="0.3745%" height="15" fill="rgb(208,93,54)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1486.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1492" width="0.3745%" height="15" fill="rgb(242,1,31)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1502.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.4307%" y="1508" width="0.3745%" height="15" fill="rgb(241,83,25)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1518.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.4307%" y="1524" width="0.3745%" height="15" fill="rgb(205,169,50)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1534.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.4307%" y="1540" width="0.3745%" height="15" fill="rgb(239,186,37)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1550.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.4307%" y="1556" width="0.3745%" height="15" fill="rgb(205,221,10)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.4307%" y="1572" width="0.3745%" height="15" fill="rgb(218,196,15)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1582.50"></text></g><g><title><module> (toolz/curried/operator.py:1) (1 samples, 0.37%)</title><rect x="55.4307%" y="1588" width="0.3745%" height="15" fill="rgb(218,196,35)" fg:x="148" fg:w="1"/><text x="55.6807%" y="1598.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (140 samples, 52.43%)</title><rect x="3.7453%" y="100" width="52.4345%" height="15" fill="rgb(233,63,24)" fg:x="10" fg:w="140"/><text x="3.9953%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (140 samples, 52.43%)</title><rect x="3.7453%" y="116" width="52.4345%" height="15" fill="rgb(225,8,4)" fg:x="10" fg:w="140"/><text x="3.9953%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (140 samples, 52.43%)</title><rect x="3.7453%" y="132" width="52.4345%" height="15" fill="rgb(234,105,35)" fg:x="10" fg:w="140"/><text x="3.9953%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (140 samples, 52.43%)</title><rect x="3.7453%" y="148" width="52.4345%" height="15" fill="rgb(236,21,32)" fg:x="10" fg:w="140"/><text x="3.9953%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (140 samples, 52.43%)</title><rect x="3.7453%" y="164" width="52.4345%" height="15" fill="rgb(228,109,6)" fg:x="10" fg:w="140"/><text x="3.9953%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (83 samples, 31.09%)</title><rect x="25.0936%" y="180" width="31.0861%" height="15" fill="rgb(229,215,31)" fg:x="67" fg:w="83"/><text x="25.3436%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>version (importlib/metadata.py:562) (1 samples, 0.37%)</title><rect x="55.8052%" y="196" width="0.3745%" height="15" fill="rgb(221,52,54)" fg:x="149" fg:w="1"/><text x="56.0552%" y="206.50"></text></g><g><title>version (importlib_metadata/__init__.py:480) (1 samples, 0.37%)</title><rect x="55.8052%" y="212" width="0.3745%" height="15" fill="rgb(252,129,43)" fg:x="149" fg:w="1"/><text x="56.0552%" y="222.50"></text></g><g><title>metadata (importlib_metadata/__init__.py:452) (1 samples, 0.37%)</title><rect x="55.8052%" y="228" width="0.3745%" height="15" fill="rgb(248,183,27)" fg:x="149" fg:w="1"/><text x="56.0552%" y="238.50"></text></g><g><title>message_from_string (email/__init__.py:32) (1 samples, 0.37%)</title><rect x="55.8052%" y="244" width="0.3745%" height="15" fill="rgb(250,0,22)" fg:x="149" fg:w="1"/><text x="56.0552%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.8052%" y="260" width="0.3745%" height="15" fill="rgb(213,166,10)" fg:x="149" fg:w="1"/><text x="56.0552%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.8052%" y="276" width="0.3745%" height="15" fill="rgb(207,163,36)" fg:x="149" fg:w="1"/><text x="56.0552%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="55.8052%" y="292" width="0.3745%" height="15" fill="rgb(208,122,22)" fg:x="149" fg:w="1"/><text x="56.0552%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="55.8052%" y="308" width="0.3745%" height="15" fill="rgb(207,104,49)" fg:x="149" fg:w="1"/><text x="56.0552%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="55.8052%" y="324" width="0.3745%" height="15" fill="rgb(248,211,50)" fg:x="149" fg:w="1"/><text x="56.0552%" y="334.50"></text></g><g><title><module> (email/parser.py:5) (1 samples, 0.37%)</title><rect x="55.8052%" y="340" width="0.3745%" height="15" fill="rgb(217,13,45)" fg:x="149" fg:w="1"/><text x="56.0552%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="55.8052%" y="356" width="0.3745%" height="15" fill="rgb(211,216,49)" fg:x="149" fg:w="1"/><text x="56.0552%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="55.8052%" y="372" width="0.3745%" height="15" fill="rgb(221,58,53)" fg:x="149" fg:w="1"/><text x="56.0552%" y="382.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.37%)</title><rect x="55.8052%" y="388" width="0.3745%" height="15" fill="rgb(220,112,41)" fg:x="149" fg:w="1"/><text x="56.0552%" y="398.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.37%)</title><rect x="55.8052%" y="404" width="0.3745%" height="15" fill="rgb(236,38,28)" fg:x="149" fg:w="1"/><text x="56.0552%" y="414.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.37%)</title><rect x="55.8052%" y="420" width="0.3745%" height="15" fill="rgb(227,195,22)" fg:x="149" fg:w="1"/><text x="56.0552%" y="430.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.37%)</title><rect x="55.8052%" y="436" width="0.3745%" height="15" fill="rgb(214,55,33)" fg:x="149" fg:w="1"/><text x="56.0552%" y="446.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.37%)</title><rect x="55.8052%" y="452" width="0.3745%" height="15" fill="rgb(248,80,13)" fg:x="149" fg:w="1"/><text x="56.0552%" y="462.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.37%)</title><rect x="55.8052%" y="468" width="0.3745%" height="15" fill="rgb(238,52,6)" fg:x="149" fg:w="1"/><text x="56.0552%" y="478.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="55.8052%" y="484" width="0.3745%" height="15" fill="rgb(224,198,47)" fg:x="149" fg:w="1"/><text x="56.0552%" y="494.50"></text></g><g><title>concatenate_managers (pandas/core/internals/concat.py:94) (2 samples, 0.75%)</title><rect x="56.1798%" y="244" width="0.7491%" height="15" fill="rgb(233,171,20)" fg:x="150" fg:w="2"/><text x="56.4298%" y="254.50"></text></g><g><title><listcomp> (dask/base.py:667) (4 samples, 1.50%)</title><rect x="56.1798%" y="132" width="1.4981%" height="15" fill="rgb(241,30,25)" fg:x="150" fg:w="4"/><text x="56.4298%" y="142.50"></text></g><g><title>finalize (dask/dataframe/core.py:263) (4 samples, 1.50%)</title><rect x="56.1798%" y="148" width="1.4981%" height="15" fill="rgb(207,171,38)" fg:x="150" fg:w="4"/><text x="56.4298%" y="158.50"></text></g><g><title>_concat (dask/dataframe/core.py:179) (4 samples, 1.50%)</title><rect x="56.1798%" y="164" width="1.4981%" height="15" fill="rgb(234,70,1)" fg:x="150" fg:w="4"/><text x="56.4298%" y="174.50"></text></g><g><title>concat (dask/dataframe/dispatch.py:34) (4 samples, 1.50%)</title><rect x="56.1798%" y="180" width="1.4981%" height="15" fill="rgb(232,178,18)" fg:x="150" fg:w="4"/><text x="56.4298%" y="190.50"></text></g><g><title>concat_pandas (dask/dataframe/backends.py:561) (4 samples, 1.50%)</title><rect x="56.1798%" y="196" width="1.4981%" height="15" fill="rgb(241,78,40)" fg:x="150" fg:w="4"/><text x="56.4298%" y="206.50"></text></g><g><title>concat (pandas/core/reshape/concat.py:157) (4 samples, 1.50%)</title><rect x="56.1798%" y="212" width="1.4981%" height="15" fill="rgb(222,35,25)" fg:x="150" fg:w="4"/><text x="56.4298%" y="222.50"></text></g><g><title>get_result (pandas/core/reshape/concat.py:618) (4 samples, 1.50%)</title><rect x="56.1798%" y="228" width="1.4981%" height="15" fill="rgb(207,92,16)" fg:x="150" fg:w="4"/><text x="56.4298%" y="238.50"></text></g><g><title>new_axes (pandas/core/reshape/concat.py:695) (2 samples, 0.75%)</title><rect x="56.9288%" y="244" width="0.7491%" height="15" fill="rgb(216,59,51)" fg:x="152" fg:w="2"/><text x="57.1788%" y="254.50"></text></g><g><title><listcomp> (pandas/core/reshape/concat.py:698) (2 samples, 0.75%)</title><rect x="56.9288%" y="260" width="0.7491%" height="15" fill="rgb(213,80,28)" fg:x="152" fg:w="2"/><text x="57.1788%" y="270.50"></text></g><g><title>_get_concat_axis (pandas/core/reshape/concat.py:713) (2 samples, 0.75%)</title><rect x="56.9288%" y="276" width="0.7491%" height="15" fill="rgb(220,93,7)" fg:x="152" fg:w="2"/><text x="57.1788%" y="286.50"></text></g><g><title>_concat_indexes (pandas/core/reshape/concat.py:773) (2 samples, 0.75%)</title><rect x="56.9288%" y="292" width="0.7491%" height="15" fill="rgb(225,24,44)" fg:x="152" fg:w="2"/><text x="57.1788%" y="302.50"></text></g><g><title>append (pandas/core/indexes/base.py:5421) (2 samples, 0.75%)</title><rect x="56.9288%" y="308" width="0.7491%" height="15" fill="rgb(243,74,40)" fg:x="152" fg:w="2"/><text x="57.1788%" y="318.50"></text></g><g><title>_concat (pandas/core/indexes/range.py:902) (2 samples, 0.75%)</title><rect x="56.9288%" y="324" width="0.7491%" height="15" fill="rgb(228,39,7)" fg:x="152" fg:w="2"/><text x="57.1788%" y="334.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="57.6779%" y="628" width="0.3745%" height="15" fill="rgb(227,79,8)" fg:x="154" fg:w="1"/><text x="57.9279%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="57.6779%" y="644" width="0.3745%" height="15" fill="rgb(236,58,11)" fg:x="154" fg:w="1"/><text x="57.9279%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="57.6779%" y="660" width="0.3745%" height="15" fill="rgb(249,63,35)" fg:x="154" fg:w="1"/><text x="57.9279%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="57.6779%" y="676" width="0.3745%" height="15" fill="rgb(252,114,16)" fg:x="154" fg:w="1"/><text x="57.9279%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="57.6779%" y="692" width="0.3745%" height="15" fill="rgb(254,151,24)" fg:x="154" fg:w="1"/><text x="57.9279%" y="702.50"></text></g><g><title><module> (distributed/comm/addressing.py:1) (1 samples, 0.37%)</title><rect x="57.6779%" y="708" width="0.3745%" height="15" fill="rgb(253,54,39)" fg:x="154" fg:w="1"/><text x="57.9279%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="57.6779%" y="724" width="0.3745%" height="15" fill="rgb(243,25,45)" fg:x="154" fg:w="1"/><text x="57.9279%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="57.6779%" y="740" width="0.3745%" height="15" fill="rgb(234,134,9)" fg:x="154" fg:w="1"/><text x="57.9279%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="57.6779%" y="756" width="0.3745%" height="15" fill="rgb(227,166,31)" fg:x="154" fg:w="1"/><text x="57.9279%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="57.6779%" y="772" width="0.3745%" height="15" fill="rgb(245,143,41)" fg:x="154" fg:w="1"/><text x="57.9279%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="57.6779%" y="788" width="0.3745%" height="15" fill="rgb(238,181,32)" fg:x="154" fg:w="1"/><text x="57.9279%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="57.6779%" y="804" width="0.3745%" height="15" fill="rgb(224,113,18)" fg:x="154" fg:w="1"/><text x="57.9279%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="57.6779%" y="820" width="0.3745%" height="15" fill="rgb(240,229,28)" fg:x="154" fg:w="1"/><text x="57.9279%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="57.6779%" y="836" width="0.3745%" height="15" fill="rgb(250,185,3)" fg:x="154" fg:w="1"/><text x="57.9279%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="58.0524%" y="772" width="0.3745%" height="15" fill="rgb(212,59,25)" fg:x="155" fg:w="1"/><text x="58.3024%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="58.0524%" y="788" width="0.3745%" height="15" fill="rgb(221,87,20)" fg:x="155" fg:w="1"/><text x="58.3024%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="58.0524%" y="804" width="0.3745%" height="15" fill="rgb(213,74,28)" fg:x="155" fg:w="1"/><text x="58.3024%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="58.0524%" y="820" width="0.3745%" height="15" fill="rgb(224,132,34)" fg:x="155" fg:w="1"/><text x="58.3024%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="58.0524%" y="836" width="0.3745%" height="15" fill="rgb(222,101,24)" fg:x="155" fg:w="1"/><text x="58.3024%" y="846.50"></text></g><g><title><module> (tornado/tcpserver.py:16) (1 samples, 0.37%)</title><rect x="58.0524%" y="852" width="0.3745%" height="15" fill="rgb(254,142,4)" fg:x="155" fg:w="1"/><text x="58.3024%" y="862.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="58.0524%" y="868" width="0.3745%" height="15" fill="rgb(230,229,49)" fg:x="155" fg:w="1"/><text x="58.3024%" y="878.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (1 samples, 0.37%)</title><rect x="58.0524%" y="884" width="0.3745%" height="15" fill="rgb(238,70,47)" fg:x="155" fg:w="1"/><text x="58.3024%" y="894.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.37%)</title><rect x="58.0524%" y="900" width="0.3745%" height="15" fill="rgb(231,160,17)" fg:x="155" fg:w="1"/><text x="58.3024%" y="910.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.37%)</title><rect x="58.0524%" y="916" width="0.3745%" height="15" fill="rgb(218,68,53)" fg:x="155" fg:w="1"/><text x="58.3024%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="58.0524%" y="932" width="0.3745%" height="15" fill="rgb(236,111,10)" fg:x="155" fg:w="1"/><text x="58.3024%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="58.0524%" y="948" width="0.3745%" height="15" fill="rgb(224,34,41)" fg:x="155" fg:w="1"/><text x="58.3024%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="58.0524%" y="964" width="0.3745%" height="15" fill="rgb(241,118,19)" fg:x="155" fg:w="1"/><text x="58.3024%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="58.0524%" y="980" width="0.3745%" height="15" fill="rgb(238,129,25)" fg:x="155" fg:w="1"/><text x="58.3024%" y="990.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="58.0524%" y="996" width="0.3745%" height="15" fill="rgb(238,22,31)" fg:x="155" fg:w="1"/><text x="58.3024%" y="1006.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="58.0524%" y="1012" width="0.3745%" height="15" fill="rgb(222,174,48)" fg:x="155" fg:w="1"/><text x="58.3024%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.62%)</title><rect x="57.6779%" y="532" width="2.6217%" height="15" fill="rgb(206,152,40)" fg:x="154" fg:w="7"/><text x="57.9279%" y="542.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.62%)</title><rect x="57.6779%" y="548" width="2.6217%" height="15" fill="rgb(218,99,54)" fg:x="154" fg:w="7"/><text x="57.9279%" y="558.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.62%)</title><rect x="57.6779%" y="564" width="2.6217%" height="15" fill="rgb(220,174,26)" fg:x="154" fg:w="7"/><text x="57.9279%" y="574.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.62%)</title><rect x="57.6779%" y="580" width="2.6217%" height="15" fill="rgb(245,116,9)" fg:x="154" fg:w="7"/><text x="57.9279%" y="590.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.62%)</title><rect x="57.6779%" y="596" width="2.6217%" height="15" fill="rgb(209,72,35)" fg:x="154" fg:w="7"/><text x="57.9279%" y="606.50">_c..</text></g><g><title><module> (distributed/comm/__init__.py:1) (7 samples, 2.62%)</title><rect x="57.6779%" y="612" width="2.6217%" height="15" fill="rgb(226,126,21)" fg:x="154" fg:w="7"/><text x="57.9279%" y="622.50"><m..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (6 samples, 2.25%)</title><rect x="58.0524%" y="628" width="2.2472%" height="15" fill="rgb(227,192,1)" fg:x="155" fg:w="6"/><text x="58.3024%" y="638.50">_..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.25%)</title><rect x="58.0524%" y="644" width="2.2472%" height="15" fill="rgb(237,180,29)" fg:x="155" fg:w="6"/><text x="58.3024%" y="654.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="58.0524%" y="660" width="2.2472%" height="15" fill="rgb(230,197,35)" fg:x="155" fg:w="6"/><text x="58.3024%" y="670.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="58.0524%" y="676" width="2.2472%" height="15" fill="rgb(246,193,31)" fg:x="155" fg:w="6"/><text x="58.3024%" y="686.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="58.0524%" y="692" width="2.2472%" height="15" fill="rgb(241,36,4)" fg:x="155" fg:w="6"/><text x="58.3024%" y="702.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="58.0524%" y="708" width="2.2472%" height="15" fill="rgb(241,130,17)" fg:x="155" fg:w="6"/><text x="58.3024%" y="718.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="58.0524%" y="724" width="2.2472%" height="15" fill="rgb(206,137,32)" fg:x="155" fg:w="6"/><text x="58.3024%" y="734.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="58.0524%" y="740" width="2.2472%" height="15" fill="rgb(237,228,51)" fg:x="155" fg:w="6"/><text x="58.3024%" y="750.50">_..</text></g><g><title><module> (distributed/comm/tcp.py:1) (6 samples, 2.25%)</title><rect x="58.0524%" y="756" width="2.2472%" height="15" fill="rgb(243,6,42)" fg:x="155" fg:w="6"/><text x="58.3024%" y="766.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.87%)</title><rect x="58.4270%" y="772" width="1.8727%" height="15" fill="rgb(251,74,28)" fg:x="156" fg:w="5"/><text x="58.6770%" y="782.50">_..</text></g><g><title>__getattr__ (tornado/__init__.py:64) (5 samples, 1.87%)</title><rect x="58.4270%" y="788" width="1.8727%" height="15" fill="rgb(218,20,49)" fg:x="156" fg:w="5"/><text x="58.6770%" y="798.50">_..</text></g><g><title>import_module (importlib/__init__.py:109) (5 samples, 1.87%)</title><rect x="58.4270%" y="804" width="1.8727%" height="15" fill="rgb(238,28,14)" fg:x="156" fg:w="5"/><text x="58.6770%" y="814.50">i..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (5 samples, 1.87%)</title><rect x="58.4270%" y="820" width="1.8727%" height="15" fill="rgb(229,40,46)" fg:x="156" fg:w="5"/><text x="58.6770%" y="830.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="58.4270%" y="836" width="1.8727%" height="15" fill="rgb(244,195,20)" fg:x="156" fg:w="5"/><text x="58.6770%" y="846.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="58.4270%" y="852" width="1.8727%" height="15" fill="rgb(253,56,35)" fg:x="156" fg:w="5"/><text x="58.6770%" y="862.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="58.4270%" y="868" width="1.8727%" height="15" fill="rgb(210,149,44)" fg:x="156" fg:w="5"/><text x="58.6770%" y="878.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="58.4270%" y="884" width="1.8727%" height="15" fill="rgb(240,135,12)" fg:x="156" fg:w="5"/><text x="58.6770%" y="894.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="58.4270%" y="900" width="1.8727%" height="15" fill="rgb(251,24,50)" fg:x="156" fg:w="5"/><text x="58.6770%" y="910.50">_..</text></g><g><title><module> (tornado/netutil.py:16) (5 samples, 1.87%)</title><rect x="58.4270%" y="916" width="1.8727%" height="15" fill="rgb(243,200,47)" fg:x="156" fg:w="5"/><text x="58.6770%" y="926.50"><..</text></g><g><title>create_default_context (ssl.py:724) (5 samples, 1.87%)</title><rect x="58.4270%" y="932" width="1.8727%" height="15" fill="rgb(224,166,26)" fg:x="156" fg:w="5"/><text x="58.6770%" y="942.50">c..</text></g><g><title>load_default_certs (ssl.py:570) (5 samples, 1.87%)</title><rect x="58.4270%" y="948" width="1.8727%" height="15" fill="rgb(233,0,47)" fg:x="156" fg:w="5"/><text x="58.6770%" y="958.50">l..</text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.75%)</title><rect x="60.2996%" y="788" width="0.7491%" height="15" fill="rgb(253,80,5)" fg:x="161" fg:w="2"/><text x="60.5496%" y="798.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.75%)</title><rect x="60.2996%" y="804" width="0.7491%" height="15" fill="rgb(214,133,25)" fg:x="161" fg:w="2"/><text x="60.5496%" y="814.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.75%)</title><rect x="60.2996%" y="820" width="0.7491%" height="15" fill="rgb(209,27,14)" fg:x="161" fg:w="2"/><text x="60.5496%" y="830.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 0.75%)</title><rect x="60.2996%" y="836" width="0.7491%" height="15" fill="rgb(219,102,51)" fg:x="161" fg:w="2"/><text x="60.5496%" y="846.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.37%)</title><rect x="60.6742%" y="852" width="0.3745%" height="15" fill="rgb(237,18,16)" fg:x="162" fg:w="1"/><text x="60.9242%" y="862.50"></text></g><g><title><module> (click/__init__.py:1) (1 samples, 0.37%)</title><rect x="61.0487%" y="836" width="0.3745%" height="15" fill="rgb(241,85,17)" fg:x="163" fg:w="1"/><text x="61.2987%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="61.0487%" y="852" width="0.3745%" height="15" fill="rgb(236,90,42)" fg:x="163" fg:w="1"/><text x="61.2987%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="61.0487%" y="868" width="0.3745%" height="15" fill="rgb(249,57,21)" fg:x="163" fg:w="1"/><text x="61.2987%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="61.0487%" y="884" width="0.3745%" height="15" fill="rgb(243,12,36)" fg:x="163" fg:w="1"/><text x="61.2987%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="61.0487%" y="900" width="0.3745%" height="15" fill="rgb(253,128,47)" fg:x="163" fg:w="1"/><text x="61.2987%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="61.0487%" y="916" width="0.3745%" height="15" fill="rgb(207,33,20)" fg:x="163" fg:w="1"/><text x="61.2987%" y="926.50"></text></g><g><title><module> (click/core.py:1) (1 samples, 0.37%)</title><rect x="61.0487%" y="932" width="0.3745%" height="15" fill="rgb(233,215,35)" fg:x="163" fg:w="1"/><text x="61.2987%" y="942.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="61.0487%" y="948" width="0.3745%" height="15" fill="rgb(249,188,52)" fg:x="163" fg:w="1"/><text x="61.2987%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="61.0487%" y="964" width="0.3745%" height="15" fill="rgb(225,12,32)" fg:x="163" fg:w="1"/><text x="61.2987%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="61.0487%" y="980" width="0.3745%" height="15" fill="rgb(247,98,14)" fg:x="163" fg:w="1"/><text x="61.2987%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="61.0487%" y="996" width="0.3745%" height="15" fill="rgb(247,219,48)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="61.0487%" y="1012" width="0.3745%" height="15" fill="rgb(253,60,48)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="61.0487%" y="1028" width="0.3745%" height="15" fill="rgb(245,15,52)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="61.0487%" y="1044" width="0.3745%" height="15" fill="rgb(220,133,28)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1054.50"></text></g><g><title><module> (click/types.py:1) (1 samples, 0.37%)</title><rect x="61.0487%" y="1060" width="0.3745%" height="15" fill="rgb(217,180,4)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="61.0487%" y="1076" width="0.3745%" height="15" fill="rgb(251,24,1)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="61.0487%" y="1092" width="0.3745%" height="15" fill="rgb(212,185,49)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="61.0487%" y="1108" width="0.3745%" height="15" fill="rgb(215,175,22)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="61.0487%" y="1124" width="0.3745%" height="15" fill="rgb(250,205,14)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="61.0487%" y="1140" width="0.3745%" height="15" fill="rgb(225,211,22)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1150.50"></text></g><g><title><module> (click/_compat.py:1) (1 samples, 0.37%)</title><rect x="61.0487%" y="1156" width="0.3745%" height="15" fill="rgb(251,179,42)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1166.50"></text></g><g><title>_AtomicFile (click/_compat.py:454) (1 samples, 0.37%)</title><rect x="61.0487%" y="1172" width="0.3745%" height="15" fill="rgb(208,216,51)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1182.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.37%)</title><rect x="61.0487%" y="1188" width="0.3745%" height="15" fill="rgb(235,36,11)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1198.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.37%)</title><rect x="61.0487%" y="1204" width="0.3745%" height="15" fill="rgb(213,189,28)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1214.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.37%)</title><rect x="61.0487%" y="1220" width="0.3745%" height="15" fill="rgb(227,203,42)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1230.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.37%)</title><rect x="61.0487%" y="1236" width="0.3745%" height="15" fill="rgb(244,72,36)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1246.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.37%)</title><rect x="61.0487%" y="1252" width="0.3745%" height="15" fill="rgb(213,53,17)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1262.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.37%)</title><rect x="61.0487%" y="1268" width="0.3745%" height="15" fill="rgb(207,167,3)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1278.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.37%)</title><rect x="61.0487%" y="1284" width="0.3745%" height="15" fill="rgb(216,98,30)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1294.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.37%)</title><rect x="61.0487%" y="1300" width="0.3745%" height="15" fill="rgb(236,123,15)" fg:x="163" fg:w="1"/><text x="61.2987%" y="1310.50"></text></g><g><title><module> (multiprocessing/popen_spawn_posix.py:1) (1 samples, 0.37%)</title><rect x="61.4232%" y="836" width="0.3745%" height="15" fill="rgb(248,81,50)" fg:x="164" fg:w="1"/><text x="61.6732%" y="846.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="61.4232%" y="852" width="0.3745%" height="15" fill="rgb(214,120,4)" fg:x="164" fg:w="1"/><text x="61.6732%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="61.4232%" y="868" width="0.3745%" height="15" fill="rgb(208,179,34)" fg:x="164" fg:w="1"/><text x="61.6732%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="61.4232%" y="884" width="0.3745%" height="15" fill="rgb(227,140,7)" fg:x="164" fg:w="1"/><text x="61.6732%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="61.4232%" y="900" width="0.3745%" height="15" fill="rgb(214,22,6)" fg:x="164" fg:w="1"/><text x="61.6732%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="61.4232%" y="916" width="0.3745%" height="15" fill="rgb(207,137,27)" fg:x="164" fg:w="1"/><text x="61.6732%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="61.4232%" y="932" width="0.3745%" height="15" fill="rgb(210,8,46)" fg:x="164" fg:w="1"/><text x="61.6732%" y="942.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="61.4232%" y="948" width="0.3745%" height="15" fill="rgb(240,16,54)" fg:x="164" fg:w="1"/><text x="61.6732%" y="958.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="61.4232%" y="964" width="0.3745%" height="15" fill="rgb(211,209,29)" fg:x="164" fg:w="1"/><text x="61.6732%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="60.2996%" y="756" width="1.8727%" height="15" fill="rgb(226,228,24)" fg:x="161" fg:w="5"/><text x="60.5496%" y="766.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="60.2996%" y="772" width="1.8727%" height="15" fill="rgb(222,84,9)" fg:x="161" fg:w="5"/><text x="60.5496%" y="782.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="61.0487%" y="788" width="1.1236%" height="15" fill="rgb(234,203,30)" fg:x="163" fg:w="3"/><text x="61.2987%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="61.0487%" y="804" width="1.1236%" height="15" fill="rgb(238,109,14)" fg:x="163" fg:w="3"/><text x="61.2987%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="61.0487%" y="820" width="1.1236%" height="15" fill="rgb(233,206,34)" fg:x="163" fg:w="3"/><text x="61.2987%" y="830.50"></text></g><g><title><module> (xml/etree/ElementTree.py:1) (1 samples, 0.37%)</title><rect x="61.7978%" y="836" width="0.3745%" height="15" fill="rgb(220,167,47)" fg:x="165" fg:w="1"/><text x="62.0478%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="61.7978%" y="852" width="0.3745%" height="15" fill="rgb(238,105,10)" fg:x="165" fg:w="1"/><text x="62.0478%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="61.7978%" y="868" width="0.3745%" height="15" fill="rgb(213,227,17)" fg:x="165" fg:w="1"/><text x="62.0478%" y="878.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.37%)</title><rect x="61.7978%" y="884" width="0.3745%" height="15" fill="rgb(217,132,38)" fg:x="165" fg:w="1"/><text x="62.0478%" y="894.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.37%)</title><rect x="61.7978%" y="900" width="0.3745%" height="15" fill="rgb(242,146,4)" fg:x="165" fg:w="1"/><text x="62.0478%" y="910.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.37%)</title><rect x="61.7978%" y="916" width="0.3745%" height="15" fill="rgb(212,61,9)" fg:x="165" fg:w="1"/><text x="62.0478%" y="926.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.37%)</title><rect x="61.7978%" y="932" width="0.3745%" height="15" fill="rgb(247,126,22)" fg:x="165" fg:w="1"/><text x="62.0478%" y="942.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="61.7978%" y="948" width="0.3745%" height="15" fill="rgb(220,196,2)" fg:x="165" fg:w="1"/><text x="62.0478%" y="958.50"></text></g><g><title><module> (distributed/core.py:1) (13 samples, 4.87%)</title><rect x="57.6779%" y="516" width="4.8689%" height="15" fill="rgb(208,46,4)" fg:x="154" fg:w="13"/><text x="57.9279%" y="526.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.25%)</title><rect x="60.2996%" y="532" width="2.2472%" height="15" fill="rgb(252,104,46)" fg:x="161" fg:w="6"/><text x="60.5496%" y="542.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="60.2996%" y="548" width="2.2472%" height="15" fill="rgb(237,152,48)" fg:x="161" fg:w="6"/><text x="60.5496%" y="558.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="60.2996%" y="564" width="2.2472%" height="15" fill="rgb(221,59,37)" fg:x="161" fg:w="6"/><text x="60.5496%" y="574.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="60.2996%" y="580" width="2.2472%" height="15" fill="rgb(209,202,51)" fg:x="161" fg:w="6"/><text x="60.5496%" y="590.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="60.2996%" y="596" width="2.2472%" height="15" fill="rgb(228,81,30)" fg:x="161" fg:w="6"/><text x="60.5496%" y="606.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="60.2996%" y="612" width="2.2472%" height="15" fill="rgb(227,42,39)" fg:x="161" fg:w="6"/><text x="60.5496%" y="622.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="60.2996%" y="628" width="2.2472%" height="15" fill="rgb(221,26,2)" fg:x="161" fg:w="6"/><text x="60.5496%" y="638.50">_..</text></g><g><title><module> (distributed/profile.py:1) (6 samples, 2.25%)</title><rect x="60.2996%" y="644" width="2.2472%" height="15" fill="rgb(254,61,31)" fg:x="161" fg:w="6"/><text x="60.5496%" y="654.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.25%)</title><rect x="60.2996%" y="660" width="2.2472%" height="15" fill="rgb(222,173,38)" fg:x="161" fg:w="6"/><text x="60.5496%" y="670.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.25%)</title><rect x="60.2996%" y="676" width="2.2472%" height="15" fill="rgb(218,50,12)" fg:x="161" fg:w="6"/><text x="60.5496%" y="686.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.25%)</title><rect x="60.2996%" y="692" width="2.2472%" height="15" fill="rgb(223,88,40)" fg:x="161" fg:w="6"/><text x="60.5496%" y="702.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.25%)</title><rect x="60.2996%" y="708" width="2.2472%" height="15" fill="rgb(237,54,19)" fg:x="161" fg:w="6"/><text x="60.5496%" y="718.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.25%)</title><rect x="60.2996%" y="724" width="2.2472%" height="15" fill="rgb(251,129,25)" fg:x="161" fg:w="6"/><text x="60.5496%" y="734.50">_..</text></g><g><title><module> (distributed/utils.py:1) (6 samples, 2.25%)</title><rect x="60.2996%" y="740" width="2.2472%" height="15" fill="rgb(238,97,19)" fg:x="161" fg:w="6"/><text x="60.5496%" y="750.50"><..</text></g><g><title>install (tblib/pickling_support.py:75) (1 samples, 0.37%)</title><rect x="62.1723%" y="756" width="0.3745%" height="15" fill="rgb(240,169,18)" fg:x="166" fg:w="1"/><text x="62.4223%" y="766.50"></text></g><g><title>_get_subclasses (tblib/pickling_support.py:66) (1 samples, 0.37%)</title><rect x="62.1723%" y="772" width="0.3745%" height="15" fill="rgb(230,187,49)" fg:x="166" fg:w="1"/><text x="62.4223%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 5.24%)</title><rect x="57.6779%" y="436" width="5.2434%" height="15" fill="rgb(209,44,26)" fg:x="154" fg:w="14"/><text x="57.9279%" y="446.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 5.24%)</title><rect x="57.6779%" y="452" width="5.2434%" height="15" fill="rgb(244,0,6)" fg:x="154" fg:w="14"/><text x="57.9279%" y="462.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 5.24%)</title><rect x="57.6779%" y="468" width="5.2434%" height="15" fill="rgb(248,18,21)" fg:x="154" fg:w="14"/><text x="57.9279%" y="478.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 5.24%)</title><rect x="57.6779%" y="484" width="5.2434%" height="15" fill="rgb(245,180,19)" fg:x="154" fg:w="14"/><text x="57.9279%" y="494.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 5.24%)</title><rect x="57.6779%" y="500" width="5.2434%" height="15" fill="rgb(252,118,36)" fg:x="154" fg:w="14"/><text x="57.9279%" y="510.50">_call_..</text></g><g><title><module> (distributed/worker.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="516" width="0.3745%" height="15" fill="rgb(210,224,19)" fg:x="167" fg:w="1"/><text x="62.7968%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="532" width="0.3745%" height="15" fill="rgb(218,30,24)" fg:x="167" fg:w="1"/><text x="62.7968%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="548" width="0.3745%" height="15" fill="rgb(219,75,50)" fg:x="167" fg:w="1"/><text x="62.7968%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="564" width="0.3745%" height="15" fill="rgb(234,72,50)" fg:x="167" fg:w="1"/><text x="62.7968%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="580" width="0.3745%" height="15" fill="rgb(219,100,48)" fg:x="167" fg:w="1"/><text x="62.7968%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="62.5468%" y="596" width="0.3745%" height="15" fill="rgb(253,5,41)" fg:x="167" fg:w="1"/><text x="62.7968%" y="606.50"></text></g><g><title><module> (distributed/worker_memory.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="612" width="0.3745%" height="15" fill="rgb(247,181,11)" fg:x="167" fg:w="1"/><text x="62.7968%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="628" width="0.3745%" height="15" fill="rgb(222,223,25)" fg:x="167" fg:w="1"/><text x="62.7968%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="644" width="0.3745%" height="15" fill="rgb(214,198,28)" fg:x="167" fg:w="1"/><text x="62.7968%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="660" width="0.3745%" height="15" fill="rgb(230,46,43)" fg:x="167" fg:w="1"/><text x="62.7968%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="676" width="0.3745%" height="15" fill="rgb(233,65,53)" fg:x="167" fg:w="1"/><text x="62.7968%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="62.5468%" y="692" width="0.3745%" height="15" fill="rgb(221,121,27)" fg:x="167" fg:w="1"/><text x="62.7968%" y="702.50"></text></g><g><title><module> (distributed/spill.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="708" width="0.3745%" height="15" fill="rgb(247,70,47)" fg:x="167" fg:w="1"/><text x="62.7968%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="724" width="0.3745%" height="15" fill="rgb(228,85,35)" fg:x="167" fg:w="1"/><text x="62.7968%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="740" width="0.3745%" height="15" fill="rgb(209,50,18)" fg:x="167" fg:w="1"/><text x="62.7968%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="756" width="0.3745%" height="15" fill="rgb(250,19,35)" fg:x="167" fg:w="1"/><text x="62.7968%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="772" width="0.3745%" height="15" fill="rgb(253,107,29)" fg:x="167" fg:w="1"/><text x="62.7968%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="62.5468%" y="788" width="0.3745%" height="15" fill="rgb(252,179,29)" fg:x="167" fg:w="1"/><text x="62.7968%" y="798.50"></text></g><g><title><module> (zict/__init__.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="804" width="0.3745%" height="15" fill="rgb(238,194,6)" fg:x="167" fg:w="1"/><text x="62.7968%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="820" width="0.3745%" height="15" fill="rgb(238,164,29)" fg:x="167" fg:w="1"/><text x="62.7968%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="836" width="0.3745%" height="15" fill="rgb(224,25,9)" fg:x="167" fg:w="1"/><text x="62.7968%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="852" width="0.3745%" height="15" fill="rgb(244,153,23)" fg:x="167" fg:w="1"/><text x="62.7968%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="868" width="0.3745%" height="15" fill="rgb(212,203,14)" fg:x="167" fg:w="1"/><text x="62.7968%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="62.5468%" y="884" width="0.3745%" height="15" fill="rgb(220,164,20)" fg:x="167" fg:w="1"/><text x="62.7968%" y="894.50"></text></g><g><title><module> (zict/async_buffer.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="900" width="0.3745%" height="15" fill="rgb(222,203,48)" fg:x="167" fg:w="1"/><text x="62.7968%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="916" width="0.3745%" height="15" fill="rgb(215,159,22)" fg:x="167" fg:w="1"/><text x="62.7968%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="932" width="0.3745%" height="15" fill="rgb(216,183,47)" fg:x="167" fg:w="1"/><text x="62.7968%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="948" width="0.3745%" height="15" fill="rgb(229,195,25)" fg:x="167" fg:w="1"/><text x="62.7968%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="964" width="0.3745%" height="15" fill="rgb(224,132,51)" fg:x="167" fg:w="1"/><text x="62.7968%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="62.5468%" y="980" width="0.3745%" height="15" fill="rgb(240,63,7)" fg:x="167" fg:w="1"/><text x="62.7968%" y="990.50"></text></g><g><title><module> (zict/buffer.py:1) (1 samples, 0.37%)</title><rect x="62.5468%" y="996" width="0.3745%" height="15" fill="rgb(249,182,41)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="62.5468%" y="1012" width="0.3745%" height="15" fill="rgb(243,47,26)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="62.5468%" y="1028" width="0.3745%" height="15" fill="rgb(233,48,2)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="62.5468%" y="1044" width="0.3745%" height="15" fill="rgb(244,165,34)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="62.5468%" y="1060" width="0.3745%" height="15" fill="rgb(207,89,7)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1070.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="62.5468%" y="1076" width="0.3745%" height="15" fill="rgb(244,117,36)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1086.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="62.5468%" y="1092" width="0.3745%" height="15" fill="rgb(226,144,34)" fg:x="167" fg:w="1"/><text x="62.7968%" y="1102.50"></text></g><g><title><module> (distributed/client.py:1) (16 samples, 5.99%)</title><rect x="57.6779%" y="420" width="5.9925%" height="15" fill="rgb(213,23,19)" fg:x="154" fg:w="16"/><text x="57.9279%" y="430.50"><module>..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="62.9213%" y="436" width="0.7491%" height="15" fill="rgb(217,75,12)" fg:x="168" fg:w="2"/><text x="63.1713%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="62.9213%" y="452" width="0.7491%" height="15" fill="rgb(224,159,17)" fg:x="168" fg:w="2"/><text x="63.1713%" y="462.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="62.9213%" y="468" width="0.7491%" height="15" fill="rgb(217,118,1)" fg:x="168" fg:w="2"/><text x="63.1713%" y="478.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="62.9213%" y="484" width="0.7491%" height="15" fill="rgb(232,180,48)" fg:x="168" fg:w="2"/><text x="63.1713%" y="494.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="62.9213%" y="500" width="0.7491%" height="15" fill="rgb(230,27,33)" fg:x="168" fg:w="2"/><text x="63.1713%" y="510.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="62.9213%" y="516" width="0.7491%" height="15" fill="rgb(205,31,21)" fg:x="168" fg:w="2"/><text x="63.1713%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="62.9213%" y="532" width="0.7491%" height="15" fill="rgb(253,59,4)" fg:x="168" fg:w="2"/><text x="63.1713%" y="542.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 0.75%)</title><rect x="62.9213%" y="548" width="0.7491%" height="15" fill="rgb(224,201,9)" fg:x="168" fg:w="2"/><text x="63.1713%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="62.9213%" y="564" width="0.7491%" height="15" fill="rgb(229,206,30)" fg:x="168" fg:w="2"/><text x="63.1713%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="62.9213%" y="580" width="0.7491%" height="15" fill="rgb(212,67,47)" fg:x="168" fg:w="2"/><text x="63.1713%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="62.9213%" y="596" width="0.7491%" height="15" fill="rgb(211,96,50)" fg:x="168" fg:w="2"/><text x="63.1713%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="62.9213%" y="612" width="0.7491%" height="15" fill="rgb(252,114,18)" fg:x="168" fg:w="2"/><text x="63.1713%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="62.9213%" y="628" width="0.7491%" height="15" fill="rgb(223,58,37)" fg:x="168" fg:w="2"/><text x="63.1713%" y="638.50"></text></g><g><title><module> (packaging/requirements.py:5) (2 samples, 0.75%)</title><rect x="62.9213%" y="644" width="0.7491%" height="15" fill="rgb(237,70,4)" fg:x="168" fg:w="2"/><text x="63.1713%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="62.9213%" y="660" width="0.7491%" height="15" fill="rgb(244,85,46)" fg:x="168" fg:w="2"/><text x="63.1713%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="62.9213%" y="676" width="0.7491%" height="15" fill="rgb(223,39,52)" fg:x="168" fg:w="2"/><text x="63.1713%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="62.9213%" y="692" width="0.7491%" height="15" fill="rgb(218,200,14)" fg:x="168" fg:w="2"/><text x="63.1713%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="62.9213%" y="708" width="0.7491%" height="15" fill="rgb(208,171,16)" fg:x="168" fg:w="2"/><text x="63.1713%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="62.9213%" y="724" width="0.7491%" height="15" fill="rgb(234,200,18)" fg:x="168" fg:w="2"/><text x="63.1713%" y="734.50"></text></g><g><title><module> (packaging/_parser.py:1) (2 samples, 0.75%)</title><rect x="62.9213%" y="740" width="0.7491%" height="15" fill="rgb(228,45,11)" fg:x="168" fg:w="2"/><text x="63.1713%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="63.2959%" y="756" width="0.3745%" height="15" fill="rgb(237,182,11)" fg:x="169" fg:w="1"/><text x="63.5459%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="63.2959%" y="772" width="0.3745%" height="15" fill="rgb(241,175,49)" fg:x="169" fg:w="1"/><text x="63.5459%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="63.2959%" y="788" width="0.3745%" height="15" fill="rgb(247,38,35)" fg:x="169" fg:w="1"/><text x="63.5459%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="63.2959%" y="804" width="0.3745%" height="15" fill="rgb(228,39,49)" fg:x="169" fg:w="1"/><text x="63.5459%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="63.2959%" y="820" width="0.3745%" height="15" fill="rgb(226,101,26)" fg:x="169" fg:w="1"/><text x="63.5459%" y="830.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (1 samples, 0.37%)</title><rect x="63.2959%" y="836" width="0.3745%" height="15" fill="rgb(206,141,19)" fg:x="169" fg:w="1"/><text x="63.5459%" y="846.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.37%)</title><rect x="63.2959%" y="852" width="0.3745%" height="15" fill="rgb(211,200,13)" fg:x="169" fg:w="1"/><text x="63.5459%" y="862.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="63.2959%" y="868" width="0.3745%" height="15" fill="rgb(241,121,6)" fg:x="169" fg:w="1"/><text x="63.5459%" y="878.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.37%)</title><rect x="63.2959%" y="884" width="0.3745%" height="15" fill="rgb(234,221,29)" fg:x="169" fg:w="1"/><text x="63.5459%" y="894.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.37%)</title><rect x="63.2959%" y="900" width="0.3745%" height="15" fill="rgb(229,136,5)" fg:x="169" fg:w="1"/><text x="63.5459%" y="910.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.37%)</title><rect x="63.2959%" y="916" width="0.3745%" height="15" fill="rgb(238,36,11)" fg:x="169" fg:w="1"/><text x="63.5459%" y="926.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.37%)</title><rect x="63.2959%" y="932" width="0.3745%" height="15" fill="rgb(251,55,41)" fg:x="169" fg:w="1"/><text x="63.5459%" y="942.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.37%)</title><rect x="63.2959%" y="948" width="0.3745%" height="15" fill="rgb(242,34,40)" fg:x="169" fg:w="1"/><text x="63.5459%" y="958.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.37%)</title><rect x="63.2959%" y="964" width="0.3745%" height="15" fill="rgb(215,42,17)" fg:x="169" fg:w="1"/><text x="63.5459%" y="974.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.37%)</title><rect x="63.2959%" y="980" width="0.3745%" height="15" fill="rgb(207,44,46)" fg:x="169" fg:w="1"/><text x="63.5459%" y="990.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.37%)</title><rect x="63.2959%" y="996" width="0.3745%" height="15" fill="rgb(211,206,28)" fg:x="169" fg:w="1"/><text x="63.5459%" y="1006.50"></text></g><g><title><module> (curses/__init__.py:1) (1 samples, 0.37%)</title><rect x="63.6704%" y="708" width="0.3745%" height="15" fill="rgb(237,167,16)" fg:x="170" fg:w="1"/><text x="63.9204%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="63.6704%" y="724" width="0.3745%" height="15" fill="rgb(233,66,6)" fg:x="170" fg:w="1"/><text x="63.9204%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="63.6704%" y="740" width="0.3745%" height="15" fill="rgb(246,123,29)" fg:x="170" fg:w="1"/><text x="63.9204%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="63.6704%" y="756" width="0.3745%" height="15" fill="rgb(209,62,40)" fg:x="170" fg:w="1"/><text x="63.9204%" y="766.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="63.6704%" y="772" width="0.3745%" height="15" fill="rgb(218,4,25)" fg:x="170" fg:w="1"/><text x="63.9204%" y="782.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="63.6704%" y="788" width="0.3745%" height="15" fill="rgb(253,91,49)" fg:x="170" fg:w="1"/><text x="63.9204%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="63.6704%" y="804" width="0.3745%" height="15" fill="rgb(228,155,29)" fg:x="170" fg:w="1"/><text x="63.9204%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="57.6779%" y="244" width="6.7416%" height="15" fill="rgb(243,57,37)" fg:x="154" fg:w="18"/><text x="57.9279%" y="254.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="57.6779%" y="260" width="6.7416%" height="15" fill="rgb(244,167,17)" fg:x="154" fg:w="18"/><text x="57.9279%" y="270.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="57.6779%" y="276" width="6.7416%" height="15" fill="rgb(207,181,38)" fg:x="154" fg:w="18"/><text x="57.9279%" y="286.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="57.6779%" y="292" width="6.7416%" height="15" fill="rgb(211,8,23)" fg:x="154" fg:w="18"/><text x="57.9279%" y="302.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="57.6779%" y="308" width="6.7416%" height="15" fill="rgb(235,11,44)" fg:x="154" fg:w="18"/><text x="57.9279%" y="318.50">_call_wit..</text></g><g><title><module> (distributed/actor.py:1) (18 samples, 6.74%)</title><rect x="57.6779%" y="324" width="6.7416%" height="15" fill="rgb(248,18,52)" fg:x="154" fg:w="18"/><text x="57.9279%" y="334.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.74%)</title><rect x="57.6779%" y="340" width="6.7416%" height="15" fill="rgb(208,4,7)" fg:x="154" fg:w="18"/><text x="57.9279%" y="350.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.74%)</title><rect x="57.6779%" y="356" width="6.7416%" height="15" fill="rgb(240,17,39)" fg:x="154" fg:w="18"/><text x="57.9279%" y="366.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="57.6779%" y="372" width="6.7416%" height="15" fill="rgb(207,170,3)" fg:x="154" fg:w="18"/><text x="57.9279%" y="382.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="57.6779%" y="388" width="6.7416%" height="15" fill="rgb(236,100,52)" fg:x="154" fg:w="18"/><text x="57.9279%" y="398.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="57.6779%" y="404" width="6.7416%" height="15" fill="rgb(246,78,51)" fg:x="154" fg:w="18"/><text x="57.9279%" y="414.50">_call_wit..</text></g><g><title><module> (tornado/ioloop.py:16) (2 samples, 0.75%)</title><rect x="63.6704%" y="420" width="0.7491%" height="15" fill="rgb(211,17,15)" fg:x="170" fg:w="2"/><text x="63.9204%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="63.6704%" y="436" width="0.7491%" height="15" fill="rgb(209,59,46)" fg:x="170" fg:w="2"/><text x="63.9204%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="63.6704%" y="452" width="0.7491%" height="15" fill="rgb(210,92,25)" fg:x="170" fg:w="2"/><text x="63.9204%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="63.6704%" y="468" width="0.7491%" height="15" fill="rgb(238,174,52)" fg:x="170" fg:w="2"/><text x="63.9204%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="63.6704%" y="484" width="0.7491%" height="15" fill="rgb(230,73,7)" fg:x="170" fg:w="2"/><text x="63.9204%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="63.6704%" y="500" width="0.7491%" height="15" fill="rgb(243,124,40)" fg:x="170" fg:w="2"/><text x="63.9204%" y="510.50"></text></g><g><title><module> (tornado/concurrent.py:15) (2 samples, 0.75%)</title><rect x="63.6704%" y="516" width="0.7491%" height="15" fill="rgb(244,170,11)" fg:x="170" fg:w="2"/><text x="63.9204%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="63.6704%" y="532" width="0.7491%" height="15" fill="rgb(207,114,54)" fg:x="170" fg:w="2"/><text x="63.9204%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="63.6704%" y="548" width="0.7491%" height="15" fill="rgb(205,42,20)" fg:x="170" fg:w="2"/><text x="63.9204%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="63.6704%" y="564" width="0.7491%" height="15" fill="rgb(230,30,28)" fg:x="170" fg:w="2"/><text x="63.9204%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="63.6704%" y="580" width="0.7491%" height="15" fill="rgb(205,73,54)" fg:x="170" fg:w="2"/><text x="63.9204%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="63.6704%" y="596" width="0.7491%" height="15" fill="rgb(254,227,23)" fg:x="170" fg:w="2"/><text x="63.9204%" y="606.50"></text></g><g><title><module> (tornado/log.py:15) (2 samples, 0.75%)</title><rect x="63.6704%" y="612" width="0.7491%" height="15" fill="rgb(228,202,34)" fg:x="170" fg:w="2"/><text x="63.9204%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="63.6704%" y="628" width="0.7491%" height="15" fill="rgb(222,225,37)" fg:x="170" fg:w="2"/><text x="63.9204%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="63.6704%" y="644" width="0.7491%" height="15" fill="rgb(221,14,54)" fg:x="170" fg:w="2"/><text x="63.9204%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="63.6704%" y="660" width="0.7491%" height="15" fill="rgb(254,102,2)" fg:x="170" fg:w="2"/><text x="63.9204%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="63.6704%" y="676" width="0.7491%" height="15" fill="rgb(232,104,17)" fg:x="170" fg:w="2"/><text x="63.9204%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="63.6704%" y="692" width="0.7491%" height="15" fill="rgb(250,220,14)" fg:x="170" fg:w="2"/><text x="63.9204%" y="702.50"></text></g><g><title><module> (tornado/escape.py:16) (1 samples, 0.37%)</title><rect x="64.0449%" y="708" width="0.3745%" height="15" fill="rgb(241,158,9)" fg:x="171" fg:w="1"/><text x="64.2949%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="64.0449%" y="724" width="0.3745%" height="15" fill="rgb(246,9,43)" fg:x="171" fg:w="1"/><text x="64.2949%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="64.0449%" y="740" width="0.3745%" height="15" fill="rgb(206,73,33)" fg:x="171" fg:w="1"/><text x="64.2949%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="64.0449%" y="756" width="0.3745%" height="15" fill="rgb(222,79,8)" fg:x="171" fg:w="1"/><text x="64.2949%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="64.0449%" y="772" width="0.3745%" height="15" fill="rgb(234,8,54)" fg:x="171" fg:w="1"/><text x="64.2949%" y="782.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="64.0449%" y="788" width="0.3745%" height="15" fill="rgb(209,134,38)" fg:x="171" fg:w="1"/><text x="64.2949%" y="798.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="64.0449%" y="804" width="0.3745%" height="15" fill="rgb(230,127,29)" fg:x="171" fg:w="1"/><text x="64.2949%" y="814.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.75%)</title><rect x="64.4195%" y="548" width="0.7491%" height="15" fill="rgb(242,44,41)" fg:x="172" fg:w="2"/><text x="64.6695%" y="558.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (2 samples, 0.75%)</title><rect x="64.4195%" y="564" width="0.7491%" height="15" fill="rgb(222,56,43)" fg:x="172" fg:w="2"/><text x="64.6695%" y="574.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.75%)</title><rect x="64.4195%" y="580" width="0.7491%" height="15" fill="rgb(238,39,47)" fg:x="172" fg:w="2"/><text x="64.6695%" y="590.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.75%)</title><rect x="64.4195%" y="596" width="0.7491%" height="15" fill="rgb(226,79,43)" fg:x="172" fg:w="2"/><text x="64.6695%" y="606.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 0.75%)</title><rect x="64.4195%" y="612" width="0.7491%" height="15" fill="rgb(242,105,53)" fg:x="172" fg:w="2"/><text x="64.6695%" y="622.50"></text></g><g><title>forward (yaml/reader.py:99) (2 samples, 0.75%)</title><rect x="64.4195%" y="628" width="0.7491%" height="15" fill="rgb(251,132,46)" fg:x="172" fg:w="2"/><text x="64.6695%" y="638.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.37%)</title><rect x="65.1685%" y="564" width="0.3745%" height="15" fill="rgb(231,77,14)" fg:x="174" fg:w="1"/><text x="65.4185%" y="574.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.37%)</title><rect x="65.1685%" y="580" width="0.3745%" height="15" fill="rgb(240,135,9)" fg:x="174" fg:w="1"/><text x="65.4185%" y="590.50"></text></g><g><title>parse_block_node_or_indentless_sequence (yaml/parser.py:270) (1 samples, 0.37%)</title><rect x="65.1685%" y="596" width="0.3745%" height="15" fill="rgb(248,109,14)" fg:x="174" fg:w="1"/><text x="65.4185%" y="606.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.37%)</title><rect x="65.1685%" y="612" width="0.3745%" height="15" fill="rgb(227,146,52)" fg:x="174" fg:w="1"/><text x="65.4185%" y="622.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.37%)</title><rect x="65.1685%" y="628" width="0.3745%" height="15" fill="rgb(232,54,3)" fg:x="174" fg:w="1"/><text x="65.4185%" y="638.50"></text></g><g><title>need_more_tokens (yaml/scanner.py:145) (1 samples, 0.37%)</title><rect x="65.1685%" y="644" width="0.3745%" height="15" fill="rgb(229,201,43)" fg:x="174" fg:w="1"/><text x="65.4185%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="64.4195%" y="340" width="1.4981%" height="15" fill="rgb(252,161,33)" fg:x="172" fg:w="4"/><text x="64.6695%" y="350.50"></text></g><g><title><module> (distributed/config.py:1) (4 samples, 1.50%)</title><rect x="64.4195%" y="356" width="1.4981%" height="15" fill="rgb(226,146,40)" fg:x="172" fg:w="4"/><text x="64.6695%" y="366.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (4 samples, 1.50%)</title><rect x="64.4195%" y="372" width="1.4981%" height="15" fill="rgb(219,47,25)" fg:x="172" fg:w="4"/><text x="64.6695%" y="382.50"></text></g><g><title>load (yaml/__init__.py:74) (4 samples, 1.50%)</title><rect x="64.4195%" y="388" width="1.4981%" height="15" fill="rgb(250,135,13)" fg:x="172" fg:w="4"/><text x="64.6695%" y="398.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (4 samples, 1.50%)</title><rect x="64.4195%" y="404" width="1.4981%" height="15" fill="rgb(219,229,18)" fg:x="172" fg:w="4"/><text x="64.6695%" y="414.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (4 samples, 1.50%)</title><rect x="64.4195%" y="420" width="1.4981%" height="15" fill="rgb(217,152,27)" fg:x="172" fg:w="4"/><text x="64.6695%" y="430.50"></text></g><g><title>compose_document (yaml/composer.py:50) (4 samples, 1.50%)</title><rect x="64.4195%" y="436" width="1.4981%" height="15" fill="rgb(225,71,47)" fg:x="172" fg:w="4"/><text x="64.6695%" y="446.50"></text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.50%)</title><rect x="64.4195%" y="452" width="1.4981%" height="15" fill="rgb(220,139,14)" fg:x="172" fg:w="4"/><text x="64.6695%" y="462.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.50%)</title><rect x="64.4195%" y="468" width="1.4981%" height="15" fill="rgb(247,54,32)" fg:x="172" fg:w="4"/><text x="64.6695%" y="478.50"></text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.50%)</title><rect x="64.4195%" y="484" width="1.4981%" height="15" fill="rgb(252,131,39)" fg:x="172" fg:w="4"/><text x="64.6695%" y="494.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.50%)</title><rect x="64.4195%" y="500" width="1.4981%" height="15" fill="rgb(210,108,39)" fg:x="172" fg:w="4"/><text x="64.6695%" y="510.50"></text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.50%)</title><rect x="64.4195%" y="516" width="1.4981%" height="15" fill="rgb(205,23,29)" fg:x="172" fg:w="4"/><text x="64.6695%" y="526.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.50%)</title><rect x="64.4195%" y="532" width="1.4981%" height="15" fill="rgb(246,139,46)" fg:x="172" fg:w="4"/><text x="64.6695%" y="542.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.75%)</title><rect x="65.1685%" y="548" width="0.7491%" height="15" fill="rgb(250,81,26)" fg:x="174" fg:w="2"/><text x="65.4185%" y="558.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.37%)</title><rect x="65.5431%" y="564" width="0.3745%" height="15" fill="rgb(214,104,7)" fg:x="175" fg:w="1"/><text x="65.7931%" y="574.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.37%)</title><rect x="65.5431%" y="580" width="0.3745%" height="15" fill="rgb(233,189,8)" fg:x="175" fg:w="1"/><text x="65.7931%" y="590.50"></text></g><g><title>compose_sequence_node (yaml/composer.py:99) (1 samples, 0.37%)</title><rect x="65.5431%" y="596" width="0.3745%" height="15" fill="rgb(228,141,17)" fg:x="175" fg:w="1"/><text x="65.7931%" y="606.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.37%)</title><rect x="65.5431%" y="612" width="0.3745%" height="15" fill="rgb(247,157,1)" fg:x="175" fg:w="1"/><text x="65.7931%" y="622.50"></text></g><g><title>parse_block_sequence_entry (yaml/parser.py:381) (1 samples, 0.37%)</title><rect x="65.5431%" y="628" width="0.3745%" height="15" fill="rgb(249,225,5)" fg:x="175" fg:w="1"/><text x="65.7931%" y="638.50"></text></g><g><title>parse_block_node (yaml/parser.py:264) (1 samples, 0.37%)</title><rect x="65.5431%" y="644" width="0.3745%" height="15" fill="rgb(242,55,13)" fg:x="175" fg:w="1"/><text x="65.7931%" y="654.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.37%)</title><rect x="65.5431%" y="660" width="0.3745%" height="15" fill="rgb(230,49,50)" fg:x="175" fg:w="1"/><text x="65.7931%" y="670.50"></text></g><g><title>compute (dask/base.py:355) (27 samples, 10.11%)</title><rect x="56.1798%" y="100" width="10.1124%" height="15" fill="rgb(241,111,38)" fg:x="150" fg:w="27"/><text x="56.4298%" y="110.50">compute (dask/b..</text></g><g><title>compute (dask/base.py:603) (27 samples, 10.11%)</title><rect x="56.1798%" y="116" width="10.1124%" height="15" fill="rgb(252,155,4)" fg:x="150" fg:w="27"/><text x="56.4298%" y="126.50">compute (dask/b..</text></g><g><title>get_scheduler (dask/base.py:1449) (23 samples, 8.61%)</title><rect x="57.6779%" y="132" width="8.6142%" height="15" fill="rgb(212,69,32)" fg:x="154" fg:w="23"/><text x="57.9279%" y="142.50">get_schedule..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (23 samples, 8.61%)</title><rect x="57.6779%" y="148" width="8.6142%" height="15" fill="rgb(243,107,47)" fg:x="154" fg:w="23"/><text x="57.9279%" y="158.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (23 samples, 8.61%)</title><rect x="57.6779%" y="164" width="8.6142%" height="15" fill="rgb(247,130,12)" fg:x="154" fg:w="23"/><text x="57.9279%" y="174.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (23 samples, 8.61%)</title><rect x="57.6779%" y="180" width="8.6142%" height="15" fill="rgb(233,74,16)" fg:x="154" fg:w="23"/><text x="57.9279%" y="190.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (23 samples, 8.61%)</title><rect x="57.6779%" y="196" width="8.6142%" height="15" fill="rgb(208,58,18)" fg:x="154" fg:w="23"/><text x="57.9279%" y="206.50">exec_module ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (23 samples, 8.61%)</title><rect x="57.6779%" y="212" width="8.6142%" height="15" fill="rgb(242,225,1)" fg:x="154" fg:w="23"/><text x="57.9279%" y="222.50">_call_with_f..</text></g><g><title><module> (distributed/__init__.py:1) (23 samples, 8.61%)</title><rect x="57.6779%" y="228" width="8.6142%" height="15" fill="rgb(249,39,40)" fg:x="154" fg:w="23"/><text x="57.9279%" y="238.50"><module> (di..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.87%)</title><rect x="64.4195%" y="244" width="1.8727%" height="15" fill="rgb(207,72,44)" fg:x="172" fg:w="5"/><text x="64.6695%" y="254.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="64.4195%" y="260" width="1.8727%" height="15" fill="rgb(215,193,12)" fg:x="172" fg:w="5"/><text x="64.6695%" y="270.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="64.4195%" y="276" width="1.8727%" height="15" fill="rgb(248,41,39)" fg:x="172" fg:w="5"/><text x="64.6695%" y="286.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="64.4195%" y="292" width="1.8727%" height="15" fill="rgb(253,85,4)" fg:x="172" fg:w="5"/><text x="64.6695%" y="302.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="64.4195%" y="308" width="1.8727%" height="15" fill="rgb(243,70,31)" fg:x="172" fg:w="5"/><text x="64.6695%" y="318.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="64.4195%" y="324" width="1.8727%" height="15" fill="rgb(253,195,26)" fg:x="172" fg:w="5"/><text x="64.6695%" y="334.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="65.9176%" y="340" width="0.3745%" height="15" fill="rgb(243,42,11)" fg:x="176" fg:w="1"/><text x="66.1676%" y="350.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.37%)</title><rect x="66.2921%" y="772" width="0.3745%" height="15" fill="rgb(239,66,17)" fg:x="177" fg:w="1"/><text x="66.5421%" y="782.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="66.2921%" y="788" width="0.3745%" height="15" fill="rgb(217,132,21)" fg:x="177" fg:w="1"/><text x="66.5421%" y="798.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="66.2921%" y="804" width="0.3745%" height="15" fill="rgb(252,202,21)" fg:x="177" fg:w="1"/><text x="66.5421%" y="814.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="66.2921%" y="820" width="0.3745%" height="15" fill="rgb(233,98,36)" fg:x="177" fg:w="1"/><text x="66.5421%" y="830.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.37%)</title><rect x="66.2921%" y="836" width="0.3745%" height="15" fill="rgb(216,153,54)" fg:x="177" fg:w="1"/><text x="66.5421%" y="846.50"></text></g><g><title><module> (requests/exceptions.py:1) (2 samples, 0.75%)</title><rect x="66.2921%" y="484" width="0.7491%" height="15" fill="rgb(250,99,7)" fg:x="177" fg:w="2"/><text x="66.5421%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="66.2921%" y="500" width="0.7491%" height="15" fill="rgb(207,56,50)" fg:x="177" fg:w="2"/><text x="66.5421%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="66.2921%" y="516" width="0.7491%" height="15" fill="rgb(244,61,34)" fg:x="177" fg:w="2"/><text x="66.5421%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="66.2921%" y="532" width="0.7491%" height="15" fill="rgb(241,50,38)" fg:x="177" fg:w="2"/><text x="66.5421%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="66.2921%" y="548" width="0.7491%" height="15" fill="rgb(212,166,30)" fg:x="177" fg:w="2"/><text x="66.5421%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="66.2921%" y="564" width="0.7491%" height="15" fill="rgb(249,127,32)" fg:x="177" fg:w="2"/><text x="66.5421%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (2 samples, 0.75%)</title><rect x="66.2921%" y="580" width="0.7491%" height="15" fill="rgb(209,103,0)" fg:x="177" fg:w="2"/><text x="66.5421%" y="590.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="66.2921%" y="596" width="0.7491%" height="15" fill="rgb(238,209,51)" fg:x="177" fg:w="2"/><text x="66.5421%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="66.2921%" y="612" width="0.7491%" height="15" fill="rgb(237,56,23)" fg:x="177" fg:w="2"/><text x="66.5421%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="66.2921%" y="628" width="0.7491%" height="15" fill="rgb(215,153,46)" fg:x="177" fg:w="2"/><text x="66.5421%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="66.2921%" y="644" width="0.7491%" height="15" fill="rgb(224,49,31)" fg:x="177" fg:w="2"/><text x="66.5421%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="66.2921%" y="660" width="0.7491%" height="15" fill="rgb(250,18,42)" fg:x="177" fg:w="2"/><text x="66.5421%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="66.2921%" y="676" width="0.7491%" height="15" fill="rgb(215,176,39)" fg:x="177" fg:w="2"/><text x="66.5421%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="66.2921%" y="692" width="0.7491%" height="15" fill="rgb(223,77,29)" fg:x="177" fg:w="2"/><text x="66.5421%" y="702.50"></text></g><g><title><module> (http/cookiejar.py:1) (2 samples, 0.75%)</title><rect x="66.2921%" y="708" width="0.7491%" height="15" fill="rgb(234,94,52)" fg:x="177" fg:w="2"/><text x="66.5421%" y="718.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.75%)</title><rect x="66.2921%" y="724" width="0.7491%" height="15" fill="rgb(220,154,50)" fg:x="177" fg:w="2"/><text x="66.5421%" y="734.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.75%)</title><rect x="66.2921%" y="740" width="0.7491%" height="15" fill="rgb(212,11,10)" fg:x="177" fg:w="2"/><text x="66.5421%" y="750.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.75%)</title><rect x="66.2921%" y="756" width="0.7491%" height="15" fill="rgb(205,166,19)" fg:x="177" fg:w="2"/><text x="66.5421%" y="766.50"></text></g><g><title>isstring (sre_compile.py:619) (1 samples, 0.37%)</title><rect x="66.6667%" y="772" width="0.3745%" height="15" fill="rgb(244,198,16)" fg:x="178" fg:w="1"/><text x="66.9167%" y="782.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (1 samples, 0.37%)</title><rect x="67.0412%" y="580" width="0.3745%" height="15" fill="rgb(219,69,12)" fg:x="179" fg:w="1"/><text x="67.2912%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.0412%" y="596" width="0.3745%" height="15" fill="rgb(245,30,7)" fg:x="179" fg:w="1"/><text x="67.2912%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.0412%" y="612" width="0.3745%" height="15" fill="rgb(218,221,48)" fg:x="179" fg:w="1"/><text x="67.2912%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.0412%" y="628" width="0.3745%" height="15" fill="rgb(216,66,15)" fg:x="179" fg:w="1"/><text x="67.2912%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.0412%" y="644" width="0.3745%" height="15" fill="rgb(226,122,50)" fg:x="179" fg:w="1"/><text x="67.2912%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.0412%" y="660" width="0.3745%" height="15" fill="rgb(239,156,16)" fg:x="179" fg:w="1"/><text x="67.2912%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.0412%" y="676" width="0.3745%" height="15" fill="rgb(224,27,38)" fg:x="179" fg:w="1"/><text x="67.2912%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.0412%" y="692" width="0.3745%" height="15" fill="rgb(224,39,27)" fg:x="179" fg:w="1"/><text x="67.2912%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.0412%" y="708" width="0.3745%" height="15" fill="rgb(215,92,29)" fg:x="179" fg:w="1"/><text x="67.2912%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (1 samples, 0.37%)</title><rect x="67.0412%" y="724" width="0.3745%" height="15" fill="rgb(207,159,16)" fg:x="179" fg:w="1"/><text x="67.2912%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.0412%" y="740" width="0.3745%" height="15" fill="rgb(238,163,47)" fg:x="179" fg:w="1"/><text x="67.2912%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.0412%" y="756" width="0.3745%" height="15" fill="rgb(219,91,49)" fg:x="179" fg:w="1"/><text x="67.2912%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.0412%" y="772" width="0.3745%" height="15" fill="rgb(227,167,31)" fg:x="179" fg:w="1"/><text x="67.2912%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.0412%" y="788" width="0.3745%" height="15" fill="rgb(234,80,54)" fg:x="179" fg:w="1"/><text x="67.2912%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.0412%" y="804" width="0.3745%" height="15" fill="rgb(212,114,2)" fg:x="179" fg:w="1"/><text x="67.2912%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (1 samples, 0.37%)</title><rect x="67.0412%" y="820" width="0.3745%" height="15" fill="rgb(234,50,24)" fg:x="179" fg:w="1"/><text x="67.2912%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.0412%" y="836" width="0.3745%" height="15" fill="rgb(221,68,8)" fg:x="179" fg:w="1"/><text x="67.2912%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.0412%" y="852" width="0.3745%" height="15" fill="rgb(254,180,31)" fg:x="179" fg:w="1"/><text x="67.2912%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.0412%" y="868" width="0.3745%" height="15" fill="rgb(247,130,50)" fg:x="179" fg:w="1"/><text x="67.2912%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.0412%" y="884" width="0.3745%" height="15" fill="rgb(211,109,4)" fg:x="179" fg:w="1"/><text x="67.2912%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.0412%" y="900" width="0.3745%" height="15" fill="rgb(238,50,21)" fg:x="179" fg:w="1"/><text x="67.2912%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (1 samples, 0.37%)</title><rect x="67.0412%" y="916" width="0.3745%" height="15" fill="rgb(225,57,45)" fg:x="179" fg:w="1"/><text x="67.2912%" y="926.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.37%)</title><rect x="67.0412%" y="932" width="0.3745%" height="15" fill="rgb(209,196,50)" fg:x="179" fg:w="1"/><text x="67.2912%" y="942.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.37%)</title><rect x="67.0412%" y="948" width="0.3745%" height="15" fill="rgb(242,140,13)" fg:x="179" fg:w="1"/><text x="67.2912%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.37%)</title><rect x="67.0412%" y="964" width="0.3745%" height="15" fill="rgb(217,111,7)" fg:x="179" fg:w="1"/><text x="67.2912%" y="974.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.37%)</title><rect x="67.0412%" y="980" width="0.3745%" height="15" fill="rgb(253,193,51)" fg:x="179" fg:w="1"/><text x="67.2912%" y="990.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="67.0412%" y="996" width="0.3745%" height="15" fill="rgb(252,70,29)" fg:x="179" fg:w="1"/><text x="67.2912%" y="1006.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="67.0412%" y="1012" width="0.3745%" height="15" fill="rgb(232,127,12)" fg:x="179" fg:w="1"/><text x="67.2912%" y="1022.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.37%)</title><rect x="67.0412%" y="1028" width="0.3745%" height="15" fill="rgb(211,180,21)" fg:x="179" fg:w="1"/><text x="67.2912%" y="1038.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.37%)</title><rect x="67.0412%" y="1044" width="0.3745%" height="15" fill="rgb(229,72,13)" fg:x="179" fg:w="1"/><text x="67.2912%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="66.2921%" y="116" width="1.4981%" height="15" fill="rgb(240,211,49)" fg:x="177" fg:w="4"/><text x="66.5421%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="66.2921%" y="132" width="1.4981%" height="15" fill="rgb(219,149,40)" fg:x="177" fg:w="4"/><text x="66.5421%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="66.2921%" y="148" width="1.4981%" height="15" fill="rgb(210,127,46)" fg:x="177" fg:w="4"/><text x="66.5421%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="66.2921%" y="164" width="1.4981%" height="15" fill="rgb(220,106,7)" fg:x="177" fg:w="4"/><text x="66.5421%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="66.2921%" y="180" width="1.4981%" height="15" fill="rgb(249,31,22)" fg:x="177" fg:w="4"/><text x="66.5421%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (4 samples, 1.50%)</title><rect x="66.2921%" y="196" width="1.4981%" height="15" fill="rgb(253,1,49)" fg:x="177" fg:w="4"/><text x="66.5421%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="66.2921%" y="212" width="1.4981%" height="15" fill="rgb(227,144,33)" fg:x="177" fg:w="4"/><text x="66.5421%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="66.2921%" y="228" width="1.4981%" height="15" fill="rgb(249,163,44)" fg:x="177" fg:w="4"/><text x="66.5421%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="66.2921%" y="244" width="1.4981%" height="15" fill="rgb(234,15,39)" fg:x="177" fg:w="4"/><text x="66.5421%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="66.2921%" y="260" width="1.4981%" height="15" fill="rgb(207,66,16)" fg:x="177" fg:w="4"/><text x="66.5421%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="66.2921%" y="276" width="1.4981%" height="15" fill="rgb(233,112,24)" fg:x="177" fg:w="4"/><text x="66.5421%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (4 samples, 1.50%)</title><rect x="66.2921%" y="292" width="1.4981%" height="15" fill="rgb(230,90,22)" fg:x="177" fg:w="4"/><text x="66.5421%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="66.2921%" y="308" width="1.4981%" height="15" fill="rgb(229,61,13)" fg:x="177" fg:w="4"/><text x="66.5421%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="66.2921%" y="324" width="1.4981%" height="15" fill="rgb(225,57,24)" fg:x="177" fg:w="4"/><text x="66.5421%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="66.2921%" y="340" width="1.4981%" height="15" fill="rgb(208,169,48)" fg:x="177" fg:w="4"/><text x="66.5421%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="66.2921%" y="356" width="1.4981%" height="15" fill="rgb(244,218,51)" fg:x="177" fg:w="4"/><text x="66.5421%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="66.2921%" y="372" width="1.4981%" height="15" fill="rgb(214,148,10)" fg:x="177" fg:w="4"/><text x="66.5421%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (4 samples, 1.50%)</title><rect x="66.2921%" y="388" width="1.4981%" height="15" fill="rgb(225,174,27)" fg:x="177" fg:w="4"/><text x="66.5421%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.50%)</title><rect x="66.2921%" y="404" width="1.4981%" height="15" fill="rgb(230,96,26)" fg:x="177" fg:w="4"/><text x="66.5421%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.50%)</title><rect x="66.2921%" y="420" width="1.4981%" height="15" fill="rgb(232,10,30)" fg:x="177" fg:w="4"/><text x="66.5421%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.50%)</title><rect x="66.2921%" y="436" width="1.4981%" height="15" fill="rgb(222,8,50)" fg:x="177" fg:w="4"/><text x="66.5421%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.50%)</title><rect x="66.2921%" y="452" width="1.4981%" height="15" fill="rgb(213,81,27)" fg:x="177" fg:w="4"/><text x="66.5421%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.50%)</title><rect x="66.2921%" y="468" width="1.4981%" height="15" fill="rgb(245,50,10)" fg:x="177" fg:w="4"/><text x="66.5421%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (2 samples, 0.75%)</title><rect x="67.0412%" y="484" width="0.7491%" height="15" fill="rgb(216,100,18)" fg:x="179" fg:w="2"/><text x="67.2912%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="67.0412%" y="500" width="0.7491%" height="15" fill="rgb(236,147,54)" fg:x="179" fg:w="2"/><text x="67.2912%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="67.0412%" y="516" width="0.7491%" height="15" fill="rgb(205,143,26)" fg:x="179" fg:w="2"/><text x="67.2912%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="67.0412%" y="532" width="0.7491%" height="15" fill="rgb(236,26,9)" fg:x="179" fg:w="2"/><text x="67.2912%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="67.0412%" y="548" width="0.7491%" height="15" fill="rgb(221,165,53)" fg:x="179" fg:w="2"/><text x="67.2912%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="67.0412%" y="564" width="0.7491%" height="15" fill="rgb(214,110,17)" fg:x="179" fg:w="2"/><text x="67.2912%" y="574.50"></text></g><g><title><module> (urllib3/connectionpool.py:1) (1 samples, 0.37%)</title><rect x="67.4157%" y="580" width="0.3745%" height="15" fill="rgb(237,197,12)" fg:x="180" fg:w="1"/><text x="67.6657%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.4157%" y="596" width="0.3745%" height="15" fill="rgb(205,84,17)" fg:x="180" fg:w="1"/><text x="67.6657%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.4157%" y="612" width="0.3745%" height="15" fill="rgb(237,18,45)" fg:x="180" fg:w="1"/><text x="67.6657%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.4157%" y="628" width="0.3745%" height="15" fill="rgb(221,87,14)" fg:x="180" fg:w="1"/><text x="67.6657%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.4157%" y="644" width="0.3745%" height="15" fill="rgb(238,186,15)" fg:x="180" fg:w="1"/><text x="67.6657%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.4157%" y="660" width="0.3745%" height="15" fill="rgb(208,115,11)" fg:x="180" fg:w="1"/><text x="67.6657%" y="670.50"></text></g><g><title><module> (urllib3/_request_methods.py:1) (1 samples, 0.37%)</title><rect x="67.4157%" y="676" width="0.3745%" height="15" fill="rgb(254,175,0)" fg:x="180" fg:w="1"/><text x="67.6657%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.4157%" y="692" width="0.3745%" height="15" fill="rgb(227,24,42)" fg:x="180" fg:w="1"/><text x="67.6657%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.4157%" y="708" width="0.3745%" height="15" fill="rgb(223,211,37)" fg:x="180" fg:w="1"/><text x="67.6657%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.4157%" y="724" width="0.3745%" height="15" fill="rgb(235,49,27)" fg:x="180" fg:w="1"/><text x="67.6657%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.4157%" y="740" width="0.3745%" height="15" fill="rgb(254,97,51)" fg:x="180" fg:w="1"/><text x="67.6657%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.4157%" y="756" width="0.3745%" height="15" fill="rgb(249,51,40)" fg:x="180" fg:w="1"/><text x="67.6657%" y="766.50"></text></g><g><title><module> (urllib3/filepost.py:1) (1 samples, 0.37%)</title><rect x="67.4157%" y="772" width="0.3745%" height="15" fill="rgb(210,128,45)" fg:x="180" fg:w="1"/><text x="67.6657%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.4157%" y="788" width="0.3745%" height="15" fill="rgb(224,137,50)" fg:x="180" fg:w="1"/><text x="67.6657%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.4157%" y="804" width="0.3745%" height="15" fill="rgb(242,15,9)" fg:x="180" fg:w="1"/><text x="67.6657%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.4157%" y="820" width="0.3745%" height="15" fill="rgb(233,187,41)" fg:x="180" fg:w="1"/><text x="67.6657%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.4157%" y="836" width="0.3745%" height="15" fill="rgb(227,2,29)" fg:x="180" fg:w="1"/><text x="67.6657%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="67.4157%" y="852" width="0.3745%" height="15" fill="rgb(222,70,3)" fg:x="180" fg:w="1"/><text x="67.6657%" y="862.50"></text></g><g><title><module> (urllib3/fields.py:1) (1 samples, 0.37%)</title><rect x="67.4157%" y="868" width="0.3745%" height="15" fill="rgb(213,11,42)" fg:x="180" fg:w="1"/><text x="67.6657%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="67.4157%" y="884" width="0.3745%" height="15" fill="rgb(225,150,9)" fg:x="180" fg:w="1"/><text x="67.6657%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="67.4157%" y="900" width="0.3745%" height="15" fill="rgb(230,162,45)" fg:x="180" fg:w="1"/><text x="67.6657%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="67.4157%" y="916" width="0.3745%" height="15" fill="rgb(222,14,52)" fg:x="180" fg:w="1"/><text x="67.6657%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="67.4157%" y="932" width="0.3745%" height="15" fill="rgb(254,198,14)" fg:x="180" fg:w="1"/><text x="67.6657%" y="942.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="67.4157%" y="948" width="0.3745%" height="15" fill="rgb(220,217,30)" fg:x="180" fg:w="1"/><text x="67.6657%" y="958.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="67.4157%" y="964" width="0.3745%" height="15" fill="rgb(215,146,41)" fg:x="180" fg:w="1"/><text x="67.6657%" y="974.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.37%)</title><rect x="68.1648%" y="532" width="0.3745%" height="15" fill="rgb(217,27,36)" fg:x="182" fg:w="1"/><text x="68.4148%" y="542.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.37%)</title><rect x="68.1648%" y="548" width="0.3745%" height="15" fill="rgb(219,218,39)" fg:x="182" fg:w="1"/><text x="68.4148%" y="558.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="68.1648%" y="564" width="0.3745%" height="15" fill="rgb(219,4,42)" fg:x="182" fg:w="1"/><text x="68.4148%" y="574.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.37%)</title><rect x="68.5393%" y="532" width="0.3745%" height="15" fill="rgb(249,119,36)" fg:x="183" fg:w="1"/><text x="68.7893%" y="542.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (3 samples, 1.12%)</title><rect x="68.1648%" y="468" width="1.1236%" height="15" fill="rgb(209,23,33)" fg:x="182" fg:w="3"/><text x="68.4148%" y="478.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (3 samples, 1.12%)</title><rect x="68.1648%" y="484" width="1.1236%" height="15" fill="rgb(211,10,0)" fg:x="182" fg:w="3"/><text x="68.4148%" y="494.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (3 samples, 1.12%)</title><rect x="68.1648%" y="500" width="1.1236%" height="15" fill="rgb(208,99,37)" fg:x="182" fg:w="3"/><text x="68.4148%" y="510.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (3 samples, 1.12%)</title><rect x="68.1648%" y="516" width="1.1236%" height="15" fill="rgb(213,132,31)" fg:x="182" fg:w="3"/><text x="68.4148%" y="526.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.37%)</title><rect x="68.9139%" y="532" width="0.3745%" height="15" fill="rgb(243,129,40)" fg:x="184" fg:w="1"/><text x="69.1639%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="69.2884%" y="532" width="0.3745%" height="15" fill="rgb(210,66,33)" fg:x="185" fg:w="1"/><text x="69.5384%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="69.2884%" y="548" width="0.3745%" height="15" fill="rgb(209,189,4)" fg:x="185" fg:w="1"/><text x="69.5384%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="69.2884%" y="564" width="0.3745%" height="15" fill="rgb(214,107,37)" fg:x="185" fg:w="1"/><text x="69.5384%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="69.2884%" y="580" width="0.3745%" height="15" fill="rgb(245,88,54)" fg:x="185" fg:w="1"/><text x="69.5384%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="69.2884%" y="596" width="0.3745%" height="15" fill="rgb(205,146,20)" fg:x="185" fg:w="1"/><text x="69.5384%" y="606.50"></text></g><g><title><module> (ee/collection.py:1) (1 samples, 0.37%)</title><rect x="69.2884%" y="612" width="0.3745%" height="15" fill="rgb(220,161,25)" fg:x="185" fg:w="1"/><text x="69.5384%" y="622.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="69.2884%" y="628" width="0.3745%" height="15" fill="rgb(215,152,15)" fg:x="185" fg:w="1"/><text x="69.5384%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="69.2884%" y="644" width="0.3745%" height="15" fill="rgb(233,192,44)" fg:x="185" fg:w="1"/><text x="69.5384%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="69.2884%" y="660" width="0.3745%" height="15" fill="rgb(240,170,46)" fg:x="185" fg:w="1"/><text x="69.5384%" y="670.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.37%)</title><rect x="69.2884%" y="676" width="0.3745%" height="15" fill="rgb(207,104,33)" fg:x="185" fg:w="1"/><text x="69.5384%" y="686.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.37%)</title><rect x="69.2884%" y="692" width="0.3745%" height="15" fill="rgb(219,21,39)" fg:x="185" fg:w="1"/><text x="69.5384%" y="702.50"></text></g><g><title>Task (ee/batch.py:23) (1 samples, 0.37%)</title><rect x="69.6629%" y="660" width="0.3745%" height="15" fill="rgb(214,133,29)" fg:x="186" fg:w="1"/><text x="69.9129%" y="670.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.37%)</title><rect x="69.6629%" y="676" width="0.3745%" height="15" fill="rgb(226,93,6)" fg:x="186" fg:w="1"/><text x="69.9129%" y="686.50"></text></g><g><title>__setattr__ (enum.py:462) (1 samples, 0.37%)</title><rect x="69.6629%" y="692" width="0.3745%" height="15" fill="rgb(252,222,34)" fg:x="186" fg:w="1"/><text x="69.9129%" y="702.50"></text></g><g><title><listcomp> (pyparsing/core.py:3796) (1 samples, 0.37%)</title><rect x="70.0375%" y="1380" width="0.3745%" height="15" fill="rgb(252,92,48)" fg:x="187" fg:w="1"/><text x="70.2875%" y="1390.50"></text></g><g><title>copy (pyparsing/core.py:3880) (1 samples, 0.37%)</title><rect x="70.0375%" y="1396" width="0.3745%" height="15" fill="rgb(245,223,24)" fg:x="187" fg:w="1"/><text x="70.2875%" y="1406.50"></text></g><g><title><listcomp> (pyparsing/core.py:3796) (1 samples, 0.37%)</title><rect x="70.4120%" y="1396" width="0.3745%" height="15" fill="rgb(205,176,3)" fg:x="188" fg:w="1"/><text x="70.6620%" y="1406.50"></text></g><g><title>copy (pyparsing/core.py:522) (1 samples, 0.37%)</title><rect x="70.4120%" y="1412" width="0.3745%" height="15" fill="rgb(235,151,15)" fg:x="188" fg:w="1"/><text x="70.6620%" y="1422.50"></text></g><g><title>copy (copy.py:66) (1 samples, 0.37%)</title><rect x="70.4120%" y="1428" width="0.3745%" height="15" fill="rgb(237,209,11)" fg:x="188" fg:w="1"/><text x="70.6620%" y="1438.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="70.0375%" y="788" width="1.1236%" height="15" fill="rgb(243,227,24)" fg:x="187" fg:w="3"/><text x="70.2875%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="70.0375%" y="804" width="1.1236%" height="15" fill="rgb(239,193,16)" fg:x="187" fg:w="3"/><text x="70.2875%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="70.0375%" y="820" width="1.1236%" height="15" fill="rgb(231,27,9)" fg:x="187" fg:w="3"/><text x="70.2875%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="70.0375%" y="836" width="1.1236%" height="15" fill="rgb(219,169,10)" fg:x="187" fg:w="3"/><text x="70.2875%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="852" width="1.1236%" height="15" fill="rgb(244,229,43)" fg:x="187" fg:w="3"/><text x="70.2875%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (3 samples, 1.12%)</title><rect x="70.0375%" y="868" width="1.1236%" height="15" fill="rgb(254,38,20)" fg:x="187" fg:w="3"/><text x="70.2875%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="70.0375%" y="884" width="1.1236%" height="15" fill="rgb(250,47,30)" fg:x="187" fg:w="3"/><text x="70.2875%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="70.0375%" y="900" width="1.1236%" height="15" fill="rgb(224,124,36)" fg:x="187" fg:w="3"/><text x="70.2875%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="70.0375%" y="916" width="1.1236%" height="15" fill="rgb(246,68,51)" fg:x="187" fg:w="3"/><text x="70.2875%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="70.0375%" y="932" width="1.1236%" height="15" fill="rgb(253,43,49)" fg:x="187" fg:w="3"/><text x="70.2875%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="948" width="1.1236%" height="15" fill="rgb(219,54,36)" fg:x="187" fg:w="3"/><text x="70.2875%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (3 samples, 1.12%)</title><rect x="70.0375%" y="964" width="1.1236%" height="15" fill="rgb(227,133,34)" fg:x="187" fg:w="3"/><text x="70.2875%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.12%)</title><rect x="70.0375%" y="980" width="1.1236%" height="15" fill="rgb(247,227,15)" fg:x="187" fg:w="3"/><text x="70.2875%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="996" width="1.1236%" height="15" fill="rgb(229,96,14)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="70.0375%" y="1012" width="1.1236%" height="15" fill="rgb(220,79,17)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="70.0375%" y="1028" width="1.1236%" height="15" fill="rgb(205,131,53)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="70.0375%" y="1044" width="1.1236%" height="15" fill="rgb(209,50,29)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="70.0375%" y="1060" width="1.1236%" height="15" fill="rgb(245,86,46)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="1076" width="1.1236%" height="15" fill="rgb(235,66,46)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (3 samples, 1.12%)</title><rect x="70.0375%" y="1092" width="1.1236%" height="15" fill="rgb(232,148,31)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="70.0375%" y="1108" width="1.1236%" height="15" fill="rgb(217,149,8)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="70.0375%" y="1124" width="1.1236%" height="15" fill="rgb(209,183,11)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="70.0375%" y="1140" width="1.1236%" height="15" fill="rgb(208,55,20)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="70.0375%" y="1156" width="1.1236%" height="15" fill="rgb(218,39,14)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="1172" width="1.1236%" height="15" fill="rgb(216,169,33)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (3 samples, 1.12%)</title><rect x="70.0375%" y="1188" width="1.1236%" height="15" fill="rgb(233,80,24)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="70.0375%" y="1204" width="1.1236%" height="15" fill="rgb(213,179,31)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="70.0375%" y="1220" width="1.1236%" height="15" fill="rgb(209,19,5)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="70.0375%" y="1236" width="1.1236%" height="15" fill="rgb(219,18,35)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="70.0375%" y="1252" width="1.1236%" height="15" fill="rgb(209,169,16)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="70.0375%" y="1268" width="1.1236%" height="15" fill="rgb(245,90,51)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1278.50"></text></g><g><title><module> (pyparsing/common.py:2) (3 samples, 1.12%)</title><rect x="70.0375%" y="1284" width="1.1236%" height="15" fill="rgb(220,99,45)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1294.50"></text></g><g><title>pyparsing_common (pyparsing/common.py:8) (3 samples, 1.12%)</title><rect x="70.0375%" y="1300" width="1.1236%" height="15" fill="rgb(249,89,25)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:5706) (3 samples, 1.12%)</title><rect x="70.0375%" y="1316" width="1.1236%" height="15" fill="rgb(239,193,0)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1326.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:4577) (3 samples, 1.12%)</title><rect x="70.0375%" y="1332" width="1.1236%" height="15" fill="rgb(231,126,1)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1342.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (3 samples, 1.12%)</title><rect x="70.0375%" y="1348" width="1.1236%" height="15" fill="rgb(243,166,3)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1358.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (3 samples, 1.12%)</title><rect x="70.0375%" y="1364" width="1.1236%" height="15" fill="rgb(223,22,34)" fg:x="187" fg:w="3"/><text x="70.2875%" y="1374.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (2 samples, 0.75%)</title><rect x="70.4120%" y="1380" width="0.7491%" height="15" fill="rgb(251,52,51)" fg:x="188" fg:w="2"/><text x="70.6620%" y="1390.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (1 samples, 0.37%)</title><rect x="70.7865%" y="1396" width="0.3745%" height="15" fill="rgb(221,165,28)" fg:x="189" fg:w="1"/><text x="71.0365%" y="1406.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (1 samples, 0.37%)</title><rect x="70.7865%" y="1412" width="0.3745%" height="15" fill="rgb(218,121,47)" fg:x="189" fg:w="1"/><text x="71.0365%" y="1422.50"></text></g><g><title><listcomp> (pyparsing/core.py:3796) (1 samples, 0.37%)</title><rect x="70.7865%" y="1428" width="0.3745%" height="15" fill="rgb(209,120,9)" fg:x="189" fg:w="1"/><text x="71.0365%" y="1438.50"></text></g><g><title>copy (pyparsing/core.py:522) (1 samples, 0.37%)</title><rect x="70.7865%" y="1444" width="0.3745%" height="15" fill="rgb(236,68,12)" fg:x="189" fg:w="1"/><text x="71.0365%" y="1454.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="71.1610%" y="916" width="0.3745%" height="15" fill="rgb(225,194,26)" fg:x="190" fg:w="1"/><text x="71.4110%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="71.1610%" y="932" width="0.3745%" height="15" fill="rgb(231,84,39)" fg:x="190" fg:w="1"/><text x="71.4110%" y="942.50"></text></g><g><title>BuiltInDomainDefinedAttribute (pyasn1_modules/rfc2459.py:610) (1 samples, 0.37%)</title><rect x="71.5356%" y="1652" width="0.3745%" height="15" fill="rgb(210,11,45)" fg:x="191" fg:w="1"/><text x="71.7856%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.37%)</title><rect x="71.5356%" y="1668" width="0.3745%" height="15" fill="rgb(224,54,52)" fg:x="191" fg:w="1"/><text x="71.7856%" y="1678.50"></text></g><g><title>__computeAmbiguousTypes (pyasn1/type/namedtype.py:269) (1 samples, 0.37%)</title><rect x="71.5356%" y="1684" width="0.3745%" height="15" fill="rgb(238,102,14)" fg:x="191" fg:w="1"/><text x="71.7856%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.37%)</title><rect x="71.5356%" y="1700" width="0.3745%" height="15" fill="rgb(243,160,52)" fg:x="191" fg:w="1"/><text x="71.7856%" y="1710.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.37%)</title><rect x="71.5356%" y="1716" width="0.3745%" height="15" fill="rgb(216,114,19)" fg:x="191" fg:w="1"/><text x="71.7856%" y="1726.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.37%)</title><rect x="72.2846%" y="1716" width="0.3745%" height="15" fill="rgb(244,166,37)" fg:x="193" fg:w="1"/><text x="72.5346%" y="1726.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (4 samples, 1.50%)</title><rect x="71.5356%" y="1636" width="1.4981%" height="15" fill="rgb(246,29,44)" fg:x="191" fg:w="4"/><text x="71.7856%" y="1646.50"></text></g><g><title>DirectoryString (pyasn1_modules/rfc2459.py:271) (3 samples, 1.12%)</title><rect x="71.9101%" y="1652" width="1.1236%" height="15" fill="rgb(215,56,53)" fg:x="192" fg:w="3"/><text x="72.1601%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (3 samples, 1.12%)</title><rect x="71.9101%" y="1668" width="1.1236%" height="15" fill="rgb(217,60,2)" fg:x="192" fg:w="3"/><text x="72.1601%" y="1678.50"></text></g><g><title>__computeAmbiguousTypes (pyasn1/type/namedtype.py:269) (3 samples, 1.12%)</title><rect x="71.9101%" y="1684" width="1.1236%" height="15" fill="rgb(207,26,24)" fg:x="192" fg:w="3"/><text x="72.1601%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (3 samples, 1.12%)</title><rect x="71.9101%" y="1700" width="1.1236%" height="15" fill="rgb(252,210,15)" fg:x="192" fg:w="3"/><text x="72.1601%" y="1710.50"></text></g><g><title>__computeTagToPosMap (pyasn1/type/namedtype.py:245) (1 samples, 0.37%)</title><rect x="72.6592%" y="1716" width="0.3745%" height="15" fill="rgb(253,209,26)" fg:x="194" fg:w="1"/><text x="72.9092%" y="1726.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.87%)</title><rect x="71.5356%" y="1556" width="1.8727%" height="15" fill="rgb(238,170,14)" fg:x="191" fg:w="5"/><text x="71.7856%" y="1566.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.87%)</title><rect x="71.5356%" y="1572" width="1.8727%" height="15" fill="rgb(216,178,15)" fg:x="191" fg:w="5"/><text x="71.7856%" y="1582.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.87%)</title><rect x="71.5356%" y="1588" width="1.8727%" height="15" fill="rgb(250,197,2)" fg:x="191" fg:w="5"/><text x="71.7856%" y="1598.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.87%)</title><rect x="71.5356%" y="1604" width="1.8727%" height="15" fill="rgb(212,70,42)" fg:x="191" fg:w="5"/><text x="71.7856%" y="1614.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.87%)</title><rect x="71.5356%" y="1620" width="1.8727%" height="15" fill="rgb(227,213,9)" fg:x="191" fg:w="5"/><text x="71.7856%" y="1630.50">_..</text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (1 samples, 0.37%)</title><rect x="73.0337%" y="1636" width="0.3745%" height="15" fill="rgb(245,99,25)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="73.0337%" y="1652" width="0.3745%" height="15" fill="rgb(250,82,29)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.0337%" y="1668" width="0.3745%" height="15" fill="rgb(241,226,54)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="73.0337%" y="1684" width="0.3745%" height="15" fill="rgb(221,99,41)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="73.0337%" y="1700" width="0.3745%" height="15" fill="rgb(213,90,21)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="73.0337%" y="1716" width="0.3745%" height="15" fill="rgb(205,208,24)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="73.0337%" y="1732" width="0.3745%" height="15" fill="rgb(246,31,12)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.0337%" y="1748" width="0.3745%" height="15" fill="rgb(213,154,6)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (1 samples, 0.37%)</title><rect x="73.0337%" y="1764" width="0.3745%" height="15" fill="rgb(222,163,29)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1774.50"></text></g><g><title>BindRequest (pyasn1_modules/rfc2251.py:118) (1 samples, 0.37%)</title><rect x="73.0337%" y="1780" width="0.3745%" height="15" fill="rgb(227,201,8)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1790.50"></text></g><g><title>subtype (pyasn1/type/base.py:377) (1 samples, 0.37%)</title><rect x="73.0337%" y="1796" width="0.3745%" height="15" fill="rgb(233,9,32)" fg:x="195" fg:w="1"/><text x="73.2837%" y="1806.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="73.4082%" y="1812" width="0.3745%" height="15" fill="rgb(217,54,24)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1822.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="73.4082%" y="1828" width="0.3745%" height="15" fill="rgb(235,192,0)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1838.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="73.4082%" y="1844" width="0.3745%" height="15" fill="rgb(235,45,9)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1854.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="73.4082%" y="1860" width="0.3745%" height="15" fill="rgb(246,42,40)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1870.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.4082%" y="1876" width="0.3745%" height="15" fill="rgb(248,111,24)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1886.50"></text></g><g><title><module> (pyasn1/codec/streaming.py:7) (1 samples, 0.37%)</title><rect x="73.4082%" y="1892" width="0.3745%" height="15" fill="rgb(249,65,22)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1902.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="73.4082%" y="1908" width="0.3745%" height="15" fill="rgb(238,111,51)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1918.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.4082%" y="1924" width="0.3745%" height="15" fill="rgb(250,118,22)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1934.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="73.4082%" y="1940" width="0.3745%" height="15" fill="rgb(234,84,26)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1950.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="73.4082%" y="1956" width="0.3745%" height="15" fill="rgb(243,172,12)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1966.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="73.4082%" y="1972" width="0.3745%" height="15" fill="rgb(236,150,49)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1982.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="73.4082%" y="1988" width="0.3745%" height="15" fill="rgb(225,197,26)" fg:x="196" fg:w="1"/><text x="73.6582%" y="1998.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.4082%" y="2004" width="0.3745%" height="15" fill="rgb(214,17,42)" fg:x="196" fg:w="1"/><text x="73.6582%" y="2014.50"></text></g><g><title><module> (pyasn1/type/univ.py:7) (1 samples, 0.37%)</title><rect x="73.4082%" y="2020" width="0.3745%" height="15" fill="rgb(224,165,40)" fg:x="196" fg:w="1"/><text x="73.6582%" y="2030.50"></text></g><g><title>Choice (pyasn1/type/univ.py:2905) (1 samples, 0.37%)</title><rect x="73.4082%" y="2036" width="0.3745%" height="15" fill="rgb(246,100,4)" fg:x="196" fg:w="1"/><text x="73.6582%" y="2046.50"></text></g><g><title>__init__ (pyasn1/type/constraint.py:22) (1 samples, 0.37%)</title><rect x="73.4082%" y="2052" width="0.3745%" height="15" fill="rgb(222,103,0)" fg:x="196" fg:w="1"/><text x="73.6582%" y="2062.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="73.7828%" y="1892" width="0.3745%" height="15" fill="rgb(227,189,26)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.7828%" y="1908" width="0.3745%" height="15" fill="rgb(214,202,17)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1918.50"></text></g><g><title><module> (pyasn1/codec/ber/decoder.py:7) (1 samples, 0.37%)</title><rect x="73.7828%" y="1924" width="0.3745%" height="15" fill="rgb(229,111,3)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.37%)</title><rect x="73.7828%" y="1940" width="0.3745%" height="15" fill="rgb(229,172,15)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.7828%" y="1956" width="0.3745%" height="15" fill="rgb(230,224,35)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="73.7828%" y="1972" width="0.3745%" height="15" fill="rgb(251,141,6)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="73.7828%" y="1988" width="0.3745%" height="15" fill="rgb(225,208,6)" fg:x="197" fg:w="1"/><text x="74.0328%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="73.7828%" y="2004" width="0.3745%" height="15" fill="rgb(246,181,16)" fg:x="197" fg:w="1"/><text x="74.0328%" y="2014.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="73.7828%" y="2020" width="0.3745%" height="15" fill="rgb(227,129,36)" fg:x="197" fg:w="1"/><text x="74.0328%" y="2030.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="73.7828%" y="2036" width="0.3745%" height="15" fill="rgb(248,117,24)" fg:x="197" fg:w="1"/><text x="74.0328%" y="2046.50"></text></g><g><title><module> (pyasn1/type/useful.py:7) (1 samples, 0.37%)</title><rect x="73.7828%" y="2052" width="0.3745%" height="15" fill="rgb(214,185,35)" fg:x="197" fg:w="1"/><text x="74.0328%" y="2062.50"></text></g><g><title><module> (ee/_cloud_api_utils.py:1) (12 samples, 4.49%)</title><rect x="70.0375%" y="772" width="4.4944%" height="15" fill="rgb(236,150,34)" fg:x="187" fg:w="12"/><text x="70.2875%" y="782.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 3.37%)</title><rect x="71.1610%" y="788" width="3.3708%" height="15" fill="rgb(243,228,27)" fg:x="190" fg:w="9"/><text x="71.4110%" y="798.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="71.1610%" y="804" width="3.3708%" height="15" fill="rgb(245,77,44)" fg:x="190" fg:w="9"/><text x="71.4110%" y="814.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.37%)</title><rect x="71.1610%" y="820" width="3.3708%" height="15" fill="rgb(235,214,42)" fg:x="190" fg:w="9"/><text x="71.4110%" y="830.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.37%)</title><rect x="71.1610%" y="836" width="3.3708%" height="15" fill="rgb(221,74,3)" fg:x="190" fg:w="9"/><text x="71.4110%" y="846.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.37%)</title><rect x="71.1610%" y="852" width="3.3708%" height="15" fill="rgb(206,121,29)" fg:x="190" fg:w="9"/><text x="71.4110%" y="862.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.37%)</title><rect x="71.1610%" y="868" width="3.3708%" height="15" fill="rgb(249,131,53)" fg:x="190" fg:w="9"/><text x="71.4110%" y="878.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.37%)</title><rect x="71.1610%" y="884" width="3.3708%" height="15" fill="rgb(236,170,29)" fg:x="190" fg:w="9"/><text x="71.4110%" y="894.50">_ca..</text></g><g><title><module> (googleapiclient/discovery.py:15) (9 samples, 3.37%)</title><rect x="71.1610%" y="900" width="3.3708%" height="15" fill="rgb(247,96,15)" fg:x="190" fg:w="9"/><text x="71.4110%" y="910.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 3.00%)</title><rect x="71.5356%" y="916" width="2.9963%" height="15" fill="rgb(211,210,7)" fg:x="191" fg:w="8"/><text x="71.7856%" y="926.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="932" width="2.9963%" height="15" fill="rgb(240,88,50)" fg:x="191" fg:w="8"/><text x="71.7856%" y="942.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="71.5356%" y="948" width="2.9963%" height="15" fill="rgb(209,229,26)" fg:x="191" fg:w="8"/><text x="71.7856%" y="958.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="71.5356%" y="964" width="2.9963%" height="15" fill="rgb(210,68,23)" fg:x="191" fg:w="8"/><text x="71.7856%" y="974.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="71.5356%" y="980" width="2.9963%" height="15" fill="rgb(229,180,13)" fg:x="191" fg:w="8"/><text x="71.7856%" y="990.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="71.5356%" y="996" width="2.9963%" height="15" fill="rgb(236,53,44)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1006.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1012" width="2.9963%" height="15" fill="rgb(244,214,29)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1022.50">_ca..</text></g><g><title><module> (oauth2/service_account.py:15) (8 samples, 3.00%)</title><rect x="71.5356%" y="1028" width="2.9963%" height="15" fill="rgb(220,75,29)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1038.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 3.00%)</title><rect x="71.5356%" y="1044" width="2.9963%" height="15" fill="rgb(214,183,37)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1054.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1060" width="2.9963%" height="15" fill="rgb(239,117,29)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1070.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="71.5356%" y="1076" width="2.9963%" height="15" fill="rgb(237,171,35)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1086.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="71.5356%" y="1092" width="2.9963%" height="15" fill="rgb(229,178,53)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1102.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="71.5356%" y="1108" width="2.9963%" height="15" fill="rgb(210,102,19)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1118.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="71.5356%" y="1124" width="2.9963%" height="15" fill="rgb(235,127,22)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1134.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1140" width="2.9963%" height="15" fill="rgb(244,31,31)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1150.50">_ca..</text></g><g><title><module> (auth/_service_account_info.py:15) (8 samples, 3.00%)</title><rect x="71.5356%" y="1156" width="2.9963%" height="15" fill="rgb(231,43,21)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1166.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 3.00%)</title><rect x="71.5356%" y="1172" width="2.9963%" height="15" fill="rgb(217,131,35)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1182.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1188" width="2.9963%" height="15" fill="rgb(221,149,4)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1198.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="71.5356%" y="1204" width="2.9963%" height="15" fill="rgb(232,170,28)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1214.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="71.5356%" y="1220" width="2.9963%" height="15" fill="rgb(238,56,10)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1230.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="71.5356%" y="1236" width="2.9963%" height="15" fill="rgb(235,196,14)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1246.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="71.5356%" y="1252" width="2.9963%" height="15" fill="rgb(216,45,48)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1262.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1268" width="2.9963%" height="15" fill="rgb(238,213,17)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1278.50">_ca..</text></g><g><title><module> (auth/crypt/__init__.py:15) (8 samples, 3.00%)</title><rect x="71.5356%" y="1284" width="2.9963%" height="15" fill="rgb(212,13,2)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1294.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 3.00%)</title><rect x="71.5356%" y="1300" width="2.9963%" height="15" fill="rgb(240,114,20)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1310.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1316" width="2.9963%" height="15" fill="rgb(228,41,40)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1326.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="71.5356%" y="1332" width="2.9963%" height="15" fill="rgb(244,132,35)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1342.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="71.5356%" y="1348" width="2.9963%" height="15" fill="rgb(253,189,4)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1358.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="71.5356%" y="1364" width="2.9963%" height="15" fill="rgb(224,37,19)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1374.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="71.5356%" y="1380" width="2.9963%" height="15" fill="rgb(235,223,18)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1390.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1396" width="2.9963%" height="15" fill="rgb(235,163,25)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1406.50">_ca..</text></g><g><title><module> (auth/crypt/rsa.py:15) (8 samples, 3.00%)</title><rect x="71.5356%" y="1412" width="2.9963%" height="15" fill="rgb(217,145,28)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1422.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 3.00%)</title><rect x="71.5356%" y="1428" width="2.9963%" height="15" fill="rgb(223,223,32)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1438.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1444" width="2.9963%" height="15" fill="rgb(227,189,39)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1454.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.00%)</title><rect x="71.5356%" y="1460" width="2.9963%" height="15" fill="rgb(248,10,22)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1470.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.00%)</title><rect x="71.5356%" y="1476" width="2.9963%" height="15" fill="rgb(248,46,39)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1486.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.00%)</title><rect x="71.5356%" y="1492" width="2.9963%" height="15" fill="rgb(248,113,48)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1502.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.00%)</title><rect x="71.5356%" y="1508" width="2.9963%" height="15" fill="rgb(245,16,25)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1518.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.00%)</title><rect x="71.5356%" y="1524" width="2.9963%" height="15" fill="rgb(249,152,16)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1534.50">_ca..</text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (8 samples, 3.00%)</title><rect x="71.5356%" y="1540" width="2.9963%" height="15" fill="rgb(250,16,1)" fg:x="191" fg:w="8"/><text x="71.7856%" y="1550.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.12%)</title><rect x="73.4082%" y="1556" width="1.1236%" height="15" fill="rgb(249,138,3)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="73.4082%" y="1572" width="1.1236%" height="15" fill="rgb(227,71,41)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="73.4082%" y="1588" width="1.1236%" height="15" fill="rgb(209,184,23)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="73.4082%" y="1604" width="1.1236%" height="15" fill="rgb(223,215,31)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="73.4082%" y="1620" width="1.1236%" height="15" fill="rgb(210,146,28)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="73.4082%" y="1636" width="1.1236%" height="15" fill="rgb(209,183,41)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="73.4082%" y="1652" width="1.1236%" height="15" fill="rgb(209,224,45)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1662.50"></text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (3 samples, 1.12%)</title><rect x="73.4082%" y="1668" width="1.1236%" height="15" fill="rgb(224,209,51)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.12%)</title><rect x="73.4082%" y="1684" width="1.1236%" height="15" fill="rgb(223,17,39)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="73.4082%" y="1700" width="1.1236%" height="15" fill="rgb(234,204,37)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.12%)</title><rect x="73.4082%" y="1716" width="1.1236%" height="15" fill="rgb(236,120,5)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.12%)</title><rect x="73.4082%" y="1732" width="1.1236%" height="15" fill="rgb(248,97,27)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.12%)</title><rect x="73.4082%" y="1748" width="1.1236%" height="15" fill="rgb(240,66,17)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.12%)</title><rect x="73.4082%" y="1764" width="1.1236%" height="15" fill="rgb(210,79,3)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.12%)</title><rect x="73.4082%" y="1780" width="1.1236%" height="15" fill="rgb(214,176,27)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1790.50"></text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (3 samples, 1.12%)</title><rect x="73.4082%" y="1796" width="1.1236%" height="15" fill="rgb(235,185,3)" fg:x="196" fg:w="3"/><text x="73.6582%" y="1806.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="73.7828%" y="1812" width="0.7491%" height="15" fill="rgb(227,24,12)" fg:x="197" fg:w="2"/><text x="74.0328%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="73.7828%" y="1828" width="0.7491%" height="15" fill="rgb(252,169,48)" fg:x="197" fg:w="2"/><text x="74.0328%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="73.7828%" y="1844" width="0.7491%" height="15" fill="rgb(212,65,1)" fg:x="197" fg:w="2"/><text x="74.0328%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="73.7828%" y="1860" width="0.7491%" height="15" fill="rgb(242,39,24)" fg:x="197" fg:w="2"/><text x="74.0328%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="73.7828%" y="1876" width="0.7491%" height="15" fill="rgb(249,32,23)" fg:x="197" fg:w="2"/><text x="74.0328%" y="1886.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="74.1573%" y="1892" width="0.3745%" height="15" fill="rgb(251,195,23)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1902.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.37%)</title><rect x="74.1573%" y="1908" width="0.3745%" height="15" fill="rgb(236,174,8)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1918.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.37%)</title><rect x="74.1573%" y="1924" width="0.3745%" height="15" fill="rgb(220,197,8)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1934.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.37%)</title><rect x="74.1573%" y="1940" width="0.3745%" height="15" fill="rgb(240,108,37)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1950.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.37%)</title><rect x="74.1573%" y="1956" width="0.3745%" height="15" fill="rgb(232,176,24)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1966.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.37%)</title><rect x="74.1573%" y="1972" width="0.3745%" height="15" fill="rgb(243,35,29)" fg:x="198" fg:w="1"/><text x="74.4073%" y="1982.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.37%)</title><rect x="74.5318%" y="900" width="0.3745%" height="15" fill="rgb(210,37,18)" fg:x="199" fg:w="1"/><text x="74.7818%" y="910.50"></text></g><g><title><module> (ee/__init__.py:1) (16 samples, 5.99%)</title><rect x="69.2884%" y="516" width="5.9925%" height="15" fill="rgb(224,184,40)" fg:x="185" fg:w="16"/><text x="69.5384%" y="526.50"><module>..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 5.62%)</title><rect x="69.6629%" y="532" width="5.6180%" height="15" fill="rgb(236,39,29)" fg:x="186" fg:w="15"/><text x="69.9129%" y="542.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.62%)</title><rect x="69.6629%" y="548" width="5.6180%" height="15" fill="rgb(232,48,39)" fg:x="186" fg:w="15"/><text x="69.9129%" y="558.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.62%)</title><rect x="69.6629%" y="564" width="5.6180%" height="15" fill="rgb(236,34,42)" fg:x="186" fg:w="15"/><text x="69.9129%" y="574.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.62%)</title><rect x="69.6629%" y="580" width="5.6180%" height="15" fill="rgb(243,106,37)" fg:x="186" fg:w="15"/><text x="69.9129%" y="590.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.62%)</title><rect x="69.6629%" y="596" width="5.6180%" height="15" fill="rgb(218,96,6)" fg:x="186" fg:w="15"/><text x="69.9129%" y="606.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.62%)</title><rect x="69.6629%" y="612" width="5.6180%" height="15" fill="rgb(235,130,12)" fg:x="186" fg:w="15"/><text x="69.9129%" y="622.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.62%)</title><rect x="69.6629%" y="628" width="5.6180%" height="15" fill="rgb(231,95,0)" fg:x="186" fg:w="15"/><text x="69.9129%" y="638.50">_call_w..</text></g><g><title><module> (ee/batch.py:1) (15 samples, 5.62%)</title><rect x="69.6629%" y="644" width="5.6180%" height="15" fill="rgb(228,12,23)" fg:x="186" fg:w="15"/><text x="69.9129%" y="654.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (14 samples, 5.24%)</title><rect x="70.0375%" y="660" width="5.2434%" height="15" fill="rgb(216,12,1)" fg:x="187" fg:w="14"/><text x="70.2875%" y="670.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 5.24%)</title><rect x="70.0375%" y="676" width="5.2434%" height="15" fill="rgb(219,59,3)" fg:x="187" fg:w="14"/><text x="70.2875%" y="686.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 5.24%)</title><rect x="70.0375%" y="692" width="5.2434%" height="15" fill="rgb(215,208,46)" fg:x="187" fg:w="14"/><text x="70.2875%" y="702.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 5.24%)</title><rect x="70.0375%" y="708" width="5.2434%" height="15" fill="rgb(254,224,29)" fg:x="187" fg:w="14"/><text x="70.2875%" y="718.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 5.24%)</title><rect x="70.0375%" y="724" width="5.2434%" height="15" fill="rgb(232,14,29)" fg:x="187" fg:w="14"/><text x="70.2875%" y="734.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 5.24%)</title><rect x="70.0375%" y="740" width="5.2434%" height="15" fill="rgb(208,45,52)" fg:x="187" fg:w="14"/><text x="70.2875%" y="750.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 5.24%)</title><rect x="70.0375%" y="756" width="5.2434%" height="15" fill="rgb(234,191,28)" fg:x="187" fg:w="14"/><text x="70.2875%" y="766.50">_call_..</text></g><g><title><module> (ee/data.py:1) (2 samples, 0.75%)</title><rect x="74.5318%" y="772" width="0.7491%" height="15" fill="rgb(244,67,43)" fg:x="199" fg:w="2"/><text x="74.7818%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.75%)</title><rect x="74.5318%" y="788" width="0.7491%" height="15" fill="rgb(236,189,24)" fg:x="199" fg:w="2"/><text x="74.7818%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.75%)</title><rect x="74.5318%" y="804" width="0.7491%" height="15" fill="rgb(239,214,33)" fg:x="199" fg:w="2"/><text x="74.7818%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="74.5318%" y="820" width="0.7491%" height="15" fill="rgb(226,176,41)" fg:x="199" fg:w="2"/><text x="74.7818%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="74.5318%" y="836" width="0.7491%" height="15" fill="rgb(248,47,8)" fg:x="199" fg:w="2"/><text x="74.7818%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="74.5318%" y="852" width="0.7491%" height="15" fill="rgb(218,81,44)" fg:x="199" fg:w="2"/><text x="74.7818%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="74.5318%" y="868" width="0.7491%" height="15" fill="rgb(213,98,6)" fg:x="199" fg:w="2"/><text x="74.7818%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.75%)</title><rect x="74.5318%" y="884" width="0.7491%" height="15" fill="rgb(222,85,22)" fg:x="199" fg:w="2"/><text x="74.7818%" y="894.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="74.9064%" y="900" width="0.3745%" height="15" fill="rgb(239,46,39)" fg:x="200" fg:w="1"/><text x="75.1564%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="75.2809%" y="596" width="0.3745%" height="15" fill="rgb(237,12,29)" fg:x="201" fg:w="1"/><text x="75.5309%" y="606.50"></text></g><g><title><module> (pyproj/network.py:1) (1 samples, 0.37%)</title><rect x="75.2809%" y="612" width="0.3745%" height="15" fill="rgb(214,77,8)" fg:x="201" fg:w="1"/><text x="75.5309%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="75.2809%" y="628" width="0.3745%" height="15" fill="rgb(217,168,37)" fg:x="201" fg:w="1"/><text x="75.5309%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="75.2809%" y="644" width="0.3745%" height="15" fill="rgb(221,217,23)" fg:x="201" fg:w="1"/><text x="75.5309%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="75.2809%" y="660" width="0.3745%" height="15" fill="rgb(243,229,36)" fg:x="201" fg:w="1"/><text x="75.5309%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="75.2809%" y="676" width="0.3745%" height="15" fill="rgb(251,163,40)" fg:x="201" fg:w="1"/><text x="75.5309%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="75.2809%" y="692" width="0.3745%" height="15" fill="rgb(237,222,12)" fg:x="201" fg:w="1"/><text x="75.5309%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="75.2809%" y="708" width="0.3745%" height="15" fill="rgb(248,132,6)" fg:x="201" fg:w="1"/><text x="75.5309%" y="718.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (22 samples, 8.24%)</title><rect x="67.7903%" y="132" width="8.2397%" height="15" fill="rgb(227,167,50)" fg:x="181" fg:w="22"/><text x="68.0403%" y="142.50">guess_engin..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (22 samples, 8.24%)</title><rect x="67.7903%" y="148" width="8.2397%" height="15" fill="rgb(242,84,37)" fg:x="181" fg:w="22"/><text x="68.0403%" y="158.50">list_engine..</text></g><g><title>build_engines (xarray/backends/plugins.py:106) (22 samples, 8.24%)</title><rect x="67.7903%" y="164" width="8.2397%" height="15" fill="rgb(212,4,50)" fg:x="181" fg:w="22"/><text x="68.0403%" y="174.50">build_engin..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (22 samples, 8.24%)</title><rect x="67.7903%" y="180" width="8.2397%" height="15" fill="rgb(230,228,32)" fg:x="181" fg:w="22"/><text x="68.0403%" y="190.50">backends_di..</text></g><g><title>load (importlib_metadata/__init__.py:178) (22 samples, 8.24%)</title><rect x="67.7903%" y="196" width="8.2397%" height="15" fill="rgb(248,217,23)" fg:x="181" fg:w="22"/><text x="68.0403%" y="206.50">load (impor..</text></g><g><title>import_module (importlib/__init__.py:109) (22 samples, 8.24%)</title><rect x="67.7903%" y="212" width="8.2397%" height="15" fill="rgb(238,197,32)" fg:x="181" fg:w="22"/><text x="68.0403%" y="222.50">import_modu..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (22 samples, 8.24%)</title><rect x="67.7903%" y="228" width="8.2397%" height="15" fill="rgb(236,106,1)" fg:x="181" fg:w="22"/><text x="68.0403%" y="238.50">_gcd_import..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 8.24%)</title><rect x="67.7903%" y="244" width="8.2397%" height="15" fill="rgb(219,228,13)" fg:x="181" fg:w="22"/><text x="68.0403%" y="254.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (22 samples, 8.24%)</title><rect x="67.7903%" y="260" width="8.2397%" height="15" fill="rgb(238,30,35)" fg:x="181" fg:w="22"/><text x="68.0403%" y="270.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (22 samples, 8.24%)</title><rect x="67.7903%" y="276" width="8.2397%" height="15" fill="rgb(236,70,23)" fg:x="181" fg:w="22"/><text x="68.0403%" y="286.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (22 samples, 8.24%)</title><rect x="67.7903%" y="292" width="8.2397%" height="15" fill="rgb(249,104,48)" fg:x="181" fg:w="22"/><text x="68.0403%" y="302.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 8.24%)</title><rect x="67.7903%" y="308" width="8.2397%" height="15" fill="rgb(254,117,50)" fg:x="181" fg:w="22"/><text x="68.0403%" y="318.50">_call_with_..</text></g><g><title><module> (xee/__init__.py:15) (22 samples, 8.24%)</title><rect x="67.7903%" y="324" width="8.2397%" height="15" fill="rgb(223,152,4)" fg:x="181" fg:w="22"/><text x="68.0403%" y="334.50"><module> (x..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 8.24%)</title><rect x="67.7903%" y="340" width="8.2397%" height="15" fill="rgb(245,6,2)" fg:x="181" fg:w="22"/><text x="68.0403%" y="350.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (22 samples, 8.24%)</title><rect x="67.7903%" y="356" width="8.2397%" height="15" fill="rgb(249,150,24)" fg:x="181" fg:w="22"/><text x="68.0403%" y="366.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (22 samples, 8.24%)</title><rect x="67.7903%" y="372" width="8.2397%" height="15" fill="rgb(228,185,42)" fg:x="181" fg:w="22"/><text x="68.0403%" y="382.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (22 samples, 8.24%)</title><rect x="67.7903%" y="388" width="8.2397%" height="15" fill="rgb(226,39,33)" fg:x="181" fg:w="22"/><text x="68.0403%" y="398.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 8.24%)</title><rect x="67.7903%" y="404" width="8.2397%" height="15" fill="rgb(221,166,19)" fg:x="181" fg:w="22"/><text x="68.0403%" y="414.50">_call_with_..</text></g><g><title><module> (xee/ext.py:15) (22 samples, 8.24%)</title><rect x="67.7903%" y="420" width="8.2397%" height="15" fill="rgb(209,109,2)" fg:x="181" fg:w="22"/><text x="68.0403%" y="430.50"><module> (x..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 8.24%)</title><rect x="67.7903%" y="436" width="8.2397%" height="15" fill="rgb(252,216,26)" fg:x="181" fg:w="22"/><text x="68.0403%" y="446.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 7.87%)</title><rect x="68.1648%" y="452" width="7.8652%" height="15" fill="rgb(227,173,36)" fg:x="182" fg:w="21"/><text x="68.4148%" y="462.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.74%)</title><rect x="69.2884%" y="468" width="6.7416%" height="15" fill="rgb(209,90,7)" fg:x="185" fg:w="18"/><text x="69.5384%" y="478.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.74%)</title><rect x="69.2884%" y="484" width="6.7416%" height="15" fill="rgb(250,194,11)" fg:x="185" fg:w="18"/><text x="69.5384%" y="494.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.74%)</title><rect x="69.2884%" y="500" width="6.7416%" height="15" fill="rgb(220,72,50)" fg:x="185" fg:w="18"/><text x="69.5384%" y="510.50">_call_wit..</text></g><g><title><module> (pyproj/__init__.py:1) (2 samples, 0.75%)</title><rect x="75.2809%" y="516" width="0.7491%" height="15" fill="rgb(222,106,48)" fg:x="201" fg:w="2"/><text x="75.5309%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.75%)</title><rect x="75.2809%" y="532" width="0.7491%" height="15" fill="rgb(216,220,45)" fg:x="201" fg:w="2"/><text x="75.5309%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.75%)</title><rect x="75.2809%" y="548" width="0.7491%" height="15" fill="rgb(234,112,18)" fg:x="201" fg:w="2"/><text x="75.5309%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.75%)</title><rect x="75.2809%" y="564" width="0.7491%" height="15" fill="rgb(206,179,9)" fg:x="201" fg:w="2"/><text x="75.5309%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.75%)</title><rect x="75.2809%" y="580" width="0.7491%" height="15" fill="rgb(215,115,40)" fg:x="201" fg:w="2"/><text x="75.5309%" y="590.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.37%)</title><rect x="75.6554%" y="596" width="0.3745%" height="15" fill="rgb(222,69,34)" fg:x="202" fg:w="1"/><text x="75.9054%" y="606.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.37%)</title><rect x="75.6554%" y="612" width="0.3745%" height="15" fill="rgb(209,161,10)" fg:x="202" fg:w="1"/><text x="75.9054%" y="622.50"></text></g><g><title>thread (0x200A9F240) (204 samples, 76.40%)</title><rect x="0.0000%" y="68" width="76.4045%" height="15" fill="rgb(217,6,38)" fg:x="0" fg:w="204"/><text x="0.2500%" y="78.50">thread (0x200A9F240)</text></g><g><title><module> (compute_air.py:3) (194 samples, 72.66%)</title><rect x="3.7453%" y="84" width="72.6592%" height="15" fill="rgb(229,229,48)" fg:x="10" fg:w="194"/><text x="3.9953%" y="94.50"><module> (compute_air.py:3)</text></g><g><title>open_dataset (xarray/tutorial.py:81) (27 samples, 10.11%)</title><rect x="66.2921%" y="100" width="10.1124%" height="15" fill="rgb(225,21,28)" fg:x="177" fg:w="27"/><text x="66.5421%" y="110.50">open_dataset (x..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (23 samples, 8.61%)</title><rect x="67.7903%" y="116" width="8.6142%" height="15" fill="rgb(206,33,13)" fg:x="181" fg:w="23"/><text x="68.0403%" y="126.50">open_dataset..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (1 samples, 0.37%)</title><rect x="76.0300%" y="132" width="0.3745%" height="15" fill="rgb(242,178,17)" fg:x="203" fg:w="1"/><text x="76.2800%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (1 samples, 0.37%)</title><rect x="76.0300%" y="148" width="0.3745%" height="15" fill="rgb(220,162,5)" fg:x="203" fg:w="1"/><text x="76.2800%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (1 samples, 0.37%)</title><rect x="76.0300%" y="164" width="0.3745%" height="15" fill="rgb(210,33,43)" fg:x="203" fg:w="1"/><text x="76.2800%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (1 samples, 0.37%)</title><rect x="76.0300%" y="180" width="0.3745%" height="15" fill="rgb(216,116,54)" fg:x="203" fg:w="1"/><text x="76.2800%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (1 samples, 0.37%)</title><rect x="76.0300%" y="196" width="0.3745%" height="15" fill="rgb(249,92,24)" fg:x="203" fg:w="1"/><text x="76.2800%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (1 samples, 0.37%)</title><rect x="76.0300%" y="212" width="0.3745%" height="15" fill="rgb(231,189,14)" fg:x="203" fg:w="1"/><text x="76.2800%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (1 samples, 0.37%)</title><rect x="76.0300%" y="228" width="0.3745%" height="15" fill="rgb(230,8,41)" fg:x="203" fg:w="1"/><text x="76.2800%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (1 samples, 0.37%)</title><rect x="76.0300%" y="244" width="0.3745%" height="15" fill="rgb(249,7,27)" fg:x="203" fg:w="1"/><text x="76.2800%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="76.0300%" y="260" width="0.3745%" height="15" fill="rgb(232,86,5)" fg:x="203" fg:w="1"/><text x="76.2800%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="76.0300%" y="276" width="0.3745%" height="15" fill="rgb(224,175,18)" fg:x="203" fg:w="1"/><text x="76.2800%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="76.0300%" y="292" width="0.3745%" height="15" fill="rgb(220,129,12)" fg:x="203" fg:w="1"/><text x="76.2800%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="76.0300%" y="308" width="0.3745%" height="15" fill="rgb(210,19,36)" fg:x="203" fg:w="1"/><text x="76.2800%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="76.0300%" y="324" width="0.3745%" height="15" fill="rgb(219,96,14)" fg:x="203" fg:w="1"/><text x="76.2800%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (1 samples, 0.37%)</title><rect x="76.0300%" y="340" width="0.3745%" height="15" fill="rgb(249,106,1)" fg:x="203" fg:w="1"/><text x="76.2800%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="76.0300%" y="356" width="0.3745%" height="15" fill="rgb(249,155,20)" fg:x="203" fg:w="1"/><text x="76.2800%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="76.0300%" y="372" width="0.3745%" height="15" fill="rgb(244,168,9)" fg:x="203" fg:w="1"/><text x="76.2800%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="76.0300%" y="388" width="0.3745%" height="15" fill="rgb(216,23,50)" fg:x="203" fg:w="1"/><text x="76.2800%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="76.0300%" y="404" width="0.3745%" height="15" fill="rgb(224,219,20)" fg:x="203" fg:w="1"/><text x="76.2800%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="76.0300%" y="420" width="0.3745%" height="15" fill="rgb(222,156,15)" fg:x="203" fg:w="1"/><text x="76.2800%" y="430.50"></text></g><g><title><module> (scipy/io/matlab/__init__.py:1) (1 samples, 0.37%)</title><rect x="76.0300%" y="436" width="0.3745%" height="15" fill="rgb(231,97,17)" fg:x="203" fg:w="1"/><text x="76.2800%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="76.0300%" y="452" width="0.3745%" height="15" fill="rgb(218,70,48)" fg:x="203" fg:w="1"/><text x="76.2800%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="76.0300%" y="468" width="0.3745%" height="15" fill="rgb(212,196,52)" fg:x="203" fg:w="1"/><text x="76.2800%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="76.0300%" y="484" width="0.3745%" height="15" fill="rgb(243,203,18)" fg:x="203" fg:w="1"/><text x="76.2800%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="76.0300%" y="500" width="0.3745%" height="15" fill="rgb(252,125,41)" fg:x="203" fg:w="1"/><text x="76.2800%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="76.0300%" y="516" width="0.3745%" height="15" fill="rgb(223,180,33)" fg:x="203" fg:w="1"/><text x="76.2800%" y="526.50"></text></g><g><title><module> (scipy/io/matlab/_mio.py:1) (1 samples, 0.37%)</title><rect x="76.0300%" y="532" width="0.3745%" height="15" fill="rgb(254,159,46)" fg:x="203" fg:w="1"/><text x="76.2800%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="76.0300%" y="548" width="0.3745%" height="15" fill="rgb(254,38,10)" fg:x="203" fg:w="1"/><text x="76.2800%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="76.0300%" y="564" width="0.3745%" height="15" fill="rgb(208,217,32)" fg:x="203" fg:w="1"/><text x="76.2800%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="76.0300%" y="580" width="0.3745%" height="15" fill="rgb(221,120,13)" fg:x="203" fg:w="1"/><text x="76.2800%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.37%)</title><rect x="76.0300%" y="596" width="0.3745%" height="15" fill="rgb(246,54,52)" fg:x="203" fg:w="1"/><text x="76.2800%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="76.0300%" y="612" width="0.3745%" height="15" fill="rgb(242,34,25)" fg:x="203" fg:w="1"/><text x="76.2800%" y="622.50"></text></g><g><title><module> (scipy/io/matlab/_mio5.py:1) (1 samples, 0.37%)</title><rect x="76.0300%" y="628" width="0.3745%" height="15" fill="rgb(247,209,9)" fg:x="203" fg:w="1"/><text x="76.2800%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.37%)</title><rect x="76.0300%" y="644" width="0.3745%" height="15" fill="rgb(228,71,26)" fg:x="203" fg:w="1"/><text x="76.2800%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.37%)</title><rect x="76.0300%" y="660" width="0.3745%" height="15" fill="rgb(222,145,49)" fg:x="203" fg:w="1"/><text x="76.2800%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.37%)</title><rect x="76.0300%" y="676" width="0.3745%" height="15" fill="rgb(218,121,17)" fg:x="203" fg:w="1"/><text x="76.2800%" y="686.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.37%)</title><rect x="76.0300%" y="692" width="0.3745%" height="15" fill="rgb(244,50,7)" fg:x="203" fg:w="1"/><text x="76.2800%" y="702.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.37%)</title><rect x="76.0300%" y="708" width="0.3745%" height="15" fill="rgb(246,229,37)" fg:x="203" fg:w="1"/><text x="76.2800%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.37%)</title><rect x="76.0300%" y="724" width="0.3745%" height="15" fill="rgb(225,18,5)" fg:x="203" fg:w="1"/><text x="76.2800%" y="734.50"></text></g><g><title>_rename (dask/dataframe/core.py:7399) (1 samples, 0.37%)</title><rect x="76.4045%" y="308" width="0.3745%" height="15" fill="rgb(213,204,8)" fg:x="204" fg:w="1"/><text x="76.6545%" y="318.50"></text></g><g><title>equals (pandas/core/indexes/base.py:5518) (1 samples, 0.37%)</title><rect x="76.4045%" y="324" width="0.3745%" height="15" fill="rgb(238,103,6)" fg:x="204" fg:w="1"/><text x="76.6545%" y="334.50"></text></g><g><title>array_equivalent (pandas/core/dtypes/missing.py:466) (1 samples, 0.37%)</title><rect x="76.4045%" y="340" width="0.3745%" height="15" fill="rgb(222,25,35)" fg:x="204" fg:w="1"/><text x="76.6545%" y="350.50"></text></g><g><title>_array_equivalent_object (pandas/core/dtypes/missing.py:564) (1 samples, 0.37%)</title><rect x="76.4045%" y="356" width="0.3745%" height="15" fill="rgb(213,203,35)" fg:x="204" fg:w="1"/><text x="76.6545%" y="366.50"></text></g><g><title>thread (0x303809000) (5 samples, 1.87%)</title><rect x="76.4045%" y="68" width="1.8727%" height="15" fill="rgb(221,79,53)" fg:x="204" fg:w="5"/><text x="76.6545%" y="78.50">t..</text></g><g><title>_bootstrap (threading.py:923) (5 samples, 1.87%)</title><rect x="76.4045%" y="84" width="1.8727%" height="15" fill="rgb(243,200,35)" fg:x="204" fg:w="5"/><text x="76.6545%" y="94.50">_..</text></g><g><title>_bootstrap_inner (threading.py:963) (5 samples, 1.87%)</title><rect x="76.4045%" y="100" width="1.8727%" height="15" fill="rgb(248,60,25)" fg:x="204" fg:w="5"/><text x="76.6545%" y="110.50">_..</text></g><g><title>run (threading.py:906) (5 samples, 1.87%)</title><rect x="76.4045%" y="116" width="1.8727%" height="15" fill="rgb(227,53,46)" fg:x="204" fg:w="5"/><text x="76.6545%" y="126.50">r..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (5 samples, 1.87%)</title><rect x="76.4045%" y="132" width="1.8727%" height="15" fill="rgb(216,120,32)" fg:x="204" fg:w="5"/><text x="76.6545%" y="142.50">_..</text></g><g><title>run (concurrent/futures/thread.py:53) (5 samples, 1.87%)</title><rect x="76.4045%" y="148" width="1.8727%" height="15" fill="rgb(220,134,1)" fg:x="204" fg:w="5"/><text x="76.6545%" y="158.50">r..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (5 samples, 1.87%)</title><rect x="76.4045%" y="164" width="1.8727%" height="15" fill="rgb(237,168,5)" fg:x="204" fg:w="5"/><text x="76.6545%" y="174.50">b..</text></g><g><title><listcomp> (dask/local.py:239) (5 samples, 1.87%)</title><rect x="76.4045%" y="180" width="1.8727%" height="15" fill="rgb(231,100,33)" fg:x="204" fg:w="5"/><text x="76.6545%" y="190.50"><..</text></g><g><title>execute_task (dask/local.py:215) (5 samples, 1.87%)</title><rect x="76.4045%" y="196" width="1.8727%" height="15" fill="rgb(236,177,47)" fg:x="204" fg:w="5"/><text x="76.6545%" y="206.50">e..</text></g><g><title>_execute_task (dask/core.py:90) (5 samples, 1.87%)</title><rect x="76.4045%" y="212" width="1.8727%" height="15" fill="rgb(235,7,49)" fg:x="204" fg:w="5"/><text x="76.6545%" y="222.50">_..</text></g><g><title>__call__ (dask/optimization.py:992) (5 samples, 1.87%)</title><rect x="76.4045%" y="228" width="1.8727%" height="15" fill="rgb(232,119,22)" fg:x="204" fg:w="5"/><text x="76.6545%" y="238.50">_..</text></g><g><title>get (dask/core.py:136) (5 samples, 1.87%)</title><rect x="76.4045%" y="244" width="1.8727%" height="15" fill="rgb(254,73,53)" fg:x="204" fg:w="5"/><text x="76.6545%" y="254.50">g..</text></g><g><title>_execute_task (dask/core.py:90) (5 samples, 1.87%)</title><rect x="76.4045%" y="260" width="1.8727%" height="15" fill="rgb(251,35,20)" fg:x="204" fg:w="5"/><text x="76.6545%" y="270.50">_..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (5 samples, 1.87%)</title><rect x="76.4045%" y="276" width="1.8727%" height="15" fill="rgb(241,119,20)" fg:x="204" fg:w="5"/><text x="76.6545%" y="286.50">_..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (5 samples, 1.87%)</title><rect x="76.4045%" y="292" width="1.8727%" height="15" fill="rgb(207,102,14)" fg:x="204" fg:w="5"/><text x="76.6545%" y="302.50">a..</text></g><g><title>f (qarray/df.py:105) (4 samples, 1.50%)</title><rect x="76.7790%" y="308" width="1.4981%" height="15" fill="rgb(248,201,50)" fg:x="205" fg:w="4"/><text x="77.0290%" y="318.50"></text></g><g><title>to_pd (qarray/df.py:72) (4 samples, 1.50%)</title><rect x="76.7790%" y="324" width="1.4981%" height="15" fill="rgb(222,185,44)" fg:x="205" fg:w="4"/><text x="77.0290%" y="334.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (4 samples, 1.50%)</title><rect x="76.7790%" y="340" width="1.4981%" height="15" fill="rgb(218,107,18)" fg:x="205" fg:w="4"/><text x="77.0290%" y="350.50"></text></g><g><title>thread (0x30480C000) (7 samples, 2.62%)</title><rect x="78.2772%" y="68" width="2.6217%" height="15" fill="rgb(237,177,39)" fg:x="209" fg:w="7"/><text x="78.5272%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (7 samples, 2.62%)</title><rect x="78.2772%" y="84" width="2.6217%" height="15" fill="rgb(246,69,6)" fg:x="209" fg:w="7"/><text x="78.5272%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (7 samples, 2.62%)</title><rect x="78.2772%" y="100" width="2.6217%" height="15" fill="rgb(234,208,37)" fg:x="209" fg:w="7"/><text x="78.5272%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (7 samples, 2.62%)</title><rect x="78.2772%" y="116" width="2.6217%" height="15" fill="rgb(225,4,6)" fg:x="209" fg:w="7"/><text x="78.5272%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (7 samples, 2.62%)</title><rect x="78.2772%" y="132" width="2.6217%" height="15" fill="rgb(233,45,0)" fg:x="209" fg:w="7"/><text x="78.5272%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (7 samples, 2.62%)</title><rect x="78.2772%" y="148" width="2.6217%" height="15" fill="rgb(226,136,5)" fg:x="209" fg:w="7"/><text x="78.5272%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (7 samples, 2.62%)</title><rect x="78.2772%" y="164" width="2.6217%" height="15" fill="rgb(211,91,47)" fg:x="209" fg:w="7"/><text x="78.5272%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (7 samples, 2.62%)</title><rect x="78.2772%" y="180" width="2.6217%" height="15" fill="rgb(242,88,51)" fg:x="209" fg:w="7"/><text x="78.5272%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (7 samples, 2.62%)</title><rect x="78.2772%" y="196" width="2.6217%" height="15" fill="rgb(230,91,28)" fg:x="209" fg:w="7"/><text x="78.5272%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 2.62%)</title><rect x="78.2772%" y="212" width="2.6217%" height="15" fill="rgb(254,186,29)" fg:x="209" fg:w="7"/><text x="78.5272%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (7 samples, 2.62%)</title><rect x="78.2772%" y="228" width="2.6217%" height="15" fill="rgb(238,6,4)" fg:x="209" fg:w="7"/><text x="78.5272%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (7 samples, 2.62%)</title><rect x="78.2772%" y="244" width="2.6217%" height="15" fill="rgb(221,151,16)" fg:x="209" fg:w="7"/><text x="78.5272%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 2.62%)</title><rect x="78.2772%" y="260" width="2.6217%" height="15" fill="rgb(251,143,52)" fg:x="209" fg:w="7"/><text x="78.5272%" y="270.50">_e..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (7 samples, 2.62%)</title><rect x="78.2772%" y="276" width="2.6217%" height="15" fill="rgb(206,90,15)" fg:x="209" fg:w="7"/><text x="78.5272%" y="286.50">__..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (7 samples, 2.62%)</title><rect x="78.2772%" y="292" width="2.6217%" height="15" fill="rgb(218,35,8)" fg:x="209" fg:w="7"/><text x="78.5272%" y="302.50">ap..</text></g><g><title>f (qarray/df.py:105) (7 samples, 2.62%)</title><rect x="78.2772%" y="308" width="2.6217%" height="15" fill="rgb(239,215,6)" fg:x="209" fg:w="7"/><text x="78.5272%" y="318.50">f ..</text></g><g><title>to_pd (qarray/df.py:72) (7 samples, 2.62%)</title><rect x="78.2772%" y="324" width="2.6217%" height="15" fill="rgb(245,116,39)" fg:x="209" fg:w="7"/><text x="78.5272%" y="334.50">to..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 2.62%)</title><rect x="78.2772%" y="340" width="2.6217%" height="15" fill="rgb(242,65,28)" fg:x="209" fg:w="7"/><text x="78.5272%" y="350.50">un..</text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (2 samples, 0.75%)</title><rect x="80.1498%" y="356" width="0.7491%" height="15" fill="rgb(252,132,53)" fg:x="214" fg:w="2"/><text x="80.3998%" y="366.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (2 samples, 0.75%)</title><rect x="80.1498%" y="372" width="0.7491%" height="15" fill="rgb(224,159,50)" fg:x="214" fg:w="2"/><text x="80.3998%" y="382.50"></text></g><g><title>thread (0x30580F000) (1 samples, 0.37%)</title><rect x="80.8989%" y="68" width="0.3745%" height="15" fill="rgb(224,93,4)" fg:x="216" fg:w="1"/><text x="81.1489%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.37%)</title><rect x="80.8989%" y="84" width="0.3745%" height="15" fill="rgb(208,81,34)" fg:x="216" fg:w="1"/><text x="81.1489%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.37%)</title><rect x="80.8989%" y="100" width="0.3745%" height="15" fill="rgb(233,92,54)" fg:x="216" fg:w="1"/><text x="81.1489%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.37%)</title><rect x="80.8989%" y="116" width="0.3745%" height="15" fill="rgb(237,21,14)" fg:x="216" fg:w="1"/><text x="81.1489%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.37%)</title><rect x="80.8989%" y="132" width="0.3745%" height="15" fill="rgb(249,128,51)" fg:x="216" fg:w="1"/><text x="81.1489%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.37%)</title><rect x="80.8989%" y="148" width="0.3745%" height="15" fill="rgb(223,129,24)" fg:x="216" fg:w="1"/><text x="81.1489%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.37%)</title><rect x="80.8989%" y="164" width="0.3745%" height="15" fill="rgb(231,168,25)" fg:x="216" fg:w="1"/><text x="81.1489%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.37%)</title><rect x="80.8989%" y="180" width="0.3745%" height="15" fill="rgb(224,39,20)" fg:x="216" fg:w="1"/><text x="81.1489%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.37%)</title><rect x="80.8989%" y="196" width="0.3745%" height="15" fill="rgb(225,152,53)" fg:x="216" fg:w="1"/><text x="81.1489%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.37%)</title><rect x="80.8989%" y="212" width="0.3745%" height="15" fill="rgb(252,17,24)" fg:x="216" fg:w="1"/><text x="81.1489%" y="222.50"></text></g><g><title>getter (dask/array/core.py:106) (1 samples, 0.37%)</title><rect x="80.8989%" y="228" width="0.3745%" height="15" fill="rgb(250,114,30)" fg:x="216" fg:w="1"/><text x="81.1489%" y="238.50"></text></g><g><title>__array__ (xarray/core/indexing.py:486) (1 samples, 0.37%)</title><rect x="80.8989%" y="244" width="0.3745%" height="15" fill="rgb(229,5,4)" fg:x="216" fg:w="1"/><text x="81.1489%" y="254.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:489) (1 samples, 0.37%)</title><rect x="80.8989%" y="260" width="0.3745%" height="15" fill="rgb(225,176,49)" fg:x="216" fg:w="1"/><text x="81.1489%" y="270.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:698) (1 samples, 0.37%)</title><rect x="80.8989%" y="276" width="0.3745%" height="15" fill="rgb(224,221,49)" fg:x="216" fg:w="1"/><text x="81.1489%" y="286.50"></text></g><g><title>_ensure_cached (xarray/core/indexing.py:692) (1 samples, 0.37%)</title><rect x="80.8989%" y="292" width="0.3745%" height="15" fill="rgb(253,169,27)" fg:x="216" fg:w="1"/><text x="81.1489%" y="302.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:666) (1 samples, 0.37%)</title><rect x="80.8989%" y="308" width="0.3745%" height="15" fill="rgb(211,206,16)" fg:x="216" fg:w="1"/><text x="81.1489%" y="318.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:553) (1 samples, 0.37%)</title><rect x="80.8989%" y="324" width="0.3745%" height="15" fill="rgb(244,87,35)" fg:x="216" fg:w="1"/><text x="81.1489%" y="334.50"></text></g><g><title>get_duck_array (xarray/coding/variables.py:73) (1 samples, 0.37%)</title><rect x="80.8989%" y="340" width="0.3745%" height="15" fill="rgb(246,28,10)" fg:x="216" fg:w="1"/><text x="81.1489%" y="350.50"></text></g><g><title>_scale_offset_decoding (xarray/coding/variables.py:326) (1 samples, 0.37%)</title><rect x="80.8989%" y="356" width="0.3745%" height="15" fill="rgb(229,12,44)" fg:x="216" fg:w="1"/><text x="81.1489%" y="366.50"></text></g><g><title>thread (0x306812000) (8 samples, 3.00%)</title><rect x="81.2734%" y="68" width="2.9963%" height="15" fill="rgb(210,145,37)" fg:x="217" fg:w="8"/><text x="81.5234%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (8 samples, 3.00%)</title><rect x="81.2734%" y="84" width="2.9963%" height="15" fill="rgb(227,112,52)" fg:x="217" fg:w="8"/><text x="81.5234%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (8 samples, 3.00%)</title><rect x="81.2734%" y="100" width="2.9963%" height="15" fill="rgb(238,155,34)" fg:x="217" fg:w="8"/><text x="81.5234%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (8 samples, 3.00%)</title><rect x="81.2734%" y="116" width="2.9963%" height="15" fill="rgb(239,226,36)" fg:x="217" fg:w="8"/><text x="81.5234%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (8 samples, 3.00%)</title><rect x="81.2734%" y="132" width="2.9963%" height="15" fill="rgb(230,16,23)" fg:x="217" fg:w="8"/><text x="81.5234%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (8 samples, 3.00%)</title><rect x="81.2734%" y="148" width="2.9963%" height="15" fill="rgb(236,171,36)" fg:x="217" fg:w="8"/><text x="81.5234%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (8 samples, 3.00%)</title><rect x="81.2734%" y="164" width="2.9963%" height="15" fill="rgb(221,22,14)" fg:x="217" fg:w="8"/><text x="81.5234%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (8 samples, 3.00%)</title><rect x="81.2734%" y="180" width="2.9963%" height="15" fill="rgb(242,43,11)" fg:x="217" fg:w="8"/><text x="81.5234%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (8 samples, 3.00%)</title><rect x="81.2734%" y="196" width="2.9963%" height="15" fill="rgb(232,69,23)" fg:x="217" fg:w="8"/><text x="81.5234%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="81.2734%" y="212" width="2.9963%" height="15" fill="rgb(216,180,54)" fg:x="217" fg:w="8"/><text x="81.5234%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (8 samples, 3.00%)</title><rect x="81.2734%" y="228" width="2.9963%" height="15" fill="rgb(216,5,24)" fg:x="217" fg:w="8"/><text x="81.5234%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (8 samples, 3.00%)</title><rect x="81.2734%" y="244" width="2.9963%" height="15" fill="rgb(225,89,9)" fg:x="217" fg:w="8"/><text x="81.5234%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="81.2734%" y="260" width="2.9963%" height="15" fill="rgb(243,75,33)" fg:x="217" fg:w="8"/><text x="81.5234%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 3.00%)</title><rect x="81.2734%" y="276" width="2.9963%" height="15" fill="rgb(247,141,45)" fg:x="217" fg:w="8"/><text x="81.5234%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 3.00%)</title><rect x="81.2734%" y="292" width="2.9963%" height="15" fill="rgb(232,177,36)" fg:x="217" fg:w="8"/><text x="81.5234%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (8 samples, 3.00%)</title><rect x="81.2734%" y="308" width="2.9963%" height="15" fill="rgb(219,125,36)" fg:x="217" fg:w="8"/><text x="81.5234%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 3.00%)</title><rect x="81.2734%" y="324" width="2.9963%" height="15" fill="rgb(227,94,9)" fg:x="217" fg:w="8"/><text x="81.5234%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 3.00%)</title><rect x="81.2734%" y="340" width="2.9963%" height="15" fill="rgb(240,34,52)" fg:x="217" fg:w="8"/><text x="81.5234%" y="350.50">unb..</text></g><g><title><listcomp> (numpy/lib/function_base.py:5150) (1 samples, 0.37%)</title><rect x="85.3933%" y="372" width="0.3745%" height="15" fill="rgb(216,45,12)" fg:x="228" fg:w="1"/><text x="85.6433%" y="382.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (3 samples, 1.12%)</title><rect x="85.7678%" y="372" width="1.1236%" height="15" fill="rgb(246,21,19)" fg:x="229" fg:w="3"/><text x="86.0178%" y="382.50"></text></g><g><title>thread (0x307815000) (9 samples, 3.37%)</title><rect x="84.2697%" y="68" width="3.3708%" height="15" fill="rgb(213,98,42)" fg:x="225" fg:w="9"/><text x="84.5197%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (9 samples, 3.37%)</title><rect x="84.2697%" y="84" width="3.3708%" height="15" fill="rgb(250,136,47)" fg:x="225" fg:w="9"/><text x="84.5197%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (9 samples, 3.37%)</title><rect x="84.2697%" y="100" width="3.3708%" height="15" fill="rgb(251,124,27)" fg:x="225" fg:w="9"/><text x="84.5197%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (9 samples, 3.37%)</title><rect x="84.2697%" y="116" width="3.3708%" height="15" fill="rgb(229,180,14)" fg:x="225" fg:w="9"/><text x="84.5197%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (9 samples, 3.37%)</title><rect x="84.2697%" y="132" width="3.3708%" height="15" fill="rgb(245,216,25)" fg:x="225" fg:w="9"/><text x="84.5197%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (9 samples, 3.37%)</title><rect x="84.2697%" y="148" width="3.3708%" height="15" fill="rgb(251,43,5)" fg:x="225" fg:w="9"/><text x="84.5197%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (9 samples, 3.37%)</title><rect x="84.2697%" y="164" width="3.3708%" height="15" fill="rgb(250,128,24)" fg:x="225" fg:w="9"/><text x="84.5197%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (9 samples, 3.37%)</title><rect x="84.2697%" y="180" width="3.3708%" height="15" fill="rgb(217,117,27)" fg:x="225" fg:w="9"/><text x="84.5197%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (9 samples, 3.37%)</title><rect x="84.2697%" y="196" width="3.3708%" height="15" fill="rgb(245,147,4)" fg:x="225" fg:w="9"/><text x="84.5197%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (9 samples, 3.37%)</title><rect x="84.2697%" y="212" width="3.3708%" height="15" fill="rgb(242,201,35)" fg:x="225" fg:w="9"/><text x="84.5197%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (9 samples, 3.37%)</title><rect x="84.2697%" y="228" width="3.3708%" height="15" fill="rgb(218,181,1)" fg:x="225" fg:w="9"/><text x="84.5197%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (9 samples, 3.37%)</title><rect x="84.2697%" y="244" width="3.3708%" height="15" fill="rgb(222,6,29)" fg:x="225" fg:w="9"/><text x="84.5197%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (9 samples, 3.37%)</title><rect x="84.2697%" y="260" width="3.3708%" height="15" fill="rgb(208,186,3)" fg:x="225" fg:w="9"/><text x="84.5197%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (9 samples, 3.37%)</title><rect x="84.2697%" y="276" width="3.3708%" height="15" fill="rgb(216,36,26)" fg:x="225" fg:w="9"/><text x="84.5197%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (9 samples, 3.37%)</title><rect x="84.2697%" y="292" width="3.3708%" height="15" fill="rgb(248,201,23)" fg:x="225" fg:w="9"/><text x="84.5197%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (9 samples, 3.37%)</title><rect x="84.2697%" y="308" width="3.3708%" height="15" fill="rgb(251,170,31)" fg:x="225" fg:w="9"/><text x="84.5197%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (9 samples, 3.37%)</title><rect x="84.2697%" y="324" width="3.3708%" height="15" fill="rgb(207,110,25)" fg:x="225" fg:w="9"/><text x="84.5197%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (9 samples, 3.37%)</title><rect x="84.2697%" y="340" width="3.3708%" height="15" fill="rgb(250,54,15)" fg:x="225" fg:w="9"/><text x="84.5197%" y="350.50">unb..</text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (6 samples, 2.25%)</title><rect x="85.3933%" y="356" width="2.2472%" height="15" fill="rgb(227,68,33)" fg:x="228" fg:w="6"/><text x="85.6433%" y="366.50">m..</text></g><g><title>broadcast_arrays (numpy/lib/stride_tricks.py:480) (2 samples, 0.75%)</title><rect x="86.8914%" y="372" width="0.7491%" height="15" fill="rgb(238,34,41)" fg:x="232" fg:w="2"/><text x="87.1414%" y="382.50"></text></g><g><title><listcomp> (numpy/lib/stride_tricks.py:546) (2 samples, 0.75%)</title><rect x="86.8914%" y="388" width="0.7491%" height="15" fill="rgb(220,11,15)" fg:x="232" fg:w="2"/><text x="87.1414%" y="398.50"></text></g><g><title>_broadcast_to (numpy/lib/stride_tricks.py:340) (2 samples, 0.75%)</title><rect x="86.8914%" y="404" width="0.7491%" height="15" fill="rgb(246,111,35)" fg:x="232" fg:w="2"/><text x="87.1414%" y="414.50"></text></g><g><title>iterable (numpy/lib/function_base.py:348) (1 samples, 0.37%)</title><rect x="87.2659%" y="420" width="0.3745%" height="15" fill="rgb(209,88,53)" fg:x="233" fg:w="1"/><text x="87.5159%" y="430.50"></text></g><g><title>thread (0x308818000) (7 samples, 2.62%)</title><rect x="87.6404%" y="68" width="2.6217%" height="15" fill="rgb(231,185,47)" fg:x="234" fg:w="7"/><text x="87.8904%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (7 samples, 2.62%)</title><rect x="87.6404%" y="84" width="2.6217%" height="15" fill="rgb(233,154,1)" fg:x="234" fg:w="7"/><text x="87.8904%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (7 samples, 2.62%)</title><rect x="87.6404%" y="100" width="2.6217%" height="15" fill="rgb(225,15,46)" fg:x="234" fg:w="7"/><text x="87.8904%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (7 samples, 2.62%)</title><rect x="87.6404%" y="116" width="2.6217%" height="15" fill="rgb(211,135,41)" fg:x="234" fg:w="7"/><text x="87.8904%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (7 samples, 2.62%)</title><rect x="87.6404%" y="132" width="2.6217%" height="15" fill="rgb(208,54,0)" fg:x="234" fg:w="7"/><text x="87.8904%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (7 samples, 2.62%)</title><rect x="87.6404%" y="148" width="2.6217%" height="15" fill="rgb(244,136,14)" fg:x="234" fg:w="7"/><text x="87.8904%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (7 samples, 2.62%)</title><rect x="87.6404%" y="164" width="2.6217%" height="15" fill="rgb(241,56,14)" fg:x="234" fg:w="7"/><text x="87.8904%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (7 samples, 2.62%)</title><rect x="87.6404%" y="180" width="2.6217%" height="15" fill="rgb(205,80,24)" fg:x="234" fg:w="7"/><text x="87.8904%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (7 samples, 2.62%)</title><rect x="87.6404%" y="196" width="2.6217%" height="15" fill="rgb(220,57,4)" fg:x="234" fg:w="7"/><text x="87.8904%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 2.62%)</title><rect x="87.6404%" y="212" width="2.6217%" height="15" fill="rgb(226,193,50)" fg:x="234" fg:w="7"/><text x="87.8904%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (7 samples, 2.62%)</title><rect x="87.6404%" y="228" width="2.6217%" height="15" fill="rgb(231,168,22)" fg:x="234" fg:w="7"/><text x="87.8904%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (7 samples, 2.62%)</title><rect x="87.6404%" y="244" width="2.6217%" height="15" fill="rgb(254,215,14)" fg:x="234" fg:w="7"/><text x="87.8904%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 2.62%)</title><rect x="87.6404%" y="260" width="2.6217%" height="15" fill="rgb(211,115,16)" fg:x="234" fg:w="7"/><text x="87.8904%" y="270.50">_e..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (7 samples, 2.62%)</title><rect x="87.6404%" y="276" width="2.6217%" height="15" fill="rgb(236,210,16)" fg:x="234" fg:w="7"/><text x="87.8904%" y="286.50">__..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (7 samples, 2.62%)</title><rect x="87.6404%" y="292" width="2.6217%" height="15" fill="rgb(221,94,12)" fg:x="234" fg:w="7"/><text x="87.8904%" y="302.50">ap..</text></g><g><title>f (qarray/df.py:105) (7 samples, 2.62%)</title><rect x="87.6404%" y="308" width="2.6217%" height="15" fill="rgb(235,218,49)" fg:x="234" fg:w="7"/><text x="87.8904%" y="318.50">f ..</text></g><g><title>to_pd (qarray/df.py:72) (7 samples, 2.62%)</title><rect x="87.6404%" y="324" width="2.6217%" height="15" fill="rgb(217,114,14)" fg:x="234" fg:w="7"/><text x="87.8904%" y="334.50">to..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 2.62%)</title><rect x="87.6404%" y="340" width="2.6217%" height="15" fill="rgb(216,145,22)" fg:x="234" fg:w="7"/><text x="87.8904%" y="350.50">un..</text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (2 samples, 0.75%)</title><rect x="89.5131%" y="356" width="0.7491%" height="15" fill="rgb(217,112,39)" fg:x="239" fg:w="2"/><text x="89.7631%" y="366.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (2 samples, 0.75%)</title><rect x="89.5131%" y="372" width="0.7491%" height="15" fill="rgb(225,85,32)" fg:x="239" fg:w="2"/><text x="89.7631%" y="382.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (2 samples, 0.75%)</title><rect x="90.2622%" y="340" width="0.7491%" height="15" fill="rgb(245,209,47)" fg:x="241" fg:w="2"/><text x="90.5122%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (2 samples, 0.75%)</title><rect x="90.2622%" y="356" width="0.7491%" height="15" fill="rgb(218,220,15)" fg:x="241" fg:w="2"/><text x="90.5122%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (2 samples, 0.75%)</title><rect x="90.2622%" y="372" width="0.7491%" height="15" fill="rgb(222,202,31)" fg:x="241" fg:w="2"/><text x="90.5122%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (2 samples, 0.75%)</title><rect x="90.2622%" y="388" width="0.7491%" height="15" fill="rgb(243,203,4)" fg:x="241" fg:w="2"/><text x="90.5122%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (2 samples, 0.75%)</title><rect x="90.2622%" y="404" width="0.7491%" height="15" fill="rgb(237,92,17)" fg:x="241" fg:w="2"/><text x="90.5122%" y="414.50"></text></g><g><title>thread (0x30D827000) (8 samples, 3.00%)</title><rect x="90.2622%" y="68" width="2.9963%" height="15" fill="rgb(231,119,7)" fg:x="241" fg:w="8"/><text x="90.5122%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (8 samples, 3.00%)</title><rect x="90.2622%" y="84" width="2.9963%" height="15" fill="rgb(237,82,41)" fg:x="241" fg:w="8"/><text x="90.5122%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (8 samples, 3.00%)</title><rect x="90.2622%" y="100" width="2.9963%" height="15" fill="rgb(226,81,48)" fg:x="241" fg:w="8"/><text x="90.5122%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (8 samples, 3.00%)</title><rect x="90.2622%" y="116" width="2.9963%" height="15" fill="rgb(234,70,51)" fg:x="241" fg:w="8"/><text x="90.5122%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (8 samples, 3.00%)</title><rect x="90.2622%" y="132" width="2.9963%" height="15" fill="rgb(251,86,4)" fg:x="241" fg:w="8"/><text x="90.5122%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (8 samples, 3.00%)</title><rect x="90.2622%" y="148" width="2.9963%" height="15" fill="rgb(244,144,28)" fg:x="241" fg:w="8"/><text x="90.5122%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (8 samples, 3.00%)</title><rect x="90.2622%" y="164" width="2.9963%" height="15" fill="rgb(232,161,39)" fg:x="241" fg:w="8"/><text x="90.5122%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (8 samples, 3.00%)</title><rect x="90.2622%" y="180" width="2.9963%" height="15" fill="rgb(247,34,51)" fg:x="241" fg:w="8"/><text x="90.5122%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (8 samples, 3.00%)</title><rect x="90.2622%" y="196" width="2.9963%" height="15" fill="rgb(225,132,2)" fg:x="241" fg:w="8"/><text x="90.5122%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="90.2622%" y="212" width="2.9963%" height="15" fill="rgb(209,159,44)" fg:x="241" fg:w="8"/><text x="90.5122%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (8 samples, 3.00%)</title><rect x="90.2622%" y="228" width="2.9963%" height="15" fill="rgb(251,214,1)" fg:x="241" fg:w="8"/><text x="90.5122%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (8 samples, 3.00%)</title><rect x="90.2622%" y="244" width="2.9963%" height="15" fill="rgb(247,84,47)" fg:x="241" fg:w="8"/><text x="90.5122%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="90.2622%" y="260" width="2.9963%" height="15" fill="rgb(240,111,43)" fg:x="241" fg:w="8"/><text x="90.5122%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 3.00%)</title><rect x="90.2622%" y="276" width="2.9963%" height="15" fill="rgb(215,214,35)" fg:x="241" fg:w="8"/><text x="90.5122%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 3.00%)</title><rect x="90.2622%" y="292" width="2.9963%" height="15" fill="rgb(248,207,23)" fg:x="241" fg:w="8"/><text x="90.5122%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (8 samples, 3.00%)</title><rect x="90.2622%" y="308" width="2.9963%" height="15" fill="rgb(214,186,4)" fg:x="241" fg:w="8"/><text x="90.5122%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 3.00%)</title><rect x="90.2622%" y="324" width="2.9963%" height="15" fill="rgb(220,133,22)" fg:x="241" fg:w="8"/><text x="90.5122%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (6 samples, 2.25%)</title><rect x="91.0112%" y="340" width="2.2472%" height="15" fill="rgb(239,134,19)" fg:x="243" fg:w="6"/><text x="91.2612%" y="350.50">u..</text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.37%)</title><rect x="93.2584%" y="340" width="0.3745%" height="15" fill="rgb(250,140,9)" fg:x="249" fg:w="1"/><text x="93.5084%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.37%)</title><rect x="93.2584%" y="356" width="0.3745%" height="15" fill="rgb(225,59,14)" fg:x="249" fg:w="1"/><text x="93.5084%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.37%)</title><rect x="93.2584%" y="372" width="0.3745%" height="15" fill="rgb(214,152,51)" fg:x="249" fg:w="1"/><text x="93.5084%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.37%)</title><rect x="93.2584%" y="388" width="0.3745%" height="15" fill="rgb(251,227,43)" fg:x="249" fg:w="1"/><text x="93.5084%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.37%)</title><rect x="93.2584%" y="404" width="0.3745%" height="15" fill="rgb(241,96,17)" fg:x="249" fg:w="1"/><text x="93.5084%" y="414.50"></text></g><g><title>thread (0x30E82A000) (8 samples, 3.00%)</title><rect x="93.2584%" y="68" width="2.9963%" height="15" fill="rgb(234,198,43)" fg:x="249" fg:w="8"/><text x="93.5084%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (8 samples, 3.00%)</title><rect x="93.2584%" y="84" width="2.9963%" height="15" fill="rgb(220,108,29)" fg:x="249" fg:w="8"/><text x="93.5084%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (8 samples, 3.00%)</title><rect x="93.2584%" y="100" width="2.9963%" height="15" fill="rgb(226,163,33)" fg:x="249" fg:w="8"/><text x="93.5084%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (8 samples, 3.00%)</title><rect x="93.2584%" y="116" width="2.9963%" height="15" fill="rgb(205,194,45)" fg:x="249" fg:w="8"/><text x="93.5084%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (8 samples, 3.00%)</title><rect x="93.2584%" y="132" width="2.9963%" height="15" fill="rgb(206,143,44)" fg:x="249" fg:w="8"/><text x="93.5084%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (8 samples, 3.00%)</title><rect x="93.2584%" y="148" width="2.9963%" height="15" fill="rgb(236,136,36)" fg:x="249" fg:w="8"/><text x="93.5084%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (8 samples, 3.00%)</title><rect x="93.2584%" y="164" width="2.9963%" height="15" fill="rgb(249,172,42)" fg:x="249" fg:w="8"/><text x="93.5084%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (8 samples, 3.00%)</title><rect x="93.2584%" y="180" width="2.9963%" height="15" fill="rgb(216,139,23)" fg:x="249" fg:w="8"/><text x="93.5084%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (8 samples, 3.00%)</title><rect x="93.2584%" y="196" width="2.9963%" height="15" fill="rgb(207,166,20)" fg:x="249" fg:w="8"/><text x="93.5084%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="93.2584%" y="212" width="2.9963%" height="15" fill="rgb(210,209,22)" fg:x="249" fg:w="8"/><text x="93.5084%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (8 samples, 3.00%)</title><rect x="93.2584%" y="228" width="2.9963%" height="15" fill="rgb(232,118,20)" fg:x="249" fg:w="8"/><text x="93.5084%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (8 samples, 3.00%)</title><rect x="93.2584%" y="244" width="2.9963%" height="15" fill="rgb(238,113,42)" fg:x="249" fg:w="8"/><text x="93.5084%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 3.00%)</title><rect x="93.2584%" y="260" width="2.9963%" height="15" fill="rgb(231,42,5)" fg:x="249" fg:w="8"/><text x="93.5084%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 3.00%)</title><rect x="93.2584%" y="276" width="2.9963%" height="15" fill="rgb(243,166,24)" fg:x="249" fg:w="8"/><text x="93.5084%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 3.00%)</title><rect x="93.2584%" y="292" width="2.9963%" height="15" fill="rgb(237,226,12)" fg:x="249" fg:w="8"/><text x="93.5084%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (8 samples, 3.00%)</title><rect x="93.2584%" y="308" width="2.9963%" height="15" fill="rgb(229,133,24)" fg:x="249" fg:w="8"/><text x="93.5084%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 3.00%)</title><rect x="93.2584%" y="324" width="2.9963%" height="15" fill="rgb(238,33,43)" fg:x="249" fg:w="8"/><text x="93.5084%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 2.62%)</title><rect x="93.6330%" y="340" width="2.6217%" height="15" fill="rgb(227,59,38)" fg:x="250" fg:w="7"/><text x="93.8830%" y="350.50">un..</text></g><g><title>from_records (pandas/core/frame.py:2175) (3 samples, 1.12%)</title><rect x="96.2547%" y="340" width="1.1236%" height="15" fill="rgb(230,97,0)" fg:x="257" fg:w="3"/><text x="96.5047%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (3 samples, 1.12%)</title><rect x="96.2547%" y="356" width="1.1236%" height="15" fill="rgb(250,173,50)" fg:x="257" fg:w="3"/><text x="96.5047%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (3 samples, 1.12%)</title><rect x="96.2547%" y="372" width="1.1236%" height="15" fill="rgb(240,15,50)" fg:x="257" fg:w="3"/><text x="96.5047%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (3 samples, 1.12%)</title><rect x="96.2547%" y="388" width="1.1236%" height="15" fill="rgb(221,93,22)" fg:x="257" fg:w="3"/><text x="96.5047%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (3 samples, 1.12%)</title><rect x="96.2547%" y="404" width="1.1236%" height="15" fill="rgb(245,180,53)" fg:x="257" fg:w="3"/><text x="96.5047%" y="414.50"></text></g><g><title>all (267 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(231,88,51)" fg:x="0" fg:w="267"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x30F82D000) (10 samples, 3.75%)</title><rect x="96.2547%" y="68" width="3.7453%" height="15" fill="rgb(240,58,21)" fg:x="257" fg:w="10"/><text x="96.5047%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (10 samples, 3.75%)</title><rect x="96.2547%" y="84" width="3.7453%" height="15" fill="rgb(237,21,10)" fg:x="257" fg:w="10"/><text x="96.5047%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (10 samples, 3.75%)</title><rect x="96.2547%" y="100" width="3.7453%" height="15" fill="rgb(218,43,11)" fg:x="257" fg:w="10"/><text x="96.5047%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (10 samples, 3.75%)</title><rect x="96.2547%" y="116" width="3.7453%" height="15" fill="rgb(218,221,29)" fg:x="257" fg:w="10"/><text x="96.5047%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (10 samples, 3.75%)</title><rect x="96.2547%" y="132" width="3.7453%" height="15" fill="rgb(214,118,42)" fg:x="257" fg:w="10"/><text x="96.5047%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (10 samples, 3.75%)</title><rect x="96.2547%" y="148" width="3.7453%" height="15" fill="rgb(251,200,26)" fg:x="257" fg:w="10"/><text x="96.5047%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (10 samples, 3.75%)</title><rect x="96.2547%" y="164" width="3.7453%" height="15" fill="rgb(237,101,39)" fg:x="257" fg:w="10"/><text x="96.5047%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (10 samples, 3.75%)</title><rect x="96.2547%" y="180" width="3.7453%" height="15" fill="rgb(251,117,11)" fg:x="257" fg:w="10"/><text x="96.5047%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (10 samples, 3.75%)</title><rect x="96.2547%" y="196" width="3.7453%" height="15" fill="rgb(216,223,23)" fg:x="257" fg:w="10"/><text x="96.5047%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (10 samples, 3.75%)</title><rect x="96.2547%" y="212" width="3.7453%" height="15" fill="rgb(251,54,12)" fg:x="257" fg:w="10"/><text x="96.5047%" y="222.50">_exe..</text></g><g><title>__call__ (dask/optimization.py:992) (10 samples, 3.75%)</title><rect x="96.2547%" y="228" width="3.7453%" height="15" fill="rgb(254,176,54)" fg:x="257" fg:w="10"/><text x="96.5047%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (10 samples, 3.75%)</title><rect x="96.2547%" y="244" width="3.7453%" height="15" fill="rgb(210,32,8)" fg:x="257" fg:w="10"/><text x="96.5047%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (10 samples, 3.75%)</title><rect x="96.2547%" y="260" width="3.7453%" height="15" fill="rgb(235,52,38)" fg:x="257" fg:w="10"/><text x="96.5047%" y="270.50">_exe..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (10 samples, 3.75%)</title><rect x="96.2547%" y="276" width="3.7453%" height="15" fill="rgb(231,4,44)" fg:x="257" fg:w="10"/><text x="96.5047%" y="286.50">__ca..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (10 samples, 3.75%)</title><rect x="96.2547%" y="292" width="3.7453%" height="15" fill="rgb(249,2,32)" fg:x="257" fg:w="10"/><text x="96.5047%" y="302.50">appl..</text></g><g><title>f (qarray/df.py:105) (10 samples, 3.75%)</title><rect x="96.2547%" y="308" width="3.7453%" height="15" fill="rgb(224,65,26)" fg:x="257" fg:w="10"/><text x="96.5047%" y="318.50">f (q..</text></g><g><title>to_pd (qarray/df.py:72) (10 samples, 3.75%)</title><rect x="96.2547%" y="324" width="3.7453%" height="15" fill="rgb(250,73,40)" fg:x="257" fg:w="10"/><text x="96.5047%" y="334.50">to_p..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 2.62%)</title><rect x="97.3783%" y="340" width="2.6217%" height="15" fill="rgb(253,177,16)" fg:x="260" fg:w="7"/><text x="97.6283%" y="350.50">un..</text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (2 samples, 0.75%)</title><rect x="99.2509%" y="356" width="0.7491%" height="15" fill="rgb(217,32,34)" fg:x="265" fg:w="2"/><text x="99.5009%" y="366.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (2 samples, 0.75%)</title><rect x="99.2509%" y="372" width="0.7491%" height="15" fill="rgb(212,7,10)" fg:x="265" fg:w="2"/><text x="99.5009%" y="382.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/compute_air.py-2024-03-03T07:50:18+05:30.svg b/perf_tests/compute_air.py-2024-03-03T07:50:18+05:30.svg new file mode 100644 index 0000000..7009d58 --- /dev/null +++ b/perf_tests/compute_air.py-2024-03-03T07:50:18+05:30.svg @@ -0,0 +1,415 @@ +<?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="2090" onload="init(evt)" viewBox="0 0 1200 2090" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2090" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./compute_air.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2079.00"> </text><svg id="frames" x="10" width="1180" total_samples="327"><g><title><module> (sqlglot/dialects/presto.py:1) (2 samples, 0.61%)</title><rect x="6.4220%" y="708" width="0.6116%" height="15" fill="rgb(227,0,7)" fg:x="21" fg:w="2"/><text x="6.6720%" y="718.50"></text></g><g><title>__new__ (sqlglot/dialects/dialect.py:72) (2 samples, 0.61%)</title><rect x="6.4220%" y="724" width="0.6116%" height="15" fill="rgb(217,0,24)" fg:x="21" fg:w="2"/><text x="6.6720%" y="734.50"></text></g><g><title><dictcomp> (sqlglot/dialects/dialect.py:110) (2 samples, 0.61%)</title><rect x="6.4220%" y="740" width="0.6116%" height="15" fill="rgb(221,193,54)" fg:x="21" fg:w="2"/><text x="6.6720%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="6.4220%" y="692" width="0.9174%" height="15" fill="rgb(248,212,6)" fg:x="21" fg:w="3"/><text x="6.6720%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/snowflake.py:1) (1 samples, 0.31%)</title><rect x="7.0336%" y="708" width="0.3058%" height="15" fill="rgb(208,68,35)" fg:x="23" fg:w="1"/><text x="7.2836%" y="718.50"></text></g><g><title>Snowflake (sqlglot/dialects/snowflake.py:202) (1 samples, 0.31%)</title><rect x="7.0336%" y="724" width="0.3058%" height="15" fill="rgb(232,128,0)" fg:x="23" fg:w="1"/><text x="7.2836%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.31%)</title><rect x="7.0336%" y="740" width="0.3058%" height="15" fill="rgb(207,160,47)" fg:x="23" fg:w="1"/><text x="7.2836%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.31%)</title><rect x="7.0336%" y="756" width="0.3058%" height="15" fill="rgb(228,23,34)" fg:x="23" fg:w="1"/><text x="7.2836%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.31%)</title><rect x="7.0336%" y="772" width="0.3058%" height="15" fill="rgb(218,30,26)" fg:x="23" fg:w="1"/><text x="7.2836%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.31%)</title><rect x="7.0336%" y="788" width="0.3058%" height="15" fill="rgb(220,122,19)" fg:x="23" fg:w="1"/><text x="7.2836%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="6.4220%" y="484" width="1.2232%" height="15" fill="rgb(250,228,42)" fg:x="21" fg:w="4"/><text x="6.6720%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="6.4220%" y="500" width="1.2232%" height="15" fill="rgb(240,193,28)" fg:x="21" fg:w="4"/><text x="6.6720%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="6.4220%" y="516" width="1.2232%" height="15" fill="rgb(216,20,37)" fg:x="21" fg:w="4"/><text x="6.6720%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="6.4220%" y="532" width="1.2232%" height="15" fill="rgb(206,188,39)" fg:x="21" fg:w="4"/><text x="6.6720%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="6.4220%" y="548" width="1.2232%" height="15" fill="rgb(217,207,13)" fg:x="21" fg:w="4"/><text x="6.6720%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="6.4220%" y="564" width="1.2232%" height="15" fill="rgb(231,73,38)" fg:x="21" fg:w="4"/><text x="6.6720%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="6.4220%" y="580" width="1.2232%" height="15" fill="rgb(225,20,46)" fg:x="21" fg:w="4"/><text x="6.6720%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="6.4220%" y="596" width="1.2232%" height="15" fill="rgb(210,31,41)" fg:x="21" fg:w="4"/><text x="6.6720%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (4 samples, 1.22%)</title><rect x="6.4220%" y="612" width="1.2232%" height="15" fill="rgb(221,200,47)" fg:x="21" fg:w="4"/><text x="6.6720%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="6.4220%" y="628" width="1.2232%" height="15" fill="rgb(226,26,5)" fg:x="21" fg:w="4"/><text x="6.6720%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="6.4220%" y="644" width="1.2232%" height="15" fill="rgb(249,33,26)" fg:x="21" fg:w="4"/><text x="6.6720%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="6.4220%" y="660" width="1.2232%" height="15" fill="rgb(235,183,28)" fg:x="21" fg:w="4"/><text x="6.6720%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="6.4220%" y="676" width="1.2232%" height="15" fill="rgb(221,5,38)" fg:x="21" fg:w="4"/><text x="6.6720%" y="686.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="7.3394%" y="692" width="0.3058%" height="15" fill="rgb(247,18,42)" fg:x="24" fg:w="1"/><text x="7.5894%" y="702.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.31%)</title><rect x="7.3394%" y="708" width="0.3058%" height="15" fill="rgb(241,131,45)" fg:x="24" fg:w="1"/><text x="7.5894%" y="718.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.31%)</title><rect x="7.3394%" y="724" width="0.3058%" height="15" fill="rgb(249,31,29)" fg:x="24" fg:w="1"/><text x="7.5894%" y="734.50"></text></g><g><title>TokenType (sqlglot/tokens.py:11) (2 samples, 0.61%)</title><rect x="7.6453%" y="708" width="0.6116%" height="15" fill="rgb(225,111,53)" fg:x="25" fg:w="2"/><text x="7.8953%" y="718.50"></text></g><g><title>__setitem__ (enum.py:88) (2 samples, 0.61%)</title><rect x="7.6453%" y="724" width="0.6116%" height="15" fill="rgb(238,160,17)" fg:x="25" fg:w="2"/><text x="7.8953%" y="734.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.31%)</title><rect x="8.2569%" y="708" width="0.3058%" height="15" fill="rgb(214,148,48)" fg:x="27" fg:w="1"/><text x="8.5069%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="6.4220%" y="372" width="2.4465%" height="15" fill="rgb(232,36,49)" fg:x="21" fg:w="8"/><text x="6.6720%" y="382.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="6.4220%" y="388" width="2.4465%" height="15" fill="rgb(209,103,24)" fg:x="21" fg:w="8"/><text x="6.6720%" y="398.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="6.4220%" y="404" width="2.4465%" height="15" fill="rgb(229,88,8)" fg:x="21" fg:w="8"/><text x="6.6720%" y="414.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="6.4220%" y="420" width="2.4465%" height="15" fill="rgb(213,181,19)" fg:x="21" fg:w="8"/><text x="6.6720%" y="430.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="6.4220%" y="436" width="2.4465%" height="15" fill="rgb(254,191,54)" fg:x="21" fg:w="8"/><text x="6.6720%" y="446.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="6.4220%" y="452" width="2.4465%" height="15" fill="rgb(241,83,37)" fg:x="21" fg:w="8"/><text x="6.6720%" y="462.50">_c..</text></g><g><title><module> (sqlglot/__init__.py:1) (8 samples, 2.45%)</title><rect x="6.4220%" y="468" width="2.4465%" height="15" fill="rgb(233,36,39)" fg:x="21" fg:w="8"/><text x="6.6720%" y="478.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.22%)</title><rect x="7.6453%" y="484" width="1.2232%" height="15" fill="rgb(226,3,54)" fg:x="25" fg:w="4"/><text x="7.8953%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="7.6453%" y="500" width="1.2232%" height="15" fill="rgb(245,192,40)" fg:x="25" fg:w="4"/><text x="7.8953%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="7.6453%" y="516" width="1.2232%" height="15" fill="rgb(238,167,29)" fg:x="25" fg:w="4"/><text x="7.8953%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="7.6453%" y="532" width="1.2232%" height="15" fill="rgb(232,182,51)" fg:x="25" fg:w="4"/><text x="7.8953%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="7.6453%" y="548" width="1.2232%" height="15" fill="rgb(231,60,39)" fg:x="25" fg:w="4"/><text x="7.8953%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="7.6453%" y="564" width="1.2232%" height="15" fill="rgb(208,69,12)" fg:x="25" fg:w="4"/><text x="7.8953%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="7.6453%" y="580" width="1.2232%" height="15" fill="rgb(235,93,37)" fg:x="25" fg:w="4"/><text x="7.8953%" y="590.50"></text></g><g><title><module> (sqlglot/expressions.py:1) (4 samples, 1.22%)</title><rect x="7.6453%" y="596" width="1.2232%" height="15" fill="rgb(213,116,39)" fg:x="25" fg:w="4"/><text x="7.8953%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="7.6453%" y="612" width="1.2232%" height="15" fill="rgb(222,207,29)" fg:x="25" fg:w="4"/><text x="7.8953%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="7.6453%" y="628" width="1.2232%" height="15" fill="rgb(206,96,30)" fg:x="25" fg:w="4"/><text x="7.8953%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="7.6453%" y="644" width="1.2232%" height="15" fill="rgb(218,138,4)" fg:x="25" fg:w="4"/><text x="7.8953%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="7.6453%" y="660" width="1.2232%" height="15" fill="rgb(250,191,14)" fg:x="25" fg:w="4"/><text x="7.8953%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="7.6453%" y="676" width="1.2232%" height="15" fill="rgb(239,60,40)" fg:x="25" fg:w="4"/><text x="7.8953%" y="686.50"></text></g><g><title><module> (sqlglot/tokens.py:1) (4 samples, 1.22%)</title><rect x="7.6453%" y="692" width="1.2232%" height="15" fill="rgb(206,27,48)" fg:x="25" fg:w="4"/><text x="7.8953%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="8.5627%" y="708" width="0.3058%" height="15" fill="rgb(225,35,8)" fg:x="28" fg:w="1"/><text x="8.8127%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="8.5627%" y="724" width="0.3058%" height="15" fill="rgb(250,213,24)" fg:x="28" fg:w="1"/><text x="8.8127%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="8.5627%" y="740" width="0.3058%" height="15" fill="rgb(247,123,22)" fg:x="28" fg:w="1"/><text x="8.8127%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="8.5627%" y="756" width="0.3058%" height="15" fill="rgb(231,138,38)" fg:x="28" fg:w="1"/><text x="8.8127%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="8.5627%" y="772" width="0.3058%" height="15" fill="rgb(231,145,46)" fg:x="28" fg:w="1"/><text x="8.8127%" y="782.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="8.5627%" y="788" width="0.3058%" height="15" fill="rgb(251,118,11)" fg:x="28" fg:w="1"/><text x="8.8127%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="8.8685%" y="532" width="0.3058%" height="15" fill="rgb(217,147,25)" fg:x="29" fg:w="1"/><text x="9.1185%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="8.8685%" y="548" width="0.3058%" height="15" fill="rgb(247,81,37)" fg:x="29" fg:w="1"/><text x="9.1185%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="8.8685%" y="564" width="0.3058%" height="15" fill="rgb(209,12,38)" fg:x="29" fg:w="1"/><text x="9.1185%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="8.8685%" y="580" width="0.3058%" height="15" fill="rgb(227,1,9)" fg:x="29" fg:w="1"/><text x="9.1185%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="8.8685%" y="596" width="0.3058%" height="15" fill="rgb(248,47,43)" fg:x="29" fg:w="1"/><text x="9.1185%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (1 samples, 0.31%)</title><rect x="8.8685%" y="612" width="0.3058%" height="15" fill="rgb(221,10,30)" fg:x="29" fg:w="1"/><text x="9.1185%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="8.8685%" y="628" width="0.3058%" height="15" fill="rgb(210,229,1)" fg:x="29" fg:w="1"/><text x="9.1185%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="8.8685%" y="644" width="0.3058%" height="15" fill="rgb(222,148,37)" fg:x="29" fg:w="1"/><text x="9.1185%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="8.8685%" y="660" width="0.3058%" height="15" fill="rgb(234,67,33)" fg:x="29" fg:w="1"/><text x="9.1185%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="8.8685%" y="676" width="0.3058%" height="15" fill="rgb(247,98,35)" fg:x="29" fg:w="1"/><text x="9.1185%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="8.8685%" y="692" width="0.3058%" height="15" fill="rgb(247,138,52)" fg:x="29" fg:w="1"/><text x="9.1185%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (1 samples, 0.31%)</title><rect x="8.8685%" y="708" width="0.3058%" height="15" fill="rgb(213,79,30)" fg:x="29" fg:w="1"/><text x="9.1185%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="8.8685%" y="724" width="0.3058%" height="15" fill="rgb(246,177,23)" fg:x="29" fg:w="1"/><text x="9.1185%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="8.8685%" y="740" width="0.3058%" height="15" fill="rgb(230,62,27)" fg:x="29" fg:w="1"/><text x="9.1185%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="8.8685%" y="756" width="0.3058%" height="15" fill="rgb(216,154,8)" fg:x="29" fg:w="1"/><text x="9.1185%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="8.8685%" y="772" width="0.3058%" height="15" fill="rgb(244,35,45)" fg:x="29" fg:w="1"/><text x="9.1185%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="8.8685%" y="788" width="0.3058%" height="15" fill="rgb(251,115,12)" fg:x="29" fg:w="1"/><text x="9.1185%" y="798.50"></text></g><g><title><module> (statistics.py:1) (1 samples, 0.31%)</title><rect x="8.8685%" y="804" width="0.3058%" height="15" fill="rgb(240,54,50)" fg:x="29" fg:w="1"/><text x="9.1185%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="8.8685%" y="820" width="0.3058%" height="15" fill="rgb(233,84,52)" fg:x="29" fg:w="1"/><text x="9.1185%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="8.8685%" y="836" width="0.3058%" height="15" fill="rgb(207,117,47)" fg:x="29" fg:w="1"/><text x="9.1185%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="8.8685%" y="852" width="0.3058%" height="15" fill="rgb(249,43,39)" fg:x="29" fg:w="1"/><text x="9.1185%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="8.8685%" y="868" width="0.3058%" height="15" fill="rgb(209,38,44)" fg:x="29" fg:w="1"/><text x="9.1185%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="8.8685%" y="884" width="0.3058%" height="15" fill="rgb(236,212,23)" fg:x="29" fg:w="1"/><text x="9.1185%" y="894.50"></text></g><g><title><module> (fractions.py:4) (1 samples, 0.31%)</title><rect x="8.8685%" y="900" width="0.3058%" height="15" fill="rgb(242,79,21)" fg:x="29" fg:w="1"/><text x="9.1185%" y="910.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.31%)</title><rect x="8.8685%" y="916" width="0.3058%" height="15" fill="rgb(211,96,35)" fg:x="29" fg:w="1"/><text x="9.1185%" y="926.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="8.8685%" y="932" width="0.3058%" height="15" fill="rgb(253,215,40)" fg:x="29" fg:w="1"/><text x="9.1185%" y="942.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.31%)</title><rect x="8.8685%" y="948" width="0.3058%" height="15" fill="rgb(211,81,21)" fg:x="29" fg:w="1"/><text x="9.1185%" y="958.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.31%)</title><rect x="8.8685%" y="964" width="0.3058%" height="15" fill="rgb(208,190,38)" fg:x="29" fg:w="1"/><text x="9.1185%" y="974.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="8.8685%" y="980" width="0.3058%" height="15" fill="rgb(235,213,38)" fg:x="29" fg:w="1"/><text x="9.1185%" y="990.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="8.8685%" y="996" width="0.3058%" height="15" fill="rgb(237,122,38)" fg:x="29" fg:w="1"/><text x="9.1185%" y="1006.50"></text></g><g><title>get (sre_parse.py:255) (1 samples, 0.31%)</title><rect x="8.8685%" y="1012" width="0.3058%" height="15" fill="rgb(244,218,35)" fg:x="29" fg:w="1"/><text x="9.1185%" y="1022.50"></text></g><g><title>__next (sre_parse.py:234) (1 samples, 0.31%)</title><rect x="8.8685%" y="1028" width="0.3058%" height="15" fill="rgb(240,68,47)" fg:x="29" fg:w="1"/><text x="9.1185%" y="1038.50"></text></g><g><title><module> (qarray/core.py:1) (10 samples, 3.06%)</title><rect x="6.4220%" y="276" width="3.0581%" height="15" fill="rgb(210,16,53)" fg:x="21" fg:w="10"/><text x="6.6720%" y="286.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.06%)</title><rect x="6.4220%" y="292" width="3.0581%" height="15" fill="rgb(235,124,12)" fg:x="21" fg:w="10"/><text x="6.6720%" y="302.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.06%)</title><rect x="6.4220%" y="308" width="3.0581%" height="15" fill="rgb(224,169,11)" fg:x="21" fg:w="10"/><text x="6.6720%" y="318.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.06%)</title><rect x="6.4220%" y="324" width="3.0581%" height="15" fill="rgb(250,166,2)" fg:x="21" fg:w="10"/><text x="6.6720%" y="334.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.06%)</title><rect x="6.4220%" y="340" width="3.0581%" height="15" fill="rgb(242,216,29)" fg:x="21" fg:w="10"/><text x="6.6720%" y="350.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.06%)</title><rect x="6.4220%" y="356" width="3.0581%" height="15" fill="rgb(230,116,27)" fg:x="21" fg:w="10"/><text x="6.6720%" y="366.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="8.8685%" y="372" width="0.6116%" height="15" fill="rgb(228,99,48)" fg:x="29" fg:w="2"/><text x="9.1185%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="8.8685%" y="388" width="0.6116%" height="15" fill="rgb(253,11,6)" fg:x="29" fg:w="2"/><text x="9.1185%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="8.8685%" y="404" width="0.6116%" height="15" fill="rgb(247,143,39)" fg:x="29" fg:w="2"/><text x="9.1185%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (2 samples, 0.61%)</title><rect x="8.8685%" y="420" width="0.6116%" height="15" fill="rgb(236,97,10)" fg:x="29" fg:w="2"/><text x="9.1185%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="8.8685%" y="436" width="0.6116%" height="15" fill="rgb(233,208,19)" fg:x="29" fg:w="2"/><text x="9.1185%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="8.8685%" y="452" width="0.6116%" height="15" fill="rgb(216,164,2)" fg:x="29" fg:w="2"/><text x="9.1185%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="8.8685%" y="468" width="0.6116%" height="15" fill="rgb(220,129,5)" fg:x="29" fg:w="2"/><text x="9.1185%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="8.8685%" y="484" width="0.6116%" height="15" fill="rgb(242,17,10)" fg:x="29" fg:w="2"/><text x="9.1185%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="8.8685%" y="500" width="0.6116%" height="15" fill="rgb(242,107,0)" fg:x="29" fg:w="2"/><text x="9.1185%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (2 samples, 0.61%)</title><rect x="8.8685%" y="516" width="0.6116%" height="15" fill="rgb(251,28,31)" fg:x="29" fg:w="2"/><text x="9.1185%" y="526.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="9.1743%" y="532" width="0.3058%" height="15" fill="rgb(233,223,10)" fg:x="30" fg:w="1"/><text x="9.4243%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="548" width="0.3058%" height="15" fill="rgb(215,21,27)" fg:x="30" fg:w="1"/><text x="9.4243%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.1743%" y="564" width="0.3058%" height="15" fill="rgb(232,23,21)" fg:x="30" fg:w="1"/><text x="9.4243%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.1743%" y="580" width="0.3058%" height="15" fill="rgb(244,5,23)" fg:x="30" fg:w="1"/><text x="9.4243%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.1743%" y="596" width="0.3058%" height="15" fill="rgb(226,81,46)" fg:x="30" fg:w="1"/><text x="9.4243%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.1743%" y="612" width="0.3058%" height="15" fill="rgb(247,70,30)" fg:x="30" fg:w="1"/><text x="9.4243%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="628" width="0.3058%" height="15" fill="rgb(212,68,19)" fg:x="30" fg:w="1"/><text x="9.4243%" y="638.50"></text></g><g><title><module> (sqlglot/planner.py:1) (1 samples, 0.31%)</title><rect x="9.1743%" y="644" width="0.3058%" height="15" fill="rgb(240,187,13)" fg:x="30" fg:w="1"/><text x="9.4243%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.1743%" y="660" width="0.3058%" height="15" fill="rgb(223,113,26)" fg:x="30" fg:w="1"/><text x="9.4243%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.1743%" y="676" width="0.3058%" height="15" fill="rgb(206,192,2)" fg:x="30" fg:w="1"/><text x="9.4243%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="692" width="0.3058%" height="15" fill="rgb(241,108,4)" fg:x="30" fg:w="1"/><text x="9.4243%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.1743%" y="708" width="0.3058%" height="15" fill="rgb(247,173,49)" fg:x="30" fg:w="1"/><text x="9.4243%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.1743%" y="724" width="0.3058%" height="15" fill="rgb(224,114,35)" fg:x="30" fg:w="1"/><text x="9.4243%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.1743%" y="740" width="0.3058%" height="15" fill="rgb(245,159,27)" fg:x="30" fg:w="1"/><text x="9.4243%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.1743%" y="756" width="0.3058%" height="15" fill="rgb(245,172,44)" fg:x="30" fg:w="1"/><text x="9.4243%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="772" width="0.3058%" height="15" fill="rgb(236,23,11)" fg:x="30" fg:w="1"/><text x="9.4243%" y="782.50"></text></g><g><title><module> (sqlglot/optimizer/__init__.py:1) (1 samples, 0.31%)</title><rect x="9.1743%" y="788" width="0.3058%" height="15" fill="rgb(205,117,38)" fg:x="30" fg:w="1"/><text x="9.4243%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.1743%" y="804" width="0.3058%" height="15" fill="rgb(237,72,25)" fg:x="30" fg:w="1"/><text x="9.4243%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.1743%" y="820" width="0.3058%" height="15" fill="rgb(244,70,9)" fg:x="30" fg:w="1"/><text x="9.4243%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.1743%" y="836" width="0.3058%" height="15" fill="rgb(217,125,39)" fg:x="30" fg:w="1"/><text x="9.4243%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.1743%" y="852" width="0.3058%" height="15" fill="rgb(235,36,10)" fg:x="30" fg:w="1"/><text x="9.4243%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="868" width="0.3058%" height="15" fill="rgb(251,123,47)" fg:x="30" fg:w="1"/><text x="9.4243%" y="878.50"></text></g><g><title><module> (sqlglot/optimizer/optimizer.py:1) (1 samples, 0.31%)</title><rect x="9.1743%" y="884" width="0.3058%" height="15" fill="rgb(221,13,13)" fg:x="30" fg:w="1"/><text x="9.4243%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.1743%" y="900" width="0.3058%" height="15" fill="rgb(238,131,9)" fg:x="30" fg:w="1"/><text x="9.4243%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.1743%" y="916" width="0.3058%" height="15" fill="rgb(211,50,8)" fg:x="30" fg:w="1"/><text x="9.4243%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.1743%" y="932" width="0.3058%" height="15" fill="rgb(245,182,24)" fg:x="30" fg:w="1"/><text x="9.4243%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.1743%" y="948" width="0.3058%" height="15" fill="rgb(242,14,37)" fg:x="30" fg:w="1"/><text x="9.4243%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.1743%" y="964" width="0.3058%" height="15" fill="rgb(246,228,12)" fg:x="30" fg:w="1"/><text x="9.4243%" y="974.50"></text></g><g><title><module> (sqlglot/optimizer/annotate_types.py:1) (1 samples, 0.31%)</title><rect x="9.1743%" y="980" width="0.3058%" height="15" fill="rgb(213,55,15)" fg:x="30" fg:w="1"/><text x="9.4243%" y="990.50"></text></g><g><title>TypeAnnotator (sqlglot/optimizer/annotate_types.py:155) (1 samples, 0.31%)</title><rect x="9.1743%" y="996" width="0.3058%" height="15" fill="rgb(209,9,3)" fg:x="30" fg:w="1"/><text x="9.4243%" y="1006.50"></text></g><g><title><dictcomp> (sqlglot/optimizer/annotate_types.py:265) (1 samples, 0.31%)</title><rect x="9.1743%" y="1012" width="0.3058%" height="15" fill="rgb(230,59,30)" fg:x="30" fg:w="1"/><text x="9.4243%" y="1022.50"></text></g><g><title>_annotate_with_type_lambda (sqlglot/optimizer/annotate_types.py:59) (1 samples, 0.31%)</title><rect x="9.1743%" y="1028" width="0.3058%" height="15" fill="rgb(209,121,21)" fg:x="30" fg:w="1"/><text x="9.4243%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.4801%" y="1012" width="0.3058%" height="15" fill="rgb(220,109,13)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.4801%" y="1028" width="0.3058%" height="15" fill="rgb(232,18,1)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.4801%" y="1044" width="0.3058%" height="15" fill="rgb(215,41,42)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.4801%" y="1060" width="0.3058%" height="15" fill="rgb(224,123,36)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.4801%" y="1076" width="0.3058%" height="15" fill="rgb(240,125,3)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1086.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="9.4801%" y="1092" width="0.3058%" height="15" fill="rgb(205,98,50)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1102.50"></text></g><g><title>_validate_timestamp_pyc (<frozen importlib._bootstrap_external>:593) (1 samples, 0.31%)</title><rect x="9.4801%" y="1108" width="0.3058%" height="15" fill="rgb(205,185,37)" fg:x="31" fg:w="1"/><text x="9.7301%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.7859%" y="1076" width="0.3058%" height="15" fill="rgb(238,207,15)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.7859%" y="1092" width="0.3058%" height="15" fill="rgb(213,199,42)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.7859%" y="1108" width="0.3058%" height="15" fill="rgb(235,201,11)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="9.7859%" y="1124" width="0.3058%" height="15" fill="rgb(207,46,11)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.7859%" y="1140" width="0.3058%" height="15" fill="rgb(241,35,35)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1150.50"></text></g><g><title><module> (scipy/sparse/_lil.py:1) (1 samples, 0.31%)</title><rect x="9.7859%" y="1156" width="0.3058%" height="15" fill="rgb(243,32,47)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="9.7859%" y="1172" width="0.3058%" height="15" fill="rgb(247,202,23)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.7859%" y="1188" width="0.3058%" height="15" fill="rgb(219,102,11)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="9.7859%" y="1204" width="0.3058%" height="15" fill="rgb(243,110,44)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="9.7859%" y="1220" width="0.3058%" height="15" fill="rgb(222,74,54)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="9.7859%" y="1236" width="0.3058%" height="15" fill="rgb(216,99,12)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1246.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="9.7859%" y="1252" width="0.3058%" height="15" fill="rgb(226,22,26)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="9.7859%" y="1268" width="0.3058%" height="15" fill="rgb(217,163,10)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="9.7859%" y="1284" width="0.3058%" height="15" fill="rgb(213,25,53)" fg:x="32" fg:w="1"/><text x="10.0359%" y="1294.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (5 samples, 1.53%)</title><rect x="10.0917%" y="1572" width="1.5291%" height="15" fill="rgb(252,105,26)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.53%)</title><rect x="10.0917%" y="1588" width="1.5291%" height="15" fill="rgb(220,39,43)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.53%)</title><rect x="10.0917%" y="1604" width="1.5291%" height="15" fill="rgb(229,68,48)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.53%)</title><rect x="10.0917%" y="1620" width="1.5291%" height="15" fill="rgb(252,8,32)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.53%)</title><rect x="10.0917%" y="1636" width="1.5291%" height="15" fill="rgb(223,20,43)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1646.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (5 samples, 1.53%)</title><rect x="10.0917%" y="1652" width="1.5291%" height="15" fill="rgb(229,81,49)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1662.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (5 samples, 1.53%)</title><rect x="10.0917%" y="1668" width="1.5291%" height="15" fill="rgb(236,28,36)" fg:x="33" fg:w="5"/><text x="10.3417%" y="1678.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="11.6208%" y="1812" width="0.6116%" height="15" fill="rgb(249,185,26)" fg:x="38" fg:w="2"/><text x="11.8708%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="11.6208%" y="1828" width="0.6116%" height="15" fill="rgb(249,174,33)" fg:x="38" fg:w="2"/><text x="11.8708%" y="1838.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 1.22%)</title><rect x="11.6208%" y="1732" width="1.2232%" height="15" fill="rgb(233,201,37)" fg:x="38" fg:w="4"/><text x="11.8708%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="11.6208%" y="1748" width="1.2232%" height="15" fill="rgb(221,78,26)" fg:x="38" fg:w="4"/><text x="11.8708%" y="1758.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="11.6208%" y="1764" width="1.2232%" height="15" fill="rgb(250,127,30)" fg:x="38" fg:w="4"/><text x="11.8708%" y="1774.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="11.6208%" y="1780" width="1.2232%" height="15" fill="rgb(230,49,44)" fg:x="38" fg:w="4"/><text x="11.8708%" y="1790.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="11.6208%" y="1796" width="1.2232%" height="15" fill="rgb(229,67,23)" fg:x="38" fg:w="4"/><text x="11.8708%" y="1806.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="12.2324%" y="1812" width="0.6116%" height="15" fill="rgb(249,83,47)" fg:x="40" fg:w="2"/><text x="12.4824%" y="1822.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="12.2324%" y="1828" width="0.6116%" height="15" fill="rgb(215,43,3)" fg:x="40" fg:w="2"/><text x="12.4824%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="12.2324%" y="1844" width="0.6116%" height="15" fill="rgb(238,154,13)" fg:x="40" fg:w="2"/><text x="12.4824%" y="1854.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.31%)</title><rect x="12.8440%" y="1812" width="0.3058%" height="15" fill="rgb(219,56,2)" fg:x="42" fg:w="1"/><text x="13.0940%" y="1822.50"></text></g><g><title><module> (scipy/linalg/_basic.py:7) (2 samples, 0.61%)</title><rect x="12.8440%" y="1764" width="0.6116%" height="15" fill="rgb(233,0,4)" fg:x="42" fg:w="2"/><text x="13.0940%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="12.8440%" y="1780" width="0.6116%" height="15" fill="rgb(235,30,7)" fg:x="42" fg:w="2"/><text x="13.0940%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="12.8440%" y="1796" width="0.6116%" height="15" fill="rgb(250,79,13)" fg:x="42" fg:w="2"/><text x="13.0940%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="13.1498%" y="1812" width="0.3058%" height="15" fill="rgb(211,146,34)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1822.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="13.1498%" y="1828" width="0.3058%" height="15" fill="rgb(228,22,38)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1838.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.31%)</title><rect x="13.1498%" y="1844" width="0.3058%" height="15" fill="rgb(235,168,5)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1854.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.31%)</title><rect x="13.1498%" y="1860" width="0.3058%" height="15" fill="rgb(221,155,16)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1870.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.31%)</title><rect x="13.1498%" y="1876" width="0.3058%" height="15" fill="rgb(215,215,53)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1886.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.31%)</title><rect x="13.1498%" y="1892" width="0.3058%" height="15" fill="rgb(223,4,10)" fg:x="43" fg:w="1"/><text x="13.3998%" y="1902.50"></text></g><g><title><module> (scipy/linalg/_decomp_lu.py:1) (1 samples, 0.31%)</title><rect x="13.4557%" y="1764" width="0.3058%" height="15" fill="rgb(234,103,6)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="13.4557%" y="1780" width="0.3058%" height="15" fill="rgb(227,97,0)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="13.4557%" y="1796" width="0.3058%" height="15" fill="rgb(234,150,53)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="13.4557%" y="1812" width="0.3058%" height="15" fill="rgb(228,201,54)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1822.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="13.4557%" y="1828" width="0.3058%" height="15" fill="rgb(222,22,37)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1838.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="13.4557%" y="1844" width="0.3058%" height="15" fill="rgb(237,53,32)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1854.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="13.4557%" y="1860" width="0.3058%" height="15" fill="rgb(233,25,53)" fg:x="44" fg:w="1"/><text x="13.7057%" y="1870.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="11.6208%" y="1684" width="2.7523%" height="15" fill="rgb(210,40,34)" fg:x="38" fg:w="9"/><text x="11.8708%" y="1694.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="11.6208%" y="1700" width="2.7523%" height="15" fill="rgb(241,220,44)" fg:x="38" fg:w="9"/><text x="11.8708%" y="1710.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="11.6208%" y="1716" width="2.7523%" height="15" fill="rgb(235,28,35)" fg:x="38" fg:w="9"/><text x="11.8708%" y="1726.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.53%)</title><rect x="12.8440%" y="1732" width="1.5291%" height="15" fill="rgb(210,56,17)" fg:x="42" fg:w="5"/><text x="13.0940%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.53%)</title><rect x="12.8440%" y="1748" width="1.5291%" height="15" fill="rgb(224,130,29)" fg:x="42" fg:w="5"/><text x="13.0940%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_matfuncs.py:4) (2 samples, 0.61%)</title><rect x="13.7615%" y="1764" width="0.6116%" height="15" fill="rgb(235,212,8)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="13.7615%" y="1780" width="0.6116%" height="15" fill="rgb(223,33,50)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="13.7615%" y="1796" width="0.6116%" height="15" fill="rgb(219,149,13)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="13.7615%" y="1812" width="0.6116%" height="15" fill="rgb(250,156,29)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1822.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="13.7615%" y="1828" width="0.6116%" height="15" fill="rgb(216,193,19)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1838.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="13.7615%" y="1844" width="0.6116%" height="15" fill="rgb(216,135,14)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1854.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="13.7615%" y="1860" width="0.6116%" height="15" fill="rgb(241,47,5)" fg:x="45" fg:w="2"/><text x="14.0115%" y="1870.50"></text></g><g><title><module> (dask/array/chunk_types.py:1) (19 samples, 5.81%)</title><rect x="9.4801%" y="964" width="5.8104%" height="15" fill="rgb(233,42,35)" fg:x="31" fg:w="19"/><text x="9.7301%" y="974.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 5.81%)</title><rect x="9.4801%" y="980" width="5.8104%" height="15" fill="rgb(231,13,6)" fg:x="31" fg:w="19"/><text x="9.7301%" y="990.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 5.81%)</title><rect x="9.4801%" y="996" width="5.8104%" height="15" fill="rgb(207,181,40)" fg:x="31" fg:w="19"/><text x="9.7301%" y="1006.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 5.50%)</title><rect x="9.7859%" y="1012" width="5.5046%" height="15" fill="rgb(254,173,49)" fg:x="32" fg:w="18"/><text x="10.0359%" y="1022.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 5.50%)</title><rect x="9.7859%" y="1028" width="5.5046%" height="15" fill="rgb(221,1,38)" fg:x="32" fg:w="18"/><text x="10.0359%" y="1038.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 5.50%)</title><rect x="9.7859%" y="1044" width="5.5046%" height="15" fill="rgb(206,124,46)" fg:x="32" fg:w="18"/><text x="10.0359%" y="1054.50">_call_w..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (18 samples, 5.50%)</title><rect x="9.7859%" y="1060" width="5.5046%" height="15" fill="rgb(249,21,11)" fg:x="32" fg:w="18"/><text x="10.0359%" y="1070.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (17 samples, 5.20%)</title><rect x="10.0917%" y="1076" width="5.1988%" height="15" fill="rgb(222,201,40)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1086.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1092" width="5.1988%" height="15" fill="rgb(235,61,29)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1102.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.20%)</title><rect x="10.0917%" y="1108" width="5.1988%" height="15" fill="rgb(219,207,3)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1118.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.20%)</title><rect x="10.0917%" y="1124" width="5.1988%" height="15" fill="rgb(222,56,46)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1134.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.20%)</title><rect x="10.0917%" y="1140" width="5.1988%" height="15" fill="rgb(239,76,54)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1150.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.20%)</title><rect x="10.0917%" y="1156" width="5.1988%" height="15" fill="rgb(231,124,27)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1166.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1172" width="5.1988%" height="15" fill="rgb(249,195,6)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1182.50">_call_..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (17 samples, 5.20%)</title><rect x="10.0917%" y="1188" width="5.1988%" height="15" fill="rgb(237,174,47)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1198.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.20%)</title><rect x="10.0917%" y="1204" width="5.1988%" height="15" fill="rgb(206,201,31)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1214.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.20%)</title><rect x="10.0917%" y="1220" width="5.1988%" height="15" fill="rgb(231,57,52)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1230.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.20%)</title><rect x="10.0917%" y="1236" width="5.1988%" height="15" fill="rgb(248,177,22)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1246.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.20%)</title><rect x="10.0917%" y="1252" width="5.1988%" height="15" fill="rgb(215,211,37)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1262.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1268" width="5.1988%" height="15" fill="rgb(241,128,51)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1278.50">_call_..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (17 samples, 5.20%)</title><rect x="10.0917%" y="1284" width="5.1988%" height="15" fill="rgb(227,165,31)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1294.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.20%)</title><rect x="10.0917%" y="1300" width="5.1988%" height="15" fill="rgb(228,167,24)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1310.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.20%)</title><rect x="10.0917%" y="1316" width="5.1988%" height="15" fill="rgb(228,143,12)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1326.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.20%)</title><rect x="10.0917%" y="1332" width="5.1988%" height="15" fill="rgb(249,149,8)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1342.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.20%)</title><rect x="10.0917%" y="1348" width="5.1988%" height="15" fill="rgb(243,35,44)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1358.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1364" width="5.1988%" height="15" fill="rgb(246,89,9)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1374.50">_call_..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (17 samples, 5.20%)</title><rect x="10.0917%" y="1380" width="5.1988%" height="15" fill="rgb(233,213,13)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1390.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.20%)</title><rect x="10.0917%" y="1396" width="5.1988%" height="15" fill="rgb(233,141,41)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1406.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.20%)</title><rect x="10.0917%" y="1412" width="5.1988%" height="15" fill="rgb(239,167,4)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1422.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.20%)</title><rect x="10.0917%" y="1428" width="5.1988%" height="15" fill="rgb(209,217,16)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1438.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.20%)</title><rect x="10.0917%" y="1444" width="5.1988%" height="15" fill="rgb(219,88,35)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1454.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1460" width="5.1988%" height="15" fill="rgb(220,193,23)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1470.50">_call_..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (17 samples, 5.20%)</title><rect x="10.0917%" y="1476" width="5.1988%" height="15" fill="rgb(230,90,52)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1486.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.20%)</title><rect x="10.0917%" y="1492" width="5.1988%" height="15" fill="rgb(252,106,19)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1502.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.20%)</title><rect x="10.0917%" y="1508" width="5.1988%" height="15" fill="rgb(206,74,20)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1518.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.20%)</title><rect x="10.0917%" y="1524" width="5.1988%" height="15" fill="rgb(230,138,44)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1534.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.20%)</title><rect x="10.0917%" y="1540" width="5.1988%" height="15" fill="rgb(235,182,43)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1550.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.20%)</title><rect x="10.0917%" y="1556" width="5.1988%" height="15" fill="rgb(242,16,51)" fg:x="33" fg:w="17"/><text x="10.3417%" y="1566.50">_call_..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (12 samples, 3.67%)</title><rect x="11.6208%" y="1572" width="3.6697%" height="15" fill="rgb(248,9,4)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1582.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.67%)</title><rect x="11.6208%" y="1588" width="3.6697%" height="15" fill="rgb(210,31,22)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1598.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.67%)</title><rect x="11.6208%" y="1604" width="3.6697%" height="15" fill="rgb(239,54,39)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1614.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.67%)</title><rect x="11.6208%" y="1620" width="3.6697%" height="15" fill="rgb(230,99,41)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1630.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.67%)</title><rect x="11.6208%" y="1636" width="3.6697%" height="15" fill="rgb(253,106,12)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1646.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.67%)</title><rect x="11.6208%" y="1652" width="3.6697%" height="15" fill="rgb(213,46,41)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1662.50">_cal..</text></g><g><title><module> (scipy/linalg/__init__.py:1) (12 samples, 3.67%)</title><rect x="11.6208%" y="1668" width="3.6697%" height="15" fill="rgb(215,133,35)" fg:x="38" fg:w="12"/><text x="11.8708%" y="1678.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="14.3731%" y="1684" width="0.9174%" height="15" fill="rgb(213,28,5)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="1700" width="0.9174%" height="15" fill="rgb(215,77,49)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="14.3731%" y="1716" width="0.9174%" height="15" fill="rgb(248,100,22)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="14.3731%" y="1732" width="0.9174%" height="15" fill="rgb(208,67,9)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="14.3731%" y="1748" width="0.9174%" height="15" fill="rgb(219,133,21)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="14.3731%" y="1764" width="0.9174%" height="15" fill="rgb(246,46,29)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="1780" width="0.9174%" height="15" fill="rgb(246,185,52)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1790.50"></text></g><g><title><module> (scipy/linalg/flinalg.py:3) (3 samples, 0.92%)</title><rect x="14.3731%" y="1796" width="0.9174%" height="15" fill="rgb(252,136,11)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1806.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="14.3731%" y="1812" width="0.9174%" height="15" fill="rgb(219,138,53)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="1828" width="0.9174%" height="15" fill="rgb(211,51,23)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="14.3731%" y="1844" width="0.9174%" height="15" fill="rgb(247,221,28)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="14.3731%" y="1860" width="0.9174%" height="15" fill="rgb(251,222,45)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="14.3731%" y="1876" width="0.9174%" height="15" fill="rgb(217,162,53)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="14.3731%" y="1892" width="0.9174%" height="15" fill="rgb(229,93,14)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="1908" width="0.9174%" height="15" fill="rgb(209,67,49)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1918.50"></text></g><g><title><module> (scipy/linalg/_flinalg_py.py:5) (3 samples, 0.92%)</title><rect x="14.3731%" y="1924" width="0.9174%" height="15" fill="rgb(213,87,29)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="14.3731%" y="1940" width="0.9174%" height="15" fill="rgb(205,151,52)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="1956" width="0.9174%" height="15" fill="rgb(253,215,39)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="14.3731%" y="1972" width="0.9174%" height="15" fill="rgb(221,220,41)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="14.3731%" y="1988" width="0.9174%" height="15" fill="rgb(218,133,21)" fg:x="47" fg:w="3"/><text x="14.6231%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="14.3731%" y="2004" width="0.9174%" height="15" fill="rgb(221,193,43)" fg:x="47" fg:w="3"/><text x="14.6231%" y="2014.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.92%)</title><rect x="14.3731%" y="2020" width="0.9174%" height="15" fill="rgb(240,128,52)" fg:x="47" fg:w="3"/><text x="14.6231%" y="2030.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.92%)</title><rect x="14.3731%" y="2036" width="0.9174%" height="15" fill="rgb(253,114,12)" fg:x="47" fg:w="3"/><text x="14.6231%" y="2046.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="14.3731%" y="2052" width="0.9174%" height="15" fill="rgb(215,223,47)" fg:x="47" fg:w="3"/><text x="14.6231%" y="2062.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 6.73%)</title><rect x="9.4801%" y="852" width="6.7278%" height="15" fill="rgb(248,225,23)" fg:x="31" fg:w="22"/><text x="9.7301%" y="862.50">_call_wit..</text></g><g><title><module> (dask/array/core.py:1) (22 samples, 6.73%)</title><rect x="9.4801%" y="868" width="6.7278%" height="15" fill="rgb(250,108,0)" fg:x="31" fg:w="22"/><text x="9.7301%" y="878.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 6.73%)</title><rect x="9.4801%" y="884" width="6.7278%" height="15" fill="rgb(228,208,7)" fg:x="31" fg:w="22"/><text x="9.7301%" y="894.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (22 samples, 6.73%)</title><rect x="9.4801%" y="900" width="6.7278%" height="15" fill="rgb(244,45,10)" fg:x="31" fg:w="22"/><text x="9.7301%" y="910.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (22 samples, 6.73%)</title><rect x="9.4801%" y="916" width="6.7278%" height="15" fill="rgb(207,125,25)" fg:x="31" fg:w="22"/><text x="9.7301%" y="926.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (22 samples, 6.73%)</title><rect x="9.4801%" y="932" width="6.7278%" height="15" fill="rgb(210,195,18)" fg:x="31" fg:w="22"/><text x="9.7301%" y="942.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 6.73%)</title><rect x="9.4801%" y="948" width="6.7278%" height="15" fill="rgb(249,80,12)" fg:x="31" fg:w="22"/><text x="9.7301%" y="958.50">_call_wit..</text></g><g><title><module> (dask/sizeof.py:1) (3 samples, 0.92%)</title><rect x="15.2905%" y="964" width="0.9174%" height="15" fill="rgb(221,65,9)" fg:x="50" fg:w="3"/><text x="15.5405%" y="974.50"></text></g><g><title>_register_entry_point_plugins (dask/sizeof.py:261) (3 samples, 0.92%)</title><rect x="15.2905%" y="980" width="0.9174%" height="15" fill="rgb(235,49,36)" fg:x="50" fg:w="3"/><text x="15.5405%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:936) (3 samples, 0.92%)</title><rect x="15.2905%" y="996" width="0.9174%" height="15" fill="rgb(225,32,20)" fg:x="50" fg:w="3"/><text x="15.5405%" y="1006.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:945) (3 samples, 0.92%)</title><rect x="15.2905%" y="1012" width="0.9174%" height="15" fill="rgb(215,141,46)" fg:x="50" fg:w="3"/><text x="15.5405%" y="1022.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (3 samples, 0.92%)</title><rect x="15.2905%" y="1028" width="0.9174%" height="15" fill="rgb(250,160,47)" fg:x="50" fg:w="3"/><text x="15.5405%" y="1038.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (3 samples, 0.92%)</title><rect x="15.2905%" y="1044" width="0.9174%" height="15" fill="rgb(216,222,40)" fg:x="50" fg:w="3"/><text x="15.5405%" y="1054.50"></text></g><g><title>read_text (pathlib.py:1262) (2 samples, 0.61%)</title><rect x="15.5963%" y="1060" width="0.6116%" height="15" fill="rgb(234,217,39)" fg:x="51" fg:w="2"/><text x="15.8463%" y="1070.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.31%)</title><rect x="15.9021%" y="1076" width="0.3058%" height="15" fill="rgb(207,178,40)" fg:x="52" fg:w="1"/><text x="16.1521%" y="1086.50"></text></g><g><title>__fspath__ (pathlib.py:752) (1 samples, 0.31%)</title><rect x="15.9021%" y="1092" width="0.3058%" height="15" fill="rgb(221,136,13)" fg:x="52" fg:w="1"/><text x="16.1521%" y="1102.50"></text></g><g><title>__str__ (pathlib.py:742) (1 samples, 0.31%)</title><rect x="15.9021%" y="1108" width="0.3058%" height="15" fill="rgb(249,199,10)" fg:x="52" fg:w="1"/><text x="16.1521%" y="1118.50"></text></g><g><title>_format_parsed_parts (pathlib.py:725) (1 samples, 0.31%)</title><rect x="15.9021%" y="1124" width="0.3058%" height="15" fill="rgb(249,222,13)" fg:x="52" fg:w="1"/><text x="16.1521%" y="1134.50"></text></g><g><title><module> (dask/array/backends.py:1) (23 samples, 7.03%)</title><rect x="9.4801%" y="772" width="7.0336%" height="15" fill="rgb(244,185,38)" fg:x="31" fg:w="23"/><text x="9.7301%" y="782.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (23 samples, 7.03%)</title><rect x="9.4801%" y="788" width="7.0336%" height="15" fill="rgb(236,202,9)" fg:x="31" fg:w="23"/><text x="9.7301%" y="798.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (23 samples, 7.03%)</title><rect x="9.4801%" y="804" width="7.0336%" height="15" fill="rgb(250,229,37)" fg:x="31" fg:w="23"/><text x="9.7301%" y="814.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (23 samples, 7.03%)</title><rect x="9.4801%" y="820" width="7.0336%" height="15" fill="rgb(206,174,23)" fg:x="31" fg:w="23"/><text x="9.7301%" y="830.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (23 samples, 7.03%)</title><rect x="9.4801%" y="836" width="7.0336%" height="15" fill="rgb(211,33,43)" fg:x="31" fg:w="23"/><text x="9.7301%" y="846.50">exec_modu..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="16.2080%" y="852" width="0.3058%" height="15" fill="rgb(245,58,50)" fg:x="53" fg:w="1"/><text x="16.4580%" y="862.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="16.2080%" y="868" width="0.3058%" height="15" fill="rgb(244,68,36)" fg:x="53" fg:w="1"/><text x="16.4580%" y="878.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.31%)</title><rect x="16.5138%" y="1028" width="0.3058%" height="15" fill="rgb(232,229,15)" fg:x="54" fg:w="1"/><text x="16.7638%" y="1038.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.31%)</title><rect x="16.5138%" y="1044" width="0.3058%" height="15" fill="rgb(254,30,23)" fg:x="54" fg:w="1"/><text x="16.7638%" y="1054.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.31%)</title><rect x="16.5138%" y="1060" width="0.3058%" height="15" fill="rgb(235,160,14)" fg:x="54" fg:w="1"/><text x="16.7638%" y="1070.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.31%)</title><rect x="16.8196%" y="1028" width="0.3058%" height="15" fill="rgb(212,155,44)" fg:x="55" fg:w="1"/><text x="17.0696%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.31%)</title><rect x="16.8196%" y="1044" width="0.3058%" height="15" fill="rgb(226,2,50)" fg:x="55" fg:w="1"/><text x="17.0696%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.31%)</title><rect x="16.8196%" y="1060" width="0.3058%" height="15" fill="rgb(234,177,6)" fg:x="55" fg:w="1"/><text x="17.0696%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.31%)</title><rect x="16.8196%" y="1076" width="0.3058%" height="15" fill="rgb(217,24,9)" fg:x="55" fg:w="1"/><text x="17.0696%" y="1086.50"></text></g><g><title>_signature_bound_method (inspect.py:1840) (1 samples, 0.31%)</title><rect x="16.8196%" y="1092" width="0.3058%" height="15" fill="rgb(220,13,46)" fg:x="55" fg:w="1"/><text x="17.0696%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="16.5138%" y="884" width="0.9174%" height="15" fill="rgb(239,221,27)" fg:x="54" fg:w="3"/><text x="16.7638%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="16.5138%" y="900" width="0.9174%" height="15" fill="rgb(222,198,25)" fg:x="54" fg:w="3"/><text x="16.7638%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="16.5138%" y="916" width="0.9174%" height="15" fill="rgb(211,99,13)" fg:x="54" fg:w="3"/><text x="16.7638%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="16.5138%" y="932" width="0.9174%" height="15" fill="rgb(232,111,31)" fg:x="54" fg:w="3"/><text x="16.7638%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="16.5138%" y="948" width="0.9174%" height="15" fill="rgb(245,82,37)" fg:x="54" fg:w="3"/><text x="16.7638%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (3 samples, 0.92%)</title><rect x="16.5138%" y="964" width="0.9174%" height="15" fill="rgb(227,149,46)" fg:x="54" fg:w="3"/><text x="16.7638%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (3 samples, 0.92%)</title><rect x="16.5138%" y="980" width="0.9174%" height="15" fill="rgb(218,36,50)" fg:x="54" fg:w="3"/><text x="16.7638%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 0.92%)</title><rect x="16.5138%" y="996" width="0.9174%" height="15" fill="rgb(226,80,48)" fg:x="54" fg:w="3"/><text x="16.7638%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 0.92%)</title><rect x="16.5138%" y="1012" width="0.9174%" height="15" fill="rgb(238,224,15)" fg:x="54" fg:w="3"/><text x="16.7638%" y="1022.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.31%)</title><rect x="17.1254%" y="1028" width="0.3058%" height="15" fill="rgb(241,136,10)" fg:x="56" fg:w="1"/><text x="17.3754%" y="1038.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.31%)</title><rect x="17.1254%" y="1044" width="0.3058%" height="15" fill="rgb(208,32,45)" fg:x="56" fg:w="1"/><text x="17.3754%" y="1054.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.31%)</title><rect x="17.1254%" y="1060" width="0.3058%" height="15" fill="rgb(207,135,9)" fg:x="56" fg:w="1"/><text x="17.3754%" y="1070.50"></text></g><g><title><module> (dask/array/creation.py:1) (4 samples, 1.22%)</title><rect x="16.5138%" y="868" width="1.2232%" height="15" fill="rgb(206,86,44)" fg:x="54" fg:w="4"/><text x="16.7638%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.31%)</title><rect x="17.4312%" y="884" width="0.3058%" height="15" fill="rgb(245,177,15)" fg:x="57" fg:w="1"/><text x="17.6812%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.31%)</title><rect x="17.4312%" y="900" width="0.3058%" height="15" fill="rgb(206,64,50)" fg:x="57" fg:w="1"/><text x="17.6812%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.31%)</title><rect x="17.4312%" y="916" width="0.3058%" height="15" fill="rgb(234,36,40)" fg:x="57" fg:w="1"/><text x="17.6812%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.31%)</title><rect x="17.4312%" y="932" width="0.3058%" height="15" fill="rgb(213,64,8)" fg:x="57" fg:w="1"/><text x="17.6812%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.31%)</title><rect x="17.4312%" y="948" width="0.3058%" height="15" fill="rgb(210,75,36)" fg:x="57" fg:w="1"/><text x="17.6812%" y="958.50"></text></g><g><title><module> (scipy/fft/_fftlog.py:1) (1 samples, 0.31%)</title><rect x="17.7370%" y="1156" width="0.3058%" height="15" fill="rgb(229,88,21)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="17.7370%" y="1172" width="0.3058%" height="15" fill="rgb(252,204,47)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="17.7370%" y="1188" width="0.3058%" height="15" fill="rgb(208,77,27)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="17.7370%" y="1204" width="0.3058%" height="15" fill="rgb(221,76,26)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="17.7370%" y="1220" width="0.3058%" height="15" fill="rgb(225,139,18)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="17.7370%" y="1236" width="0.3058%" height="15" fill="rgb(230,137,11)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1246.50"></text></g><g><title><module> (scipy/special/__init__.py:1) (1 samples, 0.31%)</title><rect x="17.7370%" y="1252" width="0.3058%" height="15" fill="rgb(212,28,1)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="17.7370%" y="1268" width="0.3058%" height="15" fill="rgb(248,164,17)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="17.7370%" y="1284" width="0.3058%" height="15" fill="rgb(222,171,42)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="17.7370%" y="1300" width="0.3058%" height="15" fill="rgb(243,84,45)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="17.7370%" y="1316" width="0.3058%" height="15" fill="rgb(252,49,23)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="17.7370%" y="1332" width="0.3058%" height="15" fill="rgb(215,19,7)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1342.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="17.7370%" y="1348" width="0.3058%" height="15" fill="rgb(238,81,41)" fg:x="58" fg:w="1"/><text x="17.9870%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="16.5138%" y="788" width="1.8349%" height="15" fill="rgb(210,199,37)" fg:x="54" fg:w="6"/><text x="16.7638%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="16.5138%" y="804" width="1.8349%" height="15" fill="rgb(244,192,49)" fg:x="54" fg:w="6"/><text x="16.7638%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="16.5138%" y="820" width="1.8349%" height="15" fill="rgb(226,211,11)" fg:x="54" fg:w="6"/><text x="16.7638%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="16.5138%" y="836" width="1.8349%" height="15" fill="rgb(236,162,54)" fg:x="54" fg:w="6"/><text x="16.7638%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="16.5138%" y="852" width="1.8349%" height="15" fill="rgb(220,229,9)" fg:x="54" fg:w="6"/><text x="16.7638%" y="862.50">_..</text></g><g><title><module> (scipy/fftpack/__init__.py:1) (2 samples, 0.61%)</title><rect x="17.7370%" y="868" width="0.6116%" height="15" fill="rgb(250,87,22)" fg:x="58" fg:w="2"/><text x="17.9870%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="17.7370%" y="884" width="0.6116%" height="15" fill="rgb(239,43,17)" fg:x="58" fg:w="2"/><text x="17.9870%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="17.7370%" y="900" width="0.6116%" height="15" fill="rgb(231,177,25)" fg:x="58" fg:w="2"/><text x="17.9870%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="17.7370%" y="916" width="0.6116%" height="15" fill="rgb(219,179,1)" fg:x="58" fg:w="2"/><text x="17.9870%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="17.7370%" y="932" width="0.6116%" height="15" fill="rgb(238,219,53)" fg:x="58" fg:w="2"/><text x="17.9870%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="17.7370%" y="948" width="0.6116%" height="15" fill="rgb(232,167,36)" fg:x="58" fg:w="2"/><text x="17.9870%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (2 samples, 0.61%)</title><rect x="17.7370%" y="964" width="0.6116%" height="15" fill="rgb(244,19,51)" fg:x="58" fg:w="2"/><text x="17.9870%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="17.7370%" y="980" width="0.6116%" height="15" fill="rgb(224,6,22)" fg:x="58" fg:w="2"/><text x="17.9870%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="17.7370%" y="996" width="0.6116%" height="15" fill="rgb(224,145,5)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="17.7370%" y="1012" width="0.6116%" height="15" fill="rgb(234,130,49)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="17.7370%" y="1028" width="0.6116%" height="15" fill="rgb(254,6,2)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="17.7370%" y="1044" width="0.6116%" height="15" fill="rgb(208,96,46)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (2 samples, 0.61%)</title><rect x="17.7370%" y="1060" width="0.6116%" height="15" fill="rgb(239,3,39)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="17.7370%" y="1076" width="0.6116%" height="15" fill="rgb(233,210,1)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="17.7370%" y="1092" width="0.6116%" height="15" fill="rgb(244,137,37)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="17.7370%" y="1108" width="0.6116%" height="15" fill="rgb(240,136,2)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="17.7370%" y="1124" width="0.6116%" height="15" fill="rgb(239,18,37)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="17.7370%" y="1140" width="0.6116%" height="15" fill="rgb(218,185,22)" fg:x="58" fg:w="2"/><text x="17.9870%" y="1150.50"></text></g><g><title><module> (scipy/fft/_helper.py:1) (1 samples, 0.31%)</title><rect x="18.0428%" y="1156" width="0.3058%" height="15" fill="rgb(225,218,4)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="18.0428%" y="1172" width="0.3058%" height="15" fill="rgb(230,182,32)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="18.0428%" y="1188" width="0.3058%" height="15" fill="rgb(242,56,43)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="18.0428%" y="1204" width="0.3058%" height="15" fill="rgb(233,99,24)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="18.0428%" y="1220" width="0.3058%" height="15" fill="rgb(234,209,42)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="18.0428%" y="1236" width="0.3058%" height="15" fill="rgb(227,7,12)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1246.50"></text></g><g><title><module> (scipy/fft/_pocketfft/__init__.py:1) (1 samples, 0.31%)</title><rect x="18.0428%" y="1252" width="0.3058%" height="15" fill="rgb(245,203,43)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="18.0428%" y="1268" width="0.3058%" height="15" fill="rgb(238,205,33)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="18.0428%" y="1284" width="0.3058%" height="15" fill="rgb(231,56,7)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="18.0428%" y="1300" width="0.3058%" height="15" fill="rgb(244,186,29)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="18.0428%" y="1316" width="0.3058%" height="15" fill="rgb(234,111,31)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="18.0428%" y="1332" width="0.3058%" height="15" fill="rgb(241,149,10)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1342.50"></text></g><g><title><module> (scipy/fft/_pocketfft/basic.py:1) (1 samples, 0.31%)</title><rect x="18.0428%" y="1348" width="0.3058%" height="15" fill="rgb(249,206,44)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="18.0428%" y="1364" width="0.3058%" height="15" fill="rgb(251,153,30)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="18.0428%" y="1380" width="0.3058%" height="15" fill="rgb(239,152,38)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="18.0428%" y="1396" width="0.3058%" height="15" fill="rgb(249,139,47)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="18.0428%" y="1412" width="0.3058%" height="15" fill="rgb(244,64,35)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="18.0428%" y="1428" width="0.3058%" height="15" fill="rgb(216,46,15)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1438.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="18.0428%" y="1444" width="0.3058%" height="15" fill="rgb(250,74,19)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1454.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="18.0428%" y="1460" width="0.3058%" height="15" fill="rgb(249,42,33)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="18.0428%" y="1476" width="0.3058%" height="15" fill="rgb(242,149,17)" fg:x="59" fg:w="1"/><text x="18.2928%" y="1486.50"></text></g><g><title><module> (dask/array/fft.py:1) (7 samples, 2.14%)</title><rect x="16.5138%" y="772" width="2.1407%" height="15" fill="rgb(244,29,21)" fg:x="54" fg:w="7"/><text x="16.7638%" y="782.50"><..</text></g><g><title>fft_wrap (dask/array/fft.py:118) (1 samples, 0.31%)</title><rect x="18.3486%" y="788" width="0.3058%" height="15" fill="rgb(220,130,37)" fg:x="60" fg:w="1"/><text x="18.5986%" y="798.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.31%)</title><rect x="18.3486%" y="804" width="0.3058%" height="15" fill="rgb(211,67,2)" fg:x="60" fg:w="1"/><text x="18.5986%" y="814.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.31%)</title><rect x="18.3486%" y="820" width="0.3058%" height="15" fill="rgb(235,68,52)" fg:x="60" fg:w="1"/><text x="18.5986%" y="830.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.31%)</title><rect x="18.3486%" y="836" width="0.3058%" height="15" fill="rgb(246,142,3)" fg:x="60" fg:w="1"/><text x="18.5986%" y="846.50"></text></g><g><title><listcomp> (dask/utils.py:696) (1 samples, 0.31%)</title><rect x="18.6544%" y="932" width="0.3058%" height="15" fill="rgb(241,25,7)" fg:x="61" fg:w="1"/><text x="18.9044%" y="942.50"></text></g><g><title>get_named_args (dask/utils.py:693) (2 samples, 0.61%)</title><rect x="18.6544%" y="916" width="0.6116%" height="15" fill="rgb(242,119,39)" fg:x="61" fg:w="2"/><text x="18.9044%" y="926.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.31%)</title><rect x="18.9602%" y="932" width="0.3058%" height="15" fill="rgb(241,98,45)" fg:x="62" fg:w="1"/><text x="19.2102%" y="942.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.31%)</title><rect x="18.9602%" y="948" width="0.3058%" height="15" fill="rgb(254,28,30)" fg:x="62" fg:w="1"/><text x="19.2102%" y="958.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.31%)</title><rect x="18.9602%" y="964" width="0.3058%" height="15" fill="rgb(241,142,54)" fg:x="62" fg:w="1"/><text x="19.2102%" y="974.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.31%)</title><rect x="18.9602%" y="980" width="0.3058%" height="15" fill="rgb(222,85,15)" fg:x="62" fg:w="1"/><text x="19.2102%" y="990.50"></text></g><g><title><module> (dask/array/reductions.py:1) (3 samples, 0.92%)</title><rect x="18.6544%" y="868" width="0.9174%" height="15" fill="rgb(210,85,47)" fg:x="61" fg:w="3"/><text x="18.9044%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 0.92%)</title><rect x="18.6544%" y="884" width="0.9174%" height="15" fill="rgb(224,206,25)" fg:x="61" fg:w="3"/><text x="18.9044%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 0.92%)</title><rect x="18.6544%" y="900" width="0.9174%" height="15" fill="rgb(243,201,19)" fg:x="61" fg:w="3"/><text x="18.9044%" y="910.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.31%)</title><rect x="19.2661%" y="916" width="0.3058%" height="15" fill="rgb(236,59,4)" fg:x="63" fg:w="1"/><text x="19.5161%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 10.40%)</title><rect x="9.4801%" y="548" width="10.3976%" height="15" fill="rgb(254,179,45)" fg:x="31" fg:w="34"/><text x="9.7301%" y="558.50">_call_with_fram..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 10.40%)</title><rect x="9.4801%" y="564" width="10.3976%" height="15" fill="rgb(226,14,10)" fg:x="31" fg:w="34"/><text x="9.7301%" y="574.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 10.40%)</title><rect x="9.4801%" y="580" width="10.3976%" height="15" fill="rgb(244,27,41)" fg:x="31" fg:w="34"/><text x="9.7301%" y="590.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 10.40%)</title><rect x="9.4801%" y="596" width="10.3976%" height="15" fill="rgb(235,35,32)" fg:x="31" fg:w="34"/><text x="9.7301%" y="606.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 10.40%)</title><rect x="9.4801%" y="612" width="10.3976%" height="15" fill="rgb(218,68,31)" fg:x="31" fg:w="34"/><text x="9.7301%" y="622.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 10.40%)</title><rect x="9.4801%" y="628" width="10.3976%" height="15" fill="rgb(207,120,37)" fg:x="31" fg:w="34"/><text x="9.7301%" y="638.50">_call_with_fram..</text></g><g><title><module> (dask/array/__init__.py:1) (34 samples, 10.40%)</title><rect x="9.4801%" y="644" width="10.3976%" height="15" fill="rgb(227,98,0)" fg:x="31" fg:w="34"/><text x="9.7301%" y="654.50"><module> (dask/..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (34 samples, 10.40%)</title><rect x="9.4801%" y="660" width="10.3976%" height="15" fill="rgb(207,7,3)" fg:x="31" fg:w="34"/><text x="9.7301%" y="670.50">_handle_fromlis..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 10.40%)</title><rect x="9.4801%" y="676" width="10.3976%" height="15" fill="rgb(206,98,19)" fg:x="31" fg:w="34"/><text x="9.7301%" y="686.50">_call_with_fram..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 10.40%)</title><rect x="9.4801%" y="692" width="10.3976%" height="15" fill="rgb(217,5,26)" fg:x="31" fg:w="34"/><text x="9.7301%" y="702.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 10.40%)</title><rect x="9.4801%" y="708" width="10.3976%" height="15" fill="rgb(235,190,38)" fg:x="31" fg:w="34"/><text x="9.7301%" y="718.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 10.40%)</title><rect x="9.4801%" y="724" width="10.3976%" height="15" fill="rgb(247,86,24)" fg:x="31" fg:w="34"/><text x="9.7301%" y="734.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 10.40%)</title><rect x="9.4801%" y="740" width="10.3976%" height="15" fill="rgb(205,101,16)" fg:x="31" fg:w="34"/><text x="9.7301%" y="750.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 10.40%)</title><rect x="9.4801%" y="756" width="10.3976%" height="15" fill="rgb(246,168,33)" fg:x="31" fg:w="34"/><text x="9.7301%" y="766.50">_call_with_fram..</text></g><g><title><module> (dask/array/ma.py:1) (4 samples, 1.22%)</title><rect x="18.6544%" y="772" width="1.2232%" height="15" fill="rgb(231,114,1)" fg:x="61" fg:w="4"/><text x="18.9044%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="18.6544%" y="788" width="1.2232%" height="15" fill="rgb(207,184,53)" fg:x="61" fg:w="4"/><text x="18.9044%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="18.6544%" y="804" width="1.2232%" height="15" fill="rgb(224,95,51)" fg:x="61" fg:w="4"/><text x="18.9044%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="18.6544%" y="820" width="1.2232%" height="15" fill="rgb(212,188,45)" fg:x="61" fg:w="4"/><text x="18.9044%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="18.6544%" y="836" width="1.2232%" height="15" fill="rgb(223,154,38)" fg:x="61" fg:w="4"/><text x="18.9044%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="18.6544%" y="852" width="1.2232%" height="15" fill="rgb(251,22,52)" fg:x="61" fg:w="4"/><text x="18.9044%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (1 samples, 0.31%)</title><rect x="19.5719%" y="868" width="0.3058%" height="15" fill="rgb(229,209,22)" fg:x="64" fg:w="1"/><text x="19.8219%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="19.5719%" y="884" width="0.3058%" height="15" fill="rgb(234,138,34)" fg:x="64" fg:w="1"/><text x="19.8219%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="19.5719%" y="900" width="0.3058%" height="15" fill="rgb(212,95,11)" fg:x="64" fg:w="1"/><text x="19.8219%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="19.5719%" y="916" width="0.3058%" height="15" fill="rgb(240,179,47)" fg:x="64" fg:w="1"/><text x="19.8219%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="19.5719%" y="932" width="0.3058%" height="15" fill="rgb(240,163,11)" fg:x="64" fg:w="1"/><text x="19.8219%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="19.5719%" y="948" width="0.3058%" height="15" fill="rgb(236,37,12)" fg:x="64" fg:w="1"/><text x="19.8219%" y="958.50"></text></g><g><title><module> (dask/array/einsumfuncs.py:1) (1 samples, 0.31%)</title><rect x="19.5719%" y="964" width="0.3058%" height="15" fill="rgb(232,164,16)" fg:x="64" fg:w="1"/><text x="19.8219%" y="974.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.31%)</title><rect x="19.5719%" y="980" width="0.3058%" height="15" fill="rgb(244,205,15)" fg:x="64" fg:w="1"/><text x="19.8219%" y="990.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.31%)</title><rect x="19.5719%" y="996" width="0.3058%" height="15" fill="rgb(223,117,47)" fg:x="64" fg:w="1"/><text x="19.8219%" y="1006.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.31%)</title><rect x="19.5719%" y="1012" width="0.3058%" height="15" fill="rgb(244,107,35)" fg:x="64" fg:w="1"/><text x="19.8219%" y="1022.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.31%)</title><rect x="19.5719%" y="1028" width="0.3058%" height="15" fill="rgb(205,140,8)" fg:x="64" fg:w="1"/><text x="19.8219%" y="1038.50"></text></g><g><title>match (re.py:188) (1 samples, 0.31%)</title><rect x="19.5719%" y="1044" width="0.3058%" height="15" fill="rgb(228,84,46)" fg:x="64" fg:w="1"/><text x="19.8219%" y="1054.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="19.5719%" y="1060" width="0.3058%" height="15" fill="rgb(254,188,9)" fg:x="64" fg:w="1"/><text x="19.8219%" y="1070.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (2 samples, 0.61%)</title><rect x="19.8777%" y="612" width="0.6116%" height="15" fill="rgb(206,112,54)" fg:x="65" fg:w="2"/><text x="20.1277%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.61%)</title><rect x="19.8777%" y="628" width="0.6116%" height="15" fill="rgb(216,84,49)" fg:x="65" fg:w="2"/><text x="20.1277%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.61%)</title><rect x="19.8777%" y="644" width="0.6116%" height="15" fill="rgb(214,194,35)" fg:x="65" fg:w="2"/><text x="20.1277%" y="654.50"></text></g><g><title>extra_titles (dask/utils.py:809) (2 samples, 0.61%)</title><rect x="19.8777%" y="660" width="0.6116%" height="15" fill="rgb(249,28,3)" fg:x="65" fg:w="2"/><text x="20.1277%" y="670.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (2 samples, 0.61%)</title><rect x="19.8777%" y="676" width="0.6116%" height="15" fill="rgb(222,56,52)" fg:x="65" fg:w="2"/><text x="20.1277%" y="686.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.31%)</title><rect x="20.1835%" y="692" width="0.3058%" height="15" fill="rgb(245,217,50)" fg:x="66" fg:w="1"/><text x="20.4335%" y="702.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (1 samples, 0.31%)</title><rect x="20.4893%" y="612" width="0.3058%" height="15" fill="rgb(213,201,24)" fg:x="67" fg:w="1"/><text x="20.7393%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.31%)</title><rect x="20.4893%" y="628" width="0.3058%" height="15" fill="rgb(248,116,28)" fg:x="67" fg:w="1"/><text x="20.7393%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.31%)</title><rect x="20.4893%" y="644" width="0.3058%" height="15" fill="rgb(219,72,43)" fg:x="67" fg:w="1"/><text x="20.7393%" y="654.50"></text></g><g><title>_bind_operator_method (dask/dataframe/core.py:6120) (1 samples, 0.31%)</title><rect x="20.7951%" y="612" width="0.3058%" height="15" fill="rgb(209,138,14)" fg:x="68" fg:w="1"/><text x="21.0451%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.31%)</title><rect x="20.7951%" y="628" width="0.3058%" height="15" fill="rgb(222,18,33)" fg:x="68" fg:w="1"/><text x="21.0451%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.31%)</title><rect x="20.7951%" y="644" width="0.3058%" height="15" fill="rgb(213,199,7)" fg:x="68" fg:w="1"/><text x="21.0451%" y="654.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.31%)</title><rect x="20.7951%" y="660" width="0.3058%" height="15" fill="rgb(250,110,10)" fg:x="68" fg:w="1"/><text x="21.0451%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="21.1009%" y="1012" width="0.3058%" height="15" fill="rgb(248,123,6)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1022.50"></text></g><g><title><module> (fsspec/compression.py:1) (1 samples, 0.31%)</title><rect x="21.1009%" y="1028" width="0.3058%" height="15" fill="rgb(206,91,31)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="21.1009%" y="1044" width="0.3058%" height="15" fill="rgb(211,154,13)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="21.1009%" y="1060" width="0.3058%" height="15" fill="rgb(225,148,7)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="21.1009%" y="1076" width="0.3058%" height="15" fill="rgb(220,160,43)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="21.1009%" y="1092" width="0.3058%" height="15" fill="rgb(213,52,39)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="21.1009%" y="1108" width="0.3058%" height="15" fill="rgb(243,137,7)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1118.50"></text></g><g><title><module> (lz4/frame/__init__.py:1) (1 samples, 0.31%)</title><rect x="21.1009%" y="1124" width="0.3058%" height="15" fill="rgb(230,79,13)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="21.1009%" y="1140" width="0.3058%" height="15" fill="rgb(247,105,23)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="21.1009%" y="1156" width="0.3058%" height="15" fill="rgb(223,179,41)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="21.1009%" y="1172" width="0.3058%" height="15" fill="rgb(218,9,34)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1182.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="21.1009%" y="1188" width="0.3058%" height="15" fill="rgb(222,106,8)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1198.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="21.1009%" y="1204" width="0.3058%" height="15" fill="rgb(211,220,0)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="21.1009%" y="1220" width="0.3058%" height="15" fill="rgb(229,52,16)" fg:x="69" fg:w="1"/><text x="21.3509%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="21.1009%" y="948" width="0.6116%" height="15" fill="rgb(212,155,18)" fg:x="69" fg:w="2"/><text x="21.3509%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="21.1009%" y="964" width="0.6116%" height="15" fill="rgb(242,21,14)" fg:x="69" fg:w="2"/><text x="21.3509%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="21.1009%" y="980" width="0.6116%" height="15" fill="rgb(222,19,48)" fg:x="69" fg:w="2"/><text x="21.3509%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="21.1009%" y="996" width="0.6116%" height="15" fill="rgb(232,45,27)" fg:x="69" fg:w="2"/><text x="21.3509%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="21.4067%" y="1012" width="0.3058%" height="15" fill="rgb(249,103,42)" fg:x="70" fg:w="1"/><text x="21.6567%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="21.4067%" y="1028" width="0.3058%" height="15" fill="rgb(246,81,33)" fg:x="70" fg:w="1"/><text x="21.6567%" y="1038.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (1 samples, 0.31%)</title><rect x="21.7125%" y="1060" width="0.3058%" height="15" fill="rgb(252,33,42)" fg:x="71" fg:w="1"/><text x="21.9625%" y="1070.50"></text></g><g><title>_path_hooks (<frozen importlib._bootstrap_external>:1333) (1 samples, 0.31%)</title><rect x="21.7125%" y="1076" width="0.3058%" height="15" fill="rgb(209,212,41)" fg:x="71" fg:w="1"/><text x="21.9625%" y="1086.50"></text></g><g><title>path_hook_for_FileFinder (<frozen importlib._bootstrap_external>:1606) (1 samples, 0.31%)</title><rect x="21.7125%" y="1092" width="0.3058%" height="15" fill="rgb(207,154,6)" fg:x="71" fg:w="1"/><text x="21.9625%" y="1102.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.61%)</title><rect x="21.7125%" y="1012" width="0.6116%" height="15" fill="rgb(223,64,47)" fg:x="71" fg:w="2"/><text x="21.9625%" y="1022.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.61%)</title><rect x="21.7125%" y="1028" width="0.6116%" height="15" fill="rgb(211,161,38)" fg:x="71" fg:w="2"/><text x="21.9625%" y="1038.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.61%)</title><rect x="21.7125%" y="1044" width="0.6116%" height="15" fill="rgb(219,138,40)" fg:x="71" fg:w="2"/><text x="21.9625%" y="1054.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="22.0183%" y="1060" width="0.3058%" height="15" fill="rgb(241,228,46)" fg:x="72" fg:w="1"/><text x="22.2683%" y="1070.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.31%)</title><rect x="22.0183%" y="1076" width="0.3058%" height="15" fill="rgb(223,209,38)" fg:x="72" fg:w="1"/><text x="22.2683%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="21.7125%" y="948" width="0.9174%" height="15" fill="rgb(236,164,45)" fg:x="71" fg:w="3"/><text x="21.9625%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="21.7125%" y="964" width="0.9174%" height="15" fill="rgb(231,15,5)" fg:x="71" fg:w="3"/><text x="21.9625%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="21.7125%" y="980" width="0.9174%" height="15" fill="rgb(252,35,15)" fg:x="71" fg:w="3"/><text x="21.9625%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="21.7125%" y="996" width="0.9174%" height="15" fill="rgb(248,181,18)" fg:x="71" fg:w="3"/><text x="21.9625%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="22.3242%" y="1012" width="0.3058%" height="15" fill="rgb(233,39,42)" fg:x="73" fg:w="1"/><text x="22.5742%" y="1022.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (8 samples, 2.45%)</title><rect x="21.1009%" y="692" width="2.4465%" height="15" fill="rgb(238,110,33)" fg:x="69" fg:w="8"/><text x="21.3509%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="21.1009%" y="708" width="2.4465%" height="15" fill="rgb(233,195,10)" fg:x="69" fg:w="8"/><text x="21.3509%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="21.1009%" y="724" width="2.4465%" height="15" fill="rgb(254,105,3)" fg:x="69" fg:w="8"/><text x="21.3509%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="21.1009%" y="740" width="2.4465%" height="15" fill="rgb(221,225,9)" fg:x="69" fg:w="8"/><text x="21.3509%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="21.1009%" y="756" width="2.4465%" height="15" fill="rgb(224,227,45)" fg:x="69" fg:w="8"/><text x="21.3509%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="21.1009%" y="772" width="2.4465%" height="15" fill="rgb(229,198,43)" fg:x="69" fg:w="8"/><text x="21.3509%" y="782.50">_c..</text></g><g><title><module> (dask/bag/avro.py:1) (8 samples, 2.45%)</title><rect x="21.1009%" y="788" width="2.4465%" height="15" fill="rgb(206,209,35)" fg:x="69" fg:w="8"/><text x="21.3509%" y="798.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="21.1009%" y="804" width="2.4465%" height="15" fill="rgb(245,195,53)" fg:x="69" fg:w="8"/><text x="21.3509%" y="814.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="21.1009%" y="820" width="2.4465%" height="15" fill="rgb(240,92,26)" fg:x="69" fg:w="8"/><text x="21.3509%" y="830.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="21.1009%" y="836" width="2.4465%" height="15" fill="rgb(207,40,23)" fg:x="69" fg:w="8"/><text x="21.3509%" y="846.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="21.1009%" y="852" width="2.4465%" height="15" fill="rgb(223,111,35)" fg:x="69" fg:w="8"/><text x="21.3509%" y="862.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="21.1009%" y="868" width="2.4465%" height="15" fill="rgb(229,147,28)" fg:x="69" fg:w="8"/><text x="21.3509%" y="878.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="21.1009%" y="884" width="2.4465%" height="15" fill="rgb(211,29,28)" fg:x="69" fg:w="8"/><text x="21.3509%" y="894.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="21.1009%" y="900" width="2.4465%" height="15" fill="rgb(228,72,33)" fg:x="69" fg:w="8"/><text x="21.3509%" y="910.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="21.1009%" y="916" width="2.4465%" height="15" fill="rgb(205,214,31)" fg:x="69" fg:w="8"/><text x="21.3509%" y="926.50">_c..</text></g><g><title><module> (fsspec/__init__.py:1) (8 samples, 2.45%)</title><rect x="21.1009%" y="932" width="2.4465%" height="15" fill="rgb(224,111,15)" fg:x="69" fg:w="8"/><text x="21.3509%" y="942.50"><m..</text></g><g><title>process_entries (fsspec/__init__.py:40) (3 samples, 0.92%)</title><rect x="22.6300%" y="948" width="0.9174%" height="15" fill="rgb(253,21,26)" fg:x="74" fg:w="3"/><text x="22.8800%" y="958.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (3 samples, 0.92%)</title><rect x="22.6300%" y="964" width="0.9174%" height="15" fill="rgb(245,139,43)" fg:x="74" fg:w="3"/><text x="22.8800%" y="974.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (3 samples, 0.92%)</title><rect x="22.6300%" y="980" width="0.9174%" height="15" fill="rgb(252,170,7)" fg:x="74" fg:w="3"/><text x="22.8800%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (2 samples, 0.61%)</title><rect x="22.9358%" y="996" width="0.6116%" height="15" fill="rgb(231,118,14)" fg:x="75" fg:w="2"/><text x="23.1858%" y="1006.50"></text></g><g><title>_from_text_for (importlib_metadata/__init__.py:299) (2 samples, 0.61%)</title><rect x="22.9358%" y="1012" width="0.6116%" height="15" fill="rgb(238,83,0)" fg:x="75" fg:w="2"/><text x="23.1858%" y="1022.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:301) (1 samples, 0.31%)</title><rect x="23.2416%" y="1028" width="0.3058%" height="15" fill="rgb(221,39,39)" fg:x="76" fg:w="1"/><text x="23.4916%" y="1038.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:305) (1 samples, 0.31%)</title><rect x="23.2416%" y="1044" width="0.3058%" height="15" fill="rgb(222,119,46)" fg:x="76" fg:w="1"/><text x="23.4916%" y="1054.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:109) (1 samples, 0.31%)</title><rect x="23.2416%" y="1060" width="0.3058%" height="15" fill="rgb(222,165,49)" fg:x="76" fg:w="1"/><text x="23.4916%" y="1070.50"></text></g><g><title>read (importlib_metadata/__init__.py:115) (1 samples, 0.31%)</title><rect x="23.2416%" y="1076" width="0.3058%" height="15" fill="rgb(219,113,52)" fg:x="76" fg:w="1"/><text x="23.4916%" y="1086.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (47 samples, 14.37%)</title><rect x="9.4801%" y="500" width="14.3731%" height="15" fill="rgb(214,7,15)" fg:x="31" fg:w="47"/><text x="9.7301%" y="510.50"><module> (dask/datafra..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (47 samples, 14.37%)</title><rect x="9.4801%" y="516" width="14.3731%" height="15" fill="rgb(235,32,4)" fg:x="31" fg:w="47"/><text x="9.7301%" y="526.50">_find_and_load (<froze..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (47 samples, 14.37%)</title><rect x="9.4801%" y="532" width="14.3731%" height="15" fill="rgb(238,90,54)" fg:x="31" fg:w="47"/><text x="9.7301%" y="542.50">_find_and_load_unlocke..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 3.98%)</title><rect x="19.8777%" y="548" width="3.9755%" height="15" fill="rgb(213,208,19)" fg:x="65" fg:w="13"/><text x="20.1277%" y="558.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 3.98%)</title><rect x="19.8777%" y="564" width="3.9755%" height="15" fill="rgb(233,156,4)" fg:x="65" fg:w="13"/><text x="20.1277%" y="574.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 3.98%)</title><rect x="19.8777%" y="580" width="3.9755%" height="15" fill="rgb(207,194,5)" fg:x="65" fg:w="13"/><text x="20.1277%" y="590.50">_cal..</text></g><g><title><module> (dask/dataframe/core.py:1) (13 samples, 3.98%)</title><rect x="19.8777%" y="596" width="3.9755%" height="15" fill="rgb(206,111,30)" fg:x="65" fg:w="13"/><text x="20.1277%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="21.1009%" y="612" width="2.7523%" height="15" fill="rgb(243,70,54)" fg:x="69" fg:w="9"/><text x="21.3509%" y="622.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="21.1009%" y="628" width="2.7523%" height="15" fill="rgb(242,28,8)" fg:x="69" fg:w="9"/><text x="21.3509%" y="638.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="21.1009%" y="644" width="2.7523%" height="15" fill="rgb(219,106,18)" fg:x="69" fg:w="9"/><text x="21.3509%" y="654.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="21.1009%" y="660" width="2.7523%" height="15" fill="rgb(244,222,10)" fg:x="69" fg:w="9"/><text x="21.3509%" y="670.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="21.1009%" y="676" width="2.7523%" height="15" fill="rgb(236,179,52)" fg:x="69" fg:w="9"/><text x="21.3509%" y="686.50">_c..</text></g><g><title><module> (dask/dataframe/categorical.py:1) (1 samples, 0.31%)</title><rect x="23.5474%" y="692" width="0.3058%" height="15" fill="rgb(213,23,39)" fg:x="77" fg:w="1"/><text x="23.7974%" y="702.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.31%)</title><rect x="23.5474%" y="708" width="0.3058%" height="15" fill="rgb(238,48,10)" fg:x="77" fg:w="1"/><text x="23.7974%" y="718.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.31%)</title><rect x="23.5474%" y="724" width="0.3058%" height="15" fill="rgb(251,196,23)" fg:x="77" fg:w="1"/><text x="23.7974%" y="734.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.31%)</title><rect x="23.5474%" y="740" width="0.3058%" height="15" fill="rgb(250,152,24)" fg:x="77" fg:w="1"/><text x="23.7974%" y="750.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.31%)</title><rect x="23.5474%" y="756" width="0.3058%" height="15" fill="rgb(209,150,17)" fg:x="77" fg:w="1"/><text x="23.7974%" y="766.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.31%)</title><rect x="23.5474%" y="772" width="0.3058%" height="15" fill="rgb(234,202,34)" fg:x="77" fg:w="1"/><text x="23.7974%" y="782.50"></text></g><g><title><listcomp> (dask/utils.py:696) (1 samples, 0.31%)</title><rect x="23.5474%" y="788" width="0.3058%" height="15" fill="rgb(253,148,53)" fg:x="77" fg:w="1"/><text x="23.7974%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="23.8532%" y="612" width="0.3058%" height="15" fill="rgb(218,129,16)" fg:x="78" fg:w="1"/><text x="24.1032%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="23.8532%" y="628" width="0.3058%" height="15" fill="rgb(216,85,19)" fg:x="78" fg:w="1"/><text x="24.1032%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="23.8532%" y="644" width="0.3058%" height="15" fill="rgb(235,228,7)" fg:x="78" fg:w="1"/><text x="24.1032%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="23.8532%" y="660" width="0.3058%" height="15" fill="rgb(245,175,0)" fg:x="78" fg:w="1"/><text x="24.1032%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="23.8532%" y="676" width="0.3058%" height="15" fill="rgb(208,168,36)" fg:x="78" fg:w="1"/><text x="24.1032%" y="686.50"></text></g><g><title><module> (dask/dataframe/io/hdf.py:1) (1 samples, 0.31%)</title><rect x="23.8532%" y="692" width="0.3058%" height="15" fill="rgb(246,171,24)" fg:x="78" fg:w="1"/><text x="24.1032%" y="702.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.31%)</title><rect x="23.8532%" y="708" width="0.3058%" height="15" fill="rgb(215,142,24)" fg:x="78" fg:w="1"/><text x="24.1032%" y="718.50"></text></g><g><title><module> (qarray/__init__.py:1) (59 samples, 18.04%)</title><rect x="6.4220%" y="180" width="18.0428%" height="15" fill="rgb(250,187,7)" fg:x="21" fg:w="59"/><text x="6.6720%" y="190.50"><module> (qarray/__init__.py..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (59 samples, 18.04%)</title><rect x="6.4220%" y="196" width="18.0428%" height="15" fill="rgb(228,66,33)" fg:x="21" fg:w="59"/><text x="6.6720%" y="206.50">_find_and_load (<frozen impo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (59 samples, 18.04%)</title><rect x="6.4220%" y="212" width="18.0428%" height="15" fill="rgb(234,215,21)" fg:x="21" fg:w="59"/><text x="6.6720%" y="222.50">_find_and_load_unlocked (<fr..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (59 samples, 18.04%)</title><rect x="6.4220%" y="228" width="18.0428%" height="15" fill="rgb(222,191,20)" fg:x="21" fg:w="59"/><text x="6.6720%" y="238.50">_load_unlocked (<frozen impo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (59 samples, 18.04%)</title><rect x="6.4220%" y="244" width="18.0428%" height="15" fill="rgb(245,79,54)" fg:x="21" fg:w="59"/><text x="6.6720%" y="254.50">exec_module (<frozen importl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (59 samples, 18.04%)</title><rect x="6.4220%" y="260" width="18.0428%" height="15" fill="rgb(240,10,37)" fg:x="21" fg:w="59"/><text x="6.6720%" y="270.50">_call_with_frames_removed (<..</text></g><g><title><module> (qarray/df.py:1) (49 samples, 14.98%)</title><rect x="9.4801%" y="276" width="14.9847%" height="15" fill="rgb(214,192,32)" fg:x="31" fg:w="49"/><text x="9.7301%" y="286.50"><module> (qarray/df.py:..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (49 samples, 14.98%)</title><rect x="9.4801%" y="292" width="14.9847%" height="15" fill="rgb(209,36,54)" fg:x="31" fg:w="49"/><text x="9.7301%" y="302.50">_find_and_load (<frozen..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (49 samples, 14.98%)</title><rect x="9.4801%" y="308" width="14.9847%" height="15" fill="rgb(220,10,11)" fg:x="31" fg:w="49"/><text x="9.7301%" y="318.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (49 samples, 14.98%)</title><rect x="9.4801%" y="324" width="14.9847%" height="15" fill="rgb(221,106,17)" fg:x="31" fg:w="49"/><text x="9.7301%" y="334.50">_load_unlocked (<frozen..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (49 samples, 14.98%)</title><rect x="9.4801%" y="340" width="14.9847%" height="15" fill="rgb(251,142,44)" fg:x="31" fg:w="49"/><text x="9.7301%" y="350.50">exec_module (<frozen im..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (49 samples, 14.98%)</title><rect x="9.4801%" y="356" width="14.9847%" height="15" fill="rgb(238,13,15)" fg:x="31" fg:w="49"/><text x="9.7301%" y="366.50">_call_with_frames_remov..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (49 samples, 14.98%)</title><rect x="9.4801%" y="372" width="14.9847%" height="15" fill="rgb(208,107,27)" fg:x="31" fg:w="49"/><text x="9.7301%" y="382.50"><module> (dask/datafram..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (49 samples, 14.98%)</title><rect x="9.4801%" y="388" width="14.9847%" height="15" fill="rgb(205,136,37)" fg:x="31" fg:w="49"/><text x="9.7301%" y="398.50">_handle_fromlist (<froz..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (49 samples, 14.98%)</title><rect x="9.4801%" y="404" width="14.9847%" height="15" fill="rgb(250,205,27)" fg:x="31" fg:w="49"/><text x="9.7301%" y="414.50">_call_with_frames_remov..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (49 samples, 14.98%)</title><rect x="9.4801%" y="420" width="14.9847%" height="15" fill="rgb(210,80,43)" fg:x="31" fg:w="49"/><text x="9.7301%" y="430.50">_find_and_load (<frozen..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (49 samples, 14.98%)</title><rect x="9.4801%" y="436" width="14.9847%" height="15" fill="rgb(247,160,36)" fg:x="31" fg:w="49"/><text x="9.7301%" y="446.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (49 samples, 14.98%)</title><rect x="9.4801%" y="452" width="14.9847%" height="15" fill="rgb(234,13,49)" fg:x="31" fg:w="49"/><text x="9.7301%" y="462.50">_load_unlocked (<frozen..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (49 samples, 14.98%)</title><rect x="9.4801%" y="468" width="14.9847%" height="15" fill="rgb(234,122,0)" fg:x="31" fg:w="49"/><text x="9.7301%" y="478.50">exec_module (<frozen im..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (49 samples, 14.98%)</title><rect x="9.4801%" y="484" width="14.9847%" height="15" fill="rgb(207,146,38)" fg:x="31" fg:w="49"/><text x="9.7301%" y="494.50">_call_with_frames_remov..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (2 samples, 0.61%)</title><rect x="23.8532%" y="500" width="0.6116%" height="15" fill="rgb(207,177,25)" fg:x="78" fg:w="2"/><text x="24.1032%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="23.8532%" y="516" width="0.6116%" height="15" fill="rgb(211,178,42)" fg:x="78" fg:w="2"/><text x="24.1032%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="23.8532%" y="532" width="0.6116%" height="15" fill="rgb(230,69,54)" fg:x="78" fg:w="2"/><text x="24.1032%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="23.8532%" y="548" width="0.6116%" height="15" fill="rgb(214,135,41)" fg:x="78" fg:w="2"/><text x="24.1032%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="23.8532%" y="564" width="0.6116%" height="15" fill="rgb(237,67,25)" fg:x="78" fg:w="2"/><text x="24.1032%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="23.8532%" y="580" width="0.6116%" height="15" fill="rgb(222,189,50)" fg:x="78" fg:w="2"/><text x="24.1032%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (2 samples, 0.61%)</title><rect x="23.8532%" y="596" width="0.6116%" height="15" fill="rgb(245,148,34)" fg:x="78" fg:w="2"/><text x="24.1032%" y="606.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="24.1590%" y="612" width="0.3058%" height="15" fill="rgb(222,29,6)" fg:x="79" fg:w="1"/><text x="24.4090%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="24.1590%" y="628" width="0.3058%" height="15" fill="rgb(221,189,43)" fg:x="79" fg:w="1"/><text x="24.4090%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="24.1590%" y="644" width="0.3058%" height="15" fill="rgb(207,36,27)" fg:x="79" fg:w="1"/><text x="24.4090%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="24.1590%" y="660" width="0.3058%" height="15" fill="rgb(217,90,24)" fg:x="79" fg:w="1"/><text x="24.4090%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="24.1590%" y="676" width="0.3058%" height="15" fill="rgb(224,66,35)" fg:x="79" fg:w="1"/><text x="24.4090%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="24.1590%" y="692" width="0.3058%" height="15" fill="rgb(221,13,50)" fg:x="79" fg:w="1"/><text x="24.4090%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="24.1590%" y="708" width="0.3058%" height="15" fill="rgb(236,68,49)" fg:x="79" fg:w="1"/><text x="24.4090%" y="718.50"></text></g><g><title><module> (dask/dataframe/io/demo.py:1) (1 samples, 0.31%)</title><rect x="24.1590%" y="724" width="0.3058%" height="15" fill="rgb(229,146,28)" fg:x="79" fg:w="1"/><text x="24.4090%" y="734.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.31%)</title><rect x="24.1590%" y="740" width="0.3058%" height="15" fill="rgb(225,31,38)" fg:x="79" fg:w="1"/><text x="24.4090%" y="750.50"></text></g><g><title><module> (numpy/core/_add_newdocs.py:1) (2 samples, 0.61%)</title><rect x="24.4648%" y="772" width="0.6116%" height="15" fill="rgb(250,208,3)" fg:x="80" fg:w="2"/><text x="24.7148%" y="782.50"></text></g><g><title>add_newdoc (numpy/core/function_base.py:497) (2 samples, 0.61%)</title><rect x="24.4648%" y="788" width="0.6116%" height="15" fill="rgb(246,54,23)" fg:x="80" fg:w="2"/><text x="24.7148%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="24.4648%" y="804" width="0.6116%" height="15" fill="rgb(243,76,11)" fg:x="80" fg:w="2"/><text x="24.7148%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="24.4648%" y="820" width="0.6116%" height="15" fill="rgb(245,21,50)" fg:x="80" fg:w="2"/><text x="24.7148%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="24.4648%" y="836" width="0.6116%" height="15" fill="rgb(228,9,43)" fg:x="80" fg:w="2"/><text x="24.7148%" y="846.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="24.4648%" y="852" width="0.6116%" height="15" fill="rgb(208,100,47)" fg:x="80" fg:w="2"/><text x="24.7148%" y="862.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="24.4648%" y="868" width="0.6116%" height="15" fill="rgb(232,26,8)" fg:x="80" fg:w="2"/><text x="24.7148%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="24.4648%" y="884" width="0.6116%" height="15" fill="rgb(216,166,38)" fg:x="80" fg:w="2"/><text x="24.7148%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="24.4648%" y="420" width="0.9174%" height="15" fill="rgb(251,202,51)" fg:x="80" fg:w="3"/><text x="24.7148%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="24.4648%" y="436" width="0.9174%" height="15" fill="rgb(254,216,34)" fg:x="80" fg:w="3"/><text x="24.7148%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="24.4648%" y="452" width="0.9174%" height="15" fill="rgb(251,32,27)" fg:x="80" fg:w="3"/><text x="24.7148%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="24.4648%" y="468" width="0.9174%" height="15" fill="rgb(208,127,28)" fg:x="80" fg:w="3"/><text x="24.7148%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="24.4648%" y="484" width="0.9174%" height="15" fill="rgb(224,137,22)" fg:x="80" fg:w="3"/><text x="24.7148%" y="494.50"></text></g><g><title><module> (numpy/__config__.py:3) (3 samples, 0.92%)</title><rect x="24.4648%" y="500" width="0.9174%" height="15" fill="rgb(254,70,32)" fg:x="80" fg:w="3"/><text x="24.7148%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="24.4648%" y="516" width="0.9174%" height="15" fill="rgb(229,75,37)" fg:x="80" fg:w="3"/><text x="24.7148%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="24.4648%" y="532" width="0.9174%" height="15" fill="rgb(252,64,23)" fg:x="80" fg:w="3"/><text x="24.7148%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="24.4648%" y="548" width="0.9174%" height="15" fill="rgb(232,162,48)" fg:x="80" fg:w="3"/><text x="24.7148%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="24.4648%" y="564" width="0.9174%" height="15" fill="rgb(246,160,12)" fg:x="80" fg:w="3"/><text x="24.7148%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="24.4648%" y="580" width="0.9174%" height="15" fill="rgb(247,166,0)" fg:x="80" fg:w="3"/><text x="24.7148%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="24.4648%" y="596" width="0.9174%" height="15" fill="rgb(249,219,21)" fg:x="80" fg:w="3"/><text x="24.7148%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="24.4648%" y="612" width="0.9174%" height="15" fill="rgb(205,209,3)" fg:x="80" fg:w="3"/><text x="24.7148%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="24.4648%" y="628" width="0.9174%" height="15" fill="rgb(243,44,1)" fg:x="80" fg:w="3"/><text x="24.7148%" y="638.50"></text></g><g><title><module> (numpy/core/__init__.py:1) (3 samples, 0.92%)</title><rect x="24.4648%" y="644" width="0.9174%" height="15" fill="rgb(206,159,16)" fg:x="80" fg:w="3"/><text x="24.7148%" y="654.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="24.4648%" y="660" width="0.9174%" height="15" fill="rgb(244,77,30)" fg:x="80" fg:w="3"/><text x="24.7148%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="24.4648%" y="676" width="0.9174%" height="15" fill="rgb(218,69,12)" fg:x="80" fg:w="3"/><text x="24.7148%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="24.4648%" y="692" width="0.9174%" height="15" fill="rgb(212,87,7)" fg:x="80" fg:w="3"/><text x="24.7148%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="24.4648%" y="708" width="0.9174%" height="15" fill="rgb(245,114,25)" fg:x="80" fg:w="3"/><text x="24.7148%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="24.4648%" y="724" width="0.9174%" height="15" fill="rgb(210,61,42)" fg:x="80" fg:w="3"/><text x="24.7148%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="24.4648%" y="740" width="0.9174%" height="15" fill="rgb(211,52,33)" fg:x="80" fg:w="3"/><text x="24.7148%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="24.4648%" y="756" width="0.9174%" height="15" fill="rgb(234,58,33)" fg:x="80" fg:w="3"/><text x="24.7148%" y="766.50"></text></g><g><title><module> (numpy/core/multiarray.py:1) (1 samples, 0.31%)</title><rect x="25.0765%" y="772" width="0.3058%" height="15" fill="rgb(220,115,36)" fg:x="82" fg:w="1"/><text x="25.3265%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="25.0765%" y="788" width="0.3058%" height="15" fill="rgb(243,153,54)" fg:x="82" fg:w="1"/><text x="25.3265%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="25.0765%" y="804" width="0.3058%" height="15" fill="rgb(251,47,18)" fg:x="82" fg:w="1"/><text x="25.3265%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="25.0765%" y="820" width="0.3058%" height="15" fill="rgb(242,102,42)" fg:x="82" fg:w="1"/><text x="25.3265%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="25.0765%" y="836" width="0.3058%" height="15" fill="rgb(234,31,38)" fg:x="82" fg:w="1"/><text x="25.3265%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="25.0765%" y="852" width="0.3058%" height="15" fill="rgb(221,117,51)" fg:x="82" fg:w="1"/><text x="25.3265%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="25.0765%" y="868" width="0.3058%" height="15" fill="rgb(212,20,18)" fg:x="82" fg:w="1"/><text x="25.3265%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="25.0765%" y="884" width="0.3058%" height="15" fill="rgb(245,133,36)" fg:x="82" fg:w="1"/><text x="25.3265%" y="894.50"></text></g><g><title><module> (numpy/core/overrides.py:1) (1 samples, 0.31%)</title><rect x="25.0765%" y="900" width="0.3058%" height="15" fill="rgb(212,6,19)" fg:x="82" fg:w="1"/><text x="25.3265%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="25.0765%" y="916" width="0.3058%" height="15" fill="rgb(218,1,36)" fg:x="82" fg:w="1"/><text x="25.3265%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="25.0765%" y="932" width="0.3058%" height="15" fill="rgb(246,84,54)" fg:x="82" fg:w="1"/><text x="25.3265%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="25.0765%" y="948" width="0.3058%" height="15" fill="rgb(242,110,6)" fg:x="82" fg:w="1"/><text x="25.3265%" y="958.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="25.0765%" y="964" width="0.3058%" height="15" fill="rgb(214,47,5)" fg:x="82" fg:w="1"/><text x="25.3265%" y="974.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="25.0765%" y="980" width="0.3058%" height="15" fill="rgb(218,159,25)" fg:x="82" fg:w="1"/><text x="25.3265%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="25.0765%" y="996" width="0.3058%" height="15" fill="rgb(215,211,28)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="25.0765%" y="1012" width="0.3058%" height="15" fill="rgb(238,59,32)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="25.0765%" y="1028" width="0.3058%" height="15" fill="rgb(226,82,3)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="25.0765%" y="1044" width="0.3058%" height="15" fill="rgb(240,164,32)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="25.0765%" y="1060" width="0.3058%" height="15" fill="rgb(232,46,7)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="25.0765%" y="1076" width="0.3058%" height="15" fill="rgb(229,129,53)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1086.50"></text></g><g><title><module> (datetime.py:1) (1 samples, 0.31%)</title><rect x="25.0765%" y="1092" width="0.3058%" height="15" fill="rgb(234,188,29)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="25.0765%" y="1108" width="0.3058%" height="15" fill="rgb(246,141,4)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="25.0765%" y="1124" width="0.3058%" height="15" fill="rgb(229,23,39)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="25.0765%" y="1140" width="0.3058%" height="15" fill="rgb(206,12,3)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1150.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="25.0765%" y="1156" width="0.3058%" height="15" fill="rgb(252,226,20)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1166.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="25.0765%" y="1172" width="0.3058%" height="15" fill="rgb(216,123,35)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="25.0765%" y="1188" width="0.3058%" height="15" fill="rgb(212,68,40)" fg:x="82" fg:w="1"/><text x="25.3265%" y="1198.50"></text></g><g><title><module> (numpy/fft/__init__.py:1) (2 samples, 0.61%)</title><rect x="25.3823%" y="532" width="0.6116%" height="15" fill="rgb(254,125,32)" fg:x="83" fg:w="2"/><text x="25.6323%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="25.3823%" y="548" width="0.6116%" height="15" fill="rgb(253,97,22)" fg:x="83" fg:w="2"/><text x="25.6323%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="25.3823%" y="564" width="0.6116%" height="15" fill="rgb(241,101,14)" fg:x="83" fg:w="2"/><text x="25.6323%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="25.3823%" y="580" width="0.6116%" height="15" fill="rgb(238,103,29)" fg:x="83" fg:w="2"/><text x="25.6323%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="25.3823%" y="596" width="0.6116%" height="15" fill="rgb(233,195,47)" fg:x="83" fg:w="2"/><text x="25.6323%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="25.3823%" y="612" width="0.6116%" height="15" fill="rgb(246,218,30)" fg:x="83" fg:w="2"/><text x="25.6323%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="25.3823%" y="628" width="0.6116%" height="15" fill="rgb(219,145,47)" fg:x="83" fg:w="2"/><text x="25.6323%" y="638.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="25.3823%" y="644" width="0.6116%" height="15" fill="rgb(243,12,26)" fg:x="83" fg:w="2"/><text x="25.6323%" y="654.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.61%)</title><rect x="25.3823%" y="660" width="0.6116%" height="15" fill="rgb(214,87,16)" fg:x="83" fg:w="2"/><text x="25.6323%" y="670.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.31%)</title><rect x="25.9939%" y="1252" width="0.3058%" height="15" fill="rgb(208,99,42)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1262.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.31%)</title><rect x="25.9939%" y="1268" width="0.3058%" height="15" fill="rgb(253,99,2)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1278.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.31%)</title><rect x="25.9939%" y="1284" width="0.3058%" height="15" fill="rgb(220,168,23)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1294.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="25.9939%" y="1300" width="0.3058%" height="15" fill="rgb(242,38,24)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1310.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.31%)</title><rect x="25.9939%" y="1316" width="0.3058%" height="15" fill="rgb(225,182,9)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1326.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (1 samples, 0.31%)</title><rect x="25.9939%" y="1332" width="0.3058%" height="15" fill="rgb(243,178,37)" fg:x="85" fg:w="1"/><text x="26.2439%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="25.9939%" y="1124" width="0.6116%" height="15" fill="rgb(232,139,19)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="25.9939%" y="1140" width="0.6116%" height="15" fill="rgb(225,201,24)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="25.9939%" y="1156" width="0.6116%" height="15" fill="rgb(221,47,46)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="25.9939%" y="1172" width="0.6116%" height="15" fill="rgb(249,23,13)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="25.9939%" y="1188" width="0.6116%" height="15" fill="rgb(219,9,5)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1198.50"></text></g><g><title><module> (numpy/_typing/__init__.py:1) (2 samples, 0.61%)</title><rect x="25.9939%" y="1204" width="0.6116%" height="15" fill="rgb(254,171,16)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="25.9939%" y="1220" width="0.6116%" height="15" fill="rgb(230,171,20)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="25.9939%" y="1236" width="0.6116%" height="15" fill="rgb(210,71,41)" fg:x="85" fg:w="2"/><text x="26.2439%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="26.2997%" y="1252" width="0.3058%" height="15" fill="rgb(206,173,20)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1262.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="26.2997%" y="1268" width="0.3058%" height="15" fill="rgb(233,88,34)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1278.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.31%)</title><rect x="26.2997%" y="1284" width="0.3058%" height="15" fill="rgb(223,209,46)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1294.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.31%)</title><rect x="26.2997%" y="1300" width="0.3058%" height="15" fill="rgb(250,43,18)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1310.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.31%)</title><rect x="26.2997%" y="1316" width="0.3058%" height="15" fill="rgb(208,13,10)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1326.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.31%)</title><rect x="26.2997%" y="1332" width="0.3058%" height="15" fill="rgb(212,200,36)" fg:x="86" fg:w="1"/><text x="26.5497%" y="1342.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="532" width="0.9174%" height="15" fill="rgb(225,90,30)" fg:x="85" fg:w="3"/><text x="26.2439%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="25.9939%" y="548" width="0.9174%" height="15" fill="rgb(236,182,39)" fg:x="85" fg:w="3"/><text x="26.2439%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="564" width="0.9174%" height="15" fill="rgb(212,144,35)" fg:x="85" fg:w="3"/><text x="26.2439%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="25.9939%" y="580" width="0.9174%" height="15" fill="rgb(228,63,44)" fg:x="85" fg:w="3"/><text x="26.2439%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="25.9939%" y="596" width="0.9174%" height="15" fill="rgb(228,109,6)" fg:x="85" fg:w="3"/><text x="26.2439%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="25.9939%" y="612" width="0.9174%" height="15" fill="rgb(238,117,24)" fg:x="85" fg:w="3"/><text x="26.2439%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="25.9939%" y="628" width="0.9174%" height="15" fill="rgb(242,26,26)" fg:x="85" fg:w="3"/><text x="26.2439%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="644" width="0.9174%" height="15" fill="rgb(221,92,48)" fg:x="85" fg:w="3"/><text x="26.2439%" y="654.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="660" width="0.9174%" height="15" fill="rgb(209,209,32)" fg:x="85" fg:w="3"/><text x="26.2439%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="25.9939%" y="676" width="0.9174%" height="15" fill="rgb(221,70,22)" fg:x="85" fg:w="3"/><text x="26.2439%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="25.9939%" y="692" width="0.9174%" height="15" fill="rgb(248,145,5)" fg:x="85" fg:w="3"/><text x="26.2439%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="25.9939%" y="708" width="0.9174%" height="15" fill="rgb(226,116,26)" fg:x="85" fg:w="3"/><text x="26.2439%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="25.9939%" y="724" width="0.9174%" height="15" fill="rgb(244,5,17)" fg:x="85" fg:w="3"/><text x="26.2439%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="740" width="0.9174%" height="15" fill="rgb(252,159,33)" fg:x="85" fg:w="3"/><text x="26.2439%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="756" width="0.9174%" height="15" fill="rgb(206,71,0)" fg:x="85" fg:w="3"/><text x="26.2439%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="25.9939%" y="772" width="0.9174%" height="15" fill="rgb(233,118,54)" fg:x="85" fg:w="3"/><text x="26.2439%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="788" width="0.9174%" height="15" fill="rgb(234,83,48)" fg:x="85" fg:w="3"/><text x="26.2439%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="25.9939%" y="804" width="0.9174%" height="15" fill="rgb(228,3,54)" fg:x="85" fg:w="3"/><text x="26.2439%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="25.9939%" y="820" width="0.9174%" height="15" fill="rgb(226,155,13)" fg:x="85" fg:w="3"/><text x="26.2439%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="25.9939%" y="836" width="0.9174%" height="15" fill="rgb(241,28,37)" fg:x="85" fg:w="3"/><text x="26.2439%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="25.9939%" y="852" width="0.9174%" height="15" fill="rgb(233,93,10)" fg:x="85" fg:w="3"/><text x="26.2439%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="868" width="0.9174%" height="15" fill="rgb(225,113,19)" fg:x="85" fg:w="3"/><text x="26.2439%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="884" width="0.9174%" height="15" fill="rgb(241,2,18)" fg:x="85" fg:w="3"/><text x="26.2439%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="25.9939%" y="900" width="0.9174%" height="15" fill="rgb(228,207,21)" fg:x="85" fg:w="3"/><text x="26.2439%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="25.9939%" y="916" width="0.9174%" height="15" fill="rgb(213,211,35)" fg:x="85" fg:w="3"/><text x="26.2439%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="25.9939%" y="932" width="0.9174%" height="15" fill="rgb(209,83,10)" fg:x="85" fg:w="3"/><text x="26.2439%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="25.9939%" y="948" width="0.9174%" height="15" fill="rgb(209,164,1)" fg:x="85" fg:w="3"/><text x="26.2439%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="964" width="0.9174%" height="15" fill="rgb(213,184,43)" fg:x="85" fg:w="3"/><text x="26.2439%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="980" width="0.9174%" height="15" fill="rgb(231,61,34)" fg:x="85" fg:w="3"/><text x="26.2439%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="25.9939%" y="996" width="0.9174%" height="15" fill="rgb(235,75,3)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="1012" width="0.9174%" height="15" fill="rgb(220,106,47)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="25.9939%" y="1028" width="0.9174%" height="15" fill="rgb(210,196,33)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="25.9939%" y="1044" width="0.9174%" height="15" fill="rgb(229,154,42)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="25.9939%" y="1060" width="0.9174%" height="15" fill="rgb(228,114,26)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="25.9939%" y="1076" width="0.9174%" height="15" fill="rgb(208,144,1)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="25.9939%" y="1092" width="0.9174%" height="15" fill="rgb(239,112,37)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (3 samples, 0.92%)</title><rect x="25.9939%" y="1108" width="0.9174%" height="15" fill="rgb(210,96,50)" fg:x="85" fg:w="3"/><text x="26.2439%" y="1118.50"></text></g><g><title>decorator (numpy/core/overrides.py:142) (1 samples, 0.31%)</title><rect x="26.6055%" y="1124" width="0.3058%" height="15" fill="rgb(222,178,2)" fg:x="87" fg:w="1"/><text x="26.8555%" y="1134.50"></text></g><g><title>verify_matching_signatures (numpy/core/overrides.py:83) (1 samples, 0.31%)</title><rect x="26.6055%" y="1140" width="0.3058%" height="15" fill="rgb(226,74,18)" fg:x="87" fg:w="1"/><text x="26.8555%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="26.9113%" y="644" width="0.3058%" height="15" fill="rgb(225,67,54)" fg:x="88" fg:w="1"/><text x="27.1613%" y="654.50"></text></g><g><title><module> (numpy/ma/core.py:1) (1 samples, 0.31%)</title><rect x="26.9113%" y="660" width="0.3058%" height="15" fill="rgb(251,92,32)" fg:x="88" fg:w="1"/><text x="27.1613%" y="670.50"></text></g><g><title>doc_note (numpy/ma/core.py:115) (1 samples, 0.31%)</title><rect x="26.9113%" y="676" width="0.3058%" height="15" fill="rgb(228,149,22)" fg:x="88" fg:w="1"/><text x="27.1613%" y="686.50"></text></g><g><title>split (re.py:223) (1 samples, 0.31%)</title><rect x="26.9113%" y="692" width="0.3058%" height="15" fill="rgb(243,54,13)" fg:x="88" fg:w="1"/><text x="27.1613%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="26.9113%" y="708" width="0.3058%" height="15" fill="rgb(243,180,28)" fg:x="88" fg:w="1"/><text x="27.1613%" y="718.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.31%)</title><rect x="26.9113%" y="724" width="0.3058%" height="15" fill="rgb(208,167,24)" fg:x="88" fg:w="1"/><text x="27.1613%" y="734.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (2 samples, 0.61%)</title><rect x="26.9113%" y="532" width="0.6116%" height="15" fill="rgb(245,73,45)" fg:x="88" fg:w="2"/><text x="27.1613%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="26.9113%" y="548" width="0.6116%" height="15" fill="rgb(237,203,48)" fg:x="88" fg:w="2"/><text x="27.1613%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="26.9113%" y="564" width="0.6116%" height="15" fill="rgb(211,197,16)" fg:x="88" fg:w="2"/><text x="27.1613%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="26.9113%" y="580" width="0.6116%" height="15" fill="rgb(243,99,51)" fg:x="88" fg:w="2"/><text x="27.1613%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="26.9113%" y="596" width="0.6116%" height="15" fill="rgb(215,123,29)" fg:x="88" fg:w="2"/><text x="27.1613%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="26.9113%" y="612" width="0.6116%" height="15" fill="rgb(239,186,37)" fg:x="88" fg:w="2"/><text x="27.1613%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="26.9113%" y="628" width="0.6116%" height="15" fill="rgb(252,136,39)" fg:x="88" fg:w="2"/><text x="27.1613%" y="638.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="27.2171%" y="644" width="0.3058%" height="15" fill="rgb(223,213,32)" fg:x="89" fg:w="1"/><text x="27.4671%" y="654.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="27.2171%" y="660" width="0.3058%" height="15" fill="rgb(233,115,5)" fg:x="89" fg:w="1"/><text x="27.4671%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="27.5229%" y="724" width="0.3058%" height="15" fill="rgb(207,226,44)" fg:x="90" fg:w="1"/><text x="27.7729%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="27.5229%" y="740" width="0.3058%" height="15" fill="rgb(208,126,0)" fg:x="90" fg:w="1"/><text x="27.7729%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="25.3823%" y="516" width="2.7523%" height="15" fill="rgb(244,66,21)" fg:x="83" fg:w="9"/><text x="25.6323%" y="526.50">_c..</text></g><g><title><module> (numpy/random/__init__.py:1) (2 samples, 0.61%)</title><rect x="27.5229%" y="532" width="0.6116%" height="15" fill="rgb(222,97,12)" fg:x="90" fg:w="2"/><text x="27.7729%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="27.5229%" y="548" width="0.6116%" height="15" fill="rgb(219,213,19)" fg:x="90" fg:w="2"/><text x="27.7729%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="27.5229%" y="564" width="0.6116%" height="15" fill="rgb(252,169,30)" fg:x="90" fg:w="2"/><text x="27.7729%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="27.5229%" y="580" width="0.6116%" height="15" fill="rgb(206,32,51)" fg:x="90" fg:w="2"/><text x="27.7729%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="27.5229%" y="596" width="0.6116%" height="15" fill="rgb(250,172,42)" fg:x="90" fg:w="2"/><text x="27.7729%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="27.5229%" y="612" width="0.6116%" height="15" fill="rgb(209,34,43)" fg:x="90" fg:w="2"/><text x="27.7729%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="27.5229%" y="628" width="0.6116%" height="15" fill="rgb(223,11,35)" fg:x="90" fg:w="2"/><text x="27.7729%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="27.5229%" y="644" width="0.6116%" height="15" fill="rgb(251,219,26)" fg:x="90" fg:w="2"/><text x="27.7729%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (2 samples, 0.61%)</title><rect x="27.5229%" y="660" width="0.6116%" height="15" fill="rgb(231,119,3)" fg:x="90" fg:w="2"/><text x="27.7729%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="27.5229%" y="676" width="0.6116%" height="15" fill="rgb(216,97,11)" fg:x="90" fg:w="2"/><text x="27.7729%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="27.5229%" y="692" width="0.6116%" height="15" fill="rgb(223,59,9)" fg:x="90" fg:w="2"/><text x="27.7729%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="27.5229%" y="708" width="0.6116%" height="15" fill="rgb(233,93,31)" fg:x="90" fg:w="2"/><text x="27.7729%" y="718.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="27.8287%" y="724" width="0.3058%" height="15" fill="rgb(239,81,33)" fg:x="91" fg:w="1"/><text x="28.0787%" y="734.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="27.8287%" y="740" width="0.3058%" height="15" fill="rgb(213,120,34)" fg:x="91" fg:w="1"/><text x="28.0787%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="27.8287%" y="756" width="0.3058%" height="15" fill="rgb(243,49,53)" fg:x="91" fg:w="1"/><text x="28.0787%" y="766.50"></text></g><g><title><module> (numpy/__init__.py:1) (13 samples, 3.98%)</title><rect x="24.4648%" y="404" width="3.9755%" height="15" fill="rgb(247,216,33)" fg:x="80" fg:w="13"/><text x="24.7148%" y="414.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 3.06%)</title><rect x="25.3823%" y="420" width="3.0581%" height="15" fill="rgb(226,26,14)" fg:x="83" fg:w="10"/><text x="25.6323%" y="430.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.06%)</title><rect x="25.3823%" y="436" width="3.0581%" height="15" fill="rgb(215,49,53)" fg:x="83" fg:w="10"/><text x="25.6323%" y="446.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.06%)</title><rect x="25.3823%" y="452" width="3.0581%" height="15" fill="rgb(245,162,40)" fg:x="83" fg:w="10"/><text x="25.6323%" y="462.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.06%)</title><rect x="25.3823%" y="468" width="3.0581%" height="15" fill="rgb(229,68,17)" fg:x="83" fg:w="10"/><text x="25.6323%" y="478.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.06%)</title><rect x="25.3823%" y="484" width="3.0581%" height="15" fill="rgb(213,182,10)" fg:x="83" fg:w="10"/><text x="25.6323%" y="494.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.06%)</title><rect x="25.3823%" y="500" width="3.0581%" height="15" fill="rgb(245,125,30)" fg:x="83" fg:w="10"/><text x="25.6323%" y="510.50">exe..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="28.1346%" y="516" width="0.3058%" height="15" fill="rgb(232,202,2)" fg:x="92" fg:w="1"/><text x="28.3846%" y="526.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.31%)</title><rect x="28.1346%" y="532" width="0.3058%" height="15" fill="rgb(237,140,51)" fg:x="92" fg:w="1"/><text x="28.3846%" y="542.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.31%)</title><rect x="28.1346%" y="548" width="0.3058%" height="15" fill="rgb(236,157,25)" fg:x="92" fg:w="1"/><text x="28.3846%" y="558.50"></text></g><g><title><module> (pandas/_config/__init__.py:1) (1 samples, 0.31%)</title><rect x="28.4404%" y="500" width="0.3058%" height="15" fill="rgb(219,209,0)" fg:x="93" fg:w="1"/><text x="28.6904%" y="510.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="28.4404%" y="516" width="0.3058%" height="15" fill="rgb(240,116,54)" fg:x="93" fg:w="1"/><text x="28.6904%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="28.4404%" y="532" width="0.3058%" height="15" fill="rgb(216,10,36)" fg:x="93" fg:w="1"/><text x="28.6904%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="28.4404%" y="548" width="0.3058%" height="15" fill="rgb(222,72,44)" fg:x="93" fg:w="1"/><text x="28.6904%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="28.4404%" y="564" width="0.3058%" height="15" fill="rgb(232,159,9)" fg:x="93" fg:w="1"/><text x="28.6904%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="28.4404%" y="580" width="0.3058%" height="15" fill="rgb(210,39,32)" fg:x="93" fg:w="1"/><text x="28.6904%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="28.4404%" y="596" width="0.3058%" height="15" fill="rgb(216,194,45)" fg:x="93" fg:w="1"/><text x="28.6904%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="28.4404%" y="612" width="0.3058%" height="15" fill="rgb(218,18,35)" fg:x="93" fg:w="1"/><text x="28.6904%" y="622.50"></text></g><g><title><module> (pandas/_config/config.py:1) (1 samples, 0.31%)</title><rect x="28.4404%" y="628" width="0.3058%" height="15" fill="rgb(207,83,51)" fg:x="93" fg:w="1"/><text x="28.6904%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="28.4404%" y="644" width="0.3058%" height="15" fill="rgb(225,63,43)" fg:x="93" fg:w="1"/><text x="28.6904%" y="654.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.31%)</title><rect x="28.4404%" y="660" width="0.3058%" height="15" fill="rgb(207,57,36)" fg:x="93" fg:w="1"/><text x="28.6904%" y="670.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.31%)</title><rect x="28.4404%" y="676" width="0.3058%" height="15" fill="rgb(216,99,33)" fg:x="93" fg:w="1"/><text x="28.6904%" y="686.50"></text></g><g><title><module> (pandas/compat/_constants.py:1) (1 samples, 0.31%)</title><rect x="28.7462%" y="596" width="0.3058%" height="15" fill="rgb(225,42,16)" fg:x="94" fg:w="1"/><text x="28.9962%" y="606.50"></text></g><g><title>get_config_var (sysconfig.py:614) (1 samples, 0.31%)</title><rect x="28.7462%" y="612" width="0.3058%" height="15" fill="rgb(220,201,45)" fg:x="94" fg:w="1"/><text x="28.9962%" y="622.50"></text></g><g><title>get_config_vars (sysconfig.py:535) (1 samples, 0.31%)</title><rect x="28.7462%" y="628" width="0.3058%" height="15" fill="rgb(225,33,4)" fg:x="94" fg:w="1"/><text x="28.9962%" y="638.50"></text></g><g><title>get_makefile_filename (sysconfig.py:341) (1 samples, 0.31%)</title><rect x="28.7462%" y="644" width="0.3058%" height="15" fill="rgb(224,33,50)" fg:x="94" fg:w="1"/><text x="28.9962%" y="654.50"></text></g><g><title>get_path (sysconfig.py:527) (1 samples, 0.31%)</title><rect x="28.7462%" y="660" width="0.3058%" height="15" fill="rgb(246,198,51)" fg:x="94" fg:w="1"/><text x="28.9962%" y="670.50"></text></g><g><title>get_paths (sysconfig.py:515) (1 samples, 0.31%)</title><rect x="28.7462%" y="676" width="0.3058%" height="15" fill="rgb(205,22,4)" fg:x="94" fg:w="1"/><text x="28.9962%" y="686.50"></text></g><g><title>_expand_vars (sysconfig.py:171) (1 samples, 0.31%)</title><rect x="28.7462%" y="692" width="0.3058%" height="15" fill="rgb(206,3,8)" fg:x="94" fg:w="1"/><text x="28.9962%" y="702.50"></text></g><g><title>normpath (posixpath.py:334) (1 samples, 0.31%)</title><rect x="28.7462%" y="708" width="0.3058%" height="15" fill="rgb(251,23,15)" fg:x="94" fg:w="1"/><text x="28.9962%" y="718.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.31%)</title><rect x="29.3578%" y="1348" width="0.3058%" height="15" fill="rgb(252,88,28)" fg:x="96" fg:w="1"/><text x="29.6078%" y="1358.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.31%)</title><rect x="29.3578%" y="1364" width="0.3058%" height="15" fill="rgb(212,127,14)" fg:x="96" fg:w="1"/><text x="29.6078%" y="1374.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="29.3578%" y="1380" width="0.3058%" height="15" fill="rgb(247,145,37)" fg:x="96" fg:w="1"/><text x="29.6078%" y="1390.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.31%)</title><rect x="29.3578%" y="1396" width="0.3058%" height="15" fill="rgb(209,117,53)" fg:x="96" fg:w="1"/><text x="29.6078%" y="1406.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (1 samples, 0.31%)</title><rect x="29.3578%" y="1412" width="0.3058%" height="15" fill="rgb(212,90,42)" fg:x="96" fg:w="1"/><text x="29.6078%" y="1422.50"></text></g><g><title><module> (cloudpickle/__init__.py:1) (2 samples, 0.61%)</title><rect x="29.3578%" y="868" width="0.6116%" height="15" fill="rgb(218,164,37)" fg:x="96" fg:w="2"/><text x="29.6078%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="29.3578%" y="884" width="0.6116%" height="15" fill="rgb(246,65,34)" fg:x="96" fg:w="2"/><text x="29.6078%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="900" width="0.6116%" height="15" fill="rgb(231,100,33)" fg:x="96" fg:w="2"/><text x="29.6078%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="916" width="0.6116%" height="15" fill="rgb(228,126,14)" fg:x="96" fg:w="2"/><text x="29.6078%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="932" width="0.6116%" height="15" fill="rgb(215,173,21)" fg:x="96" fg:w="2"/><text x="29.6078%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="29.3578%" y="948" width="0.6116%" height="15" fill="rgb(210,6,40)" fg:x="96" fg:w="2"/><text x="29.6078%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="29.3578%" y="964" width="0.6116%" height="15" fill="rgb(212,48,18)" fg:x="96" fg:w="2"/><text x="29.6078%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="980" width="0.6116%" height="15" fill="rgb(230,214,11)" fg:x="96" fg:w="2"/><text x="29.6078%" y="990.50"></text></g><g><title><module> (cloudpickle/cloudpickle.py:1) (2 samples, 0.61%)</title><rect x="29.3578%" y="996" width="0.6116%" height="15" fill="rgb(254,105,39)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="1012" width="0.6116%" height="15" fill="rgb(245,158,5)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="1028" width="0.6116%" height="15" fill="rgb(249,208,11)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="29.3578%" y="1044" width="0.6116%" height="15" fill="rgb(210,39,28)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="29.3578%" y="1060" width="0.6116%" height="15" fill="rgb(211,56,53)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="1076" width="0.6116%" height="15" fill="rgb(226,201,30)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1086.50"></text></g><g><title><module> (dataclasses.py:1) (2 samples, 0.61%)</title><rect x="29.3578%" y="1092" width="0.6116%" height="15" fill="rgb(239,101,34)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="1108" width="0.6116%" height="15" fill="rgb(226,209,5)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="1124" width="0.6116%" height="15" fill="rgb(250,105,47)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="29.3578%" y="1140" width="0.6116%" height="15" fill="rgb(230,72,3)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="29.3578%" y="1156" width="0.6116%" height="15" fill="rgb(232,218,39)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="1172" width="0.6116%" height="15" fill="rgb(248,166,6)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1182.50"></text></g><g><title><module> (copy.py:1) (2 samples, 0.61%)</title><rect x="29.3578%" y="1188" width="0.6116%" height="15" fill="rgb(247,89,20)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="1204" width="0.6116%" height="15" fill="rgb(248,130,54)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="1220" width="0.6116%" height="15" fill="rgb(234,196,4)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="1236" width="0.6116%" height="15" fill="rgb(250,143,31)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="1252" width="0.6116%" height="15" fill="rgb(211,110,34)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="1268" width="0.6116%" height="15" fill="rgb(215,124,48)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.3578%" y="1284" width="0.6116%" height="15" fill="rgb(216,46,13)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.3578%" y="1300" width="0.6116%" height="15" fill="rgb(205,184,25)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.3578%" y="1316" width="0.6116%" height="15" fill="rgb(228,1,10)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1326.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.61%)</title><rect x="29.3578%" y="1332" width="0.6116%" height="15" fill="rgb(213,116,27)" fg:x="96" fg:w="2"/><text x="29.6078%" y="1342.50"></text></g><g><title>find_spec (_distutils_hack/__init__.py:89) (1 samples, 0.31%)</title><rect x="29.6636%" y="1348" width="0.3058%" height="15" fill="rgb(241,95,50)" fg:x="97" fg:w="1"/><text x="29.9136%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 1.22%)</title><rect x="29.3578%" y="756" width="1.2232%" height="15" fill="rgb(238,48,32)" fg:x="96" fg:w="4"/><text x="29.6078%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="29.3578%" y="772" width="1.2232%" height="15" fill="rgb(235,113,49)" fg:x="96" fg:w="4"/><text x="29.6078%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="29.3578%" y="788" width="1.2232%" height="15" fill="rgb(205,127,43)" fg:x="96" fg:w="4"/><text x="29.6078%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="29.3578%" y="804" width="1.2232%" height="15" fill="rgb(250,162,2)" fg:x="96" fg:w="4"/><text x="29.6078%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="29.3578%" y="820" width="1.2232%" height="15" fill="rgb(220,13,41)" fg:x="96" fg:w="4"/><text x="29.6078%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="29.3578%" y="836" width="1.2232%" height="15" fill="rgb(249,221,25)" fg:x="96" fg:w="4"/><text x="29.6078%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="29.3578%" y="852" width="1.2232%" height="15" fill="rgb(215,208,19)" fg:x="96" fg:w="4"/><text x="29.6078%" y="862.50"></text></g><g><title><module> (pyarrow/util.py:20) (2 samples, 0.61%)</title><rect x="29.9694%" y="868" width="0.6116%" height="15" fill="rgb(236,175,2)" fg:x="98" fg:w="2"/><text x="30.2194%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.9694%" y="884" width="0.6116%" height="15" fill="rgb(241,52,2)" fg:x="98" fg:w="2"/><text x="30.2194%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.9694%" y="900" width="0.6116%" height="15" fill="rgb(248,140,14)" fg:x="98" fg:w="2"/><text x="30.2194%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="29.9694%" y="916" width="0.6116%" height="15" fill="rgb(253,22,42)" fg:x="98" fg:w="2"/><text x="30.2194%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="29.9694%" y="932" width="0.6116%" height="15" fill="rgb(234,61,47)" fg:x="98" fg:w="2"/><text x="30.2194%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.9694%" y="948" width="0.6116%" height="15" fill="rgb(208,226,15)" fg:x="98" fg:w="2"/><text x="30.2194%" y="958.50"></text></g><g><title><module> (socket.py:4) (2 samples, 0.61%)</title><rect x="29.9694%" y="964" width="0.6116%" height="15" fill="rgb(217,221,4)" fg:x="98" fg:w="2"/><text x="30.2194%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="29.9694%" y="980" width="0.6116%" height="15" fill="rgb(212,174,34)" fg:x="98" fg:w="2"/><text x="30.2194%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="29.9694%" y="996" width="0.6116%" height="15" fill="rgb(253,83,4)" fg:x="98" fg:w="2"/><text x="30.2194%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="29.9694%" y="1012" width="0.6116%" height="15" fill="rgb(250,195,49)" fg:x="98" fg:w="2"/><text x="30.2194%" y="1022.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="29.9694%" y="1028" width="0.6116%" height="15" fill="rgb(241,192,25)" fg:x="98" fg:w="2"/><text x="30.2194%" y="1038.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="29.9694%" y="1044" width="0.6116%" height="15" fill="rgb(208,124,10)" fg:x="98" fg:w="2"/><text x="30.2194%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="29.9694%" y="1060" width="0.6116%" height="15" fill="rgb(222,33,0)" fg:x="98" fg:w="2"/><text x="30.2194%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="30.5810%" y="756" width="0.3058%" height="15" fill="rgb(234,209,28)" fg:x="100" fg:w="1"/><text x="30.8310%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="30.5810%" y="772" width="0.3058%" height="15" fill="rgb(224,11,23)" fg:x="100" fg:w="1"/><text x="30.8310%" y="782.50"></text></g><g><title><module> (pyarrow/hdfs.py:19) (1 samples, 0.31%)</title><rect x="30.5810%" y="788" width="0.3058%" height="15" fill="rgb(232,99,1)" fg:x="100" fg:w="1"/><text x="30.8310%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="30.5810%" y="804" width="0.3058%" height="15" fill="rgb(237,95,45)" fg:x="100" fg:w="1"/><text x="30.8310%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="30.5810%" y="820" width="0.3058%" height="15" fill="rgb(208,109,11)" fg:x="100" fg:w="1"/><text x="30.8310%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="30.5810%" y="836" width="0.3058%" height="15" fill="rgb(216,190,48)" fg:x="100" fg:w="1"/><text x="30.8310%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="30.5810%" y="852" width="0.3058%" height="15" fill="rgb(251,171,36)" fg:x="100" fg:w="1"/><text x="30.8310%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="30.5810%" y="868" width="0.3058%" height="15" fill="rgb(230,62,22)" fg:x="100" fg:w="1"/><text x="30.8310%" y="878.50"></text></g><g><title><module> (pyarrow/filesystem.py:19) (1 samples, 0.31%)</title><rect x="30.5810%" y="884" width="0.3058%" height="15" fill="rgb(225,114,35)" fg:x="100" fg:w="1"/><text x="30.8310%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (20 samples, 6.12%)</title><rect x="28.7462%" y="564" width="6.1162%" height="15" fill="rgb(215,118,42)" fg:x="94" fg:w="20"/><text x="28.9962%" y="574.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (20 samples, 6.12%)</title><rect x="28.7462%" y="580" width="6.1162%" height="15" fill="rgb(243,119,21)" fg:x="94" fg:w="20"/><text x="28.9962%" y="590.50">_call_wi..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (19 samples, 5.81%)</title><rect x="29.0520%" y="596" width="5.8104%" height="15" fill="rgb(252,177,53)" fg:x="95" fg:w="19"/><text x="29.3020%" y="606.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 5.81%)</title><rect x="29.0520%" y="612" width="5.8104%" height="15" fill="rgb(237,209,29)" fg:x="95" fg:w="19"/><text x="29.3020%" y="622.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 5.81%)</title><rect x="29.0520%" y="628" width="5.8104%" height="15" fill="rgb(212,65,23)" fg:x="95" fg:w="19"/><text x="29.3020%" y="638.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 5.81%)</title><rect x="29.0520%" y="644" width="5.8104%" height="15" fill="rgb(230,222,46)" fg:x="95" fg:w="19"/><text x="29.3020%" y="654.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 5.81%)</title><rect x="29.0520%" y="660" width="5.8104%" height="15" fill="rgb(215,135,32)" fg:x="95" fg:w="19"/><text x="29.3020%" y="670.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 5.81%)</title><rect x="29.0520%" y="676" width="5.8104%" height="15" fill="rgb(246,101,22)" fg:x="95" fg:w="19"/><text x="29.3020%" y="686.50">_call_w..</text></g><g><title><module> (pyarrow/__init__.py:20) (19 samples, 5.81%)</title><rect x="29.0520%" y="692" width="5.8104%" height="15" fill="rgb(206,107,13)" fg:x="95" fg:w="19"/><text x="29.3020%" y="702.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 5.50%)</title><rect x="29.3578%" y="708" width="5.5046%" height="15" fill="rgb(250,100,44)" fg:x="96" fg:w="18"/><text x="29.6078%" y="718.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 5.50%)</title><rect x="29.3578%" y="724" width="5.5046%" height="15" fill="rgb(231,147,38)" fg:x="96" fg:w="18"/><text x="29.6078%" y="734.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 5.50%)</title><rect x="29.3578%" y="740" width="5.5046%" height="15" fill="rgb(229,8,40)" fg:x="96" fg:w="18"/><text x="29.6078%" y="750.50">_load_u..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (13 samples, 3.98%)</title><rect x="30.8869%" y="756" width="3.9755%" height="15" fill="rgb(221,135,30)" fg:x="101" fg:w="13"/><text x="31.1369%" y="766.50">modu..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (13 samples, 3.98%)</title><rect x="30.8869%" y="772" width="3.9755%" height="15" fill="rgb(249,193,18)" fg:x="101" fg:w="13"/><text x="31.1369%" y="782.50">crea..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 3.98%)</title><rect x="30.8869%" y="788" width="3.9755%" height="15" fill="rgb(209,133,39)" fg:x="101" fg:w="13"/><text x="31.1369%" y="798.50">_cal..</text></g><g><title><module> (pandas/compat/__init__.py:1) (21 samples, 6.42%)</title><rect x="28.7462%" y="500" width="6.4220%" height="15" fill="rgb(232,100,14)" fg:x="94" fg:w="21"/><text x="28.9962%" y="510.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 6.42%)</title><rect x="28.7462%" y="516" width="6.4220%" height="15" fill="rgb(224,185,1)" fg:x="94" fg:w="21"/><text x="28.9962%" y="526.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 6.42%)</title><rect x="28.7462%" y="532" width="6.4220%" height="15" fill="rgb(223,139,8)" fg:x="94" fg:w="21"/><text x="28.9962%" y="542.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 6.42%)</title><rect x="28.7462%" y="548" width="6.4220%" height="15" fill="rgb(232,213,38)" fg:x="94" fg:w="21"/><text x="28.9962%" y="558.50">_load_un..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="34.8624%" y="564" width="0.3058%" height="15" fill="rgb(207,94,22)" fg:x="114" fg:w="1"/><text x="35.1124%" y="574.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.31%)</title><rect x="34.8624%" y="580" width="0.3058%" height="15" fill="rgb(219,183,54)" fg:x="114" fg:w="1"/><text x="35.1124%" y="590.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.31%)</title><rect x="34.8624%" y="596" width="0.3058%" height="15" fill="rgb(216,185,54)" fg:x="114" fg:w="1"/><text x="35.1124%" y="606.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.31%)</title><rect x="34.8624%" y="612" width="0.3058%" height="15" fill="rgb(254,217,39)" fg:x="114" fg:w="1"/><text x="35.1124%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="35.7798%" y="1284" width="0.3058%" height="15" fill="rgb(240,178,23)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="35.7798%" y="1300" width="0.3058%" height="15" fill="rgb(218,11,47)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="35.7798%" y="1316" width="0.3058%" height="15" fill="rgb(218,51,51)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="35.7798%" y="1332" width="0.3058%" height="15" fill="rgb(238,126,27)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="35.7798%" y="1348" width="0.3058%" height="15" fill="rgb(249,202,22)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1358.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="35.7798%" y="1364" width="0.3058%" height="15" fill="rgb(254,195,49)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1374.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="35.7798%" y="1380" width="0.3058%" height="15" fill="rgb(208,123,14)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="35.7798%" y="1396" width="0.3058%" height="15" fill="rgb(224,200,8)" fg:x="117" fg:w="1"/><text x="36.0298%" y="1406.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="35.7798%" y="1204" width="0.6116%" height="15" fill="rgb(217,61,36)" fg:x="117" fg:w="2"/><text x="36.0298%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="35.7798%" y="1220" width="0.6116%" height="15" fill="rgb(206,35,45)" fg:x="117" fg:w="2"/><text x="36.0298%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="35.7798%" y="1236" width="0.6116%" height="15" fill="rgb(217,65,33)" fg:x="117" fg:w="2"/><text x="36.0298%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="35.7798%" y="1252" width="0.6116%" height="15" fill="rgb(222,158,48)" fg:x="117" fg:w="2"/><text x="36.0298%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="35.7798%" y="1268" width="0.6116%" height="15" fill="rgb(254,2,54)" fg:x="117" fg:w="2"/><text x="36.0298%" y="1278.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="36.0856%" y="1284" width="0.3058%" height="15" fill="rgb(250,143,38)" fg:x="118" fg:w="1"/><text x="36.3356%" y="1294.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="36.0856%" y="1300" width="0.3058%" height="15" fill="rgb(248,25,0)" fg:x="118" fg:w="1"/><text x="36.3356%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="36.0856%" y="1316" width="0.3058%" height="15" fill="rgb(206,152,27)" fg:x="118" fg:w="1"/><text x="36.3356%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (6 samples, 1.83%)</title><rect x="35.1682%" y="1124" width="1.8349%" height="15" fill="rgb(240,77,30)" fg:x="115" fg:w="6"/><text x="35.4182%" y="1134.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="35.1682%" y="1140" width="1.8349%" height="15" fill="rgb(231,5,3)" fg:x="115" fg:w="6"/><text x="35.4182%" y="1150.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="35.7798%" y="1156" width="1.2232%" height="15" fill="rgb(207,226,32)" fg:x="117" fg:w="4"/><text x="36.0298%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="35.7798%" y="1172" width="1.2232%" height="15" fill="rgb(222,207,47)" fg:x="117" fg:w="4"/><text x="36.0298%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="35.7798%" y="1188" width="1.2232%" height="15" fill="rgb(229,115,45)" fg:x="117" fg:w="4"/><text x="36.0298%" y="1198.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="36.3914%" y="1204" width="0.6116%" height="15" fill="rgb(224,191,6)" fg:x="119" fg:w="2"/><text x="36.6414%" y="1214.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="36.3914%" y="1220" width="0.6116%" height="15" fill="rgb(230,227,24)" fg:x="119" fg:w="2"/><text x="36.6414%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="36.3914%" y="1236" width="0.6116%" height="15" fill="rgb(228,80,19)" fg:x="119" fg:w="2"/><text x="36.6414%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 2.45%)</title><rect x="35.1682%" y="1044" width="2.4465%" height="15" fill="rgb(247,229,0)" fg:x="115" fg:w="8"/><text x="35.4182%" y="1054.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="35.1682%" y="1060" width="2.4465%" height="15" fill="rgb(237,194,15)" fg:x="115" fg:w="8"/><text x="35.4182%" y="1070.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="35.1682%" y="1076" width="2.4465%" height="15" fill="rgb(219,203,20)" fg:x="115" fg:w="8"/><text x="35.4182%" y="1086.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="35.1682%" y="1092" width="2.4465%" height="15" fill="rgb(234,128,8)" fg:x="115" fg:w="8"/><text x="35.4182%" y="1102.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="35.1682%" y="1108" width="2.4465%" height="15" fill="rgb(248,202,8)" fg:x="115" fg:w="8"/><text x="35.4182%" y="1118.50">_l..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="37.0031%" y="1124" width="0.6116%" height="15" fill="rgb(206,104,37)" fg:x="121" fg:w="2"/><text x="37.2531%" y="1134.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="37.0031%" y="1140" width="0.6116%" height="15" fill="rgb(223,8,27)" fg:x="121" fg:w="2"/><text x="37.2531%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="37.0031%" y="1156" width="0.6116%" height="15" fill="rgb(216,217,28)" fg:x="121" fg:w="2"/><text x="37.2531%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="35.1682%" y="996" width="2.7523%" height="15" fill="rgb(249,199,1)" fg:x="115" fg:w="9"/><text x="35.4182%" y="1006.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="35.1682%" y="1012" width="2.7523%" height="15" fill="rgb(240,85,17)" fg:x="115" fg:w="9"/><text x="35.4182%" y="1022.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="35.1682%" y="1028" width="2.7523%" height="15" fill="rgb(206,108,45)" fg:x="115" fg:w="9"/><text x="35.4182%" y="1038.50">_l..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="37.6147%" y="1044" width="0.3058%" height="15" fill="rgb(245,210,41)" fg:x="123" fg:w="1"/><text x="37.8647%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="37.6147%" y="1060" width="0.3058%" height="15" fill="rgb(206,13,37)" fg:x="123" fg:w="1"/><text x="37.8647%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="37.6147%" y="1076" width="0.3058%" height="15" fill="rgb(250,61,18)" fg:x="123" fg:w="1"/><text x="37.8647%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.06%)</title><rect x="35.1682%" y="884" width="3.0581%" height="15" fill="rgb(235,172,48)" fg:x="115" fg:w="10"/><text x="35.4182%" y="894.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.06%)</title><rect x="35.1682%" y="900" width="3.0581%" height="15" fill="rgb(249,201,17)" fg:x="115" fg:w="10"/><text x="35.4182%" y="910.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.06%)</title><rect x="35.1682%" y="916" width="3.0581%" height="15" fill="rgb(219,208,6)" fg:x="115" fg:w="10"/><text x="35.4182%" y="926.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.06%)</title><rect x="35.1682%" y="932" width="3.0581%" height="15" fill="rgb(248,31,23)" fg:x="115" fg:w="10"/><text x="35.4182%" y="942.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.06%)</title><rect x="35.1682%" y="948" width="3.0581%" height="15" fill="rgb(245,15,42)" fg:x="115" fg:w="10"/><text x="35.4182%" y="958.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.06%)</title><rect x="35.1682%" y="964" width="3.0581%" height="15" fill="rgb(222,217,39)" fg:x="115" fg:w="10"/><text x="35.4182%" y="974.50">_ca..</text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (10 samples, 3.06%)</title><rect x="35.1682%" y="980" width="3.0581%" height="15" fill="rgb(210,219,27)" fg:x="115" fg:w="10"/><text x="35.4182%" y="990.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="37.9205%" y="996" width="0.3058%" height="15" fill="rgb(252,166,36)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="37.9205%" y="1012" width="0.3058%" height="15" fill="rgb(245,132,34)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="37.9205%" y="1028" width="0.3058%" height="15" fill="rgb(236,54,3)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="37.9205%" y="1044" width="0.3058%" height="15" fill="rgb(241,173,43)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="37.9205%" y="1060" width="0.3058%" height="15" fill="rgb(215,190,9)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="37.9205%" y="1076" width="0.3058%" height="15" fill="rgb(242,101,16)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="37.9205%" y="1092" width="0.3058%" height="15" fill="rgb(223,190,21)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1102.50"></text></g><g><title>__setitem__ (enum.py:88) (1 samples, 0.31%)</title><rect x="37.9205%" y="1108" width="0.3058%" height="15" fill="rgb(215,228,25)" fg:x="124" fg:w="1"/><text x="38.1705%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (11 samples, 3.36%)</title><rect x="35.1682%" y="660" width="3.3639%" height="15" fill="rgb(225,36,22)" fg:x="115" fg:w="11"/><text x="35.4182%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.36%)</title><rect x="35.1682%" y="676" width="3.3639%" height="15" fill="rgb(251,106,46)" fg:x="115" fg:w="11"/><text x="35.4182%" y="686.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.36%)</title><rect x="35.1682%" y="692" width="3.3639%" height="15" fill="rgb(208,90,1)" fg:x="115" fg:w="11"/><text x="35.4182%" y="702.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.36%)</title><rect x="35.1682%" y="708" width="3.3639%" height="15" fill="rgb(243,10,4)" fg:x="115" fg:w="11"/><text x="35.4182%" y="718.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.36%)</title><rect x="35.1682%" y="724" width="3.3639%" height="15" fill="rgb(212,137,27)" fg:x="115" fg:w="11"/><text x="35.4182%" y="734.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (11 samples, 3.36%)</title><rect x="35.1682%" y="740" width="3.3639%" height="15" fill="rgb(231,220,49)" fg:x="115" fg:w="11"/><text x="35.4182%" y="750.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.36%)</title><rect x="35.1682%" y="756" width="3.3639%" height="15" fill="rgb(237,96,20)" fg:x="115" fg:w="11"/><text x="35.4182%" y="766.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.36%)</title><rect x="35.1682%" y="772" width="3.3639%" height="15" fill="rgb(239,229,30)" fg:x="115" fg:w="11"/><text x="35.4182%" y="782.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.36%)</title><rect x="35.1682%" y="788" width="3.3639%" height="15" fill="rgb(219,65,33)" fg:x="115" fg:w="11"/><text x="35.4182%" y="798.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.36%)</title><rect x="35.1682%" y="804" width="3.3639%" height="15" fill="rgb(243,134,7)" fg:x="115" fg:w="11"/><text x="35.4182%" y="814.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (11 samples, 3.36%)</title><rect x="35.1682%" y="820" width="3.3639%" height="15" fill="rgb(216,177,54)" fg:x="115" fg:w="11"/><text x="35.4182%" y="830.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.36%)</title><rect x="35.1682%" y="836" width="3.3639%" height="15" fill="rgb(211,160,20)" fg:x="115" fg:w="11"/><text x="35.4182%" y="846.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.36%)</title><rect x="35.1682%" y="852" width="3.3639%" height="15" fill="rgb(239,85,39)" fg:x="115" fg:w="11"/><text x="35.4182%" y="862.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.36%)</title><rect x="35.1682%" y="868" width="3.3639%" height="15" fill="rgb(232,125,22)" fg:x="115" fg:w="11"/><text x="35.4182%" y="878.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="38.2263%" y="884" width="0.3058%" height="15" fill="rgb(244,57,34)" fg:x="125" fg:w="1"/><text x="38.4763%" y="894.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="38.2263%" y="900" width="0.3058%" height="15" fill="rgb(214,203,32)" fg:x="125" fg:w="1"/><text x="38.4763%" y="910.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="38.2263%" y="916" width="0.3058%" height="15" fill="rgb(207,58,43)" fg:x="125" fg:w="1"/><text x="38.4763%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="38.2263%" y="932" width="0.3058%" height="15" fill="rgb(215,193,15)" fg:x="125" fg:w="1"/><text x="38.4763%" y="942.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (12 samples, 3.67%)</title><rect x="35.1682%" y="596" width="3.6697%" height="15" fill="rgb(232,15,44)" fg:x="115" fg:w="12"/><text x="35.4182%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.67%)</title><rect x="35.1682%" y="612" width="3.6697%" height="15" fill="rgb(212,3,48)" fg:x="115" fg:w="12"/><text x="35.4182%" y="622.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.67%)</title><rect x="35.1682%" y="628" width="3.6697%" height="15" fill="rgb(218,128,7)" fg:x="115" fg:w="12"/><text x="35.4182%" y="638.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.67%)</title><rect x="35.1682%" y="644" width="3.6697%" height="15" fill="rgb(226,216,39)" fg:x="115" fg:w="12"/><text x="35.4182%" y="654.50">_loa..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="38.5321%" y="660" width="0.3058%" height="15" fill="rgb(243,47,51)" fg:x="126" fg:w="1"/><text x="38.7821%" y="670.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="38.5321%" y="676" width="0.3058%" height="15" fill="rgb(241,183,40)" fg:x="126" fg:w="1"/><text x="38.7821%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="38.5321%" y="692" width="0.3058%" height="15" fill="rgb(231,217,32)" fg:x="126" fg:w="1"/><text x="38.7821%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="38.8379%" y="996" width="0.3058%" height="15" fill="rgb(229,61,38)" fg:x="127" fg:w="1"/><text x="39.0879%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="38.8379%" y="1012" width="0.3058%" height="15" fill="rgb(225,210,5)" fg:x="127" fg:w="1"/><text x="39.0879%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="38.8379%" y="1028" width="0.3058%" height="15" fill="rgb(231,79,45)" fg:x="127" fg:w="1"/><text x="39.0879%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="38.8379%" y="1044" width="0.3058%" height="15" fill="rgb(224,100,7)" fg:x="127" fg:w="1"/><text x="39.0879%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="38.8379%" y="1060" width="0.3058%" height="15" fill="rgb(241,198,18)" fg:x="127" fg:w="1"/><text x="39.0879%" y="1070.50"></text></g><g><title>_parse (pyarrow/vendored/docscrape.py:384) (1 samples, 0.31%)</title><rect x="39.4495%" y="1076" width="0.3058%" height="15" fill="rgb(252,97,53)" fg:x="129" fg:w="1"/><text x="39.6995%" y="1086.50"></text></g><g><title>_parse_summary (pyarrow/vendored/docscrape.py:362) (1 samples, 0.31%)</title><rect x="39.4495%" y="1092" width="0.3058%" height="15" fill="rgb(220,88,7)" fg:x="129" fg:w="1"/><text x="39.6995%" y="1102.50"></text></g><g><title>read_to_next_empty_line (pyarrow/vendored/docscrape.py:84) (1 samples, 0.31%)</title><rect x="39.4495%" y="1108" width="0.3058%" height="15" fill="rgb(213,176,14)" fg:x="129" fg:w="1"/><text x="39.6995%" y="1118.50"></text></g><g><title>seek_next_non_empty_line (pyarrow/vendored/docscrape.py:64) (1 samples, 0.31%)</title><rect x="39.4495%" y="1124" width="0.3058%" height="15" fill="rgb(246,73,7)" fg:x="129" fg:w="1"/><text x="39.6995%" y="1134.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (2 samples, 0.61%)</title><rect x="39.4495%" y="1044" width="0.6116%" height="15" fill="rgb(245,64,36)" fg:x="129" fg:w="2"/><text x="39.6995%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (2 samples, 0.61%)</title><rect x="39.4495%" y="1060" width="0.6116%" height="15" fill="rgb(245,80,10)" fg:x="129" fg:w="2"/><text x="39.6995%" y="1070.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="39.7554%" y="1076" width="0.3058%" height="15" fill="rgb(232,107,50)" fg:x="130" fg:w="1"/><text x="40.0054%" y="1086.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (4 samples, 1.22%)</title><rect x="39.4495%" y="1028" width="1.2232%" height="15" fill="rgb(253,3,0)" fg:x="129" fg:w="4"/><text x="39.6995%" y="1038.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.61%)</title><rect x="40.0612%" y="1044" width="0.6116%" height="15" fill="rgb(212,99,53)" fg:x="131" fg:w="2"/><text x="40.3112%" y="1054.50"></text></g><g><title>_get_arg_names (pyarrow/compute.py:106) (1 samples, 0.31%)</title><rect x="40.6728%" y="1028" width="0.3058%" height="15" fill="rgb(249,111,54)" fg:x="133" fg:w="1"/><text x="40.9228%" y="1038.50"></text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (8 samples, 2.45%)</title><rect x="38.8379%" y="884" width="2.4465%" height="15" fill="rgb(249,55,30)" fg:x="127" fg:w="8"/><text x="39.0879%" y="894.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="38.8379%" y="900" width="2.4465%" height="15" fill="rgb(237,47,42)" fg:x="127" fg:w="8"/><text x="39.0879%" y="910.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="38.8379%" y="916" width="2.4465%" height="15" fill="rgb(211,20,18)" fg:x="127" fg:w="8"/><text x="39.0879%" y="926.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="38.8379%" y="932" width="2.4465%" height="15" fill="rgb(231,203,46)" fg:x="127" fg:w="8"/><text x="39.0879%" y="942.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="38.8379%" y="948" width="2.4465%" height="15" fill="rgb(237,142,3)" fg:x="127" fg:w="8"/><text x="39.0879%" y="958.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="38.8379%" y="964" width="2.4465%" height="15" fill="rgb(241,107,1)" fg:x="127" fg:w="8"/><text x="39.0879%" y="974.50">_c..</text></g><g><title><module> (pyarrow/compute.py:18) (8 samples, 2.45%)</title><rect x="38.8379%" y="980" width="2.4465%" height="15" fill="rgb(229,83,13)" fg:x="127" fg:w="8"/><text x="39.0879%" y="990.50"><m..</text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (7 samples, 2.14%)</title><rect x="39.1437%" y="996" width="2.1407%" height="15" fill="rgb(241,91,40)" fg:x="128" fg:w="7"/><text x="39.3937%" y="1006.50">_..</text></g><g><title>_wrap_function (pyarrow/compute.py:290) (6 samples, 1.83%)</title><rect x="39.4495%" y="1012" width="1.8349%" height="15" fill="rgb(225,3,45)" fg:x="129" fg:w="6"/><text x="39.6995%" y="1022.50">_..</text></g><g><title>_make_signature (pyarrow/compute.py:267) (1 samples, 0.31%)</title><rect x="40.9786%" y="1028" width="0.3058%" height="15" fill="rgb(244,223,14)" fg:x="134" fg:w="1"/><text x="41.2286%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.31%)</title><rect x="40.9786%" y="1044" width="0.3058%" height="15" fill="rgb(224,124,37)" fg:x="134" fg:w="1"/><text x="41.2286%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.31%)</title><rect x="40.9786%" y="1060" width="0.3058%" height="15" fill="rgb(251,171,30)" fg:x="134" fg:w="1"/><text x="41.2286%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.31%)</title><rect x="40.9786%" y="1076" width="0.3058%" height="15" fill="rgb(236,46,54)" fg:x="134" fg:w="1"/><text x="41.2286%" y="1086.50"></text></g><g><title>_signature_bound_method (inspect.py:1840) (1 samples, 0.31%)</title><rect x="40.9786%" y="1092" width="0.3058%" height="15" fill="rgb(245,213,5)" fg:x="134" fg:w="1"/><text x="41.2286%" y="1102.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (9 samples, 2.75%)</title><rect x="38.8379%" y="596" width="2.7523%" height="15" fill="rgb(230,144,27)" fg:x="127" fg:w="9"/><text x="39.0879%" y="606.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="38.8379%" y="612" width="2.7523%" height="15" fill="rgb(220,86,6)" fg:x="127" fg:w="9"/><text x="39.0879%" y="622.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="38.8379%" y="628" width="2.7523%" height="15" fill="rgb(240,20,13)" fg:x="127" fg:w="9"/><text x="39.0879%" y="638.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="38.8379%" y="644" width="2.7523%" height="15" fill="rgb(217,89,34)" fg:x="127" fg:w="9"/><text x="39.0879%" y="654.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="38.8379%" y="660" width="2.7523%" height="15" fill="rgb(229,13,5)" fg:x="127" fg:w="9"/><text x="39.0879%" y="670.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="38.8379%" y="676" width="2.7523%" height="15" fill="rgb(244,67,35)" fg:x="127" fg:w="9"/><text x="39.0879%" y="686.50">_c..</text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (9 samples, 2.75%)</title><rect x="38.8379%" y="692" width="2.7523%" height="15" fill="rgb(221,40,2)" fg:x="127" fg:w="9"/><text x="39.0879%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="38.8379%" y="708" width="2.7523%" height="15" fill="rgb(237,157,21)" fg:x="127" fg:w="9"/><text x="39.0879%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="38.8379%" y="724" width="2.7523%" height="15" fill="rgb(222,94,11)" fg:x="127" fg:w="9"/><text x="39.0879%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="38.8379%" y="740" width="2.7523%" height="15" fill="rgb(249,113,6)" fg:x="127" fg:w="9"/><text x="39.0879%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="38.8379%" y="756" width="2.7523%" height="15" fill="rgb(238,137,36)" fg:x="127" fg:w="9"/><text x="39.0879%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="38.8379%" y="772" width="2.7523%" height="15" fill="rgb(210,102,26)" fg:x="127" fg:w="9"/><text x="39.0879%" y="782.50">_c..</text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (9 samples, 2.75%)</title><rect x="38.8379%" y="788" width="2.7523%" height="15" fill="rgb(218,30,30)" fg:x="127" fg:w="9"/><text x="39.0879%" y="798.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="38.8379%" y="804" width="2.7523%" height="15" fill="rgb(214,67,26)" fg:x="127" fg:w="9"/><text x="39.0879%" y="814.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="38.8379%" y="820" width="2.7523%" height="15" fill="rgb(251,9,53)" fg:x="127" fg:w="9"/><text x="39.0879%" y="830.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="38.8379%" y="836" width="2.7523%" height="15" fill="rgb(228,204,25)" fg:x="127" fg:w="9"/><text x="39.0879%" y="846.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="38.8379%" y="852" width="2.7523%" height="15" fill="rgb(207,153,8)" fg:x="127" fg:w="9"/><text x="39.0879%" y="862.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="38.8379%" y="868" width="2.7523%" height="15" fill="rgb(242,9,16)" fg:x="127" fg:w="9"/><text x="39.0879%" y="878.50">_c..</text></g><g><title><module> (pandas/core/arrays/string_.py:1) (1 samples, 0.31%)</title><rect x="41.2844%" y="884" width="0.3058%" height="15" fill="rgb(217,211,10)" fg:x="135" fg:w="1"/><text x="41.5344%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="41.2844%" y="900" width="0.3058%" height="15" fill="rgb(219,228,52)" fg:x="135" fg:w="1"/><text x="41.5344%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="41.2844%" y="916" width="0.3058%" height="15" fill="rgb(231,92,29)" fg:x="135" fg:w="1"/><text x="41.5344%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="41.2844%" y="932" width="0.3058%" height="15" fill="rgb(232,8,23)" fg:x="135" fg:w="1"/><text x="41.5344%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="41.2844%" y="948" width="0.3058%" height="15" fill="rgb(216,211,34)" fg:x="135" fg:w="1"/><text x="41.5344%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="41.2844%" y="964" width="0.3058%" height="15" fill="rgb(236,151,0)" fg:x="135" fg:w="1"/><text x="41.5344%" y="974.50"></text></g><g><title><module> (pandas/core/arrays/numpy_.py:1) (1 samples, 0.31%)</title><rect x="41.2844%" y="980" width="0.3058%" height="15" fill="rgb(209,168,3)" fg:x="135" fg:w="1"/><text x="41.5344%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="41.2844%" y="996" width="0.3058%" height="15" fill="rgb(208,129,28)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="41.2844%" y="1012" width="0.3058%" height="15" fill="rgb(229,78,22)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="41.2844%" y="1028" width="0.3058%" height="15" fill="rgb(228,187,13)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="41.2844%" y="1044" width="0.3058%" height="15" fill="rgb(240,119,24)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="41.2844%" y="1060" width="0.3058%" height="15" fill="rgb(209,194,42)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1070.50"></text></g><g><title><module> (pandas/core/arrays/_mixins.py:1) (1 samples, 0.31%)</title><rect x="41.2844%" y="1076" width="0.3058%" height="15" fill="rgb(247,200,46)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1086.50"></text></g><g><title>NDArrayBackedExtensionArray (pandas/core/arrays/_mixins.py:91) (1 samples, 0.31%)</title><rect x="41.2844%" y="1092" width="0.3058%" height="15" fill="rgb(218,76,16)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1102.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.31%)</title><rect x="41.2844%" y="1108" width="0.3058%" height="15" fill="rgb(225,21,48)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1118.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (1 samples, 0.31%)</title><rect x="41.2844%" y="1124" width="0.3058%" height="15" fill="rgb(239,223,50)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1134.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="41.2844%" y="1140" width="0.3058%" height="15" fill="rgb(244,45,21)" fg:x="135" fg:w="1"/><text x="41.5344%" y="1150.50"></text></g><g><title>DataFrameGroupBy (pandas/core/groupby/generic.py:1336) (1 samples, 0.31%)</title><rect x="41.5902%" y="708" width="0.3058%" height="15" fill="rgb(232,33,43)" fg:x="136" fg:w="1"/><text x="41.8402%" y="718.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="41.5902%" y="724" width="0.3058%" height="15" fill="rgb(209,8,3)" fg:x="136" fg:w="1"/><text x="41.8402%" y="734.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (1 samples, 0.31%)</title><rect x="41.8960%" y="804" width="0.3058%" height="15" fill="rgb(214,25,53)" fg:x="137" fg:w="1"/><text x="42.1460%" y="814.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.31%)</title><rect x="41.8960%" y="820" width="0.3058%" height="15" fill="rgb(254,186,54)" fg:x="137" fg:w="1"/><text x="42.1460%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="41.8960%" y="836" width="0.3058%" height="15" fill="rgb(208,174,49)" fg:x="137" fg:w="1"/><text x="42.1460%" y="846.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (4 samples, 1.22%)</title><rect x="42.5076%" y="900" width="1.2232%" height="15" fill="rgb(233,191,51)" fg:x="139" fg:w="4"/><text x="42.7576%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.31%)</title><rect x="43.4251%" y="916" width="0.3058%" height="15" fill="rgb(222,134,10)" fg:x="142" fg:w="1"/><text x="43.6751%" y="926.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (1 samples, 0.31%)</title><rect x="43.4251%" y="932" width="0.3058%" height="15" fill="rgb(230,226,20)" fg:x="142" fg:w="1"/><text x="43.6751%" y="942.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="43.4251%" y="948" width="0.3058%" height="15" fill="rgb(251,111,25)" fg:x="142" fg:w="1"/><text x="43.6751%" y="958.50"></text></g><g><title><module> (json/__init__.py:1) (1 samples, 0.31%)</title><rect x="43.7309%" y="980" width="0.3058%" height="15" fill="rgb(224,40,46)" fg:x="143" fg:w="1"/><text x="43.9809%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="43.7309%" y="996" width="0.3058%" height="15" fill="rgb(236,108,47)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="43.7309%" y="1012" width="0.3058%" height="15" fill="rgb(234,93,0)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="43.7309%" y="1028" width="0.3058%" height="15" fill="rgb(224,213,32)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="43.7309%" y="1044" width="0.3058%" height="15" fill="rgb(251,11,48)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="43.7309%" y="1060" width="0.3058%" height="15" fill="rgb(236,173,5)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1070.50"></text></g><g><title><module> (json/decoder.py:1) (1 samples, 0.31%)</title><rect x="43.7309%" y="1076" width="0.3058%" height="15" fill="rgb(230,95,12)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="43.7309%" y="1092" width="0.3058%" height="15" fill="rgb(232,209,1)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="43.7309%" y="1108" width="0.3058%" height="15" fill="rgb(232,6,1)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="43.7309%" y="1124" width="0.3058%" height="15" fill="rgb(210,224,50)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="43.7309%" y="1140" width="0.3058%" height="15" fill="rgb(228,127,35)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="43.7309%" y="1156" width="0.3058%" height="15" fill="rgb(245,102,45)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="43.7309%" y="1172" width="0.3058%" height="15" fill="rgb(214,1,49)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1182.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="43.7309%" y="1188" width="0.3058%" height="15" fill="rgb(226,163,40)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1198.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="43.7309%" y="1204" width="0.3058%" height="15" fill="rgb(239,212,28)" fg:x="143" fg:w="1"/><text x="43.9809%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="43.7309%" y="900" width="0.6116%" height="15" fill="rgb(220,20,13)" fg:x="143" fg:w="2"/><text x="43.9809%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="43.7309%" y="916" width="0.6116%" height="15" fill="rgb(210,164,35)" fg:x="143" fg:w="2"/><text x="43.9809%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="43.7309%" y="932" width="0.6116%" height="15" fill="rgb(248,109,41)" fg:x="143" fg:w="2"/><text x="43.9809%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="43.7309%" y="948" width="0.6116%" height="15" fill="rgb(238,23,50)" fg:x="143" fg:w="2"/><text x="43.9809%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="43.7309%" y="964" width="0.6116%" height="15" fill="rgb(211,48,49)" fg:x="143" fg:w="2"/><text x="43.9809%" y="974.50"></text></g><g><title><module> (pandas/core/window/__init__.py:1) (1 samples, 0.31%)</title><rect x="44.0367%" y="980" width="0.3058%" height="15" fill="rgb(223,36,21)" fg:x="144" fg:w="1"/><text x="44.2867%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.0367%" y="996" width="0.3058%" height="15" fill="rgb(207,123,46)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.0367%" y="1012" width="0.3058%" height="15" fill="rgb(240,218,32)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.0367%" y="1028" width="0.3058%" height="15" fill="rgb(252,5,43)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="44.0367%" y="1044" width="0.3058%" height="15" fill="rgb(252,84,19)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.0367%" y="1060" width="0.3058%" height="15" fill="rgb(243,152,39)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1070.50"></text></g><g><title><module> (pandas/core/window/ewm.py:1) (1 samples, 0.31%)</title><rect x="44.0367%" y="1076" width="0.3058%" height="15" fill="rgb(234,160,15)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.0367%" y="1092" width="0.3058%" height="15" fill="rgb(237,34,20)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.0367%" y="1108" width="0.3058%" height="15" fill="rgb(229,97,13)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.0367%" y="1124" width="0.3058%" height="15" fill="rgb(234,71,50)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="44.0367%" y="1140" width="0.3058%" height="15" fill="rgb(253,155,4)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.0367%" y="1156" width="0.3058%" height="15" fill="rgb(222,185,37)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1166.50"></text></g><g><title><module> (pandas/core/window/rolling.py:1) (1 samples, 0.31%)</title><rect x="44.0367%" y="1172" width="0.3058%" height="15" fill="rgb(251,177,13)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1182.50"></text></g><g><title>Window (pandas/core/window/rolling.py:879) (1 samples, 0.31%)</title><rect x="44.0367%" y="1188" width="0.3058%" height="15" fill="rgb(250,179,40)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1198.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.31%)</title><rect x="44.0367%" y="1204" width="0.3058%" height="15" fill="rgb(242,44,2)" fg:x="144" fg:w="1"/><text x="44.2867%" y="1214.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.31%)</title><rect x="44.3425%" y="980" width="0.3058%" height="15" fill="rgb(216,177,13)" fg:x="145" fg:w="1"/><text x="44.5925%" y="990.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.31%)</title><rect x="44.3425%" y="996" width="0.3058%" height="15" fill="rgb(216,106,43)" fg:x="145" fg:w="1"/><text x="44.5925%" y="1006.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="44.3425%" y="1012" width="0.3058%" height="15" fill="rgb(216,183,2)" fg:x="145" fg:w="1"/><text x="44.5925%" y="1022.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.31%)</title><rect x="44.3425%" y="1028" width="0.3058%" height="15" fill="rgb(249,75,3)" fg:x="145" fg:w="1"/><text x="44.5925%" y="1038.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.61%)</title><rect x="44.3425%" y="964" width="0.6116%" height="15" fill="rgb(219,67,39)" fg:x="145" fg:w="2"/><text x="44.5925%" y="974.50"></text></g><g><title>find_spec (_distutils_hack/__init__.py:89) (1 samples, 0.31%)</title><rect x="44.6483%" y="980" width="0.3058%" height="15" fill="rgb(253,228,2)" fg:x="146" fg:w="1"/><text x="44.8983%" y="990.50"></text></g><g><title><module> (pandas/core/generic.py:2) (10 samples, 3.06%)</title><rect x="42.2018%" y="884" width="3.0581%" height="15" fill="rgb(235,138,27)" fg:x="138" fg:w="10"/><text x="42.4518%" y="894.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="44.3425%" y="900" width="0.9174%" height="15" fill="rgb(236,97,51)" fg:x="145" fg:w="3"/><text x="44.5925%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="44.3425%" y="916" width="0.9174%" height="15" fill="rgb(240,80,30)" fg:x="145" fg:w="3"/><text x="44.5925%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="44.3425%" y="932" width="0.9174%" height="15" fill="rgb(230,178,19)" fg:x="145" fg:w="3"/><text x="44.5925%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="44.3425%" y="948" width="0.9174%" height="15" fill="rgb(210,190,27)" fg:x="145" fg:w="3"/><text x="44.5925%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.9541%" y="964" width="0.3058%" height="15" fill="rgb(222,107,31)" fg:x="147" fg:w="1"/><text x="45.2041%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="44.9541%" y="980" width="0.3058%" height="15" fill="rgb(216,127,34)" fg:x="147" fg:w="1"/><text x="45.2041%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.9541%" y="996" width="0.3058%" height="15" fill="rgb(234,116,52)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (1 samples, 0.31%)</title><rect x="44.9541%" y="1012" width="0.3058%" height="15" fill="rgb(222,124,15)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.9541%" y="1028" width="0.3058%" height="15" fill="rgb(231,179,28)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.9541%" y="1044" width="0.3058%" height="15" fill="rgb(226,93,45)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.9541%" y="1060" width="0.3058%" height="15" fill="rgb(215,8,51)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="44.9541%" y="1076" width="0.3058%" height="15" fill="rgb(223,106,5)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.9541%" y="1092" width="0.3058%" height="15" fill="rgb(250,191,5)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (1 samples, 0.31%)</title><rect x="44.9541%" y="1108" width="0.3058%" height="15" fill="rgb(242,132,44)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.9541%" y="1124" width="0.3058%" height="15" fill="rgb(251,152,29)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.9541%" y="1140" width="0.3058%" height="15" fill="rgb(218,179,5)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.9541%" y="1156" width="0.3058%" height="15" fill="rgb(227,67,19)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="44.9541%" y="1172" width="0.3058%" height="15" fill="rgb(233,119,31)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.9541%" y="1188" width="0.3058%" height="15" fill="rgb(241,120,22)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/base.py:1) (1 samples, 0.31%)</title><rect x="44.9541%" y="1204" width="0.3058%" height="15" fill="rgb(224,102,30)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.9541%" y="1220" width="0.3058%" height="15" fill="rgb(210,164,37)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.9541%" y="1236" width="0.3058%" height="15" fill="rgb(226,191,16)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="44.9541%" y="1252" width="0.3058%" height="15" fill="rgb(214,40,45)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="44.9541%" y="1268" width="0.3058%" height="15" fill="rgb(244,29,26)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="44.9541%" y="1284" width="0.3058%" height="15" fill="rgb(216,16,5)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="44.9541%" y="1300" width="0.3058%" height="15" fill="rgb(249,76,35)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="44.9541%" y="1316" width="0.3058%" height="15" fill="rgb(207,11,44)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1326.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.31%)</title><rect x="44.9541%" y="1332" width="0.3058%" height="15" fill="rgb(228,190,49)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.31%)</title><rect x="44.9541%" y="1348" width="0.3058%" height="15" fill="rgb(214,173,12)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1358.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.31%)</title><rect x="44.9541%" y="1364" width="0.3058%" height="15" fill="rgb(218,26,35)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1374.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="44.9541%" y="1380" width="0.3058%" height="15" fill="rgb(220,200,19)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1390.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.31%)</title><rect x="44.9541%" y="1396" width="0.3058%" height="15" fill="rgb(239,95,49)" fg:x="147" fg:w="1"/><text x="45.2041%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (56 samples, 17.13%)</title><rect x="28.4404%" y="420" width="17.1254%" height="15" fill="rgb(235,85,53)" fg:x="93" fg:w="56"/><text x="28.6904%" y="430.50">_find_and_load (<frozen imp..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (56 samples, 17.13%)</title><rect x="28.4404%" y="436" width="17.1254%" height="15" fill="rgb(233,133,31)" fg:x="93" fg:w="56"/><text x="28.6904%" y="446.50">_find_and_load_unlocked (<f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (56 samples, 17.13%)</title><rect x="28.4404%" y="452" width="17.1254%" height="15" fill="rgb(218,25,20)" fg:x="93" fg:w="56"/><text x="28.6904%" y="462.50">_load_unlocked (<frozen imp..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (56 samples, 17.13%)</title><rect x="28.4404%" y="468" width="17.1254%" height="15" fill="rgb(252,210,38)" fg:x="93" fg:w="56"/><text x="28.6904%" y="478.50">exec_module (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 17.13%)</title><rect x="28.4404%" y="484" width="17.1254%" height="15" fill="rgb(242,134,21)" fg:x="93" fg:w="56"/><text x="28.6904%" y="494.50">_call_with_frames_removed (..</text></g><g><title><module> (pandas/core/api.py:1) (34 samples, 10.40%)</title><rect x="35.1682%" y="500" width="10.3976%" height="15" fill="rgb(213,28,48)" fg:x="115" fg:w="34"/><text x="35.4182%" y="510.50"><module> (panda..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 10.40%)</title><rect x="35.1682%" y="516" width="10.3976%" height="15" fill="rgb(250,196,2)" fg:x="115" fg:w="34"/><text x="35.4182%" y="526.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 10.40%)</title><rect x="35.1682%" y="532" width="10.3976%" height="15" fill="rgb(227,5,17)" fg:x="115" fg:w="34"/><text x="35.4182%" y="542.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 10.40%)</title><rect x="35.1682%" y="548" width="10.3976%" height="15" fill="rgb(221,226,24)" fg:x="115" fg:w="34"/><text x="35.4182%" y="558.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 10.40%)</title><rect x="35.1682%" y="564" width="10.3976%" height="15" fill="rgb(211,5,48)" fg:x="115" fg:w="34"/><text x="35.4182%" y="574.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 10.40%)</title><rect x="35.1682%" y="580" width="10.3976%" height="15" fill="rgb(219,150,6)" fg:x="115" fg:w="34"/><text x="35.4182%" y="590.50">_call_with_fram..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (13 samples, 3.98%)</title><rect x="41.5902%" y="596" width="3.9755%" height="15" fill="rgb(251,46,16)" fg:x="136" fg:w="13"/><text x="41.8402%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 3.98%)</title><rect x="41.5902%" y="612" width="3.9755%" height="15" fill="rgb(220,204,40)" fg:x="136" fg:w="13"/><text x="41.8402%" y="622.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 3.98%)</title><rect x="41.5902%" y="628" width="3.9755%" height="15" fill="rgb(211,85,2)" fg:x="136" fg:w="13"/><text x="41.8402%" y="638.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 3.98%)</title><rect x="41.5902%" y="644" width="3.9755%" height="15" fill="rgb(229,17,7)" fg:x="136" fg:w="13"/><text x="41.8402%" y="654.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 3.98%)</title><rect x="41.5902%" y="660" width="3.9755%" height="15" fill="rgb(239,72,28)" fg:x="136" fg:w="13"/><text x="41.8402%" y="670.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 3.98%)</title><rect x="41.5902%" y="676" width="3.9755%" height="15" fill="rgb(230,47,54)" fg:x="136" fg:w="13"/><text x="41.8402%" y="686.50">_cal..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (13 samples, 3.98%)</title><rect x="41.5902%" y="692" width="3.9755%" height="15" fill="rgb(214,50,8)" fg:x="136" fg:w="13"/><text x="41.8402%" y="702.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.67%)</title><rect x="41.8960%" y="708" width="3.6697%" height="15" fill="rgb(216,198,43)" fg:x="137" fg:w="12"/><text x="42.1460%" y="718.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.67%)</title><rect x="41.8960%" y="724" width="3.6697%" height="15" fill="rgb(234,20,35)" fg:x="137" fg:w="12"/><text x="42.1460%" y="734.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.67%)</title><rect x="41.8960%" y="740" width="3.6697%" height="15" fill="rgb(254,45,19)" fg:x="137" fg:w="12"/><text x="42.1460%" y="750.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.67%)</title><rect x="41.8960%" y="756" width="3.6697%" height="15" fill="rgb(219,14,44)" fg:x="137" fg:w="12"/><text x="42.1460%" y="766.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.67%)</title><rect x="41.8960%" y="772" width="3.6697%" height="15" fill="rgb(217,220,26)" fg:x="137" fg:w="12"/><text x="42.1460%" y="782.50">_cal..</text></g><g><title><module> (pandas/core/frame.py:1) (12 samples, 3.67%)</title><rect x="41.8960%" y="788" width="3.6697%" height="15" fill="rgb(213,158,28)" fg:x="137" fg:w="12"/><text x="42.1460%" y="798.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.36%)</title><rect x="42.2018%" y="804" width="3.3639%" height="15" fill="rgb(252,51,52)" fg:x="138" fg:w="11"/><text x="42.4518%" y="814.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.36%)</title><rect x="42.2018%" y="820" width="3.3639%" height="15" fill="rgb(246,89,16)" fg:x="138" fg:w="11"/><text x="42.4518%" y="830.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.36%)</title><rect x="42.2018%" y="836" width="3.3639%" height="15" fill="rgb(216,158,49)" fg:x="138" fg:w="11"/><text x="42.4518%" y="846.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.36%)</title><rect x="42.2018%" y="852" width="3.3639%" height="15" fill="rgb(236,107,19)" fg:x="138" fg:w="11"/><text x="42.4518%" y="862.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.36%)</title><rect x="42.2018%" y="868" width="3.3639%" height="15" fill="rgb(228,185,30)" fg:x="138" fg:w="11"/><text x="42.4518%" y="878.50">_ca..</text></g><g><title><module> (pandas/core/series.py:1) (1 samples, 0.31%)</title><rect x="45.2599%" y="884" width="0.3058%" height="15" fill="rgb(246,134,8)" fg:x="148" fg:w="1"/><text x="45.5099%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.2599%" y="900" width="0.3058%" height="15" fill="rgb(214,143,50)" fg:x="148" fg:w="1"/><text x="45.5099%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.2599%" y="916" width="0.3058%" height="15" fill="rgb(228,75,8)" fg:x="148" fg:w="1"/><text x="45.5099%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.2599%" y="932" width="0.3058%" height="15" fill="rgb(207,175,4)" fg:x="148" fg:w="1"/><text x="45.5099%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.2599%" y="948" width="0.3058%" height="15" fill="rgb(205,108,24)" fg:x="148" fg:w="1"/><text x="45.5099%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.2599%" y="964" width="0.3058%" height="15" fill="rgb(244,120,49)" fg:x="148" fg:w="1"/><text x="45.5099%" y="974.50"></text></g><g><title><module> (pandas/io/formats/info.py:1) (1 samples, 0.31%)</title><rect x="45.2599%" y="980" width="0.3058%" height="15" fill="rgb(223,47,38)" fg:x="148" fg:w="1"/><text x="45.5099%" y="990.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.31%)</title><rect x="45.2599%" y="996" width="0.3058%" height="15" fill="rgb(229,179,11)" fg:x="148" fg:w="1"/><text x="45.5099%" y="1006.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="532" width="0.3058%" height="15" fill="rgb(231,122,1)" fg:x="149" fg:w="1"/><text x="45.8157%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="45.5657%" y="548" width="0.3058%" height="15" fill="rgb(245,119,9)" fg:x="149" fg:w="1"/><text x="45.8157%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="564" width="0.3058%" height="15" fill="rgb(241,163,25)" fg:x="149" fg:w="1"/><text x="45.8157%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="580" width="0.3058%" height="15" fill="rgb(217,214,3)" fg:x="149" fg:w="1"/><text x="45.8157%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="596" width="0.3058%" height="15" fill="rgb(240,86,28)" fg:x="149" fg:w="1"/><text x="45.8157%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="612" width="0.3058%" height="15" fill="rgb(215,47,9)" fg:x="149" fg:w="1"/><text x="45.8157%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.5657%" y="628" width="0.3058%" height="15" fill="rgb(252,25,45)" fg:x="149" fg:w="1"/><text x="45.8157%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="644" width="0.3058%" height="15" fill="rgb(251,164,9)" fg:x="149" fg:w="1"/><text x="45.8157%" y="654.50"></text></g><g><title><module> (pandas/api/typing/__init__.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="660" width="0.3058%" height="15" fill="rgb(233,194,0)" fg:x="149" fg:w="1"/><text x="45.8157%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="676" width="0.3058%" height="15" fill="rgb(249,111,24)" fg:x="149" fg:w="1"/><text x="45.8157%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="692" width="0.3058%" height="15" fill="rgb(250,223,3)" fg:x="149" fg:w="1"/><text x="45.8157%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="708" width="0.3058%" height="15" fill="rgb(236,178,37)" fg:x="149" fg:w="1"/><text x="45.8157%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="724" width="0.3058%" height="15" fill="rgb(241,158,50)" fg:x="149" fg:w="1"/><text x="45.8157%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="740" width="0.3058%" height="15" fill="rgb(213,121,41)" fg:x="149" fg:w="1"/><text x="45.8157%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="756" width="0.3058%" height="15" fill="rgb(240,92,3)" fg:x="149" fg:w="1"/><text x="45.8157%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.5657%" y="772" width="0.3058%" height="15" fill="rgb(205,123,3)" fg:x="149" fg:w="1"/><text x="45.8157%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="788" width="0.3058%" height="15" fill="rgb(205,97,47)" fg:x="149" fg:w="1"/><text x="45.8157%" y="798.50"></text></g><g><title><module> (pandas/io/json/__init__.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="804" width="0.3058%" height="15" fill="rgb(247,152,14)" fg:x="149" fg:w="1"/><text x="45.8157%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="820" width="0.3058%" height="15" fill="rgb(248,195,53)" fg:x="149" fg:w="1"/><text x="45.8157%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="836" width="0.3058%" height="15" fill="rgb(226,201,16)" fg:x="149" fg:w="1"/><text x="45.8157%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="852" width="0.3058%" height="15" fill="rgb(205,98,0)" fg:x="149" fg:w="1"/><text x="45.8157%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.5657%" y="868" width="0.3058%" height="15" fill="rgb(214,191,48)" fg:x="149" fg:w="1"/><text x="45.8157%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="884" width="0.3058%" height="15" fill="rgb(237,112,39)" fg:x="149" fg:w="1"/><text x="45.8157%" y="894.50"></text></g><g><title><module> (pandas/io/json/_json.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="900" width="0.3058%" height="15" fill="rgb(247,203,27)" fg:x="149" fg:w="1"/><text x="45.8157%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="916" width="0.3058%" height="15" fill="rgb(235,124,28)" fg:x="149" fg:w="1"/><text x="45.8157%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="932" width="0.3058%" height="15" fill="rgb(208,207,46)" fg:x="149" fg:w="1"/><text x="45.8157%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="948" width="0.3058%" height="15" fill="rgb(234,176,4)" fg:x="149" fg:w="1"/><text x="45.8157%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="964" width="0.3058%" height="15" fill="rgb(230,133,28)" fg:x="149" fg:w="1"/><text x="45.8157%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="980" width="0.3058%" height="15" fill="rgb(211,137,40)" fg:x="149" fg:w="1"/><text x="45.8157%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="996" width="0.3058%" height="15" fill="rgb(254,35,13)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.5657%" y="1012" width="0.3058%" height="15" fill="rgb(225,49,51)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="1028" width="0.3058%" height="15" fill="rgb(251,10,15)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1038.50"></text></g><g><title><module> (pandas/io/parsers/__init__.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="1044" width="0.3058%" height="15" fill="rgb(228,207,15)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="1060" width="0.3058%" height="15" fill="rgb(241,99,19)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="1076" width="0.3058%" height="15" fill="rgb(207,104,49)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="1092" width="0.3058%" height="15" fill="rgb(234,99,18)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="45.5657%" y="1108" width="0.3058%" height="15" fill="rgb(213,191,49)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="1124" width="0.3058%" height="15" fill="rgb(210,226,19)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1134.50"></text></g><g><title><module> (pandas/io/parsers/readers.py:1) (1 samples, 0.31%)</title><rect x="45.5657%" y="1140" width="0.3058%" height="15" fill="rgb(229,97,18)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="45.5657%" y="1156" width="0.3058%" height="15" fill="rgb(211,167,15)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="45.5657%" y="1172" width="0.3058%" height="15" fill="rgb(210,169,34)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="45.5657%" y="1188" width="0.3058%" height="15" fill="rgb(241,121,31)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1198.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="45.5657%" y="1204" width="0.3058%" height="15" fill="rgb(232,40,11)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1214.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="45.5657%" y="1220" width="0.3058%" height="15" fill="rgb(205,86,26)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="45.5657%" y="1236" width="0.3058%" height="15" fill="rgb(231,126,28)" fg:x="149" fg:w="1"/><text x="45.8157%" y="1246.50"></text></g><g><title><module> (pandas/__init__.py:1) (60 samples, 18.35%)</title><rect x="28.4404%" y="404" width="18.3486%" height="15" fill="rgb(219,221,18)" fg:x="93" fg:w="60"/><text x="28.6904%" y="414.50"><module> (pandas/__init__.py:..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.22%)</title><rect x="45.5657%" y="420" width="1.2232%" height="15" fill="rgb(211,40,0)" fg:x="149" fg:w="4"/><text x="45.8157%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="45.5657%" y="436" width="1.2232%" height="15" fill="rgb(239,85,43)" fg:x="149" fg:w="4"/><text x="45.8157%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="45.5657%" y="452" width="1.2232%" height="15" fill="rgb(231,55,21)" fg:x="149" fg:w="4"/><text x="45.8157%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="45.5657%" y="468" width="1.2232%" height="15" fill="rgb(225,184,43)" fg:x="149" fg:w="4"/><text x="45.8157%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="45.5657%" y="484" width="1.2232%" height="15" fill="rgb(251,158,41)" fg:x="149" fg:w="4"/><text x="45.8157%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="45.5657%" y="500" width="1.2232%" height="15" fill="rgb(234,159,37)" fg:x="149" fg:w="4"/><text x="45.8157%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="45.5657%" y="516" width="1.2232%" height="15" fill="rgb(216,204,22)" fg:x="149" fg:w="4"/><text x="45.8157%" y="526.50"></text></g><g><title><module> (pandas/testing.py:1) (3 samples, 0.92%)</title><rect x="45.8716%" y="532" width="0.9174%" height="15" fill="rgb(214,17,3)" fg:x="150" fg:w="3"/><text x="46.1216%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="45.8716%" y="548" width="0.9174%" height="15" fill="rgb(212,111,17)" fg:x="150" fg:w="3"/><text x="46.1216%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="45.8716%" y="564" width="0.9174%" height="15" fill="rgb(221,157,24)" fg:x="150" fg:w="3"/><text x="46.1216%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="45.8716%" y="580" width="0.9174%" height="15" fill="rgb(252,16,13)" fg:x="150" fg:w="3"/><text x="46.1216%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="45.8716%" y="596" width="0.9174%" height="15" fill="rgb(221,62,2)" fg:x="150" fg:w="3"/><text x="46.1216%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="45.8716%" y="612" width="0.9174%" height="15" fill="rgb(247,87,22)" fg:x="150" fg:w="3"/><text x="46.1216%" y="622.50"></text></g><g><title><module> (pandas/_testing/__init__.py:1) (3 samples, 0.92%)</title><rect x="45.8716%" y="628" width="0.9174%" height="15" fill="rgb(215,73,9)" fg:x="150" fg:w="3"/><text x="46.1216%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="45.8716%" y="644" width="0.9174%" height="15" fill="rgb(207,175,33)" fg:x="150" fg:w="3"/><text x="46.1216%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="45.8716%" y="660" width="0.9174%" height="15" fill="rgb(243,129,54)" fg:x="150" fg:w="3"/><text x="46.1216%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="45.8716%" y="676" width="0.9174%" height="15" fill="rgb(227,119,45)" fg:x="150" fg:w="3"/><text x="46.1216%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="45.8716%" y="692" width="0.9174%" height="15" fill="rgb(205,109,36)" fg:x="150" fg:w="3"/><text x="46.1216%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="45.8716%" y="708" width="0.9174%" height="15" fill="rgb(205,6,39)" fg:x="150" fg:w="3"/><text x="46.1216%" y="718.50"></text></g><g><title><module> (pandas/_testing/asserters.py:1) (3 samples, 0.92%)</title><rect x="45.8716%" y="724" width="0.9174%" height="15" fill="rgb(221,32,16)" fg:x="150" fg:w="3"/><text x="46.1216%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="45.8716%" y="740" width="0.9174%" height="15" fill="rgb(228,144,50)" fg:x="150" fg:w="3"/><text x="46.1216%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="45.8716%" y="756" width="0.9174%" height="15" fill="rgb(229,201,53)" fg:x="150" fg:w="3"/><text x="46.1216%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="45.8716%" y="772" width="0.9174%" height="15" fill="rgb(249,153,27)" fg:x="150" fg:w="3"/><text x="46.1216%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.92%)</title><rect x="45.8716%" y="788" width="0.9174%" height="15" fill="rgb(227,106,25)" fg:x="150" fg:w="3"/><text x="46.1216%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="45.8716%" y="804" width="0.9174%" height="15" fill="rgb(230,65,29)" fg:x="150" fg:w="3"/><text x="46.1216%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="45.8716%" y="820" width="0.9174%" height="15" fill="rgb(221,57,46)" fg:x="150" fg:w="3"/><text x="46.1216%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="45.8716%" y="836" width="0.9174%" height="15" fill="rgb(229,161,17)" fg:x="150" fg:w="3"/><text x="46.1216%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="45.8716%" y="852" width="0.9174%" height="15" fill="rgb(222,213,11)" fg:x="150" fg:w="3"/><text x="46.1216%" y="862.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.92%)</title><rect x="45.8716%" y="868" width="0.9174%" height="15" fill="rgb(235,35,13)" fg:x="150" fg:w="3"/><text x="46.1216%" y="878.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.92%)</title><rect x="45.8716%" y="884" width="0.9174%" height="15" fill="rgb(233,158,34)" fg:x="150" fg:w="3"/><text x="46.1216%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="45.8716%" y="900" width="0.9174%" height="15" fill="rgb(215,151,48)" fg:x="150" fg:w="3"/><text x="46.1216%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (75 samples, 22.94%)</title><rect x="24.4648%" y="324" width="22.9358%" height="15" fill="rgb(229,84,14)" fg:x="80" fg:w="75"/><text x="24.7148%" y="334.50">_find_and_load (<frozen importlib._b..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (75 samples, 22.94%)</title><rect x="24.4648%" y="340" width="22.9358%" height="15" fill="rgb(229,68,14)" fg:x="80" fg:w="75"/><text x="24.7148%" y="350.50">_find_and_load_unlocked (<frozen imp..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (75 samples, 22.94%)</title><rect x="24.4648%" y="356" width="22.9358%" height="15" fill="rgb(243,106,26)" fg:x="80" fg:w="75"/><text x="24.7148%" y="366.50">_load_unlocked (<frozen importlib._b..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (75 samples, 22.94%)</title><rect x="24.4648%" y="372" width="22.9358%" height="15" fill="rgb(206,45,38)" fg:x="80" fg:w="75"/><text x="24.7148%" y="382.50">exec_module (<frozen importlib._boot..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (75 samples, 22.94%)</title><rect x="24.4648%" y="388" width="22.9358%" height="15" fill="rgb(226,6,15)" fg:x="80" fg:w="75"/><text x="24.7148%" y="398.50">_call_with_frames_removed (<frozen i..</text></g><g><title><module> (xarray/core/coordinates.py:1) (2 samples, 0.61%)</title><rect x="46.7890%" y="404" width="0.6116%" height="15" fill="rgb(232,22,54)" fg:x="153" fg:w="2"/><text x="47.0390%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="46.7890%" y="420" width="0.6116%" height="15" fill="rgb(229,222,32)" fg:x="153" fg:w="2"/><text x="47.0390%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="46.7890%" y="436" width="0.6116%" height="15" fill="rgb(228,62,29)" fg:x="153" fg:w="2"/><text x="47.0390%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="46.7890%" y="452" width="0.6116%" height="15" fill="rgb(251,103,34)" fg:x="153" fg:w="2"/><text x="47.0390%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="46.7890%" y="468" width="0.6116%" height="15" fill="rgb(233,12,30)" fg:x="153" fg:w="2"/><text x="47.0390%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="46.7890%" y="484" width="0.6116%" height="15" fill="rgb(238,52,0)" fg:x="153" fg:w="2"/><text x="47.0390%" y="494.50"></text></g><g><title><module> (xarray/core/alignment.py:1) (2 samples, 0.61%)</title><rect x="46.7890%" y="500" width="0.6116%" height="15" fill="rgb(223,98,5)" fg:x="153" fg:w="2"/><text x="47.0390%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="46.7890%" y="516" width="0.6116%" height="15" fill="rgb(228,75,37)" fg:x="153" fg:w="2"/><text x="47.0390%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="46.7890%" y="532" width="0.6116%" height="15" fill="rgb(205,115,49)" fg:x="153" fg:w="2"/><text x="47.0390%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="46.7890%" y="548" width="0.6116%" height="15" fill="rgb(250,154,43)" fg:x="153" fg:w="2"/><text x="47.0390%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="46.7890%" y="564" width="0.6116%" height="15" fill="rgb(226,43,29)" fg:x="153" fg:w="2"/><text x="47.0390%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="46.7890%" y="580" width="0.6116%" height="15" fill="rgb(249,228,39)" fg:x="153" fg:w="2"/><text x="47.0390%" y="590.50"></text></g><g><title><module> (xarray/core/variable.py:1) (2 samples, 0.61%)</title><rect x="46.7890%" y="596" width="0.6116%" height="15" fill="rgb(216,79,43)" fg:x="153" fg:w="2"/><text x="47.0390%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="46.7890%" y="612" width="0.6116%" height="15" fill="rgb(228,95,12)" fg:x="153" fg:w="2"/><text x="47.0390%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="46.7890%" y="628" width="0.6116%" height="15" fill="rgb(249,221,15)" fg:x="153" fg:w="2"/><text x="47.0390%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="46.7890%" y="644" width="0.6116%" height="15" fill="rgb(233,34,13)" fg:x="153" fg:w="2"/><text x="47.0390%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="46.7890%" y="660" width="0.6116%" height="15" fill="rgb(214,103,39)" fg:x="153" fg:w="2"/><text x="47.0390%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="46.7890%" y="676" width="0.6116%" height="15" fill="rgb(251,126,39)" fg:x="153" fg:w="2"/><text x="47.0390%" y="686.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.61%)</title><rect x="46.7890%" y="692" width="0.6116%" height="15" fill="rgb(214,216,36)" fg:x="153" fg:w="2"/><text x="47.0390%" y="702.50"></text></g><g><title><module> (xarray/testing.py:1) (76 samples, 23.24%)</title><rect x="24.4648%" y="308" width="23.2416%" height="15" fill="rgb(220,221,8)" fg:x="80" fg:w="76"/><text x="24.7148%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="47.4006%" y="324" width="0.3058%" height="15" fill="rgb(240,216,3)" fg:x="155" fg:w="1"/><text x="47.6506%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="340" width="0.3058%" height="15" fill="rgb(232,218,17)" fg:x="155" fg:w="1"/><text x="47.6506%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.4006%" y="356" width="0.3058%" height="15" fill="rgb(229,163,45)" fg:x="155" fg:w="1"/><text x="47.6506%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.4006%" y="372" width="0.3058%" height="15" fill="rgb(231,110,42)" fg:x="155" fg:w="1"/><text x="47.6506%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.4006%" y="388" width="0.3058%" height="15" fill="rgb(208,170,48)" fg:x="155" fg:w="1"/><text x="47.6506%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.4006%" y="404" width="0.3058%" height="15" fill="rgb(239,116,25)" fg:x="155" fg:w="1"/><text x="47.6506%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="420" width="0.3058%" height="15" fill="rgb(219,200,50)" fg:x="155" fg:w="1"/><text x="47.6506%" y="430.50"></text></g><g><title><module> (xarray/core/duck_array_ops.py:1) (1 samples, 0.31%)</title><rect x="47.4006%" y="436" width="0.3058%" height="15" fill="rgb(245,200,0)" fg:x="155" fg:w="1"/><text x="47.6506%" y="446.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="47.4006%" y="452" width="0.3058%" height="15" fill="rgb(245,119,33)" fg:x="155" fg:w="1"/><text x="47.6506%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="468" width="0.3058%" height="15" fill="rgb(231,125,12)" fg:x="155" fg:w="1"/><text x="47.6506%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.4006%" y="484" width="0.3058%" height="15" fill="rgb(216,96,41)" fg:x="155" fg:w="1"/><text x="47.6506%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.4006%" y="500" width="0.3058%" height="15" fill="rgb(248,43,45)" fg:x="155" fg:w="1"/><text x="47.6506%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.4006%" y="516" width="0.3058%" height="15" fill="rgb(217,222,7)" fg:x="155" fg:w="1"/><text x="47.6506%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.4006%" y="532" width="0.3058%" height="15" fill="rgb(233,28,6)" fg:x="155" fg:w="1"/><text x="47.6506%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="548" width="0.3058%" height="15" fill="rgb(231,218,15)" fg:x="155" fg:w="1"/><text x="47.6506%" y="558.50"></text></g><g><title><module> (xarray/core/dask_array_ops.py:1) (1 samples, 0.31%)</title><rect x="47.4006%" y="564" width="0.3058%" height="15" fill="rgb(226,171,48)" fg:x="155" fg:w="1"/><text x="47.6506%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="47.4006%" y="580" width="0.3058%" height="15" fill="rgb(235,201,9)" fg:x="155" fg:w="1"/><text x="47.6506%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="596" width="0.3058%" height="15" fill="rgb(217,80,15)" fg:x="155" fg:w="1"/><text x="47.6506%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.4006%" y="612" width="0.3058%" height="15" fill="rgb(219,152,8)" fg:x="155" fg:w="1"/><text x="47.6506%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.4006%" y="628" width="0.3058%" height="15" fill="rgb(243,107,38)" fg:x="155" fg:w="1"/><text x="47.6506%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.4006%" y="644" width="0.3058%" height="15" fill="rgb(231,17,5)" fg:x="155" fg:w="1"/><text x="47.6506%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.4006%" y="660" width="0.3058%" height="15" fill="rgb(209,25,54)" fg:x="155" fg:w="1"/><text x="47.6506%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="676" width="0.3058%" height="15" fill="rgb(219,0,2)" fg:x="155" fg:w="1"/><text x="47.6506%" y="686.50"></text></g><g><title><module> (xarray/core/dtypes.py:1) (1 samples, 0.31%)</title><rect x="47.4006%" y="692" width="0.3058%" height="15" fill="rgb(246,9,5)" fg:x="155" fg:w="1"/><text x="47.6506%" y="702.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="47.4006%" y="708" width="0.3058%" height="15" fill="rgb(226,159,4)" fg:x="155" fg:w="1"/><text x="47.6506%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="724" width="0.3058%" height="15" fill="rgb(219,175,34)" fg:x="155" fg:w="1"/><text x="47.6506%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.4006%" y="740" width="0.3058%" height="15" fill="rgb(236,10,46)" fg:x="155" fg:w="1"/><text x="47.6506%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.4006%" y="756" width="0.3058%" height="15" fill="rgb(240,211,16)" fg:x="155" fg:w="1"/><text x="47.6506%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.4006%" y="772" width="0.3058%" height="15" fill="rgb(205,3,43)" fg:x="155" fg:w="1"/><text x="47.6506%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.4006%" y="788" width="0.3058%" height="15" fill="rgb(245,7,22)" fg:x="155" fg:w="1"/><text x="47.6506%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="804" width="0.3058%" height="15" fill="rgb(239,132,32)" fg:x="155" fg:w="1"/><text x="47.6506%" y="814.50"></text></g><g><title><module> (xarray/core/utils.py:1) (1 samples, 0.31%)</title><rect x="47.4006%" y="820" width="0.3058%" height="15" fill="rgb(228,202,34)" fg:x="155" fg:w="1"/><text x="47.6506%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.4006%" y="836" width="0.3058%" height="15" fill="rgb(254,200,22)" fg:x="155" fg:w="1"/><text x="47.6506%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.4006%" y="852" width="0.3058%" height="15" fill="rgb(219,10,39)" fg:x="155" fg:w="1"/><text x="47.6506%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.4006%" y="868" width="0.3058%" height="15" fill="rgb(226,210,39)" fg:x="155" fg:w="1"/><text x="47.6506%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.4006%" y="884" width="0.3058%" height="15" fill="rgb(208,219,16)" fg:x="155" fg:w="1"/><text x="47.6506%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.4006%" y="900" width="0.3058%" height="15" fill="rgb(216,158,51)" fg:x="155" fg:w="1"/><text x="47.6506%" y="910.50"></text></g><g><title><module> (typing_extensions.py:1) (1 samples, 0.31%)</title><rect x="47.4006%" y="916" width="0.3058%" height="15" fill="rgb(233,14,44)" fg:x="155" fg:w="1"/><text x="47.6506%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="868" width="0.3058%" height="15" fill="rgb(237,97,39)" fg:x="156" fg:w="1"/><text x="47.9564%" y="878.50"></text></g><g><title><module> (dask/delayed.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="884" width="0.3058%" height="15" fill="rgb(218,198,43)" fg:x="156" fg:w="1"/><text x="47.9564%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="900" width="0.3058%" height="15" fill="rgb(231,104,20)" fg:x="156" fg:w="1"/><text x="47.9564%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="916" width="0.3058%" height="15" fill="rgb(254,36,13)" fg:x="156" fg:w="1"/><text x="47.9564%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="932" width="0.3058%" height="15" fill="rgb(248,14,50)" fg:x="156" fg:w="1"/><text x="47.9564%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="948" width="0.3058%" height="15" fill="rgb(217,107,29)" fg:x="156" fg:w="1"/><text x="47.9564%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="964" width="0.3058%" height="15" fill="rgb(251,169,33)" fg:x="156" fg:w="1"/><text x="47.9564%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="980" width="0.3058%" height="15" fill="rgb(217,108,32)" fg:x="156" fg:w="1"/><text x="47.9564%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="996" width="0.3058%" height="15" fill="rgb(219,66,42)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="1012" width="0.3058%" height="15" fill="rgb(206,180,7)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="1028" width="0.3058%" height="15" fill="rgb(208,226,31)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="1044" width="0.3058%" height="15" fill="rgb(218,26,49)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="1060" width="0.3058%" height="15" fill="rgb(233,197,48)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="1076" width="0.3058%" height="15" fill="rgb(252,181,51)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="1092" width="0.3058%" height="15" fill="rgb(253,90,19)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="1108" width="0.3058%" height="15" fill="rgb(215,171,30)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="1124" width="0.3058%" height="15" fill="rgb(214,222,9)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="1140" width="0.3058%" height="15" fill="rgb(223,3,22)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="1156" width="0.3058%" height="15" fill="rgb(225,196,46)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="1172" width="0.3058%" height="15" fill="rgb(209,110,37)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="1188" width="0.3058%" height="15" fill="rgb(249,89,12)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="1204" width="0.3058%" height="15" fill="rgb(226,27,33)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="1220" width="0.3058%" height="15" fill="rgb(213,82,22)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="1236" width="0.3058%" height="15" fill="rgb(248,140,0)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="1252" width="0.3058%" height="15" fill="rgb(228,106,3)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="1268" width="0.3058%" height="15" fill="rgb(209,23,37)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="1284" width="0.3058%" height="15" fill="rgb(241,93,50)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="1300" width="0.3058%" height="15" fill="rgb(253,46,43)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="1316" width="0.3058%" height="15" fill="rgb(226,206,43)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="1332" width="0.3058%" height="15" fill="rgb(217,54,7)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="47.7064%" y="1348" width="0.3058%" height="15" fill="rgb(223,5,52)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1358.50"></text></g><g><title><module> (jinja2/environment.py:1) (1 samples, 0.31%)</title><rect x="47.7064%" y="1364" width="0.3058%" height="15" fill="rgb(206,52,46)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="47.7064%" y="1380" width="0.3058%" height="15" fill="rgb(253,136,11)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="47.7064%" y="1396" width="0.3058%" height="15" fill="rgb(208,106,33)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="47.7064%" y="1412" width="0.3058%" height="15" fill="rgb(206,54,4)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="47.7064%" y="1428" width="0.3058%" height="15" fill="rgb(213,3,15)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1438.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="47.7064%" y="1444" width="0.3058%" height="15" fill="rgb(252,211,39)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1454.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="47.7064%" y="1460" width="0.3058%" height="15" fill="rgb(223,6,36)" fg:x="156" fg:w="1"/><text x="47.9564%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="47.7064%" y="804" width="0.9174%" height="15" fill="rgb(252,169,45)" fg:x="156" fg:w="3"/><text x="47.9564%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="47.7064%" y="820" width="0.9174%" height="15" fill="rgb(212,48,26)" fg:x="156" fg:w="3"/><text x="47.9564%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="47.7064%" y="836" width="0.9174%" height="15" fill="rgb(251,102,48)" fg:x="156" fg:w="3"/><text x="47.9564%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="47.7064%" y="852" width="0.9174%" height="15" fill="rgb(243,208,16)" fg:x="156" fg:w="3"/><text x="47.9564%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="48.0122%" y="868" width="0.6116%" height="15" fill="rgb(219,96,24)" fg:x="157" fg:w="2"/><text x="48.2622%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="48.3180%" y="884" width="0.3058%" height="15" fill="rgb(219,33,29)" fg:x="158" fg:w="1"/><text x="48.5680%" y="894.50"></text></g><g><title>add_implicit_resolver (yaml/resolver.py:25) (1 samples, 0.31%)</title><rect x="48.6239%" y="1220" width="0.3058%" height="15" fill="rgb(223,176,5)" fg:x="159" fg:w="1"/><text x="48.8739%" y="1230.50"></text></g><g><title><module> (dask/config.py:1) (2 samples, 0.61%)</title><rect x="48.6239%" y="916" width="0.6116%" height="15" fill="rgb(228,140,14)" fg:x="159" fg:w="2"/><text x="48.8739%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="48.6239%" y="932" width="0.6116%" height="15" fill="rgb(217,179,31)" fg:x="159" fg:w="2"/><text x="48.8739%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="48.6239%" y="948" width="0.6116%" height="15" fill="rgb(230,9,30)" fg:x="159" fg:w="2"/><text x="48.8739%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="48.6239%" y="964" width="0.6116%" height="15" fill="rgb(230,136,20)" fg:x="159" fg:w="2"/><text x="48.8739%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="48.6239%" y="980" width="0.6116%" height="15" fill="rgb(215,210,22)" fg:x="159" fg:w="2"/><text x="48.8739%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="48.6239%" y="996" width="0.6116%" height="15" fill="rgb(218,43,5)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (2 samples, 0.61%)</title><rect x="48.6239%" y="1012" width="0.6116%" height="15" fill="rgb(216,11,5)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="48.6239%" y="1028" width="0.6116%" height="15" fill="rgb(209,82,29)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="48.6239%" y="1044" width="0.6116%" height="15" fill="rgb(244,115,12)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="48.6239%" y="1060" width="0.6116%" height="15" fill="rgb(222,82,18)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="48.6239%" y="1076" width="0.6116%" height="15" fill="rgb(249,227,8)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="48.6239%" y="1092" width="0.6116%" height="15" fill="rgb(253,141,45)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (2 samples, 0.61%)</title><rect x="48.6239%" y="1108" width="0.6116%" height="15" fill="rgb(234,184,4)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="48.6239%" y="1124" width="0.6116%" height="15" fill="rgb(218,194,23)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="48.6239%" y="1140" width="0.6116%" height="15" fill="rgb(235,66,41)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="48.6239%" y="1156" width="0.6116%" height="15" fill="rgb(245,217,1)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="48.6239%" y="1172" width="0.6116%" height="15" fill="rgb(229,91,1)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="48.6239%" y="1188" width="0.6116%" height="15" fill="rgb(207,101,30)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1198.50"></text></g><g><title><module> (yaml/resolver.py:2) (2 samples, 0.61%)</title><rect x="48.6239%" y="1204" width="0.6116%" height="15" fill="rgb(223,82,49)" fg:x="159" fg:w="2"/><text x="48.8739%" y="1214.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.31%)</title><rect x="48.9297%" y="1220" width="0.3058%" height="15" fill="rgb(218,167,17)" fg:x="160" fg:w="1"/><text x="49.1797%" y="1230.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="48.9297%" y="1236" width="0.3058%" height="15" fill="rgb(208,103,14)" fg:x="160" fg:w="1"/><text x="49.1797%" y="1246.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.31%)</title><rect x="48.9297%" y="1252" width="0.3058%" height="15" fill="rgb(238,20,8)" fg:x="160" fg:w="1"/><text x="49.1797%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (141 samples, 43.12%)</title><rect x="6.4220%" y="100" width="43.1193%" height="15" fill="rgb(218,80,54)" fg:x="21" fg:w="141"/><text x="6.6720%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (141 samples, 43.12%)</title><rect x="6.4220%" y="116" width="43.1193%" height="15" fill="rgb(240,144,17)" fg:x="21" fg:w="141"/><text x="6.6720%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (141 samples, 43.12%)</title><rect x="6.4220%" y="132" width="43.1193%" height="15" fill="rgb(245,27,50)" fg:x="21" fg:w="141"/><text x="6.6720%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (141 samples, 43.12%)</title><rect x="6.4220%" y="148" width="43.1193%" height="15" fill="rgb(251,51,7)" fg:x="21" fg:w="141"/><text x="6.6720%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (141 samples, 43.12%)</title><rect x="6.4220%" y="164" width="43.1193%" height="15" fill="rgb(245,217,29)" fg:x="21" fg:w="141"/><text x="6.6720%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (82 samples, 25.08%)</title><rect x="24.4648%" y="180" width="25.0765%" height="15" fill="rgb(221,176,29)" fg:x="80" fg:w="82"/><text x="24.7148%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (82 samples, 25.08%)</title><rect x="24.4648%" y="196" width="25.0765%" height="15" fill="rgb(212,180,24)" fg:x="80" fg:w="82"/><text x="24.7148%" y="206.50">_handle_fromlist (<frozen importlib._boo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 25.08%)</title><rect x="24.4648%" y="212" width="25.0765%" height="15" fill="rgb(254,24,2)" fg:x="80" fg:w="82"/><text x="24.7148%" y="222.50">_call_with_frames_removed (<frozen impor..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (82 samples, 25.08%)</title><rect x="24.4648%" y="228" width="25.0765%" height="15" fill="rgb(230,100,2)" fg:x="80" fg:w="82"/><text x="24.7148%" y="238.50">_find_and_load (<frozen importlib._boots..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (82 samples, 25.08%)</title><rect x="24.4648%" y="244" width="25.0765%" height="15" fill="rgb(219,142,25)" fg:x="80" fg:w="82"/><text x="24.7148%" y="254.50">_find_and_load_unlocked (<frozen importl..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (82 samples, 25.08%)</title><rect x="24.4648%" y="260" width="25.0765%" height="15" fill="rgb(240,73,43)" fg:x="80" fg:w="82"/><text x="24.7148%" y="270.50">_load_unlocked (<frozen importlib._boots..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (82 samples, 25.08%)</title><rect x="24.4648%" y="276" width="25.0765%" height="15" fill="rgb(214,114,15)" fg:x="80" fg:w="82"/><text x="24.7148%" y="286.50">exec_module (<frozen importlib._bootstra..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 25.08%)</title><rect x="24.4648%" y="292" width="25.0765%" height="15" fill="rgb(207,130,4)" fg:x="80" fg:w="82"/><text x="24.7148%" y="302.50">_call_with_frames_removed (<frozen impor..</text></g><g><title><module> (xarray/tutorial.py:1) (6 samples, 1.83%)</title><rect x="47.7064%" y="308" width="1.8349%" height="15" fill="rgb(221,25,40)" fg:x="156" fg:w="6"/><text x="47.9564%" y="318.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="324" width="1.8349%" height="15" fill="rgb(241,184,7)" fg:x="156" fg:w="6"/><text x="47.9564%" y="334.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="340" width="1.8349%" height="15" fill="rgb(235,159,4)" fg:x="156" fg:w="6"/><text x="47.9564%" y="350.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="356" width="1.8349%" height="15" fill="rgb(214,87,48)" fg:x="156" fg:w="6"/><text x="47.9564%" y="366.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="372" width="1.8349%" height="15" fill="rgb(246,198,24)" fg:x="156" fg:w="6"/><text x="47.9564%" y="382.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="388" width="1.8349%" height="15" fill="rgb(209,66,40)" fg:x="156" fg:w="6"/><text x="47.9564%" y="398.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="47.7064%" y="404" width="1.8349%" height="15" fill="rgb(233,147,39)" fg:x="156" fg:w="6"/><text x="47.9564%" y="414.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="47.7064%" y="420" width="1.8349%" height="15" fill="rgb(231,145,52)" fg:x="156" fg:w="6"/><text x="47.9564%" y="430.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="436" width="1.8349%" height="15" fill="rgb(206,20,26)" fg:x="156" fg:w="6"/><text x="47.9564%" y="446.50">_..</text></g><g><title><module> (xarray/backends/__init__.py:1) (6 samples, 1.83%)</title><rect x="47.7064%" y="452" width="1.8349%" height="15" fill="rgb(238,220,4)" fg:x="156" fg:w="6"/><text x="47.9564%" y="462.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="468" width="1.8349%" height="15" fill="rgb(252,195,42)" fg:x="156" fg:w="6"/><text x="47.9564%" y="478.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="484" width="1.8349%" height="15" fill="rgb(209,10,6)" fg:x="156" fg:w="6"/><text x="47.9564%" y="494.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="47.7064%" y="500" width="1.8349%" height="15" fill="rgb(229,3,52)" fg:x="156" fg:w="6"/><text x="47.9564%" y="510.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="47.7064%" y="516" width="1.8349%" height="15" fill="rgb(253,49,37)" fg:x="156" fg:w="6"/><text x="47.9564%" y="526.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="532" width="1.8349%" height="15" fill="rgb(240,103,49)" fg:x="156" fg:w="6"/><text x="47.9564%" y="542.50">_..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (6 samples, 1.83%)</title><rect x="47.7064%" y="548" width="1.8349%" height="15" fill="rgb(250,182,30)" fg:x="156" fg:w="6"/><text x="47.9564%" y="558.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="564" width="1.8349%" height="15" fill="rgb(248,8,30)" fg:x="156" fg:w="6"/><text x="47.9564%" y="574.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="580" width="1.8349%" height="15" fill="rgb(237,120,30)" fg:x="156" fg:w="6"/><text x="47.9564%" y="590.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="47.7064%" y="596" width="1.8349%" height="15" fill="rgb(221,146,34)" fg:x="156" fg:w="6"/><text x="47.9564%" y="606.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="47.7064%" y="612" width="1.8349%" height="15" fill="rgb(242,55,13)" fg:x="156" fg:w="6"/><text x="47.9564%" y="622.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="628" width="1.8349%" height="15" fill="rgb(242,112,31)" fg:x="156" fg:w="6"/><text x="47.9564%" y="638.50">_..</text></g><g><title><module> (xarray/backends/locks.py:1) (6 samples, 1.83%)</title><rect x="47.7064%" y="644" width="1.8349%" height="15" fill="rgb(249,192,27)" fg:x="156" fg:w="6"/><text x="47.9564%" y="654.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="660" width="1.8349%" height="15" fill="rgb(208,204,44)" fg:x="156" fg:w="6"/><text x="47.9564%" y="670.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="676" width="1.8349%" height="15" fill="rgb(208,93,54)" fg:x="156" fg:w="6"/><text x="47.9564%" y="686.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="692" width="1.8349%" height="15" fill="rgb(242,1,31)" fg:x="156" fg:w="6"/><text x="47.9564%" y="702.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="47.7064%" y="708" width="1.8349%" height="15" fill="rgb(241,83,25)" fg:x="156" fg:w="6"/><text x="47.9564%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="47.7064%" y="724" width="1.8349%" height="15" fill="rgb(205,169,50)" fg:x="156" fg:w="6"/><text x="47.9564%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="47.7064%" y="740" width="1.8349%" height="15" fill="rgb(239,186,37)" fg:x="156" fg:w="6"/><text x="47.9564%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="47.7064%" y="756" width="1.8349%" height="15" fill="rgb(205,221,10)" fg:x="156" fg:w="6"/><text x="47.9564%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="47.7064%" y="772" width="1.8349%" height="15" fill="rgb(218,196,15)" fg:x="156" fg:w="6"/><text x="47.9564%" y="782.50">_..</text></g><g><title><module> (dask/__init__.py:1) (6 samples, 1.83%)</title><rect x="47.7064%" y="788" width="1.8349%" height="15" fill="rgb(218,196,35)" fg:x="156" fg:w="6"/><text x="47.9564%" y="798.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.92%)</title><rect x="48.6239%" y="804" width="0.9174%" height="15" fill="rgb(233,63,24)" fg:x="159" fg:w="3"/><text x="48.8739%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="48.6239%" y="820" width="0.9174%" height="15" fill="rgb(225,8,4)" fg:x="159" fg:w="3"/><text x="48.8739%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.92%)</title><rect x="48.6239%" y="836" width="0.9174%" height="15" fill="rgb(234,105,35)" fg:x="159" fg:w="3"/><text x="48.8739%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.92%)</title><rect x="48.6239%" y="852" width="0.9174%" height="15" fill="rgb(236,21,32)" fg:x="159" fg:w="3"/><text x="48.8739%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.92%)</title><rect x="48.6239%" y="868" width="0.9174%" height="15" fill="rgb(228,109,6)" fg:x="159" fg:w="3"/><text x="48.8739%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="48.6239%" y="884" width="0.9174%" height="15" fill="rgb(229,215,31)" fg:x="159" fg:w="3"/><text x="48.8739%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="48.6239%" y="900" width="0.9174%" height="15" fill="rgb(221,52,54)" fg:x="159" fg:w="3"/><text x="48.8739%" y="910.50"></text></g><g><title><module> (dask/datasets.py:1) (1 samples, 0.31%)</title><rect x="49.2355%" y="916" width="0.3058%" height="15" fill="rgb(252,129,43)" fg:x="161" fg:w="1"/><text x="49.4855%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="49.2355%" y="932" width="0.3058%" height="15" fill="rgb(248,183,27)" fg:x="161" fg:w="1"/><text x="49.4855%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="49.2355%" y="948" width="0.3058%" height="15" fill="rgb(250,0,22)" fg:x="161" fg:w="1"/><text x="49.4855%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="49.2355%" y="964" width="0.3058%" height="15" fill="rgb(213,166,10)" fg:x="161" fg:w="1"/><text x="49.4855%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="49.2355%" y="980" width="0.3058%" height="15" fill="rgb(207,163,36)" fg:x="161" fg:w="1"/><text x="49.4855%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="49.2355%" y="996" width="0.3058%" height="15" fill="rgb(208,122,22)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (1 samples, 0.31%)</title><rect x="49.2355%" y="1012" width="0.3058%" height="15" fill="rgb(207,104,49)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="49.2355%" y="1028" width="0.3058%" height="15" fill="rgb(248,211,50)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="49.2355%" y="1044" width="0.3058%" height="15" fill="rgb(217,13,45)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="49.2355%" y="1060" width="0.3058%" height="15" fill="rgb(211,216,49)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="49.2355%" y="1076" width="0.3058%" height="15" fill="rgb(221,58,53)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="49.2355%" y="1092" width="0.3058%" height="15" fill="rgb(220,112,41)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (1 samples, 0.31%)</title><rect x="49.2355%" y="1108" width="0.3058%" height="15" fill="rgb(236,38,28)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="49.2355%" y="1124" width="0.3058%" height="15" fill="rgb(227,195,22)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="49.2355%" y="1140" width="0.3058%" height="15" fill="rgb(214,55,33)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="49.2355%" y="1156" width="0.3058%" height="15" fill="rgb(248,80,13)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="49.2355%" y="1172" width="0.3058%" height="15" fill="rgb(238,52,6)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="49.2355%" y="1188" width="0.3058%" height="15" fill="rgb(224,198,47)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="49.2355%" y="1204" width="0.3058%" height="15" fill="rgb(233,171,20)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="49.2355%" y="1220" width="0.3058%" height="15" fill="rgb(241,30,25)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1230.50"></text></g><g><title><module> (tlz/_build_tlz.py:1) (1 samples, 0.31%)</title><rect x="49.2355%" y="1236" width="0.3058%" height="15" fill="rgb(207,171,38)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="49.2355%" y="1252" width="0.3058%" height="15" fill="rgb(234,70,1)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="49.2355%" y="1268" width="0.3058%" height="15" fill="rgb(232,178,18)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="49.2355%" y="1284" width="0.3058%" height="15" fill="rgb(241,78,40)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="49.2355%" y="1300" width="0.3058%" height="15" fill="rgb(222,35,25)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="49.2355%" y="1316" width="0.3058%" height="15" fill="rgb(207,92,16)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1326.50"></text></g><g><title><module> (toolz/__init__.py:1) (1 samples, 0.31%)</title><rect x="49.2355%" y="1332" width="0.3058%" height="15" fill="rgb(216,59,51)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="49.2355%" y="1348" width="0.3058%" height="15" fill="rgb(213,80,28)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="49.2355%" y="1364" width="0.3058%" height="15" fill="rgb(220,93,7)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="49.2355%" y="1380" width="0.3058%" height="15" fill="rgb(225,24,44)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="49.2355%" y="1396" width="0.3058%" height="15" fill="rgb(243,74,40)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1406.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="49.2355%" y="1412" width="0.3058%" height="15" fill="rgb(228,39,7)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1422.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="49.2355%" y="1428" width="0.3058%" height="15" fill="rgb(227,79,8)" fg:x="161" fg:w="1"/><text x="49.4855%" y="1438.50"></text></g><g><title>concatenate_managers (pandas/core/internals/concat.py:94) (8 samples, 2.45%)</title><rect x="49.5413%" y="244" width="2.4465%" height="15" fill="rgb(236,58,11)" fg:x="162" fg:w="8"/><text x="49.7913%" y="254.50">co..</text></g><g><title><listcomp> (dask/base.py:667) (10 samples, 3.06%)</title><rect x="49.5413%" y="132" width="3.0581%" height="15" fill="rgb(249,63,35)" fg:x="162" fg:w="10"/><text x="49.7913%" y="142.50"><li..</text></g><g><title>finalize (dask/dataframe/core.py:263) (10 samples, 3.06%)</title><rect x="49.5413%" y="148" width="3.0581%" height="15" fill="rgb(252,114,16)" fg:x="162" fg:w="10"/><text x="49.7913%" y="158.50">fin..</text></g><g><title>_concat (dask/dataframe/core.py:179) (10 samples, 3.06%)</title><rect x="49.5413%" y="164" width="3.0581%" height="15" fill="rgb(254,151,24)" fg:x="162" fg:w="10"/><text x="49.7913%" y="174.50">_co..</text></g><g><title>concat (dask/dataframe/dispatch.py:34) (10 samples, 3.06%)</title><rect x="49.5413%" y="180" width="3.0581%" height="15" fill="rgb(253,54,39)" fg:x="162" fg:w="10"/><text x="49.7913%" y="190.50">con..</text></g><g><title>concat_pandas (dask/dataframe/backends.py:561) (10 samples, 3.06%)</title><rect x="49.5413%" y="196" width="3.0581%" height="15" fill="rgb(243,25,45)" fg:x="162" fg:w="10"/><text x="49.7913%" y="206.50">con..</text></g><g><title>concat (pandas/core/reshape/concat.py:157) (10 samples, 3.06%)</title><rect x="49.5413%" y="212" width="3.0581%" height="15" fill="rgb(234,134,9)" fg:x="162" fg:w="10"/><text x="49.7913%" y="222.50">con..</text></g><g><title>get_result (pandas/core/reshape/concat.py:618) (10 samples, 3.06%)</title><rect x="49.5413%" y="228" width="3.0581%" height="15" fill="rgb(227,166,31)" fg:x="162" fg:w="10"/><text x="49.7913%" y="238.50">get..</text></g><g><title>new_axes (pandas/core/reshape/concat.py:695) (2 samples, 0.61%)</title><rect x="51.9878%" y="244" width="0.6116%" height="15" fill="rgb(245,143,41)" fg:x="170" fg:w="2"/><text x="52.2378%" y="254.50"></text></g><g><title><listcomp> (pandas/core/reshape/concat.py:698) (2 samples, 0.61%)</title><rect x="51.9878%" y="260" width="0.6116%" height="15" fill="rgb(238,181,32)" fg:x="170" fg:w="2"/><text x="52.2378%" y="270.50"></text></g><g><title>_get_concat_axis (pandas/core/reshape/concat.py:713) (2 samples, 0.61%)</title><rect x="51.9878%" y="276" width="0.6116%" height="15" fill="rgb(224,113,18)" fg:x="170" fg:w="2"/><text x="52.2378%" y="286.50"></text></g><g><title>_concat_indexes (pandas/core/reshape/concat.py:773) (2 samples, 0.61%)</title><rect x="51.9878%" y="292" width="0.6116%" height="15" fill="rgb(240,229,28)" fg:x="170" fg:w="2"/><text x="52.2378%" y="302.50"></text></g><g><title>append (pandas/core/indexes/base.py:5421) (2 samples, 0.61%)</title><rect x="51.9878%" y="308" width="0.6116%" height="15" fill="rgb(250,185,3)" fg:x="170" fg:w="2"/><text x="52.2378%" y="318.50"></text></g><g><title>_concat (pandas/core/indexes/range.py:902) (2 samples, 0.61%)</title><rect x="51.9878%" y="324" width="0.6116%" height="15" fill="rgb(212,59,25)" fg:x="170" fg:w="2"/><text x="52.2378%" y="334.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (7 samples, 2.14%)</title><rect x="52.5994%" y="756" width="2.1407%" height="15" fill="rgb(221,87,20)" fg:x="172" fg:w="7"/><text x="52.8494%" y="766.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 2.14%)</title><rect x="52.5994%" y="772" width="2.1407%" height="15" fill="rgb(213,74,28)" fg:x="172" fg:w="7"/><text x="52.8494%" y="782.50">_..</text></g><g><title>__getattr__ (tornado/__init__.py:64) (7 samples, 2.14%)</title><rect x="52.5994%" y="788" width="2.1407%" height="15" fill="rgb(224,132,34)" fg:x="172" fg:w="7"/><text x="52.8494%" y="798.50">_..</text></g><g><title>import_module (importlib/__init__.py:109) (7 samples, 2.14%)</title><rect x="52.5994%" y="804" width="2.1407%" height="15" fill="rgb(222,101,24)" fg:x="172" fg:w="7"/><text x="52.8494%" y="814.50">i..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (7 samples, 2.14%)</title><rect x="52.5994%" y="820" width="2.1407%" height="15" fill="rgb(254,142,4)" fg:x="172" fg:w="7"/><text x="52.8494%" y="830.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="52.5994%" y="836" width="2.1407%" height="15" fill="rgb(230,229,49)" fg:x="172" fg:w="7"/><text x="52.8494%" y="846.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="52.5994%" y="852" width="2.1407%" height="15" fill="rgb(238,70,47)" fg:x="172" fg:w="7"/><text x="52.8494%" y="862.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="52.5994%" y="868" width="2.1407%" height="15" fill="rgb(231,160,17)" fg:x="172" fg:w="7"/><text x="52.8494%" y="878.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="52.5994%" y="884" width="2.1407%" height="15" fill="rgb(218,68,53)" fg:x="172" fg:w="7"/><text x="52.8494%" y="894.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="52.5994%" y="900" width="2.1407%" height="15" fill="rgb(236,111,10)" fg:x="172" fg:w="7"/><text x="52.8494%" y="910.50">_..</text></g><g><title><module> (tornado/netutil.py:16) (7 samples, 2.14%)</title><rect x="52.5994%" y="916" width="2.1407%" height="15" fill="rgb(224,34,41)" fg:x="172" fg:w="7"/><text x="52.8494%" y="926.50"><..</text></g><g><title>create_default_context (ssl.py:724) (7 samples, 2.14%)</title><rect x="52.5994%" y="932" width="2.1407%" height="15" fill="rgb(241,118,19)" fg:x="172" fg:w="7"/><text x="52.8494%" y="942.50">c..</text></g><g><title>load_default_certs (ssl.py:570) (7 samples, 2.14%)</title><rect x="52.5994%" y="948" width="2.1407%" height="15" fill="rgb(238,129,25)" fg:x="172" fg:w="7"/><text x="52.8494%" y="958.50">l..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="54.7401%" y="772" width="0.3058%" height="15" fill="rgb(238,22,31)" fg:x="179" fg:w="1"/><text x="54.9901%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="54.7401%" y="788" width="0.3058%" height="15" fill="rgb(222,174,48)" fg:x="179" fg:w="1"/><text x="54.9901%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="54.7401%" y="804" width="0.3058%" height="15" fill="rgb(206,152,40)" fg:x="179" fg:w="1"/><text x="54.9901%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="54.7401%" y="820" width="0.3058%" height="15" fill="rgb(218,99,54)" fg:x="179" fg:w="1"/><text x="54.9901%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="54.7401%" y="836" width="0.3058%" height="15" fill="rgb(220,174,26)" fg:x="179" fg:w="1"/><text x="54.9901%" y="846.50"></text></g><g><title><module> (tornado/websocket.py:1) (1 samples, 0.31%)</title><rect x="54.7401%" y="852" width="0.3058%" height="15" fill="rgb(245,116,9)" fg:x="179" fg:w="1"/><text x="54.9901%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="54.7401%" y="868" width="0.3058%" height="15" fill="rgb(209,72,35)" fg:x="179" fg:w="1"/><text x="54.9901%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="54.7401%" y="884" width="0.3058%" height="15" fill="rgb(226,126,21)" fg:x="179" fg:w="1"/><text x="54.9901%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="54.7401%" y="900" width="0.3058%" height="15" fill="rgb(227,192,1)" fg:x="179" fg:w="1"/><text x="54.9901%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="54.7401%" y="916" width="0.3058%" height="15" fill="rgb(237,180,29)" fg:x="179" fg:w="1"/><text x="54.9901%" y="926.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="54.7401%" y="932" width="0.3058%" height="15" fill="rgb(230,197,35)" fg:x="179" fg:w="1"/><text x="54.9901%" y="942.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="54.7401%" y="948" width="0.3058%" height="15" fill="rgb(246,193,31)" fg:x="179" fg:w="1"/><text x="54.9901%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="52.5994%" y="532" width="2.7523%" height="15" fill="rgb(241,36,4)" fg:x="172" fg:w="9"/><text x="52.8494%" y="542.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="52.5994%" y="548" width="2.7523%" height="15" fill="rgb(241,130,17)" fg:x="172" fg:w="9"/><text x="52.8494%" y="558.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="52.5994%" y="564" width="2.7523%" height="15" fill="rgb(206,137,32)" fg:x="172" fg:w="9"/><text x="52.8494%" y="574.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="52.5994%" y="580" width="2.7523%" height="15" fill="rgb(237,228,51)" fg:x="172" fg:w="9"/><text x="52.8494%" y="590.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="52.5994%" y="596" width="2.7523%" height="15" fill="rgb(243,6,42)" fg:x="172" fg:w="9"/><text x="52.8494%" y="606.50">_c..</text></g><g><title><module> (distributed/comm/__init__.py:1) (9 samples, 2.75%)</title><rect x="52.5994%" y="612" width="2.7523%" height="15" fill="rgb(251,74,28)" fg:x="172" fg:w="9"/><text x="52.8494%" y="622.50"><m..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (9 samples, 2.75%)</title><rect x="52.5994%" y="628" width="2.7523%" height="15" fill="rgb(218,20,49)" fg:x="172" fg:w="9"/><text x="52.8494%" y="638.50">_r..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 2.75%)</title><rect x="52.5994%" y="644" width="2.7523%" height="15" fill="rgb(238,28,14)" fg:x="172" fg:w="9"/><text x="52.8494%" y="654.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="52.5994%" y="660" width="2.7523%" height="15" fill="rgb(229,40,46)" fg:x="172" fg:w="9"/><text x="52.8494%" y="670.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.75%)</title><rect x="52.5994%" y="676" width="2.7523%" height="15" fill="rgb(244,195,20)" fg:x="172" fg:w="9"/><text x="52.8494%" y="686.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.75%)</title><rect x="52.5994%" y="692" width="2.7523%" height="15" fill="rgb(253,56,35)" fg:x="172" fg:w="9"/><text x="52.8494%" y="702.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.75%)</title><rect x="52.5994%" y="708" width="2.7523%" height="15" fill="rgb(210,149,44)" fg:x="172" fg:w="9"/><text x="52.8494%" y="718.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.75%)</title><rect x="52.5994%" y="724" width="2.7523%" height="15" fill="rgb(240,135,12)" fg:x="172" fg:w="9"/><text x="52.8494%" y="734.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.75%)</title><rect x="52.5994%" y="740" width="2.7523%" height="15" fill="rgb(251,24,50)" fg:x="172" fg:w="9"/><text x="52.8494%" y="750.50">_c..</text></g><g><title><module> (distributed/comm/ws.py:1) (2 samples, 0.61%)</title><rect x="54.7401%" y="756" width="0.6116%" height="15" fill="rgb(243,200,47)" fg:x="179" fg:w="2"/><text x="54.9901%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="55.0459%" y="772" width="0.3058%" height="15" fill="rgb(224,166,26)" fg:x="180" fg:w="1"/><text x="55.2959%" y="782.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (1 samples, 0.31%)</title><rect x="55.0459%" y="788" width="0.3058%" height="15" fill="rgb(233,0,47)" fg:x="180" fg:w="1"/><text x="55.2959%" y="798.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.31%)</title><rect x="55.0459%" y="804" width="0.3058%" height="15" fill="rgb(253,80,5)" fg:x="180" fg:w="1"/><text x="55.2959%" y="814.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.31%)</title><rect x="55.0459%" y="820" width="0.3058%" height="15" fill="rgb(214,133,25)" fg:x="180" fg:w="1"/><text x="55.2959%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.0459%" y="836" width="0.3058%" height="15" fill="rgb(209,27,14)" fg:x="180" fg:w="1"/><text x="55.2959%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.0459%" y="852" width="0.3058%" height="15" fill="rgb(219,102,51)" fg:x="180" fg:w="1"/><text x="55.2959%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.0459%" y="868" width="0.3058%" height="15" fill="rgb(237,18,16)" fg:x="180" fg:w="1"/><text x="55.2959%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="55.0459%" y="884" width="0.3058%" height="15" fill="rgb(241,85,17)" fg:x="180" fg:w="1"/><text x="55.2959%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.0459%" y="900" width="0.3058%" height="15" fill="rgb(236,90,42)" fg:x="180" fg:w="1"/><text x="55.2959%" y="910.50"></text></g><g><title><module> (tornado/web.py:16) (1 samples, 0.31%)</title><rect x="55.0459%" y="916" width="0.3058%" height="15" fill="rgb(249,57,21)" fg:x="180" fg:w="1"/><text x="55.2959%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.0459%" y="932" width="0.3058%" height="15" fill="rgb(243,12,36)" fg:x="180" fg:w="1"/><text x="55.2959%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.0459%" y="948" width="0.3058%" height="15" fill="rgb(253,128,47)" fg:x="180" fg:w="1"/><text x="55.2959%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.0459%" y="964" width="0.3058%" height="15" fill="rgb(207,33,20)" fg:x="180" fg:w="1"/><text x="55.2959%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="55.0459%" y="980" width="0.3058%" height="15" fill="rgb(233,215,35)" fg:x="180" fg:w="1"/><text x="55.2959%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.0459%" y="996" width="0.3058%" height="15" fill="rgb(249,188,52)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1006.50"></text></g><g><title><module> (tornado/routing.py:15) (1 samples, 0.31%)</title><rect x="55.0459%" y="1012" width="0.3058%" height="15" fill="rgb(225,12,32)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1022.50"></text></g><g><title>PathMatches (tornado/routing.py:552) (1 samples, 0.31%)</title><rect x="55.0459%" y="1028" width="0.3058%" height="15" fill="rgb(247,98,14)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1038.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.31%)</title><rect x="55.0459%" y="1044" width="0.3058%" height="15" fill="rgb(247,219,48)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1054.50"></text></g><g><title>__getitem__ (typing.py:909) (1 samples, 0.31%)</title><rect x="55.0459%" y="1060" width="0.3058%" height="15" fill="rgb(253,60,48)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1070.50"></text></g><g><title>copy_with (typing.py:841) (1 samples, 0.31%)</title><rect x="55.0459%" y="1076" width="0.3058%" height="15" fill="rgb(245,15,52)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1086.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.31%)</title><rect x="55.0459%" y="1092" width="0.3058%" height="15" fill="rgb(220,133,28)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1102.50"></text></g><g><title>_collect_type_vars (typing_extensions.py:182) (1 samples, 0.31%)</title><rect x="55.0459%" y="1108" width="0.3058%" height="15" fill="rgb(217,180,4)" fg:x="180" fg:w="1"/><text x="55.2959%" y="1118.50"></text></g><g><title><module> (distributed/core.py:1) (10 samples, 3.06%)</title><rect x="52.5994%" y="516" width="3.0581%" height="15" fill="rgb(251,24,1)" fg:x="172" fg:w="10"/><text x="52.8494%" y="526.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="55.3517%" y="532" width="0.3058%" height="15" fill="rgb(212,185,49)" fg:x="181" fg:w="1"/><text x="55.6017%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="548" width="0.3058%" height="15" fill="rgb(215,175,22)" fg:x="181" fg:w="1"/><text x="55.6017%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.3517%" y="564" width="0.3058%" height="15" fill="rgb(250,205,14)" fg:x="181" fg:w="1"/><text x="55.6017%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.3517%" y="580" width="0.3058%" height="15" fill="rgb(225,211,22)" fg:x="181" fg:w="1"/><text x="55.6017%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.3517%" y="596" width="0.3058%" height="15" fill="rgb(251,179,42)" fg:x="181" fg:w="1"/><text x="55.6017%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="55.3517%" y="612" width="0.3058%" height="15" fill="rgb(208,216,51)" fg:x="181" fg:w="1"/><text x="55.6017%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="628" width="0.3058%" height="15" fill="rgb(235,36,11)" fg:x="181" fg:w="1"/><text x="55.6017%" y="638.50"></text></g><g><title><module> (distributed/profile.py:1) (1 samples, 0.31%)</title><rect x="55.3517%" y="644" width="0.3058%" height="15" fill="rgb(213,189,28)" fg:x="181" fg:w="1"/><text x="55.6017%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.3517%" y="660" width="0.3058%" height="15" fill="rgb(227,203,42)" fg:x="181" fg:w="1"/><text x="55.6017%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.3517%" y="676" width="0.3058%" height="15" fill="rgb(244,72,36)" fg:x="181" fg:w="1"/><text x="55.6017%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.3517%" y="692" width="0.3058%" height="15" fill="rgb(213,53,17)" fg:x="181" fg:w="1"/><text x="55.6017%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="55.3517%" y="708" width="0.3058%" height="15" fill="rgb(207,167,3)" fg:x="181" fg:w="1"/><text x="55.6017%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="724" width="0.3058%" height="15" fill="rgb(216,98,30)" fg:x="181" fg:w="1"/><text x="55.6017%" y="734.50"></text></g><g><title><module> (distributed/utils.py:1) (1 samples, 0.31%)</title><rect x="55.3517%" y="740" width="0.3058%" height="15" fill="rgb(236,123,15)" fg:x="181" fg:w="1"/><text x="55.6017%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.3517%" y="756" width="0.3058%" height="15" fill="rgb(248,81,50)" fg:x="181" fg:w="1"/><text x="55.6017%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.3517%" y="772" width="0.3058%" height="15" fill="rgb(214,120,4)" fg:x="181" fg:w="1"/><text x="55.6017%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.3517%" y="788" width="0.3058%" height="15" fill="rgb(208,179,34)" fg:x="181" fg:w="1"/><text x="55.6017%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="55.3517%" y="804" width="0.3058%" height="15" fill="rgb(227,140,7)" fg:x="181" fg:w="1"/><text x="55.6017%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="820" width="0.3058%" height="15" fill="rgb(214,22,6)" fg:x="181" fg:w="1"/><text x="55.6017%" y="830.50"></text></g><g><title><module> (xml/etree/ElementTree.py:1) (1 samples, 0.31%)</title><rect x="55.3517%" y="836" width="0.3058%" height="15" fill="rgb(207,137,27)" fg:x="181" fg:w="1"/><text x="55.6017%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.3517%" y="852" width="0.3058%" height="15" fill="rgb(210,8,46)" fg:x="181" fg:w="1"/><text x="55.6017%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.3517%" y="868" width="0.3058%" height="15" fill="rgb(240,16,54)" fg:x="181" fg:w="1"/><text x="55.6017%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.3517%" y="884" width="0.3058%" height="15" fill="rgb(211,209,29)" fg:x="181" fg:w="1"/><text x="55.6017%" y="894.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="55.3517%" y="900" width="0.3058%" height="15" fill="rgb(226,228,24)" fg:x="181" fg:w="1"/><text x="55.6017%" y="910.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="55.3517%" y="916" width="0.3058%" height="15" fill="rgb(222,84,9)" fg:x="181" fg:w="1"/><text x="55.6017%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="932" width="0.3058%" height="15" fill="rgb(234,203,30)" fg:x="181" fg:w="1"/><text x="55.6017%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="55.3517%" y="948" width="0.3058%" height="15" fill="rgb(238,109,14)" fg:x="181" fg:w="1"/><text x="55.6017%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="55.3517%" y="964" width="0.3058%" height="15" fill="rgb(233,206,34)" fg:x="181" fg:w="1"/><text x="55.6017%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="55.3517%" y="980" width="0.3058%" height="15" fill="rgb(220,167,47)" fg:x="181" fg:w="1"/><text x="55.6017%" y="990.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="55.3517%" y="996" width="0.3058%" height="15" fill="rgb(238,105,10)" fg:x="181" fg:w="1"/><text x="55.6017%" y="1006.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="55.3517%" y="1012" width="0.3058%" height="15" fill="rgb(213,227,17)" fg:x="181" fg:w="1"/><text x="55.6017%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="55.3517%" y="1028" width="0.3058%" height="15" fill="rgb(217,132,38)" fg:x="181" fg:w="1"/><text x="55.6017%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.67%)</title><rect x="52.5994%" y="436" width="3.6697%" height="15" fill="rgb(242,146,4)" fg:x="172" fg:w="12"/><text x="52.8494%" y="446.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.67%)</title><rect x="52.5994%" y="452" width="3.6697%" height="15" fill="rgb(212,61,9)" fg:x="172" fg:w="12"/><text x="52.8494%" y="462.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.67%)</title><rect x="52.5994%" y="468" width="3.6697%" height="15" fill="rgb(247,126,22)" fg:x="172" fg:w="12"/><text x="52.8494%" y="478.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.67%)</title><rect x="52.5994%" y="484" width="3.6697%" height="15" fill="rgb(220,196,2)" fg:x="172" fg:w="12"/><text x="52.8494%" y="494.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.67%)</title><rect x="52.5994%" y="500" width="3.6697%" height="15" fill="rgb(208,46,4)" fg:x="172" fg:w="12"/><text x="52.8494%" y="510.50">_cal..</text></g><g><title><module> (distributed/worker.py:1) (2 samples, 0.61%)</title><rect x="55.6575%" y="516" width="0.6116%" height="15" fill="rgb(252,104,46)" fg:x="182" fg:w="2"/><text x="55.9075%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="55.6575%" y="532" width="0.6116%" height="15" fill="rgb(237,152,48)" fg:x="182" fg:w="2"/><text x="55.9075%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="55.6575%" y="548" width="0.6116%" height="15" fill="rgb(221,59,37)" fg:x="182" fg:w="2"/><text x="55.9075%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="55.6575%" y="564" width="0.6116%" height="15" fill="rgb(209,202,51)" fg:x="182" fg:w="2"/><text x="55.9075%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="55.6575%" y="580" width="0.6116%" height="15" fill="rgb(228,81,30)" fg:x="182" fg:w="2"/><text x="55.9075%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="55.6575%" y="596" width="0.6116%" height="15" fill="rgb(227,42,39)" fg:x="182" fg:w="2"/><text x="55.9075%" y="606.50"></text></g><g><title><module> (distributed/worker_state_machine.py:1) (2 samples, 0.61%)</title><rect x="55.6575%" y="612" width="0.6116%" height="15" fill="rgb(221,26,2)" fg:x="182" fg:w="2"/><text x="55.9075%" y="622.50"></text></g><g><title>dataclass (dataclasses.py:998) (2 samples, 0.61%)</title><rect x="55.6575%" y="628" width="0.6116%" height="15" fill="rgb(254,61,31)" fg:x="182" fg:w="2"/><text x="55.9075%" y="638.50"></text></g><g><title>wrap (dataclasses.py:1012) (2 samples, 0.61%)</title><rect x="55.6575%" y="644" width="0.6116%" height="15" fill="rgb(222,173,38)" fg:x="182" fg:w="2"/><text x="55.9075%" y="654.50"></text></g><g><title>_process_class (dataclasses.py:809) (2 samples, 0.61%)</title><rect x="55.6575%" y="660" width="0.6116%" height="15" fill="rgb(218,50,12)" fg:x="182" fg:w="2"/><text x="55.9075%" y="670.50"></text></g><g><title>_init_fn (dataclasses.py:489) (2 samples, 0.61%)</title><rect x="55.6575%" y="676" width="0.6116%" height="15" fill="rgb(223,88,40)" fg:x="182" fg:w="2"/><text x="55.9075%" y="686.50"></text></g><g><title>_create_fn (dataclasses.py:377) (2 samples, 0.61%)</title><rect x="55.6575%" y="692" width="0.6116%" height="15" fill="rgb(237,54,19)" fg:x="182" fg:w="2"/><text x="55.9075%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="56.2691%" y="852" width="0.3058%" height="15" fill="rgb(251,129,25)" fg:x="184" fg:w="1"/><text x="56.5191%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="56.2691%" y="868" width="0.3058%" height="15" fill="rgb(238,97,19)" fg:x="184" fg:w="1"/><text x="56.5191%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="56.2691%" y="884" width="0.3058%" height="15" fill="rgb(240,169,18)" fg:x="184" fg:w="1"/><text x="56.5191%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="56.2691%" y="900" width="0.3058%" height="15" fill="rgb(230,187,49)" fg:x="184" fg:w="1"/><text x="56.5191%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="916" width="0.3058%" height="15" fill="rgb(209,44,26)" fg:x="184" fg:w="1"/><text x="56.5191%" y="926.50"></text></g><g><title><module> (packaging/specifiers.py:4) (1 samples, 0.31%)</title><rect x="56.2691%" y="932" width="0.3058%" height="15" fill="rgb(244,0,6)" fg:x="184" fg:w="1"/><text x="56.5191%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="56.2691%" y="948" width="0.3058%" height="15" fill="rgb(248,18,21)" fg:x="184" fg:w="1"/><text x="56.5191%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="56.2691%" y="964" width="0.3058%" height="15" fill="rgb(245,180,19)" fg:x="184" fg:w="1"/><text x="56.5191%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="56.2691%" y="980" width="0.3058%" height="15" fill="rgb(252,118,36)" fg:x="184" fg:w="1"/><text x="56.5191%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="56.2691%" y="996" width="0.3058%" height="15" fill="rgb(210,224,19)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="1012" width="0.3058%" height="15" fill="rgb(218,30,24)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1022.50"></text></g><g><title><module> (packaging/utils.py:5) (1 samples, 0.31%)</title><rect x="56.2691%" y="1028" width="0.3058%" height="15" fill="rgb(219,75,50)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="56.2691%" y="1044" width="0.3058%" height="15" fill="rgb(234,72,50)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="56.2691%" y="1060" width="0.3058%" height="15" fill="rgb(219,100,48)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="56.2691%" y="1076" width="0.3058%" height="15" fill="rgb(253,5,41)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="56.2691%" y="1092" width="0.3058%" height="15" fill="rgb(247,181,11)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="1108" width="0.3058%" height="15" fill="rgb(222,223,25)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1118.50"></text></g><g><title><module> (packaging/tags.py:5) (1 samples, 0.31%)</title><rect x="56.2691%" y="1124" width="0.3058%" height="15" fill="rgb(214,198,28)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1134.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="56.2691%" y="1140" width="0.3058%" height="15" fill="rgb(230,46,43)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="1156" width="0.3058%" height="15" fill="rgb(233,65,53)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="56.2691%" y="1172" width="0.3058%" height="15" fill="rgb(221,121,27)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="56.2691%" y="1188" width="0.3058%" height="15" fill="rgb(247,70,47)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="56.2691%" y="1204" width="0.3058%" height="15" fill="rgb(228,85,35)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="56.2691%" y="1220" width="0.3058%" height="15" fill="rgb(209,50,18)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="1236" width="0.3058%" height="15" fill="rgb(250,19,35)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1246.50"></text></g><g><title><module> (packaging/_manylinux.py:1) (1 samples, 0.31%)</title><rect x="56.2691%" y="1252" width="0.3058%" height="15" fill="rgb(253,107,29)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="56.2691%" y="1268" width="0.3058%" height="15" fill="rgb(252,179,29)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="56.2691%" y="1284" width="0.3058%" height="15" fill="rgb(238,194,6)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="56.2691%" y="1300" width="0.3058%" height="15" fill="rgb(238,164,29)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="56.2691%" y="1316" width="0.3058%" height="15" fill="rgb(224,25,9)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="56.2691%" y="1332" width="0.3058%" height="15" fill="rgb(244,153,23)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1342.50"></text></g><g><title><module> (packaging/_elffile.py:1) (1 samples, 0.31%)</title><rect x="56.2691%" y="1348" width="0.3058%" height="15" fill="rgb(212,203,14)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1358.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.31%)</title><rect x="56.2691%" y="1364" width="0.3058%" height="15" fill="rgb(220,164,20)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1374.50"></text></g><g><title><setcomp> (enum.py:221) (1 samples, 0.31%)</title><rect x="56.2691%" y="1380" width="0.3058%" height="15" fill="rgb(222,203,48)" fg:x="184" fg:w="1"/><text x="56.5191%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.28%)</title><rect x="52.5994%" y="404" width="4.2813%" height="15" fill="rgb(215,159,22)" fg:x="172" fg:w="14"/><text x="52.8494%" y="414.50">_call..</text></g><g><title><module> (distributed/client.py:1) (14 samples, 4.28%)</title><rect x="52.5994%" y="420" width="4.2813%" height="15" fill="rgb(216,183,47)" fg:x="172" fg:w="14"/><text x="52.8494%" y="430.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="56.2691%" y="436" width="0.6116%" height="15" fill="rgb(229,195,25)" fg:x="184" fg:w="2"/><text x="56.5191%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="56.2691%" y="452" width="0.6116%" height="15" fill="rgb(224,132,51)" fg:x="184" fg:w="2"/><text x="56.5191%" y="462.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="56.2691%" y="468" width="0.6116%" height="15" fill="rgb(240,63,7)" fg:x="184" fg:w="2"/><text x="56.5191%" y="478.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="56.2691%" y="484" width="0.6116%" height="15" fill="rgb(249,182,41)" fg:x="184" fg:w="2"/><text x="56.5191%" y="494.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="56.2691%" y="500" width="0.6116%" height="15" fill="rgb(243,47,26)" fg:x="184" fg:w="2"/><text x="56.5191%" y="510.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="56.2691%" y="516" width="0.6116%" height="15" fill="rgb(233,48,2)" fg:x="184" fg:w="2"/><text x="56.5191%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="56.2691%" y="532" width="0.6116%" height="15" fill="rgb(244,165,34)" fg:x="184" fg:w="2"/><text x="56.5191%" y="542.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 0.61%)</title><rect x="56.2691%" y="548" width="0.6116%" height="15" fill="rgb(207,89,7)" fg:x="184" fg:w="2"/><text x="56.5191%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="56.2691%" y="564" width="0.6116%" height="15" fill="rgb(244,117,36)" fg:x="184" fg:w="2"/><text x="56.5191%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="56.2691%" y="580" width="0.6116%" height="15" fill="rgb(226,144,34)" fg:x="184" fg:w="2"/><text x="56.5191%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="56.2691%" y="596" width="0.6116%" height="15" fill="rgb(213,23,19)" fg:x="184" fg:w="2"/><text x="56.5191%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="56.2691%" y="612" width="0.6116%" height="15" fill="rgb(217,75,12)" fg:x="184" fg:w="2"/><text x="56.5191%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="56.2691%" y="628" width="0.6116%" height="15" fill="rgb(224,159,17)" fg:x="184" fg:w="2"/><text x="56.5191%" y="638.50"></text></g><g><title><module> (packaging/requirements.py:5) (2 samples, 0.61%)</title><rect x="56.2691%" y="644" width="0.6116%" height="15" fill="rgb(217,118,1)" fg:x="184" fg:w="2"/><text x="56.5191%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="56.2691%" y="660" width="0.6116%" height="15" fill="rgb(232,180,48)" fg:x="184" fg:w="2"/><text x="56.5191%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="56.2691%" y="676" width="0.6116%" height="15" fill="rgb(230,27,33)" fg:x="184" fg:w="2"/><text x="56.5191%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="56.2691%" y="692" width="0.6116%" height="15" fill="rgb(205,31,21)" fg:x="184" fg:w="2"/><text x="56.5191%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="56.2691%" y="708" width="0.6116%" height="15" fill="rgb(253,59,4)" fg:x="184" fg:w="2"/><text x="56.5191%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="56.2691%" y="724" width="0.6116%" height="15" fill="rgb(224,201,9)" fg:x="184" fg:w="2"/><text x="56.5191%" y="734.50"></text></g><g><title><module> (packaging/_parser.py:1) (2 samples, 0.61%)</title><rect x="56.2691%" y="740" width="0.6116%" height="15" fill="rgb(229,206,30)" fg:x="184" fg:w="2"/><text x="56.5191%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="56.2691%" y="756" width="0.6116%" height="15" fill="rgb(212,67,47)" fg:x="184" fg:w="2"/><text x="56.5191%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="56.2691%" y="772" width="0.6116%" height="15" fill="rgb(211,96,50)" fg:x="184" fg:w="2"/><text x="56.5191%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="56.2691%" y="788" width="0.6116%" height="15" fill="rgb(252,114,18)" fg:x="184" fg:w="2"/><text x="56.5191%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="56.2691%" y="804" width="0.6116%" height="15" fill="rgb(223,58,37)" fg:x="184" fg:w="2"/><text x="56.5191%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="56.2691%" y="820" width="0.6116%" height="15" fill="rgb(237,70,4)" fg:x="184" fg:w="2"/><text x="56.5191%" y="830.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (2 samples, 0.61%)</title><rect x="56.2691%" y="836" width="0.6116%" height="15" fill="rgb(244,85,46)" fg:x="184" fg:w="2"/><text x="56.5191%" y="846.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.31%)</title><rect x="56.5749%" y="852" width="0.3058%" height="15" fill="rgb(223,39,52)" fg:x="185" fg:w="1"/><text x="56.8249%" y="862.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="56.5749%" y="868" width="0.3058%" height="15" fill="rgb(218,200,14)" fg:x="185" fg:w="1"/><text x="56.8249%" y="878.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.31%)</title><rect x="56.5749%" y="884" width="0.3058%" height="15" fill="rgb(208,171,16)" fg:x="185" fg:w="1"/><text x="56.8249%" y="894.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.31%)</title><rect x="56.5749%" y="900" width="0.3058%" height="15" fill="rgb(234,200,18)" fg:x="185" fg:w="1"/><text x="56.8249%" y="910.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="56.5749%" y="916" width="0.3058%" height="15" fill="rgb(228,45,11)" fg:x="185" fg:w="1"/><text x="56.8249%" y="926.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="56.5749%" y="932" width="0.3058%" height="15" fill="rgb(237,182,11)" fg:x="185" fg:w="1"/><text x="56.8249%" y="942.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="56.5749%" y="948" width="0.3058%" height="15" fill="rgb(241,175,49)" fg:x="185" fg:w="1"/><text x="56.8249%" y="958.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="56.5749%" y="964" width="0.3058%" height="15" fill="rgb(247,38,35)" fg:x="185" fg:w="1"/><text x="56.8249%" y="974.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="56.5749%" y="980" width="0.3058%" height="15" fill="rgb(228,39,49)" fg:x="185" fg:w="1"/><text x="56.8249%" y="990.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="56.5749%" y="996" width="0.3058%" height="15" fill="rgb(226,101,26)" fg:x="185" fg:w="1"/><text x="56.8249%" y="1006.50"></text></g><g><title>__getitem__ (sre_parse.py:165) (1 samples, 0.31%)</title><rect x="56.5749%" y="1012" width="0.3058%" height="15" fill="rgb(206,141,19)" fg:x="185" fg:w="1"/><text x="56.8249%" y="1022.50"></text></g><g><title>__init__ (sre_parse.py:112) (1 samples, 0.31%)</title><rect x="56.5749%" y="1028" width="0.3058%" height="15" fill="rgb(211,200,13)" fg:x="185" fg:w="1"/><text x="56.8249%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 4.59%)</title><rect x="52.5994%" y="244" width="4.5872%" height="15" fill="rgb(241,121,6)" fg:x="172" fg:w="15"/><text x="52.8494%" y="254.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 4.59%)</title><rect x="52.5994%" y="260" width="4.5872%" height="15" fill="rgb(234,221,29)" fg:x="172" fg:w="15"/><text x="52.8494%" y="270.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 4.59%)</title><rect x="52.5994%" y="276" width="4.5872%" height="15" fill="rgb(229,136,5)" fg:x="172" fg:w="15"/><text x="52.8494%" y="286.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 4.59%)</title><rect x="52.5994%" y="292" width="4.5872%" height="15" fill="rgb(238,36,11)" fg:x="172" fg:w="15"/><text x="52.8494%" y="302.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 4.59%)</title><rect x="52.5994%" y="308" width="4.5872%" height="15" fill="rgb(251,55,41)" fg:x="172" fg:w="15"/><text x="52.8494%" y="318.50">_call..</text></g><g><title><module> (distributed/actor.py:1) (15 samples, 4.59%)</title><rect x="52.5994%" y="324" width="4.5872%" height="15" fill="rgb(242,34,40)" fg:x="172" fg:w="15"/><text x="52.8494%" y="334.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 4.59%)</title><rect x="52.5994%" y="340" width="4.5872%" height="15" fill="rgb(215,42,17)" fg:x="172" fg:w="15"/><text x="52.8494%" y="350.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 4.59%)</title><rect x="52.5994%" y="356" width="4.5872%" height="15" fill="rgb(207,44,46)" fg:x="172" fg:w="15"/><text x="52.8494%" y="366.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 4.59%)</title><rect x="52.5994%" y="372" width="4.5872%" height="15" fill="rgb(211,206,28)" fg:x="172" fg:w="15"/><text x="52.8494%" y="382.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 4.59%)</title><rect x="52.5994%" y="388" width="4.5872%" height="15" fill="rgb(237,167,16)" fg:x="172" fg:w="15"/><text x="52.8494%" y="398.50">exec_..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="56.8807%" y="404" width="0.3058%" height="15" fill="rgb(233,66,6)" fg:x="186" fg:w="1"/><text x="57.1307%" y="414.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="56.8807%" y="420" width="0.3058%" height="15" fill="rgb(246,123,29)" fg:x="186" fg:w="1"/><text x="57.1307%" y="430.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.31%)</title><rect x="57.1865%" y="548" width="0.3058%" height="15" fill="rgb(209,62,40)" fg:x="187" fg:w="1"/><text x="57.4365%" y="558.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (1 samples, 0.31%)</title><rect x="57.1865%" y="564" width="0.3058%" height="15" fill="rgb(218,4,25)" fg:x="187" fg:w="1"/><text x="57.4365%" y="574.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.31%)</title><rect x="57.1865%" y="580" width="0.3058%" height="15" fill="rgb(253,91,49)" fg:x="187" fg:w="1"/><text x="57.4365%" y="590.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.31%)</title><rect x="57.1865%" y="596" width="0.3058%" height="15" fill="rgb(228,155,29)" fg:x="187" fg:w="1"/><text x="57.4365%" y="606.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.31%)</title><rect x="57.1865%" y="612" width="0.3058%" height="15" fill="rgb(243,57,37)" fg:x="187" fg:w="1"/><text x="57.4365%" y="622.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.31%)</title><rect x="57.1865%" y="628" width="0.3058%" height="15" fill="rgb(244,167,17)" fg:x="187" fg:w="1"/><text x="57.4365%" y="638.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.31%)</title><rect x="57.4924%" y="564" width="0.3058%" height="15" fill="rgb(207,181,38)" fg:x="188" fg:w="1"/><text x="57.7424%" y="574.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.31%)</title><rect x="57.4924%" y="580" width="0.3058%" height="15" fill="rgb(211,8,23)" fg:x="188" fg:w="1"/><text x="57.7424%" y="590.50"></text></g><g><title>parse_block_node_or_indentless_sequence (yaml/parser.py:270) (1 samples, 0.31%)</title><rect x="57.4924%" y="596" width="0.3058%" height="15" fill="rgb(235,11,44)" fg:x="188" fg:w="1"/><text x="57.7424%" y="606.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.31%)</title><rect x="57.4924%" y="612" width="0.3058%" height="15" fill="rgb(248,18,52)" fg:x="188" fg:w="1"/><text x="57.7424%" y="622.50"></text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.22%)</title><rect x="57.7982%" y="580" width="1.2232%" height="15" fill="rgb(208,4,7)" fg:x="189" fg:w="4"/><text x="58.0482%" y="590.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.22%)</title><rect x="57.7982%" y="596" width="1.2232%" height="15" fill="rgb(240,17,39)" fg:x="189" fg:w="4"/><text x="58.0482%" y="606.50"></text></g><g><title>check_event (yaml/parser.py:94) (4 samples, 1.22%)</title><rect x="57.7982%" y="612" width="1.2232%" height="15" fill="rgb(207,170,3)" fg:x="189" fg:w="4"/><text x="58.0482%" y="622.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (4 samples, 1.22%)</title><rect x="57.7982%" y="628" width="1.2232%" height="15" fill="rgb(236,100,52)" fg:x="189" fg:w="4"/><text x="58.0482%" y="638.50"></text></g><g><title>check_token (yaml/scanner.py:113) (4 samples, 1.22%)</title><rect x="57.7982%" y="644" width="1.2232%" height="15" fill="rgb(246,78,51)" fg:x="189" fg:w="4"/><text x="58.0482%" y="654.50"></text></g><g><title>need_more_tokens (yaml/scanner.py:145) (4 samples, 1.22%)</title><rect x="57.7982%" y="660" width="1.2232%" height="15" fill="rgb(211,17,15)" fg:x="189" fg:w="4"/><text x="58.0482%" y="670.50"></text></g><g><title>stale_possible_simple_keys (yaml/scanner.py:279) (4 samples, 1.22%)</title><rect x="57.7982%" y="676" width="1.2232%" height="15" fill="rgb(209,59,46)" fg:x="189" fg:w="4"/><text x="58.0482%" y="686.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (7 samples, 2.14%)</title><rect x="57.1865%" y="372" width="2.1407%" height="15" fill="rgb(210,92,25)" fg:x="187" fg:w="7"/><text x="57.4365%" y="382.50">s..</text></g><g><title>load (yaml/__init__.py:74) (7 samples, 2.14%)</title><rect x="57.1865%" y="388" width="2.1407%" height="15" fill="rgb(238,174,52)" fg:x="187" fg:w="7"/><text x="57.4365%" y="398.50">l..</text></g><g><title>get_single_data (yaml/constructor.py:47) (7 samples, 2.14%)</title><rect x="57.1865%" y="404" width="2.1407%" height="15" fill="rgb(230,73,7)" fg:x="187" fg:w="7"/><text x="57.4365%" y="414.50">g..</text></g><g><title>get_single_node (yaml/composer.py:29) (7 samples, 2.14%)</title><rect x="57.1865%" y="420" width="2.1407%" height="15" fill="rgb(243,124,40)" fg:x="187" fg:w="7"/><text x="57.4365%" y="430.50">g..</text></g><g><title>compose_document (yaml/composer.py:50) (7 samples, 2.14%)</title><rect x="57.1865%" y="436" width="2.1407%" height="15" fill="rgb(244,170,11)" fg:x="187" fg:w="7"/><text x="57.4365%" y="446.50">c..</text></g><g><title>compose_node (yaml/composer.py:63) (7 samples, 2.14%)</title><rect x="57.1865%" y="452" width="2.1407%" height="15" fill="rgb(207,114,54)" fg:x="187" fg:w="7"/><text x="57.4365%" y="462.50">c..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (7 samples, 2.14%)</title><rect x="57.1865%" y="468" width="2.1407%" height="15" fill="rgb(205,42,20)" fg:x="187" fg:w="7"/><text x="57.4365%" y="478.50">c..</text></g><g><title>compose_node (yaml/composer.py:63) (7 samples, 2.14%)</title><rect x="57.1865%" y="484" width="2.1407%" height="15" fill="rgb(230,30,28)" fg:x="187" fg:w="7"/><text x="57.4365%" y="494.50">c..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (7 samples, 2.14%)</title><rect x="57.1865%" y="500" width="2.1407%" height="15" fill="rgb(205,73,54)" fg:x="187" fg:w="7"/><text x="57.4365%" y="510.50">c..</text></g><g><title>compose_node (yaml/composer.py:63) (7 samples, 2.14%)</title><rect x="57.1865%" y="516" width="2.1407%" height="15" fill="rgb(254,227,23)" fg:x="187" fg:w="7"/><text x="57.4365%" y="526.50">c..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (7 samples, 2.14%)</title><rect x="57.1865%" y="532" width="2.1407%" height="15" fill="rgb(228,202,34)" fg:x="187" fg:w="7"/><text x="57.4365%" y="542.50">c..</text></g><g><title>compose_node (yaml/composer.py:63) (6 samples, 1.83%)</title><rect x="57.4924%" y="548" width="1.8349%" height="15" fill="rgb(222,225,37)" fg:x="188" fg:w="6"/><text x="57.7424%" y="558.50">c..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (5 samples, 1.53%)</title><rect x="57.7982%" y="564" width="1.5291%" height="15" fill="rgb(221,14,54)" fg:x="189" fg:w="5"/><text x="58.0482%" y="574.50"></text></g><g><title>resolve (yaml/resolver.py:143) (1 samples, 0.31%)</title><rect x="59.0214%" y="580" width="0.3058%" height="15" fill="rgb(254,102,2)" fg:x="193" fg:w="1"/><text x="59.2714%" y="590.50"></text></g><g><title>compute (dask/base.py:355) (33 samples, 10.09%)</title><rect x="49.5413%" y="100" width="10.0917%" height="15" fill="rgb(232,104,17)" fg:x="162" fg:w="33"/><text x="49.7913%" y="110.50">compute (dask/b..</text></g><g><title>compute (dask/base.py:603) (33 samples, 10.09%)</title><rect x="49.5413%" y="116" width="10.0917%" height="15" fill="rgb(250,220,14)" fg:x="162" fg:w="33"/><text x="49.7913%" y="126.50">compute (dask/b..</text></g><g><title>get_scheduler (dask/base.py:1449) (23 samples, 7.03%)</title><rect x="52.5994%" y="132" width="7.0336%" height="15" fill="rgb(241,158,9)" fg:x="172" fg:w="23"/><text x="52.8494%" y="142.50">get_sched..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (23 samples, 7.03%)</title><rect x="52.5994%" y="148" width="7.0336%" height="15" fill="rgb(246,9,43)" fg:x="172" fg:w="23"/><text x="52.8494%" y="158.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (23 samples, 7.03%)</title><rect x="52.5994%" y="164" width="7.0336%" height="15" fill="rgb(206,73,33)" fg:x="172" fg:w="23"/><text x="52.8494%" y="174.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (23 samples, 7.03%)</title><rect x="52.5994%" y="180" width="7.0336%" height="15" fill="rgb(222,79,8)" fg:x="172" fg:w="23"/><text x="52.8494%" y="190.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (23 samples, 7.03%)</title><rect x="52.5994%" y="196" width="7.0336%" height="15" fill="rgb(234,8,54)" fg:x="172" fg:w="23"/><text x="52.8494%" y="206.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (23 samples, 7.03%)</title><rect x="52.5994%" y="212" width="7.0336%" height="15" fill="rgb(209,134,38)" fg:x="172" fg:w="23"/><text x="52.8494%" y="222.50">_call_wit..</text></g><g><title><module> (distributed/__init__.py:1) (23 samples, 7.03%)</title><rect x="52.5994%" y="228" width="7.0336%" height="15" fill="rgb(230,127,29)" fg:x="172" fg:w="23"/><text x="52.8494%" y="238.50"><module> ..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.45%)</title><rect x="57.1865%" y="244" width="2.4465%" height="15" fill="rgb(242,44,41)" fg:x="187" fg:w="8"/><text x="57.4365%" y="254.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="57.1865%" y="260" width="2.4465%" height="15" fill="rgb(222,56,43)" fg:x="187" fg:w="8"/><text x="57.4365%" y="270.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="57.1865%" y="276" width="2.4465%" height="15" fill="rgb(238,39,47)" fg:x="187" fg:w="8"/><text x="57.4365%" y="286.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="57.1865%" y="292" width="2.4465%" height="15" fill="rgb(226,79,43)" fg:x="187" fg:w="8"/><text x="57.4365%" y="302.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="57.1865%" y="308" width="2.4465%" height="15" fill="rgb(242,105,53)" fg:x="187" fg:w="8"/><text x="57.4365%" y="318.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="57.1865%" y="324" width="2.4465%" height="15" fill="rgb(251,132,46)" fg:x="187" fg:w="8"/><text x="57.4365%" y="334.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="57.1865%" y="340" width="2.4465%" height="15" fill="rgb(231,77,14)" fg:x="187" fg:w="8"/><text x="57.4365%" y="350.50">_c..</text></g><g><title><module> (distributed/config.py:1) (8 samples, 2.45%)</title><rect x="57.1865%" y="356" width="2.4465%" height="15" fill="rgb(240,135,9)" fg:x="187" fg:w="8"/><text x="57.4365%" y="366.50"><m..</text></g><g><title>update_defaults (dask/config.py:600) (1 samples, 0.31%)</title><rect x="59.3272%" y="372" width="0.3058%" height="15" fill="rgb(248,109,14)" fg:x="194" fg:w="1"/><text x="59.5772%" y="382.50"></text></g><g><title>merge (dask/config.py:153) (1 samples, 0.31%)</title><rect x="59.3272%" y="388" width="0.3058%" height="15" fill="rgb(227,146,52)" fg:x="194" fg:w="1"/><text x="59.5772%" y="398.50"></text></g><g><title>update (dask/config.py:82) (1 samples, 0.31%)</title><rect x="59.3272%" y="404" width="0.3058%" height="15" fill="rgb(232,54,3)" fg:x="194" fg:w="1"/><text x="59.5772%" y="414.50"></text></g><g><title>update (dask/config.py:82) (1 samples, 0.31%)</title><rect x="59.3272%" y="420" width="0.3058%" height="15" fill="rgb(229,201,43)" fg:x="194" fg:w="1"/><text x="59.5772%" y="430.50"></text></g><g><title>__instancecheck__ (abc.py:117) (1 samples, 0.31%)</title><rect x="59.3272%" y="436" width="0.3058%" height="15" fill="rgb(252,161,33)" fg:x="194" fg:w="1"/><text x="59.5772%" y="446.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.31%)</title><rect x="59.3272%" y="452" width="0.3058%" height="15" fill="rgb(226,146,40)" fg:x="194" fg:w="1"/><text x="59.5772%" y="462.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.31%)</title><rect x="59.3272%" y="468" width="0.3058%" height="15" fill="rgb(219,47,25)" fg:x="194" fg:w="1"/><text x="59.5772%" y="478.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.31%)</title><rect x="59.3272%" y="484" width="0.3058%" height="15" fill="rgb(250,135,13)" fg:x="194" fg:w="1"/><text x="59.5772%" y="494.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.31%)</title><rect x="59.3272%" y="500" width="0.3058%" height="15" fill="rgb(219,229,18)" fg:x="194" fg:w="1"/><text x="59.5772%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="59.6330%" y="596" width="0.3058%" height="15" fill="rgb(217,152,27)" fg:x="195" fg:w="1"/><text x="59.8830%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="59.6330%" y="612" width="0.3058%" height="15" fill="rgb(225,71,47)" fg:x="195" fg:w="1"/><text x="59.8830%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="59.6330%" y="628" width="0.3058%" height="15" fill="rgb(220,139,14)" fg:x="195" fg:w="1"/><text x="59.8830%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="59.6330%" y="644" width="0.3058%" height="15" fill="rgb(247,54,32)" fg:x="195" fg:w="1"/><text x="59.8830%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="59.6330%" y="660" width="0.3058%" height="15" fill="rgb(252,131,39)" fg:x="195" fg:w="1"/><text x="59.8830%" y="670.50"></text></g><g><title><module> (charset_normalizer/__init__.py:2) (1 samples, 0.31%)</title><rect x="59.6330%" y="676" width="0.3058%" height="15" fill="rgb(210,108,39)" fg:x="195" fg:w="1"/><text x="59.8830%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="59.6330%" y="692" width="0.3058%" height="15" fill="rgb(205,23,29)" fg:x="195" fg:w="1"/><text x="59.8830%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="59.6330%" y="708" width="0.3058%" height="15" fill="rgb(246,139,46)" fg:x="195" fg:w="1"/><text x="59.8830%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="59.6330%" y="724" width="0.3058%" height="15" fill="rgb(250,81,26)" fg:x="195" fg:w="1"/><text x="59.8830%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="59.6330%" y="740" width="0.3058%" height="15" fill="rgb(214,104,7)" fg:x="195" fg:w="1"/><text x="59.8830%" y="750.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="59.6330%" y="756" width="0.3058%" height="15" fill="rgb(233,189,8)" fg:x="195" fg:w="1"/><text x="59.8830%" y="766.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="59.6330%" y="772" width="0.3058%" height="15" fill="rgb(228,141,17)" fg:x="195" fg:w="1"/><text x="59.8830%" y="782.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="60.5505%" y="820" width="0.3058%" height="15" fill="rgb(247,157,1)" fg:x="198" fg:w="1"/><text x="60.8005%" y="830.50"></text></g><g><title><module> (requests/exceptions.py:1) (5 samples, 1.53%)</title><rect x="59.6330%" y="484" width="1.5291%" height="15" fill="rgb(249,225,5)" fg:x="195" fg:w="5"/><text x="59.8830%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.53%)</title><rect x="59.6330%" y="500" width="1.5291%" height="15" fill="rgb(242,55,13)" fg:x="195" fg:w="5"/><text x="59.8830%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.53%)</title><rect x="59.6330%" y="516" width="1.5291%" height="15" fill="rgb(230,49,50)" fg:x="195" fg:w="5"/><text x="59.8830%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.53%)</title><rect x="59.6330%" y="532" width="1.5291%" height="15" fill="rgb(241,111,38)" fg:x="195" fg:w="5"/><text x="59.8830%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.53%)</title><rect x="59.6330%" y="548" width="1.5291%" height="15" fill="rgb(252,155,4)" fg:x="195" fg:w="5"/><text x="59.8830%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.53%)</title><rect x="59.6330%" y="564" width="1.5291%" height="15" fill="rgb(212,69,32)" fg:x="195" fg:w="5"/><text x="59.8830%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (5 samples, 1.53%)</title><rect x="59.6330%" y="580" width="1.5291%" height="15" fill="rgb(243,107,47)" fg:x="195" fg:w="5"/><text x="59.8830%" y="590.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.22%)</title><rect x="59.9388%" y="596" width="1.2232%" height="15" fill="rgb(247,130,12)" fg:x="196" fg:w="4"/><text x="60.1888%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="59.9388%" y="612" width="1.2232%" height="15" fill="rgb(233,74,16)" fg:x="196" fg:w="4"/><text x="60.1888%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="59.9388%" y="628" width="1.2232%" height="15" fill="rgb(208,58,18)" fg:x="196" fg:w="4"/><text x="60.1888%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="59.9388%" y="644" width="1.2232%" height="15" fill="rgb(242,225,1)" fg:x="196" fg:w="4"/><text x="60.1888%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="59.9388%" y="660" width="1.2232%" height="15" fill="rgb(249,39,40)" fg:x="196" fg:w="4"/><text x="60.1888%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="59.9388%" y="676" width="1.2232%" height="15" fill="rgb(207,72,44)" fg:x="196" fg:w="4"/><text x="60.1888%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="59.9388%" y="692" width="1.2232%" height="15" fill="rgb(215,193,12)" fg:x="196" fg:w="4"/><text x="60.1888%" y="702.50"></text></g><g><title><module> (http/cookiejar.py:1) (4 samples, 1.22%)</title><rect x="59.9388%" y="708" width="1.2232%" height="15" fill="rgb(248,41,39)" fg:x="196" fg:w="4"/><text x="60.1888%" y="718.50"></text></g><g><title>compile (re.py:250) (3 samples, 0.92%)</title><rect x="60.2446%" y="724" width="0.9174%" height="15" fill="rgb(253,85,4)" fg:x="197" fg:w="3"/><text x="60.4946%" y="734.50"></text></g><g><title>_compile (re.py:289) (3 samples, 0.92%)</title><rect x="60.2446%" y="740" width="0.9174%" height="15" fill="rgb(243,70,31)" fg:x="197" fg:w="3"/><text x="60.4946%" y="750.50"></text></g><g><title>compile (sre_compile.py:783) (3 samples, 0.92%)</title><rect x="60.2446%" y="756" width="0.9174%" height="15" fill="rgb(253,195,26)" fg:x="197" fg:w="3"/><text x="60.4946%" y="766.50"></text></g><g><title>parse (sre_parse.py:944) (3 samples, 0.92%)</title><rect x="60.2446%" y="772" width="0.9174%" height="15" fill="rgb(243,42,11)" fg:x="197" fg:w="3"/><text x="60.4946%" y="782.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (3 samples, 0.92%)</title><rect x="60.2446%" y="788" width="0.9174%" height="15" fill="rgb(239,66,17)" fg:x="197" fg:w="3"/><text x="60.4946%" y="798.50"></text></g><g><title>_parse (sre_parse.py:494) (3 samples, 0.92%)</title><rect x="60.2446%" y="804" width="0.9174%" height="15" fill="rgb(217,132,21)" fg:x="197" fg:w="3"/><text x="60.4946%" y="814.50"></text></g><g><title>opengroup (sre_parse.py:85) (1 samples, 0.31%)</title><rect x="60.8563%" y="820" width="0.3058%" height="15" fill="rgb(252,202,21)" fg:x="199" fg:w="1"/><text x="61.1063%" y="830.50"></text></g><g><title>groups (sre_parse.py:82) (1 samples, 0.31%)</title><rect x="60.8563%" y="836" width="0.3058%" height="15" fill="rgb(233,98,36)" fg:x="199" fg:w="1"/><text x="61.1063%" y="846.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.31%)</title><rect x="61.1621%" y="980" width="0.3058%" height="15" fill="rgb(216,153,54)" fg:x="200" fg:w="1"/><text x="61.4121%" y="990.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="61.1621%" y="996" width="0.3058%" height="15" fill="rgb(250,99,7)" fg:x="200" fg:w="1"/><text x="61.4121%" y="1006.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="61.1621%" y="1012" width="0.3058%" height="15" fill="rgb(207,56,50)" fg:x="200" fg:w="1"/><text x="61.4121%" y="1022.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="61.1621%" y="1028" width="0.3058%" height="15" fill="rgb(244,61,34)" fg:x="200" fg:w="1"/><text x="61.4121%" y="1038.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.31%)</title><rect x="61.1621%" y="1044" width="0.3058%" height="15" fill="rgb(241,50,38)" fg:x="200" fg:w="1"/><text x="61.4121%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="59.6330%" y="116" width="2.1407%" height="15" fill="rgb(212,166,30)" fg:x="195" fg:w="7"/><text x="59.8830%" y="126.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="59.6330%" y="132" width="2.1407%" height="15" fill="rgb(249,127,32)" fg:x="195" fg:w="7"/><text x="59.8830%" y="142.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="59.6330%" y="148" width="2.1407%" height="15" fill="rgb(209,103,0)" fg:x="195" fg:w="7"/><text x="59.8830%" y="158.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="59.6330%" y="164" width="2.1407%" height="15" fill="rgb(238,209,51)" fg:x="195" fg:w="7"/><text x="59.8830%" y="174.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="59.6330%" y="180" width="2.1407%" height="15" fill="rgb(237,56,23)" fg:x="195" fg:w="7"/><text x="59.8830%" y="190.50">_..</text></g><g><title><module> (pooch/__init__.py:10) (7 samples, 2.14%)</title><rect x="59.6330%" y="196" width="2.1407%" height="15" fill="rgb(215,153,46)" fg:x="195" fg:w="7"/><text x="59.8830%" y="206.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="59.6330%" y="212" width="2.1407%" height="15" fill="rgb(224,49,31)" fg:x="195" fg:w="7"/><text x="59.8830%" y="222.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="59.6330%" y="228" width="2.1407%" height="15" fill="rgb(250,18,42)" fg:x="195" fg:w="7"/><text x="59.8830%" y="238.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="59.6330%" y="244" width="2.1407%" height="15" fill="rgb(215,176,39)" fg:x="195" fg:w="7"/><text x="59.8830%" y="254.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="59.6330%" y="260" width="2.1407%" height="15" fill="rgb(223,77,29)" fg:x="195" fg:w="7"/><text x="59.8830%" y="270.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="59.6330%" y="276" width="2.1407%" height="15" fill="rgb(234,94,52)" fg:x="195" fg:w="7"/><text x="59.8830%" y="286.50">_..</text></g><g><title><module> (pooch/core.py:7) (7 samples, 2.14%)</title><rect x="59.6330%" y="292" width="2.1407%" height="15" fill="rgb(220,154,50)" fg:x="195" fg:w="7"/><text x="59.8830%" y="302.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="59.6330%" y="308" width="2.1407%" height="15" fill="rgb(212,11,10)" fg:x="195" fg:w="7"/><text x="59.8830%" y="318.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="59.6330%" y="324" width="2.1407%" height="15" fill="rgb(205,166,19)" fg:x="195" fg:w="7"/><text x="59.8830%" y="334.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="59.6330%" y="340" width="2.1407%" height="15" fill="rgb(244,198,16)" fg:x="195" fg:w="7"/><text x="59.8830%" y="350.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="59.6330%" y="356" width="2.1407%" height="15" fill="rgb(219,69,12)" fg:x="195" fg:w="7"/><text x="59.8830%" y="366.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="59.6330%" y="372" width="2.1407%" height="15" fill="rgb(245,30,7)" fg:x="195" fg:w="7"/><text x="59.8830%" y="382.50">_..</text></g><g><title><module> (requests/__init__.py:6) (7 samples, 2.14%)</title><rect x="59.6330%" y="388" width="2.1407%" height="15" fill="rgb(218,221,48)" fg:x="195" fg:w="7"/><text x="59.8830%" y="398.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="59.6330%" y="404" width="2.1407%" height="15" fill="rgb(216,66,15)" fg:x="195" fg:w="7"/><text x="59.8830%" y="414.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="59.6330%" y="420" width="2.1407%" height="15" fill="rgb(226,122,50)" fg:x="195" fg:w="7"/><text x="59.8830%" y="430.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="59.6330%" y="436" width="2.1407%" height="15" fill="rgb(239,156,16)" fg:x="195" fg:w="7"/><text x="59.8830%" y="446.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="59.6330%" y="452" width="2.1407%" height="15" fill="rgb(224,27,38)" fg:x="195" fg:w="7"/><text x="59.8830%" y="462.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="59.6330%" y="468" width="2.1407%" height="15" fill="rgb(224,39,27)" fg:x="195" fg:w="7"/><text x="59.8830%" y="478.50">_..</text></g><g><title><module> (urllib3/__init__.py:1) (2 samples, 0.61%)</title><rect x="61.1621%" y="484" width="0.6116%" height="15" fill="rgb(215,92,29)" fg:x="200" fg:w="2"/><text x="61.4121%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.1621%" y="500" width="0.6116%" height="15" fill="rgb(207,159,16)" fg:x="200" fg:w="2"/><text x="61.4121%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.1621%" y="516" width="0.6116%" height="15" fill="rgb(238,163,47)" fg:x="200" fg:w="2"/><text x="61.4121%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="61.1621%" y="532" width="0.6116%" height="15" fill="rgb(219,91,49)" fg:x="200" fg:w="2"/><text x="61.4121%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="61.1621%" y="548" width="0.6116%" height="15" fill="rgb(227,167,31)" fg:x="200" fg:w="2"/><text x="61.4121%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.1621%" y="564" width="0.6116%" height="15" fill="rgb(234,80,54)" fg:x="200" fg:w="2"/><text x="61.4121%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (2 samples, 0.61%)</title><rect x="61.1621%" y="580" width="0.6116%" height="15" fill="rgb(212,114,2)" fg:x="200" fg:w="2"/><text x="61.4121%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.1621%" y="596" width="0.6116%" height="15" fill="rgb(234,50,24)" fg:x="200" fg:w="2"/><text x="61.4121%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.1621%" y="612" width="0.6116%" height="15" fill="rgb(221,68,8)" fg:x="200" fg:w="2"/><text x="61.4121%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.1621%" y="628" width="0.6116%" height="15" fill="rgb(254,180,31)" fg:x="200" fg:w="2"/><text x="61.4121%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.1621%" y="644" width="0.6116%" height="15" fill="rgb(247,130,50)" fg:x="200" fg:w="2"/><text x="61.4121%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.1621%" y="660" width="0.6116%" height="15" fill="rgb(211,109,4)" fg:x="200" fg:w="2"/><text x="61.4121%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="61.1621%" y="676" width="0.6116%" height="15" fill="rgb(238,50,21)" fg:x="200" fg:w="2"/><text x="61.4121%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="61.1621%" y="692" width="0.6116%" height="15" fill="rgb(225,57,45)" fg:x="200" fg:w="2"/><text x="61.4121%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.1621%" y="708" width="0.6116%" height="15" fill="rgb(209,196,50)" fg:x="200" fg:w="2"/><text x="61.4121%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (2 samples, 0.61%)</title><rect x="61.1621%" y="724" width="0.6116%" height="15" fill="rgb(242,140,13)" fg:x="200" fg:w="2"/><text x="61.4121%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.1621%" y="740" width="0.6116%" height="15" fill="rgb(217,111,7)" fg:x="200" fg:w="2"/><text x="61.4121%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.1621%" y="756" width="0.6116%" height="15" fill="rgb(253,193,51)" fg:x="200" fg:w="2"/><text x="61.4121%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="61.1621%" y="772" width="0.6116%" height="15" fill="rgb(252,70,29)" fg:x="200" fg:w="2"/><text x="61.4121%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="61.1621%" y="788" width="0.6116%" height="15" fill="rgb(232,127,12)" fg:x="200" fg:w="2"/><text x="61.4121%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.1621%" y="804" width="0.6116%" height="15" fill="rgb(211,180,21)" fg:x="200" fg:w="2"/><text x="61.4121%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (2 samples, 0.61%)</title><rect x="61.1621%" y="820" width="0.6116%" height="15" fill="rgb(229,72,13)" fg:x="200" fg:w="2"/><text x="61.4121%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.1621%" y="836" width="0.6116%" height="15" fill="rgb(240,211,49)" fg:x="200" fg:w="2"/><text x="61.4121%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.1621%" y="852" width="0.6116%" height="15" fill="rgb(219,149,40)" fg:x="200" fg:w="2"/><text x="61.4121%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="61.1621%" y="868" width="0.6116%" height="15" fill="rgb(210,127,46)" fg:x="200" fg:w="2"/><text x="61.4121%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="61.1621%" y="884" width="0.6116%" height="15" fill="rgb(220,106,7)" fg:x="200" fg:w="2"/><text x="61.4121%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.1621%" y="900" width="0.6116%" height="15" fill="rgb(249,31,22)" fg:x="200" fg:w="2"/><text x="61.4121%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (2 samples, 0.61%)</title><rect x="61.1621%" y="916" width="0.6116%" height="15" fill="rgb(253,1,49)" fg:x="200" fg:w="2"/><text x="61.4121%" y="926.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.61%)</title><rect x="61.1621%" y="932" width="0.6116%" height="15" fill="rgb(227,144,33)" fg:x="200" fg:w="2"/><text x="61.4121%" y="942.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.61%)</title><rect x="61.1621%" y="948" width="0.6116%" height="15" fill="rgb(249,163,44)" fg:x="200" fg:w="2"/><text x="61.4121%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.61%)</title><rect x="61.1621%" y="964" width="0.6116%" height="15" fill="rgb(234,15,39)" fg:x="200" fg:w="2"/><text x="61.4121%" y="974.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.31%)</title><rect x="61.4679%" y="980" width="0.3058%" height="15" fill="rgb(207,66,16)" fg:x="201" fg:w="1"/><text x="61.7179%" y="990.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="61.4679%" y="996" width="0.3058%" height="15" fill="rgb(233,112,24)" fg:x="201" fg:w="1"/><text x="61.7179%" y="1006.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="61.4679%" y="1012" width="0.3058%" height="15" fill="rgb(230,90,22)" fg:x="201" fg:w="1"/><text x="61.7179%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="61.4679%" y="1028" width="0.3058%" height="15" fill="rgb(229,61,13)" fg:x="201" fg:w="1"/><text x="61.7179%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.31%)</title><rect x="61.4679%" y="1044" width="0.3058%" height="15" fill="rgb(225,57,24)" fg:x="201" fg:w="1"/><text x="61.7179%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.31%)</title><rect x="61.4679%" y="1060" width="0.3058%" height="15" fill="rgb(208,169,48)" fg:x="201" fg:w="1"/><text x="61.7179%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="61.7737%" y="532" width="0.3058%" height="15" fill="rgb(244,218,51)" fg:x="202" fg:w="1"/><text x="62.0237%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="61.7737%" y="548" width="0.3058%" height="15" fill="rgb(214,148,10)" fg:x="202" fg:w="1"/><text x="62.0237%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="61.7737%" y="564" width="0.3058%" height="15" fill="rgb(225,174,27)" fg:x="202" fg:w="1"/><text x="62.0237%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="61.7737%" y="580" width="0.3058%" height="15" fill="rgb(230,96,26)" fg:x="202" fg:w="1"/><text x="62.0237%" y="590.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="61.7737%" y="596" width="0.3058%" height="15" fill="rgb(232,10,30)" fg:x="202" fg:w="1"/><text x="62.0237%" y="606.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="61.7737%" y="612" width="0.3058%" height="15" fill="rgb(222,8,50)" fg:x="202" fg:w="1"/><text x="62.0237%" y="622.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.31%)</title><rect x="62.6911%" y="1236" width="0.3058%" height="15" fill="rgb(213,81,27)" fg:x="205" fg:w="1"/><text x="62.9411%" y="1246.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.31%)</title><rect x="62.6911%" y="1252" width="0.3058%" height="15" fill="rgb(245,50,10)" fg:x="205" fg:w="1"/><text x="62.9411%" y="1262.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.31%)</title><rect x="62.6911%" y="1268" width="0.3058%" height="15" fill="rgb(216,100,18)" fg:x="205" fg:w="1"/><text x="62.9411%" y="1278.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.31%)</title><rect x="62.6911%" y="1284" width="0.3058%" height="15" fill="rgb(236,147,54)" fg:x="205" fg:w="1"/><text x="62.9411%" y="1294.50"></text></g><g><title><module> (pyparsing/common.py:2) (1 samples, 0.31%)</title><rect x="63.3028%" y="1284" width="0.3058%" height="15" fill="rgb(205,143,26)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1294.50"></text></g><g><title>pyparsing_common (pyparsing/common.py:8) (1 samples, 0.31%)</title><rect x="63.3028%" y="1300" width="0.3058%" height="15" fill="rgb(236,26,9)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1310.50"></text></g><g><title>__mul__ (pyparsing/core.py:1479) (1 samples, 0.31%)</title><rect x="63.3028%" y="1316" width="0.3058%" height="15" fill="rgb(221,165,53)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1326.50"></text></g><g><title>makeOptionalList (pyparsing/core.py:1538) (1 samples, 0.31%)</title><rect x="63.3028%" y="1332" width="0.3058%" height="15" fill="rgb(214,110,17)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1342.50"></text></g><g><title>makeOptionalList (pyparsing/core.py:1538) (1 samples, 0.31%)</title><rect x="63.3028%" y="1348" width="0.3058%" height="15" fill="rgb(237,197,12)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1358.50"></text></g><g><title>makeOptionalList (pyparsing/core.py:1538) (1 samples, 0.31%)</title><rect x="63.3028%" y="1364" width="0.3058%" height="15" fill="rgb(205,84,17)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1374.50"></text></g><g><title>makeOptionalList (pyparsing/core.py:1538) (1 samples, 0.31%)</title><rect x="63.3028%" y="1380" width="0.3058%" height="15" fill="rgb(237,18,45)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1390.50"></text></g><g><title>makeOptionalList (pyparsing/core.py:1538) (1 samples, 0.31%)</title><rect x="63.3028%" y="1396" width="0.3058%" height="15" fill="rgb(221,87,14)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1406.50"></text></g><g><title>__add__ (pyparsing/core.py:1410) (1 samples, 0.31%)</title><rect x="63.3028%" y="1412" width="0.3058%" height="15" fill="rgb(238,186,15)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1422.50"></text></g><g><title>__init__ (pyparsing/core.py:3948) (1 samples, 0.31%)</title><rect x="63.3028%" y="1428" width="0.3058%" height="15" fill="rgb(208,115,11)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1438.50"></text></g><g><title>__init__ (pyparsing/core.py:3754) (1 samples, 0.31%)</title><rect x="63.3028%" y="1444" width="0.3058%" height="15" fill="rgb(254,175,0)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1454.50"></text></g><g><title>__init__ (pyparsing/core.py:461) (1 samples, 0.31%)</title><rect x="63.3028%" y="1460" width="0.3058%" height="15" fill="rgb(227,24,42)" fg:x="207" fg:w="1"/><text x="63.5528%" y="1470.50"></text></g><g><title><module> (pyparsing/testing.py:3) (1 samples, 0.31%)</title><rect x="63.6086%" y="1284" width="0.3058%" height="15" fill="rgb(223,211,37)" fg:x="208" fg:w="1"/><text x="63.8586%" y="1294.50"></text></g><g><title>pyparsing_test (pyparsing/testing.py:15) (1 samples, 0.31%)</title><rect x="63.6086%" y="1300" width="0.3058%" height="15" fill="rgb(235,49,27)" fg:x="208" fg:w="1"/><text x="63.8586%" y="1310.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.83%)</title><rect x="62.3853%" y="980" width="1.8349%" height="15" fill="rgb(254,97,51)" fg:x="204" fg:w="6"/><text x="62.6353%" y="990.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="62.3853%" y="996" width="1.8349%" height="15" fill="rgb(249,51,40)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1006.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="62.3853%" y="1012" width="1.8349%" height="15" fill="rgb(210,128,45)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1022.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="62.3853%" y="1028" width="1.8349%" height="15" fill="rgb(224,137,50)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1038.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="62.3853%" y="1044" width="1.8349%" height="15" fill="rgb(242,15,9)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1054.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="62.3853%" y="1060" width="1.8349%" height="15" fill="rgb(233,187,41)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1070.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="62.3853%" y="1076" width="1.8349%" height="15" fill="rgb(227,2,29)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1086.50">_..</text></g><g><title><module> (httplib2/auth.py:1) (6 samples, 1.83%)</title><rect x="62.3853%" y="1092" width="1.8349%" height="15" fill="rgb(222,70,3)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1102.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="62.3853%" y="1108" width="1.8349%" height="15" fill="rgb(213,11,42)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1118.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="62.3853%" y="1124" width="1.8349%" height="15" fill="rgb(225,150,9)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1134.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="62.3853%" y="1140" width="1.8349%" height="15" fill="rgb(230,162,45)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1150.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="62.3853%" y="1156" width="1.8349%" height="15" fill="rgb(222,14,52)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1166.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="62.3853%" y="1172" width="1.8349%" height="15" fill="rgb(254,198,14)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1182.50">_..</text></g><g><title><module> (pyparsing/__init__.py:25) (6 samples, 1.83%)</title><rect x="62.3853%" y="1188" width="1.8349%" height="15" fill="rgb(220,217,30)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1198.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="62.3853%" y="1204" width="1.8349%" height="15" fill="rgb(215,146,41)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1214.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="62.3853%" y="1220" width="1.8349%" height="15" fill="rgb(217,27,36)" fg:x="204" fg:w="6"/><text x="62.6353%" y="1230.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="62.9969%" y="1236" width="1.2232%" height="15" fill="rgb(219,218,39)" fg:x="206" fg:w="4"/><text x="63.2469%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.92%)</title><rect x="63.3028%" y="1252" width="0.9174%" height="15" fill="rgb(219,4,42)" fg:x="207" fg:w="3"/><text x="63.5528%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.92%)</title><rect x="63.3028%" y="1268" width="0.9174%" height="15" fill="rgb(249,119,36)" fg:x="207" fg:w="3"/><text x="63.5528%" y="1278.50"></text></g><g><title><module> (pyparsing/util.py:2) (1 samples, 0.31%)</title><rect x="63.9144%" y="1284" width="0.3058%" height="15" fill="rgb(209,23,33)" fg:x="209" fg:w="1"/><text x="64.1644%" y="1294.50"></text></g><g><title>__init__ (typing.py:628) (1 samples, 0.31%)</title><rect x="63.9144%" y="1300" width="0.3058%" height="15" fill="rgb(211,10,0)" fg:x="209" fg:w="1"/><text x="64.1644%" y="1310.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.31%)</title><rect x="63.9144%" y="1316" width="0.3058%" height="15" fill="rgb(208,99,37)" fg:x="209" fg:w="1"/><text x="64.1644%" y="1326.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.31%)</title><rect x="63.9144%" y="1332" width="0.3058%" height="15" fill="rgb(213,132,31)" fg:x="209" fg:w="1"/><text x="64.1644%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="62.3853%" y="788" width="2.1407%" height="15" fill="rgb(243,129,40)" fg:x="204" fg:w="7"/><text x="62.6353%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="62.3853%" y="804" width="2.1407%" height="15" fill="rgb(210,66,33)" fg:x="204" fg:w="7"/><text x="62.6353%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="62.3853%" y="820" width="2.1407%" height="15" fill="rgb(209,189,4)" fg:x="204" fg:w="7"/><text x="62.6353%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="62.3853%" y="836" width="2.1407%" height="15" fill="rgb(214,107,37)" fg:x="204" fg:w="7"/><text x="62.6353%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="62.3853%" y="852" width="2.1407%" height="15" fill="rgb(245,88,54)" fg:x="204" fg:w="7"/><text x="62.6353%" y="862.50">_..</text></g><g><title><module> (google_auth_httplib2.py:15) (7 samples, 2.14%)</title><rect x="62.3853%" y="868" width="2.1407%" height="15" fill="rgb(205,146,20)" fg:x="204" fg:w="7"/><text x="62.6353%" y="878.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.14%)</title><rect x="62.3853%" y="884" width="2.1407%" height="15" fill="rgb(220,161,25)" fg:x="204" fg:w="7"/><text x="62.6353%" y="894.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.14%)</title><rect x="62.3853%" y="900" width="2.1407%" height="15" fill="rgb(215,152,15)" fg:x="204" fg:w="7"/><text x="62.6353%" y="910.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.14%)</title><rect x="62.3853%" y="916" width="2.1407%" height="15" fill="rgb(233,192,44)" fg:x="204" fg:w="7"/><text x="62.6353%" y="926.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.14%)</title><rect x="62.3853%" y="932" width="2.1407%" height="15" fill="rgb(240,170,46)" fg:x="204" fg:w="7"/><text x="62.6353%" y="942.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="62.3853%" y="948" width="2.1407%" height="15" fill="rgb(207,104,33)" fg:x="204" fg:w="7"/><text x="62.6353%" y="958.50">_..</text></g><g><title><module> (httplib2/__init__.py:2) (7 samples, 2.14%)</title><rect x="62.3853%" y="964" width="2.1407%" height="15" fill="rgb(219,21,39)" fg:x="204" fg:w="7"/><text x="62.6353%" y="974.50"><..</text></g><g><title>compile (re.py:250) (1 samples, 0.31%)</title><rect x="64.2202%" y="980" width="0.3058%" height="15" fill="rgb(214,133,29)" fg:x="210" fg:w="1"/><text x="64.4702%" y="990.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.31%)</title><rect x="64.2202%" y="996" width="0.3058%" height="15" fill="rgb(226,93,6)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1006.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.31%)</title><rect x="64.2202%" y="1012" width="0.3058%" height="15" fill="rgb(252,222,34)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1022.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.31%)</title><rect x="64.2202%" y="1028" width="0.3058%" height="15" fill="rgb(252,92,48)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1038.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="64.2202%" y="1044" width="0.3058%" height="15" fill="rgb(245,223,24)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1054.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="64.2202%" y="1060" width="0.3058%" height="15" fill="rgb(205,176,3)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1070.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="64.2202%" y="1076" width="0.3058%" height="15" fill="rgb(235,151,15)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1086.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="64.2202%" y="1092" width="0.3058%" height="15" fill="rgb(237,209,11)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1102.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.31%)</title><rect x="64.2202%" y="1108" width="0.3058%" height="15" fill="rgb(243,227,24)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1118.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.31%)</title><rect x="64.2202%" y="1124" width="0.3058%" height="15" fill="rgb(239,193,16)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1134.50"></text></g><g><title>_mk_bitmap (sre_compile.py:435) (1 samples, 0.31%)</title><rect x="64.2202%" y="1140" width="0.3058%" height="15" fill="rgb(231,27,9)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1150.50"></text></g><g><title><listcomp> (sre_compile.py:437) (1 samples, 0.31%)</title><rect x="64.2202%" y="1156" width="0.3058%" height="15" fill="rgb(219,169,10)" fg:x="210" fg:w="1"/><text x="64.4702%" y="1166.50"></text></g><g><title>__computeAmbiguousTypes (pyasn1/type/namedtype.py:269) (1 samples, 0.31%)</title><rect x="64.5260%" y="1684" width="0.3058%" height="15" fill="rgb(244,229,43)" fg:x="211" fg:w="1"/><text x="64.7760%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.31%)</title><rect x="64.5260%" y="1700" width="0.3058%" height="15" fill="rgb(254,38,20)" fg:x="211" fg:w="1"/><text x="64.7760%" y="1710.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.31%)</title><rect x="64.5260%" y="1716" width="0.3058%" height="15" fill="rgb(250,47,30)" fg:x="211" fg:w="1"/><text x="64.7760%" y="1726.50"></text></g><g><title>TBSCertificate (pyasn1_modules/rfc2459.py:1233) (2 samples, 0.61%)</title><rect x="64.5260%" y="1652" width="0.6116%" height="15" fill="rgb(224,124,36)" fg:x="211" fg:w="2"/><text x="64.7760%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (2 samples, 0.61%)</title><rect x="64.5260%" y="1668" width="0.6116%" height="15" fill="rgb(246,68,51)" fg:x="211" fg:w="2"/><text x="64.7760%" y="1678.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.31%)</title><rect x="64.8318%" y="1684" width="0.3058%" height="15" fill="rgb(253,43,49)" fg:x="212" fg:w="1"/><text x="65.0818%" y="1694.50"></text></g><g><title>__repr__ (pyasn1/type/tag.py:196) (1 samples, 0.31%)</title><rect x="64.8318%" y="1700" width="0.3058%" height="15" fill="rgb(219,54,36)" fg:x="212" fg:w="1"/><text x="65.0818%" y="1710.50"></text></g><g><title><listcomp> (pyasn1/type/tag.py:197) (1 samples, 0.31%)</title><rect x="64.8318%" y="1716" width="0.3058%" height="15" fill="rgb(227,133,34)" fg:x="212" fg:w="1"/><text x="65.0818%" y="1726.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (3 samples, 0.92%)</title><rect x="64.5260%" y="1636" width="0.9174%" height="15" fill="rgb(247,227,15)" fg:x="211" fg:w="3"/><text x="64.7760%" y="1646.50"></text></g><g><title>X520name (pyasn1_modules/rfc2459.py:108) (1 samples, 0.31%)</title><rect x="65.1376%" y="1652" width="0.3058%" height="15" fill="rgb(229,96,14)" fg:x="213" fg:w="1"/><text x="65.3876%" y="1662.50"></text></g><g><title>subtype (pyasn1/type/base.py:377) (1 samples, 0.31%)</title><rect x="65.1376%" y="1668" width="0.3058%" height="15" fill="rgb(220,79,17)" fg:x="213" fg:w="1"/><text x="65.3876%" y="1678.50"></text></g><g><title>__add__ (pyasn1/type/constraint.py:637) (1 samples, 0.31%)</title><rect x="65.1376%" y="1684" width="0.3058%" height="15" fill="rgb(205,131,53)" fg:x="213" fg:w="1"/><text x="65.3876%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/constraint.py:22) (1 samples, 0.31%)</title><rect x="65.1376%" y="1700" width="0.3058%" height="15" fill="rgb(209,50,29)" fg:x="213" fg:w="1"/><text x="65.3876%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="64.5260%" y="1556" width="1.2232%" height="15" fill="rgb(245,86,46)" fg:x="211" fg:w="4"/><text x="64.7760%" y="1566.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="64.5260%" y="1572" width="1.2232%" height="15" fill="rgb(235,66,46)" fg:x="211" fg:w="4"/><text x="64.7760%" y="1582.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="64.5260%" y="1588" width="1.2232%" height="15" fill="rgb(232,148,31)" fg:x="211" fg:w="4"/><text x="64.7760%" y="1598.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="64.5260%" y="1604" width="1.2232%" height="15" fill="rgb(217,149,8)" fg:x="211" fg:w="4"/><text x="64.7760%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="64.5260%" y="1620" width="1.2232%" height="15" fill="rgb(209,183,11)" fg:x="211" fg:w="4"/><text x="64.7760%" y="1630.50"></text></g><g><title><module> (rsa/__init__.py:14) (1 samples, 0.31%)</title><rect x="65.4434%" y="1636" width="0.3058%" height="15" fill="rgb(208,55,20)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="65.4434%" y="1652" width="0.3058%" height="15" fill="rgb(218,39,14)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="65.4434%" y="1668" width="0.3058%" height="15" fill="rgb(216,169,33)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="65.4434%" y="1684" width="0.3058%" height="15" fill="rgb(233,80,24)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="65.4434%" y="1700" width="0.3058%" height="15" fill="rgb(213,179,31)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="65.4434%" y="1716" width="0.3058%" height="15" fill="rgb(209,19,5)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1726.50"></text></g><g><title><module> (rsa/key.py:15) (1 samples, 0.31%)</title><rect x="65.4434%" y="1732" width="0.3058%" height="15" fill="rgb(219,18,35)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1742.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="65.4434%" y="1748" width="0.3058%" height="15" fill="rgb(209,169,16)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="65.4434%" y="1764" width="0.3058%" height="15" fill="rgb(245,90,51)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1774.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="65.4434%" y="1780" width="0.3058%" height="15" fill="rgb(220,99,45)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1790.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="65.4434%" y="1796" width="0.3058%" height="15" fill="rgb(249,89,25)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="65.4434%" y="1812" width="0.3058%" height="15" fill="rgb(239,193,0)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1822.50"></text></g><g><title><module> (rsa/prime.py:15) (1 samples, 0.31%)</title><rect x="65.4434%" y="1828" width="0.3058%" height="15" fill="rgb(231,126,1)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="65.4434%" y="1844" width="0.3058%" height="15" fill="rgb(243,166,3)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="65.4434%" y="1860" width="0.3058%" height="15" fill="rgb(223,22,34)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="65.4434%" y="1876" width="0.3058%" height="15" fill="rgb(251,52,51)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="65.4434%" y="1892" width="0.3058%" height="15" fill="rgb(221,165,28)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1902.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="65.4434%" y="1908" width="0.3058%" height="15" fill="rgb(218,121,47)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1918.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="65.4434%" y="1924" width="0.3058%" height="15" fill="rgb(209,120,9)" fg:x="214" fg:w="1"/><text x="65.6934%" y="1934.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="65.7492%" y="2052" width="0.3058%" height="15" fill="rgb(236,68,12)" fg:x="215" fg:w="1"/><text x="65.9992%" y="2062.50"></text></g><g><title><module> (auth/_service_account_info.py:15) (6 samples, 1.83%)</title><rect x="64.5260%" y="1156" width="1.8349%" height="15" fill="rgb(225,194,26)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1166.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.83%)</title><rect x="64.5260%" y="1172" width="1.8349%" height="15" fill="rgb(231,84,39)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1182.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1188" width="1.8349%" height="15" fill="rgb(210,11,45)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1198.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="64.5260%" y="1204" width="1.8349%" height="15" fill="rgb(224,54,52)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1214.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="64.5260%" y="1220" width="1.8349%" height="15" fill="rgb(238,102,14)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1230.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="64.5260%" y="1236" width="1.8349%" height="15" fill="rgb(243,160,52)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1246.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="64.5260%" y="1252" width="1.8349%" height="15" fill="rgb(216,114,19)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1262.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1268" width="1.8349%" height="15" fill="rgb(244,166,37)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1278.50">_..</text></g><g><title><module> (auth/crypt/__init__.py:15) (6 samples, 1.83%)</title><rect x="64.5260%" y="1284" width="1.8349%" height="15" fill="rgb(246,29,44)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1294.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.83%)</title><rect x="64.5260%" y="1300" width="1.8349%" height="15" fill="rgb(215,56,53)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1310.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1316" width="1.8349%" height="15" fill="rgb(217,60,2)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1326.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="64.5260%" y="1332" width="1.8349%" height="15" fill="rgb(207,26,24)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1342.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="64.5260%" y="1348" width="1.8349%" height="15" fill="rgb(252,210,15)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1358.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="64.5260%" y="1364" width="1.8349%" height="15" fill="rgb(253,209,26)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1374.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="64.5260%" y="1380" width="1.8349%" height="15" fill="rgb(238,170,14)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1390.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1396" width="1.8349%" height="15" fill="rgb(216,178,15)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1406.50">_..</text></g><g><title><module> (auth/crypt/rsa.py:15) (6 samples, 1.83%)</title><rect x="64.5260%" y="1412" width="1.8349%" height="15" fill="rgb(250,197,2)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1422.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.83%)</title><rect x="64.5260%" y="1428" width="1.8349%" height="15" fill="rgb(212,70,42)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1438.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1444" width="1.8349%" height="15" fill="rgb(227,213,9)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1454.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.83%)</title><rect x="64.5260%" y="1460" width="1.8349%" height="15" fill="rgb(245,99,25)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1470.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.83%)</title><rect x="64.5260%" y="1476" width="1.8349%" height="15" fill="rgb(250,82,29)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1486.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.83%)</title><rect x="64.5260%" y="1492" width="1.8349%" height="15" fill="rgb(241,226,54)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1502.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.83%)</title><rect x="64.5260%" y="1508" width="1.8349%" height="15" fill="rgb(221,99,41)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1518.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.83%)</title><rect x="64.5260%" y="1524" width="1.8349%" height="15" fill="rgb(213,90,21)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1534.50">_..</text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (6 samples, 1.83%)</title><rect x="64.5260%" y="1540" width="1.8349%" height="15" fill="rgb(205,208,24)" fg:x="211" fg:w="6"/><text x="64.7760%" y="1550.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="65.7492%" y="1556" width="0.6116%" height="15" fill="rgb(246,31,12)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1572" width="0.6116%" height="15" fill="rgb(213,154,6)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="65.7492%" y="1588" width="0.6116%" height="15" fill="rgb(222,163,29)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="65.7492%" y="1604" width="0.6116%" height="15" fill="rgb(227,201,8)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="65.7492%" y="1620" width="0.6116%" height="15" fill="rgb(233,9,32)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="65.7492%" y="1636" width="0.6116%" height="15" fill="rgb(217,54,24)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1652" width="0.6116%" height="15" fill="rgb(235,192,0)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1662.50"></text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (2 samples, 0.61%)</title><rect x="65.7492%" y="1668" width="0.6116%" height="15" fill="rgb(235,45,9)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="65.7492%" y="1684" width="0.6116%" height="15" fill="rgb(246,42,40)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1700" width="0.6116%" height="15" fill="rgb(248,111,24)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="65.7492%" y="1716" width="0.6116%" height="15" fill="rgb(249,65,22)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="65.7492%" y="1732" width="0.6116%" height="15" fill="rgb(238,111,51)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="65.7492%" y="1748" width="0.6116%" height="15" fill="rgb(250,118,22)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="65.7492%" y="1764" width="0.6116%" height="15" fill="rgb(234,84,26)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1780" width="0.6116%" height="15" fill="rgb(243,172,12)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1790.50"></text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (2 samples, 0.61%)</title><rect x="65.7492%" y="1796" width="0.6116%" height="15" fill="rgb(236,150,49)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1806.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="65.7492%" y="1812" width="0.6116%" height="15" fill="rgb(225,197,26)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1828" width="0.6116%" height="15" fill="rgb(214,17,42)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="65.7492%" y="1844" width="0.6116%" height="15" fill="rgb(224,165,40)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="65.7492%" y="1860" width="0.6116%" height="15" fill="rgb(246,100,4)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="65.7492%" y="1876" width="0.6116%" height="15" fill="rgb(222,103,0)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="65.7492%" y="1892" width="0.6116%" height="15" fill="rgb(227,189,26)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1908" width="0.6116%" height="15" fill="rgb(214,202,17)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1918.50"></text></g><g><title><module> (pyasn1/codec/ber/decoder.py:7) (2 samples, 0.61%)</title><rect x="65.7492%" y="1924" width="0.6116%" height="15" fill="rgb(229,111,3)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="65.7492%" y="1940" width="0.6116%" height="15" fill="rgb(229,172,15)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.7492%" y="1956" width="0.6116%" height="15" fill="rgb(230,224,35)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="65.7492%" y="1972" width="0.6116%" height="15" fill="rgb(251,141,6)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="65.7492%" y="1988" width="0.6116%" height="15" fill="rgb(225,208,6)" fg:x="215" fg:w="2"/><text x="65.9992%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="65.7492%" y="2004" width="0.6116%" height="15" fill="rgb(246,181,16)" fg:x="215" fg:w="2"/><text x="65.9992%" y="2014.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="65.7492%" y="2020" width="0.6116%" height="15" fill="rgb(227,129,36)" fg:x="215" fg:w="2"/><text x="65.9992%" y="2030.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="65.7492%" y="2036" width="0.6116%" height="15" fill="rgb(248,117,24)" fg:x="215" fg:w="2"/><text x="65.9992%" y="2046.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="66.0550%" y="2052" width="0.3058%" height="15" fill="rgb(214,185,35)" fg:x="216" fg:w="1"/><text x="66.3050%" y="2062.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.14%)</title><rect x="64.5260%" y="1140" width="2.1407%" height="15" fill="rgb(236,150,34)" fg:x="211" fg:w="7"/><text x="64.7760%" y="1150.50">_..</text></g><g><title><module> (auth/jwt.py:15) (1 samples, 0.31%)</title><rect x="66.3609%" y="1156" width="0.3058%" height="15" fill="rgb(243,228,27)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="66.3609%" y="1172" width="0.3058%" height="15" fill="rgb(245,77,44)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="66.3609%" y="1188" width="0.3058%" height="15" fill="rgb(235,214,42)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="66.3609%" y="1204" width="0.3058%" height="15" fill="rgb(221,74,3)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="66.3609%" y="1220" width="0.3058%" height="15" fill="rgb(206,121,29)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="66.3609%" y="1236" width="0.3058%" height="15" fill="rgb(249,131,53)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1246.50"></text></g><g><title><module> (cachetools/__init__.py:1) (1 samples, 0.31%)</title><rect x="66.3609%" y="1252" width="0.3058%" height="15" fill="rgb(236,170,29)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1262.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="66.3609%" y="1268" width="0.3058%" height="15" fill="rgb(247,96,15)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="66.3609%" y="1284" width="0.3058%" height="15" fill="rgb(211,210,7)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="66.3609%" y="1300" width="0.3058%" height="15" fill="rgb(240,88,50)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="66.3609%" y="1316" width="0.3058%" height="15" fill="rgb(209,229,26)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="66.3609%" y="1332" width="0.3058%" height="15" fill="rgb(210,68,23)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="66.3609%" y="1348" width="0.3058%" height="15" fill="rgb(229,180,13)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1358.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="66.3609%" y="1364" width="0.3058%" height="15" fill="rgb(236,53,44)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1374.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="66.3609%" y="1380" width="0.3058%" height="15" fill="rgb(244,214,29)" fg:x="217" fg:w="1"/><text x="66.6109%" y="1390.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.45%)</title><rect x="64.5260%" y="788" width="2.4465%" height="15" fill="rgb(220,75,29)" fg:x="211" fg:w="8"/><text x="64.7760%" y="798.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="64.5260%" y="804" width="2.4465%" height="15" fill="rgb(214,183,37)" fg:x="211" fg:w="8"/><text x="64.7760%" y="814.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="64.5260%" y="820" width="2.4465%" height="15" fill="rgb(239,117,29)" fg:x="211" fg:w="8"/><text x="64.7760%" y="830.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="64.5260%" y="836" width="2.4465%" height="15" fill="rgb(237,171,35)" fg:x="211" fg:w="8"/><text x="64.7760%" y="846.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="64.5260%" y="852" width="2.4465%" height="15" fill="rgb(229,178,53)" fg:x="211" fg:w="8"/><text x="64.7760%" y="862.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="64.5260%" y="868" width="2.4465%" height="15" fill="rgb(210,102,19)" fg:x="211" fg:w="8"/><text x="64.7760%" y="878.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="64.5260%" y="884" width="2.4465%" height="15" fill="rgb(235,127,22)" fg:x="211" fg:w="8"/><text x="64.7760%" y="894.50">_c..</text></g><g><title><module> (googleapiclient/discovery.py:15) (8 samples, 2.45%)</title><rect x="64.5260%" y="900" width="2.4465%" height="15" fill="rgb(244,31,31)" fg:x="211" fg:w="8"/><text x="64.7760%" y="910.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.45%)</title><rect x="64.5260%" y="916" width="2.4465%" height="15" fill="rgb(231,43,21)" fg:x="211" fg:w="8"/><text x="64.7760%" y="926.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="64.5260%" y="932" width="2.4465%" height="15" fill="rgb(217,131,35)" fg:x="211" fg:w="8"/><text x="64.7760%" y="942.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="64.5260%" y="948" width="2.4465%" height="15" fill="rgb(221,149,4)" fg:x="211" fg:w="8"/><text x="64.7760%" y="958.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="64.5260%" y="964" width="2.4465%" height="15" fill="rgb(232,170,28)" fg:x="211" fg:w="8"/><text x="64.7760%" y="974.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="64.5260%" y="980" width="2.4465%" height="15" fill="rgb(238,56,10)" fg:x="211" fg:w="8"/><text x="64.7760%" y="990.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="64.5260%" y="996" width="2.4465%" height="15" fill="rgb(235,196,14)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1006.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="64.5260%" y="1012" width="2.4465%" height="15" fill="rgb(216,45,48)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1022.50">_c..</text></g><g><title><module> (oauth2/service_account.py:15) (8 samples, 2.45%)</title><rect x="64.5260%" y="1028" width="2.4465%" height="15" fill="rgb(238,213,17)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1038.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.45%)</title><rect x="64.5260%" y="1044" width="2.4465%" height="15" fill="rgb(212,13,2)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1054.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.45%)</title><rect x="64.5260%" y="1060" width="2.4465%" height="15" fill="rgb(240,114,20)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1070.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.45%)</title><rect x="64.5260%" y="1076" width="2.4465%" height="15" fill="rgb(228,41,40)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1086.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.45%)</title><rect x="64.5260%" y="1092" width="2.4465%" height="15" fill="rgb(244,132,35)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1102.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.45%)</title><rect x="64.5260%" y="1108" width="2.4465%" height="15" fill="rgb(253,189,4)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1118.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.45%)</title><rect x="64.5260%" y="1124" width="2.4465%" height="15" fill="rgb(224,37,19)" fg:x="211" fg:w="8"/><text x="64.7760%" y="1134.50">ex..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="66.6667%" y="1140" width="0.3058%" height="15" fill="rgb(235,223,18)" fg:x="218" fg:w="1"/><text x="66.9167%" y="1150.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.31%)</title><rect x="66.6667%" y="1156" width="0.3058%" height="15" fill="rgb(235,163,25)" fg:x="218" fg:w="1"/><text x="66.9167%" y="1166.50"></text></g><g><title><module> (ee/_cloud_api_utils.py:1) (17 samples, 5.20%)</title><rect x="62.0795%" y="772" width="5.1988%" height="15" fill="rgb(217,145,28)" fg:x="203" fg:w="17"/><text x="62.3295%" y="782.50"><modul..</text></g><g><title>inner (typing.py:271) (1 samples, 0.31%)</title><rect x="66.9725%" y="788" width="0.3058%" height="15" fill="rgb(223,223,32)" fg:x="219" fg:w="1"/><text x="67.2225%" y="798.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.31%)</title><rect x="66.9725%" y="804" width="0.3058%" height="15" fill="rgb(227,189,39)" fg:x="219" fg:w="1"/><text x="67.2225%" y="814.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.31%)</title><rect x="66.9725%" y="820" width="0.3058%" height="15" fill="rgb(248,10,22)" fg:x="219" fg:w="1"/><text x="67.2225%" y="830.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.31%)</title><rect x="66.9725%" y="836" width="0.3058%" height="15" fill="rgb(248,46,39)" fg:x="219" fg:w="1"/><text x="67.2225%" y="846.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.31%)</title><rect x="66.9725%" y="852" width="0.3058%" height="15" fill="rgb(248,113,48)" fg:x="219" fg:w="1"/><text x="67.2225%" y="862.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.31%)</title><rect x="66.9725%" y="868" width="0.3058%" height="15" fill="rgb(245,16,25)" fg:x="219" fg:w="1"/><text x="67.2225%" y="878.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.31%)</title><rect x="66.9725%" y="884" width="0.3058%" height="15" fill="rgb(249,152,16)" fg:x="219" fg:w="1"/><text x="67.2225%" y="894.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.31%)</title><rect x="66.9725%" y="900" width="0.3058%" height="15" fill="rgb(250,16,1)" fg:x="219" fg:w="1"/><text x="67.2225%" y="910.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.31%)</title><rect x="66.9725%" y="916" width="0.3058%" height="15" fill="rgb(249,138,3)" fg:x="219" fg:w="1"/><text x="67.2225%" y="926.50"></text></g><g><title><module> (ee/__init__.py:1) (19 samples, 5.81%)</title><rect x="61.7737%" y="516" width="5.8104%" height="15" fill="rgb(227,71,41)" fg:x="202" fg:w="19"/><text x="62.0237%" y="526.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (18 samples, 5.50%)</title><rect x="62.0795%" y="532" width="5.5046%" height="15" fill="rgb(209,184,23)" fg:x="203" fg:w="18"/><text x="62.3295%" y="542.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 5.50%)</title><rect x="62.0795%" y="548" width="5.5046%" height="15" fill="rgb(223,215,31)" fg:x="203" fg:w="18"/><text x="62.3295%" y="558.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 5.50%)</title><rect x="62.0795%" y="564" width="5.5046%" height="15" fill="rgb(210,146,28)" fg:x="203" fg:w="18"/><text x="62.3295%" y="574.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 5.50%)</title><rect x="62.0795%" y="580" width="5.5046%" height="15" fill="rgb(209,183,41)" fg:x="203" fg:w="18"/><text x="62.3295%" y="590.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 5.50%)</title><rect x="62.0795%" y="596" width="5.5046%" height="15" fill="rgb(209,224,45)" fg:x="203" fg:w="18"/><text x="62.3295%" y="606.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 5.50%)</title><rect x="62.0795%" y="612" width="5.5046%" height="15" fill="rgb(224,209,51)" fg:x="203" fg:w="18"/><text x="62.3295%" y="622.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 5.50%)</title><rect x="62.0795%" y="628" width="5.5046%" height="15" fill="rgb(223,17,39)" fg:x="203" fg:w="18"/><text x="62.3295%" y="638.50">_call_w..</text></g><g><title><module> (ee/batch.py:1) (18 samples, 5.50%)</title><rect x="62.0795%" y="644" width="5.5046%" height="15" fill="rgb(234,204,37)" fg:x="203" fg:w="18"/><text x="62.3295%" y="654.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (18 samples, 5.50%)</title><rect x="62.0795%" y="660" width="5.5046%" height="15" fill="rgb(236,120,5)" fg:x="203" fg:w="18"/><text x="62.3295%" y="670.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 5.50%)</title><rect x="62.0795%" y="676" width="5.5046%" height="15" fill="rgb(248,97,27)" fg:x="203" fg:w="18"/><text x="62.3295%" y="686.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 5.50%)</title><rect x="62.0795%" y="692" width="5.5046%" height="15" fill="rgb(240,66,17)" fg:x="203" fg:w="18"/><text x="62.3295%" y="702.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 5.50%)</title><rect x="62.0795%" y="708" width="5.5046%" height="15" fill="rgb(210,79,3)" fg:x="203" fg:w="18"/><text x="62.3295%" y="718.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 5.50%)</title><rect x="62.0795%" y="724" width="5.5046%" height="15" fill="rgb(214,176,27)" fg:x="203" fg:w="18"/><text x="62.3295%" y="734.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 5.50%)</title><rect x="62.0795%" y="740" width="5.5046%" height="15" fill="rgb(235,185,3)" fg:x="203" fg:w="18"/><text x="62.3295%" y="750.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 5.50%)</title><rect x="62.0795%" y="756" width="5.5046%" height="15" fill="rgb(227,24,12)" fg:x="203" fg:w="18"/><text x="62.3295%" y="766.50">_call_w..</text></g><g><title><module> (ee/data.py:1) (1 samples, 0.31%)</title><rect x="67.2783%" y="772" width="0.3058%" height="15" fill="rgb(252,169,48)" fg:x="220" fg:w="1"/><text x="67.5283%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="67.2783%" y="788" width="0.3058%" height="15" fill="rgb(212,65,1)" fg:x="220" fg:w="1"/><text x="67.5283%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="67.2783%" y="804" width="0.3058%" height="15" fill="rgb(242,39,24)" fg:x="220" fg:w="1"/><text x="67.5283%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="67.2783%" y="820" width="0.3058%" height="15" fill="rgb(249,32,23)" fg:x="220" fg:w="1"/><text x="67.5283%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="67.2783%" y="836" width="0.3058%" height="15" fill="rgb(251,195,23)" fg:x="220" fg:w="1"/><text x="67.5283%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="67.2783%" y="852" width="0.3058%" height="15" fill="rgb(236,174,8)" fg:x="220" fg:w="1"/><text x="67.5283%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="67.2783%" y="868" width="0.3058%" height="15" fill="rgb(220,197,8)" fg:x="220" fg:w="1"/><text x="67.5283%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.31%)</title><rect x="67.2783%" y="884" width="0.3058%" height="15" fill="rgb(240,108,37)" fg:x="220" fg:w="1"/><text x="67.5283%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.31%)</title><rect x="67.2783%" y="900" width="0.3058%" height="15" fill="rgb(232,176,24)" fg:x="220" fg:w="1"/><text x="67.5283%" y="910.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (24 samples, 7.34%)</title><rect x="61.7737%" y="132" width="7.3394%" height="15" fill="rgb(243,35,29)" fg:x="202" fg:w="24"/><text x="62.0237%" y="142.50">guess_engi..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (24 samples, 7.34%)</title><rect x="61.7737%" y="148" width="7.3394%" height="15" fill="rgb(210,37,18)" fg:x="202" fg:w="24"/><text x="62.0237%" y="158.50">list_engin..</text></g><g><title>build_engines (xarray/backends/plugins.py:106) (24 samples, 7.34%)</title><rect x="61.7737%" y="164" width="7.3394%" height="15" fill="rgb(224,184,40)" fg:x="202" fg:w="24"/><text x="62.0237%" y="174.50">build_engi..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (24 samples, 7.34%)</title><rect x="61.7737%" y="180" width="7.3394%" height="15" fill="rgb(236,39,29)" fg:x="202" fg:w="24"/><text x="62.0237%" y="190.50">backends_d..</text></g><g><title>load (importlib_metadata/__init__.py:178) (24 samples, 7.34%)</title><rect x="61.7737%" y="196" width="7.3394%" height="15" fill="rgb(232,48,39)" fg:x="202" fg:w="24"/><text x="62.0237%" y="206.50">load (impo..</text></g><g><title>import_module (importlib/__init__.py:109) (24 samples, 7.34%)</title><rect x="61.7737%" y="212" width="7.3394%" height="15" fill="rgb(236,34,42)" fg:x="202" fg:w="24"/><text x="62.0237%" y="222.50">import_mod..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (24 samples, 7.34%)</title><rect x="61.7737%" y="228" width="7.3394%" height="15" fill="rgb(243,106,37)" fg:x="202" fg:w="24"/><text x="62.0237%" y="238.50">_gcd_impor..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 7.34%)</title><rect x="61.7737%" y="244" width="7.3394%" height="15" fill="rgb(218,96,6)" fg:x="202" fg:w="24"/><text x="62.0237%" y="254.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 7.34%)</title><rect x="61.7737%" y="260" width="7.3394%" height="15" fill="rgb(235,130,12)" fg:x="202" fg:w="24"/><text x="62.0237%" y="270.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 7.34%)</title><rect x="61.7737%" y="276" width="7.3394%" height="15" fill="rgb(231,95,0)" fg:x="202" fg:w="24"/><text x="62.0237%" y="286.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 7.34%)</title><rect x="61.7737%" y="292" width="7.3394%" height="15" fill="rgb(228,12,23)" fg:x="202" fg:w="24"/><text x="62.0237%" y="302.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 7.34%)</title><rect x="61.7737%" y="308" width="7.3394%" height="15" fill="rgb(216,12,1)" fg:x="202" fg:w="24"/><text x="62.0237%" y="318.50">_call_with..</text></g><g><title><module> (xee/__init__.py:15) (24 samples, 7.34%)</title><rect x="61.7737%" y="324" width="7.3394%" height="15" fill="rgb(219,59,3)" fg:x="202" fg:w="24"/><text x="62.0237%" y="334.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 7.34%)</title><rect x="61.7737%" y="340" width="7.3394%" height="15" fill="rgb(215,208,46)" fg:x="202" fg:w="24"/><text x="62.0237%" y="350.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 7.34%)</title><rect x="61.7737%" y="356" width="7.3394%" height="15" fill="rgb(254,224,29)" fg:x="202" fg:w="24"/><text x="62.0237%" y="366.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 7.34%)</title><rect x="61.7737%" y="372" width="7.3394%" height="15" fill="rgb(232,14,29)" fg:x="202" fg:w="24"/><text x="62.0237%" y="382.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 7.34%)</title><rect x="61.7737%" y="388" width="7.3394%" height="15" fill="rgb(208,45,52)" fg:x="202" fg:w="24"/><text x="62.0237%" y="398.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 7.34%)</title><rect x="61.7737%" y="404" width="7.3394%" height="15" fill="rgb(234,191,28)" fg:x="202" fg:w="24"/><text x="62.0237%" y="414.50">_call_with..</text></g><g><title><module> (xee/ext.py:15) (24 samples, 7.34%)</title><rect x="61.7737%" y="420" width="7.3394%" height="15" fill="rgb(244,67,43)" fg:x="202" fg:w="24"/><text x="62.0237%" y="430.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 7.34%)</title><rect x="61.7737%" y="436" width="7.3394%" height="15" fill="rgb(236,189,24)" fg:x="202" fg:w="24"/><text x="62.0237%" y="446.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 7.34%)</title><rect x="61.7737%" y="452" width="7.3394%" height="15" fill="rgb(239,214,33)" fg:x="202" fg:w="24"/><text x="62.0237%" y="462.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 7.34%)</title><rect x="61.7737%" y="468" width="7.3394%" height="15" fill="rgb(226,176,41)" fg:x="202" fg:w="24"/><text x="62.0237%" y="478.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 7.34%)</title><rect x="61.7737%" y="484" width="7.3394%" height="15" fill="rgb(248,47,8)" fg:x="202" fg:w="24"/><text x="62.0237%" y="494.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 7.34%)</title><rect x="61.7737%" y="500" width="7.3394%" height="15" fill="rgb(218,81,44)" fg:x="202" fg:w="24"/><text x="62.0237%" y="510.50">_call_with..</text></g><g><title><module> (pyproj/__init__.py:1) (5 samples, 1.53%)</title><rect x="67.5841%" y="516" width="1.5291%" height="15" fill="rgb(213,98,6)" fg:x="221" fg:w="5"/><text x="67.8341%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="67.8899%" y="532" width="1.2232%" height="15" fill="rgb(222,85,22)" fg:x="222" fg:w="4"/><text x="68.1399%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="67.8899%" y="548" width="1.2232%" height="15" fill="rgb(239,46,39)" fg:x="222" fg:w="4"/><text x="68.1399%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="67.8899%" y="564" width="1.2232%" height="15" fill="rgb(237,12,29)" fg:x="222" fg:w="4"/><text x="68.1399%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.22%)</title><rect x="67.8899%" y="580" width="1.2232%" height="15" fill="rgb(214,77,8)" fg:x="222" fg:w="4"/><text x="68.1399%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="67.8899%" y="596" width="1.2232%" height="15" fill="rgb(217,168,37)" fg:x="222" fg:w="4"/><text x="68.1399%" y="606.50"></text></g><g><title><module> (pyproj/network.py:1) (4 samples, 1.22%)</title><rect x="67.8899%" y="612" width="1.2232%" height="15" fill="rgb(221,217,23)" fg:x="222" fg:w="4"/><text x="68.1399%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.22%)</title><rect x="67.8899%" y="628" width="1.2232%" height="15" fill="rgb(243,229,36)" fg:x="222" fg:w="4"/><text x="68.1399%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.22%)</title><rect x="67.8899%" y="644" width="1.2232%" height="15" fill="rgb(251,163,40)" fg:x="222" fg:w="4"/><text x="68.1399%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.22%)</title><rect x="67.8899%" y="660" width="1.2232%" height="15" fill="rgb(237,222,12)" fg:x="222" fg:w="4"/><text x="68.1399%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (4 samples, 1.22%)</title><rect x="67.8899%" y="676" width="1.2232%" height="15" fill="rgb(248,132,6)" fg:x="222" fg:w="4"/><text x="68.1399%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (4 samples, 1.22%)</title><rect x="67.8899%" y="692" width="1.2232%" height="15" fill="rgb(227,167,50)" fg:x="222" fg:w="4"/><text x="68.1399%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.22%)</title><rect x="67.8899%" y="708" width="1.2232%" height="15" fill="rgb(242,84,37)" fg:x="222" fg:w="4"/><text x="68.1399%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.1131%" y="356" width="0.3058%" height="15" fill="rgb(212,4,50)" fg:x="226" fg:w="1"/><text x="69.3631%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.1131%" y="372" width="0.3058%" height="15" fill="rgb(230,228,32)" fg:x="226" fg:w="1"/><text x="69.3631%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.1131%" y="388" width="0.3058%" height="15" fill="rgb(248,217,23)" fg:x="226" fg:w="1"/><text x="69.3631%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="69.1131%" y="404" width="0.3058%" height="15" fill="rgb(238,197,32)" fg:x="226" fg:w="1"/><text x="69.3631%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.1131%" y="420" width="0.3058%" height="15" fill="rgb(236,106,1)" fg:x="226" fg:w="1"/><text x="69.3631%" y="430.50"></text></g><g><title><module> (scipy/io/matlab/__init__.py:1) (1 samples, 0.31%)</title><rect x="69.1131%" y="436" width="0.3058%" height="15" fill="rgb(219,228,13)" fg:x="226" fg:w="1"/><text x="69.3631%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.1131%" y="452" width="0.3058%" height="15" fill="rgb(238,30,35)" fg:x="226" fg:w="1"/><text x="69.3631%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.1131%" y="468" width="0.3058%" height="15" fill="rgb(236,70,23)" fg:x="226" fg:w="1"/><text x="69.3631%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.1131%" y="484" width="0.3058%" height="15" fill="rgb(249,104,48)" fg:x="226" fg:w="1"/><text x="69.3631%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="69.1131%" y="500" width="0.3058%" height="15" fill="rgb(254,117,50)" fg:x="226" fg:w="1"/><text x="69.3631%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.1131%" y="516" width="0.3058%" height="15" fill="rgb(223,152,4)" fg:x="226" fg:w="1"/><text x="69.3631%" y="526.50"></text></g><g><title><module> (scipy/io/matlab/_mio.py:1) (1 samples, 0.31%)</title><rect x="69.1131%" y="532" width="0.3058%" height="15" fill="rgb(245,6,2)" fg:x="226" fg:w="1"/><text x="69.3631%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.1131%" y="548" width="0.3058%" height="15" fill="rgb(249,150,24)" fg:x="226" fg:w="1"/><text x="69.3631%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.1131%" y="564" width="0.3058%" height="15" fill="rgb(228,185,42)" fg:x="226" fg:w="1"/><text x="69.3631%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.1131%" y="580" width="0.3058%" height="15" fill="rgb(226,39,33)" fg:x="226" fg:w="1"/><text x="69.3631%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="69.1131%" y="596" width="0.3058%" height="15" fill="rgb(221,166,19)" fg:x="226" fg:w="1"/><text x="69.3631%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.1131%" y="612" width="0.3058%" height="15" fill="rgb(209,109,2)" fg:x="226" fg:w="1"/><text x="69.3631%" y="622.50"></text></g><g><title><module> (scipy/io/matlab/_mio5.py:1) (1 samples, 0.31%)</title><rect x="69.1131%" y="628" width="0.3058%" height="15" fill="rgb(252,216,26)" fg:x="226" fg:w="1"/><text x="69.3631%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.1131%" y="644" width="0.3058%" height="15" fill="rgb(227,173,36)" fg:x="226" fg:w="1"/><text x="69.3631%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.1131%" y="660" width="0.3058%" height="15" fill="rgb(209,90,7)" fg:x="226" fg:w="1"/><text x="69.3631%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.1131%" y="676" width="0.3058%" height="15" fill="rgb(250,194,11)" fg:x="226" fg:w="1"/><text x="69.3631%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.31%)</title><rect x="69.1131%" y="692" width="0.3058%" height="15" fill="rgb(220,72,50)" fg:x="226" fg:w="1"/><text x="69.3631%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.1131%" y="708" width="0.3058%" height="15" fill="rgb(222,106,48)" fg:x="226" fg:w="1"/><text x="69.3631%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.1131%" y="724" width="0.3058%" height="15" fill="rgb(216,220,45)" fg:x="226" fg:w="1"/><text x="69.3631%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.1131%" y="740" width="0.3058%" height="15" fill="rgb(234,112,18)" fg:x="226" fg:w="1"/><text x="69.3631%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.1131%" y="756" width="0.3058%" height="15" fill="rgb(206,179,9)" fg:x="226" fg:w="1"/><text x="69.3631%" y="766.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.31%)</title><rect x="69.1131%" y="772" width="0.3058%" height="15" fill="rgb(215,115,40)" fg:x="226" fg:w="1"/><text x="69.3631%" y="782.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.31%)</title><rect x="69.1131%" y="788" width="0.3058%" height="15" fill="rgb(222,69,34)" fg:x="226" fg:w="1"/><text x="69.3631%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.1131%" y="804" width="0.3058%" height="15" fill="rgb(209,161,10)" fg:x="226" fg:w="1"/><text x="69.3631%" y="814.50"></text></g><g><title>thread (0x200A78240) (228 samples, 69.72%)</title><rect x="0.0000%" y="68" width="69.7248%" height="15" fill="rgb(217,6,38)" fg:x="0" fg:w="228"/><text x="0.2500%" y="78.50">thread (0x200A78240)</text></g><g><title><module> (compute_air.py:3) (207 samples, 63.30%)</title><rect x="6.4220%" y="84" width="63.3028%" height="15" fill="rgb(229,229,48)" fg:x="21" fg:w="207"/><text x="6.6720%" y="94.50"><module> (compute_air.py:3)</text></g><g><title>open_dataset (xarray/tutorial.py:81) (33 samples, 10.09%)</title><rect x="59.6330%" y="100" width="10.0917%" height="15" fill="rgb(225,21,28)" fg:x="195" fg:w="33"/><text x="59.8830%" y="110.50">open_dataset (x..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (26 samples, 7.95%)</title><rect x="61.7737%" y="116" width="7.9511%" height="15" fill="rgb(206,33,13)" fg:x="202" fg:w="26"/><text x="62.0237%" y="126.50">open_datase..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (2 samples, 0.61%)</title><rect x="69.1131%" y="132" width="0.6116%" height="15" fill="rgb(242,178,17)" fg:x="226" fg:w="2"/><text x="69.3631%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (2 samples, 0.61%)</title><rect x="69.1131%" y="148" width="0.6116%" height="15" fill="rgb(220,162,5)" fg:x="226" fg:w="2"/><text x="69.3631%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (2 samples, 0.61%)</title><rect x="69.1131%" y="164" width="0.6116%" height="15" fill="rgb(210,33,43)" fg:x="226" fg:w="2"/><text x="69.3631%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (2 samples, 0.61%)</title><rect x="69.1131%" y="180" width="0.6116%" height="15" fill="rgb(216,116,54)" fg:x="226" fg:w="2"/><text x="69.3631%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (2 samples, 0.61%)</title><rect x="69.1131%" y="196" width="0.6116%" height="15" fill="rgb(249,92,24)" fg:x="226" fg:w="2"/><text x="69.3631%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (2 samples, 0.61%)</title><rect x="69.1131%" y="212" width="0.6116%" height="15" fill="rgb(231,189,14)" fg:x="226" fg:w="2"/><text x="69.3631%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (2 samples, 0.61%)</title><rect x="69.1131%" y="228" width="0.6116%" height="15" fill="rgb(230,8,41)" fg:x="226" fg:w="2"/><text x="69.3631%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (2 samples, 0.61%)</title><rect x="69.1131%" y="244" width="0.6116%" height="15" fill="rgb(249,7,27)" fg:x="226" fg:w="2"/><text x="69.3631%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="69.1131%" y="260" width="0.6116%" height="15" fill="rgb(232,86,5)" fg:x="226" fg:w="2"/><text x="69.3631%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="69.1131%" y="276" width="0.6116%" height="15" fill="rgb(224,175,18)" fg:x="226" fg:w="2"/><text x="69.3631%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="69.1131%" y="292" width="0.6116%" height="15" fill="rgb(220,129,12)" fg:x="226" fg:w="2"/><text x="69.3631%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="69.1131%" y="308" width="0.6116%" height="15" fill="rgb(210,19,36)" fg:x="226" fg:w="2"/><text x="69.3631%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="69.1131%" y="324" width="0.6116%" height="15" fill="rgb(219,96,14)" fg:x="226" fg:w="2"/><text x="69.3631%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (2 samples, 0.61%)</title><rect x="69.1131%" y="340" width="0.6116%" height="15" fill="rgb(249,106,1)" fg:x="226" fg:w="2"/><text x="69.3631%" y="350.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.31%)</title><rect x="69.4190%" y="356" width="0.3058%" height="15" fill="rgb(249,155,20)" fg:x="227" fg:w="1"/><text x="69.6690%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.4190%" y="372" width="0.3058%" height="15" fill="rgb(244,168,9)" fg:x="227" fg:w="1"/><text x="69.6690%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.31%)</title><rect x="69.4190%" y="388" width="0.3058%" height="15" fill="rgb(216,23,50)" fg:x="227" fg:w="1"/><text x="69.6690%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.31%)</title><rect x="69.4190%" y="404" width="0.3058%" height="15" fill="rgb(224,219,20)" fg:x="227" fg:w="1"/><text x="69.6690%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.31%)</title><rect x="69.4190%" y="420" width="0.3058%" height="15" fill="rgb(222,156,15)" fg:x="227" fg:w="1"/><text x="69.6690%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.31%)</title><rect x="69.4190%" y="436" width="0.3058%" height="15" fill="rgb(231,97,17)" fg:x="227" fg:w="1"/><text x="69.6690%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.31%)</title><rect x="69.4190%" y="452" width="0.3058%" height="15" fill="rgb(218,70,48)" fg:x="227" fg:w="1"/><text x="69.6690%" y="462.50"></text></g><g><title><module> (scipy/io/wavfile.py:1) (1 samples, 0.31%)</title><rect x="69.4190%" y="468" width="0.3058%" height="15" fill="rgb(212,196,52)" fg:x="227" fg:w="1"/><text x="69.6690%" y="478.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.31%)</title><rect x="69.4190%" y="484" width="0.3058%" height="15" fill="rgb(243,203,18)" fg:x="227" fg:w="1"/><text x="69.6690%" y="494.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.31%)</title><rect x="70.0306%" y="340" width="0.3058%" height="15" fill="rgb(252,125,41)" fg:x="229" fg:w="1"/><text x="70.2806%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.31%)</title><rect x="70.0306%" y="356" width="0.3058%" height="15" fill="rgb(223,180,33)" fg:x="229" fg:w="1"/><text x="70.2806%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.31%)</title><rect x="70.0306%" y="372" width="0.3058%" height="15" fill="rgb(254,159,46)" fg:x="229" fg:w="1"/><text x="70.2806%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.31%)</title><rect x="70.0306%" y="388" width="0.3058%" height="15" fill="rgb(254,38,10)" fg:x="229" fg:w="1"/><text x="70.2806%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.31%)</title><rect x="70.0306%" y="404" width="0.3058%" height="15" fill="rgb(208,217,32)" fg:x="229" fg:w="1"/><text x="70.2806%" y="414.50"></text></g><g><title>thread (0x30378F000) (10 samples, 3.06%)</title><rect x="69.7248%" y="68" width="3.0581%" height="15" fill="rgb(221,120,13)" fg:x="228" fg:w="10"/><text x="69.9748%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (10 samples, 3.06%)</title><rect x="69.7248%" y="84" width="3.0581%" height="15" fill="rgb(246,54,52)" fg:x="228" fg:w="10"/><text x="69.9748%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (10 samples, 3.06%)</title><rect x="69.7248%" y="100" width="3.0581%" height="15" fill="rgb(242,34,25)" fg:x="228" fg:w="10"/><text x="69.9748%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (10 samples, 3.06%)</title><rect x="69.7248%" y="116" width="3.0581%" height="15" fill="rgb(247,209,9)" fg:x="228" fg:w="10"/><text x="69.9748%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (10 samples, 3.06%)</title><rect x="69.7248%" y="132" width="3.0581%" height="15" fill="rgb(228,71,26)" fg:x="228" fg:w="10"/><text x="69.9748%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (10 samples, 3.06%)</title><rect x="69.7248%" y="148" width="3.0581%" height="15" fill="rgb(222,145,49)" fg:x="228" fg:w="10"/><text x="69.9748%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (10 samples, 3.06%)</title><rect x="69.7248%" y="164" width="3.0581%" height="15" fill="rgb(218,121,17)" fg:x="228" fg:w="10"/><text x="69.9748%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (10 samples, 3.06%)</title><rect x="69.7248%" y="180" width="3.0581%" height="15" fill="rgb(244,50,7)" fg:x="228" fg:w="10"/><text x="69.9748%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (10 samples, 3.06%)</title><rect x="69.7248%" y="196" width="3.0581%" height="15" fill="rgb(246,229,37)" fg:x="228" fg:w="10"/><text x="69.9748%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (10 samples, 3.06%)</title><rect x="69.7248%" y="212" width="3.0581%" height="15" fill="rgb(225,18,5)" fg:x="228" fg:w="10"/><text x="69.9748%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (10 samples, 3.06%)</title><rect x="69.7248%" y="228" width="3.0581%" height="15" fill="rgb(213,204,8)" fg:x="228" fg:w="10"/><text x="69.9748%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (10 samples, 3.06%)</title><rect x="69.7248%" y="244" width="3.0581%" height="15" fill="rgb(238,103,6)" fg:x="228" fg:w="10"/><text x="69.9748%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (10 samples, 3.06%)</title><rect x="69.7248%" y="260" width="3.0581%" height="15" fill="rgb(222,25,35)" fg:x="228" fg:w="10"/><text x="69.9748%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (10 samples, 3.06%)</title><rect x="69.7248%" y="276" width="3.0581%" height="15" fill="rgb(213,203,35)" fg:x="228" fg:w="10"/><text x="69.9748%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (10 samples, 3.06%)</title><rect x="69.7248%" y="292" width="3.0581%" height="15" fill="rgb(221,79,53)" fg:x="228" fg:w="10"/><text x="69.9748%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (10 samples, 3.06%)</title><rect x="69.7248%" y="308" width="3.0581%" height="15" fill="rgb(243,200,35)" fg:x="228" fg:w="10"/><text x="69.9748%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (10 samples, 3.06%)</title><rect x="69.7248%" y="324" width="3.0581%" height="15" fill="rgb(248,60,25)" fg:x="228" fg:w="10"/><text x="69.9748%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 2.45%)</title><rect x="70.3364%" y="340" width="2.4465%" height="15" fill="rgb(227,53,46)" fg:x="230" fg:w="8"/><text x="70.5864%" y="350.50">un..</text></g><g><title>values (xarray/core/dataarray.py:750) (1 samples, 0.31%)</title><rect x="72.4771%" y="356" width="0.3058%" height="15" fill="rgb(216,120,32)" fg:x="237" fg:w="1"/><text x="72.7271%" y="366.50"></text></g><g><title>values (xarray/core/variable.py:613) (1 samples, 0.31%)</title><rect x="72.4771%" y="372" width="0.3058%" height="15" fill="rgb(220,134,1)" fg:x="237" fg:w="1"/><text x="72.7271%" y="382.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (1 samples, 0.31%)</title><rect x="72.4771%" y="388" width="0.3058%" height="15" fill="rgb(237,168,5)" fg:x="237" fg:w="1"/><text x="72.7271%" y="398.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (1 samples, 0.31%)</title><rect x="72.4771%" y="404" width="0.3058%" height="15" fill="rgb(231,100,33)" fg:x="237" fg:w="1"/><text x="72.7271%" y="414.50"></text></g><g><title>compute (dask/base.py:355) (1 samples, 0.31%)</title><rect x="72.4771%" y="420" width="0.3058%" height="15" fill="rgb(236,177,47)" fg:x="237" fg:w="1"/><text x="72.7271%" y="430.50"></text></g><g><title>compute (dask/base.py:603) (1 samples, 0.31%)</title><rect x="72.4771%" y="436" width="0.3058%" height="15" fill="rgb(235,7,49)" fg:x="237" fg:w="1"/><text x="72.7271%" y="446.50"></text></g><g><title>collections_to_dsk (dask/base.py:417) (1 samples, 0.31%)</title><rect x="72.4771%" y="452" width="0.3058%" height="15" fill="rgb(232,119,22)" fg:x="237" fg:w="1"/><text x="72.7271%" y="462.50"></text></g><g><title>optimize (dask/array/optimization.py:27) (1 samples, 0.31%)</title><rect x="72.4771%" y="468" width="0.3058%" height="15" fill="rgb(254,73,53)" fg:x="237" fg:w="1"/><text x="72.7271%" y="478.50"></text></g><g><title>get_all_dependencies (dask/highlevelgraph.py:586) (1 samples, 0.31%)</title><rect x="72.4771%" y="484" width="0.3058%" height="15" fill="rgb(251,35,20)" fg:x="237" fg:w="1"/><text x="72.7271%" y="494.50"></text></g><g><title>keys (dask/highlevelgraph.py:549) (1 samples, 0.31%)</title><rect x="72.4771%" y="500" width="0.3058%" height="15" fill="rgb(241,119,20)" fg:x="237" fg:w="1"/><text x="72.7271%" y="510.50"></text></g><g><title>to_dict (dask/highlevelgraph.py:541) (1 samples, 0.31%)</title><rect x="72.4771%" y="516" width="0.3058%" height="15" fill="rgb(207,102,14)" fg:x="237" fg:w="1"/><text x="72.7271%" y="526.50"></text></g><g><title>ensure_dict (dask/utils.py:1379) (1 samples, 0.31%)</title><rect x="72.4771%" y="532" width="0.3058%" height="15" fill="rgb(248,201,50)" fg:x="237" fg:w="1"/><text x="72.7271%" y="542.50"></text></g><g><title>__iter__ (_collections_abc.py:825) (1 samples, 0.31%)</title><rect x="72.4771%" y="548" width="0.3058%" height="15" fill="rgb(222,185,44)" fg:x="237" fg:w="1"/><text x="72.7271%" y="558.50"></text></g><g><title>normalize_index (dask/array/slicing.py:860) (2 samples, 0.61%)</title><rect x="72.7829%" y="404" width="0.6116%" height="15" fill="rgb(218,107,18)" fg:x="238" fg:w="2"/><text x="73.0329%" y="414.50"></text></g><g><title>sanitize_index (dask/array/slicing.py:41) (1 samples, 0.31%)</title><rect x="73.0887%" y="420" width="0.3058%" height="15" fill="rgb(237,177,39)" fg:x="239" fg:w="1"/><text x="73.3387%" y="430.50"></text></g><g><title>_sanitize_index_element (dask/array/slicing.py:23) (1 samples, 0.31%)</title><rect x="73.0887%" y="436" width="0.3058%" height="15" fill="rgb(246,69,6)" fg:x="239" fg:w="1"/><text x="73.3387%" y="446.50"></text></g><g><title>isel (xarray/core/dataset.py:2775) (5 samples, 1.53%)</title><rect x="72.7829%" y="324" width="1.5291%" height="15" fill="rgb(234,208,37)" fg:x="238" fg:w="5"/><text x="73.0329%" y="334.50"></text></g><g><title>isel (xarray/core/variable.py:1345) (5 samples, 1.53%)</title><rect x="72.7829%" y="340" width="1.5291%" height="15" fill="rgb(225,4,6)" fg:x="238" fg:w="5"/><text x="73.0329%" y="350.50"></text></g><g><title>__getitem__ (xarray/core/variable.py:886) (5 samples, 1.53%)</title><rect x="72.7829%" y="356" width="1.5291%" height="15" fill="rgb(233,45,0)" fg:x="238" fg:w="5"/><text x="73.0329%" y="366.50"></text></g><g><title>__getitem__ (xarray/core/indexing.py:1419) (5 samples, 1.53%)</title><rect x="72.7829%" y="372" width="1.5291%" height="15" fill="rgb(226,136,5)" fg:x="238" fg:w="5"/><text x="73.0329%" y="382.50"></text></g><g><title>__getitem__ (dask/array/core.py:1944) (5 samples, 1.53%)</title><rect x="72.7829%" y="388" width="1.5291%" height="15" fill="rgb(211,91,47)" fg:x="238" fg:w="5"/><text x="73.0329%" y="398.50"></text></g><g><title>tokenize (dask/base.py:1026) (3 samples, 0.92%)</title><rect x="73.3945%" y="404" width="0.9174%" height="15" fill="rgb(242,88,51)" fg:x="240" fg:w="3"/><text x="73.6445%" y="414.50"></text></g><g><title>__call__ (dask/utils.py:762) (3 samples, 0.92%)</title><rect x="73.3945%" y="420" width="0.9174%" height="15" fill="rgb(230,91,28)" fg:x="240" fg:w="3"/><text x="73.6445%" y="430.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.31%)</title><rect x="74.3119%" y="340" width="0.3058%" height="15" fill="rgb(254,186,29)" fg:x="243" fg:w="1"/><text x="74.5619%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.31%)</title><rect x="74.3119%" y="356" width="0.3058%" height="15" fill="rgb(238,6,4)" fg:x="243" fg:w="1"/><text x="74.5619%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.31%)</title><rect x="74.3119%" y="372" width="0.3058%" height="15" fill="rgb(221,151,16)" fg:x="243" fg:w="1"/><text x="74.5619%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.31%)</title><rect x="74.3119%" y="388" width="0.3058%" height="15" fill="rgb(251,143,52)" fg:x="243" fg:w="1"/><text x="74.5619%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.31%)</title><rect x="74.3119%" y="404" width="0.3058%" height="15" fill="rgb(206,90,15)" fg:x="243" fg:w="1"/><text x="74.5619%" y="414.50"></text></g><g><title>thread (0x304792000) (13 samples, 3.98%)</title><rect x="72.7829%" y="68" width="3.9755%" height="15" fill="rgb(218,35,8)" fg:x="238" fg:w="13"/><text x="73.0329%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (13 samples, 3.98%)</title><rect x="72.7829%" y="84" width="3.9755%" height="15" fill="rgb(239,215,6)" fg:x="238" fg:w="13"/><text x="73.0329%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (13 samples, 3.98%)</title><rect x="72.7829%" y="100" width="3.9755%" height="15" fill="rgb(245,116,39)" fg:x="238" fg:w="13"/><text x="73.0329%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (13 samples, 3.98%)</title><rect x="72.7829%" y="116" width="3.9755%" height="15" fill="rgb(242,65,28)" fg:x="238" fg:w="13"/><text x="73.0329%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (13 samples, 3.98%)</title><rect x="72.7829%" y="132" width="3.9755%" height="15" fill="rgb(252,132,53)" fg:x="238" fg:w="13"/><text x="73.0329%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 3.98%)</title><rect x="72.7829%" y="148" width="3.9755%" height="15" fill="rgb(224,159,50)" fg:x="238" fg:w="13"/><text x="73.0329%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 3.98%)</title><rect x="72.7829%" y="164" width="3.9755%" height="15" fill="rgb(224,93,4)" fg:x="238" fg:w="13"/><text x="73.0329%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 3.98%)</title><rect x="72.7829%" y="180" width="3.9755%" height="15" fill="rgb(208,81,34)" fg:x="238" fg:w="13"/><text x="73.0329%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 3.98%)</title><rect x="72.7829%" y="196" width="3.9755%" height="15" fill="rgb(233,92,54)" fg:x="238" fg:w="13"/><text x="73.0329%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 3.98%)</title><rect x="72.7829%" y="212" width="3.9755%" height="15" fill="rgb(237,21,14)" fg:x="238" fg:w="13"/><text x="73.0329%" y="222.50">_exe..</text></g><g><title>__call__ (dask/optimization.py:992) (13 samples, 3.98%)</title><rect x="72.7829%" y="228" width="3.9755%" height="15" fill="rgb(249,128,51)" fg:x="238" fg:w="13"/><text x="73.0329%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (13 samples, 3.98%)</title><rect x="72.7829%" y="244" width="3.9755%" height="15" fill="rgb(223,129,24)" fg:x="238" fg:w="13"/><text x="73.0329%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 3.98%)</title><rect x="72.7829%" y="260" width="3.9755%" height="15" fill="rgb(231,168,25)" fg:x="238" fg:w="13"/><text x="73.0329%" y="270.50">_exe..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (13 samples, 3.98%)</title><rect x="72.7829%" y="276" width="3.9755%" height="15" fill="rgb(224,39,20)" fg:x="238" fg:w="13"/><text x="73.0329%" y="286.50">__ca..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (13 samples, 3.98%)</title><rect x="72.7829%" y="292" width="3.9755%" height="15" fill="rgb(225,152,53)" fg:x="238" fg:w="13"/><text x="73.0329%" y="302.50">appl..</text></g><g><title>f (qarray/df.py:105) (13 samples, 3.98%)</title><rect x="72.7829%" y="308" width="3.9755%" height="15" fill="rgb(252,17,24)" fg:x="238" fg:w="13"/><text x="73.0329%" y="318.50">f (q..</text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 2.45%)</title><rect x="74.3119%" y="324" width="2.4465%" height="15" fill="rgb(250,114,30)" fg:x="243" fg:w="8"/><text x="74.5619%" y="334.50">to..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 2.14%)</title><rect x="74.6177%" y="340" width="2.1407%" height="15" fill="rgb(229,5,4)" fg:x="244" fg:w="7"/><text x="74.8677%" y="350.50">u..</text></g><g><title><genexpr> (qarray/core.py:40) (1 samples, 0.31%)</title><rect x="76.4526%" y="356" width="0.3058%" height="15" fill="rgb(225,176,49)" fg:x="250" fg:w="1"/><text x="76.7026%" y="366.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.31%)</title><rect x="76.7584%" y="340" width="0.3058%" height="15" fill="rgb(224,221,49)" fg:x="251" fg:w="1"/><text x="77.0084%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.31%)</title><rect x="76.7584%" y="356" width="0.3058%" height="15" fill="rgb(253,169,27)" fg:x="251" fg:w="1"/><text x="77.0084%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.31%)</title><rect x="76.7584%" y="372" width="0.3058%" height="15" fill="rgb(211,206,16)" fg:x="251" fg:w="1"/><text x="77.0084%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.31%)</title><rect x="76.7584%" y="388" width="0.3058%" height="15" fill="rgb(244,87,35)" fg:x="251" fg:w="1"/><text x="77.0084%" y="398.50"></text></g><g><title>require (numpy/core/_asarray.py:27) (1 samples, 0.31%)</title><rect x="76.7584%" y="404" width="0.3058%" height="15" fill="rgb(246,28,10)" fg:x="251" fg:w="1"/><text x="77.0084%" y="414.50"></text></g><g><title><setcomp> (numpy/core/_asarray.py:108) (1 samples, 0.31%)</title><rect x="76.7584%" y="420" width="0.3058%" height="15" fill="rgb(229,12,44)" fg:x="251" fg:w="1"/><text x="77.0084%" y="430.50"></text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (1 samples, 0.31%)</title><rect x="80.4281%" y="356" width="0.3058%" height="15" fill="rgb(210,145,37)" fg:x="263" fg:w="1"/><text x="80.6781%" y="366.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (1 samples, 0.31%)</title><rect x="80.4281%" y="372" width="0.3058%" height="15" fill="rgb(227,112,52)" fg:x="263" fg:w="1"/><text x="80.6781%" y="382.50"></text></g><g><title>cull (dask/highlevelgraph.py:706) (1 samples, 0.31%)</title><rect x="80.7339%" y="484" width="0.3058%" height="15" fill="rgb(238,155,34)" fg:x="264" fg:w="1"/><text x="80.9839%" y="494.50"></text></g><g><title>cull (dask/blockwise.py:581) (1 samples, 0.31%)</title><rect x="80.7339%" y="500" width="0.3058%" height="15" fill="rgb(239,226,36)" fg:x="264" fg:w="1"/><text x="80.9839%" y="510.50"></text></g><g><title>_cull (dask/blockwise.py:567) (1 samples, 0.31%)</title><rect x="80.7339%" y="516" width="0.3058%" height="15" fill="rgb(230,16,23)" fg:x="264" fg:w="1"/><text x="80.9839%" y="526.50"></text></g><g><title>__init__ (dask/blockwise.py:389) (1 samples, 0.31%)</title><rect x="80.7339%" y="532" width="0.3058%" height="15" fill="rgb(236,171,36)" fg:x="264" fg:w="1"/><text x="80.9839%" y="542.50"></text></g><g><title>thread (0x306798000) (15 samples, 4.59%)</title><rect x="76.7584%" y="68" width="4.5872%" height="15" fill="rgb(221,22,14)" fg:x="251" fg:w="15"/><text x="77.0084%" y="78.50">threa..</text></g><g><title>_bootstrap (threading.py:923) (15 samples, 4.59%)</title><rect x="76.7584%" y="84" width="4.5872%" height="15" fill="rgb(242,43,11)" fg:x="251" fg:w="15"/><text x="77.0084%" y="94.50">_boot..</text></g><g><title>_bootstrap_inner (threading.py:963) (15 samples, 4.59%)</title><rect x="76.7584%" y="100" width="4.5872%" height="15" fill="rgb(232,69,23)" fg:x="251" fg:w="15"/><text x="77.0084%" y="110.50">_boot..</text></g><g><title>run (threading.py:906) (15 samples, 4.59%)</title><rect x="76.7584%" y="116" width="4.5872%" height="15" fill="rgb(216,180,54)" fg:x="251" fg:w="15"/><text x="77.0084%" y="126.50">run (..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (15 samples, 4.59%)</title><rect x="76.7584%" y="132" width="4.5872%" height="15" fill="rgb(216,5,24)" fg:x="251" fg:w="15"/><text x="77.0084%" y="142.50">_work..</text></g><g><title>run (concurrent/futures/thread.py:53) (15 samples, 4.59%)</title><rect x="76.7584%" y="148" width="4.5872%" height="15" fill="rgb(225,89,9)" fg:x="251" fg:w="15"/><text x="77.0084%" y="158.50">run (..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (15 samples, 4.59%)</title><rect x="76.7584%" y="164" width="4.5872%" height="15" fill="rgb(243,75,33)" fg:x="251" fg:w="15"/><text x="77.0084%" y="174.50">batch..</text></g><g><title><listcomp> (dask/local.py:239) (15 samples, 4.59%)</title><rect x="76.7584%" y="180" width="4.5872%" height="15" fill="rgb(247,141,45)" fg:x="251" fg:w="15"/><text x="77.0084%" y="190.50"><list..</text></g><g><title>execute_task (dask/local.py:215) (15 samples, 4.59%)</title><rect x="76.7584%" y="196" width="4.5872%" height="15" fill="rgb(232,177,36)" fg:x="251" fg:w="15"/><text x="77.0084%" y="206.50">execu..</text></g><g><title>_execute_task (dask/core.py:90) (15 samples, 4.59%)</title><rect x="76.7584%" y="212" width="4.5872%" height="15" fill="rgb(219,125,36)" fg:x="251" fg:w="15"/><text x="77.0084%" y="222.50">_exec..</text></g><g><title>__call__ (dask/optimization.py:992) (15 samples, 4.59%)</title><rect x="76.7584%" y="228" width="4.5872%" height="15" fill="rgb(227,94,9)" fg:x="251" fg:w="15"/><text x="77.0084%" y="238.50">__cal..</text></g><g><title>get (dask/core.py:136) (15 samples, 4.59%)</title><rect x="76.7584%" y="244" width="4.5872%" height="15" fill="rgb(240,34,52)" fg:x="251" fg:w="15"/><text x="77.0084%" y="254.50">get (..</text></g><g><title>_execute_task (dask/core.py:90) (15 samples, 4.59%)</title><rect x="76.7584%" y="260" width="4.5872%" height="15" fill="rgb(216,45,12)" fg:x="251" fg:w="15"/><text x="77.0084%" y="270.50">_exec..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (15 samples, 4.59%)</title><rect x="76.7584%" y="276" width="4.5872%" height="15" fill="rgb(246,21,19)" fg:x="251" fg:w="15"/><text x="77.0084%" y="286.50">__cal..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (15 samples, 4.59%)</title><rect x="76.7584%" y="292" width="4.5872%" height="15" fill="rgb(213,98,42)" fg:x="251" fg:w="15"/><text x="77.0084%" y="302.50">apply..</text></g><g><title>f (qarray/df.py:105) (15 samples, 4.59%)</title><rect x="76.7584%" y="308" width="4.5872%" height="15" fill="rgb(250,136,47)" fg:x="251" fg:w="15"/><text x="77.0084%" y="318.50">f (qa..</text></g><g><title>to_pd (qarray/df.py:72) (15 samples, 4.59%)</title><rect x="76.7584%" y="324" width="4.5872%" height="15" fill="rgb(251,124,27)" fg:x="251" fg:w="15"/><text x="77.0084%" y="334.50">to_pd..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (14 samples, 4.28%)</title><rect x="77.0642%" y="340" width="4.2813%" height="15" fill="rgb(229,180,14)" fg:x="252" fg:w="14"/><text x="77.3142%" y="350.50">unbou..</text></g><g><title>values (xarray/core/dataarray.py:750) (2 samples, 0.61%)</title><rect x="80.7339%" y="356" width="0.6116%" height="15" fill="rgb(245,216,25)" fg:x="264" fg:w="2"/><text x="80.9839%" y="366.50"></text></g><g><title>values (xarray/core/variable.py:613) (2 samples, 0.61%)</title><rect x="80.7339%" y="372" width="0.6116%" height="15" fill="rgb(251,43,5)" fg:x="264" fg:w="2"/><text x="80.9839%" y="382.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (2 samples, 0.61%)</title><rect x="80.7339%" y="388" width="0.6116%" height="15" fill="rgb(250,128,24)" fg:x="264" fg:w="2"/><text x="80.9839%" y="398.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (2 samples, 0.61%)</title><rect x="80.7339%" y="404" width="0.6116%" height="15" fill="rgb(217,117,27)" fg:x="264" fg:w="2"/><text x="80.9839%" y="414.50"></text></g><g><title>compute (dask/base.py:355) (2 samples, 0.61%)</title><rect x="80.7339%" y="420" width="0.6116%" height="15" fill="rgb(245,147,4)" fg:x="264" fg:w="2"/><text x="80.9839%" y="430.50"></text></g><g><title>compute (dask/base.py:603) (2 samples, 0.61%)</title><rect x="80.7339%" y="436" width="0.6116%" height="15" fill="rgb(242,201,35)" fg:x="264" fg:w="2"/><text x="80.9839%" y="446.50"></text></g><g><title>collections_to_dsk (dask/base.py:417) (2 samples, 0.61%)</title><rect x="80.7339%" y="452" width="0.6116%" height="15" fill="rgb(218,181,1)" fg:x="264" fg:w="2"/><text x="80.9839%" y="462.50"></text></g><g><title>optimize (dask/array/optimization.py:27) (2 samples, 0.61%)</title><rect x="80.7339%" y="468" width="0.6116%" height="15" fill="rgb(222,6,29)" fg:x="264" fg:w="2"/><text x="80.9839%" y="478.50"></text></g><g><title>optimize_blockwise (dask/blockwise.py:1054) (1 samples, 0.31%)</title><rect x="81.0398%" y="484" width="0.3058%" height="15" fill="rgb(208,186,3)" fg:x="265" fg:w="1"/><text x="81.2898%" y="494.50"></text></g><g><title>_optimize_blockwise (dask/blockwise.py:1086) (1 samples, 0.31%)</title><rect x="81.0398%" y="500" width="0.3058%" height="15" fill="rgb(216,36,26)" fg:x="265" fg:w="1"/><text x="81.2898%" y="510.50"></text></g><g><title><setcomp> (dask/blockwise.py:1090) (1 samples, 0.31%)</title><rect x="81.0398%" y="516" width="0.3058%" height="15" fill="rgb(248,201,23)" fg:x="265" fg:w="1"/><text x="81.2898%" y="526.50"></text></g><g><title>thread (0x30779B000) (1 samples, 0.31%)</title><rect x="81.3456%" y="68" width="0.3058%" height="15" fill="rgb(251,170,31)" fg:x="266" fg:w="1"/><text x="81.5956%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.31%)</title><rect x="81.3456%" y="84" width="0.3058%" height="15" fill="rgb(207,110,25)" fg:x="266" fg:w="1"/><text x="81.5956%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.31%)</title><rect x="81.3456%" y="100" width="0.3058%" height="15" fill="rgb(250,54,15)" fg:x="266" fg:w="1"/><text x="81.5956%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.31%)</title><rect x="81.3456%" y="116" width="0.3058%" height="15" fill="rgb(227,68,33)" fg:x="266" fg:w="1"/><text x="81.5956%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.31%)</title><rect x="81.3456%" y="132" width="0.3058%" height="15" fill="rgb(238,34,41)" fg:x="266" fg:w="1"/><text x="81.5956%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.31%)</title><rect x="81.3456%" y="148" width="0.3058%" height="15" fill="rgb(220,11,15)" fg:x="266" fg:w="1"/><text x="81.5956%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.31%)</title><rect x="81.3456%" y="164" width="0.3058%" height="15" fill="rgb(246,111,35)" fg:x="266" fg:w="1"/><text x="81.5956%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.31%)</title><rect x="81.3456%" y="180" width="0.3058%" height="15" fill="rgb(209,88,53)" fg:x="266" fg:w="1"/><text x="81.5956%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.31%)</title><rect x="81.3456%" y="196" width="0.3058%" height="15" fill="rgb(231,185,47)" fg:x="266" fg:w="1"/><text x="81.5956%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.31%)</title><rect x="81.3456%" y="212" width="0.3058%" height="15" fill="rgb(233,154,1)" fg:x="266" fg:w="1"/><text x="81.5956%" y="222.50"></text></g><g><title>getter (dask/array/core.py:106) (1 samples, 0.31%)</title><rect x="81.3456%" y="228" width="0.3058%" height="15" fill="rgb(225,15,46)" fg:x="266" fg:w="1"/><text x="81.5956%" y="238.50"></text></g><g><title>__array__ (xarray/core/indexing.py:486) (1 samples, 0.31%)</title><rect x="81.3456%" y="244" width="0.3058%" height="15" fill="rgb(211,135,41)" fg:x="266" fg:w="1"/><text x="81.5956%" y="254.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:489) (1 samples, 0.31%)</title><rect x="81.3456%" y="260" width="0.3058%" height="15" fill="rgb(208,54,0)" fg:x="266" fg:w="1"/><text x="81.5956%" y="270.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:698) (1 samples, 0.31%)</title><rect x="81.3456%" y="276" width="0.3058%" height="15" fill="rgb(244,136,14)" fg:x="266" fg:w="1"/><text x="81.5956%" y="286.50"></text></g><g><title>_ensure_cached (xarray/core/indexing.py:692) (1 samples, 0.31%)</title><rect x="81.3456%" y="292" width="0.3058%" height="15" fill="rgb(241,56,14)" fg:x="266" fg:w="1"/><text x="81.5956%" y="302.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:666) (1 samples, 0.31%)</title><rect x="81.3456%" y="308" width="0.3058%" height="15" fill="rgb(205,80,24)" fg:x="266" fg:w="1"/><text x="81.5956%" y="318.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:553) (1 samples, 0.31%)</title><rect x="81.3456%" y="324" width="0.3058%" height="15" fill="rgb(220,57,4)" fg:x="266" fg:w="1"/><text x="81.5956%" y="334.50"></text></g><g><title>__getitem__ (xarray/coding/variables.py:70) (1 samples, 0.31%)</title><rect x="81.3456%" y="340" width="0.3058%" height="15" fill="rgb(226,193,50)" fg:x="266" fg:w="1"/><text x="81.5956%" y="350.50"></text></g><g><title>__getitem__ (xarray/backends/scipy_.py:66) (1 samples, 0.31%)</title><rect x="81.3456%" y="356" width="0.3058%" height="15" fill="rgb(231,168,22)" fg:x="266" fg:w="1"/><text x="81.5956%" y="366.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.31%)</title><rect x="81.6514%" y="340" width="0.3058%" height="15" fill="rgb(254,215,14)" fg:x="267" fg:w="1"/><text x="81.9014%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.31%)</title><rect x="81.6514%" y="356" width="0.3058%" height="15" fill="rgb(211,115,16)" fg:x="267" fg:w="1"/><text x="81.9014%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.31%)</title><rect x="81.6514%" y="372" width="0.3058%" height="15" fill="rgb(236,210,16)" fg:x="267" fg:w="1"/><text x="81.9014%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.31%)</title><rect x="81.6514%" y="388" width="0.3058%" height="15" fill="rgb(221,94,12)" fg:x="267" fg:w="1"/><text x="81.9014%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.31%)</title><rect x="81.6514%" y="404" width="0.3058%" height="15" fill="rgb(235,218,49)" fg:x="267" fg:w="1"/><text x="81.9014%" y="414.50"></text></g><g><title>thread (0x30879E000) (12 samples, 3.67%)</title><rect x="81.6514%" y="68" width="3.6697%" height="15" fill="rgb(217,114,14)" fg:x="267" fg:w="12"/><text x="81.9014%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (12 samples, 3.67%)</title><rect x="81.6514%" y="84" width="3.6697%" height="15" fill="rgb(216,145,22)" fg:x="267" fg:w="12"/><text x="81.9014%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (12 samples, 3.67%)</title><rect x="81.6514%" y="100" width="3.6697%" height="15" fill="rgb(217,112,39)" fg:x="267" fg:w="12"/><text x="81.9014%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (12 samples, 3.67%)</title><rect x="81.6514%" y="116" width="3.6697%" height="15" fill="rgb(225,85,32)" fg:x="267" fg:w="12"/><text x="81.9014%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (12 samples, 3.67%)</title><rect x="81.6514%" y="132" width="3.6697%" height="15" fill="rgb(245,209,47)" fg:x="267" fg:w="12"/><text x="81.9014%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (12 samples, 3.67%)</title><rect x="81.6514%" y="148" width="3.6697%" height="15" fill="rgb(218,220,15)" fg:x="267" fg:w="12"/><text x="81.9014%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (12 samples, 3.67%)</title><rect x="81.6514%" y="164" width="3.6697%" height="15" fill="rgb(222,202,31)" fg:x="267" fg:w="12"/><text x="81.9014%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (12 samples, 3.67%)</title><rect x="81.6514%" y="180" width="3.6697%" height="15" fill="rgb(243,203,4)" fg:x="267" fg:w="12"/><text x="81.9014%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (12 samples, 3.67%)</title><rect x="81.6514%" y="196" width="3.6697%" height="15" fill="rgb(237,92,17)" fg:x="267" fg:w="12"/><text x="81.9014%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 3.67%)</title><rect x="81.6514%" y="212" width="3.6697%" height="15" fill="rgb(231,119,7)" fg:x="267" fg:w="12"/><text x="81.9014%" y="222.50">_exe..</text></g><g><title>__call__ (dask/optimization.py:992) (12 samples, 3.67%)</title><rect x="81.6514%" y="228" width="3.6697%" height="15" fill="rgb(237,82,41)" fg:x="267" fg:w="12"/><text x="81.9014%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (12 samples, 3.67%)</title><rect x="81.6514%" y="244" width="3.6697%" height="15" fill="rgb(226,81,48)" fg:x="267" fg:w="12"/><text x="81.9014%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 3.67%)</title><rect x="81.6514%" y="260" width="3.6697%" height="15" fill="rgb(234,70,51)" fg:x="267" fg:w="12"/><text x="81.9014%" y="270.50">_exe..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (12 samples, 3.67%)</title><rect x="81.6514%" y="276" width="3.6697%" height="15" fill="rgb(251,86,4)" fg:x="267" fg:w="12"/><text x="81.9014%" y="286.50">__ca..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (12 samples, 3.67%)</title><rect x="81.6514%" y="292" width="3.6697%" height="15" fill="rgb(244,144,28)" fg:x="267" fg:w="12"/><text x="81.9014%" y="302.50">appl..</text></g><g><title>f (qarray/df.py:105) (12 samples, 3.67%)</title><rect x="81.6514%" y="308" width="3.6697%" height="15" fill="rgb(232,161,39)" fg:x="267" fg:w="12"/><text x="81.9014%" y="318.50">f (q..</text></g><g><title>to_pd (qarray/df.py:72) (12 samples, 3.67%)</title><rect x="81.6514%" y="324" width="3.6697%" height="15" fill="rgb(247,34,51)" fg:x="267" fg:w="12"/><text x="81.9014%" y="334.50">to_p..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (11 samples, 3.36%)</title><rect x="81.9572%" y="340" width="3.3639%" height="15" fill="rgb(225,132,2)" fg:x="268" fg:w="11"/><text x="82.2072%" y="350.50">unb..</text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (1 samples, 0.31%)</title><rect x="85.3211%" y="388" width="0.3058%" height="15" fill="rgb(209,159,44)" fg:x="279" fg:w="1"/><text x="85.5711%" y="398.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (1 samples, 0.31%)</title><rect x="85.3211%" y="404" width="0.3058%" height="15" fill="rgb(251,214,1)" fg:x="279" fg:w="1"/><text x="85.5711%" y="414.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (1 samples, 0.31%)</title><rect x="85.3211%" y="420" width="0.3058%" height="15" fill="rgb(247,84,47)" fg:x="279" fg:w="1"/><text x="85.5711%" y="430.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (1 samples, 0.31%)</title><rect x="85.3211%" y="436" width="0.3058%" height="15" fill="rgb(240,111,43)" fg:x="279" fg:w="1"/><text x="85.5711%" y="446.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (2 samples, 0.61%)</title><rect x="85.3211%" y="340" width="0.6116%" height="15" fill="rgb(215,214,35)" fg:x="279" fg:w="2"/><text x="85.5711%" y="350.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (2 samples, 0.61%)</title><rect x="85.3211%" y="356" width="0.6116%" height="15" fill="rgb(248,207,23)" fg:x="279" fg:w="2"/><text x="85.5711%" y="366.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (2 samples, 0.61%)</title><rect x="85.3211%" y="372" width="0.6116%" height="15" fill="rgb(214,186,4)" fg:x="279" fg:w="2"/><text x="85.5711%" y="382.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.31%)</title><rect x="85.6269%" y="388" width="0.3058%" height="15" fill="rgb(220,133,22)" fg:x="280" fg:w="1"/><text x="85.8769%" y="398.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.31%)</title><rect x="85.6269%" y="404" width="0.3058%" height="15" fill="rgb(239,134,19)" fg:x="280" fg:w="1"/><text x="85.8769%" y="414.50"></text></g><g><title>thread (0x30A7A4000) (14 samples, 4.28%)</title><rect x="85.3211%" y="68" width="4.2813%" height="15" fill="rgb(250,140,9)" fg:x="279" fg:w="14"/><text x="85.5711%" y="78.50">threa..</text></g><g><title>_bootstrap (threading.py:923) (14 samples, 4.28%)</title><rect x="85.3211%" y="84" width="4.2813%" height="15" fill="rgb(225,59,14)" fg:x="279" fg:w="14"/><text x="85.5711%" y="94.50">_boot..</text></g><g><title>_bootstrap_inner (threading.py:963) (14 samples, 4.28%)</title><rect x="85.3211%" y="100" width="4.2813%" height="15" fill="rgb(214,152,51)" fg:x="279" fg:w="14"/><text x="85.5711%" y="110.50">_boot..</text></g><g><title>run (threading.py:906) (14 samples, 4.28%)</title><rect x="85.3211%" y="116" width="4.2813%" height="15" fill="rgb(251,227,43)" fg:x="279" fg:w="14"/><text x="85.5711%" y="126.50">run (..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (14 samples, 4.28%)</title><rect x="85.3211%" y="132" width="4.2813%" height="15" fill="rgb(241,96,17)" fg:x="279" fg:w="14"/><text x="85.5711%" y="142.50">_work..</text></g><g><title>run (concurrent/futures/thread.py:53) (14 samples, 4.28%)</title><rect x="85.3211%" y="148" width="4.2813%" height="15" fill="rgb(234,198,43)" fg:x="279" fg:w="14"/><text x="85.5711%" y="158.50">run (..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (14 samples, 4.28%)</title><rect x="85.3211%" y="164" width="4.2813%" height="15" fill="rgb(220,108,29)" fg:x="279" fg:w="14"/><text x="85.5711%" y="174.50">batch..</text></g><g><title><listcomp> (dask/local.py:239) (14 samples, 4.28%)</title><rect x="85.3211%" y="180" width="4.2813%" height="15" fill="rgb(226,163,33)" fg:x="279" fg:w="14"/><text x="85.5711%" y="190.50"><list..</text></g><g><title>execute_task (dask/local.py:215) (14 samples, 4.28%)</title><rect x="85.3211%" y="196" width="4.2813%" height="15" fill="rgb(205,194,45)" fg:x="279" fg:w="14"/><text x="85.5711%" y="206.50">execu..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 4.28%)</title><rect x="85.3211%" y="212" width="4.2813%" height="15" fill="rgb(206,143,44)" fg:x="279" fg:w="14"/><text x="85.5711%" y="222.50">_exec..</text></g><g><title>__call__ (dask/optimization.py:992) (14 samples, 4.28%)</title><rect x="85.3211%" y="228" width="4.2813%" height="15" fill="rgb(236,136,36)" fg:x="279" fg:w="14"/><text x="85.5711%" y="238.50">__cal..</text></g><g><title>get (dask/core.py:136) (14 samples, 4.28%)</title><rect x="85.3211%" y="244" width="4.2813%" height="15" fill="rgb(249,172,42)" fg:x="279" fg:w="14"/><text x="85.5711%" y="254.50">get (..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 4.28%)</title><rect x="85.3211%" y="260" width="4.2813%" height="15" fill="rgb(216,139,23)" fg:x="279" fg:w="14"/><text x="85.5711%" y="270.50">_exec..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (14 samples, 4.28%)</title><rect x="85.3211%" y="276" width="4.2813%" height="15" fill="rgb(207,166,20)" fg:x="279" fg:w="14"/><text x="85.5711%" y="286.50">__cal..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (14 samples, 4.28%)</title><rect x="85.3211%" y="292" width="4.2813%" height="15" fill="rgb(210,209,22)" fg:x="279" fg:w="14"/><text x="85.5711%" y="302.50">apply..</text></g><g><title>f (qarray/df.py:105) (14 samples, 4.28%)</title><rect x="85.3211%" y="308" width="4.2813%" height="15" fill="rgb(232,118,20)" fg:x="279" fg:w="14"/><text x="85.5711%" y="318.50">f (qa..</text></g><g><title>to_pd (qarray/df.py:72) (14 samples, 4.28%)</title><rect x="85.3211%" y="324" width="4.2813%" height="15" fill="rgb(238,113,42)" fg:x="279" fg:w="14"/><text x="85.5711%" y="334.50">to_pd..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (12 samples, 3.67%)</title><rect x="85.9327%" y="340" width="3.6697%" height="15" fill="rgb(231,42,5)" fg:x="281" fg:w="12"/><text x="86.1827%" y="350.50">unbo..</text></g><g><title>thread (0x30B7A7000) (12 samples, 3.67%)</title><rect x="89.6024%" y="68" width="3.6697%" height="15" fill="rgb(243,166,24)" fg:x="293" fg:w="12"/><text x="89.8524%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (12 samples, 3.67%)</title><rect x="89.6024%" y="84" width="3.6697%" height="15" fill="rgb(237,226,12)" fg:x="293" fg:w="12"/><text x="89.8524%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (12 samples, 3.67%)</title><rect x="89.6024%" y="100" width="3.6697%" height="15" fill="rgb(229,133,24)" fg:x="293" fg:w="12"/><text x="89.8524%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (12 samples, 3.67%)</title><rect x="89.6024%" y="116" width="3.6697%" height="15" fill="rgb(238,33,43)" fg:x="293" fg:w="12"/><text x="89.8524%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (12 samples, 3.67%)</title><rect x="89.6024%" y="132" width="3.6697%" height="15" fill="rgb(227,59,38)" fg:x="293" fg:w="12"/><text x="89.8524%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (12 samples, 3.67%)</title><rect x="89.6024%" y="148" width="3.6697%" height="15" fill="rgb(230,97,0)" fg:x="293" fg:w="12"/><text x="89.8524%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (12 samples, 3.67%)</title><rect x="89.6024%" y="164" width="3.6697%" height="15" fill="rgb(250,173,50)" fg:x="293" fg:w="12"/><text x="89.8524%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (12 samples, 3.67%)</title><rect x="89.6024%" y="180" width="3.6697%" height="15" fill="rgb(240,15,50)" fg:x="293" fg:w="12"/><text x="89.8524%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (12 samples, 3.67%)</title><rect x="89.6024%" y="196" width="3.6697%" height="15" fill="rgb(221,93,22)" fg:x="293" fg:w="12"/><text x="89.8524%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 3.67%)</title><rect x="89.6024%" y="212" width="3.6697%" height="15" fill="rgb(245,180,53)" fg:x="293" fg:w="12"/><text x="89.8524%" y="222.50">_exe..</text></g><g><title>__call__ (dask/optimization.py:992) (12 samples, 3.67%)</title><rect x="89.6024%" y="228" width="3.6697%" height="15" fill="rgb(231,88,51)" fg:x="293" fg:w="12"/><text x="89.8524%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (12 samples, 3.67%)</title><rect x="89.6024%" y="244" width="3.6697%" height="15" fill="rgb(240,58,21)" fg:x="293" fg:w="12"/><text x="89.8524%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 3.67%)</title><rect x="89.6024%" y="260" width="3.6697%" height="15" fill="rgb(237,21,10)" fg:x="293" fg:w="12"/><text x="89.8524%" y="270.50">_exe..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (12 samples, 3.67%)</title><rect x="89.6024%" y="276" width="3.6697%" height="15" fill="rgb(218,43,11)" fg:x="293" fg:w="12"/><text x="89.8524%" y="286.50">__ca..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (12 samples, 3.67%)</title><rect x="89.6024%" y="292" width="3.6697%" height="15" fill="rgb(218,221,29)" fg:x="293" fg:w="12"/><text x="89.8524%" y="302.50">appl..</text></g><g><title>f (qarray/df.py:105) (12 samples, 3.67%)</title><rect x="89.6024%" y="308" width="3.6697%" height="15" fill="rgb(214,118,42)" fg:x="293" fg:w="12"/><text x="89.8524%" y="318.50">f (q..</text></g><g><title>to_pd (qarray/df.py:72) (12 samples, 3.67%)</title><rect x="89.6024%" y="324" width="3.6697%" height="15" fill="rgb(251,200,26)" fg:x="293" fg:w="12"/><text x="89.8524%" y="334.50">to_p..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (12 samples, 3.67%)</title><rect x="89.6024%" y="340" width="3.6697%" height="15" fill="rgb(237,101,39)" fg:x="293" fg:w="12"/><text x="89.8524%" y="350.50">unbo..</text></g><g><title>thread (0x30C7AA000) (11 samples, 3.36%)</title><rect x="93.2722%" y="68" width="3.3639%" height="15" fill="rgb(251,117,11)" fg:x="305" fg:w="11"/><text x="93.5222%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (11 samples, 3.36%)</title><rect x="93.2722%" y="84" width="3.3639%" height="15" fill="rgb(216,223,23)" fg:x="305" fg:w="11"/><text x="93.5222%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (11 samples, 3.36%)</title><rect x="93.2722%" y="100" width="3.3639%" height="15" fill="rgb(251,54,12)" fg:x="305" fg:w="11"/><text x="93.5222%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (11 samples, 3.36%)</title><rect x="93.2722%" y="116" width="3.3639%" height="15" fill="rgb(254,176,54)" fg:x="305" fg:w="11"/><text x="93.5222%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (11 samples, 3.36%)</title><rect x="93.2722%" y="132" width="3.3639%" height="15" fill="rgb(210,32,8)" fg:x="305" fg:w="11"/><text x="93.5222%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (11 samples, 3.36%)</title><rect x="93.2722%" y="148" width="3.3639%" height="15" fill="rgb(235,52,38)" fg:x="305" fg:w="11"/><text x="93.5222%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (11 samples, 3.36%)</title><rect x="93.2722%" y="164" width="3.3639%" height="15" fill="rgb(231,4,44)" fg:x="305" fg:w="11"/><text x="93.5222%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (11 samples, 3.36%)</title><rect x="93.2722%" y="180" width="3.3639%" height="15" fill="rgb(249,2,32)" fg:x="305" fg:w="11"/><text x="93.5222%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (11 samples, 3.36%)</title><rect x="93.2722%" y="196" width="3.3639%" height="15" fill="rgb(224,65,26)" fg:x="305" fg:w="11"/><text x="93.5222%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 3.36%)</title><rect x="93.2722%" y="212" width="3.3639%" height="15" fill="rgb(250,73,40)" fg:x="305" fg:w="11"/><text x="93.5222%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (11 samples, 3.36%)</title><rect x="93.2722%" y="228" width="3.3639%" height="15" fill="rgb(253,177,16)" fg:x="305" fg:w="11"/><text x="93.5222%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (11 samples, 3.36%)</title><rect x="93.2722%" y="244" width="3.3639%" height="15" fill="rgb(217,32,34)" fg:x="305" fg:w="11"/><text x="93.5222%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 3.36%)</title><rect x="93.2722%" y="260" width="3.3639%" height="15" fill="rgb(212,7,10)" fg:x="305" fg:w="11"/><text x="93.5222%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (11 samples, 3.36%)</title><rect x="93.2722%" y="276" width="3.3639%" height="15" fill="rgb(245,89,8)" fg:x="305" fg:w="11"/><text x="93.5222%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (11 samples, 3.36%)</title><rect x="93.2722%" y="292" width="3.3639%" height="15" fill="rgb(237,16,53)" fg:x="305" fg:w="11"/><text x="93.5222%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (11 samples, 3.36%)</title><rect x="93.2722%" y="308" width="3.3639%" height="15" fill="rgb(250,204,30)" fg:x="305" fg:w="11"/><text x="93.5222%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (11 samples, 3.36%)</title><rect x="93.2722%" y="324" width="3.3639%" height="15" fill="rgb(208,77,27)" fg:x="305" fg:w="11"/><text x="93.5222%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (11 samples, 3.36%)</title><rect x="93.2722%" y="340" width="3.3639%" height="15" fill="rgb(250,204,28)" fg:x="305" fg:w="11"/><text x="93.5222%" y="350.50">unb..</text></g><g><title>all (327 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(244,63,21)" fg:x="0" fg:w="327"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x30D7AD000) (11 samples, 3.36%)</title><rect x="96.6361%" y="68" width="3.3639%" height="15" fill="rgb(236,85,44)" fg:x="316" fg:w="11"/><text x="96.8861%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (11 samples, 3.36%)</title><rect x="96.6361%" y="84" width="3.3639%" height="15" fill="rgb(215,98,4)" fg:x="316" fg:w="11"/><text x="96.8861%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (11 samples, 3.36%)</title><rect x="96.6361%" y="100" width="3.3639%" height="15" fill="rgb(235,38,11)" fg:x="316" fg:w="11"/><text x="96.8861%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (11 samples, 3.36%)</title><rect x="96.6361%" y="116" width="3.3639%" height="15" fill="rgb(254,186,25)" fg:x="316" fg:w="11"/><text x="96.8861%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (11 samples, 3.36%)</title><rect x="96.6361%" y="132" width="3.3639%" height="15" fill="rgb(225,55,31)" fg:x="316" fg:w="11"/><text x="96.8861%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (11 samples, 3.36%)</title><rect x="96.6361%" y="148" width="3.3639%" height="15" fill="rgb(211,15,21)" fg:x="316" fg:w="11"/><text x="96.8861%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (11 samples, 3.36%)</title><rect x="96.6361%" y="164" width="3.3639%" height="15" fill="rgb(215,187,41)" fg:x="316" fg:w="11"/><text x="96.8861%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (11 samples, 3.36%)</title><rect x="96.6361%" y="180" width="3.3639%" height="15" fill="rgb(248,69,32)" fg:x="316" fg:w="11"/><text x="96.8861%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (11 samples, 3.36%)</title><rect x="96.6361%" y="196" width="3.3639%" height="15" fill="rgb(252,102,52)" fg:x="316" fg:w="11"/><text x="96.8861%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 3.36%)</title><rect x="96.6361%" y="212" width="3.3639%" height="15" fill="rgb(253,140,32)" fg:x="316" fg:w="11"/><text x="96.8861%" y="222.50">_ex..</text></g><g><title>__call__ (dask/optimization.py:992) (11 samples, 3.36%)</title><rect x="96.6361%" y="228" width="3.3639%" height="15" fill="rgb(216,56,42)" fg:x="316" fg:w="11"/><text x="96.8861%" y="238.50">__c..</text></g><g><title>get (dask/core.py:136) (11 samples, 3.36%)</title><rect x="96.6361%" y="244" width="3.3639%" height="15" fill="rgb(216,184,14)" fg:x="316" fg:w="11"/><text x="96.8861%" y="254.50">get..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 3.36%)</title><rect x="96.6361%" y="260" width="3.3639%" height="15" fill="rgb(237,187,27)" fg:x="316" fg:w="11"/><text x="96.8861%" y="270.50">_ex..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (11 samples, 3.36%)</title><rect x="96.6361%" y="276" width="3.3639%" height="15" fill="rgb(219,65,3)" fg:x="316" fg:w="11"/><text x="96.8861%" y="286.50">__c..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (11 samples, 3.36%)</title><rect x="96.6361%" y="292" width="3.3639%" height="15" fill="rgb(245,83,25)" fg:x="316" fg:w="11"/><text x="96.8861%" y="302.50">app..</text></g><g><title>f (qarray/df.py:105) (11 samples, 3.36%)</title><rect x="96.6361%" y="308" width="3.3639%" height="15" fill="rgb(214,205,45)" fg:x="316" fg:w="11"/><text x="96.8861%" y="318.50">f (..</text></g><g><title>to_pd (qarray/df.py:72) (11 samples, 3.36%)</title><rect x="96.6361%" y="324" width="3.3639%" height="15" fill="rgb(241,20,18)" fg:x="316" fg:w="11"/><text x="96.8861%" y="334.50">to_..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (11 samples, 3.36%)</title><rect x="96.6361%" y="340" width="3.3639%" height="15" fill="rgb(232,163,23)" fg:x="316" fg:w="11"/><text x="96.8861%" y="350.50">unb..</text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/groupby_air.py-2024-03-03T07:43:22+05:30.svg b/perf_tests/groupby_air.py-2024-03-03T07:43:22+05:30.svg new file mode 100644 index 0000000..fc0974c --- /dev/null +++ b/perf_tests/groupby_air.py-2024-03-03T07:43:22+05:30.svg @@ -0,0 +1,415 @@ +<?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="2266" onload="init(evt)" viewBox="0 0 1200 2266" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2266" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./groupby_air.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2255.00"> </text><svg id="frames" x="10" width="1180" total_samples="330"><g><title>__init__ (dask_sql/context.py:84) (1 samples, 0.30%)</title><rect x="7.2727%" y="100" width="0.3030%" height="15" fill="rgb(227,0,7)" fg:x="24" fg:w="1"/><text x="7.5227%" y="110.50"></text></g><g><title>add_plugin_class (dask_sql/physical/rel/convert.py:32) (1 samples, 0.30%)</title><rect x="7.2727%" y="116" width="0.3030%" height="15" fill="rgb(217,0,24)" fg:x="24" fg:w="1"/><text x="7.5227%" y="126.50"></text></g><g><title>debug (logging/__init__.py:1424) (1 samples, 0.30%)</title><rect x="7.2727%" y="132" width="0.3030%" height="15" fill="rgb(221,193,54)" fg:x="24" fg:w="1"/><text x="7.5227%" y="142.50"></text></g><g><title>isEnabledFor (logging/__init__.py:1689) (1 samples, 0.30%)</title><rect x="7.2727%" y="148" width="0.3030%" height="15" fill="rgb(248,212,6)" fg:x="24" fg:w="1"/><text x="7.5227%" y="158.50"></text></g><g><title><module> (prompt_toolkit/cursor_shapes.py:1) (3 samples, 0.91%)</title><rect x="7.5758%" y="1428" width="0.9091%" height="15" fill="rgb(208,68,35)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1438.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="7.5758%" y="1444" width="0.9091%" height="15" fill="rgb(232,128,0)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1454.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="7.5758%" y="1460" width="0.9091%" height="15" fill="rgb(207,160,47)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="7.5758%" y="1476" width="0.9091%" height="15" fill="rgb(228,23,34)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="7.5758%" y="1492" width="0.9091%" height="15" fill="rgb(218,30,26)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="7.5758%" y="1508" width="0.9091%" height="15" fill="rgb(220,122,19)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="7.5758%" y="1524" width="0.9091%" height="15" fill="rgb(250,228,42)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="7.5758%" y="1540" width="0.9091%" height="15" fill="rgb(240,193,28)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="7.5758%" y="1556" width="0.9091%" height="15" fill="rgb(216,20,37)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1566.50"></text></g><g><title><module> (prompt_toolkit/key_binding/__init__.py:1) (3 samples, 0.91%)</title><rect x="7.5758%" y="1572" width="0.9091%" height="15" fill="rgb(206,188,39)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="7.5758%" y="1588" width="0.9091%" height="15" fill="rgb(217,207,13)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="7.5758%" y="1604" width="0.9091%" height="15" fill="rgb(231,73,38)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="7.5758%" y="1620" width="0.9091%" height="15" fill="rgb(225,20,46)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="7.5758%" y="1636" width="0.9091%" height="15" fill="rgb(210,31,41)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="7.5758%" y="1652" width="0.9091%" height="15" fill="rgb(221,200,47)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1662.50"></text></g><g><title><module> (prompt_toolkit/key_binding/key_bindings.py:1) (3 samples, 0.91%)</title><rect x="7.5758%" y="1668" width="0.9091%" height="15" fill="rgb(226,26,5)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="7.5758%" y="1684" width="0.9091%" height="15" fill="rgb(249,33,26)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="7.5758%" y="1700" width="0.9091%" height="15" fill="rgb(235,183,28)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="7.5758%" y="1716" width="0.9091%" height="15" fill="rgb(221,5,38)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="7.5758%" y="1732" width="0.9091%" height="15" fill="rgb(247,18,42)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="7.5758%" y="1748" width="0.9091%" height="15" fill="rgb(241,131,45)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1758.50"></text></g><g><title><module> (prompt_toolkit/keys.py:1) (3 samples, 0.91%)</title><rect x="7.5758%" y="1764" width="0.9091%" height="15" fill="rgb(249,31,29)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1774.50"></text></g><g><title>__new__ (enum.py:179) (3 samples, 0.91%)</title><rect x="7.5758%" y="1780" width="0.9091%" height="15" fill="rgb(225,111,53)" fg:x="25" fg:w="3"/><text x="7.8258%" y="1790.50"></text></g><g><title>__setattr__ (enum.py:462) (2 samples, 0.61%)</title><rect x="7.8788%" y="1796" width="0.6061%" height="15" fill="rgb(238,160,17)" fg:x="26" fg:w="2"/><text x="8.1288%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="788" width="1.2121%" height="15" fill="rgb(214,148,48)" fg:x="25" fg:w="4"/><text x="7.8258%" y="798.50"></text></g><g><title><module> (prompt_toolkit/completion/__init__.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="804" width="1.2121%" height="15" fill="rgb(232,36,49)" fg:x="25" fg:w="4"/><text x="7.8258%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="820" width="1.2121%" height="15" fill="rgb(209,103,24)" fg:x="25" fg:w="4"/><text x="7.8258%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="836" width="1.2121%" height="15" fill="rgb(229,88,8)" fg:x="25" fg:w="4"/><text x="7.8258%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="852" width="1.2121%" height="15" fill="rgb(213,181,19)" fg:x="25" fg:w="4"/><text x="7.8258%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="868" width="1.2121%" height="15" fill="rgb(254,191,54)" fg:x="25" fg:w="4"/><text x="7.8258%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="884" width="1.2121%" height="15" fill="rgb(241,83,37)" fg:x="25" fg:w="4"/><text x="7.8258%" y="894.50"></text></g><g><title><module> (prompt_toolkit/completion/base.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="900" width="1.2121%" height="15" fill="rgb(233,36,39)" fg:x="25" fg:w="4"/><text x="7.8258%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="916" width="1.2121%" height="15" fill="rgb(226,3,54)" fg:x="25" fg:w="4"/><text x="7.8258%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="932" width="1.2121%" height="15" fill="rgb(245,192,40)" fg:x="25" fg:w="4"/><text x="7.8258%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="948" width="1.2121%" height="15" fill="rgb(238,167,29)" fg:x="25" fg:w="4"/><text x="7.8258%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="964" width="1.2121%" height="15" fill="rgb(232,182,51)" fg:x="25" fg:w="4"/><text x="7.8258%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="980" width="1.2121%" height="15" fill="rgb(231,60,39)" fg:x="25" fg:w="4"/><text x="7.8258%" y="990.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/__init__.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="996" width="1.2121%" height="15" fill="rgb(208,69,12)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="1012" width="1.2121%" height="15" fill="rgb(235,93,37)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="1028" width="1.2121%" height="15" fill="rgb(213,116,39)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="1044" width="1.2121%" height="15" fill="rgb(222,207,29)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="1060" width="1.2121%" height="15" fill="rgb(206,96,30)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="1076" width="1.2121%" height="15" fill="rgb(218,138,4)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/ansi.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="1092" width="1.2121%" height="15" fill="rgb(250,191,14)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="1108" width="1.2121%" height="15" fill="rgb(239,60,40)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="1124" width="1.2121%" height="15" fill="rgb(206,27,48)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="1140" width="1.2121%" height="15" fill="rgb(225,35,8)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="1156" width="1.2121%" height="15" fill="rgb(250,213,24)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="1172" width="1.2121%" height="15" fill="rgb(247,123,22)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="1188" width="1.2121%" height="15" fill="rgb(231,138,38)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="1204" width="1.2121%" height="15" fill="rgb(231,145,46)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="1220" width="1.2121%" height="15" fill="rgb(251,118,11)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1230.50"></text></g><g><title><module> (prompt_toolkit/output/__init__.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="1236" width="1.2121%" height="15" fill="rgb(217,147,25)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="1252" width="1.2121%" height="15" fill="rgb(247,81,37)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="1268" width="1.2121%" height="15" fill="rgb(209,12,38)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="1284" width="1.2121%" height="15" fill="rgb(227,1,9)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="1300" width="1.2121%" height="15" fill="rgb(248,47,43)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="1316" width="1.2121%" height="15" fill="rgb(221,10,30)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1326.50"></text></g><g><title><module> (prompt_toolkit/output/base.py:1) (4 samples, 1.21%)</title><rect x="7.5758%" y="1332" width="1.2121%" height="15" fill="rgb(210,229,1)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="7.5758%" y="1348" width="1.2121%" height="15" fill="rgb(222,148,37)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="7.5758%" y="1364" width="1.2121%" height="15" fill="rgb(234,67,33)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="7.5758%" y="1380" width="1.2121%" height="15" fill="rgb(247,98,35)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="7.5758%" y="1396" width="1.2121%" height="15" fill="rgb(247,138,52)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="7.5758%" y="1412" width="1.2121%" height="15" fill="rgb(213,79,30)" fg:x="25" fg:w="4"/><text x="7.8258%" y="1422.50"></text></g><g><title><module> (prompt_toolkit/styles/__init__.py:1) (1 samples, 0.30%)</title><rect x="8.4848%" y="1428" width="0.3030%" height="15" fill="rgb(246,177,23)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1438.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="8.4848%" y="1444" width="0.3030%" height="15" fill="rgb(230,62,27)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1454.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="8.4848%" y="1460" width="0.3030%" height="15" fill="rgb(216,154,8)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1470.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="8.4848%" y="1476" width="0.3030%" height="15" fill="rgb(244,35,45)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1486.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="8.4848%" y="1492" width="0.3030%" height="15" fill="rgb(251,115,12)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="8.4848%" y="1508" width="0.3030%" height="15" fill="rgb(240,54,50)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1518.50"></text></g><g><title><module> (prompt_toolkit/styles/base.py:1) (1 samples, 0.30%)</title><rect x="8.4848%" y="1524" width="0.3030%" height="15" fill="rgb(233,84,52)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1534.50"></text></g><g><title>__new__ (typing.py:1866) (1 samples, 0.30%)</title><rect x="8.4848%" y="1540" width="0.3030%" height="15" fill="rgb(207,117,47)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1550.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (1 samples, 0.30%)</title><rect x="8.4848%" y="1556" width="0.3030%" height="15" fill="rgb(249,43,39)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1566.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.30%)</title><rect x="8.4848%" y="1572" width="0.3030%" height="15" fill="rgb(209,38,44)" fg:x="28" fg:w="1"/><text x="8.7348%" y="1582.50"></text></g><g><title><module> (prompt_toolkit/application/__init__.py:1) (5 samples, 1.52%)</title><rect x="7.5758%" y="516" width="1.5152%" height="15" fill="rgb(236,212,23)" fg:x="25" fg:w="5"/><text x="7.8258%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="7.5758%" y="532" width="1.5152%" height="15" fill="rgb(242,79,21)" fg:x="25" fg:w="5"/><text x="7.8258%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="7.5758%" y="548" width="1.5152%" height="15" fill="rgb(211,96,35)" fg:x="25" fg:w="5"/><text x="7.8258%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="7.5758%" y="564" width="1.5152%" height="15" fill="rgb(253,215,40)" fg:x="25" fg:w="5"/><text x="7.8258%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="7.5758%" y="580" width="1.5152%" height="15" fill="rgb(211,81,21)" fg:x="25" fg:w="5"/><text x="7.8258%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="7.5758%" y="596" width="1.5152%" height="15" fill="rgb(208,190,38)" fg:x="25" fg:w="5"/><text x="7.8258%" y="606.50"></text></g><g><title><module> (prompt_toolkit/application/application.py:1) (5 samples, 1.52%)</title><rect x="7.5758%" y="612" width="1.5152%" height="15" fill="rgb(235,213,38)" fg:x="25" fg:w="5"/><text x="7.8258%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="7.5758%" y="628" width="1.5152%" height="15" fill="rgb(237,122,38)" fg:x="25" fg:w="5"/><text x="7.8258%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="7.5758%" y="644" width="1.5152%" height="15" fill="rgb(244,218,35)" fg:x="25" fg:w="5"/><text x="7.8258%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="7.5758%" y="660" width="1.5152%" height="15" fill="rgb(240,68,47)" fg:x="25" fg:w="5"/><text x="7.8258%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="7.5758%" y="676" width="1.5152%" height="15" fill="rgb(210,16,53)" fg:x="25" fg:w="5"/><text x="7.8258%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="7.5758%" y="692" width="1.5152%" height="15" fill="rgb(235,124,12)" fg:x="25" fg:w="5"/><text x="7.8258%" y="702.50"></text></g><g><title><module> (prompt_toolkit/buffer.py:1) (5 samples, 1.52%)</title><rect x="7.5758%" y="708" width="1.5152%" height="15" fill="rgb(224,169,11)" fg:x="25" fg:w="5"/><text x="7.8258%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="7.5758%" y="724" width="1.5152%" height="15" fill="rgb(250,166,2)" fg:x="25" fg:w="5"/><text x="7.8258%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="7.5758%" y="740" width="1.5152%" height="15" fill="rgb(242,216,29)" fg:x="25" fg:w="5"/><text x="7.8258%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="7.5758%" y="756" width="1.5152%" height="15" fill="rgb(230,116,27)" fg:x="25" fg:w="5"/><text x="7.8258%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="7.5758%" y="772" width="1.5152%" height="15" fill="rgb(228,99,48)" fg:x="25" fg:w="5"/><text x="7.8258%" y="782.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="8.7879%" y="788" width="0.3030%" height="15" fill="rgb(253,11,6)" fg:x="29" fg:w="1"/><text x="9.0379%" y="798.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.30%)</title><rect x="8.7879%" y="804" width="0.3030%" height="15" fill="rgb(247,143,39)" fg:x="29" fg:w="1"/><text x="9.0379%" y="814.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="8.7879%" y="820" width="0.3030%" height="15" fill="rgb(236,97,10)" fg:x="29" fg:w="1"/><text x="9.0379%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="7.5758%" y="324" width="2.1212%" height="15" fill="rgb(233,208,19)" fg:x="25" fg:w="7"/><text x="7.8258%" y="334.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="7.5758%" y="340" width="2.1212%" height="15" fill="rgb(216,164,2)" fg:x="25" fg:w="7"/><text x="7.8258%" y="350.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="7.5758%" y="356" width="2.1212%" height="15" fill="rgb(220,129,5)" fg:x="25" fg:w="7"/><text x="7.8258%" y="366.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="7.5758%" y="372" width="2.1212%" height="15" fill="rgb(242,17,10)" fg:x="25" fg:w="7"/><text x="7.8258%" y="382.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="7.5758%" y="388" width="2.1212%" height="15" fill="rgb(242,107,0)" fg:x="25" fg:w="7"/><text x="7.8258%" y="398.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="7.5758%" y="404" width="2.1212%" height="15" fill="rgb(251,28,31)" fg:x="25" fg:w="7"/><text x="7.8258%" y="414.50">_..</text></g><g><title><module> (prompt_toolkit/__init__.py:1) (7 samples, 2.12%)</title><rect x="7.5758%" y="420" width="2.1212%" height="15" fill="rgb(233,223,10)" fg:x="25" fg:w="7"/><text x="7.8258%" y="430.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="7.5758%" y="436" width="2.1212%" height="15" fill="rgb(215,21,27)" fg:x="25" fg:w="7"/><text x="7.8258%" y="446.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="7.5758%" y="452" width="2.1212%" height="15" fill="rgb(232,23,21)" fg:x="25" fg:w="7"/><text x="7.8258%" y="462.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="7.5758%" y="468" width="2.1212%" height="15" fill="rgb(244,5,23)" fg:x="25" fg:w="7"/><text x="7.8258%" y="478.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="7.5758%" y="484" width="2.1212%" height="15" fill="rgb(226,81,46)" fg:x="25" fg:w="7"/><text x="7.8258%" y="494.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="7.5758%" y="500" width="2.1212%" height="15" fill="rgb(247,70,30)" fg:x="25" fg:w="7"/><text x="7.8258%" y="510.50">_..</text></g><g><title><module> (prompt_toolkit/shortcuts/__init__.py:1) (2 samples, 0.61%)</title><rect x="9.0909%" y="516" width="0.6061%" height="15" fill="rgb(212,68,19)" fg:x="30" fg:w="2"/><text x="9.3409%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="9.0909%" y="532" width="0.6061%" height="15" fill="rgb(240,187,13)" fg:x="30" fg:w="2"/><text x="9.3409%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="9.0909%" y="548" width="0.6061%" height="15" fill="rgb(223,113,26)" fg:x="30" fg:w="2"/><text x="9.3409%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="9.0909%" y="564" width="0.6061%" height="15" fill="rgb(206,192,2)" fg:x="30" fg:w="2"/><text x="9.3409%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="9.0909%" y="580" width="0.6061%" height="15" fill="rgb(241,108,4)" fg:x="30" fg:w="2"/><text x="9.3409%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="9.0909%" y="596" width="0.6061%" height="15" fill="rgb(247,173,49)" fg:x="30" fg:w="2"/><text x="9.3409%" y="606.50"></text></g><g><title><module> (prompt_toolkit/shortcuts/dialogs.py:1) (2 samples, 0.61%)</title><rect x="9.0909%" y="612" width="0.6061%" height="15" fill="rgb(224,114,35)" fg:x="30" fg:w="2"/><text x="9.3409%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="9.0909%" y="628" width="0.6061%" height="15" fill="rgb(245,159,27)" fg:x="30" fg:w="2"/><text x="9.3409%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="9.0909%" y="644" width="0.6061%" height="15" fill="rgb(245,172,44)" fg:x="30" fg:w="2"/><text x="9.3409%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="9.0909%" y="660" width="0.6061%" height="15" fill="rgb(236,23,11)" fg:x="30" fg:w="2"/><text x="9.3409%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="9.0909%" y="676" width="0.6061%" height="15" fill="rgb(205,117,38)" fg:x="30" fg:w="2"/><text x="9.3409%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="9.0909%" y="692" width="0.6061%" height="15" fill="rgb(237,72,25)" fg:x="30" fg:w="2"/><text x="9.3409%" y="702.50"></text></g><g><title><module> (prompt_toolkit/widgets/__init__.py:1) (2 samples, 0.61%)</title><rect x="9.0909%" y="708" width="0.6061%" height="15" fill="rgb(244,70,9)" fg:x="30" fg:w="2"/><text x="9.3409%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="9.0909%" y="724" width="0.6061%" height="15" fill="rgb(217,125,39)" fg:x="30" fg:w="2"/><text x="9.3409%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="9.0909%" y="740" width="0.6061%" height="15" fill="rgb(235,36,10)" fg:x="30" fg:w="2"/><text x="9.3409%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="9.0909%" y="756" width="0.6061%" height="15" fill="rgb(251,123,47)" fg:x="30" fg:w="2"/><text x="9.3409%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="9.0909%" y="772" width="0.6061%" height="15" fill="rgb(221,13,13)" fg:x="30" fg:w="2"/><text x="9.3409%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="9.0909%" y="788" width="0.6061%" height="15" fill="rgb(238,131,9)" fg:x="30" fg:w="2"/><text x="9.3409%" y="798.50"></text></g><g><title><module> (prompt_toolkit/widgets/base.py:1) (2 samples, 0.61%)</title><rect x="9.0909%" y="804" width="0.6061%" height="15" fill="rgb(211,50,8)" fg:x="30" fg:w="2"/><text x="9.3409%" y="814.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (3 samples, 0.91%)</title><rect x="9.6970%" y="996" width="0.9091%" height="15" fill="rgb(245,182,24)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1006.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.91%)</title><rect x="9.6970%" y="1012" width="0.9091%" height="15" fill="rgb(242,14,37)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (3 samples, 0.91%)</title><rect x="9.6970%" y="1028" width="0.9091%" height="15" fill="rgb(246,228,12)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (3 samples, 0.91%)</title><rect x="9.6970%" y="1044" width="0.9091%" height="15" fill="rgb(213,55,15)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (3 samples, 0.91%)</title><rect x="9.6970%" y="1060" width="0.9091%" height="15" fill="rgb(209,9,3)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="9.6970%" y="1076" width="0.9091%" height="15" fill="rgb(230,59,30)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="9.6970%" y="1092" width="0.9091%" height="15" fill="rgb(209,121,21)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="9.6970%" y="1108" width="0.9091%" height="15" fill="rgb(220,109,13)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="9.6970%" y="1124" width="0.9091%" height="15" fill="rgb(232,18,1)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="9.6970%" y="1140" width="0.9091%" height="15" fill="rgb(215,41,42)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1150.50"></text></g><g><title><module> (tornado/netutil.py:16) (3 samples, 0.91%)</title><rect x="9.6970%" y="1156" width="0.9091%" height="15" fill="rgb(224,123,36)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1166.50"></text></g><g><title>create_default_context (ssl.py:724) (3 samples, 0.91%)</title><rect x="9.6970%" y="1172" width="0.9091%" height="15" fill="rgb(240,125,3)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1182.50"></text></g><g><title>load_default_certs (ssl.py:570) (3 samples, 0.91%)</title><rect x="9.6970%" y="1188" width="0.9091%" height="15" fill="rgb(205,98,50)" fg:x="32" fg:w="3"/><text x="9.9470%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="9.6970%" y="772" width="1.2121%" height="15" fill="rgb(205,185,37)" fg:x="32" fg:w="4"/><text x="9.9470%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="9.6970%" y="788" width="1.2121%" height="15" fill="rgb(238,207,15)" fg:x="32" fg:w="4"/><text x="9.9470%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="9.6970%" y="804" width="1.2121%" height="15" fill="rgb(213,199,42)" fg:x="32" fg:w="4"/><text x="9.9470%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="9.6970%" y="820" width="1.2121%" height="15" fill="rgb(235,201,11)" fg:x="32" fg:w="4"/><text x="9.9470%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="9.6970%" y="836" width="1.2121%" height="15" fill="rgb(207,46,11)" fg:x="32" fg:w="4"/><text x="9.9470%" y="846.50"></text></g><g><title><module> (distributed/comm/__init__.py:1) (4 samples, 1.21%)</title><rect x="9.6970%" y="852" width="1.2121%" height="15" fill="rgb(241,35,35)" fg:x="32" fg:w="4"/><text x="9.9470%" y="862.50"></text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (4 samples, 1.21%)</title><rect x="9.6970%" y="868" width="1.2121%" height="15" fill="rgb(243,32,47)" fg:x="32" fg:w="4"/><text x="9.9470%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="9.6970%" y="884" width="1.2121%" height="15" fill="rgb(247,202,23)" fg:x="32" fg:w="4"/><text x="9.9470%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="9.6970%" y="900" width="1.2121%" height="15" fill="rgb(219,102,11)" fg:x="32" fg:w="4"/><text x="9.9470%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="9.6970%" y="916" width="1.2121%" height="15" fill="rgb(243,110,44)" fg:x="32" fg:w="4"/><text x="9.9470%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="9.6970%" y="932" width="1.2121%" height="15" fill="rgb(222,74,54)" fg:x="32" fg:w="4"/><text x="9.9470%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="9.6970%" y="948" width="1.2121%" height="15" fill="rgb(216,99,12)" fg:x="32" fg:w="4"/><text x="9.9470%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="9.6970%" y="964" width="1.2121%" height="15" fill="rgb(226,22,26)" fg:x="32" fg:w="4"/><text x="9.9470%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="9.6970%" y="980" width="1.2121%" height="15" fill="rgb(217,163,10)" fg:x="32" fg:w="4"/><text x="9.9470%" y="990.50"></text></g><g><title><module> (distributed/comm/ws.py:1) (1 samples, 0.30%)</title><rect x="10.6061%" y="996" width="0.3030%" height="15" fill="rgb(213,25,53)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="10.6061%" y="1012" width="0.3030%" height="15" fill="rgb(252,105,26)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="10.6061%" y="1028" width="0.3030%" height="15" fill="rgb(220,39,43)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="10.6061%" y="1044" width="0.3030%" height="15" fill="rgb(229,68,48)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="10.6061%" y="1060" width="0.3030%" height="15" fill="rgb(252,8,32)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="10.6061%" y="1076" width="0.3030%" height="15" fill="rgb(223,20,43)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1086.50"></text></g><g><title><module> (tornado/websocket.py:1) (1 samples, 0.30%)</title><rect x="10.6061%" y="1092" width="0.3030%" height="15" fill="rgb(229,81,49)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1102.50"></text></g><g><title>WebSocketProtocol13 (tornado/websocket.py:790) (1 samples, 0.30%)</title><rect x="10.6061%" y="1108" width="0.3030%" height="15" fill="rgb(236,28,36)" fg:x="35" fg:w="1"/><text x="10.8561%" y="1118.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.30%)</title><rect x="10.9091%" y="1172" width="0.3030%" height="15" fill="rgb(249,185,26)" fg:x="36" fg:w="1"/><text x="11.1591%" y="1182.50"></text></g><g><title><module> (click/__init__.py:1) (2 samples, 0.61%)</title><rect x="10.9091%" y="1076" width="0.6061%" height="15" fill="rgb(249,174,33)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="10.9091%" y="1092" width="0.6061%" height="15" fill="rgb(233,201,37)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="10.9091%" y="1108" width="0.6061%" height="15" fill="rgb(221,78,26)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="10.9091%" y="1124" width="0.6061%" height="15" fill="rgb(250,127,30)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="10.9091%" y="1140" width="0.6061%" height="15" fill="rgb(230,49,44)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="10.9091%" y="1156" width="0.6061%" height="15" fill="rgb(229,67,23)" fg:x="36" fg:w="2"/><text x="11.1591%" y="1166.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="11.2121%" y="1172" width="0.3030%" height="15" fill="rgb(249,83,47)" fg:x="37" fg:w="1"/><text x="11.4621%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="10.9091%" y="964" width="0.9091%" height="15" fill="rgb(215,43,3)" fg:x="36" fg:w="3"/><text x="11.1591%" y="974.50"></text></g><g><title><module> (distributed/utils.py:1) (3 samples, 0.91%)</title><rect x="10.9091%" y="980" width="0.9091%" height="15" fill="rgb(238,154,13)" fg:x="36" fg:w="3"/><text x="11.1591%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="10.9091%" y="996" width="0.9091%" height="15" fill="rgb(219,56,2)" fg:x="36" fg:w="3"/><text x="11.1591%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="10.9091%" y="1012" width="0.9091%" height="15" fill="rgb(233,0,4)" fg:x="36" fg:w="3"/><text x="11.1591%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="10.9091%" y="1028" width="0.9091%" height="15" fill="rgb(235,30,7)" fg:x="36" fg:w="3"/><text x="11.1591%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="10.9091%" y="1044" width="0.9091%" height="15" fill="rgb(250,79,13)" fg:x="36" fg:w="3"/><text x="11.1591%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="10.9091%" y="1060" width="0.9091%" height="15" fill="rgb(211,146,34)" fg:x="36" fg:w="3"/><text x="11.1591%" y="1070.50"></text></g><g><title><module> (xml/etree/ElementTree.py:1) (1 samples, 0.30%)</title><rect x="11.5152%" y="1076" width="0.3030%" height="15" fill="rgb(228,22,38)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="11.5152%" y="1092" width="0.3030%" height="15" fill="rgb(235,168,5)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="11.5152%" y="1108" width="0.3030%" height="15" fill="rgb(221,155,16)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="11.5152%" y="1124" width="0.3030%" height="15" fill="rgb(215,215,53)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1134.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="11.5152%" y="1140" width="0.3030%" height="15" fill="rgb(223,4,10)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1150.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="11.5152%" y="1156" width="0.3030%" height="15" fill="rgb(234,103,6)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="11.5152%" y="1172" width="0.3030%" height="15" fill="rgb(227,97,0)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="11.5152%" y="1188" width="0.3030%" height="15" fill="rgb(234,150,53)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="11.5152%" y="1204" width="0.3030%" height="15" fill="rgb(228,201,54)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1214.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="11.5152%" y="1220" width="0.3030%" height="15" fill="rgb(222,22,37)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1230.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="11.5152%" y="1236" width="0.3030%" height="15" fill="rgb(237,53,32)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1246.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="11.5152%" y="1252" width="0.3030%" height="15" fill="rgb(233,25,53)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1262.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="11.5152%" y="1268" width="0.3030%" height="15" fill="rgb(210,40,34)" fg:x="38" fg:w="1"/><text x="11.7652%" y="1278.50"></text></g><g><title><module> (distributed/profile.py:1) (4 samples, 1.21%)</title><rect x="10.9091%" y="884" width="1.2121%" height="15" fill="rgb(241,220,44)" fg:x="36" fg:w="4"/><text x="11.1591%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="10.9091%" y="900" width="1.2121%" height="15" fill="rgb(235,28,35)" fg:x="36" fg:w="4"/><text x="11.1591%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="10.9091%" y="916" width="1.2121%" height="15" fill="rgb(210,56,17)" fg:x="36" fg:w="4"/><text x="11.1591%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="10.9091%" y="932" width="1.2121%" height="15" fill="rgb(224,130,29)" fg:x="36" fg:w="4"/><text x="11.1591%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="10.9091%" y="948" width="1.2121%" height="15" fill="rgb(235,212,8)" fg:x="36" fg:w="4"/><text x="11.1591%" y="958.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="11.8182%" y="964" width="0.3030%" height="15" fill="rgb(223,33,50)" fg:x="39" fg:w="1"/><text x="12.0682%" y="974.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="11.8182%" y="980" width="0.3030%" height="15" fill="rgb(219,149,13)" fg:x="39" fg:w="1"/><text x="12.0682%" y="990.50"></text></g><g><title><module> (distributed/core.py:1) (9 samples, 2.73%)</title><rect x="9.6970%" y="756" width="2.7273%" height="15" fill="rgb(250,156,29)" fg:x="32" fg:w="9"/><text x="9.9470%" y="766.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="10.9091%" y="772" width="1.5152%" height="15" fill="rgb(216,193,19)" fg:x="36" fg:w="5"/><text x="11.1591%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="10.9091%" y="788" width="1.5152%" height="15" fill="rgb(216,135,14)" fg:x="36" fg:w="5"/><text x="11.1591%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="10.9091%" y="804" width="1.5152%" height="15" fill="rgb(241,47,5)" fg:x="36" fg:w="5"/><text x="11.1591%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="10.9091%" y="820" width="1.5152%" height="15" fill="rgb(233,42,35)" fg:x="36" fg:w="5"/><text x="11.1591%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="10.9091%" y="836" width="1.5152%" height="15" fill="rgb(231,13,6)" fg:x="36" fg:w="5"/><text x="11.1591%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="10.9091%" y="852" width="1.5152%" height="15" fill="rgb(207,181,40)" fg:x="36" fg:w="5"/><text x="11.1591%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="10.9091%" y="868" width="1.5152%" height="15" fill="rgb(254,173,49)" fg:x="36" fg:w="5"/><text x="11.1591%" y="878.50"></text></g><g><title><module> (distributed/protocol/__init__.py:1) (1 samples, 0.30%)</title><rect x="12.1212%" y="884" width="0.3030%" height="15" fill="rgb(221,1,38)" fg:x="40" fg:w="1"/><text x="12.3712%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="12.1212%" y="900" width="0.3030%" height="15" fill="rgb(206,124,46)" fg:x="40" fg:w="1"/><text x="12.3712%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="12.1212%" y="916" width="0.3030%" height="15" fill="rgb(249,21,11)" fg:x="40" fg:w="1"/><text x="12.3712%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="12.1212%" y="932" width="0.3030%" height="15" fill="rgb(222,201,40)" fg:x="40" fg:w="1"/><text x="12.3712%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="12.1212%" y="948" width="0.3030%" height="15" fill="rgb(235,61,29)" fg:x="40" fg:w="1"/><text x="12.3712%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="12.1212%" y="964" width="0.3030%" height="15" fill="rgb(219,207,3)" fg:x="40" fg:w="1"/><text x="12.3712%" y="974.50"></text></g><g><title><module> (distributed/protocol/core.py:1) (1 samples, 0.30%)</title><rect x="12.1212%" y="980" width="0.3030%" height="15" fill="rgb(222,56,46)" fg:x="40" fg:w="1"/><text x="12.3712%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="12.1212%" y="996" width="0.3030%" height="15" fill="rgb(239,76,54)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="12.1212%" y="1012" width="0.3030%" height="15" fill="rgb(231,124,27)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="12.1212%" y="1028" width="0.3030%" height="15" fill="rgb(249,195,6)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="12.1212%" y="1044" width="0.3030%" height="15" fill="rgb(237,174,47)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="12.1212%" y="1060" width="0.3030%" height="15" fill="rgb(206,201,31)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1070.50"></text></g><g><title><module> (msgpack/__init__.py:1) (1 samples, 0.30%)</title><rect x="12.1212%" y="1076" width="0.3030%" height="15" fill="rgb(231,57,52)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="12.1212%" y="1092" width="0.3030%" height="15" fill="rgb(248,177,22)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="12.1212%" y="1108" width="0.3030%" height="15" fill="rgb(215,211,37)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="12.1212%" y="1124" width="0.3030%" height="15" fill="rgb(241,128,51)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1134.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="12.1212%" y="1140" width="0.3030%" height="15" fill="rgb(227,165,31)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1150.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="12.1212%" y="1156" width="0.3030%" height="15" fill="rgb(228,167,24)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="12.1212%" y="1172" width="0.3030%" height="15" fill="rgb(228,143,12)" fg:x="40" fg:w="1"/><text x="12.3712%" y="1182.50"></text></g><g><title><listcomp> (dataclasses.py:863) (1 samples, 0.30%)</title><rect x="12.7273%" y="916" width="0.3030%" height="15" fill="rgb(249,149,8)" fg:x="42" fg:w="1"/><text x="12.9773%" y="926.50"></text></g><g><title>_get_field (dataclasses.py:671) (1 samples, 0.30%)</title><rect x="12.7273%" y="932" width="0.3030%" height="15" fill="rgb(243,35,44)" fg:x="42" fg:w="1"/><text x="12.9773%" y="942.50"></text></g><g><title>__str__ (inspect.py:3065) (1 samples, 0.30%)</title><rect x="13.0303%" y="916" width="0.3030%" height="15" fill="rgb(246,89,9)" fg:x="43" fg:w="1"/><text x="13.2803%" y="926.50"></text></g><g><title>__str__ (inspect.py:2582) (1 samples, 0.30%)</title><rect x="13.0303%" y="932" width="0.3030%" height="15" fill="rgb(233,213,13)" fg:x="43" fg:w="1"/><text x="13.2803%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="12.4242%" y="836" width="1.2121%" height="15" fill="rgb(233,141,41)" fg:x="41" fg:w="4"/><text x="12.6742%" y="846.50"></text></g><g><title><module> (distributed/worker_state_machine.py:1) (4 samples, 1.21%)</title><rect x="12.4242%" y="852" width="1.2121%" height="15" fill="rgb(239,167,4)" fg:x="41" fg:w="4"/><text x="12.6742%" y="862.50"></text></g><g><title>dataclass (dataclasses.py:998) (4 samples, 1.21%)</title><rect x="12.4242%" y="868" width="1.2121%" height="15" fill="rgb(209,217,16)" fg:x="41" fg:w="4"/><text x="12.6742%" y="878.50"></text></g><g><title>wrap (dataclasses.py:1012) (4 samples, 1.21%)</title><rect x="12.4242%" y="884" width="1.2121%" height="15" fill="rgb(219,88,35)" fg:x="41" fg:w="4"/><text x="12.6742%" y="894.50"></text></g><g><title>_process_class (dataclasses.py:809) (4 samples, 1.21%)</title><rect x="12.4242%" y="900" width="1.2121%" height="15" fill="rgb(220,193,23)" fg:x="41" fg:w="4"/><text x="12.6742%" y="910.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.30%)</title><rect x="13.3333%" y="916" width="0.3030%" height="15" fill="rgb(230,90,52)" fg:x="44" fg:w="1"/><text x="13.5833%" y="926.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.30%)</title><rect x="13.3333%" y="932" width="0.3030%" height="15" fill="rgb(252,106,19)" fg:x="44" fg:w="1"/><text x="13.5833%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.24%)</title><rect x="9.6970%" y="676" width="4.2424%" height="15" fill="rgb(206,74,20)" fg:x="32" fg:w="14"/><text x="9.9470%" y="686.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.24%)</title><rect x="9.6970%" y="692" width="4.2424%" height="15" fill="rgb(230,138,44)" fg:x="32" fg:w="14"/><text x="9.9470%" y="702.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.24%)</title><rect x="9.6970%" y="708" width="4.2424%" height="15" fill="rgb(235,182,43)" fg:x="32" fg:w="14"/><text x="9.9470%" y="718.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.24%)</title><rect x="9.6970%" y="724" width="4.2424%" height="15" fill="rgb(242,16,51)" fg:x="32" fg:w="14"/><text x="9.9470%" y="734.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.24%)</title><rect x="9.6970%" y="740" width="4.2424%" height="15" fill="rgb(248,9,4)" fg:x="32" fg:w="14"/><text x="9.9470%" y="750.50">_call..</text></g><g><title><module> (distributed/worker.py:1) (5 samples, 1.52%)</title><rect x="12.4242%" y="756" width="1.5152%" height="15" fill="rgb(210,31,22)" fg:x="41" fg:w="5"/><text x="12.6742%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="12.4242%" y="772" width="1.5152%" height="15" fill="rgb(239,54,39)" fg:x="41" fg:w="5"/><text x="12.6742%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="12.4242%" y="788" width="1.5152%" height="15" fill="rgb(230,99,41)" fg:x="41" fg:w="5"/><text x="12.6742%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="12.4242%" y="804" width="1.5152%" height="15" fill="rgb(253,106,12)" fg:x="41" fg:w="5"/><text x="12.6742%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="12.4242%" y="820" width="1.5152%" height="15" fill="rgb(213,46,41)" fg:x="41" fg:w="5"/><text x="12.6742%" y="830.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="13.6364%" y="836" width="0.3030%" height="15" fill="rgb(215,133,35)" fg:x="45" fg:w="1"/><text x="13.8864%" y="846.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="13.6364%" y="852" width="0.3030%" height="15" fill="rgb(213,28,5)" fg:x="45" fg:w="1"/><text x="13.8864%" y="862.50"></text></g><g><title><module> (distributed/cluster_dump.py:1) (2 samples, 0.61%)</title><rect x="13.9394%" y="788" width="0.6061%" height="15" fill="rgb(215,77,49)" fg:x="46" fg:w="2"/><text x="14.1894%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="14.2424%" y="804" width="0.3030%" height="15" fill="rgb(248,100,22)" fg:x="47" fg:w="1"/><text x="14.4924%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="14.2424%" y="820" width="0.3030%" height="15" fill="rgb(208,67,9)" fg:x="47" fg:w="1"/><text x="14.4924%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="14.2424%" y="836" width="0.3030%" height="15" fill="rgb(219,133,21)" fg:x="47" fg:w="1"/><text x="14.4924%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="14.2424%" y="852" width="0.3030%" height="15" fill="rgb(246,46,29)" fg:x="47" fg:w="1"/><text x="14.4924%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="14.2424%" y="868" width="0.3030%" height="15" fill="rgb(246,185,52)" fg:x="47" fg:w="1"/><text x="14.4924%" y="878.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="14.2424%" y="884" width="0.3030%" height="15" fill="rgb(252,136,11)" fg:x="47" fg:w="1"/><text x="14.4924%" y="894.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="14.5455%" y="1300" width="0.3030%" height="15" fill="rgb(219,138,53)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1310.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="14.5455%" y="1316" width="0.3030%" height="15" fill="rgb(211,51,23)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1326.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="14.5455%" y="1332" width="0.3030%" height="15" fill="rgb(247,221,28)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1342.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="14.5455%" y="1348" width="0.3030%" height="15" fill="rgb(251,222,45)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1358.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="14.5455%" y="1364" width="0.3030%" height="15" fill="rgb(217,162,53)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1374.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="14.5455%" y="1380" width="0.3030%" height="15" fill="rgb(229,93,14)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1390.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="14.5455%" y="1396" width="0.3030%" height="15" fill="rgb(209,67,49)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1406.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="14.5455%" y="1412" width="0.3030%" height="15" fill="rgb(213,87,29)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1422.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="14.5455%" y="1428" width="0.3030%" height="15" fill="rgb(205,151,52)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1438.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="14.5455%" y="1444" width="0.3030%" height="15" fill="rgb(253,215,39)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1454.50"></text></g><g><title>__getitem__ (sre_parse.py:165) (1 samples, 0.30%)</title><rect x="14.5455%" y="1460" width="0.3030%" height="15" fill="rgb(221,220,41)" fg:x="48" fg:w="1"/><text x="14.7955%" y="1470.50"></text></g><g><title>Specifier (packaging/specifiers.py:107) (2 samples, 0.61%)</title><rect x="14.5455%" y="1188" width="0.6061%" height="15" fill="rgb(218,133,21)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1198.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.61%)</title><rect x="14.5455%" y="1204" width="0.6061%" height="15" fill="rgb(221,193,43)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1214.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.61%)</title><rect x="14.5455%" y="1220" width="0.6061%" height="15" fill="rgb(240,128,52)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1230.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.61%)</title><rect x="14.5455%" y="1236" width="0.6061%" height="15" fill="rgb(253,114,12)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1246.50"></text></g><g><title>parse (sre_parse.py:944) (2 samples, 0.61%)</title><rect x="14.5455%" y="1252" width="0.6061%" height="15" fill="rgb(215,223,47)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1262.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.61%)</title><rect x="14.5455%" y="1268" width="0.6061%" height="15" fill="rgb(248,225,23)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1278.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.61%)</title><rect x="14.5455%" y="1284" width="0.6061%" height="15" fill="rgb(250,108,0)" fg:x="48" fg:w="2"/><text x="14.7955%" y="1294.50"></text></g><g><title>getuntil (sre_parse.py:268) (1 samples, 0.30%)</title><rect x="14.8485%" y="1300" width="0.3030%" height="15" fill="rgb(228,208,7)" fg:x="49" fg:w="1"/><text x="15.0985%" y="1310.50"></text></g><g><title>__next (sre_parse.py:234) (1 samples, 0.30%)</title><rect x="14.8485%" y="1316" width="0.3030%" height="15" fill="rgb(244,45,10)" fg:x="49" fg:w="1"/><text x="15.0985%" y="1326.50"></text></g><g><title><module> (distributed/client.py:1) (19 samples, 5.76%)</title><rect x="9.6970%" y="660" width="5.7576%" height="15" fill="rgb(207,125,25)" fg:x="32" fg:w="19"/><text x="9.9470%" y="670.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="13.9394%" y="676" width="1.5152%" height="15" fill="rgb(210,195,18)" fg:x="46" fg:w="5"/><text x="14.1894%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="13.9394%" y="692" width="1.5152%" height="15" fill="rgb(249,80,12)" fg:x="46" fg:w="5"/><text x="14.1894%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="13.9394%" y="708" width="1.5152%" height="15" fill="rgb(221,65,9)" fg:x="46" fg:w="5"/><text x="14.1894%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="13.9394%" y="724" width="1.5152%" height="15" fill="rgb(235,49,36)" fg:x="46" fg:w="5"/><text x="14.1894%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="13.9394%" y="740" width="1.5152%" height="15" fill="rgb(225,32,20)" fg:x="46" fg:w="5"/><text x="14.1894%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="13.9394%" y="756" width="1.5152%" height="15" fill="rgb(215,141,46)" fg:x="46" fg:w="5"/><text x="14.1894%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="13.9394%" y="772" width="1.5152%" height="15" fill="rgb(250,160,47)" fg:x="46" fg:w="5"/><text x="14.1894%" y="782.50"></text></g><g><title><module> (distributed/versions.py:1) (3 samples, 0.91%)</title><rect x="14.5455%" y="788" width="0.9091%" height="15" fill="rgb(216,222,40)" fg:x="48" fg:w="3"/><text x="14.7955%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="14.5455%" y="804" width="0.9091%" height="15" fill="rgb(234,217,39)" fg:x="48" fg:w="3"/><text x="14.7955%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="14.5455%" y="820" width="0.9091%" height="15" fill="rgb(207,178,40)" fg:x="48" fg:w="3"/><text x="14.7955%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="14.5455%" y="836" width="0.9091%" height="15" fill="rgb(221,136,13)" fg:x="48" fg:w="3"/><text x="14.7955%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="14.5455%" y="852" width="0.9091%" height="15" fill="rgb(249,199,10)" fg:x="48" fg:w="3"/><text x="14.7955%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="14.5455%" y="868" width="0.9091%" height="15" fill="rgb(249,222,13)" fg:x="48" fg:w="3"/><text x="14.7955%" y="878.50"></text></g><g><title><module> (packaging/requirements.py:5) (3 samples, 0.91%)</title><rect x="14.5455%" y="884" width="0.9091%" height="15" fill="rgb(244,185,38)" fg:x="48" fg:w="3"/><text x="14.7955%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="14.5455%" y="900" width="0.9091%" height="15" fill="rgb(236,202,9)" fg:x="48" fg:w="3"/><text x="14.7955%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="14.5455%" y="916" width="0.9091%" height="15" fill="rgb(250,229,37)" fg:x="48" fg:w="3"/><text x="14.7955%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="14.5455%" y="932" width="0.9091%" height="15" fill="rgb(206,174,23)" fg:x="48" fg:w="3"/><text x="14.7955%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="14.5455%" y="948" width="0.9091%" height="15" fill="rgb(211,33,43)" fg:x="48" fg:w="3"/><text x="14.7955%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="14.5455%" y="964" width="0.9091%" height="15" fill="rgb(245,58,50)" fg:x="48" fg:w="3"/><text x="14.7955%" y="974.50"></text></g><g><title><module> (packaging/_parser.py:1) (3 samples, 0.91%)</title><rect x="14.5455%" y="980" width="0.9091%" height="15" fill="rgb(244,68,36)" fg:x="48" fg:w="3"/><text x="14.7955%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="14.5455%" y="996" width="0.9091%" height="15" fill="rgb(232,229,15)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="14.5455%" y="1012" width="0.9091%" height="15" fill="rgb(254,30,23)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="14.5455%" y="1028" width="0.9091%" height="15" fill="rgb(235,160,14)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="14.5455%" y="1044" width="0.9091%" height="15" fill="rgb(212,155,44)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="14.5455%" y="1060" width="0.9091%" height="15" fill="rgb(226,2,50)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1070.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (3 samples, 0.91%)</title><rect x="14.5455%" y="1076" width="0.9091%" height="15" fill="rgb(234,177,6)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="14.5455%" y="1092" width="0.9091%" height="15" fill="rgb(217,24,9)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="14.5455%" y="1108" width="0.9091%" height="15" fill="rgb(220,13,46)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="14.5455%" y="1124" width="0.9091%" height="15" fill="rgb(239,221,27)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="14.5455%" y="1140" width="0.9091%" height="15" fill="rgb(222,198,25)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="14.5455%" y="1156" width="0.9091%" height="15" fill="rgb(211,99,13)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1166.50"></text></g><g><title><module> (packaging/specifiers.py:4) (3 samples, 0.91%)</title><rect x="14.5455%" y="1172" width="0.9091%" height="15" fill="rgb(232,111,31)" fg:x="48" fg:w="3"/><text x="14.7955%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="15.1515%" y="1188" width="0.3030%" height="15" fill="rgb(245,82,37)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="15.1515%" y="1204" width="0.3030%" height="15" fill="rgb(227,149,46)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="15.1515%" y="1220" width="0.3030%" height="15" fill="rgb(218,36,50)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="15.1515%" y="1236" width="0.3030%" height="15" fill="rgb(226,80,48)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="15.1515%" y="1252" width="0.3030%" height="15" fill="rgb(238,224,15)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1262.50"></text></g><g><title><module> (packaging/utils.py:5) (1 samples, 0.30%)</title><rect x="15.1515%" y="1268" width="0.3030%" height="15" fill="rgb(241,136,10)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="15.1515%" y="1284" width="0.3030%" height="15" fill="rgb(208,32,45)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="15.1515%" y="1300" width="0.3030%" height="15" fill="rgb(207,135,9)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="15.1515%" y="1316" width="0.3030%" height="15" fill="rgb(206,86,44)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="15.1515%" y="1332" width="0.3030%" height="15" fill="rgb(245,177,15)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="15.1515%" y="1348" width="0.3030%" height="15" fill="rgb(206,64,50)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1358.50"></text></g><g><title><module> (packaging/tags.py:5) (1 samples, 0.30%)</title><rect x="15.1515%" y="1364" width="0.3030%" height="15" fill="rgb(234,36,40)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1374.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="15.1515%" y="1380" width="0.3030%" height="15" fill="rgb(213,64,8)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="15.1515%" y="1396" width="0.3030%" height="15" fill="rgb(210,75,36)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="15.1515%" y="1412" width="0.3030%" height="15" fill="rgb(229,88,21)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1422.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="15.1515%" y="1428" width="0.3030%" height="15" fill="rgb(252,204,47)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1438.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="15.1515%" y="1444" width="0.3030%" height="15" fill="rgb(208,77,27)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1454.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="15.1515%" y="1460" width="0.3030%" height="15" fill="rgb(221,76,26)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="15.1515%" y="1476" width="0.3030%" height="15" fill="rgb(225,139,18)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1486.50"></text></g><g><title><module> (packaging/_manylinux.py:1) (1 samples, 0.30%)</title><rect x="15.1515%" y="1492" width="0.3030%" height="15" fill="rgb(230,137,11)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1502.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="15.1515%" y="1508" width="0.3030%" height="15" fill="rgb(212,28,1)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1518.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="15.1515%" y="1524" width="0.3030%" height="15" fill="rgb(248,164,17)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1534.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="15.1515%" y="1540" width="0.3030%" height="15" fill="rgb(222,171,42)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1550.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="15.1515%" y="1556" width="0.3030%" height="15" fill="rgb(243,84,45)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="15.1515%" y="1572" width="0.3030%" height="15" fill="rgb(252,49,23)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1582.50"></text></g><g><title><module> (packaging/_elffile.py:1) (1 samples, 0.30%)</title><rect x="15.1515%" y="1588" width="0.3030%" height="15" fill="rgb(215,19,7)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1598.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.30%)</title><rect x="15.1515%" y="1604" width="0.3030%" height="15" fill="rgb(238,81,41)" fg:x="50" fg:w="1"/><text x="15.4015%" y="1614.50"></text></g><g><title><module> (distributed/actor.py:1) (21 samples, 6.36%)</title><rect x="9.6970%" y="564" width="6.3636%" height="15" fill="rgb(210,199,37)" fg:x="32" fg:w="21"/><text x="9.9470%" y="574.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 6.36%)</title><rect x="9.6970%" y="580" width="6.3636%" height="15" fill="rgb(244,192,49)" fg:x="32" fg:w="21"/><text x="9.9470%" y="590.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 6.36%)</title><rect x="9.6970%" y="596" width="6.3636%" height="15" fill="rgb(226,211,11)" fg:x="32" fg:w="21"/><text x="9.9470%" y="606.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 6.36%)</title><rect x="9.6970%" y="612" width="6.3636%" height="15" fill="rgb(236,162,54)" fg:x="32" fg:w="21"/><text x="9.9470%" y="622.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 6.36%)</title><rect x="9.6970%" y="628" width="6.3636%" height="15" fill="rgb(220,229,9)" fg:x="32" fg:w="21"/><text x="9.9470%" y="638.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 6.36%)</title><rect x="9.6970%" y="644" width="6.3636%" height="15" fill="rgb(250,87,22)" fg:x="32" fg:w="21"/><text x="9.9470%" y="654.50">_call_wi..</text></g><g><title><module> (tornado/ioloop.py:16) (2 samples, 0.61%)</title><rect x="15.4545%" y="660" width="0.6061%" height="15" fill="rgb(239,43,17)" fg:x="51" fg:w="2"/><text x="15.7045%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="15.4545%" y="676" width="0.6061%" height="15" fill="rgb(231,177,25)" fg:x="51" fg:w="2"/><text x="15.7045%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="15.4545%" y="692" width="0.6061%" height="15" fill="rgb(219,179,1)" fg:x="51" fg:w="2"/><text x="15.7045%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="15.4545%" y="708" width="0.6061%" height="15" fill="rgb(238,219,53)" fg:x="51" fg:w="2"/><text x="15.7045%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="15.4545%" y="724" width="0.6061%" height="15" fill="rgb(232,167,36)" fg:x="51" fg:w="2"/><text x="15.7045%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="15.4545%" y="740" width="0.6061%" height="15" fill="rgb(244,19,51)" fg:x="51" fg:w="2"/><text x="15.7045%" y="750.50"></text></g><g><title><module> (tornado/concurrent.py:15) (2 samples, 0.61%)</title><rect x="15.4545%" y="756" width="0.6061%" height="15" fill="rgb(224,6,22)" fg:x="51" fg:w="2"/><text x="15.7045%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="15.4545%" y="772" width="0.6061%" height="15" fill="rgb(224,145,5)" fg:x="51" fg:w="2"/><text x="15.7045%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="15.4545%" y="788" width="0.6061%" height="15" fill="rgb(234,130,49)" fg:x="51" fg:w="2"/><text x="15.7045%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="15.4545%" y="804" width="0.6061%" height="15" fill="rgb(254,6,2)" fg:x="51" fg:w="2"/><text x="15.7045%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="15.4545%" y="820" width="0.6061%" height="15" fill="rgb(208,96,46)" fg:x="51" fg:w="2"/><text x="15.7045%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="15.4545%" y="836" width="0.6061%" height="15" fill="rgb(239,3,39)" fg:x="51" fg:w="2"/><text x="15.7045%" y="846.50"></text></g><g><title><module> (tornado/log.py:15) (2 samples, 0.61%)</title><rect x="15.4545%" y="852" width="0.6061%" height="15" fill="rgb(233,210,1)" fg:x="51" fg:w="2"/><text x="15.7045%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="15.4545%" y="868" width="0.6061%" height="15" fill="rgb(244,137,37)" fg:x="51" fg:w="2"/><text x="15.7045%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="15.4545%" y="884" width="0.6061%" height="15" fill="rgb(240,136,2)" fg:x="51" fg:w="2"/><text x="15.7045%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="15.4545%" y="900" width="0.6061%" height="15" fill="rgb(239,18,37)" fg:x="51" fg:w="2"/><text x="15.7045%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="15.4545%" y="916" width="0.6061%" height="15" fill="rgb(218,185,22)" fg:x="51" fg:w="2"/><text x="15.7045%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="15.4545%" y="932" width="0.6061%" height="15" fill="rgb(225,218,4)" fg:x="51" fg:w="2"/><text x="15.7045%" y="942.50"></text></g><g><title><module> (curses/__init__.py:1) (2 samples, 0.61%)</title><rect x="15.4545%" y="948" width="0.6061%" height="15" fill="rgb(230,182,32)" fg:x="51" fg:w="2"/><text x="15.7045%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="15.4545%" y="964" width="0.6061%" height="15" fill="rgb(242,56,43)" fg:x="51" fg:w="2"/><text x="15.7045%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="15.4545%" y="980" width="0.6061%" height="15" fill="rgb(233,99,24)" fg:x="51" fg:w="2"/><text x="15.7045%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="15.4545%" y="996" width="0.6061%" height="15" fill="rgb(234,209,42)" fg:x="51" fg:w="2"/><text x="15.7045%" y="1006.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="15.4545%" y="1012" width="0.6061%" height="15" fill="rgb(227,7,12)" fg:x="51" fg:w="2"/><text x="15.7045%" y="1022.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="15.4545%" y="1028" width="0.6061%" height="15" fill="rgb(245,203,43)" fg:x="51" fg:w="2"/><text x="15.7045%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="15.4545%" y="1044" width="0.6061%" height="15" fill="rgb(238,205,33)" fg:x="51" fg:w="2"/><text x="15.7045%" y="1054.50"></text></g><g><title><module> (distributed/deploy/adaptive.py:1) (1 samples, 0.30%)</title><rect x="16.0606%" y="660" width="0.3030%" height="15" fill="rgb(231,56,7)" fg:x="53" fg:w="1"/><text x="16.3106%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="16.0606%" y="676" width="0.3030%" height="15" fill="rgb(244,186,29)" fg:x="53" fg:w="1"/><text x="16.3106%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="16.0606%" y="692" width="0.3030%" height="15" fill="rgb(234,111,31)" fg:x="53" fg:w="1"/><text x="16.3106%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="16.0606%" y="708" width="0.3030%" height="15" fill="rgb(241,149,10)" fg:x="53" fg:w="1"/><text x="16.3106%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="16.0606%" y="724" width="0.3030%" height="15" fill="rgb(249,206,44)" fg:x="53" fg:w="1"/><text x="16.3106%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="16.0606%" y="740" width="0.3030%" height="15" fill="rgb(251,153,30)" fg:x="53" fg:w="1"/><text x="16.3106%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="16.0606%" y="756" width="0.3030%" height="15" fill="rgb(239,152,38)" fg:x="53" fg:w="1"/><text x="16.3106%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (23 samples, 6.97%)</title><rect x="9.6970%" y="484" width="6.9697%" height="15" fill="rgb(249,139,47)" fg:x="32" fg:w="23"/><text x="9.9470%" y="494.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (23 samples, 6.97%)</title><rect x="9.6970%" y="500" width="6.9697%" height="15" fill="rgb(244,64,35)" fg:x="32" fg:w="23"/><text x="9.9470%" y="510.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (23 samples, 6.97%)</title><rect x="9.6970%" y="516" width="6.9697%" height="15" fill="rgb(216,46,15)" fg:x="32" fg:w="23"/><text x="9.9470%" y="526.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (23 samples, 6.97%)</title><rect x="9.6970%" y="532" width="6.9697%" height="15" fill="rgb(250,74,19)" fg:x="32" fg:w="23"/><text x="9.9470%" y="542.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (23 samples, 6.97%)</title><rect x="9.6970%" y="548" width="6.9697%" height="15" fill="rgb(249,42,33)" fg:x="32" fg:w="23"/><text x="9.9470%" y="558.50">_call_wit..</text></g><g><title><module> (distributed/deploy/__init__.py:1) (2 samples, 0.61%)</title><rect x="16.0606%" y="564" width="0.6061%" height="15" fill="rgb(242,149,17)" fg:x="53" fg:w="2"/><text x="16.3106%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="16.0606%" y="580" width="0.6061%" height="15" fill="rgb(244,29,21)" fg:x="53" fg:w="2"/><text x="16.3106%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="16.0606%" y="596" width="0.6061%" height="15" fill="rgb(220,130,37)" fg:x="53" fg:w="2"/><text x="16.3106%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="16.0606%" y="612" width="0.6061%" height="15" fill="rgb(211,67,2)" fg:x="53" fg:w="2"/><text x="16.3106%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="16.0606%" y="628" width="0.6061%" height="15" fill="rgb(235,68,52)" fg:x="53" fg:w="2"/><text x="16.3106%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="16.0606%" y="644" width="0.6061%" height="15" fill="rgb(246,142,3)" fg:x="53" fg:w="2"/><text x="16.3106%" y="654.50"></text></g><g><title><module> (distributed/deploy/local.py:1) (1 samples, 0.30%)</title><rect x="16.3636%" y="660" width="0.3030%" height="15" fill="rgb(241,25,7)" fg:x="54" fg:w="1"/><text x="16.6136%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="16.3636%" y="676" width="0.3030%" height="15" fill="rgb(242,119,39)" fg:x="54" fg:w="1"/><text x="16.6136%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="16.3636%" y="692" width="0.3030%" height="15" fill="rgb(241,98,45)" fg:x="54" fg:w="1"/><text x="16.6136%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="16.3636%" y="708" width="0.3030%" height="15" fill="rgb(254,28,30)" fg:x="54" fg:w="1"/><text x="16.6136%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="16.3636%" y="724" width="0.3030%" height="15" fill="rgb(241,142,54)" fg:x="54" fg:w="1"/><text x="16.6136%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="16.3636%" y="740" width="0.3030%" height="15" fill="rgb(222,85,15)" fg:x="54" fg:w="1"/><text x="16.6136%" y="750.50"></text></g><g><title><module> (distributed/deploy/spec.py:1) (1 samples, 0.30%)</title><rect x="16.3636%" y="756" width="0.3030%" height="15" fill="rgb(210,85,47)" fg:x="54" fg:w="1"/><text x="16.6136%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="16.3636%" y="772" width="0.3030%" height="15" fill="rgb(224,206,25)" fg:x="54" fg:w="1"/><text x="16.6136%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="16.3636%" y="788" width="0.3030%" height="15" fill="rgb(243,201,19)" fg:x="54" fg:w="1"/><text x="16.6136%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="16.3636%" y="804" width="0.3030%" height="15" fill="rgb(236,59,4)" fg:x="54" fg:w="1"/><text x="16.6136%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="16.3636%" y="820" width="0.3030%" height="15" fill="rgb(254,179,45)" fg:x="54" fg:w="1"/><text x="16.6136%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="16.3636%" y="836" width="0.3030%" height="15" fill="rgb(226,14,10)" fg:x="54" fg:w="1"/><text x="16.6136%" y="846.50"></text></g><g><title><module> (distributed/scheduler.py:1) (1 samples, 0.30%)</title><rect x="16.3636%" y="852" width="0.3030%" height="15" fill="rgb(244,27,41)" fg:x="54" fg:w="1"/><text x="16.6136%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="16.3636%" y="868" width="0.3030%" height="15" fill="rgb(235,35,32)" fg:x="54" fg:w="1"/><text x="16.6136%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="16.3636%" y="884" width="0.3030%" height="15" fill="rgb(218,68,31)" fg:x="54" fg:w="1"/><text x="16.6136%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="16.3636%" y="900" width="0.3030%" height="15" fill="rgb(207,120,37)" fg:x="54" fg:w="1"/><text x="16.6136%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="16.3636%" y="916" width="0.3030%" height="15" fill="rgb(227,98,0)" fg:x="54" fg:w="1"/><text x="16.6136%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="16.3636%" y="932" width="0.3030%" height="15" fill="rgb(207,7,3)" fg:x="54" fg:w="1"/><text x="16.6136%" y="942.50"></text></g><g><title><module> (distributed/stealing.py:1) (1 samples, 0.30%)</title><rect x="16.3636%" y="948" width="0.3030%" height="15" fill="rgb(206,98,19)" fg:x="54" fg:w="1"/><text x="16.6136%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="16.6667%" y="612" width="0.6061%" height="15" fill="rgb(217,5,26)" fg:x="55" fg:w="2"/><text x="16.9167%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="16.6667%" y="628" width="0.6061%" height="15" fill="rgb(235,190,38)" fg:x="55" fg:w="2"/><text x="16.9167%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="16.6667%" y="644" width="0.6061%" height="15" fill="rgb(247,86,24)" fg:x="55" fg:w="2"/><text x="16.9167%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="16.6667%" y="660" width="0.6061%" height="15" fill="rgb(205,101,16)" fg:x="55" fg:w="2"/><text x="16.9167%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="16.6667%" y="676" width="0.6061%" height="15" fill="rgb(246,168,33)" fg:x="55" fg:w="2"/><text x="16.9167%" y="686.50"></text></g><g><title><module> (logging/config.py:17) (2 samples, 0.61%)</title><rect x="16.6667%" y="692" width="0.6061%" height="15" fill="rgb(231,114,1)" fg:x="55" fg:w="2"/><text x="16.9167%" y="702.50"></text></g><g><title>BaseConfigurator (logging/config.py:353) (2 samples, 0.61%)</title><rect x="16.6667%" y="708" width="0.6061%" height="15" fill="rgb(207,184,53)" fg:x="55" fg:w="2"/><text x="16.9167%" y="718.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.61%)</title><rect x="16.6667%" y="724" width="0.6061%" height="15" fill="rgb(224,95,51)" fg:x="55" fg:w="2"/><text x="16.9167%" y="734.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.61%)</title><rect x="16.6667%" y="740" width="0.6061%" height="15" fill="rgb(212,188,45)" fg:x="55" fg:w="2"/><text x="16.9167%" y="750.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.61%)</title><rect x="16.6667%" y="756" width="0.6061%" height="15" fill="rgb(223,154,38)" fg:x="55" fg:w="2"/><text x="16.9167%" y="766.50"></text></g><g><title>parse (sre_parse.py:944) (2 samples, 0.61%)</title><rect x="16.6667%" y="772" width="0.6061%" height="15" fill="rgb(251,22,52)" fg:x="55" fg:w="2"/><text x="16.9167%" y="782.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.61%)</title><rect x="16.6667%" y="788" width="0.6061%" height="15" fill="rgb(229,209,22)" fg:x="55" fg:w="2"/><text x="16.9167%" y="798.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.61%)</title><rect x="16.6667%" y="804" width="0.6061%" height="15" fill="rgb(234,138,34)" fg:x="55" fg:w="2"/><text x="16.9167%" y="814.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="16.9697%" y="820" width="0.3030%" height="15" fill="rgb(212,95,11)" fg:x="56" fg:w="1"/><text x="17.2197%" y="830.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="16.9697%" y="836" width="0.3030%" height="15" fill="rgb(240,179,47)" fg:x="56" fg:w="1"/><text x="17.2197%" y="846.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.30%)</title><rect x="17.5758%" y="852" width="0.3030%" height="15" fill="rgb(240,163,11)" fg:x="58" fg:w="1"/><text x="17.8258%" y="862.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.30%)</title><rect x="17.5758%" y="868" width="0.3030%" height="15" fill="rgb(236,37,12)" fg:x="58" fg:w="1"/><text x="17.8258%" y="878.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.30%)</title><rect x="17.5758%" y="884" width="0.3030%" height="15" fill="rgb(232,164,16)" fg:x="58" fg:w="1"/><text x="17.8258%" y="894.50"></text></g><g><title><module> (dask/distributed.py:3) (28 samples, 8.48%)</title><rect x="9.6970%" y="372" width="8.4848%" height="15" fill="rgb(244,205,15)" fg:x="32" fg:w="28"/><text x="9.9470%" y="382.50"><module> (da..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (28 samples, 8.48%)</title><rect x="9.6970%" y="388" width="8.4848%" height="15" fill="rgb(223,117,47)" fg:x="32" fg:w="28"/><text x="9.9470%" y="398.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (28 samples, 8.48%)</title><rect x="9.6970%" y="404" width="8.4848%" height="15" fill="rgb(244,107,35)" fg:x="32" fg:w="28"/><text x="9.9470%" y="414.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (28 samples, 8.48%)</title><rect x="9.6970%" y="420" width="8.4848%" height="15" fill="rgb(205,140,8)" fg:x="32" fg:w="28"/><text x="9.9470%" y="430.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (28 samples, 8.48%)</title><rect x="9.6970%" y="436" width="8.4848%" height="15" fill="rgb(228,84,46)" fg:x="32" fg:w="28"/><text x="9.9470%" y="446.50">exec_module ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (28 samples, 8.48%)</title><rect x="9.6970%" y="452" width="8.4848%" height="15" fill="rgb(254,188,9)" fg:x="32" fg:w="28"/><text x="9.9470%" y="462.50">_call_with_f..</text></g><g><title><module> (distributed/__init__.py:1) (28 samples, 8.48%)</title><rect x="9.6970%" y="468" width="8.4848%" height="15" fill="rgb(206,112,54)" fg:x="32" fg:w="28"/><text x="9.9470%" y="478.50"><module> (di..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="16.6667%" y="484" width="1.5152%" height="15" fill="rgb(216,84,49)" fg:x="55" fg:w="5"/><text x="16.9167%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="16.6667%" y="500" width="1.5152%" height="15" fill="rgb(214,194,35)" fg:x="55" fg:w="5"/><text x="16.9167%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="16.6667%" y="516" width="1.5152%" height="15" fill="rgb(249,28,3)" fg:x="55" fg:w="5"/><text x="16.9167%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="16.6667%" y="532" width="1.5152%" height="15" fill="rgb(222,56,52)" fg:x="55" fg:w="5"/><text x="16.9167%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="16.6667%" y="548" width="1.5152%" height="15" fill="rgb(245,217,50)" fg:x="55" fg:w="5"/><text x="16.9167%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="16.6667%" y="564" width="1.5152%" height="15" fill="rgb(213,201,24)" fg:x="55" fg:w="5"/><text x="16.9167%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="16.6667%" y="580" width="1.5152%" height="15" fill="rgb(248,116,28)" fg:x="55" fg:w="5"/><text x="16.9167%" y="590.50"></text></g><g><title><module> (distributed/config.py:1) (5 samples, 1.52%)</title><rect x="16.6667%" y="596" width="1.5152%" height="15" fill="rgb(219,72,43)" fg:x="55" fg:w="5"/><text x="16.9167%" y="606.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (3 samples, 0.91%)</title><rect x="17.2727%" y="612" width="0.9091%" height="15" fill="rgb(209,138,14)" fg:x="57" fg:w="3"/><text x="17.5227%" y="622.50"></text></g><g><title>load (yaml/__init__.py:74) (3 samples, 0.91%)</title><rect x="17.2727%" y="628" width="0.9091%" height="15" fill="rgb(222,18,33)" fg:x="57" fg:w="3"/><text x="17.5227%" y="638.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (3 samples, 0.91%)</title><rect x="17.2727%" y="644" width="0.9091%" height="15" fill="rgb(213,199,7)" fg:x="57" fg:w="3"/><text x="17.5227%" y="654.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (3 samples, 0.91%)</title><rect x="17.2727%" y="660" width="0.9091%" height="15" fill="rgb(250,110,10)" fg:x="57" fg:w="3"/><text x="17.5227%" y="670.50"></text></g><g><title>compose_document (yaml/composer.py:50) (3 samples, 0.91%)</title><rect x="17.2727%" y="676" width="0.9091%" height="15" fill="rgb(248,123,6)" fg:x="57" fg:w="3"/><text x="17.5227%" y="686.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.91%)</title><rect x="17.2727%" y="692" width="0.9091%" height="15" fill="rgb(206,91,31)" fg:x="57" fg:w="3"/><text x="17.5227%" y="702.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.91%)</title><rect x="17.2727%" y="708" width="0.9091%" height="15" fill="rgb(211,154,13)" fg:x="57" fg:w="3"/><text x="17.5227%" y="718.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.91%)</title><rect x="17.2727%" y="724" width="0.9091%" height="15" fill="rgb(225,148,7)" fg:x="57" fg:w="3"/><text x="17.5227%" y="734.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.91%)</title><rect x="17.2727%" y="740" width="0.9091%" height="15" fill="rgb(220,160,43)" fg:x="57" fg:w="3"/><text x="17.5227%" y="750.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.91%)</title><rect x="17.2727%" y="756" width="0.9091%" height="15" fill="rgb(213,52,39)" fg:x="57" fg:w="3"/><text x="17.5227%" y="766.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.91%)</title><rect x="17.2727%" y="772" width="0.9091%" height="15" fill="rgb(243,137,7)" fg:x="57" fg:w="3"/><text x="17.5227%" y="782.50"></text></g><g><title>check_event (yaml/parser.py:94) (3 samples, 0.91%)</title><rect x="17.2727%" y="788" width="0.9091%" height="15" fill="rgb(230,79,13)" fg:x="57" fg:w="3"/><text x="17.5227%" y="798.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (3 samples, 0.91%)</title><rect x="17.2727%" y="804" width="0.9091%" height="15" fill="rgb(247,105,23)" fg:x="57" fg:w="3"/><text x="17.5227%" y="814.50"></text></g><g><title>check_token (yaml/scanner.py:113) (3 samples, 0.91%)</title><rect x="17.2727%" y="820" width="0.9091%" height="15" fill="rgb(223,179,41)" fg:x="57" fg:w="3"/><text x="17.5227%" y="830.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (3 samples, 0.91%)</title><rect x="17.2727%" y="836" width="0.9091%" height="15" fill="rgb(218,9,34)" fg:x="57" fg:w="3"/><text x="17.5227%" y="846.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.30%)</title><rect x="17.8788%" y="852" width="0.3030%" height="15" fill="rgb(222,106,8)" fg:x="59" fg:w="1"/><text x="18.1288%" y="862.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.30%)</title><rect x="17.8788%" y="868" width="0.3030%" height="15" fill="rgb(211,220,0)" fg:x="59" fg:w="1"/><text x="18.1288%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="18.1818%" y="836" width="0.6061%" height="15" fill="rgb(229,52,16)" fg:x="60" fg:w="2"/><text x="18.4318%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="18.1818%" y="852" width="0.6061%" height="15" fill="rgb(212,155,18)" fg:x="60" fg:w="2"/><text x="18.4318%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="18.1818%" y="868" width="0.6061%" height="15" fill="rgb(242,21,14)" fg:x="60" fg:w="2"/><text x="18.4318%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="18.1818%" y="884" width="0.6061%" height="15" fill="rgb(222,19,48)" fg:x="60" fg:w="2"/><text x="18.4318%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="18.1818%" y="900" width="0.6061%" height="15" fill="rgb(232,45,27)" fg:x="60" fg:w="2"/><text x="18.4318%" y="910.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="18.1818%" y="916" width="0.6061%" height="15" fill="rgb(249,103,42)" fg:x="60" fg:w="2"/><text x="18.4318%" y="926.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="18.1818%" y="932" width="0.6061%" height="15" fill="rgb(246,81,33)" fg:x="60" fg:w="2"/><text x="18.4318%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="18.1818%" y="948" width="0.6061%" height="15" fill="rgb(252,33,42)" fg:x="60" fg:w="2"/><text x="18.4318%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (5 samples, 1.52%)</title><rect x="18.1818%" y="756" width="1.5152%" height="15" fill="rgb(209,212,41)" fg:x="60" fg:w="5"/><text x="18.4318%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="18.1818%" y="772" width="1.5152%" height="15" fill="rgb(207,154,6)" fg:x="60" fg:w="5"/><text x="18.4318%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="18.1818%" y="788" width="1.5152%" height="15" fill="rgb(223,64,47)" fg:x="60" fg:w="5"/><text x="18.4318%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="18.1818%" y="804" width="1.5152%" height="15" fill="rgb(211,161,38)" fg:x="60" fg:w="5"/><text x="18.4318%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="18.1818%" y="820" width="1.5152%" height="15" fill="rgb(219,138,40)" fg:x="60" fg:w="5"/><text x="18.4318%" y="830.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.91%)</title><rect x="18.7879%" y="836" width="0.9091%" height="15" fill="rgb(241,228,46)" fg:x="62" fg:w="3"/><text x="19.0379%" y="846.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.91%)</title><rect x="18.7879%" y="852" width="0.9091%" height="15" fill="rgb(223,209,38)" fg:x="62" fg:w="3"/><text x="19.0379%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="18.7879%" y="868" width="0.9091%" height="15" fill="rgb(236,164,45)" fg:x="62" fg:w="3"/><text x="19.0379%" y="878.50"></text></g><g><title><module> (dask/dataframe/io/parquet/arrow.py:1) (6 samples, 1.82%)</title><rect x="18.1818%" y="564" width="1.8182%" height="15" fill="rgb(231,15,5)" fg:x="60" fg:w="6"/><text x="18.4318%" y="574.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.82%)</title><rect x="18.1818%" y="580" width="1.8182%" height="15" fill="rgb(252,35,15)" fg:x="60" fg:w="6"/><text x="18.4318%" y="590.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="18.1818%" y="596" width="1.8182%" height="15" fill="rgb(248,181,18)" fg:x="60" fg:w="6"/><text x="18.4318%" y="606.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="18.1818%" y="612" width="1.8182%" height="15" fill="rgb(233,39,42)" fg:x="60" fg:w="6"/><text x="18.4318%" y="622.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="18.1818%" y="628" width="1.8182%" height="15" fill="rgb(238,110,33)" fg:x="60" fg:w="6"/><text x="18.4318%" y="638.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="18.1818%" y="644" width="1.8182%" height="15" fill="rgb(233,195,10)" fg:x="60" fg:w="6"/><text x="18.4318%" y="654.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="18.1818%" y="660" width="1.8182%" height="15" fill="rgb(254,105,3)" fg:x="60" fg:w="6"/><text x="18.4318%" y="670.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="18.1818%" y="676" width="1.8182%" height="15" fill="rgb(221,225,9)" fg:x="60" fg:w="6"/><text x="18.4318%" y="686.50">_..</text></g><g><title><module> (pyarrow/dataset.py:18) (6 samples, 1.82%)</title><rect x="18.1818%" y="692" width="1.8182%" height="15" fill="rgb(224,227,45)" fg:x="60" fg:w="6"/><text x="18.4318%" y="702.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="18.1818%" y="708" width="1.8182%" height="15" fill="rgb(229,198,43)" fg:x="60" fg:w="6"/><text x="18.4318%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="18.1818%" y="724" width="1.8182%" height="15" fill="rgb(206,209,35)" fg:x="60" fg:w="6"/><text x="18.4318%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="18.1818%" y="740" width="1.8182%" height="15" fill="rgb(245,195,53)" fg:x="60" fg:w="6"/><text x="18.4318%" y="750.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="19.6970%" y="756" width="0.3030%" height="15" fill="rgb(240,92,26)" fg:x="65" fg:w="1"/><text x="19.9470%" y="766.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="19.6970%" y="772" width="0.3030%" height="15" fill="rgb(207,40,23)" fg:x="65" fg:w="1"/><text x="19.9470%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="19.6970%" y="788" width="0.3030%" height="15" fill="rgb(223,111,35)" fg:x="65" fg:w="1"/><text x="19.9470%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="18.1818%" y="388" width="2.7273%" height="15" fill="rgb(229,147,28)" fg:x="60" fg:w="9"/><text x="18.4318%" y="398.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="18.1818%" y="404" width="2.7273%" height="15" fill="rgb(211,29,28)" fg:x="60" fg:w="9"/><text x="18.4318%" y="414.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="18.1818%" y="420" width="2.7273%" height="15" fill="rgb(228,72,33)" fg:x="60" fg:w="9"/><text x="18.4318%" y="430.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="18.1818%" y="436" width="2.7273%" height="15" fill="rgb(205,214,31)" fg:x="60" fg:w="9"/><text x="18.4318%" y="446.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="18.1818%" y="452" width="2.7273%" height="15" fill="rgb(224,111,15)" fg:x="60" fg:w="9"/><text x="18.4318%" y="462.50">_c..</text></g><g><title><module> (dask_sql/physical/utils/statistics.py:1) (9 samples, 2.73%)</title><rect x="18.1818%" y="468" width="2.7273%" height="15" fill="rgb(253,21,26)" fg:x="60" fg:w="9"/><text x="18.4318%" y="478.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="18.1818%" y="484" width="2.7273%" height="15" fill="rgb(245,139,43)" fg:x="60" fg:w="9"/><text x="18.4318%" y="494.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="18.1818%" y="500" width="2.7273%" height="15" fill="rgb(252,170,7)" fg:x="60" fg:w="9"/><text x="18.4318%" y="510.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="18.1818%" y="516" width="2.7273%" height="15" fill="rgb(231,118,14)" fg:x="60" fg:w="9"/><text x="18.4318%" y="526.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="18.1818%" y="532" width="2.7273%" height="15" fill="rgb(238,83,0)" fg:x="60" fg:w="9"/><text x="18.4318%" y="542.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="18.1818%" y="548" width="2.7273%" height="15" fill="rgb(221,39,39)" fg:x="60" fg:w="9"/><text x="18.4318%" y="558.50">_c..</text></g><g><title><module> (pyarrow/parquet/__init__.py:20) (3 samples, 0.91%)</title><rect x="20.0000%" y="564" width="0.9091%" height="15" fill="rgb(222,119,46)" fg:x="66" fg:w="3"/><text x="20.2500%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="20.0000%" y="580" width="0.9091%" height="15" fill="rgb(222,165,49)" fg:x="66" fg:w="3"/><text x="20.2500%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="20.0000%" y="596" width="0.9091%" height="15" fill="rgb(219,113,52)" fg:x="66" fg:w="3"/><text x="20.2500%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="20.0000%" y="612" width="0.9091%" height="15" fill="rgb(214,7,15)" fg:x="66" fg:w="3"/><text x="20.2500%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="20.0000%" y="628" width="0.9091%" height="15" fill="rgb(235,32,4)" fg:x="66" fg:w="3"/><text x="20.2500%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="20.0000%" y="644" width="0.9091%" height="15" fill="rgb(238,90,54)" fg:x="66" fg:w="3"/><text x="20.2500%" y="654.50"></text></g><g><title><module> (pyarrow/parquet/core.py:19) (3 samples, 0.91%)</title><rect x="20.0000%" y="660" width="0.9091%" height="15" fill="rgb(213,208,19)" fg:x="66" fg:w="3"/><text x="20.2500%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="20.0000%" y="676" width="0.9091%" height="15" fill="rgb(233,156,4)" fg:x="66" fg:w="3"/><text x="20.2500%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="20.0000%" y="692" width="0.9091%" height="15" fill="rgb(207,194,5)" fg:x="66" fg:w="3"/><text x="20.2500%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="20.0000%" y="708" width="0.9091%" height="15" fill="rgb(206,111,30)" fg:x="66" fg:w="3"/><text x="20.2500%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="20.0000%" y="724" width="0.9091%" height="15" fill="rgb(243,70,54)" fg:x="66" fg:w="3"/><text x="20.2500%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="20.0000%" y="740" width="0.9091%" height="15" fill="rgb(242,28,8)" fg:x="66" fg:w="3"/><text x="20.2500%" y="750.50"></text></g><g><title><module> (pyarrow/fs.py:18) (3 samples, 0.91%)</title><rect x="20.0000%" y="756" width="0.9091%" height="15" fill="rgb(219,106,18)" fg:x="66" fg:w="3"/><text x="20.2500%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="20.0000%" y="772" width="0.9091%" height="15" fill="rgb(244,222,10)" fg:x="66" fg:w="3"/><text x="20.2500%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="20.0000%" y="788" width="0.9091%" height="15" fill="rgb(236,179,52)" fg:x="66" fg:w="3"/><text x="20.2500%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="20.0000%" y="804" width="0.9091%" height="15" fill="rgb(213,23,39)" fg:x="66" fg:w="3"/><text x="20.2500%" y="814.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.91%)</title><rect x="20.0000%" y="820" width="0.9091%" height="15" fill="rgb(238,48,10)" fg:x="66" fg:w="3"/><text x="20.2500%" y="830.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.91%)</title><rect x="20.0000%" y="836" width="0.9091%" height="15" fill="rgb(251,196,23)" fg:x="66" fg:w="3"/><text x="20.2500%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="20.0000%" y="852" width="0.9091%" height="15" fill="rgb(250,152,24)" fg:x="66" fg:w="3"/><text x="20.2500%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="20.9091%" y="804" width="0.3030%" height="15" fill="rgb(209,150,17)" fg:x="69" fg:w="1"/><text x="21.1591%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="20.9091%" y="820" width="0.3030%" height="15" fill="rgb(234,202,34)" fg:x="69" fg:w="1"/><text x="21.1591%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="20.9091%" y="836" width="0.3030%" height="15" fill="rgb(253,148,53)" fg:x="69" fg:w="1"/><text x="21.1591%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="20.9091%" y="852" width="0.3030%" height="15" fill="rgb(218,129,16)" fg:x="69" fg:w="1"/><text x="21.1591%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="20.9091%" y="868" width="0.3030%" height="15" fill="rgb(216,85,19)" fg:x="69" fg:w="1"/><text x="21.1591%" y="878.50"></text></g><g><title><module> (sqlalchemy/engine/create.py:8) (1 samples, 0.30%)</title><rect x="20.9091%" y="884" width="0.3030%" height="15" fill="rgb(235,228,7)" fg:x="69" fg:w="1"/><text x="21.1591%" y="894.50"></text></g><g><title>decorate (sqlalchemy/util/deprecations.py:224) (1 samples, 0.30%)</title><rect x="20.9091%" y="900" width="0.3030%" height="15" fill="rgb(245,175,0)" fg:x="69" fg:w="1"/><text x="21.1591%" y="910.50"></text></g><g><title>inject_param_text (sqlalchemy/util/langhelpers.py:2144) (1 samples, 0.30%)</title><rect x="20.9091%" y="916" width="0.3030%" height="15" fill="rgb(208,168,36)" fg:x="69" fg:w="1"/><text x="21.1591%" y="926.50"></text></g><g><title>__init_subclass__ (sqlalchemy/event/base.py:246) (1 samples, 0.30%)</title><rect x="21.2121%" y="932" width="0.3030%" height="15" fill="rgb(246,171,24)" fg:x="70" fg:w="1"/><text x="21.4621%" y="942.50"></text></g><g><title>_create_dispatcher_class (sqlalchemy/event/base.py:284) (1 samples, 0.30%)</title><rect x="21.2121%" y="948" width="0.3030%" height="15" fill="rgb(215,142,24)" fg:x="70" fg:w="1"/><text x="21.4621%" y="958.50"></text></g><g><title>__init__ (sqlalchemy/event/attr.py:135) (1 samples, 0.30%)</title><rect x="21.2121%" y="964" width="0.3030%" height="15" fill="rgb(250,187,7)" fg:x="70" fg:w="1"/><text x="21.4621%" y="974.50"></text></g><g><title>_augment_fn_docs (sqlalchemy/event/legacy.py:220) (1 samples, 0.30%)</title><rect x="21.2121%" y="980" width="0.3030%" height="15" fill="rgb(228,66,33)" fg:x="70" fg:w="1"/><text x="21.4621%" y="990.50"></text></g><g><title>inject_docstring_text (sqlalchemy/util/langhelpers.py:2121) (1 samples, 0.30%)</title><rect x="21.2121%" y="996" width="0.3030%" height="15" fill="rgb(234,215,21)" fg:x="70" fg:w="1"/><text x="21.4621%" y="1006.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="21.2121%" y="1012" width="0.3030%" height="15" fill="rgb(222,191,20)" fg:x="70" fg:w="1"/><text x="21.4621%" y="1022.50"></text></g><g><title>__go (sqlalchemy/sql/__init__.py:111) (1 samples, 0.30%)</title><rect x="21.5152%" y="1268" width="0.3030%" height="15" fill="rgb(245,79,54)" fg:x="71" fg:w="1"/><text x="21.7652%" y="1278.50"></text></g><g><title>_prepare_annotations (sqlalchemy/sql/annotation.py:589) (1 samples, 0.30%)</title><rect x="21.5152%" y="1284" width="0.3030%" height="15" fill="rgb(240,10,37)" fg:x="71" fg:w="1"/><text x="21.7652%" y="1294.50"></text></g><g><title>_new_annotation_type (sqlalchemy/sql/annotation.py:542) (1 samples, 0.30%)</title><rect x="21.5152%" y="1300" width="0.3030%" height="15" fill="rgb(214,192,32)" fg:x="71" fg:w="1"/><text x="21.7652%" y="1310.50"></text></g><g><title><module> (sqlalchemy/sql/base.py:9) (1 samples, 0.30%)</title><rect x="21.8182%" y="1348" width="0.3030%" height="15" fill="rgb(209,36,54)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="21.8182%" y="1364" width="0.3030%" height="15" fill="rgb(220,10,11)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1374.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="21.8182%" y="1380" width="0.3030%" height="15" fill="rgb(221,106,17)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1390.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="21.8182%" y="1396" width="0.3030%" height="15" fill="rgb(251,142,44)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1406.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="21.8182%" y="1412" width="0.3030%" height="15" fill="rgb(238,13,15)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1422.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="21.8182%" y="1428" width="0.3030%" height="15" fill="rgb(208,107,27)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1438.50"></text></g><g><title><module> (sqlalchemy/sql/traversals.py:9) (1 samples, 0.30%)</title><rect x="21.8182%" y="1444" width="0.3030%" height="15" fill="rgb(205,136,37)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1454.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="21.8182%" y="1460" width="0.3030%" height="15" fill="rgb(250,205,27)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="21.8182%" y="1476" width="0.3030%" height="15" fill="rgb(210,80,43)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="21.8182%" y="1492" width="0.3030%" height="15" fill="rgb(247,160,36)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="21.8182%" y="1508" width="0.3030%" height="15" fill="rgb(234,13,49)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="21.8182%" y="1524" width="0.3030%" height="15" fill="rgb(234,122,0)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="21.8182%" y="1540" width="0.3030%" height="15" fill="rgb(207,146,38)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1550.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="21.8182%" y="1556" width="0.3030%" height="15" fill="rgb(207,177,25)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1566.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="21.8182%" y="1572" width="0.3030%" height="15" fill="rgb(211,178,42)" fg:x="72" fg:w="1"/><text x="22.0682%" y="1582.50"></text></g><g><title><module> (sqlalchemy/sql/ddl.py:9) (1 samples, 0.30%)</title><rect x="22.4242%" y="1828" width="0.3030%" height="15" fill="rgb(230,69,54)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="22.4242%" y="1844" width="0.3030%" height="15" fill="rgb(214,135,41)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="22.4242%" y="1860" width="0.3030%" height="15" fill="rgb(237,67,25)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="22.4242%" y="1876" width="0.3030%" height="15" fill="rgb(222,189,50)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="22.4242%" y="1892" width="0.3030%" height="15" fill="rgb(245,148,34)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="22.4242%" y="1908" width="0.3030%" height="15" fill="rgb(222,29,6)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1918.50"></text></g><g><title><module> (sqlalchemy/sql/elements.py:9) (1 samples, 0.30%)</title><rect x="22.4242%" y="1924" width="0.3030%" height="15" fill="rgb(221,189,43)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="22.4242%" y="1940" width="0.3030%" height="15" fill="rgb(207,36,27)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="22.4242%" y="1956" width="0.3030%" height="15" fill="rgb(217,90,24)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="22.4242%" y="1972" width="0.3030%" height="15" fill="rgb(224,66,35)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="22.4242%" y="1988" width="0.3030%" height="15" fill="rgb(221,13,50)" fg:x="74" fg:w="1"/><text x="22.6742%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="22.4242%" y="2004" width="0.3030%" height="15" fill="rgb(236,68,49)" fg:x="74" fg:w="1"/><text x="22.6742%" y="2014.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="22.4242%" y="2020" width="0.3030%" height="15" fill="rgb(229,146,28)" fg:x="74" fg:w="1"/><text x="22.6742%" y="2030.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="22.4242%" y="2036" width="0.3030%" height="15" fill="rgb(225,31,38)" fg:x="74" fg:w="1"/><text x="22.6742%" y="2046.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="22.4242%" y="2052" width="0.3030%" height="15" fill="rgb(250,208,3)" fg:x="74" fg:w="1"/><text x="22.6742%" y="2062.50"></text></g><g><title>Identity (sqlalchemy/sql/schema.py:5952) (1 samples, 0.30%)</title><rect x="22.7273%" y="1844" width="0.3030%" height="15" fill="rgb(246,54,23)" fg:x="75" fg:w="1"/><text x="22.9773%" y="1854.50"></text></g><g><title>decorate (sqlalchemy/util/deprecations.py:138) (1 samples, 0.30%)</title><rect x="22.7273%" y="1860" width="0.3030%" height="15" fill="rgb(243,76,11)" fg:x="75" fg:w="1"/><text x="22.9773%" y="1870.50"></text></g><g><title>_decorate_with_warning (sqlalchemy/util/deprecations.py:359) (1 samples, 0.30%)</title><rect x="22.7273%" y="1876" width="0.3030%" height="15" fill="rgb(245,21,50)" fg:x="75" fg:w="1"/><text x="22.9773%" y="1886.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (1 samples, 0.30%)</title><rect x="22.7273%" y="1892" width="0.3030%" height="15" fill="rgb(228,9,43)" fg:x="75" fg:w="1"/><text x="22.9773%" y="1902.50"></text></g><g><title>format_argspec_plus (sqlalchemy/util/langhelpers.py:538) (1 samples, 0.30%)</title><rect x="22.7273%" y="1908" width="0.3030%" height="15" fill="rgb(208,100,47)" fg:x="75" fg:w="1"/><text x="22.9773%" y="1918.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="22.1212%" y="1460" width="1.2121%" height="15" fill="rgb(232,26,8)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1470.50"></text></g><g><title><module> (sqlalchemy/sql/crud.py:9) (4 samples, 1.21%)</title><rect x="22.1212%" y="1476" width="1.2121%" height="15" fill="rgb(216,166,38)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="22.1212%" y="1492" width="1.2121%" height="15" fill="rgb(251,202,51)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="22.1212%" y="1508" width="1.2121%" height="15" fill="rgb(254,216,34)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="22.1212%" y="1524" width="1.2121%" height="15" fill="rgb(251,32,27)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="22.1212%" y="1540" width="1.2121%" height="15" fill="rgb(208,127,28)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="22.1212%" y="1556" width="1.2121%" height="15" fill="rgb(224,137,22)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="22.1212%" y="1572" width="1.2121%" height="15" fill="rgb(254,70,32)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1582.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="22.1212%" y="1588" width="1.2121%" height="15" fill="rgb(229,75,37)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1598.50"></text></g><g><title><module> (sqlalchemy/sql/dml.py:7) (4 samples, 1.21%)</title><rect x="22.1212%" y="1604" width="1.2121%" height="15" fill="rgb(252,64,23)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1614.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="22.1212%" y="1620" width="1.2121%" height="15" fill="rgb(232,162,48)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="22.1212%" y="1636" width="1.2121%" height="15" fill="rgb(246,160,12)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="22.1212%" y="1652" width="1.2121%" height="15" fill="rgb(247,166,0)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="22.1212%" y="1668" width="1.2121%" height="15" fill="rgb(249,219,21)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="22.1212%" y="1684" width="1.2121%" height="15" fill="rgb(205,209,3)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="22.1212%" y="1700" width="1.2121%" height="15" fill="rgb(243,44,1)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="22.1212%" y="1716" width="1.2121%" height="15" fill="rgb(206,159,16)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1726.50"></text></g><g><title><module> (sqlalchemy/sql/util.py:9) (4 samples, 1.21%)</title><rect x="22.1212%" y="1732" width="1.2121%" height="15" fill="rgb(244,77,30)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1742.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="22.1212%" y="1748" width="1.2121%" height="15" fill="rgb(218,69,12)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="22.1212%" y="1764" width="1.2121%" height="15" fill="rgb(212,87,7)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1774.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="22.1212%" y="1780" width="1.2121%" height="15" fill="rgb(245,114,25)" fg:x="73" fg:w="4"/><text x="22.3712%" y="1790.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="22.4242%" y="1796" width="0.9091%" height="15" fill="rgb(210,61,42)" fg:x="74" fg:w="3"/><text x="22.6742%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="22.4242%" y="1812" width="0.9091%" height="15" fill="rgb(211,52,33)" fg:x="74" fg:w="3"/><text x="22.6742%" y="1822.50"></text></g><g><title><module> (sqlalchemy/sql/schema.py:8) (2 samples, 0.61%)</title><rect x="22.7273%" y="1828" width="0.6061%" height="15" fill="rgb(234,58,33)" fg:x="75" fg:w="2"/><text x="22.9773%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="23.0303%" y="1844" width="0.3030%" height="15" fill="rgb(220,115,36)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="23.0303%" y="1860" width="0.3030%" height="15" fill="rgb(243,153,54)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="23.0303%" y="1876" width="0.3030%" height="15" fill="rgb(251,47,18)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="23.0303%" y="1892" width="0.3030%" height="15" fill="rgb(242,102,42)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="23.0303%" y="1908" width="0.3030%" height="15" fill="rgb(234,31,38)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1918.50"></text></g><g><title><module> (sqlalchemy/sql/selectable.py:8) (1 samples, 0.30%)</title><rect x="23.0303%" y="1924" width="0.3030%" height="15" fill="rgb(221,117,51)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1934.50"></text></g><g><title>Selectable (sqlalchemy/sql/selectable.py:290) (1 samples, 0.30%)</title><rect x="23.0303%" y="1940" width="0.3030%" height="15" fill="rgb(212,20,18)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1950.50"></text></g><g><title>decorate (sqlalchemy/util/deprecations.py:138) (1 samples, 0.30%)</title><rect x="23.0303%" y="1956" width="0.3030%" height="15" fill="rgb(245,133,36)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1966.50"></text></g><g><title>_decorate_with_warning (sqlalchemy/util/deprecations.py:359) (1 samples, 0.30%)</title><rect x="23.0303%" y="1972" width="0.3030%" height="15" fill="rgb(212,6,19)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1982.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (1 samples, 0.30%)</title><rect x="23.0303%" y="1988" width="0.3030%" height="15" fill="rgb(218,1,36)" fg:x="76" fg:w="1"/><text x="23.2803%" y="1998.50"></text></g><g><title>_exec_code_in_env (sqlalchemy/util/langhelpers.py:330) (1 samples, 0.30%)</title><rect x="23.0303%" y="2004" width="0.3030%" height="15" fill="rgb(246,84,54)" fg:x="76" fg:w="1"/><text x="23.2803%" y="2014.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="21.8182%" y="1332" width="1.8182%" height="15" fill="rgb(242,110,6)" fg:x="72" fg:w="6"/><text x="22.0682%" y="1342.50">_..</text></g><g><title><module> (sqlalchemy/sql/compiler.py:9) (5 samples, 1.52%)</title><rect x="22.1212%" y="1348" width="1.5152%" height="15" fill="rgb(214,47,5)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="22.1212%" y="1364" width="1.5152%" height="15" fill="rgb(218,159,25)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="22.1212%" y="1380" width="1.5152%" height="15" fill="rgb(215,211,28)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="22.1212%" y="1396" width="1.5152%" height="15" fill="rgb(238,59,32)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="22.1212%" y="1412" width="1.5152%" height="15" fill="rgb(226,82,3)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="22.1212%" y="1428" width="1.5152%" height="15" fill="rgb(240,164,32)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="22.1212%" y="1444" width="1.5152%" height="15" fill="rgb(232,46,7)" fg:x="73" fg:w="5"/><text x="22.3712%" y="1454.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="23.3333%" y="1460" width="0.3030%" height="15" fill="rgb(229,129,53)" fg:x="77" fg:w="1"/><text x="23.5833%" y="1470.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="23.3333%" y="1476" width="0.3030%" height="15" fill="rgb(234,188,29)" fg:x="77" fg:w="1"/><text x="23.5833%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.03%)</title><rect x="20.9091%" y="708" width="3.0303%" height="15" fill="rgb(246,141,4)" fg:x="69" fg:w="10"/><text x="21.1591%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.03%)</title><rect x="20.9091%" y="724" width="3.0303%" height="15" fill="rgb(229,23,39)" fg:x="69" fg:w="10"/><text x="21.1591%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.03%)</title><rect x="20.9091%" y="740" width="3.0303%" height="15" fill="rgb(206,12,3)" fg:x="69" fg:w="10"/><text x="21.1591%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.03%)</title><rect x="20.9091%" y="756" width="3.0303%" height="15" fill="rgb(252,226,20)" fg:x="69" fg:w="10"/><text x="21.1591%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.03%)</title><rect x="20.9091%" y="772" width="3.0303%" height="15" fill="rgb(216,123,35)" fg:x="69" fg:w="10"/><text x="21.1591%" y="782.50">_ca..</text></g><g><title><module> (sqlalchemy/engine/__init__.py:8) (10 samples, 3.03%)</title><rect x="20.9091%" y="788" width="3.0303%" height="15" fill="rgb(212,68,40)" fg:x="69" fg:w="10"/><text x="21.1591%" y="798.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 2.73%)</title><rect x="21.2121%" y="804" width="2.7273%" height="15" fill="rgb(254,125,32)" fg:x="70" fg:w="9"/><text x="21.4621%" y="814.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="21.2121%" y="820" width="2.7273%" height="15" fill="rgb(253,97,22)" fg:x="70" fg:w="9"/><text x="21.4621%" y="830.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="21.2121%" y="836" width="2.7273%" height="15" fill="rgb(241,101,14)" fg:x="70" fg:w="9"/><text x="21.4621%" y="846.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="21.2121%" y="852" width="2.7273%" height="15" fill="rgb(238,103,29)" fg:x="70" fg:w="9"/><text x="21.4621%" y="862.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="21.2121%" y="868" width="2.7273%" height="15" fill="rgb(233,195,47)" fg:x="70" fg:w="9"/><text x="21.4621%" y="878.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="21.2121%" y="884" width="2.7273%" height="15" fill="rgb(246,218,30)" fg:x="70" fg:w="9"/><text x="21.4621%" y="894.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="21.2121%" y="900" width="2.7273%" height="15" fill="rgb(219,145,47)" fg:x="70" fg:w="9"/><text x="21.4621%" y="910.50">_c..</text></g><g><title><module> (sqlalchemy/engine/events.py:9) (9 samples, 2.73%)</title><rect x="21.2121%" y="916" width="2.7273%" height="15" fill="rgb(243,12,26)" fg:x="70" fg:w="9"/><text x="21.4621%" y="926.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="21.5152%" y="932" width="2.4242%" height="15" fill="rgb(214,87,16)" fg:x="71" fg:w="8"/><text x="21.7652%" y="942.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="21.5152%" y="948" width="2.4242%" height="15" fill="rgb(208,99,42)" fg:x="71" fg:w="8"/><text x="21.7652%" y="958.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="21.5152%" y="964" width="2.4242%" height="15" fill="rgb(253,99,2)" fg:x="71" fg:w="8"/><text x="21.7652%" y="974.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="21.5152%" y="980" width="2.4242%" height="15" fill="rgb(220,168,23)" fg:x="71" fg:w="8"/><text x="21.7652%" y="990.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="21.5152%" y="996" width="2.4242%" height="15" fill="rgb(242,38,24)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1006.50">_c..</text></g><g><title><module> (sqlalchemy/engine/base.py:7) (8 samples, 2.42%)</title><rect x="21.5152%" y="1012" width="2.4242%" height="15" fill="rgb(225,182,9)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1022.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="21.5152%" y="1028" width="2.4242%" height="15" fill="rgb(243,178,37)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1038.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="21.5152%" y="1044" width="2.4242%" height="15" fill="rgb(232,139,19)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1054.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="21.5152%" y="1060" width="2.4242%" height="15" fill="rgb(225,201,24)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1070.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="21.5152%" y="1076" width="2.4242%" height="15" fill="rgb(221,47,46)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1086.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="21.5152%" y="1092" width="2.4242%" height="15" fill="rgb(249,23,13)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1102.50">_c..</text></g><g><title><module> (sqlalchemy/engine/interfaces.py:8) (8 samples, 2.42%)</title><rect x="21.5152%" y="1108" width="2.4242%" height="15" fill="rgb(219,9,5)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1118.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="21.5152%" y="1124" width="2.4242%" height="15" fill="rgb(254,171,16)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1134.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="21.5152%" y="1140" width="2.4242%" height="15" fill="rgb(230,171,20)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1150.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="21.5152%" y="1156" width="2.4242%" height="15" fill="rgb(210,71,41)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1166.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="21.5152%" y="1172" width="2.4242%" height="15" fill="rgb(206,173,20)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1182.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="21.5152%" y="1188" width="2.4242%" height="15" fill="rgb(233,88,34)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1198.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="21.5152%" y="1204" width="2.4242%" height="15" fill="rgb(223,209,46)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1214.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="21.5152%" y="1220" width="2.4242%" height="15" fill="rgb(250,43,18)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1230.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="21.5152%" y="1236" width="2.4242%" height="15" fill="rgb(208,13,10)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1246.50">_c..</text></g><g><title><module> (sqlalchemy/sql/__init__.py:7) (8 samples, 2.42%)</title><rect x="21.5152%" y="1252" width="2.4242%" height="15" fill="rgb(212,200,36)" fg:x="71" fg:w="8"/><text x="21.7652%" y="1262.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="21.8182%" y="1268" width="2.1212%" height="15" fill="rgb(225,90,30)" fg:x="72" fg:w="7"/><text x="22.0682%" y="1278.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="21.8182%" y="1284" width="2.1212%" height="15" fill="rgb(236,182,39)" fg:x="72" fg:w="7"/><text x="22.0682%" y="1294.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="21.8182%" y="1300" width="2.1212%" height="15" fill="rgb(212,144,35)" fg:x="72" fg:w="7"/><text x="22.0682%" y="1310.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="21.8182%" y="1316" width="2.1212%" height="15" fill="rgb(228,63,44)" fg:x="72" fg:w="7"/><text x="22.0682%" y="1326.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="23.6364%" y="1332" width="0.3030%" height="15" fill="rgb(228,109,6)" fg:x="78" fg:w="1"/><text x="23.8864%" y="1342.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="23.6364%" y="1348" width="0.3030%" height="15" fill="rgb(238,117,24)" fg:x="78" fg:w="1"/><text x="23.8864%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="24.2424%" y="1124" width="0.6061%" height="15" fill="rgb(242,26,26)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="24.2424%" y="1140" width="0.6061%" height="15" fill="rgb(221,92,48)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1150.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="24.2424%" y="1156" width="0.6061%" height="15" fill="rgb(209,209,32)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="24.2424%" y="1172" width="0.6061%" height="15" fill="rgb(221,70,22)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="24.2424%" y="1188" width="0.6061%" height="15" fill="rgb(248,145,5)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="24.2424%" y="1204" width="0.6061%" height="15" fill="rgb(226,116,26)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="24.2424%" y="1220" width="0.6061%" height="15" fill="rgb(244,5,17)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="24.2424%" y="1236" width="0.6061%" height="15" fill="rgb(252,159,33)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="24.2424%" y="1252" width="0.6061%" height="15" fill="rgb(206,71,0)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1262.50"></text></g><g><title><module> (sqlalchemy/exc.py:8) (2 samples, 0.61%)</title><rect x="24.2424%" y="1268" width="0.6061%" height="15" fill="rgb(233,118,54)" fg:x="80" fg:w="2"/><text x="24.4924%" y="1278.50"></text></g><g><title><module> (sqlalchemy/util/_collections.py:9) (4 samples, 1.21%)</title><rect x="23.9394%" y="916" width="1.2121%" height="15" fill="rgb(234,83,48)" fg:x="79" fg:w="4"/><text x="24.1894%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="24.2424%" y="932" width="0.9091%" height="15" fill="rgb(228,3,54)" fg:x="80" fg:w="3"/><text x="24.4924%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="24.2424%" y="948" width="0.9091%" height="15" fill="rgb(226,155,13)" fg:x="80" fg:w="3"/><text x="24.4924%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="24.2424%" y="964" width="0.9091%" height="15" fill="rgb(241,28,37)" fg:x="80" fg:w="3"/><text x="24.4924%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="24.2424%" y="980" width="0.9091%" height="15" fill="rgb(233,93,10)" fg:x="80" fg:w="3"/><text x="24.4924%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="24.2424%" y="996" width="0.9091%" height="15" fill="rgb(225,113,19)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1006.50"></text></g><g><title><module> (sqlalchemy/util/_has_cy.py:8) (3 samples, 0.91%)</title><rect x="24.2424%" y="1012" width="0.9091%" height="15" fill="rgb(241,2,18)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1022.50"></text></g><g><title>_import_cy_extensions (sqlalchemy/util/_has_cy.py:12) (3 samples, 0.91%)</title><rect x="24.2424%" y="1028" width="0.9091%" height="15" fill="rgb(228,207,21)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.91%)</title><rect x="24.2424%" y="1044" width="0.9091%" height="15" fill="rgb(213,211,35)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="24.2424%" y="1060" width="0.9091%" height="15" fill="rgb(209,83,10)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="24.2424%" y="1076" width="0.9091%" height="15" fill="rgb(209,164,1)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="24.2424%" y="1092" width="0.9091%" height="15" fill="rgb(213,184,43)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="24.2424%" y="1108" width="0.9091%" height="15" fill="rgb(231,61,34)" fg:x="80" fg:w="3"/><text x="24.4924%" y="1118.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="24.8485%" y="1124" width="0.3030%" height="15" fill="rgb(235,75,3)" fg:x="82" fg:w="1"/><text x="25.0985%" y="1134.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="24.8485%" y="1140" width="0.3030%" height="15" fill="rgb(220,106,47)" fg:x="82" fg:w="1"/><text x="25.0985%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="24.8485%" y="1156" width="0.3030%" height="15" fill="rgb(210,196,33)" fg:x="82" fg:w="1"/><text x="25.0985%" y="1166.50"></text></g><g><title><module> (dask_sql/input_utils/__init__.py:1) (17 samples, 5.15%)</title><rect x="20.9091%" y="500" width="5.1515%" height="15" fill="rgb(229,154,42)" fg:x="69" fg:w="17"/><text x="21.1591%" y="510.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.15%)</title><rect x="20.9091%" y="516" width="5.1515%" height="15" fill="rgb(228,114,26)" fg:x="69" fg:w="17"/><text x="21.1591%" y="526.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.15%)</title><rect x="20.9091%" y="532" width="5.1515%" height="15" fill="rgb(208,144,1)" fg:x="69" fg:w="17"/><text x="21.1591%" y="542.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.15%)</title><rect x="20.9091%" y="548" width="5.1515%" height="15" fill="rgb(239,112,37)" fg:x="69" fg:w="17"/><text x="21.1591%" y="558.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.15%)</title><rect x="20.9091%" y="564" width="5.1515%" height="15" fill="rgb(210,96,50)" fg:x="69" fg:w="17"/><text x="21.1591%" y="574.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="20.9091%" y="580" width="5.1515%" height="15" fill="rgb(222,178,2)" fg:x="69" fg:w="17"/><text x="21.1591%" y="590.50">_call_..</text></g><g><title><module> (dask_sql/input_utils/hive.py:1) (17 samples, 5.15%)</title><rect x="20.9091%" y="596" width="5.1515%" height="15" fill="rgb(226,74,18)" fg:x="69" fg:w="17"/><text x="21.1591%" y="606.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.15%)</title><rect x="20.9091%" y="612" width="5.1515%" height="15" fill="rgb(225,67,54)" fg:x="69" fg:w="17"/><text x="21.1591%" y="622.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.15%)</title><rect x="20.9091%" y="628" width="5.1515%" height="15" fill="rgb(251,92,32)" fg:x="69" fg:w="17"/><text x="21.1591%" y="638.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.15%)</title><rect x="20.9091%" y="644" width="5.1515%" height="15" fill="rgb(228,149,22)" fg:x="69" fg:w="17"/><text x="21.1591%" y="654.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.15%)</title><rect x="20.9091%" y="660" width="5.1515%" height="15" fill="rgb(243,54,13)" fg:x="69" fg:w="17"/><text x="21.1591%" y="670.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="20.9091%" y="676" width="5.1515%" height="15" fill="rgb(243,180,28)" fg:x="69" fg:w="17"/><text x="21.1591%" y="686.50">_call_..</text></g><g><title><module> (sqlalchemy/__init__.py:8) (17 samples, 5.15%)</title><rect x="20.9091%" y="692" width="5.1515%" height="15" fill="rgb(208,167,24)" fg:x="69" fg:w="17"/><text x="21.1591%" y="702.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 2.12%)</title><rect x="23.9394%" y="708" width="2.1212%" height="15" fill="rgb(245,73,45)" fg:x="79" fg:w="7"/><text x="24.1894%" y="718.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="23.9394%" y="724" width="2.1212%" height="15" fill="rgb(237,203,48)" fg:x="79" fg:w="7"/><text x="24.1894%" y="734.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="23.9394%" y="740" width="2.1212%" height="15" fill="rgb(211,197,16)" fg:x="79" fg:w="7"/><text x="24.1894%" y="750.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="23.9394%" y="756" width="2.1212%" height="15" fill="rgb(243,99,51)" fg:x="79" fg:w="7"/><text x="24.1894%" y="766.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="23.9394%" y="772" width="2.1212%" height="15" fill="rgb(215,123,29)" fg:x="79" fg:w="7"/><text x="24.1894%" y="782.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="23.9394%" y="788" width="2.1212%" height="15" fill="rgb(239,186,37)" fg:x="79" fg:w="7"/><text x="24.1894%" y="798.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="23.9394%" y="804" width="2.1212%" height="15" fill="rgb(252,136,39)" fg:x="79" fg:w="7"/><text x="24.1894%" y="814.50">_..</text></g><g><title><module> (sqlalchemy/util/__init__.py:9) (7 samples, 2.12%)</title><rect x="23.9394%" y="820" width="2.1212%" height="15" fill="rgb(223,213,32)" fg:x="79" fg:w="7"/><text x="24.1894%" y="830.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="23.9394%" y="836" width="2.1212%" height="15" fill="rgb(233,115,5)" fg:x="79" fg:w="7"/><text x="24.1894%" y="846.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="23.9394%" y="852" width="2.1212%" height="15" fill="rgb(207,226,44)" fg:x="79" fg:w="7"/><text x="24.1894%" y="862.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="23.9394%" y="868" width="2.1212%" height="15" fill="rgb(208,126,0)" fg:x="79" fg:w="7"/><text x="24.1894%" y="878.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="23.9394%" y="884" width="2.1212%" height="15" fill="rgb(244,66,21)" fg:x="79" fg:w="7"/><text x="24.1894%" y="894.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="23.9394%" y="900" width="2.1212%" height="15" fill="rgb(222,97,12)" fg:x="79" fg:w="7"/><text x="24.1894%" y="910.50">_..</text></g><g><title><module> (sqlalchemy/util/concurrency.py:9) (3 samples, 0.91%)</title><rect x="25.1515%" y="916" width="0.9091%" height="15" fill="rgb(219,213,19)" fg:x="83" fg:w="3"/><text x="25.4015%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="25.1515%" y="932" width="0.9091%" height="15" fill="rgb(252,169,30)" fg:x="83" fg:w="3"/><text x="25.4015%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="25.1515%" y="948" width="0.9091%" height="15" fill="rgb(206,32,51)" fg:x="83" fg:w="3"/><text x="25.4015%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="25.1515%" y="964" width="0.9091%" height="15" fill="rgb(250,172,42)" fg:x="83" fg:w="3"/><text x="25.4015%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="25.1515%" y="980" width="0.9091%" height="15" fill="rgb(209,34,43)" fg:x="83" fg:w="3"/><text x="25.4015%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="25.1515%" y="996" width="0.9091%" height="15" fill="rgb(223,11,35)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1006.50"></text></g><g><title><module> (greenlet/__init__.py:2) (3 samples, 0.91%)</title><rect x="25.1515%" y="1012" width="0.9091%" height="15" fill="rgb(251,219,26)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="25.1515%" y="1028" width="0.9091%" height="15" fill="rgb(231,119,3)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="25.1515%" y="1044" width="0.9091%" height="15" fill="rgb(216,97,11)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="25.1515%" y="1060" width="0.9091%" height="15" fill="rgb(223,59,9)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.91%)</title><rect x="25.1515%" y="1076" width="0.9091%" height="15" fill="rgb(233,93,31)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.91%)</title><rect x="25.1515%" y="1092" width="0.9091%" height="15" fill="rgb(239,81,33)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="25.1515%" y="1108" width="0.9091%" height="15" fill="rgb(213,120,34)" fg:x="83" fg:w="3"/><text x="25.4015%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="26.0606%" y="580" width="0.3030%" height="15" fill="rgb(243,49,53)" fg:x="86" fg:w="1"/><text x="26.3106%" y="590.50"></text></g><g><title><module> (dask_sql/physical/rel/custom/describe_model.py:1) (1 samples, 0.30%)</title><rect x="26.0606%" y="596" width="0.3030%" height="15" fill="rgb(247,216,33)" fg:x="86" fg:w="1"/><text x="26.3106%" y="606.50"></text></g><g><title><module> (dask_sql/cmd.py:1) (63 samples, 19.09%)</title><rect x="7.5758%" y="276" width="19.0909%" height="15" fill="rgb(226,26,14)" fg:x="25" fg:w="63"/><text x="7.8258%" y="286.50"><module> (dask_sql/cmd.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (63 samples, 19.09%)</title><rect x="7.5758%" y="292" width="19.0909%" height="15" fill="rgb(215,49,53)" fg:x="25" fg:w="63"/><text x="7.8258%" y="302.50">_find_and_load (<frozen import..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (63 samples, 19.09%)</title><rect x="7.5758%" y="308" width="19.0909%" height="15" fill="rgb(245,162,40)" fg:x="25" fg:w="63"/><text x="7.8258%" y="318.50">_find_and_load_unlocked (<froz..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (56 samples, 16.97%)</title><rect x="9.6970%" y="324" width="16.9697%" height="15" fill="rgb(229,68,17)" fg:x="32" fg:w="56"/><text x="9.9470%" y="334.50">_load_unlocked (<frozen im..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (56 samples, 16.97%)</title><rect x="9.6970%" y="340" width="16.9697%" height="15" fill="rgb(213,182,10)" fg:x="32" fg:w="56"/><text x="9.9470%" y="350.50">exec_module (<frozen impor..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 16.97%)</title><rect x="9.6970%" y="356" width="16.9697%" height="15" fill="rgb(245,125,30)" fg:x="32" fg:w="56"/><text x="9.9470%" y="366.50">_call_with_frames_removed ..</text></g><g><title><module> (dask_sql/context.py:1) (28 samples, 8.48%)</title><rect x="18.1818%" y="372" width="8.4848%" height="15" fill="rgb(232,202,2)" fg:x="60" fg:w="28"/><text x="18.4318%" y="382.50"><module> (da..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (19 samples, 5.76%)</title><rect x="20.9091%" y="388" width="5.7576%" height="15" fill="rgb(237,140,51)" fg:x="69" fg:w="19"/><text x="21.1591%" y="398.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 5.76%)</title><rect x="20.9091%" y="404" width="5.7576%" height="15" fill="rgb(236,157,25)" fg:x="69" fg:w="19"/><text x="21.1591%" y="414.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 5.76%)</title><rect x="20.9091%" y="420" width="5.7576%" height="15" fill="rgb(219,209,0)" fg:x="69" fg:w="19"/><text x="21.1591%" y="430.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 5.76%)</title><rect x="20.9091%" y="436" width="5.7576%" height="15" fill="rgb(240,116,54)" fg:x="69" fg:w="19"/><text x="21.1591%" y="446.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 5.76%)</title><rect x="20.9091%" y="452" width="5.7576%" height="15" fill="rgb(216,10,36)" fg:x="69" fg:w="19"/><text x="21.1591%" y="462.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 5.76%)</title><rect x="20.9091%" y="468" width="5.7576%" height="15" fill="rgb(222,72,44)" fg:x="69" fg:w="19"/><text x="21.1591%" y="478.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 5.76%)</title><rect x="20.9091%" y="484" width="5.7576%" height="15" fill="rgb(232,159,9)" fg:x="69" fg:w="19"/><text x="21.1591%" y="494.50">_call_w..</text></g><g><title><module> (dask_sql/physical/rel/custom/__init__.py:1) (2 samples, 0.61%)</title><rect x="26.0606%" y="500" width="0.6061%" height="15" fill="rgb(210,39,32)" fg:x="86" fg:w="2"/><text x="26.3106%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="26.0606%" y="516" width="0.6061%" height="15" fill="rgb(216,194,45)" fg:x="86" fg:w="2"/><text x="26.3106%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="26.0606%" y="532" width="0.6061%" height="15" fill="rgb(218,18,35)" fg:x="86" fg:w="2"/><text x="26.3106%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="26.0606%" y="548" width="0.6061%" height="15" fill="rgb(207,83,51)" fg:x="86" fg:w="2"/><text x="26.3106%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="26.0606%" y="564" width="0.6061%" height="15" fill="rgb(225,63,43)" fg:x="86" fg:w="2"/><text x="26.3106%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="26.3636%" y="580" width="0.3030%" height="15" fill="rgb(207,57,36)" fg:x="87" fg:w="1"/><text x="26.6136%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="26.3636%" y="596" width="0.3030%" height="15" fill="rgb(216,99,33)" fg:x="87" fg:w="1"/><text x="26.6136%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="26.6667%" y="484" width="0.3030%" height="15" fill="rgb(225,42,16)" fg:x="88" fg:w="1"/><text x="26.9167%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="26.6667%" y="500" width="0.3030%" height="15" fill="rgb(220,201,45)" fg:x="88" fg:w="1"/><text x="26.9167%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="26.6667%" y="516" width="0.3030%" height="15" fill="rgb(225,33,4)" fg:x="88" fg:w="1"/><text x="26.9167%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="26.6667%" y="532" width="0.3030%" height="15" fill="rgb(224,33,50)" fg:x="88" fg:w="1"/><text x="26.9167%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="26.6667%" y="548" width="0.3030%" height="15" fill="rgb(246,198,51)" fg:x="88" fg:w="1"/><text x="26.9167%" y="558.50"></text></g><g><title><module> (starlette/applications.py:1) (1 samples, 0.30%)</title><rect x="26.6667%" y="564" width="0.3030%" height="15" fill="rgb(205,22,4)" fg:x="88" fg:w="1"/><text x="26.9167%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="26.6667%" y="580" width="0.3030%" height="15" fill="rgb(206,3,8)" fg:x="88" fg:w="1"/><text x="26.9167%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="26.6667%" y="596" width="0.3030%" height="15" fill="rgb(251,23,15)" fg:x="88" fg:w="1"/><text x="26.9167%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="26.6667%" y="612" width="0.3030%" height="15" fill="rgb(252,88,28)" fg:x="88" fg:w="1"/><text x="26.9167%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="26.6667%" y="628" width="0.3030%" height="15" fill="rgb(212,127,14)" fg:x="88" fg:w="1"/><text x="26.9167%" y="638.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="26.6667%" y="644" width="0.3030%" height="15" fill="rgb(247,145,37)" fg:x="88" fg:w="1"/><text x="26.9167%" y="654.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="26.6667%" y="660" width="0.3030%" height="15" fill="rgb(209,117,53)" fg:x="88" fg:w="1"/><text x="26.9167%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="26.9697%" y="612" width="0.3030%" height="15" fill="rgb(212,90,42)" fg:x="89" fg:w="1"/><text x="27.2197%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="26.9697%" y="628" width="0.3030%" height="15" fill="rgb(218,164,37)" fg:x="89" fg:w="1"/><text x="27.2197%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="26.9697%" y="644" width="0.3030%" height="15" fill="rgb(246,65,34)" fg:x="89" fg:w="1"/><text x="27.2197%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="26.9697%" y="660" width="0.3030%" height="15" fill="rgb(231,100,33)" fg:x="89" fg:w="1"/><text x="27.2197%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="26.9697%" y="676" width="0.3030%" height="15" fill="rgb(228,126,14)" fg:x="89" fg:w="1"/><text x="27.2197%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="26.9697%" y="692" width="0.3030%" height="15" fill="rgb(215,173,21)" fg:x="89" fg:w="1"/><text x="27.2197%" y="702.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.30%)</title><rect x="27.2727%" y="1860" width="0.3030%" height="15" fill="rgb(210,6,40)" fg:x="90" fg:w="1"/><text x="27.5227%" y="1870.50"></text></g><g><title>_extract_get_pydantic_json_schema (pydantic/_internal/_generate_schema.py:2069) (1 samples, 0.30%)</title><rect x="27.2727%" y="1876" width="0.3030%" height="15" fill="rgb(212,48,18)" fg:x="90" fg:w="1"/><text x="27.5227%" y="1886.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="27.2727%" y="1156" width="0.6061%" height="15" fill="rgb(230,214,11)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="27.2727%" y="1172" width="0.6061%" height="15" fill="rgb(254,105,39)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1182.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.61%)</title><rect x="27.2727%" y="1188" width="0.6061%" height="15" fill="rgb(245,158,5)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1198.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.61%)</title><rect x="27.2727%" y="1204" width="0.6061%" height="15" fill="rgb(249,208,11)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1214.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="27.2727%" y="1220" width="0.6061%" height="15" fill="rgb(210,39,28)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1230.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (2 samples, 0.61%)</title><rect x="27.2727%" y="1236" width="0.6061%" height="15" fill="rgb(211,56,53)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1246.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (2 samples, 0.61%)</title><rect x="27.2727%" y="1252" width="0.6061%" height="15" fill="rgb(226,201,30)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (2 samples, 0.61%)</title><rect x="27.2727%" y="1268" width="0.6061%" height="15" fill="rgb(239,101,34)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.61%)</title><rect x="27.2727%" y="1284" width="0.6061%" height="15" fill="rgb(226,209,5)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="27.2727%" y="1300" width="0.6061%" height="15" fill="rgb(250,105,47)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="27.2727%" y="1316" width="0.6061%" height="15" fill="rgb(230,72,3)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.61%)</title><rect x="27.2727%" y="1332" width="0.6061%" height="15" fill="rgb(232,218,39)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.61%)</title><rect x="27.2727%" y="1348" width="0.6061%" height="15" fill="rgb(248,166,6)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.61%)</title><rect x="27.2727%" y="1364" width="0.6061%" height="15" fill="rgb(247,89,20)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.61%)</title><rect x="27.2727%" y="1380" width="0.6061%" height="15" fill="rgb(248,130,54)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.61%)</title><rect x="27.2727%" y="1396" width="0.6061%" height="15" fill="rgb(234,196,4)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.61%)</title><rect x="27.2727%" y="1412" width="0.6061%" height="15" fill="rgb(250,143,31)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="27.2727%" y="1428" width="0.6061%" height="15" fill="rgb(211,110,34)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="27.2727%" y="1444" width="0.6061%" height="15" fill="rgb(215,124,48)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="27.2727%" y="1460" width="0.6061%" height="15" fill="rgb(216,46,13)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.61%)</title><rect x="27.2727%" y="1476" width="0.6061%" height="15" fill="rgb(205,184,25)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.61%)</title><rect x="27.2727%" y="1492" width="0.6061%" height="15" fill="rgb(228,1,10)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.61%)</title><rect x="27.2727%" y="1508" width="0.6061%" height="15" fill="rgb(213,116,27)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.61%)</title><rect x="27.2727%" y="1524" width="0.6061%" height="15" fill="rgb(241,95,50)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1534.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.61%)</title><rect x="27.2727%" y="1540" width="0.6061%" height="15" fill="rgb(238,48,32)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="27.2727%" y="1556" width="0.6061%" height="15" fill="rgb(235,113,49)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (2 samples, 0.61%)</title><rect x="27.2727%" y="1572" width="0.6061%" height="15" fill="rgb(205,127,43)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="27.2727%" y="1588" width="0.6061%" height="15" fill="rgb(250,162,2)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="27.2727%" y="1604" width="0.6061%" height="15" fill="rgb(220,13,41)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.61%)</title><rect x="27.2727%" y="1620" width="0.6061%" height="15" fill="rgb(249,221,25)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.61%)</title><rect x="27.2727%" y="1636" width="0.6061%" height="15" fill="rgb(215,208,19)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.61%)</title><rect x="27.2727%" y="1652" width="0.6061%" height="15" fill="rgb(236,175,2)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.61%)</title><rect x="27.2727%" y="1668" width="0.6061%" height="15" fill="rgb(241,52,2)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.61%)</title><rect x="27.2727%" y="1684" width="0.6061%" height="15" fill="rgb(248,140,14)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.61%)</title><rect x="27.2727%" y="1700" width="0.6061%" height="15" fill="rgb(253,22,42)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="27.2727%" y="1716" width="0.6061%" height="15" fill="rgb(234,61,47)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="27.2727%" y="1732" width="0.6061%" height="15" fill="rgb(208,226,15)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="27.2727%" y="1748" width="0.6061%" height="15" fill="rgb(217,221,4)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.61%)</title><rect x="27.2727%" y="1764" width="0.6061%" height="15" fill="rgb(212,174,34)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.61%)</title><rect x="27.2727%" y="1780" width="0.6061%" height="15" fill="rgb(253,83,4)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.61%)</title><rect x="27.2727%" y="1796" width="0.6061%" height="15" fill="rgb(250,195,49)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.61%)</title><rect x="27.2727%" y="1812" width="0.6061%" height="15" fill="rgb(241,192,25)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1822.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.61%)</title><rect x="27.2727%" y="1828" width="0.6061%" height="15" fill="rgb(208,124,10)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1838.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="27.2727%" y="1844" width="0.6061%" height="15" fill="rgb(222,33,0)" fg:x="90" fg:w="2"/><text x="27.5227%" y="1854.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (1 samples, 0.30%)</title><rect x="27.5758%" y="1860" width="0.3030%" height="15" fill="rgb(234,209,28)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1870.50"></text></g><g><title><lambda> (pydantic/_internal/_generate_schema.py:1825) (1 samples, 0.30%)</title><rect x="27.5758%" y="1876" width="0.3030%" height="15" fill="rgb(224,11,23)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1886.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.30%)</title><rect x="27.5758%" y="1892" width="0.3030%" height="15" fill="rgb(232,99,1)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1902.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.30%)</title><rect x="27.5758%" y="1908" width="0.3030%" height="15" fill="rgb(237,95,45)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1918.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.30%)</title><rect x="27.5758%" y="1924" width="0.3030%" height="15" fill="rgb(208,109,11)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1934.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.30%)</title><rect x="27.5758%" y="1940" width="0.3030%" height="15" fill="rgb(216,190,48)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1950.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.30%)</title><rect x="27.5758%" y="1956" width="0.3030%" height="15" fill="rgb(251,171,36)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1966.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.30%)</title><rect x="27.5758%" y="1972" width="0.3030%" height="15" fill="rgb(230,62,22)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1982.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.30%)</title><rect x="27.5758%" y="1988" width="0.3030%" height="15" fill="rgb(225,114,35)" fg:x="91" fg:w="1"/><text x="27.8258%" y="1998.50"></text></g><g><title>_extract_get_pydantic_json_schema (pydantic/_internal/_generate_schema.py:2069) (1 samples, 0.30%)</title><rect x="28.1818%" y="1444" width="0.3030%" height="15" fill="rgb(215,118,42)" fg:x="93" fg:w="1"/><text x="28.4318%" y="1454.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.30%)</title><rect x="28.4848%" y="1700" width="0.3030%" height="15" fill="rgb(243,119,21)" fg:x="94" fg:w="1"/><text x="28.7348%" y="1710.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.30%)</title><rect x="28.4848%" y="1716" width="0.3030%" height="15" fill="rgb(252,177,53)" fg:x="94" fg:w="1"/><text x="28.7348%" y="1726.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.30%)</title><rect x="28.4848%" y="1732" width="0.3030%" height="15" fill="rgb(237,209,29)" fg:x="94" fg:w="1"/><text x="28.7348%" y="1742.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.61%)</title><rect x="28.7879%" y="2116" width="0.6061%" height="15" fill="rgb(212,65,23)" fg:x="95" fg:w="2"/><text x="29.0379%" y="2126.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (2 samples, 0.61%)</title><rect x="28.7879%" y="2132" width="0.6061%" height="15" fill="rgb(230,222,46)" fg:x="95" fg:w="2"/><text x="29.0379%" y="2142.50"></text></g><g><title>datetime_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:179) (1 samples, 0.30%)</title><rect x="29.0909%" y="2148" width="0.3030%" height="15" fill="rgb(215,135,32)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2158.50"></text></g><g><title>collect_known_metadata (pydantic/_internal/_known_annotated_metadata.py:337) (1 samples, 0.30%)</title><rect x="29.0909%" y="2164" width="0.3030%" height="15" fill="rgb(246,101,22)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2174.50"></text></g><g><title>expand_grouped_metadata (pydantic/_internal/_known_annotated_metadata.py:116) (1 samples, 0.30%)</title><rect x="29.0909%" y="2180" width="0.3030%" height="15" fill="rgb(206,107,13)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2190.50"></text></g><g><title>__instancecheck__ (typing.py:1141) (1 samples, 0.30%)</title><rect x="29.0909%" y="2196" width="0.3030%" height="15" fill="rgb(250,100,44)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2206.50"></text></g><g><title>_is_callable_members_only (typing.py:1082) (1 samples, 0.30%)</title><rect x="29.0909%" y="2212" width="0.3030%" height="15" fill="rgb(231,147,38)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2222.50"></text></g><g><title><genexpr> (typing.py:1084) (1 samples, 0.30%)</title><rect x="29.0909%" y="2228" width="0.3030%" height="15" fill="rgb(229,8,40)" fg:x="96" fg:w="1"/><text x="29.3409%" y="2238.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (4 samples, 1.21%)</title><rect x="28.4848%" y="1540" width="1.2121%" height="15" fill="rgb(221,135,30)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (4 samples, 1.21%)</title><rect x="28.4848%" y="1556" width="1.2121%" height="15" fill="rgb(249,193,18)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 1.21%)</title><rect x="28.4848%" y="1572" width="1.2121%" height="15" fill="rgb(209,133,39)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 1.21%)</title><rect x="28.4848%" y="1588" width="1.2121%" height="15" fill="rgb(232,100,14)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 1.21%)</title><rect x="28.4848%" y="1604" width="1.2121%" height="15" fill="rgb(224,185,1)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 1.21%)</title><rect x="28.4848%" y="1620" width="1.2121%" height="15" fill="rgb(223,139,8)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (4 samples, 1.21%)</title><rect x="28.4848%" y="1636" width="1.2121%" height="15" fill="rgb(232,213,38)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (4 samples, 1.21%)</title><rect x="28.4848%" y="1652" width="1.2121%" height="15" fill="rgb(207,94,22)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 1.21%)</title><rect x="28.4848%" y="1668" width="1.2121%" height="15" fill="rgb(219,183,54)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (4 samples, 1.21%)</title><rect x="28.4848%" y="1684" width="1.2121%" height="15" fill="rgb(216,185,54)" fg:x="94" fg:w="4"/><text x="28.7348%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.91%)</title><rect x="28.7879%" y="1700" width="0.9091%" height="15" fill="rgb(254,217,39)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="28.7879%" y="1716" width="0.9091%" height="15" fill="rgb(240,178,23)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="28.7879%" y="1732" width="0.9091%" height="15" fill="rgb(218,11,47)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="28.7879%" y="1748" width="0.9091%" height="15" fill="rgb(218,51,51)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.91%)</title><rect x="28.7879%" y="1764" width="0.9091%" height="15" fill="rgb(238,126,27)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.91%)</title><rect x="28.7879%" y="1780" width="0.9091%" height="15" fill="rgb(249,202,22)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.91%)</title><rect x="28.7879%" y="1796" width="0.9091%" height="15" fill="rgb(254,195,49)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.91%)</title><rect x="28.7879%" y="1812" width="0.9091%" height="15" fill="rgb(208,123,14)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1822.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.91%)</title><rect x="28.7879%" y="1828" width="0.9091%" height="15" fill="rgb(224,200,8)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1838.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="28.7879%" y="1844" width="0.9091%" height="15" fill="rgb(217,61,36)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1854.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 0.91%)</title><rect x="28.7879%" y="1860" width="0.9091%" height="15" fill="rgb(206,35,45)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1870.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="28.7879%" y="1876" width="0.9091%" height="15" fill="rgb(217,65,33)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1886.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="28.7879%" y="1892" width="0.9091%" height="15" fill="rgb(222,158,48)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1902.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.91%)</title><rect x="28.7879%" y="1908" width="0.9091%" height="15" fill="rgb(254,2,54)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1918.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.91%)</title><rect x="28.7879%" y="1924" width="0.9091%" height="15" fill="rgb(250,143,38)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1934.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.91%)</title><rect x="28.7879%" y="1940" width="0.9091%" height="15" fill="rgb(248,25,0)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1950.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.91%)</title><rect x="28.7879%" y="1956" width="0.9091%" height="15" fill="rgb(206,152,27)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1966.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.91%)</title><rect x="28.7879%" y="1972" width="0.9091%" height="15" fill="rgb(240,77,30)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1982.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.91%)</title><rect x="28.7879%" y="1988" width="0.9091%" height="15" fill="rgb(231,5,3)" fg:x="95" fg:w="3"/><text x="29.0379%" y="1998.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="28.7879%" y="2004" width="0.9091%" height="15" fill="rgb(207,226,32)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2014.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="28.7879%" y="2020" width="0.9091%" height="15" fill="rgb(222,207,47)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2030.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="28.7879%" y="2036" width="0.9091%" height="15" fill="rgb(229,115,45)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2046.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.91%)</title><rect x="28.7879%" y="2052" width="0.9091%" height="15" fill="rgb(224,191,6)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2062.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.91%)</title><rect x="28.7879%" y="2068" width="0.9091%" height="15" fill="rgb(230,227,24)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2078.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.91%)</title><rect x="28.7879%" y="2084" width="0.9091%" height="15" fill="rgb(228,80,19)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2094.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.91%)</title><rect x="28.7879%" y="2100" width="0.9091%" height="15" fill="rgb(247,229,0)" fg:x="95" fg:w="3"/><text x="29.0379%" y="2110.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.30%)</title><rect x="29.3939%" y="2116" width="0.3030%" height="15" fill="rgb(237,194,15)" fg:x="97" fg:w="1"/><text x="29.6439%" y="2126.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (6 samples, 1.82%)</title><rect x="28.1818%" y="1332" width="1.8182%" height="15" fill="rgb(219,203,20)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1342.50">i..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (6 samples, 1.82%)</title><rect x="28.1818%" y="1348" width="1.8182%" height="15" fill="rgb(234,128,8)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1358.50">_..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (6 samples, 1.82%)</title><rect x="28.1818%" y="1364" width="1.8182%" height="15" fill="rgb(248,202,8)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1374.50">_..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (6 samples, 1.82%)</title><rect x="28.1818%" y="1380" width="1.8182%" height="15" fill="rgb(206,104,37)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1390.50">m..</text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (6 samples, 1.82%)</title><rect x="28.1818%" y="1396" width="1.8182%" height="15" fill="rgb(223,8,27)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1406.50">_..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (6 samples, 1.82%)</title><rect x="28.1818%" y="1412" width="1.8182%" height="15" fill="rgb(216,217,28)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1422.50">_..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (6 samples, 1.82%)</title><rect x="28.1818%" y="1428" width="1.8182%" height="15" fill="rgb(249,199,1)" fg:x="93" fg:w="6"/><text x="28.4318%" y="1438.50">g..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.52%)</title><rect x="28.4848%" y="1444" width="1.5152%" height="15" fill="rgb(240,85,17)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.52%)</title><rect x="28.4848%" y="1460" width="1.5152%" height="15" fill="rgb(206,108,45)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1470.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.52%)</title><rect x="28.4848%" y="1476" width="1.5152%" height="15" fill="rgb(245,210,41)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1486.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (5 samples, 1.52%)</title><rect x="28.4848%" y="1492" width="1.5152%" height="15" fill="rgb(206,13,37)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1502.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.52%)</title><rect x="28.4848%" y="1508" width="1.5152%" height="15" fill="rgb(250,61,18)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1518.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (5 samples, 1.52%)</title><rect x="28.4848%" y="1524" width="1.5152%" height="15" fill="rgb(235,172,48)" fg:x="94" fg:w="5"/><text x="28.7348%" y="1534.50"></text></g><g><title>_apply_single_annotation_json_schema (pydantic/_internal/_generate_schema.py:1795) (1 samples, 0.30%)</title><rect x="29.6970%" y="1540" width="0.3030%" height="15" fill="rgb(249,201,17)" fg:x="98" fg:w="1"/><text x="29.9470%" y="1550.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.30%)</title><rect x="30.0000%" y="1460" width="0.3030%" height="15" fill="rgb(219,208,6)" fg:x="99" fg:w="1"/><text x="30.2500%" y="1470.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (8 samples, 2.42%)</title><rect x="28.1818%" y="1300" width="2.4242%" height="15" fill="rgb(248,31,23)" fg:x="93" fg:w="8"/><text x="28.4318%" y="1310.50">_a..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (8 samples, 2.42%)</title><rect x="28.1818%" y="1316" width="2.4242%" height="15" fill="rgb(245,15,42)" fg:x="93" fg:w="8"/><text x="28.4318%" y="1326.50">__..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (2 samples, 0.61%)</title><rect x="30.0000%" y="1332" width="0.6061%" height="15" fill="rgb(222,217,39)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1342.50"></text></g><g><title><lambda> (pydantic/_internal/_generate_schema.py:1825) (2 samples, 0.61%)</title><rect x="30.0000%" y="1348" width="0.6061%" height="15" fill="rgb(210,219,27)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1358.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.61%)</title><rect x="30.0000%" y="1364" width="0.6061%" height="15" fill="rgb(252,166,36)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1374.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (2 samples, 0.61%)</title><rect x="30.0000%" y="1380" width="0.6061%" height="15" fill="rgb(245,132,34)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1390.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.61%)</title><rect x="30.0000%" y="1396" width="0.6061%" height="15" fill="rgb(236,54,3)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1406.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.61%)</title><rect x="30.0000%" y="1412" width="0.6061%" height="15" fill="rgb(241,173,43)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1422.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.61%)</title><rect x="30.0000%" y="1428" width="0.6061%" height="15" fill="rgb(215,190,9)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1438.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.61%)</title><rect x="30.0000%" y="1444" width="0.6061%" height="15" fill="rgb(242,101,16)" fg:x="99" fg:w="2"/><text x="30.2500%" y="1454.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.30%)</title><rect x="30.3030%" y="1460" width="0.3030%" height="15" fill="rgb(223,190,21)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1470.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.30%)</title><rect x="30.3030%" y="1476" width="0.3030%" height="15" fill="rgb(215,228,25)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1486.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.30%)</title><rect x="30.3030%" y="1492" width="0.3030%" height="15" fill="rgb(225,36,22)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1502.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.30%)</title><rect x="30.3030%" y="1508" width="0.3030%" height="15" fill="rgb(251,106,46)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1518.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.30%)</title><rect x="30.3030%" y="1524" width="0.3030%" height="15" fill="rgb(208,90,1)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1534.50"></text></g><g><title>float_schema (pydantic_core/core_schema.py:624) (1 samples, 0.30%)</title><rect x="30.3030%" y="1540" width="0.3030%" height="15" fill="rgb(243,10,4)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1550.50"></text></g><g><title>_dict_not_none (pydantic_core/core_schema.py:3877) (1 samples, 0.30%)</title><rect x="30.3030%" y="1556" width="0.3030%" height="15" fill="rgb(212,137,27)" fg:x="100" fg:w="1"/><text x="30.5530%" y="1566.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="30.6061%" y="1300" width="0.3030%" height="15" fill="rgb(231,220,49)" fg:x="101" fg:w="1"/><text x="30.8561%" y="1310.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.30%)</title><rect x="30.6061%" y="1316" width="0.3030%" height="15" fill="rgb(237,96,20)" fg:x="101" fg:w="1"/><text x="30.8561%" y="1326.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.30%)</title><rect x="30.6061%" y="1332" width="0.3030%" height="15" fill="rgb(239,229,30)" fg:x="101" fg:w="1"/><text x="30.8561%" y="1342.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.30%)</title><rect x="30.6061%" y="1348" width="0.3030%" height="15" fill="rgb(219,65,33)" fg:x="101" fg:w="1"/><text x="30.8561%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="30.6061%" y="1364" width="0.3030%" height="15" fill="rgb(243,134,7)" fg:x="101" fg:w="1"/><text x="30.8561%" y="1374.50"></text></g><g><title>eval_type_lenient (pydantic/_internal/_typing_extra.py:216) (1 samples, 0.30%)</title><rect x="30.9091%" y="1300" width="0.3030%" height="15" fill="rgb(216,177,54)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1310.50"></text></g><g><title>eval_type_backport (pydantic/_internal/_typing_extra.py:230) (1 samples, 0.30%)</title><rect x="30.9091%" y="1316" width="0.3030%" height="15" fill="rgb(211,160,20)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1326.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.30%)</title><rect x="30.9091%" y="1332" width="0.3030%" height="15" fill="rgb(239,85,39)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1342.50"></text></g><g><title><genexpr> (typing.py:294) (1 samples, 0.30%)</title><rect x="30.9091%" y="1348" width="0.3030%" height="15" fill="rgb(232,125,22)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1358.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.30%)</title><rect x="30.9091%" y="1364" width="0.3030%" height="15" fill="rgb(244,57,34)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1374.50"></text></g><g><title><genexpr> (typing.py:294) (1 samples, 0.30%)</title><rect x="30.9091%" y="1380" width="0.3030%" height="15" fill="rgb(214,203,32)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1390.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.30%)</title><rect x="30.9091%" y="1396" width="0.3030%" height="15" fill="rgb(207,58,43)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1406.50"></text></g><g><title>_evaluate (typing.py:539) (1 samples, 0.30%)</title><rect x="30.9091%" y="1412" width="0.3030%" height="15" fill="rgb(215,193,15)" fg:x="102" fg:w="1"/><text x="31.1591%" y="1422.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (14 samples, 4.24%)</title><rect x="27.2727%" y="1044" width="4.2424%" height="15" fill="rgb(232,15,44)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1054.50">inner..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (14 samples, 4.24%)</title><rect x="27.2727%" y="1060" width="4.2424%" height="15" fill="rgb(212,3,48)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1070.50">_gene..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (14 samples, 4.24%)</title><rect x="27.2727%" y="1076" width="4.2424%" height="15" fill="rgb(218,128,7)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1086.50">_gene..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (14 samples, 4.24%)</title><rect x="27.2727%" y="1092" width="4.2424%" height="15" fill="rgb(226,216,39)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1102.50">match..</text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (14 samples, 4.24%)</title><rect x="27.2727%" y="1108" width="4.2424%" height="15" fill="rgb(243,47,51)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1118.50">_matc..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (14 samples, 4.24%)</title><rect x="27.2727%" y="1124" width="4.2424%" height="15" fill="rgb(241,183,40)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1134.50">_unio..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (14 samples, 4.24%)</title><rect x="27.2727%" y="1140" width="4.2424%" height="15" fill="rgb(231,217,32)" fg:x="90" fg:w="14"/><text x="27.5227%" y="1150.50">gener..</text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (12 samples, 3.64%)</title><rect x="27.8788%" y="1156" width="3.6364%" height="15" fill="rgb(229,61,38)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1166.50">_gen..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (12 samples, 3.64%)</title><rect x="27.8788%" y="1172" width="3.6364%" height="15" fill="rgb(225,210,5)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1182.50">__ge..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (12 samples, 3.64%)</title><rect x="27.8788%" y="1188" width="3.6364%" height="15" fill="rgb(231,79,45)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1198.50">__ca..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (12 samples, 3.64%)</title><rect x="27.8788%" y="1204" width="3.6364%" height="15" fill="rgb(224,100,7)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1214.50">_gen..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (12 samples, 3.64%)</title><rect x="27.8788%" y="1220" width="3.6364%" height="15" fill="rgb(241,198,18)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1230.50">_gen..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (12 samples, 3.64%)</title><rect x="27.8788%" y="1236" width="3.6364%" height="15" fill="rgb(252,97,53)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1246.50">_mod..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (12 samples, 3.64%)</title><rect x="27.8788%" y="1252" width="3.6364%" height="15" fill="rgb(220,88,7)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1262.50"><dic..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (12 samples, 3.64%)</title><rect x="27.8788%" y="1268" width="3.6364%" height="15" fill="rgb(213,176,14)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1278.50">_gen..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (12 samples, 3.64%)</title><rect x="27.8788%" y="1284" width="3.6364%" height="15" fill="rgb(246,73,7)" fg:x="92" fg:w="12"/><text x="28.1288%" y="1294.50">_com..</text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.30%)</title><rect x="31.2121%" y="1300" width="0.3030%" height="15" fill="rgb(245,64,36)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1310.50"></text></g><g><title><genexpr> (pydantic/_internal/_generics.py:354) (1 samples, 0.30%)</title><rect x="31.2121%" y="1316" width="0.3030%" height="15" fill="rgb(245,80,10)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1326.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.30%)</title><rect x="31.2121%" y="1332" width="0.3030%" height="15" fill="rgb(232,107,50)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1342.50"></text></g><g><title><genexpr> (pydantic/_internal/_generics.py:354) (1 samples, 0.30%)</title><rect x="31.2121%" y="1348" width="0.3030%" height="15" fill="rgb(253,3,0)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1358.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.30%)</title><rect x="31.2121%" y="1364" width="0.3030%" height="15" fill="rgb(212,99,53)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1374.50"></text></g><g><title><genexpr> (pydantic/_internal/_generics.py:354) (1 samples, 0.30%)</title><rect x="31.2121%" y="1380" width="0.3030%" height="15" fill="rgb(249,111,54)" fg:x="103" fg:w="1"/><text x="31.4621%" y="1390.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.30%)</title><rect x="31.5152%" y="1604" width="0.3030%" height="15" fill="rgb(249,55,30)" fg:x="104" fg:w="1"/><text x="31.7652%" y="1614.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.30%)</title><rect x="31.5152%" y="1620" width="0.3030%" height="15" fill="rgb(237,47,42)" fg:x="104" fg:w="1"/><text x="31.7652%" y="1630.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (2 samples, 0.61%)</title><rect x="31.5152%" y="1540" width="0.6061%" height="15" fill="rgb(211,20,18)" fg:x="104" fg:w="2"/><text x="31.7652%" y="1550.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.61%)</title><rect x="31.5152%" y="1556" width="0.6061%" height="15" fill="rgb(231,203,46)" fg:x="104" fg:w="2"/><text x="31.7652%" y="1566.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.61%)</title><rect x="31.5152%" y="1572" width="0.6061%" height="15" fill="rgb(237,142,3)" fg:x="104" fg:w="2"/><text x="31.7652%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="31.5152%" y="1588" width="0.6061%" height="15" fill="rgb(241,107,1)" fg:x="104" fg:w="2"/><text x="31.7652%" y="1598.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.30%)</title><rect x="31.8182%" y="1604" width="0.3030%" height="15" fill="rgb(229,83,13)" fg:x="105" fg:w="1"/><text x="32.0682%" y="1614.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.30%)</title><rect x="31.8182%" y="1620" width="0.3030%" height="15" fill="rgb(241,91,40)" fg:x="105" fg:w="1"/><text x="32.0682%" y="1630.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (17 samples, 5.15%)</title><rect x="27.2727%" y="1012" width="5.1515%" height="15" fill="rgb(225,3,45)" fg:x="90" fg:w="17"/><text x="27.5227%" y="1022.50">_apply..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (17 samples, 5.15%)</title><rect x="27.2727%" y="1028" width="5.1515%" height="15" fill="rgb(244,223,14)" fg:x="90" fg:w="17"/><text x="27.5227%" y="1038.50">__call..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (3 samples, 0.91%)</title><rect x="31.5152%" y="1044" width="0.9091%" height="15" fill="rgb(224,124,37)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1054.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (3 samples, 0.91%)</title><rect x="31.5152%" y="1060" width="0.9091%" height="15" fill="rgb(251,171,30)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1070.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 0.91%)</title><rect x="31.5152%" y="1076" width="0.9091%" height="15" fill="rgb(236,46,54)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1086.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.91%)</title><rect x="31.5152%" y="1092" width="0.9091%" height="15" fill="rgb(245,213,5)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1102.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.91%)</title><rect x="31.5152%" y="1108" width="0.9091%" height="15" fill="rgb(230,144,27)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1118.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.91%)</title><rect x="31.5152%" y="1124" width="0.9091%" height="15" fill="rgb(220,86,6)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1134.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="31.5152%" y="1140" width="0.9091%" height="15" fill="rgb(240,20,13)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1150.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="31.5152%" y="1156" width="0.9091%" height="15" fill="rgb(217,89,34)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="31.5152%" y="1172" width="0.9091%" height="15" fill="rgb(229,13,5)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1182.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.91%)</title><rect x="31.5152%" y="1188" width="0.9091%" height="15" fill="rgb(244,67,35)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1198.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.91%)</title><rect x="31.5152%" y="1204" width="0.9091%" height="15" fill="rgb(221,40,2)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1214.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.91%)</title><rect x="31.5152%" y="1220" width="0.9091%" height="15" fill="rgb(237,157,21)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1230.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.91%)</title><rect x="31.5152%" y="1236" width="0.9091%" height="15" fill="rgb(222,94,11)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1246.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.91%)</title><rect x="31.5152%" y="1252" width="0.9091%" height="15" fill="rgb(249,113,6)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1262.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="31.5152%" y="1268" width="0.9091%" height="15" fill="rgb(238,137,36)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1278.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 0.91%)</title><rect x="31.5152%" y="1284" width="0.9091%" height="15" fill="rgb(210,102,26)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="31.5152%" y="1300" width="0.9091%" height="15" fill="rgb(218,30,30)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="31.5152%" y="1316" width="0.9091%" height="15" fill="rgb(214,67,26)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.91%)</title><rect x="31.5152%" y="1332" width="0.9091%" height="15" fill="rgb(251,9,53)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.91%)</title><rect x="31.5152%" y="1348" width="0.9091%" height="15" fill="rgb(228,204,25)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.91%)</title><rect x="31.5152%" y="1364" width="0.9091%" height="15" fill="rgb(207,153,8)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.91%)</title><rect x="31.5152%" y="1380" width="0.9091%" height="15" fill="rgb(242,9,16)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.91%)</title><rect x="31.5152%" y="1396" width="0.9091%" height="15" fill="rgb(217,211,10)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.91%)</title><rect x="31.5152%" y="1412" width="0.9091%" height="15" fill="rgb(219,228,52)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.91%)</title><rect x="31.5152%" y="1428" width="0.9091%" height="15" fill="rgb(231,92,29)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.91%)</title><rect x="31.5152%" y="1444" width="0.9091%" height="15" fill="rgb(232,8,23)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.91%)</title><rect x="31.5152%" y="1460" width="0.9091%" height="15" fill="rgb(216,211,34)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.91%)</title><rect x="31.5152%" y="1476" width="0.9091%" height="15" fill="rgb(236,151,0)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.91%)</title><rect x="31.5152%" y="1492" width="0.9091%" height="15" fill="rgb(209,168,3)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.91%)</title><rect x="31.5152%" y="1508" width="0.9091%" height="15" fill="rgb(208,129,28)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.91%)</title><rect x="31.5152%" y="1524" width="0.9091%" height="15" fill="rgb(229,78,22)" fg:x="104" fg:w="3"/><text x="31.7652%" y="1534.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="32.1212%" y="1540" width="0.3030%" height="15" fill="rgb(228,187,13)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1550.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.30%)</title><rect x="32.1212%" y="1556" width="0.3030%" height="15" fill="rgb(240,119,24)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1566.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.30%)</title><rect x="32.1212%" y="1572" width="0.3030%" height="15" fill="rgb(209,194,42)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1582.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.30%)</title><rect x="32.1212%" y="1588" width="0.3030%" height="15" fill="rgb(247,200,46)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1598.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="32.1212%" y="1604" width="0.3030%" height="15" fill="rgb(218,76,16)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1614.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.30%)</title><rect x="32.1212%" y="1620" width="0.3030%" height="15" fill="rgb(225,21,48)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1630.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.30%)</title><rect x="32.1212%" y="1636" width="0.3030%" height="15" fill="rgb(239,223,50)" fg:x="106" fg:w="1"/><text x="32.3712%" y="1646.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.30%)</title><rect x="32.4242%" y="1092" width="0.3030%" height="15" fill="rgb(244,45,21)" fg:x="107" fg:w="1"/><text x="32.6742%" y="1102.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.30%)</title><rect x="32.4242%" y="1108" width="0.3030%" height="15" fill="rgb(232,33,43)" fg:x="107" fg:w="1"/><text x="32.6742%" y="1118.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (19 samples, 5.76%)</title><rect x="27.2727%" y="868" width="5.7576%" height="15" fill="rgb(209,8,3)" fg:x="90" fg:w="19"/><text x="27.5227%" y="878.50">__get_p..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (19 samples, 5.76%)</title><rect x="27.2727%" y="884" width="5.7576%" height="15" fill="rgb(214,25,53)" fg:x="90" fg:w="19"/><text x="27.5227%" y="894.50">__call_..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (19 samples, 5.76%)</title><rect x="27.2727%" y="900" width="5.7576%" height="15" fill="rgb(254,186,54)" fg:x="90" fg:w="19"/><text x="27.5227%" y="910.50">generat..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (19 samples, 5.76%)</title><rect x="27.2727%" y="916" width="5.7576%" height="15" fill="rgb(208,174,49)" fg:x="90" fg:w="19"/><text x="27.5227%" y="926.50">_genera..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (19 samples, 5.76%)</title><rect x="27.2727%" y="932" width="5.7576%" height="15" fill="rgb(233,191,51)" fg:x="90" fg:w="19"/><text x="27.5227%" y="942.50">_genera..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (19 samples, 5.76%)</title><rect x="27.2727%" y="948" width="5.7576%" height="15" fill="rgb(222,134,10)" fg:x="90" fg:w="19"/><text x="27.5227%" y="958.50">_model_..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (19 samples, 5.76%)</title><rect x="27.2727%" y="964" width="5.7576%" height="15" fill="rgb(230,226,20)" fg:x="90" fg:w="19"/><text x="27.5227%" y="974.50"><dictco..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (19 samples, 5.76%)</title><rect x="27.2727%" y="980" width="5.7576%" height="15" fill="rgb(251,111,25)" fg:x="90" fg:w="19"/><text x="27.5227%" y="990.50">_genera..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (19 samples, 5.76%)</title><rect x="27.2727%" y="996" width="5.7576%" height="15" fill="rgb(224,40,46)" fg:x="90" fg:w="19"/><text x="27.5227%" y="1006.50">_common..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="32.4242%" y="1012" width="0.6061%" height="15" fill="rgb(236,108,47)" fg:x="107" fg:w="2"/><text x="32.6742%" y="1022.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (2 samples, 0.61%)</title><rect x="32.4242%" y="1028" width="0.6061%" height="15" fill="rgb(234,93,0)" fg:x="107" fg:w="2"/><text x="32.6742%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.61%)</title><rect x="32.4242%" y="1044" width="0.6061%" height="15" fill="rgb(224,213,32)" fg:x="107" fg:w="2"/><text x="32.6742%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.61%)</title><rect x="32.4242%" y="1060" width="0.6061%" height="15" fill="rgb(251,11,48)" fg:x="107" fg:w="2"/><text x="32.6742%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="32.4242%" y="1076" width="0.6061%" height="15" fill="rgb(236,173,5)" fg:x="107" fg:w="2"/><text x="32.6742%" y="1086.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.30%)</title><rect x="32.7273%" y="1092" width="0.3030%" height="15" fill="rgb(230,95,12)" fg:x="108" fg:w="1"/><text x="32.9773%" y="1102.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.30%)</title><rect x="32.7273%" y="1108" width="0.3030%" height="15" fill="rgb(232,209,1)" fg:x="108" fg:w="1"/><text x="32.9773%" y="1118.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.30%)</title><rect x="32.7273%" y="1124" width="0.3030%" height="15" fill="rgb(232,6,1)" fg:x="108" fg:w="1"/><text x="32.9773%" y="1134.50"></text></g><g><title>collect_invalid_schemas (pydantic/_internal/_core_utils.py:165) (1 samples, 0.30%)</title><rect x="33.0303%" y="884" width="0.3030%" height="15" fill="rgb(210,224,50)" fg:x="109" fg:w="1"/><text x="33.2803%" y="894.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (1 samples, 0.30%)</title><rect x="33.0303%" y="900" width="0.3030%" height="15" fill="rgb(228,127,35)" fg:x="109" fg:w="1"/><text x="33.2803%" y="910.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="916" width="0.3030%" height="15" fill="rgb(245,102,45)" fg:x="109" fg:w="1"/><text x="33.2803%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="33.0303%" y="932" width="0.3030%" height="15" fill="rgb(214,1,49)" fg:x="109" fg:w="1"/><text x="33.2803%" y="942.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="948" width="0.3030%" height="15" fill="rgb(226,163,40)" fg:x="109" fg:w="1"/><text x="33.2803%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="33.0303%" y="964" width="0.3030%" height="15" fill="rgb(239,212,28)" fg:x="109" fg:w="1"/><text x="33.2803%" y="974.50"></text></g><g><title>handle_definitions_schema (pydantic/_internal/_core_utils.py:228) (1 samples, 0.30%)</title><rect x="33.0303%" y="980" width="0.3030%" height="15" fill="rgb(220,20,13)" fg:x="109" fg:w="1"/><text x="33.2803%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="33.0303%" y="996" width="0.3030%" height="15" fill="rgb(210,164,35)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1006.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="1012" width="0.3030%" height="15" fill="rgb(248,109,41)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="33.0303%" y="1028" width="0.3030%" height="15" fill="rgb(238,23,50)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1038.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.30%)</title><rect x="33.0303%" y="1044" width="0.3030%" height="15" fill="rgb(211,48,49)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="33.0303%" y="1060" width="0.3030%" height="15" fill="rgb(223,36,21)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1070.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="1076" width="0.3030%" height="15" fill="rgb(207,123,46)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="33.0303%" y="1092" width="0.3030%" height="15" fill="rgb(240,218,32)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1102.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.30%)</title><rect x="33.0303%" y="1108" width="0.3030%" height="15" fill="rgb(252,5,43)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="33.0303%" y="1124" width="0.3030%" height="15" fill="rgb(252,84,19)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1134.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="1140" width="0.3030%" height="15" fill="rgb(243,152,39)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="33.0303%" y="1156" width="0.3030%" height="15" fill="rgb(234,160,15)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.30%)</title><rect x="33.0303%" y="1172" width="0.3030%" height="15" fill="rgb(237,34,20)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="33.0303%" y="1188" width="0.3030%" height="15" fill="rgb(229,97,13)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1198.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.30%)</title><rect x="33.0303%" y="1204" width="0.3030%" height="15" fill="rgb(234,71,50)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1214.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="33.0303%" y="1220" width="0.3030%" height="15" fill="rgb(253,155,4)" fg:x="109" fg:w="1"/><text x="33.2803%" y="1230.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (24 samples, 7.27%)</title><rect x="33.3333%" y="884" width="7.2727%" height="15" fill="rgb(222,185,37)" fg:x="110" fg:w="24"/><text x="33.5833%" y="894.50">simplify_s..</text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (24 samples, 7.27%)</title><rect x="33.3333%" y="900" width="7.2727%" height="15" fill="rgb(251,177,13)" fg:x="110" fg:w="24"/><text x="33.5833%" y="910.50">walk_core_..</text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (24 samples, 7.27%)</title><rect x="33.3333%" y="916" width="7.2727%" height="15" fill="rgb(250,179,40)" fg:x="110" fg:w="24"/><text x="33.5833%" y="926.50">collect_re..</text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (24 samples, 7.27%)</title><rect x="33.3333%" y="932" width="7.2727%" height="15" fill="rgb(242,44,2)" fg:x="110" fg:w="24"/><text x="33.5833%" y="942.50">walk (pyda..</text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (24 samples, 7.27%)</title><rect x="33.3333%" y="948" width="7.2727%" height="15" fill="rgb(216,177,13)" fg:x="110" fg:w="24"/><text x="33.5833%" y="958.50">collect_re..</text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (24 samples, 7.27%)</title><rect x="33.3333%" y="964" width="7.2727%" height="15" fill="rgb(216,106,43)" fg:x="110" fg:w="24"/><text x="33.5833%" y="974.50">_walk (pyd..</text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (24 samples, 7.27%)</title><rect x="33.3333%" y="980" width="7.2727%" height="15" fill="rgb(216,183,2)" fg:x="110" fg:w="24"/><text x="33.5833%" y="990.50">_handle_ot..</text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (24 samples, 7.27%)</title><rect x="33.3333%" y="996" width="7.2727%" height="15" fill="rgb(249,75,3)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1006.50">walk (pyda..</text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (24 samples, 7.27%)</title><rect x="33.3333%" y="1012" width="7.2727%" height="15" fill="rgb(219,67,39)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1022.50">collect_re..</text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (24 samples, 7.27%)</title><rect x="33.3333%" y="1028" width="7.2727%" height="15" fill="rgb(253,228,2)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1038.50">_walk (pyd..</text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (24 samples, 7.27%)</title><rect x="33.3333%" y="1044" width="7.2727%" height="15" fill="rgb(235,138,27)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1054.50">handle_mod..</text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (24 samples, 7.27%)</title><rect x="33.3333%" y="1060" width="7.2727%" height="15" fill="rgb(236,97,51)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1070.50">walk (pyda..</text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (24 samples, 7.27%)</title><rect x="33.3333%" y="1076" width="7.2727%" height="15" fill="rgb(240,80,30)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1086.50">collect_re..</text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (24 samples, 7.27%)</title><rect x="33.3333%" y="1092" width="7.2727%" height="15" fill="rgb(230,178,19)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1102.50">_walk (pyd..</text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (24 samples, 7.27%)</title><rect x="33.3333%" y="1108" width="7.2727%" height="15" fill="rgb(210,190,27)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1118.50">_handle_ot..</text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (24 samples, 7.27%)</title><rect x="33.3333%" y="1124" width="7.2727%" height="15" fill="rgb(222,107,31)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1134.50">walk (pyda..</text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (24 samples, 7.27%)</title><rect x="33.3333%" y="1140" width="7.2727%" height="15" fill="rgb(216,127,34)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1150.50">collect_re..</text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (24 samples, 7.27%)</title><rect x="33.3333%" y="1156" width="7.2727%" height="15" fill="rgb(234,116,52)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1166.50">_walk (pyd..</text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (24 samples, 7.27%)</title><rect x="33.3333%" y="1172" width="7.2727%" height="15" fill="rgb(222,124,15)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1182.50">_handle_ot..</text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (24 samples, 7.27%)</title><rect x="33.3333%" y="1188" width="7.2727%" height="15" fill="rgb(231,179,28)" fg:x="110" fg:w="24"/><text x="33.5833%" y="1198.50">walk (pyda..</text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (29 samples, 8.79%)</title><rect x="33.0303%" y="868" width="8.7879%" height="15" fill="rgb(226,93,45)" fg:x="109" fg:w="29"/><text x="33.2803%" y="878.50">clean_schema..</text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (4 samples, 1.21%)</title><rect x="40.6061%" y="884" width="1.2121%" height="15" fill="rgb(215,8,51)" fg:x="134" fg:w="4"/><text x="40.8561%" y="894.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (50 samples, 15.15%)</title><rect x="27.2727%" y="836" width="15.1515%" height="15" fill="rgb(223,106,5)" fg:x="90" fg:w="50"/><text x="27.5227%" y="846.50">__new__ (pydantic/_inte..</text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (50 samples, 15.15%)</title><rect x="27.2727%" y="852" width="15.1515%" height="15" fill="rgb(250,191,5)" fg:x="90" fg:w="50"/><text x="27.5227%" y="862.50">complete_model_class (p..</text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (2 samples, 0.61%)</title><rect x="41.8182%" y="868" width="0.6061%" height="15" fill="rgb(242,132,44)" fg:x="138" fg:w="2"/><text x="42.0682%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="42.4242%" y="1188" width="0.9091%" height="15" fill="rgb(251,152,29)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="42.4242%" y="1204" width="0.9091%" height="15" fill="rgb(218,179,5)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="42.4242%" y="1220" width="0.9091%" height="15" fill="rgb(227,67,19)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="42.4242%" y="1236" width="0.9091%" height="15" fill="rgb(233,119,31)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="42.4242%" y="1252" width="0.9091%" height="15" fill="rgb(241,120,22)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1262.50"></text></g><g><title><module> (pydantic_core/__init__.py:1) (3 samples, 0.91%)</title><rect x="42.4242%" y="1268" width="0.9091%" height="15" fill="rgb(224,102,30)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="42.4242%" y="1284" width="0.9091%" height="15" fill="rgb(210,164,37)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="42.4242%" y="1300" width="0.9091%" height="15" fill="rgb(226,191,16)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="42.4242%" y="1316" width="0.9091%" height="15" fill="rgb(214,40,45)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="42.4242%" y="1332" width="0.9091%" height="15" fill="rgb(244,29,26)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="42.4242%" y="1348" width="0.9091%" height="15" fill="rgb(216,16,5)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1358.50"></text></g><g><title><module> (pydantic_core/core_schema.py:1) (3 samples, 0.91%)</title><rect x="42.4242%" y="1364" width="0.9091%" height="15" fill="rgb(249,76,35)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1374.50"></text></g><g><title>__new__ (typing_extensions.py:789) (3 samples, 0.91%)</title><rect x="42.4242%" y="1380" width="0.9091%" height="15" fill="rgb(207,11,44)" fg:x="140" fg:w="3"/><text x="42.6742%" y="1390.50"></text></g><g><title><dictcomp> (typing_extensions.py:821) (2 samples, 0.61%)</title><rect x="42.7273%" y="1396" width="0.6061%" height="15" fill="rgb(228,190,49)" fg:x="141" fg:w="2"/><text x="42.9773%" y="1406.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.30%)</title><rect x="43.0303%" y="1412" width="0.3030%" height="15" fill="rgb(214,173,12)" fg:x="142" fg:w="1"/><text x="43.2803%" y="1422.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.30%)</title><rect x="43.0303%" y="1428" width="0.3030%" height="15" fill="rgb(218,26,35)" fg:x="142" fg:w="1"/><text x="43.2803%" y="1438.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.30%)</title><rect x="43.0303%" y="1444" width="0.3030%" height="15" fill="rgb(220,200,19)" fg:x="142" fg:w="1"/><text x="43.2803%" y="1454.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="43.3333%" y="1252" width="0.3030%" height="15" fill="rgb(239,95,49)" fg:x="143" fg:w="1"/><text x="43.5833%" y="1262.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="43.3333%" y="1268" width="0.3030%" height="15" fill="rgb(235,85,53)" fg:x="143" fg:w="1"/><text x="43.5833%" y="1278.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="43.3333%" y="1284" width="0.3030%" height="15" fill="rgb(233,133,31)" fg:x="143" fg:w="1"/><text x="43.5833%" y="1294.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="43.3333%" y="1300" width="0.3030%" height="15" fill="rgb(218,25,20)" fg:x="143" fg:w="1"/><text x="43.5833%" y="1310.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.30%)</title><rect x="43.3333%" y="1316" width="0.3030%" height="15" fill="rgb(252,210,38)" fg:x="143" fg:w="1"/><text x="43.5833%" y="1326.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="42.4242%" y="1028" width="1.5152%" height="15" fill="rgb(242,134,21)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1038.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (5 samples, 1.52%)</title><rect x="42.4242%" y="1044" width="1.5152%" height="15" fill="rgb(213,28,48)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1054.50"></text></g><g><title>import_module (importlib/__init__.py:109) (5 samples, 1.52%)</title><rect x="42.4242%" y="1060" width="1.5152%" height="15" fill="rgb(250,196,2)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1070.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (5 samples, 1.52%)</title><rect x="42.4242%" y="1076" width="1.5152%" height="15" fill="rgb(227,5,17)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="42.4242%" y="1092" width="1.5152%" height="15" fill="rgb(221,226,24)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="42.4242%" y="1108" width="1.5152%" height="15" fill="rgb(211,5,48)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="42.4242%" y="1124" width="1.5152%" height="15" fill="rgb(219,150,6)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="42.4242%" y="1140" width="1.5152%" height="15" fill="rgb(251,46,16)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="42.4242%" y="1156" width="1.5152%" height="15" fill="rgb(220,204,40)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1166.50"></text></g><g><title><module> (pydantic/main.py:1) (5 samples, 1.52%)</title><rect x="42.4242%" y="1172" width="1.5152%" height="15" fill="rgb(211,85,2)" fg:x="140" fg:w="5"/><text x="42.6742%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="43.3333%" y="1188" width="0.6061%" height="15" fill="rgb(229,17,7)" fg:x="143" fg:w="2"/><text x="43.5833%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="43.3333%" y="1204" width="0.6061%" height="15" fill="rgb(239,72,28)" fg:x="143" fg:w="2"/><text x="43.5833%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="43.3333%" y="1220" width="0.6061%" height="15" fill="rgb(230,47,54)" fg:x="143" fg:w="2"/><text x="43.5833%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="43.3333%" y="1236" width="0.6061%" height="15" fill="rgb(214,50,8)" fg:x="143" fg:w="2"/><text x="43.5833%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="43.6364%" y="1252" width="0.3030%" height="15" fill="rgb(216,198,43)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="43.6364%" y="1268" width="0.3030%" height="15" fill="rgb(234,20,35)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="43.6364%" y="1284" width="0.3030%" height="15" fill="rgb(254,45,19)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1294.50"></text></g><g><title><module> (pydantic/_internal/_model_construction.py:1) (1 samples, 0.30%)</title><rect x="43.6364%" y="1300" width="0.3030%" height="15" fill="rgb(219,14,44)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="43.6364%" y="1316" width="0.3030%" height="15" fill="rgb(217,220,26)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="43.6364%" y="1332" width="0.3030%" height="15" fill="rgb(213,158,28)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="43.6364%" y="1348" width="0.3030%" height="15" fill="rgb(252,51,52)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="43.6364%" y="1364" width="0.3030%" height="15" fill="rgb(246,89,16)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="43.6364%" y="1380" width="0.3030%" height="15" fill="rgb(216,158,49)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1390.50"></text></g><g><title><module> (pydantic/_internal/_generate_schema.py:1) (1 samples, 0.30%)</title><rect x="43.6364%" y="1396" width="0.3030%" height="15" fill="rgb(236,107,19)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="43.6364%" y="1412" width="0.3030%" height="15" fill="rgb(228,185,30)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1422.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="43.6364%" y="1428" width="0.3030%" height="15" fill="rgb(246,134,8)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1438.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="43.6364%" y="1444" width="0.3030%" height="15" fill="rgb(214,143,50)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1454.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="43.6364%" y="1460" width="0.3030%" height="15" fill="rgb(228,75,8)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="43.6364%" y="1476" width="0.3030%" height="15" fill="rgb(207,175,4)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1486.50"></text></g><g><title><module> (pydantic/json_schema.py:1) (1 samples, 0.30%)</title><rect x="43.6364%" y="1492" width="0.3030%" height="15" fill="rgb(205,108,24)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1502.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="43.6364%" y="1508" width="0.3030%" height="15" fill="rgb(244,120,49)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1518.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="43.6364%" y="1524" width="0.3030%" height="15" fill="rgb(223,47,38)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1534.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="43.6364%" y="1540" width="0.3030%" height="15" fill="rgb(229,179,11)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1550.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="43.6364%" y="1556" width="0.3030%" height="15" fill="rgb(231,122,1)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1566.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="43.6364%" y="1572" width="0.3030%" height="15" fill="rgb(245,119,9)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1582.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="43.6364%" y="1588" width="0.3030%" height="15" fill="rgb(241,163,25)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1598.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="43.6364%" y="1604" width="0.3030%" height="15" fill="rgb(217,214,3)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1614.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="43.6364%" y="1620" width="0.3030%" height="15" fill="rgb(240,86,28)" fg:x="144" fg:w="1"/><text x="43.8864%" y="1630.50"></text></g><g><title><module> (fastapi/exceptions.py:1) (8 samples, 2.42%)</title><rect x="42.4242%" y="1012" width="2.4242%" height="15" fill="rgb(215,47,9)" fg:x="140" fg:w="8"/><text x="42.6742%" y="1022.50"><m..</text></g><g><title>create_model (pydantic/main.py:1397) (3 samples, 0.91%)</title><rect x="43.9394%" y="1028" width="0.9091%" height="15" fill="rgb(252,25,45)" fg:x="145" fg:w="3"/><text x="44.1894%" y="1038.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (3 samples, 0.91%)</title><rect x="43.9394%" y="1044" width="0.9091%" height="15" fill="rgb(251,164,9)" fg:x="145" fg:w="3"/><text x="44.1894%" y="1054.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (3 samples, 0.91%)</title><rect x="43.9394%" y="1060" width="0.9091%" height="15" fill="rgb(233,194,0)" fg:x="145" fg:w="3"/><text x="44.1894%" y="1070.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (3 samples, 0.91%)</title><rect x="43.9394%" y="1076" width="0.9091%" height="15" fill="rgb(249,111,24)" fg:x="145" fg:w="3"/><text x="44.1894%" y="1086.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (3 samples, 0.91%)</title><rect x="43.9394%" y="1092" width="0.9091%" height="15" fill="rgb(250,223,3)" fg:x="145" fg:w="3"/><text x="44.1894%" y="1102.50"></text></g><g><title><module> (anyio/_core/_synchronization.py:1) (1 samples, 0.30%)</title><rect x="44.8485%" y="1668" width="0.3030%" height="15" fill="rgb(236,178,37)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="44.8485%" y="1684" width="0.3030%" height="15" fill="rgb(241,158,50)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="44.8485%" y="1700" width="0.3030%" height="15" fill="rgb(213,121,41)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="44.8485%" y="1716" width="0.3030%" height="15" fill="rgb(240,92,3)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="44.8485%" y="1732" width="0.3030%" height="15" fill="rgb(205,123,3)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="44.8485%" y="1748" width="0.3030%" height="15" fill="rgb(205,97,47)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1758.50"></text></g><g><title><module> (anyio/lowlevel.py:1) (1 samples, 0.30%)</title><rect x="44.8485%" y="1764" width="0.3030%" height="15" fill="rgb(247,152,14)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1774.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.30%)</title><rect x="44.8485%" y="1780" width="0.3030%" height="15" fill="rgb(248,195,53)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1790.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.30%)</title><rect x="44.8485%" y="1796" width="0.3030%" height="15" fill="rgb(226,201,16)" fg:x="148" fg:w="1"/><text x="45.0985%" y="1806.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.03%)</title><rect x="42.4242%" y="836" width="3.0303%" height="15" fill="rgb(205,98,0)" fg:x="140" fg:w="10"/><text x="42.6742%" y="846.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.03%)</title><rect x="42.4242%" y="852" width="3.0303%" height="15" fill="rgb(214,191,48)" fg:x="140" fg:w="10"/><text x="42.6742%" y="862.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.03%)</title><rect x="42.4242%" y="868" width="3.0303%" height="15" fill="rgb(237,112,39)" fg:x="140" fg:w="10"/><text x="42.6742%" y="878.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.03%)</title><rect x="42.4242%" y="884" width="3.0303%" height="15" fill="rgb(247,203,27)" fg:x="140" fg:w="10"/><text x="42.6742%" y="894.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.03%)</title><rect x="42.4242%" y="900" width="3.0303%" height="15" fill="rgb(235,124,28)" fg:x="140" fg:w="10"/><text x="42.6742%" y="910.50">_ca..</text></g><g><title><module> (fastapi/_compat.py:1) (10 samples, 3.03%)</title><rect x="42.4242%" y="916" width="3.0303%" height="15" fill="rgb(208,207,46)" fg:x="140" fg:w="10"/><text x="42.6742%" y="926.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.03%)</title><rect x="42.4242%" y="932" width="3.0303%" height="15" fill="rgb(234,176,4)" fg:x="140" fg:w="10"/><text x="42.6742%" y="942.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.03%)</title><rect x="42.4242%" y="948" width="3.0303%" height="15" fill="rgb(230,133,28)" fg:x="140" fg:w="10"/><text x="42.6742%" y="958.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.03%)</title><rect x="42.4242%" y="964" width="3.0303%" height="15" fill="rgb(211,137,40)" fg:x="140" fg:w="10"/><text x="42.6742%" y="974.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.03%)</title><rect x="42.4242%" y="980" width="3.0303%" height="15" fill="rgb(254,35,13)" fg:x="140" fg:w="10"/><text x="42.6742%" y="990.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.03%)</title><rect x="42.4242%" y="996" width="3.0303%" height="15" fill="rgb(225,49,51)" fg:x="140" fg:w="10"/><text x="42.6742%" y="1006.50">_ca..</text></g><g><title><module> (starlette/datastructures.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1012" width="0.6061%" height="15" fill="rgb(251,10,15)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1028" width="0.6061%" height="15" fill="rgb(228,207,15)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1044" width="0.6061%" height="15" fill="rgb(241,99,19)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1060" width="0.6061%" height="15" fill="rgb(207,104,49)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1076" width="0.6061%" height="15" fill="rgb(234,99,18)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1092" width="0.6061%" height="15" fill="rgb(213,191,49)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1102.50"></text></g><g><title><module> (starlette/concurrency.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1108" width="0.6061%" height="15" fill="rgb(210,226,19)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1124" width="0.6061%" height="15" fill="rgb(229,97,18)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1140" width="0.6061%" height="15" fill="rgb(211,167,15)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1156" width="0.6061%" height="15" fill="rgb(210,169,34)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1172" width="0.6061%" height="15" fill="rgb(241,121,31)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1188" width="0.6061%" height="15" fill="rgb(232,40,11)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1204" width="0.6061%" height="15" fill="rgb(205,86,26)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1220" width="0.6061%" height="15" fill="rgb(231,126,28)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1236" width="0.6061%" height="15" fill="rgb(219,221,18)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1246.50"></text></g><g><title><module> (anyio/__init__.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1252" width="0.6061%" height="15" fill="rgb(211,40,0)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1268" width="0.6061%" height="15" fill="rgb(239,85,43)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1284" width="0.6061%" height="15" fill="rgb(231,55,21)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1300" width="0.6061%" height="15" fill="rgb(225,184,43)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1316" width="0.6061%" height="15" fill="rgb(251,158,41)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1332" width="0.6061%" height="15" fill="rgb(234,159,37)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1342.50"></text></g><g><title><module> (anyio/_core/_fileio.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1348" width="0.6061%" height="15" fill="rgb(216,204,22)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="44.8485%" y="1364" width="0.6061%" height="15" fill="rgb(214,17,3)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1380" width="0.6061%" height="15" fill="rgb(212,111,17)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1396" width="0.6061%" height="15" fill="rgb(221,157,24)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1412" width="0.6061%" height="15" fill="rgb(252,16,13)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1428" width="0.6061%" height="15" fill="rgb(221,62,2)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1444" width="0.6061%" height="15" fill="rgb(247,87,22)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1460" width="0.6061%" height="15" fill="rgb(215,73,9)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1470.50"></text></g><g><title><module> (anyio/to_thread.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1476" width="0.6061%" height="15" fill="rgb(207,175,33)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1492" width="0.6061%" height="15" fill="rgb(243,129,54)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1508" width="0.6061%" height="15" fill="rgb(227,119,45)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1524" width="0.6061%" height="15" fill="rgb(205,109,36)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1540" width="0.6061%" height="15" fill="rgb(205,6,39)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1556" width="0.6061%" height="15" fill="rgb(221,32,16)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1566.50"></text></g><g><title><module> (anyio/abc/__init__.py:1) (2 samples, 0.61%)</title><rect x="44.8485%" y="1572" width="0.6061%" height="15" fill="rgb(228,144,50)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="44.8485%" y="1588" width="0.6061%" height="15" fill="rgb(229,201,53)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="44.8485%" y="1604" width="0.6061%" height="15" fill="rgb(249,153,27)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="44.8485%" y="1620" width="0.6061%" height="15" fill="rgb(227,106,25)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="44.8485%" y="1636" width="0.6061%" height="15" fill="rgb(230,65,29)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="44.8485%" y="1652" width="0.6061%" height="15" fill="rgb(221,57,46)" fg:x="148" fg:w="2"/><text x="45.0985%" y="1662.50"></text></g><g><title><module> (anyio/abc/_resources.py:1) (1 samples, 0.30%)</title><rect x="45.1515%" y="1668" width="0.3030%" height="15" fill="rgb(229,161,17)" fg:x="149" fg:w="1"/><text x="45.4015%" y="1678.50"></text></g><g><title>AsyncResource (anyio/abc/_resources.py:10) (1 samples, 0.30%)</title><rect x="45.1515%" y="1684" width="0.3030%" height="15" fill="rgb(222,213,11)" fg:x="149" fg:w="1"/><text x="45.4015%" y="1694.50"></text></g><g><title><module> (fastapi/params.py:1) (63 samples, 19.09%)</title><rect x="27.2727%" y="724" width="19.0909%" height="15" fill="rgb(235,35,13)" fg:x="90" fg:w="63"/><text x="27.5227%" y="734.50"><module> (fastapi/params.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (63 samples, 19.09%)</title><rect x="27.2727%" y="740" width="19.0909%" height="15" fill="rgb(233,158,34)" fg:x="90" fg:w="63"/><text x="27.5227%" y="750.50">_find_and_load (<frozen import..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (63 samples, 19.09%)</title><rect x="27.2727%" y="756" width="19.0909%" height="15" fill="rgb(215,151,48)" fg:x="90" fg:w="63"/><text x="27.5227%" y="766.50">_find_and_load_unlocked (<froz..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (63 samples, 19.09%)</title><rect x="27.2727%" y="772" width="19.0909%" height="15" fill="rgb(229,84,14)" fg:x="90" fg:w="63"/><text x="27.5227%" y="782.50">_load_unlocked (<frozen import..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (63 samples, 19.09%)</title><rect x="27.2727%" y="788" width="19.0909%" height="15" fill="rgb(229,68,14)" fg:x="90" fg:w="63"/><text x="27.5227%" y="798.50">exec_module (<frozen importlib..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (63 samples, 19.09%)</title><rect x="27.2727%" y="804" width="19.0909%" height="15" fill="rgb(243,106,26)" fg:x="90" fg:w="63"/><text x="27.5227%" y="814.50">_call_with_frames_removed (<fr..</text></g><g><title><module> (fastapi/openapi/models.py:1) (63 samples, 19.09%)</title><rect x="27.2727%" y="820" width="19.0909%" height="15" fill="rgb(206,45,38)" fg:x="90" fg:w="63"/><text x="27.5227%" y="830.50"><module> (fastapi/openapi/mode..</text></g><g><title>_model_rebuild (fastapi/_compat.py:171) (3 samples, 0.91%)</title><rect x="45.4545%" y="836" width="0.9091%" height="15" fill="rgb(226,6,15)" fg:x="150" fg:w="3"/><text x="45.7045%" y="846.50"></text></g><g><title>model_rebuild (pydantic/main.py:428) (3 samples, 0.91%)</title><rect x="45.4545%" y="852" width="0.9091%" height="15" fill="rgb(232,22,54)" fg:x="150" fg:w="3"/><text x="45.7045%" y="862.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (3 samples, 0.91%)</title><rect x="45.4545%" y="868" width="0.9091%" height="15" fill="rgb(229,222,32)" fg:x="150" fg:w="3"/><text x="45.7045%" y="878.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (3 samples, 0.91%)</title><rect x="45.4545%" y="884" width="0.9091%" height="15" fill="rgb(228,62,29)" fg:x="150" fg:w="3"/><text x="45.7045%" y="894.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (3 samples, 0.91%)</title><rect x="45.4545%" y="900" width="0.9091%" height="15" fill="rgb(251,103,34)" fg:x="150" fg:w="3"/><text x="45.7045%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (3 samples, 0.91%)</title><rect x="45.4545%" y="916" width="0.9091%" height="15" fill="rgb(233,12,30)" fg:x="150" fg:w="3"/><text x="45.7045%" y="926.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (3 samples, 0.91%)</title><rect x="45.4545%" y="932" width="0.9091%" height="15" fill="rgb(238,52,0)" fg:x="150" fg:w="3"/><text x="45.7045%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (3 samples, 0.91%)</title><rect x="45.4545%" y="948" width="0.9091%" height="15" fill="rgb(223,98,5)" fg:x="150" fg:w="3"/><text x="45.7045%" y="958.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (3 samples, 0.91%)</title><rect x="45.4545%" y="964" width="0.9091%" height="15" fill="rgb(228,75,37)" fg:x="150" fg:w="3"/><text x="45.7045%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (3 samples, 0.91%)</title><rect x="45.4545%" y="980" width="0.9091%" height="15" fill="rgb(205,115,49)" fg:x="150" fg:w="3"/><text x="45.7045%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (3 samples, 0.91%)</title><rect x="45.4545%" y="996" width="0.9091%" height="15" fill="rgb(250,154,43)" fg:x="150" fg:w="3"/><text x="45.7045%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (3 samples, 0.91%)</title><rect x="45.4545%" y="1012" width="0.9091%" height="15" fill="rgb(226,43,29)" fg:x="150" fg:w="3"/><text x="45.7045%" y="1022.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (3 samples, 0.91%)</title><rect x="45.4545%" y="1028" width="0.9091%" height="15" fill="rgb(249,228,39)" fg:x="150" fg:w="3"/><text x="45.7045%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (3 samples, 0.91%)</title><rect x="45.4545%" y="1044" width="0.9091%" height="15" fill="rgb(216,79,43)" fg:x="150" fg:w="3"/><text x="45.7045%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (3 samples, 0.91%)</title><rect x="45.4545%" y="1060" width="0.9091%" height="15" fill="rgb(228,95,12)" fg:x="150" fg:w="3"/><text x="45.7045%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.61%)</title><rect x="45.7576%" y="1076" width="0.6061%" height="15" fill="rgb(249,221,15)" fg:x="151" fg:w="2"/><text x="46.0076%" y="1086.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.61%)</title><rect x="45.7576%" y="1092" width="0.6061%" height="15" fill="rgb(233,34,13)" fg:x="151" fg:w="2"/><text x="46.0076%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.61%)</title><rect x="45.7576%" y="1108" width="0.6061%" height="15" fill="rgb(214,103,39)" fg:x="151" fg:w="2"/><text x="46.0076%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.61%)</title><rect x="45.7576%" y="1124" width="0.6061%" height="15" fill="rgb(251,126,39)" fg:x="151" fg:w="2"/><text x="46.0076%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="46.0606%" y="1140" width="0.3030%" height="15" fill="rgb(214,216,36)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1150.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.30%)</title><rect x="46.0606%" y="1156" width="0.3030%" height="15" fill="rgb(220,221,8)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="46.0606%" y="1172" width="0.3030%" height="15" fill="rgb(240,216,3)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.30%)</title><rect x="46.0606%" y="1188" width="0.3030%" height="15" fill="rgb(232,218,17)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.30%)</title><rect x="46.0606%" y="1204" width="0.3030%" height="15" fill="rgb(229,163,45)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1214.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.30%)</title><rect x="46.0606%" y="1220" width="0.3030%" height="15" fill="rgb(231,110,42)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.30%)</title><rect x="46.0606%" y="1236" width="0.3030%" height="15" fill="rgb(208,170,48)" fg:x="152" fg:w="1"/><text x="46.3106%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (66 samples, 20.00%)</title><rect x="26.6667%" y="292" width="20.0000%" height="15" fill="rgb(239,116,25)" fg:x="88" fg:w="66"/><text x="26.9167%" y="302.50">_find_and_load (<frozen importl..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (66 samples, 20.00%)</title><rect x="26.6667%" y="308" width="20.0000%" height="15" fill="rgb(219,200,50)" fg:x="88" fg:w="66"/><text x="26.9167%" y="318.50">_find_and_load_unlocked (<froze..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (66 samples, 20.00%)</title><rect x="26.6667%" y="324" width="20.0000%" height="15" fill="rgb(245,200,0)" fg:x="88" fg:w="66"/><text x="26.9167%" y="334.50">_load_unlocked (<frozen importl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (66 samples, 20.00%)</title><rect x="26.6667%" y="340" width="20.0000%" height="15" fill="rgb(245,119,33)" fg:x="88" fg:w="66"/><text x="26.9167%" y="350.50">exec_module (<frozen importlib...</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (66 samples, 20.00%)</title><rect x="26.6667%" y="356" width="20.0000%" height="15" fill="rgb(231,125,12)" fg:x="88" fg:w="66"/><text x="26.9167%" y="366.50">_call_with_frames_removed (<fro..</text></g><g><title><module> (fastapi/__init__.py:1) (66 samples, 20.00%)</title><rect x="26.6667%" y="372" width="20.0000%" height="15" fill="rgb(216,96,41)" fg:x="88" fg:w="66"/><text x="26.9167%" y="382.50"><module> (fastapi/__init__.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (66 samples, 20.00%)</title><rect x="26.6667%" y="388" width="20.0000%" height="15" fill="rgb(248,43,45)" fg:x="88" fg:w="66"/><text x="26.9167%" y="398.50">_find_and_load (<frozen importl..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (66 samples, 20.00%)</title><rect x="26.6667%" y="404" width="20.0000%" height="15" fill="rgb(217,222,7)" fg:x="88" fg:w="66"/><text x="26.9167%" y="414.50">_find_and_load_unlocked (<froze..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (66 samples, 20.00%)</title><rect x="26.6667%" y="420" width="20.0000%" height="15" fill="rgb(233,28,6)" fg:x="88" fg:w="66"/><text x="26.9167%" y="430.50">_load_unlocked (<frozen importl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (66 samples, 20.00%)</title><rect x="26.6667%" y="436" width="20.0000%" height="15" fill="rgb(231,218,15)" fg:x="88" fg:w="66"/><text x="26.9167%" y="446.50">exec_module (<frozen importlib...</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (66 samples, 20.00%)</title><rect x="26.6667%" y="452" width="20.0000%" height="15" fill="rgb(226,171,48)" fg:x="88" fg:w="66"/><text x="26.9167%" y="462.50">_call_with_frames_removed (<fro..</text></g><g><title><module> (fastapi/applications.py:1) (66 samples, 20.00%)</title><rect x="26.6667%" y="468" width="20.0000%" height="15" fill="rgb(235,201,9)" fg:x="88" fg:w="66"/><text x="26.9167%" y="478.50"><module> (fastapi/applications...</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (65 samples, 19.70%)</title><rect x="26.9697%" y="484" width="19.6970%" height="15" fill="rgb(217,80,15)" fg:x="89" fg:w="65"/><text x="27.2197%" y="494.50">_handle_fromlist (<frozen impor..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (65 samples, 19.70%)</title><rect x="26.9697%" y="500" width="19.6970%" height="15" fill="rgb(219,152,8)" fg:x="89" fg:w="65"/><text x="27.2197%" y="510.50">_call_with_frames_removed (<fro..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (65 samples, 19.70%)</title><rect x="26.9697%" y="516" width="19.6970%" height="15" fill="rgb(243,107,38)" fg:x="89" fg:w="65"/><text x="27.2197%" y="526.50">_find_and_load (<frozen importl..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (65 samples, 19.70%)</title><rect x="26.9697%" y="532" width="19.6970%" height="15" fill="rgb(231,17,5)" fg:x="89" fg:w="65"/><text x="27.2197%" y="542.50">_find_and_load_unlocked (<froze..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (65 samples, 19.70%)</title><rect x="26.9697%" y="548" width="19.6970%" height="15" fill="rgb(209,25,54)" fg:x="89" fg:w="65"/><text x="27.2197%" y="558.50">_load_unlocked (<frozen importl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (65 samples, 19.70%)</title><rect x="26.9697%" y="564" width="19.6970%" height="15" fill="rgb(219,0,2)" fg:x="89" fg:w="65"/><text x="27.2197%" y="574.50">exec_module (<frozen importlib...</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (65 samples, 19.70%)</title><rect x="26.9697%" y="580" width="19.6970%" height="15" fill="rgb(246,9,5)" fg:x="89" fg:w="65"/><text x="27.2197%" y="590.50">_call_with_frames_removed (<fro..</text></g><g><title><module> (fastapi/routing.py:1) (65 samples, 19.70%)</title><rect x="26.9697%" y="596" width="19.6970%" height="15" fill="rgb(226,159,4)" fg:x="89" fg:w="65"/><text x="27.2197%" y="606.50"><module> (fastapi/routing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (64 samples, 19.39%)</title><rect x="27.2727%" y="612" width="19.3939%" height="15" fill="rgb(219,175,34)" fg:x="90" fg:w="64"/><text x="27.5227%" y="622.50">_handle_fromlist (<frozen impo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (64 samples, 19.39%)</title><rect x="27.2727%" y="628" width="19.3939%" height="15" fill="rgb(236,10,46)" fg:x="90" fg:w="64"/><text x="27.5227%" y="638.50">_call_with_frames_removed (<fr..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (64 samples, 19.39%)</title><rect x="27.2727%" y="644" width="19.3939%" height="15" fill="rgb(240,211,16)" fg:x="90" fg:w="64"/><text x="27.5227%" y="654.50">_find_and_load (<frozen import..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (64 samples, 19.39%)</title><rect x="27.2727%" y="660" width="19.3939%" height="15" fill="rgb(205,3,43)" fg:x="90" fg:w="64"/><text x="27.5227%" y="670.50">_find_and_load_unlocked (<froz..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (64 samples, 19.39%)</title><rect x="27.2727%" y="676" width="19.3939%" height="15" fill="rgb(245,7,22)" fg:x="90" fg:w="64"/><text x="27.5227%" y="686.50">_load_unlocked (<frozen import..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (64 samples, 19.39%)</title><rect x="27.2727%" y="692" width="19.3939%" height="15" fill="rgb(239,132,32)" fg:x="90" fg:w="64"/><text x="27.5227%" y="702.50">exec_module (<frozen importlib..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (64 samples, 19.39%)</title><rect x="27.2727%" y="708" width="19.3939%" height="15" fill="rgb(228,202,34)" fg:x="90" fg:w="64"/><text x="27.5227%" y="718.50">_call_with_frames_removed (<fr..</text></g><g><title><module> (starlette/routing.py:1) (1 samples, 0.30%)</title><rect x="46.3636%" y="724" width="0.3030%" height="15" fill="rgb(254,200,22)" fg:x="153" fg:w="1"/><text x="46.6136%" y="734.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.30%)</title><rect x="46.3636%" y="740" width="0.3030%" height="15" fill="rgb(219,10,39)" fg:x="153" fg:w="1"/><text x="46.6136%" y="750.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.30%)</title><rect x="46.3636%" y="756" width="0.3030%" height="15" fill="rgb(226,210,39)" fg:x="153" fg:w="1"/><text x="46.6136%" y="766.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.30%)</title><rect x="46.3636%" y="772" width="0.3030%" height="15" fill="rgb(208,219,16)" fg:x="153" fg:w="1"/><text x="46.6136%" y="782.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.30%)</title><rect x="46.3636%" y="788" width="0.3030%" height="15" fill="rgb(216,158,51)" fg:x="153" fg:w="1"/><text x="46.6136%" y="798.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="46.3636%" y="804" width="0.3030%" height="15" fill="rgb(233,14,44)" fg:x="153" fg:w="1"/><text x="46.6136%" y="814.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="46.3636%" y="820" width="0.3030%" height="15" fill="rgb(237,97,39)" fg:x="153" fg:w="1"/><text x="46.6136%" y="830.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="46.3636%" y="836" width="0.3030%" height="15" fill="rgb(218,198,43)" fg:x="153" fg:w="1"/><text x="46.6136%" y="846.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="46.3636%" y="852" width="0.3030%" height="15" fill="rgb(231,104,20)" fg:x="153" fg:w="1"/><text x="46.6136%" y="862.50"></text></g><g><title>get (sre_parse.py:255) (1 samples, 0.30%)</title><rect x="46.3636%" y="868" width="0.3030%" height="15" fill="rgb(254,36,13)" fg:x="153" fg:w="1"/><text x="46.6136%" y="878.50"></text></g><g><title>__next (sre_parse.py:234) (1 samples, 0.30%)</title><rect x="46.3636%" y="884" width="0.3030%" height="15" fill="rgb(248,14,50)" fg:x="153" fg:w="1"/><text x="46.6136%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (130 samples, 39.39%)</title><rect x="7.5758%" y="196" width="39.3939%" height="15" fill="rgb(217,107,29)" fg:x="25" fg:w="130"/><text x="7.8258%" y="206.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (130 samples, 39.39%)</title><rect x="7.5758%" y="212" width="39.3939%" height="15" fill="rgb(251,169,33)" fg:x="25" fg:w="130"/><text x="7.8258%" y="222.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (130 samples, 39.39%)</title><rect x="7.5758%" y="228" width="39.3939%" height="15" fill="rgb(217,108,32)" fg:x="25" fg:w="130"/><text x="7.8258%" y="238.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (130 samples, 39.39%)</title><rect x="7.5758%" y="244" width="39.3939%" height="15" fill="rgb(219,66,42)" fg:x="25" fg:w="130"/><text x="7.8258%" y="254.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (130 samples, 39.39%)</title><rect x="7.5758%" y="260" width="39.3939%" height="15" fill="rgb(206,180,7)" fg:x="25" fg:w="130"/><text x="7.8258%" y="270.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (dask_sql/server/app.py:1) (67 samples, 20.30%)</title><rect x="26.6667%" y="276" width="20.3030%" height="15" fill="rgb(208,226,31)" fg:x="88" fg:w="67"/><text x="26.9167%" y="286.50"><module> (dask_sql/server/app.py..</text></g><g><title>decorator (fastapi/routing.py:955) (1 samples, 0.30%)</title><rect x="46.6667%" y="292" width="0.3030%" height="15" fill="rgb(218,26,49)" fg:x="154" fg:w="1"/><text x="46.9167%" y="302.50"></text></g><g><title>add_api_route (fastapi/routing.py:843) (1 samples, 0.30%)</title><rect x="46.6667%" y="308" width="0.3030%" height="15" fill="rgb(233,197,48)" fg:x="154" fg:w="1"/><text x="46.9167%" y="318.50"></text></g><g><title>__init__ (fastapi/routing.py:402) (1 samples, 0.30%)</title><rect x="46.6667%" y="324" width="0.3030%" height="15" fill="rgb(252,181,51)" fg:x="154" fg:w="1"/><text x="46.9167%" y="334.50"></text></g><g><title>get_dependant (fastapi/dependencies/utils.py:241) (1 samples, 0.30%)</title><rect x="46.6667%" y="340" width="0.3030%" height="15" fill="rgb(253,90,19)" fg:x="154" fg:w="1"/><text x="46.9167%" y="350.50"></text></g><g><title>analyze_param (fastapi/dependencies/utils.py:317) (1 samples, 0.30%)</title><rect x="46.6667%" y="356" width="0.3030%" height="15" fill="rgb(215,171,30)" fg:x="154" fg:w="1"/><text x="46.9167%" y="366.50"></text></g><g><title>create_response_field (fastapi/utils.py:63) (1 samples, 0.30%)</title><rect x="46.6667%" y="372" width="0.3030%" height="15" fill="rgb(214,222,9)" fg:x="154" fg:w="1"/><text x="46.9167%" y="382.50"></text></g><g><title>__init__ (<string>:2) (1 samples, 0.30%)</title><rect x="46.6667%" y="388" width="0.3030%" height="15" fill="rgb(223,3,22)" fg:x="154" fg:w="1"/><text x="46.9167%" y="398.50"></text></g><g><title>__post_init__ (fastapi/_compat.py:106) (1 samples, 0.30%)</title><rect x="46.6667%" y="404" width="0.3030%" height="15" fill="rgb(225,196,46)" fg:x="154" fg:w="1"/><text x="46.9167%" y="414.50"></text></g><g><title>__init__ (pydantic/type_adapter.py:149) (1 samples, 0.30%)</title><rect x="46.6667%" y="420" width="0.3030%" height="15" fill="rgb(209,110,37)" fg:x="154" fg:w="1"/><text x="46.9167%" y="430.50"></text></g><g><title>_get_schema (pydantic/type_adapter.py:33) (1 samples, 0.30%)</title><rect x="46.6667%" y="436" width="0.3030%" height="15" fill="rgb(249,89,12)" fg:x="154" fg:w="1"/><text x="46.9167%" y="446.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.30%)</title><rect x="46.6667%" y="452" width="0.3030%" height="15" fill="rgb(226,27,33)" fg:x="154" fg:w="1"/><text x="46.9167%" y="462.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.30%)</title><rect x="46.6667%" y="468" width="0.3030%" height="15" fill="rgb(213,82,22)" fg:x="154" fg:w="1"/><text x="46.9167%" y="478.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.30%)</title><rect x="46.6667%" y="484" width="0.3030%" height="15" fill="rgb(248,140,0)" fg:x="154" fg:w="1"/><text x="46.9167%" y="494.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.30%)</title><rect x="46.6667%" y="500" width="0.3030%" height="15" fill="rgb(228,106,3)" fg:x="154" fg:w="1"/><text x="46.9167%" y="510.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.30%)</title><rect x="46.6667%" y="516" width="0.3030%" height="15" fill="rgb(209,23,37)" fg:x="154" fg:w="1"/><text x="46.9167%" y="526.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.30%)</title><rect x="46.6667%" y="532" width="0.3030%" height="15" fill="rgb(241,93,50)" fg:x="154" fg:w="1"/><text x="46.9167%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.91%)</title><rect x="46.9697%" y="196" width="0.9091%" height="15" fill="rgb(253,46,43)" fg:x="155" fg:w="3"/><text x="47.2197%" y="206.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="46.9697%" y="212" width="0.9091%" height="15" fill="rgb(226,206,43)" fg:x="155" fg:w="3"/><text x="47.2197%" y="222.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="46.9697%" y="228" width="0.9091%" height="15" fill="rgb(217,54,7)" fg:x="155" fg:w="3"/><text x="47.2197%" y="238.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="46.9697%" y="244" width="0.9091%" height="15" fill="rgb(223,5,52)" fg:x="155" fg:w="3"/><text x="47.2197%" y="254.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="46.9697%" y="260" width="0.9091%" height="15" fill="rgb(206,52,46)" fg:x="155" fg:w="3"/><text x="47.2197%" y="270.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.91%)</title><rect x="46.9697%" y="276" width="0.9091%" height="15" fill="rgb(253,136,11)" fg:x="155" fg:w="3"/><text x="47.2197%" y="286.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.91%)</title><rect x="46.9697%" y="292" width="0.9091%" height="15" fill="rgb(208,106,33)" fg:x="155" fg:w="3"/><text x="47.2197%" y="302.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="46.9697%" y="308" width="0.9091%" height="15" fill="rgb(206,54,4)" fg:x="155" fg:w="3"/><text x="47.2197%" y="318.50"></text></g><g><title><module> (dask_sql/__init__.py:3) (135 samples, 40.91%)</title><rect x="7.5758%" y="180" width="40.9091%" height="15" fill="rgb(213,3,15)" fg:x="25" fg:w="135"/><text x="7.8258%" y="190.50"><module> (dask_sql/__init__.py:3)</text></g><g><title>version (importlib/metadata.py:562) (2 samples, 0.61%)</title><rect x="47.8788%" y="196" width="0.6061%" height="15" fill="rgb(252,211,39)" fg:x="158" fg:w="2"/><text x="48.1288%" y="206.50"></text></g><g><title>version (importlib_metadata/__init__.py:480) (2 samples, 0.61%)</title><rect x="47.8788%" y="212" width="0.6061%" height="15" fill="rgb(223,6,36)" fg:x="158" fg:w="2"/><text x="48.1288%" y="222.50"></text></g><g><title>metadata (importlib_metadata/__init__.py:452) (2 samples, 0.61%)</title><rect x="47.8788%" y="228" width="0.6061%" height="15" fill="rgb(252,169,45)" fg:x="158" fg:w="2"/><text x="48.1288%" y="238.50"></text></g><g><title>message_from_string (email/__init__.py:32) (2 samples, 0.61%)</title><rect x="47.8788%" y="244" width="0.6061%" height="15" fill="rgb(212,48,26)" fg:x="158" fg:w="2"/><text x="48.1288%" y="254.50"></text></g><g><title>parsestr (email/parser.py:59) (2 samples, 0.61%)</title><rect x="47.8788%" y="260" width="0.6061%" height="15" fill="rgb(251,102,48)" fg:x="158" fg:w="2"/><text x="48.1288%" y="270.50"></text></g><g><title>parse (email/parser.py:41) (2 samples, 0.61%)</title><rect x="47.8788%" y="276" width="0.6061%" height="15" fill="rgb(243,208,16)" fg:x="158" fg:w="2"/><text x="48.1288%" y="286.50"></text></g><g><title>feed (email/feedparser.py:173) (2 samples, 0.61%)</title><rect x="47.8788%" y="292" width="0.6061%" height="15" fill="rgb(219,96,24)" fg:x="158" fg:w="2"/><text x="48.1288%" y="302.50"></text></g><g><title>_call_parse (email/feedparser.py:178) (2 samples, 0.61%)</title><rect x="47.8788%" y="308" width="0.6061%" height="15" fill="rgb(219,33,29)" fg:x="158" fg:w="2"/><text x="48.1288%" y="318.50"></text></g><g><title>_parsegen (email/feedparser.py:218) (2 samples, 0.61%)</title><rect x="47.8788%" y="324" width="0.6061%" height="15" fill="rgb(223,176,5)" fg:x="158" fg:w="2"/><text x="48.1288%" y="334.50"></text></g><g><title>_new_message (email/feedparser.py:197) (1 samples, 0.30%)</title><rect x="48.1818%" y="340" width="0.3030%" height="15" fill="rgb(228,140,14)" fg:x="159" fg:w="1"/><text x="48.4318%" y="350.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="48.4848%" y="660" width="0.3030%" height="15" fill="rgb(217,179,31)" fg:x="160" fg:w="1"/><text x="48.7348%" y="670.50"></text></g><g><title><module> (sqlglot/dialects/bigquery.py:1) (1 samples, 0.30%)</title><rect x="48.7879%" y="708" width="0.3030%" height="15" fill="rgb(230,9,30)" fg:x="161" fg:w="1"/><text x="49.0379%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="48.7879%" y="724" width="0.3030%" height="15" fill="rgb(230,136,20)" fg:x="161" fg:w="1"/><text x="49.0379%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="48.7879%" y="740" width="0.3030%" height="15" fill="rgb(215,210,22)" fg:x="161" fg:w="1"/><text x="49.0379%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="48.7879%" y="756" width="0.3030%" height="15" fill="rgb(218,43,5)" fg:x="161" fg:w="1"/><text x="49.0379%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="48.7879%" y="772" width="0.3030%" height="15" fill="rgb(216,11,5)" fg:x="161" fg:w="1"/><text x="49.0379%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="48.7879%" y="788" width="0.3030%" height="15" fill="rgb(209,82,29)" fg:x="161" fg:w="1"/><text x="49.0379%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="48.7879%" y="804" width="0.3030%" height="15" fill="rgb(244,115,12)" fg:x="161" fg:w="1"/><text x="49.0379%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="48.7879%" y="820" width="0.3030%" height="15" fill="rgb(222,82,18)" fg:x="161" fg:w="1"/><text x="49.0379%" y="830.50"></text></g><g><title><module> (sqlglot/parser.py:1) (1 samples, 0.30%)</title><rect x="48.7879%" y="836" width="0.3030%" height="15" fill="rgb(249,227,8)" fg:x="161" fg:w="1"/><text x="49.0379%" y="846.50"></text></g><g><title>Parser (sqlglot/parser.py:59) (1 samples, 0.30%)</title><rect x="48.7879%" y="852" width="0.3030%" height="15" fill="rgb(253,141,45)" fg:x="161" fg:w="1"/><text x="49.0379%" y="862.50"></text></g><g><title><dictcomp> (sqlglot/parser.py:75) (1 samples, 0.30%)</title><rect x="48.7879%" y="868" width="0.3030%" height="15" fill="rgb(234,184,4)" fg:x="161" fg:w="1"/><text x="49.0379%" y="878.50"></text></g><g><title>TSQL (sqlglot/dialects/tsql.py:207) (1 samples, 0.30%)</title><rect x="49.0909%" y="820" width="0.3030%" height="15" fill="rgb(218,194,23)" fg:x="162" fg:w="1"/><text x="49.3409%" y="830.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.30%)</title><rect x="49.0909%" y="836" width="0.3030%" height="15" fill="rgb(235,66,41)" fg:x="162" fg:w="1"/><text x="49.3409%" y="846.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.30%)</title><rect x="49.0909%" y="852" width="0.3030%" height="15" fill="rgb(245,217,1)" fg:x="162" fg:w="1"/><text x="49.3409%" y="862.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.30%)</title><rect x="49.0909%" y="868" width="0.3030%" height="15" fill="rgb(229,91,1)" fg:x="162" fg:w="1"/><text x="49.3409%" y="878.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.30%)</title><rect x="49.0909%" y="884" width="0.3030%" height="15" fill="rgb(207,101,30)" fg:x="162" fg:w="1"/><text x="49.3409%" y="894.50"></text></g><g><title>__and__ (enum.py:977) (1 samples, 0.30%)</title><rect x="49.3939%" y="852" width="0.3030%" height="15" fill="rgb(223,82,49)" fg:x="163" fg:w="1"/><text x="49.6439%" y="862.50"></text></g><g><title>__call__ (enum.py:358) (1 samples, 0.30%)</title><rect x="49.3939%" y="868" width="0.3030%" height="15" fill="rgb(218,167,17)" fg:x="163" fg:w="1"/><text x="49.6439%" y="878.50"></text></g><g><title><module> (sqlglot/dialects/databricks.py:1) (3 samples, 0.91%)</title><rect x="49.0909%" y="708" width="0.9091%" height="15" fill="rgb(208,103,14)" fg:x="162" fg:w="3"/><text x="49.3409%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="49.0909%" y="724" width="0.9091%" height="15" fill="rgb(238,20,8)" fg:x="162" fg:w="3"/><text x="49.3409%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="49.0909%" y="740" width="0.9091%" height="15" fill="rgb(218,80,54)" fg:x="162" fg:w="3"/><text x="49.3409%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="49.0909%" y="756" width="0.9091%" height="15" fill="rgb(240,144,17)" fg:x="162" fg:w="3"/><text x="49.3409%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="49.0909%" y="772" width="0.9091%" height="15" fill="rgb(245,27,50)" fg:x="162" fg:w="3"/><text x="49.3409%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="49.0909%" y="788" width="0.9091%" height="15" fill="rgb(251,51,7)" fg:x="162" fg:w="3"/><text x="49.3409%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/tsql.py:1) (3 samples, 0.91%)</title><rect x="49.0909%" y="804" width="0.9091%" height="15" fill="rgb(245,217,29)" fg:x="162" fg:w="3"/><text x="49.3409%" y="814.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.61%)</title><rect x="49.3939%" y="820" width="0.6061%" height="15" fill="rgb(221,176,29)" fg:x="163" fg:w="2"/><text x="49.6439%" y="830.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.61%)</title><rect x="49.3939%" y="836" width="0.6061%" height="15" fill="rgb(212,180,24)" fg:x="163" fg:w="2"/><text x="49.6439%" y="846.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.30%)</title><rect x="49.6970%" y="852" width="0.3030%" height="15" fill="rgb(254,24,2)" fg:x="164" fg:w="1"/><text x="49.9470%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="48.7879%" y="676" width="1.5152%" height="15" fill="rgb(230,100,2)" fg:x="161" fg:w="5"/><text x="49.0379%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="48.7879%" y="692" width="1.5152%" height="15" fill="rgb(219,142,25)" fg:x="161" fg:w="5"/><text x="49.0379%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/redshift.py:1) (1 samples, 0.30%)</title><rect x="50.0000%" y="708" width="0.3030%" height="15" fill="rgb(240,73,43)" fg:x="165" fg:w="1"/><text x="50.2500%" y="718.50"></text></g><g><title>Redshift (sqlglot/dialects/redshift.py:29) (1 samples, 0.30%)</title><rect x="50.0000%" y="724" width="0.3030%" height="15" fill="rgb(214,114,15)" fg:x="165" fg:w="1"/><text x="50.2500%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.30%)</title><rect x="50.0000%" y="740" width="0.3030%" height="15" fill="rgb(207,130,4)" fg:x="165" fg:w="1"/><text x="50.2500%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.30%)</title><rect x="50.0000%" y="756" width="0.3030%" height="15" fill="rgb(221,25,40)" fg:x="165" fg:w="1"/><text x="50.2500%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.30%)</title><rect x="50.0000%" y="772" width="0.3030%" height="15" fill="rgb(241,184,7)" fg:x="165" fg:w="1"/><text x="50.2500%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.30%)</title><rect x="50.0000%" y="788" width="0.3030%" height="15" fill="rgb(235,159,4)" fg:x="165" fg:w="1"/><text x="50.2500%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="48.4848%" y="484" width="2.1212%" height="15" fill="rgb(214,87,48)" fg:x="160" fg:w="7"/><text x="48.7348%" y="494.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="48.4848%" y="500" width="2.1212%" height="15" fill="rgb(246,198,24)" fg:x="160" fg:w="7"/><text x="48.7348%" y="510.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="48.4848%" y="516" width="2.1212%" height="15" fill="rgb(209,66,40)" fg:x="160" fg:w="7"/><text x="48.7348%" y="526.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="48.4848%" y="532" width="2.1212%" height="15" fill="rgb(233,147,39)" fg:x="160" fg:w="7"/><text x="48.7348%" y="542.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="48.4848%" y="548" width="2.1212%" height="15" fill="rgb(231,145,52)" fg:x="160" fg:w="7"/><text x="48.7348%" y="558.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="48.4848%" y="564" width="2.1212%" height="15" fill="rgb(206,20,26)" fg:x="160" fg:w="7"/><text x="48.7348%" y="574.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="48.4848%" y="580" width="2.1212%" height="15" fill="rgb(238,220,4)" fg:x="160" fg:w="7"/><text x="48.7348%" y="590.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="48.4848%" y="596" width="2.1212%" height="15" fill="rgb(252,195,42)" fg:x="160" fg:w="7"/><text x="48.7348%" y="606.50">_..</text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (7 samples, 2.12%)</title><rect x="48.4848%" y="612" width="2.1212%" height="15" fill="rgb(209,10,6)" fg:x="160" fg:w="7"/><text x="48.7348%" y="622.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="48.4848%" y="628" width="2.1212%" height="15" fill="rgb(229,3,52)" fg:x="160" fg:w="7"/><text x="48.7348%" y="638.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="48.4848%" y="644" width="2.1212%" height="15" fill="rgb(253,49,37)" fg:x="160" fg:w="7"/><text x="48.7348%" y="654.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="48.7879%" y="660" width="1.8182%" height="15" fill="rgb(240,103,49)" fg:x="161" fg:w="6"/><text x="49.0379%" y="670.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="50.3030%" y="676" width="0.3030%" height="15" fill="rgb(250,182,30)" fg:x="166" fg:w="1"/><text x="50.5530%" y="686.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.30%)</title><rect x="50.3030%" y="692" width="0.3030%" height="15" fill="rgb(248,8,30)" fg:x="166" fg:w="1"/><text x="50.5530%" y="702.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.30%)</title><rect x="50.3030%" y="708" width="0.3030%" height="15" fill="rgb(237,120,30)" fg:x="166" fg:w="1"/><text x="50.5530%" y="718.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.30%)</title><rect x="50.3030%" y="724" width="0.3030%" height="15" fill="rgb(221,146,34)" fg:x="166" fg:w="1"/><text x="50.5530%" y="734.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.30%)</title><rect x="50.3030%" y="740" width="0.3030%" height="15" fill="rgb(242,55,13)" fg:x="166" fg:w="1"/><text x="50.5530%" y="750.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.30%)</title><rect x="50.3030%" y="756" width="0.3030%" height="15" fill="rgb(242,112,31)" fg:x="166" fg:w="1"/><text x="50.5530%" y="766.50"></text></g><g><title><genexpr> (<frozen importlib._bootstrap_external>:129) (1 samples, 0.30%)</title><rect x="50.3030%" y="772" width="0.3030%" height="15" fill="rgb(249,192,27)" fg:x="166" fg:w="1"/><text x="50.5530%" y="782.50"></text></g><g><title>DataType (sqlglot/expressions.py:3527) (2 samples, 0.61%)</title><rect x="50.6061%" y="612" width="0.6061%" height="15" fill="rgb(208,204,44)" fg:x="167" fg:w="2"/><text x="50.8561%" y="622.50"></text></g><g><title>__new__ (enum.py:179) (2 samples, 0.61%)</title><rect x="50.6061%" y="628" width="0.6061%" height="15" fill="rgb(208,93,54)" fg:x="167" fg:w="2"/><text x="50.8561%" y="638.50"></text></g><g><title>__setattr__ (enum.py:462) (1 samples, 0.30%)</title><rect x="50.9091%" y="644" width="0.3030%" height="15" fill="rgb(242,1,31)" fg:x="168" fg:w="1"/><text x="51.1591%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.64%)</title><rect x="48.4848%" y="372" width="3.6364%" height="15" fill="rgb(241,83,25)" fg:x="160" fg:w="12"/><text x="48.7348%" y="382.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.64%)</title><rect x="48.4848%" y="388" width="3.6364%" height="15" fill="rgb(205,169,50)" fg:x="160" fg:w="12"/><text x="48.7348%" y="398.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.64%)</title><rect x="48.4848%" y="404" width="3.6364%" height="15" fill="rgb(239,186,37)" fg:x="160" fg:w="12"/><text x="48.7348%" y="414.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.64%)</title><rect x="48.4848%" y="420" width="3.6364%" height="15" fill="rgb(205,221,10)" fg:x="160" fg:w="12"/><text x="48.7348%" y="430.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.64%)</title><rect x="48.4848%" y="436" width="3.6364%" height="15" fill="rgb(218,196,15)" fg:x="160" fg:w="12"/><text x="48.7348%" y="446.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.64%)</title><rect x="48.4848%" y="452" width="3.6364%" height="15" fill="rgb(218,196,35)" fg:x="160" fg:w="12"/><text x="48.7348%" y="462.50">_cal..</text></g><g><title><module> (sqlglot/__init__.py:1) (12 samples, 3.64%)</title><rect x="48.4848%" y="468" width="3.6364%" height="15" fill="rgb(233,63,24)" fg:x="160" fg:w="12"/><text x="48.7348%" y="478.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="50.6061%" y="484" width="1.5152%" height="15" fill="rgb(225,8,4)" fg:x="167" fg:w="5"/><text x="50.8561%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="50.6061%" y="500" width="1.5152%" height="15" fill="rgb(234,105,35)" fg:x="167" fg:w="5"/><text x="50.8561%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="50.6061%" y="516" width="1.5152%" height="15" fill="rgb(236,21,32)" fg:x="167" fg:w="5"/><text x="50.8561%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="50.6061%" y="532" width="1.5152%" height="15" fill="rgb(228,109,6)" fg:x="167" fg:w="5"/><text x="50.8561%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="50.6061%" y="548" width="1.5152%" height="15" fill="rgb(229,215,31)" fg:x="167" fg:w="5"/><text x="50.8561%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="50.6061%" y="564" width="1.5152%" height="15" fill="rgb(221,52,54)" fg:x="167" fg:w="5"/><text x="50.8561%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="50.6061%" y="580" width="1.5152%" height="15" fill="rgb(252,129,43)" fg:x="167" fg:w="5"/><text x="50.8561%" y="590.50"></text></g><g><title><module> (sqlglot/expressions.py:1) (5 samples, 1.52%)</title><rect x="50.6061%" y="596" width="1.5152%" height="15" fill="rgb(248,183,27)" fg:x="167" fg:w="5"/><text x="50.8561%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="51.2121%" y="612" width="0.9091%" height="15" fill="rgb(250,0,22)" fg:x="169" fg:w="3"/><text x="51.4621%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="51.2121%" y="628" width="0.9091%" height="15" fill="rgb(213,166,10)" fg:x="169" fg:w="3"/><text x="51.4621%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="51.2121%" y="644" width="0.9091%" height="15" fill="rgb(207,163,36)" fg:x="169" fg:w="3"/><text x="51.4621%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="51.2121%" y="660" width="0.9091%" height="15" fill="rgb(208,122,22)" fg:x="169" fg:w="3"/><text x="51.4621%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="51.2121%" y="676" width="0.9091%" height="15" fill="rgb(207,104,49)" fg:x="169" fg:w="3"/><text x="51.4621%" y="686.50"></text></g><g><title><module> (sqlglot/tokens.py:1) (3 samples, 0.91%)</title><rect x="51.2121%" y="692" width="0.9091%" height="15" fill="rgb(248,211,50)" fg:x="169" fg:w="3"/><text x="51.4621%" y="702.50"></text></g><g><title>__new__ (enum.py:179) (3 samples, 0.91%)</title><rect x="51.2121%" y="708" width="0.9091%" height="15" fill="rgb(217,13,45)" fg:x="169" fg:w="3"/><text x="51.4621%" y="718.50"></text></g><g><title>__setattr__ (enum.py:462) (1 samples, 0.30%)</title><rect x="51.8182%" y="724" width="0.3030%" height="15" fill="rgb(211,216,49)" fg:x="171" fg:w="1"/><text x="52.0682%" y="734.50"></text></g><g><title><module> (qarray/core.py:1) (13 samples, 3.94%)</title><rect x="48.4848%" y="276" width="3.9394%" height="15" fill="rgb(221,58,53)" fg:x="160" fg:w="13"/><text x="48.7348%" y="286.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 3.94%)</title><rect x="48.4848%" y="292" width="3.9394%" height="15" fill="rgb(220,112,41)" fg:x="160" fg:w="13"/><text x="48.7348%" y="302.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 3.94%)</title><rect x="48.4848%" y="308" width="3.9394%" height="15" fill="rgb(236,38,28)" fg:x="160" fg:w="13"/><text x="48.7348%" y="318.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 3.94%)</title><rect x="48.4848%" y="324" width="3.9394%" height="15" fill="rgb(227,195,22)" fg:x="160" fg:w="13"/><text x="48.7348%" y="334.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 3.94%)</title><rect x="48.4848%" y="340" width="3.9394%" height="15" fill="rgb(214,55,33)" fg:x="160" fg:w="13"/><text x="48.7348%" y="350.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 3.94%)</title><rect x="48.4848%" y="356" width="3.9394%" height="15" fill="rgb(248,80,13)" fg:x="160" fg:w="13"/><text x="48.7348%" y="366.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="372" width="0.3030%" height="15" fill="rgb(238,52,6)" fg:x="172" fg:w="1"/><text x="52.3712%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="388" width="0.3030%" height="15" fill="rgb(224,198,47)" fg:x="172" fg:w="1"/><text x="52.3712%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="404" width="0.3030%" height="15" fill="rgb(233,171,20)" fg:x="172" fg:w="1"/><text x="52.3712%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (1 samples, 0.30%)</title><rect x="52.1212%" y="420" width="0.3030%" height="15" fill="rgb(241,30,25)" fg:x="172" fg:w="1"/><text x="52.3712%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="436" width="0.3030%" height="15" fill="rgb(207,171,38)" fg:x="172" fg:w="1"/><text x="52.3712%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="452" width="0.3030%" height="15" fill="rgb(234,70,1)" fg:x="172" fg:w="1"/><text x="52.3712%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="468" width="0.3030%" height="15" fill="rgb(232,178,18)" fg:x="172" fg:w="1"/><text x="52.3712%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="484" width="0.3030%" height="15" fill="rgb(241,78,40)" fg:x="172" fg:w="1"/><text x="52.3712%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="500" width="0.3030%" height="15" fill="rgb(222,35,25)" fg:x="172" fg:w="1"/><text x="52.3712%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (1 samples, 0.30%)</title><rect x="52.1212%" y="516" width="0.3030%" height="15" fill="rgb(207,92,16)" fg:x="172" fg:w="1"/><text x="52.3712%" y="526.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="52.1212%" y="532" width="0.3030%" height="15" fill="rgb(216,59,51)" fg:x="172" fg:w="1"/><text x="52.3712%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="548" width="0.3030%" height="15" fill="rgb(213,80,28)" fg:x="172" fg:w="1"/><text x="52.3712%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="564" width="0.3030%" height="15" fill="rgb(220,93,7)" fg:x="172" fg:w="1"/><text x="52.3712%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="580" width="0.3030%" height="15" fill="rgb(225,24,44)" fg:x="172" fg:w="1"/><text x="52.3712%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="596" width="0.3030%" height="15" fill="rgb(243,74,40)" fg:x="172" fg:w="1"/><text x="52.3712%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="612" width="0.3030%" height="15" fill="rgb(228,39,7)" fg:x="172" fg:w="1"/><text x="52.3712%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="628" width="0.3030%" height="15" fill="rgb(227,79,8)" fg:x="172" fg:w="1"/><text x="52.3712%" y="638.50"></text></g><g><title><module> (sqlglot/planner.py:1) (1 samples, 0.30%)</title><rect x="52.1212%" y="644" width="0.3030%" height="15" fill="rgb(236,58,11)" fg:x="172" fg:w="1"/><text x="52.3712%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="660" width="0.3030%" height="15" fill="rgb(249,63,35)" fg:x="172" fg:w="1"/><text x="52.3712%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="676" width="0.3030%" height="15" fill="rgb(252,114,16)" fg:x="172" fg:w="1"/><text x="52.3712%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="692" width="0.3030%" height="15" fill="rgb(254,151,24)" fg:x="172" fg:w="1"/><text x="52.3712%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="708" width="0.3030%" height="15" fill="rgb(253,54,39)" fg:x="172" fg:w="1"/><text x="52.3712%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="724" width="0.3030%" height="15" fill="rgb(243,25,45)" fg:x="172" fg:w="1"/><text x="52.3712%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="740" width="0.3030%" height="15" fill="rgb(234,134,9)" fg:x="172" fg:w="1"/><text x="52.3712%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="756" width="0.3030%" height="15" fill="rgb(227,166,31)" fg:x="172" fg:w="1"/><text x="52.3712%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="772" width="0.3030%" height="15" fill="rgb(245,143,41)" fg:x="172" fg:w="1"/><text x="52.3712%" y="782.50"></text></g><g><title><module> (sqlglot/optimizer/__init__.py:1) (1 samples, 0.30%)</title><rect x="52.1212%" y="788" width="0.3030%" height="15" fill="rgb(238,181,32)" fg:x="172" fg:w="1"/><text x="52.3712%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="804" width="0.3030%" height="15" fill="rgb(224,113,18)" fg:x="172" fg:w="1"/><text x="52.3712%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="820" width="0.3030%" height="15" fill="rgb(240,229,28)" fg:x="172" fg:w="1"/><text x="52.3712%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="836" width="0.3030%" height="15" fill="rgb(250,185,3)" fg:x="172" fg:w="1"/><text x="52.3712%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="852" width="0.3030%" height="15" fill="rgb(212,59,25)" fg:x="172" fg:w="1"/><text x="52.3712%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.1212%" y="868" width="0.3030%" height="15" fill="rgb(221,87,20)" fg:x="172" fg:w="1"/><text x="52.3712%" y="878.50"></text></g><g><title><module> (sqlglot/optimizer/optimizer.py:1) (1 samples, 0.30%)</title><rect x="52.1212%" y="884" width="0.3030%" height="15" fill="rgb(213,74,28)" fg:x="172" fg:w="1"/><text x="52.3712%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.1212%" y="900" width="0.3030%" height="15" fill="rgb(224,132,34)" fg:x="172" fg:w="1"/><text x="52.3712%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.1212%" y="916" width="0.3030%" height="15" fill="rgb(222,101,24)" fg:x="172" fg:w="1"/><text x="52.3712%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.1212%" y="932" width="0.3030%" height="15" fill="rgb(254,142,4)" fg:x="172" fg:w="1"/><text x="52.3712%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.1212%" y="948" width="0.3030%" height="15" fill="rgb(230,229,49)" fg:x="172" fg:w="1"/><text x="52.3712%" y="958.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="52.1212%" y="964" width="0.3030%" height="15" fill="rgb(238,70,47)" fg:x="172" fg:w="1"/><text x="52.3712%" y="974.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="52.1212%" y="980" width="0.3030%" height="15" fill="rgb(231,160,17)" fg:x="172" fg:w="1"/><text x="52.3712%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="52.4242%" y="388" width="0.3030%" height="15" fill="rgb(218,68,53)" fg:x="173" fg:w="1"/><text x="52.6742%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="52.4242%" y="404" width="0.3030%" height="15" fill="rgb(236,111,10)" fg:x="173" fg:w="1"/><text x="52.6742%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="52.4242%" y="420" width="0.3030%" height="15" fill="rgb(224,34,41)" fg:x="173" fg:w="1"/><text x="52.6742%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="52.4242%" y="436" width="0.3030%" height="15" fill="rgb(241,118,19)" fg:x="173" fg:w="1"/><text x="52.6742%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="52.4242%" y="452" width="0.3030%" height="15" fill="rgb(238,129,25)" fg:x="173" fg:w="1"/><text x="52.6742%" y="462.50"></text></g><g><title><module> (dask/dataframe/groupby.py:1) (1 samples, 0.30%)</title><rect x="52.4242%" y="468" width="0.3030%" height="15" fill="rgb(238,22,31)" fg:x="173" fg:w="1"/><text x="52.6742%" y="478.50"></text></g><g><title>SeriesGroupBy (dask/dataframe/groupby.py:3032) (1 samples, 0.30%)</title><rect x="52.4242%" y="484" width="0.3030%" height="15" fill="rgb(222,174,48)" fg:x="173" fg:w="1"/><text x="52.6742%" y="494.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.30%)</title><rect x="52.4242%" y="500" width="0.3030%" height="15" fill="rgb(206,152,40)" fg:x="173" fg:w="1"/><text x="52.6742%" y="510.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.30%)</title><rect x="52.4242%" y="516" width="0.3030%" height="15" fill="rgb(218,99,54)" fg:x="173" fg:w="1"/><text x="52.6742%" y="526.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.30%)</title><rect x="52.4242%" y="532" width="0.3030%" height="15" fill="rgb(220,174,26)" fg:x="173" fg:w="1"/><text x="52.6742%" y="542.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.30%)</title><rect x="52.4242%" y="548" width="0.3030%" height="15" fill="rgb(245,116,9)" fg:x="173" fg:w="1"/><text x="52.6742%" y="558.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.30%)</title><rect x="52.4242%" y="564" width="0.3030%" height="15" fill="rgb(209,72,35)" fg:x="173" fg:w="1"/><text x="52.6742%" y="574.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.30%)</title><rect x="52.4242%" y="580" width="0.3030%" height="15" fill="rgb(226,126,21)" fg:x="173" fg:w="1"/><text x="52.6742%" y="590.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.30%)</title><rect x="52.4242%" y="596" width="0.3030%" height="15" fill="rgb(227,192,1)" fg:x="173" fg:w="1"/><text x="52.6742%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="52.7273%" y="1252" width="0.6061%" height="15" fill="rgb(237,180,29)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="52.7273%" y="1268" width="0.6061%" height="15" fill="rgb(230,197,35)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="52.7273%" y="1284" width="0.6061%" height="15" fill="rgb(246,193,31)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="52.7273%" y="1300" width="0.6061%" height="15" fill="rgb(241,36,4)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="52.7273%" y="1316" width="0.6061%" height="15" fill="rgb(241,130,17)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="52.7273%" y="1332" width="0.6061%" height="15" fill="rgb(206,137,32)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="52.7273%" y="1348" width="0.6061%" height="15" fill="rgb(237,228,51)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1358.50"></text></g><g><title><module> (scipy/sparse/csgraph/_validation.py:1) (2 samples, 0.61%)</title><rect x="52.7273%" y="1364" width="0.6061%" height="15" fill="rgb(243,6,42)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="52.7273%" y="1380" width="0.6061%" height="15" fill="rgb(251,74,28)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="52.7273%" y="1396" width="0.6061%" height="15" fill="rgb(218,20,49)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="52.7273%" y="1412" width="0.6061%" height="15" fill="rgb(238,28,14)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1422.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="52.7273%" y="1428" width="0.6061%" height="15" fill="rgb(229,40,46)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1438.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="52.7273%" y="1444" width="0.6061%" height="15" fill="rgb(244,195,20)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="52.7273%" y="1460" width="0.6061%" height="15" fill="rgb(253,56,35)" fg:x="174" fg:w="2"/><text x="52.9773%" y="1470.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="53.3333%" y="1524" width="0.3030%" height="15" fill="rgb(210,149,44)" fg:x="176" fg:w="1"/><text x="53.5833%" y="1534.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (2 samples, 0.61%)</title><rect x="53.6364%" y="1572" width="0.6061%" height="15" fill="rgb(240,135,12)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1582.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="53.6364%" y="1588" width="0.6061%" height="15" fill="rgb(251,24,50)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="53.6364%" y="1604" width="0.6061%" height="15" fill="rgb(243,200,47)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1614.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="53.6364%" y="1620" width="0.6061%" height="15" fill="rgb(224,166,26)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1630.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="53.6364%" y="1636" width="0.6061%" height="15" fill="rgb(233,0,47)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1646.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="53.6364%" y="1652" width="0.6061%" height="15" fill="rgb(253,80,5)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1662.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="53.6364%" y="1668" width="0.6061%" height="15" fill="rgb(214,133,25)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1678.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="53.6364%" y="1684" width="0.6061%" height="15" fill="rgb(209,27,14)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="53.6364%" y="1700" width="0.6061%" height="15" fill="rgb(219,102,51)" fg:x="177" fg:w="2"/><text x="53.8864%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="53.6364%" y="1556" width="1.2121%" height="15" fill="rgb(237,18,16)" fg:x="177" fg:w="4"/><text x="53.8864%" y="1566.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (2 samples, 0.61%)</title><rect x="54.2424%" y="1572" width="0.6061%" height="15" fill="rgb(241,85,17)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="54.2424%" y="1588" width="0.6061%" height="15" fill="rgb(236,90,42)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="54.2424%" y="1604" width="0.6061%" height="15" fill="rgb(249,57,21)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="54.2424%" y="1620" width="0.6061%" height="15" fill="rgb(243,12,36)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="54.2424%" y="1636" width="0.6061%" height="15" fill="rgb(253,128,47)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="54.2424%" y="1652" width="0.6061%" height="15" fill="rgb(207,33,20)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1662.50"></text></g><g><title><module> (scipy/linalg/__init__.py:1) (2 samples, 0.61%)</title><rect x="54.2424%" y="1668" width="0.6061%" height="15" fill="rgb(233,215,35)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="54.2424%" y="1684" width="0.6061%" height="15" fill="rgb(249,188,52)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="54.2424%" y="1700" width="0.6061%" height="15" fill="rgb(225,12,32)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="54.2424%" y="1716" width="0.6061%" height="15" fill="rgb(247,98,14)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="54.2424%" y="1732" width="0.6061%" height="15" fill="rgb(247,219,48)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="54.2424%" y="1748" width="0.6061%" height="15" fill="rgb(253,60,48)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_misc.py:1) (2 samples, 0.61%)</title><rect x="54.2424%" y="1764" width="0.6061%" height="15" fill="rgb(245,15,52)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="54.2424%" y="1780" width="0.6061%" height="15" fill="rgb(220,133,28)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="54.2424%" y="1796" width="0.6061%" height="15" fill="rgb(217,180,4)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="54.2424%" y="1812" width="0.6061%" height="15" fill="rgb(251,24,1)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="54.2424%" y="1828" width="0.6061%" height="15" fill="rgb(212,185,49)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="54.2424%" y="1844" width="0.6061%" height="15" fill="rgb(215,175,22)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1854.50"></text></g><g><title><module> (scipy/linalg/lapack.py:1) (2 samples, 0.61%)</title><rect x="54.2424%" y="1860" width="0.6061%" height="15" fill="rgb(250,205,14)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1870.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="54.2424%" y="1876" width="0.6061%" height="15" fill="rgb(225,211,22)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1886.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="54.2424%" y="1892" width="0.6061%" height="15" fill="rgb(251,179,42)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1902.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="54.2424%" y="1908" width="0.6061%" height="15" fill="rgb(208,216,51)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1918.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="54.2424%" y="1924" width="0.6061%" height="15" fill="rgb(235,36,11)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1934.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="54.2424%" y="1940" width="0.6061%" height="15" fill="rgb(213,189,28)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1950.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="54.2424%" y="1956" width="0.6061%" height="15" fill="rgb(227,203,42)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1966.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="54.2424%" y="1972" width="0.6061%" height="15" fill="rgb(244,72,36)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1982.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="54.2424%" y="1988" width="0.6061%" height="15" fill="rgb(213,53,17)" fg:x="179" fg:w="2"/><text x="54.4924%" y="1998.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="53.3333%" y="1252" width="1.8182%" height="15" fill="rgb(207,167,3)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1262.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="53.3333%" y="1268" width="1.8182%" height="15" fill="rgb(216,98,30)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1278.50">_..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (6 samples, 1.82%)</title><rect x="53.3333%" y="1284" width="1.8182%" height="15" fill="rgb(236,123,15)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1294.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="53.3333%" y="1300" width="1.8182%" height="15" fill="rgb(248,81,50)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1310.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="53.3333%" y="1316" width="1.8182%" height="15" fill="rgb(214,120,4)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1326.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="53.3333%" y="1332" width="1.8182%" height="15" fill="rgb(208,179,34)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1342.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="53.3333%" y="1348" width="1.8182%" height="15" fill="rgb(227,140,7)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1358.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="53.3333%" y="1364" width="1.8182%" height="15" fill="rgb(214,22,6)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1374.50">_..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (6 samples, 1.82%)</title><rect x="53.3333%" y="1380" width="1.8182%" height="15" fill="rgb(207,137,27)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1390.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="53.3333%" y="1396" width="1.8182%" height="15" fill="rgb(210,8,46)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1406.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="53.3333%" y="1412" width="1.8182%" height="15" fill="rgb(240,16,54)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1422.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="53.3333%" y="1428" width="1.8182%" height="15" fill="rgb(211,209,29)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1438.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="53.3333%" y="1444" width="1.8182%" height="15" fill="rgb(226,228,24)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1454.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="53.3333%" y="1460" width="1.8182%" height="15" fill="rgb(222,84,9)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1470.50">_..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (6 samples, 1.82%)</title><rect x="53.3333%" y="1476" width="1.8182%" height="15" fill="rgb(234,203,30)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1486.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="53.3333%" y="1492" width="1.8182%" height="15" fill="rgb(238,109,14)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1502.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="53.3333%" y="1508" width="1.8182%" height="15" fill="rgb(233,206,34)" fg:x="176" fg:w="6"/><text x="53.5833%" y="1518.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="53.6364%" y="1524" width="1.5152%" height="15" fill="rgb(220,167,47)" fg:x="177" fg:w="5"/><text x="53.8864%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="53.6364%" y="1540" width="1.5152%" height="15" fill="rgb(238,105,10)" fg:x="177" fg:w="5"/><text x="53.8864%" y="1550.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="54.8485%" y="1556" width="0.3030%" height="15" fill="rgb(213,227,17)" fg:x="181" fg:w="1"/><text x="55.0985%" y="1566.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.30%)</title><rect x="54.8485%" y="1572" width="0.3030%" height="15" fill="rgb(217,132,38)" fg:x="181" fg:w="1"/><text x="55.0985%" y="1582.50"></text></g><g><title><module> (dask/array/backends.py:1) (9 samples, 2.73%)</title><rect x="52.7273%" y="772" width="2.7273%" height="15" fill="rgb(242,146,4)" fg:x="174" fg:w="9"/><text x="52.9773%" y="782.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="52.7273%" y="788" width="2.7273%" height="15" fill="rgb(212,61,9)" fg:x="174" fg:w="9"/><text x="52.9773%" y="798.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="52.7273%" y="804" width="2.7273%" height="15" fill="rgb(247,126,22)" fg:x="174" fg:w="9"/><text x="52.9773%" y="814.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="52.7273%" y="820" width="2.7273%" height="15" fill="rgb(220,196,2)" fg:x="174" fg:w="9"/><text x="52.9773%" y="830.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="52.7273%" y="836" width="2.7273%" height="15" fill="rgb(208,46,4)" fg:x="174" fg:w="9"/><text x="52.9773%" y="846.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="52.7273%" y="852" width="2.7273%" height="15" fill="rgb(252,104,46)" fg:x="174" fg:w="9"/><text x="52.9773%" y="862.50">_c..</text></g><g><title><module> (dask/array/core.py:1) (9 samples, 2.73%)</title><rect x="52.7273%" y="868" width="2.7273%" height="15" fill="rgb(237,152,48)" fg:x="174" fg:w="9"/><text x="52.9773%" y="878.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="52.7273%" y="884" width="2.7273%" height="15" fill="rgb(221,59,37)" fg:x="174" fg:w="9"/><text x="52.9773%" y="894.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="52.7273%" y="900" width="2.7273%" height="15" fill="rgb(209,202,51)" fg:x="174" fg:w="9"/><text x="52.9773%" y="910.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="52.7273%" y="916" width="2.7273%" height="15" fill="rgb(228,81,30)" fg:x="174" fg:w="9"/><text x="52.9773%" y="926.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="52.7273%" y="932" width="2.7273%" height="15" fill="rgb(227,42,39)" fg:x="174" fg:w="9"/><text x="52.9773%" y="942.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="52.7273%" y="948" width="2.7273%" height="15" fill="rgb(221,26,2)" fg:x="174" fg:w="9"/><text x="52.9773%" y="958.50">_c..</text></g><g><title><module> (dask/array/chunk_types.py:1) (9 samples, 2.73%)</title><rect x="52.7273%" y="964" width="2.7273%" height="15" fill="rgb(254,61,31)" fg:x="174" fg:w="9"/><text x="52.9773%" y="974.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="52.7273%" y="980" width="2.7273%" height="15" fill="rgb(222,173,38)" fg:x="174" fg:w="9"/><text x="52.9773%" y="990.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="52.7273%" y="996" width="2.7273%" height="15" fill="rgb(218,50,12)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1006.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="52.7273%" y="1012" width="2.7273%" height="15" fill="rgb(223,88,40)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1022.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="52.7273%" y="1028" width="2.7273%" height="15" fill="rgb(237,54,19)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1038.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="52.7273%" y="1044" width="2.7273%" height="15" fill="rgb(251,129,25)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1054.50">_c..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (9 samples, 2.73%)</title><rect x="52.7273%" y="1060" width="2.7273%" height="15" fill="rgb(238,97,19)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1070.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 2.73%)</title><rect x="52.7273%" y="1076" width="2.7273%" height="15" fill="rgb(240,169,18)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1086.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="52.7273%" y="1092" width="2.7273%" height="15" fill="rgb(230,187,49)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1102.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="52.7273%" y="1108" width="2.7273%" height="15" fill="rgb(209,44,26)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1118.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="52.7273%" y="1124" width="2.7273%" height="15" fill="rgb(244,0,6)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1134.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="52.7273%" y="1140" width="2.7273%" height="15" fill="rgb(248,18,21)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1150.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 2.73%)</title><rect x="52.7273%" y="1156" width="2.7273%" height="15" fill="rgb(245,180,19)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1166.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 2.73%)</title><rect x="52.7273%" y="1172" width="2.7273%" height="15" fill="rgb(252,118,36)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1182.50">_c..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (9 samples, 2.73%)</title><rect x="52.7273%" y="1188" width="2.7273%" height="15" fill="rgb(210,224,19)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1198.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 2.73%)</title><rect x="52.7273%" y="1204" width="2.7273%" height="15" fill="rgb(218,30,24)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1214.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 2.73%)</title><rect x="52.7273%" y="1220" width="2.7273%" height="15" fill="rgb(219,75,50)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1230.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 2.73%)</title><rect x="52.7273%" y="1236" width="2.7273%" height="15" fill="rgb(234,72,50)" fg:x="174" fg:w="9"/><text x="52.9773%" y="1246.50">_l..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="55.1515%" y="1252" width="0.3030%" height="15" fill="rgb(219,100,48)" fg:x="182" fg:w="1"/><text x="55.4015%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="55.1515%" y="1268" width="0.3030%" height="15" fill="rgb(253,5,41)" fg:x="182" fg:w="1"/><text x="55.4015%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.1515%" y="1284" width="0.3030%" height="15" fill="rgb(247,181,11)" fg:x="182" fg:w="1"/><text x="55.4015%" y="1294.50"></text></g><g><title><module> (dask/array/fft.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="772" width="0.3030%" height="15" fill="rgb(222,223,25)" fg:x="183" fg:w="1"/><text x="55.7045%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="788" width="0.3030%" height="15" fill="rgb(214,198,28)" fg:x="183" fg:w="1"/><text x="55.7045%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="804" width="0.3030%" height="15" fill="rgb(230,46,43)" fg:x="183" fg:w="1"/><text x="55.7045%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="820" width="0.3030%" height="15" fill="rgb(233,65,53)" fg:x="183" fg:w="1"/><text x="55.7045%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="836" width="0.3030%" height="15" fill="rgb(221,121,27)" fg:x="183" fg:w="1"/><text x="55.7045%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="852" width="0.3030%" height="15" fill="rgb(247,70,47)" fg:x="183" fg:w="1"/><text x="55.7045%" y="862.50"></text></g><g><title><module> (scipy/fftpack/__init__.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="868" width="0.3030%" height="15" fill="rgb(228,85,35)" fg:x="183" fg:w="1"/><text x="55.7045%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="884" width="0.3030%" height="15" fill="rgb(209,50,18)" fg:x="183" fg:w="1"/><text x="55.7045%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="900" width="0.3030%" height="15" fill="rgb(250,19,35)" fg:x="183" fg:w="1"/><text x="55.7045%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="916" width="0.3030%" height="15" fill="rgb(253,107,29)" fg:x="183" fg:w="1"/><text x="55.7045%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="932" width="0.3030%" height="15" fill="rgb(252,179,29)" fg:x="183" fg:w="1"/><text x="55.7045%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="948" width="0.3030%" height="15" fill="rgb(238,194,6)" fg:x="183" fg:w="1"/><text x="55.7045%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="964" width="0.3030%" height="15" fill="rgb(238,164,29)" fg:x="183" fg:w="1"/><text x="55.7045%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="980" width="0.3030%" height="15" fill="rgb(224,25,9)" fg:x="183" fg:w="1"/><text x="55.7045%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="996" width="0.3030%" height="15" fill="rgb(244,153,23)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1012" width="0.3030%" height="15" fill="rgb(212,203,14)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="1028" width="0.3030%" height="15" fill="rgb(220,164,20)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1044" width="0.3030%" height="15" fill="rgb(222,203,48)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="1060" width="0.3030%" height="15" fill="rgb(215,159,22)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="1076" width="0.3030%" height="15" fill="rgb(216,183,47)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="1092" width="0.3030%" height="15" fill="rgb(229,195,25)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1108" width="0.3030%" height="15" fill="rgb(224,132,51)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="1124" width="0.3030%" height="15" fill="rgb(240,63,7)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1140" width="0.3030%" height="15" fill="rgb(249,182,41)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1150.50"></text></g><g><title><module> (scipy/fft/_basic.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="1156" width="0.3030%" height="15" fill="rgb(243,47,26)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="1172" width="0.3030%" height="15" fill="rgb(233,48,2)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="1188" width="0.3030%" height="15" fill="rgb(244,165,34)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1204" width="0.3030%" height="15" fill="rgb(207,89,7)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="1220" width="0.3030%" height="15" fill="rgb(244,117,36)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1236" width="0.3030%" height="15" fill="rgb(226,144,34)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1246.50"></text></g><g><title><module> (scipy/_lib/uarray.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="1252" width="0.3030%" height="15" fill="rgb(213,23,19)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="1268" width="0.3030%" height="15" fill="rgb(217,75,12)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="1284" width="0.3030%" height="15" fill="rgb(224,159,17)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1300" width="0.3030%" height="15" fill="rgb(217,118,1)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="1316" width="0.3030%" height="15" fill="rgb(232,180,48)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1332" width="0.3030%" height="15" fill="rgb(230,27,33)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1342.50"></text></g><g><title><module> (scipy/_lib/_uarray/__init__.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="1348" width="0.3030%" height="15" fill="rgb(205,31,21)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="1364" width="0.3030%" height="15" fill="rgb(253,59,4)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1374.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="1380" width="0.3030%" height="15" fill="rgb(224,201,9)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1390.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1396" width="0.3030%" height="15" fill="rgb(229,206,30)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1406.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="55.4545%" y="1412" width="0.3030%" height="15" fill="rgb(212,67,47)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1422.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1428" width="0.3030%" height="15" fill="rgb(211,96,50)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1438.50"></text></g><g><title><module> (scipy/_lib/_uarray/_backend.py:1) (1 samples, 0.30%)</title><rect x="55.4545%" y="1444" width="0.3030%" height="15" fill="rgb(252,114,18)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1454.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="55.4545%" y="1460" width="0.3030%" height="15" fill="rgb(223,58,37)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1476" width="0.3030%" height="15" fill="rgb(237,70,4)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="55.4545%" y="1492" width="0.3030%" height="15" fill="rgb(244,85,46)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="55.4545%" y="1508" width="0.3030%" height="15" fill="rgb(223,39,52)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="55.4545%" y="1524" width="0.3030%" height="15" fill="rgb(218,200,14)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1534.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="55.4545%" y="1540" width="0.3030%" height="15" fill="rgb(208,171,16)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1550.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="55.4545%" y="1556" width="0.3030%" height="15" fill="rgb(234,200,18)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="55.4545%" y="1572" width="0.3030%" height="15" fill="rgb(228,45,11)" fg:x="183" fg:w="1"/><text x="55.7045%" y="1582.50"></text></g><g><title>extra_titles (dask/utils.py:809) (3 samples, 0.91%)</title><rect x="55.7576%" y="932" width="0.9091%" height="15" fill="rgb(237,182,11)" fg:x="184" fg:w="3"/><text x="56.0076%" y="942.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (2 samples, 0.61%)</title><rect x="56.0606%" y="948" width="0.6061%" height="15" fill="rgb(241,175,49)" fg:x="185" fg:w="2"/><text x="56.3106%" y="958.50"></text></g><g><title><module> (dask/array/linalg.py:1) (4 samples, 1.21%)</title><rect x="55.7576%" y="772" width="1.2121%" height="15" fill="rgb(247,38,35)" fg:x="184" fg:w="4"/><text x="56.0076%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="55.7576%" y="788" width="1.2121%" height="15" fill="rgb(228,39,49)" fg:x="184" fg:w="4"/><text x="56.0076%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="55.7576%" y="804" width="1.2121%" height="15" fill="rgb(226,101,26)" fg:x="184" fg:w="4"/><text x="56.0076%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="55.7576%" y="820" width="1.2121%" height="15" fill="rgb(206,141,19)" fg:x="184" fg:w="4"/><text x="56.0076%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="55.7576%" y="836" width="1.2121%" height="15" fill="rgb(211,200,13)" fg:x="184" fg:w="4"/><text x="56.0076%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="55.7576%" y="852" width="1.2121%" height="15" fill="rgb(241,121,6)" fg:x="184" fg:w="4"/><text x="56.0076%" y="862.50"></text></g><g><title><module> (dask/array/random.py:1) (4 samples, 1.21%)</title><rect x="55.7576%" y="868" width="1.2121%" height="15" fill="rgb(234,221,29)" fg:x="184" fg:w="4"/><text x="56.0076%" y="878.50"></text></g><g><title>RandomState (dask/array/random.py:490) (4 samples, 1.21%)</title><rect x="55.7576%" y="884" width="1.2121%" height="15" fill="rgb(229,136,5)" fg:x="184" fg:w="4"/><text x="56.0076%" y="894.50"></text></g><g><title>wrapper (dask/utils.py:978) (4 samples, 1.21%)</title><rect x="55.7576%" y="900" width="1.2121%" height="15" fill="rgb(238,36,11)" fg:x="184" fg:w="4"/><text x="56.0076%" y="910.50"></text></g><g><title>_derived_from (dask/utils.py:885) (4 samples, 1.21%)</title><rect x="55.7576%" y="916" width="1.2121%" height="15" fill="rgb(251,55,41)" fg:x="184" fg:w="4"/><text x="56.0076%" y="926.50"></text></g><g><title>ignore_warning (dask/utils.py:829) (1 samples, 0.30%)</title><rect x="56.6667%" y="932" width="0.3030%" height="15" fill="rgb(242,34,40)" fg:x="187" fg:w="1"/><text x="56.9167%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.30%)</title><rect x="56.6667%" y="948" width="0.3030%" height="15" fill="rgb(215,42,17)" fg:x="187" fg:w="1"/><text x="56.9167%" y="958.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.30%)</title><rect x="56.6667%" y="964" width="0.3030%" height="15" fill="rgb(207,44,46)" fg:x="187" fg:w="1"/><text x="56.9167%" y="974.50"></text></g><g><title><module> (dask/array/reductions.py:1) (1 samples, 0.30%)</title><rect x="56.9697%" y="868" width="0.3030%" height="15" fill="rgb(211,206,28)" fg:x="188" fg:w="1"/><text x="57.2197%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.30%)</title><rect x="56.9697%" y="884" width="0.3030%" height="15" fill="rgb(237,167,16)" fg:x="188" fg:w="1"/><text x="57.2197%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.30%)</title><rect x="56.9697%" y="900" width="0.3030%" height="15" fill="rgb(233,66,6)" fg:x="188" fg:w="1"/><text x="57.2197%" y="910.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.30%)</title><rect x="56.9697%" y="916" width="0.3030%" height="15" fill="rgb(246,123,29)" fg:x="188" fg:w="1"/><text x="57.2197%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.30%)</title><rect x="56.9697%" y="932" width="0.3030%" height="15" fill="rgb(209,62,40)" fg:x="188" fg:w="1"/><text x="57.2197%" y="942.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.30%)</title><rect x="57.2727%" y="916" width="0.3030%" height="15" fill="rgb(218,4,25)" fg:x="189" fg:w="1"/><text x="57.5227%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.30%)</title><rect x="57.2727%" y="932" width="0.3030%" height="15" fill="rgb(253,91,49)" fg:x="189" fg:w="1"/><text x="57.5227%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="52.7273%" y="548" width="5.1515%" height="15" fill="rgb(228,155,29)" fg:x="174" fg:w="17"/><text x="52.9773%" y="558.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.15%)</title><rect x="52.7273%" y="564" width="5.1515%" height="15" fill="rgb(243,57,37)" fg:x="174" fg:w="17"/><text x="52.9773%" y="574.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.15%)</title><rect x="52.7273%" y="580" width="5.1515%" height="15" fill="rgb(244,167,17)" fg:x="174" fg:w="17"/><text x="52.9773%" y="590.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.15%)</title><rect x="52.7273%" y="596" width="5.1515%" height="15" fill="rgb(207,181,38)" fg:x="174" fg:w="17"/><text x="52.9773%" y="606.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.15%)</title><rect x="52.7273%" y="612" width="5.1515%" height="15" fill="rgb(211,8,23)" fg:x="174" fg:w="17"/><text x="52.9773%" y="622.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="52.7273%" y="628" width="5.1515%" height="15" fill="rgb(235,11,44)" fg:x="174" fg:w="17"/><text x="52.9773%" y="638.50">_call_..</text></g><g><title><module> (dask/array/__init__.py:1) (17 samples, 5.15%)</title><rect x="52.7273%" y="644" width="5.1515%" height="15" fill="rgb(248,18,52)" fg:x="174" fg:w="17"/><text x="52.9773%" y="654.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (17 samples, 5.15%)</title><rect x="52.7273%" y="660" width="5.1515%" height="15" fill="rgb(208,4,7)" fg:x="174" fg:w="17"/><text x="52.9773%" y="670.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="52.7273%" y="676" width="5.1515%" height="15" fill="rgb(240,17,39)" fg:x="174" fg:w="17"/><text x="52.9773%" y="686.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.15%)</title><rect x="52.7273%" y="692" width="5.1515%" height="15" fill="rgb(207,170,3)" fg:x="174" fg:w="17"/><text x="52.9773%" y="702.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.15%)</title><rect x="52.7273%" y="708" width="5.1515%" height="15" fill="rgb(236,100,52)" fg:x="174" fg:w="17"/><text x="52.9773%" y="718.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.15%)</title><rect x="52.7273%" y="724" width="5.1515%" height="15" fill="rgb(246,78,51)" fg:x="174" fg:w="17"/><text x="52.9773%" y="734.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.15%)</title><rect x="52.7273%" y="740" width="5.1515%" height="15" fill="rgb(211,17,15)" fg:x="174" fg:w="17"/><text x="52.9773%" y="750.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.15%)</title><rect x="52.7273%" y="756" width="5.1515%" height="15" fill="rgb(209,59,46)" fg:x="174" fg:w="17"/><text x="52.9773%" y="766.50">_call_..</text></g><g><title><module> (dask/array/ma.py:1) (3 samples, 0.91%)</title><rect x="56.9697%" y="772" width="0.9091%" height="15" fill="rgb(210,92,25)" fg:x="188" fg:w="3"/><text x="57.2197%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="56.9697%" y="788" width="0.9091%" height="15" fill="rgb(238,174,52)" fg:x="188" fg:w="3"/><text x="57.2197%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="56.9697%" y="804" width="0.9091%" height="15" fill="rgb(230,73,7)" fg:x="188" fg:w="3"/><text x="57.2197%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="56.9697%" y="820" width="0.9091%" height="15" fill="rgb(243,124,40)" fg:x="188" fg:w="3"/><text x="57.2197%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="56.9697%" y="836" width="0.9091%" height="15" fill="rgb(244,170,11)" fg:x="188" fg:w="3"/><text x="57.2197%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="56.9697%" y="852" width="0.9091%" height="15" fill="rgb(207,114,54)" fg:x="188" fg:w="3"/><text x="57.2197%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (2 samples, 0.61%)</title><rect x="57.2727%" y="868" width="0.6061%" height="15" fill="rgb(205,42,20)" fg:x="189" fg:w="2"/><text x="57.5227%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.61%)</title><rect x="57.2727%" y="884" width="0.6061%" height="15" fill="rgb(230,30,28)" fg:x="189" fg:w="2"/><text x="57.5227%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.61%)</title><rect x="57.2727%" y="900" width="0.6061%" height="15" fill="rgb(205,73,54)" fg:x="189" fg:w="2"/><text x="57.5227%" y="910.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.30%)</title><rect x="57.5758%" y="916" width="0.3030%" height="15" fill="rgb(254,227,23)" fg:x="190" fg:w="1"/><text x="57.8258%" y="926.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.30%)</title><rect x="57.5758%" y="932" width="0.3030%" height="15" fill="rgb(228,202,34)" fg:x="190" fg:w="1"/><text x="57.8258%" y="942.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.30%)</title><rect x="57.5758%" y="948" width="0.3030%" height="15" fill="rgb(222,225,37)" fg:x="190" fg:w="1"/><text x="57.8258%" y="958.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.30%)</title><rect x="57.5758%" y="964" width="0.3030%" height="15" fill="rgb(221,14,54)" fg:x="190" fg:w="1"/><text x="57.8258%" y="974.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.30%)</title><rect x="57.5758%" y="980" width="0.3030%" height="15" fill="rgb(254,102,2)" fg:x="190" fg:w="1"/><text x="57.8258%" y="990.50"></text></g><g><title>Index (dask/dataframe/core.py:4739) (1 samples, 0.30%)</title><rect x="57.8788%" y="612" width="0.3030%" height="15" fill="rgb(232,104,17)" fg:x="191" fg:w="1"/><text x="58.1288%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.30%)</title><rect x="57.8788%" y="628" width="0.3030%" height="15" fill="rgb(250,220,14)" fg:x="191" fg:w="1"/><text x="58.1288%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.30%)</title><rect x="57.8788%" y="644" width="0.3030%" height="15" fill="rgb(241,158,9)" fg:x="191" fg:w="1"/><text x="58.1288%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.30%)</title><rect x="57.8788%" y="660" width="0.3030%" height="15" fill="rgb(246,9,43)" fg:x="191" fg:w="1"/><text x="58.1288%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.30%)</title><rect x="57.8788%" y="676" width="0.3030%" height="15" fill="rgb(206,73,33)" fg:x="191" fg:w="1"/><text x="58.1288%" y="686.50"></text></g><g><title>match (re.py:188) (1 samples, 0.30%)</title><rect x="57.8788%" y="692" width="0.3030%" height="15" fill="rgb(222,79,8)" fg:x="191" fg:w="1"/><text x="58.1288%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.30%)</title><rect x="57.8788%" y="708" width="0.3030%" height="15" fill="rgb(234,8,54)" fg:x="191" fg:w="1"/><text x="58.1288%" y="718.50"></text></g><g><title>Series (dask/dataframe/core.py:3995) (1 samples, 0.30%)</title><rect x="58.1818%" y="612" width="0.3030%" height="15" fill="rgb(209,134,38)" fg:x="192" fg:w="1"/><text x="58.4318%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.30%)</title><rect x="58.1818%" y="628" width="0.3030%" height="15" fill="rgb(230,127,29)" fg:x="192" fg:w="1"/><text x="58.4318%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.30%)</title><rect x="58.1818%" y="644" width="0.3030%" height="15" fill="rgb(242,44,41)" fg:x="192" fg:w="1"/><text x="58.4318%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.30%)</title><rect x="58.1818%" y="660" width="0.3030%" height="15" fill="rgb(222,56,43)" fg:x="192" fg:w="1"/><text x="58.4318%" y="670.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.30%)</title><rect x="58.4848%" y="660" width="0.3030%" height="15" fill="rgb(238,39,47)" fg:x="193" fg:w="1"/><text x="58.7348%" y="670.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.30%)</title><rect x="58.4848%" y="676" width="0.3030%" height="15" fill="rgb(226,79,43)" fg:x="193" fg:w="1"/><text x="58.7348%" y="686.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.30%)</title><rect x="58.4848%" y="692" width="0.3030%" height="15" fill="rgb(242,105,53)" fg:x="193" fg:w="1"/><text x="58.7348%" y="702.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.30%)</title><rect x="58.4848%" y="708" width="0.3030%" height="15" fill="rgb(251,132,46)" fg:x="193" fg:w="1"/><text x="58.7348%" y="718.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.30%)</title><rect x="58.4848%" y="724" width="0.3030%" height="15" fill="rgb(231,77,14)" fg:x="193" fg:w="1"/><text x="58.7348%" y="734.50"></text></g><g><title>_bind_operator_method (dask/dataframe/core.py:6120) (2 samples, 0.61%)</title><rect x="58.4848%" y="612" width="0.6061%" height="15" fill="rgb(240,135,9)" fg:x="193" fg:w="2"/><text x="58.7348%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.61%)</title><rect x="58.4848%" y="628" width="0.6061%" height="15" fill="rgb(248,109,14)" fg:x="193" fg:w="2"/><text x="58.7348%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.61%)</title><rect x="58.4848%" y="644" width="0.6061%" height="15" fill="rgb(227,146,52)" fg:x="193" fg:w="2"/><text x="58.7348%" y="654.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.30%)</title><rect x="58.7879%" y="660" width="0.3030%" height="15" fill="rgb(232,54,3)" fg:x="194" fg:w="1"/><text x="59.0379%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.30%)</title><rect x="58.7879%" y="676" width="0.3030%" height="15" fill="rgb(229,201,43)" fg:x="194" fg:w="1"/><text x="59.0379%" y="686.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.30%)</title><rect x="58.7879%" y="692" width="0.3030%" height="15" fill="rgb(252,161,33)" fg:x="194" fg:w="1"/><text x="59.0379%" y="702.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="59.0909%" y="980" width="0.3030%" height="15" fill="rgb(226,146,40)" fg:x="195" fg:w="1"/><text x="59.3409%" y="990.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="59.0909%" y="996" width="0.3030%" height="15" fill="rgb(219,47,25)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1006.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="59.0909%" y="1012" width="0.3030%" height="15" fill="rgb(250,135,13)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1022.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="59.0909%" y="1028" width="0.3030%" height="15" fill="rgb(219,229,18)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1038.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.30%)</title><rect x="59.0909%" y="1044" width="0.3030%" height="15" fill="rgb(217,152,27)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1054.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.30%)</title><rect x="59.0909%" y="1060" width="0.3030%" height="15" fill="rgb(225,71,47)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1070.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="59.0909%" y="1076" width="0.3030%" height="15" fill="rgb(220,139,14)" fg:x="195" fg:w="1"/><text x="59.3409%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="59.3939%" y="1332" width="0.3030%" height="15" fill="rgb(247,54,32)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1342.50"></text></g><g><title><module> (asyncio/coroutines.py:1) (1 samples, 0.30%)</title><rect x="59.3939%" y="1348" width="0.3030%" height="15" fill="rgb(252,131,39)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="59.3939%" y="1364" width="0.3030%" height="15" fill="rgb(210,108,39)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="59.3939%" y="1380" width="0.3030%" height="15" fill="rgb(205,23,29)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="59.3939%" y="1396" width="0.3030%" height="15" fill="rgb(246,139,46)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="59.3939%" y="1412" width="0.3030%" height="15" fill="rgb(250,81,26)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="59.3939%" y="1428" width="0.3030%" height="15" fill="rgb(214,104,7)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="59.3939%" y="1444" width="0.3030%" height="15" fill="rgb(233,189,8)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="59.3939%" y="1460" width="0.3030%" height="15" fill="rgb(228,141,17)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1470.50"></text></g><g><title><module> (asyncio/base_futures.py:1) (1 samples, 0.30%)</title><rect x="59.3939%" y="1476" width="0.3030%" height="15" fill="rgb(247,157,1)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="59.3939%" y="1492" width="0.3030%" height="15" fill="rgb(249,225,5)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="59.3939%" y="1508" width="0.3030%" height="15" fill="rgb(242,55,13)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="59.3939%" y="1524" width="0.3030%" height="15" fill="rgb(230,49,50)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="59.3939%" y="1540" width="0.3030%" height="15" fill="rgb(241,111,38)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="59.3939%" y="1556" width="0.3030%" height="15" fill="rgb(252,155,4)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="59.3939%" y="1572" width="0.3030%" height="15" fill="rgb(212,69,32)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1582.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="59.3939%" y="1588" width="0.3030%" height="15" fill="rgb(243,107,47)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1598.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="59.3939%" y="1604" width="0.3030%" height="15" fill="rgb(247,130,12)" fg:x="196" fg:w="1"/><text x="59.6439%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="59.3939%" y="1204" width="0.6061%" height="15" fill="rgb(233,74,16)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1214.50"></text></g><g><title><module> (asyncio/base_events.py:1) (2 samples, 0.61%)</title><rect x="59.3939%" y="1220" width="0.6061%" height="15" fill="rgb(208,58,18)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1230.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="59.3939%" y="1236" width="0.6061%" height="15" fill="rgb(242,225,1)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="59.3939%" y="1252" width="0.6061%" height="15" fill="rgb(249,39,40)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="59.3939%" y="1268" width="0.6061%" height="15" fill="rgb(207,72,44)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="59.3939%" y="1284" width="0.6061%" height="15" fill="rgb(215,193,12)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="59.3939%" y="1300" width="0.6061%" height="15" fill="rgb(248,41,39)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="59.3939%" y="1316" width="0.6061%" height="15" fill="rgb(253,85,4)" fg:x="196" fg:w="2"/><text x="59.6439%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="59.6970%" y="1332" width="0.3030%" height="15" fill="rgb(243,70,31)" fg:x="197" fg:w="1"/><text x="59.9470%" y="1342.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="59.6970%" y="1348" width="0.3030%" height="15" fill="rgb(253,195,26)" fg:x="197" fg:w="1"/><text x="59.9470%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="59.3939%" y="1012" width="0.9091%" height="15" fill="rgb(243,42,11)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1022.50"></text></g><g><title><module> (fsspec/exceptions.py:1) (3 samples, 0.91%)</title><rect x="59.3939%" y="1028" width="0.9091%" height="15" fill="rgb(239,66,17)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="59.3939%" y="1044" width="0.9091%" height="15" fill="rgb(217,132,21)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="59.3939%" y="1060" width="0.9091%" height="15" fill="rgb(252,202,21)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="59.3939%" y="1076" width="0.9091%" height="15" fill="rgb(233,98,36)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="59.3939%" y="1092" width="0.9091%" height="15" fill="rgb(216,153,54)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="59.3939%" y="1108" width="0.9091%" height="15" fill="rgb(250,99,7)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1118.50"></text></g><g><title><module> (asyncio/__init__.py:1) (3 samples, 0.91%)</title><rect x="59.3939%" y="1124" width="0.9091%" height="15" fill="rgb(207,56,50)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="59.3939%" y="1140" width="0.9091%" height="15" fill="rgb(244,61,34)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="59.3939%" y="1156" width="0.9091%" height="15" fill="rgb(241,50,38)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="59.3939%" y="1172" width="0.9091%" height="15" fill="rgb(212,166,30)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1182.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="59.3939%" y="1188" width="0.9091%" height="15" fill="rgb(249,127,32)" fg:x="196" fg:w="3"/><text x="59.6439%" y="1198.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="60.0000%" y="1204" width="0.3030%" height="15" fill="rgb(209,103,0)" fg:x="198" fg:w="1"/><text x="60.2500%" y="1214.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="60.0000%" y="1220" width="0.3030%" height="15" fill="rgb(238,209,51)" fg:x="198" fg:w="1"/><text x="60.2500%" y="1230.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="60.3030%" y="1028" width="0.3030%" height="15" fill="rgb(237,56,23)" fg:x="199" fg:w="1"/><text x="60.5530%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="59.0909%" y="948" width="1.8182%" height="15" fill="rgb(215,153,46)" fg:x="195" fg:w="6"/><text x="59.3409%" y="958.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="59.0909%" y="964" width="1.8182%" height="15" fill="rgb(224,49,31)" fg:x="195" fg:w="6"/><text x="59.3409%" y="974.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="59.3939%" y="980" width="1.5152%" height="15" fill="rgb(250,18,42)" fg:x="196" fg:w="5"/><text x="59.6439%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="59.3939%" y="996" width="1.5152%" height="15" fill="rgb(215,176,39)" fg:x="196" fg:w="5"/><text x="59.6439%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="60.3030%" y="1012" width="0.6061%" height="15" fill="rgb(223,77,29)" fg:x="199" fg:w="2"/><text x="60.5530%" y="1022.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.30%)</title><rect x="60.6061%" y="1028" width="0.3030%" height="15" fill="rgb(234,94,52)" fg:x="200" fg:w="1"/><text x="60.8561%" y="1038.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="60.6061%" y="1044" width="0.3030%" height="15" fill="rgb(220,154,50)" fg:x="200" fg:w="1"/><text x="60.8561%" y="1054.50"></text></g><g><title><module> (dask/bag/avro.py:1) (7 samples, 2.12%)</title><rect x="59.0909%" y="788" width="2.1212%" height="15" fill="rgb(212,11,10)" fg:x="195" fg:w="7"/><text x="59.3409%" y="798.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="59.0909%" y="804" width="2.1212%" height="15" fill="rgb(205,166,19)" fg:x="195" fg:w="7"/><text x="59.3409%" y="814.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="59.0909%" y="820" width="2.1212%" height="15" fill="rgb(244,198,16)" fg:x="195" fg:w="7"/><text x="59.3409%" y="830.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="59.0909%" y="836" width="2.1212%" height="15" fill="rgb(219,69,12)" fg:x="195" fg:w="7"/><text x="59.3409%" y="846.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="59.0909%" y="852" width="2.1212%" height="15" fill="rgb(245,30,7)" fg:x="195" fg:w="7"/><text x="59.3409%" y="862.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="59.0909%" y="868" width="2.1212%" height="15" fill="rgb(218,221,48)" fg:x="195" fg:w="7"/><text x="59.3409%" y="878.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="59.0909%" y="884" width="2.1212%" height="15" fill="rgb(216,66,15)" fg:x="195" fg:w="7"/><text x="59.3409%" y="894.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="59.0909%" y="900" width="2.1212%" height="15" fill="rgb(226,122,50)" fg:x="195" fg:w="7"/><text x="59.3409%" y="910.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="59.0909%" y="916" width="2.1212%" height="15" fill="rgb(239,156,16)" fg:x="195" fg:w="7"/><text x="59.3409%" y="926.50">_..</text></g><g><title><module> (fsspec/__init__.py:1) (7 samples, 2.12%)</title><rect x="59.0909%" y="932" width="2.1212%" height="15" fill="rgb(224,27,38)" fg:x="195" fg:w="7"/><text x="59.3409%" y="942.50"><..</text></g><g><title>process_entries (fsspec/__init__.py:40) (1 samples, 0.30%)</title><rect x="60.9091%" y="948" width="0.3030%" height="15" fill="rgb(224,39,27)" fg:x="201" fg:w="1"/><text x="61.1591%" y="958.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.30%)</title><rect x="60.9091%" y="964" width="0.3030%" height="15" fill="rgb(215,92,29)" fg:x="201" fg:w="1"/><text x="61.1591%" y="974.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.30%)</title><rect x="60.9091%" y="980" width="0.3030%" height="15" fill="rgb(207,159,16)" fg:x="201" fg:w="1"/><text x="61.1591%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.30%)</title><rect x="60.9091%" y="996" width="0.3030%" height="15" fill="rgb(238,163,47)" fg:x="201" fg:w="1"/><text x="61.1591%" y="1006.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.30%)</title><rect x="60.9091%" y="1012" width="0.3030%" height="15" fill="rgb(219,91,49)" fg:x="201" fg:w="1"/><text x="61.1591%" y="1022.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (29 samples, 8.79%)</title><rect x="52.7273%" y="500" width="8.7879%" height="15" fill="rgb(227,167,31)" fg:x="174" fg:w="29"/><text x="52.9773%" y="510.50"><module> (da..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 8.79%)</title><rect x="52.7273%" y="516" width="8.7879%" height="15" fill="rgb(234,80,54)" fg:x="174" fg:w="29"/><text x="52.9773%" y="526.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 8.79%)</title><rect x="52.7273%" y="532" width="8.7879%" height="15" fill="rgb(212,114,2)" fg:x="174" fg:w="29"/><text x="52.9773%" y="542.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.64%)</title><rect x="57.8788%" y="548" width="3.6364%" height="15" fill="rgb(234,50,24)" fg:x="191" fg:w="12"/><text x="58.1288%" y="558.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.64%)</title><rect x="57.8788%" y="564" width="3.6364%" height="15" fill="rgb(221,68,8)" fg:x="191" fg:w="12"/><text x="58.1288%" y="574.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.64%)</title><rect x="57.8788%" y="580" width="3.6364%" height="15" fill="rgb(254,180,31)" fg:x="191" fg:w="12"/><text x="58.1288%" y="590.50">_cal..</text></g><g><title><module> (dask/dataframe/core.py:1) (12 samples, 3.64%)</title><rect x="57.8788%" y="596" width="3.6364%" height="15" fill="rgb(247,130,50)" fg:x="191" fg:w="12"/><text x="58.1288%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="59.0909%" y="612" width="2.4242%" height="15" fill="rgb(211,109,4)" fg:x="195" fg:w="8"/><text x="59.3409%" y="622.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="59.0909%" y="628" width="2.4242%" height="15" fill="rgb(238,50,21)" fg:x="195" fg:w="8"/><text x="59.3409%" y="638.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="59.0909%" y="644" width="2.4242%" height="15" fill="rgb(225,57,45)" fg:x="195" fg:w="8"/><text x="59.3409%" y="654.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="59.0909%" y="660" width="2.4242%" height="15" fill="rgb(209,196,50)" fg:x="195" fg:w="8"/><text x="59.3409%" y="670.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="59.0909%" y="676" width="2.4242%" height="15" fill="rgb(242,140,13)" fg:x="195" fg:w="8"/><text x="59.3409%" y="686.50">_c..</text></g><g><title><module> (dask/bag/__init__.py:1) (8 samples, 2.42%)</title><rect x="59.0909%" y="692" width="2.4242%" height="15" fill="rgb(217,111,7)" fg:x="195" fg:w="8"/><text x="59.3409%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="59.0909%" y="708" width="2.4242%" height="15" fill="rgb(253,193,51)" fg:x="195" fg:w="8"/><text x="59.3409%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="59.0909%" y="724" width="2.4242%" height="15" fill="rgb(252,70,29)" fg:x="195" fg:w="8"/><text x="59.3409%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="59.0909%" y="740" width="2.4242%" height="15" fill="rgb(232,127,12)" fg:x="195" fg:w="8"/><text x="59.3409%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="59.0909%" y="756" width="2.4242%" height="15" fill="rgb(211,180,21)" fg:x="195" fg:w="8"/><text x="59.3409%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="59.0909%" y="772" width="2.4242%" height="15" fill="rgb(229,72,13)" fg:x="195" fg:w="8"/><text x="59.3409%" y="782.50">_c..</text></g><g><title><module> (dask/bag/core.py:1) (1 samples, 0.30%)</title><rect x="61.2121%" y="788" width="0.3030%" height="15" fill="rgb(240,211,49)" fg:x="202" fg:w="1"/><text x="61.4621%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="61.2121%" y="804" width="0.3030%" height="15" fill="rgb(219,149,40)" fg:x="202" fg:w="1"/><text x="61.4621%" y="814.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:152) (1 samples, 0.30%)</title><rect x="61.2121%" y="820" width="0.3030%" height="15" fill="rgb(210,127,46)" fg:x="202" fg:w="1"/><text x="61.4621%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="61.5152%" y="612" width="0.3030%" height="15" fill="rgb(220,106,7)" fg:x="203" fg:w="1"/><text x="61.7652%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="61.5152%" y="628" width="0.3030%" height="15" fill="rgb(249,31,22)" fg:x="203" fg:w="1"/><text x="61.7652%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="61.5152%" y="644" width="0.3030%" height="15" fill="rgb(253,1,49)" fg:x="203" fg:w="1"/><text x="61.7652%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="61.5152%" y="660" width="0.3030%" height="15" fill="rgb(227,144,33)" fg:x="203" fg:w="1"/><text x="61.7652%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="61.5152%" y="676" width="0.3030%" height="15" fill="rgb(249,163,44)" fg:x="203" fg:w="1"/><text x="61.7652%" y="686.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="61.5152%" y="692" width="0.3030%" height="15" fill="rgb(234,15,39)" fg:x="203" fg:w="1"/><text x="61.7652%" y="702.50"></text></g><g><title><module> (qarray/__init__.py:1) (45 samples, 13.64%)</title><rect x="48.4848%" y="180" width="13.6364%" height="15" fill="rgb(207,66,16)" fg:x="160" fg:w="45"/><text x="48.7348%" y="190.50"><module> (qarray/__in..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (45 samples, 13.64%)</title><rect x="48.4848%" y="196" width="13.6364%" height="15" fill="rgb(233,112,24)" fg:x="160" fg:w="45"/><text x="48.7348%" y="206.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (45 samples, 13.64%)</title><rect x="48.4848%" y="212" width="13.6364%" height="15" fill="rgb(230,90,22)" fg:x="160" fg:w="45"/><text x="48.7348%" y="222.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (45 samples, 13.64%)</title><rect x="48.4848%" y="228" width="13.6364%" height="15" fill="rgb(229,61,13)" fg:x="160" fg:w="45"/><text x="48.7348%" y="238.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (45 samples, 13.64%)</title><rect x="48.4848%" y="244" width="13.6364%" height="15" fill="rgb(225,57,24)" fg:x="160" fg:w="45"/><text x="48.7348%" y="254.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (45 samples, 13.64%)</title><rect x="48.4848%" y="260" width="13.6364%" height="15" fill="rgb(208,169,48)" fg:x="160" fg:w="45"/><text x="48.7348%" y="270.50">_call_with_frames_rem..</text></g><g><title><module> (qarray/df.py:1) (32 samples, 9.70%)</title><rect x="52.4242%" y="276" width="9.6970%" height="15" fill="rgb(244,218,51)" fg:x="173" fg:w="32"/><text x="52.6742%" y="286.50"><module> (qarr..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (32 samples, 9.70%)</title><rect x="52.4242%" y="292" width="9.6970%" height="15" fill="rgb(214,148,10)" fg:x="173" fg:w="32"/><text x="52.6742%" y="302.50">_find_and_load..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (32 samples, 9.70%)</title><rect x="52.4242%" y="308" width="9.6970%" height="15" fill="rgb(225,174,27)" fg:x="173" fg:w="32"/><text x="52.6742%" y="318.50">_find_and_load..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (32 samples, 9.70%)</title><rect x="52.4242%" y="324" width="9.6970%" height="15" fill="rgb(230,96,26)" fg:x="173" fg:w="32"/><text x="52.6742%" y="334.50">_load_unlocked..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (32 samples, 9.70%)</title><rect x="52.4242%" y="340" width="9.6970%" height="15" fill="rgb(232,10,30)" fg:x="173" fg:w="32"/><text x="52.6742%" y="350.50">exec_module (<..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (32 samples, 9.70%)</title><rect x="52.4242%" y="356" width="9.6970%" height="15" fill="rgb(222,8,50)" fg:x="173" fg:w="32"/><text x="52.6742%" y="366.50">_call_with_fra..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (32 samples, 9.70%)</title><rect x="52.4242%" y="372" width="9.6970%" height="15" fill="rgb(213,81,27)" fg:x="173" fg:w="32"/><text x="52.6742%" y="382.50"><module> (dask..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (31 samples, 9.39%)</title><rect x="52.7273%" y="388" width="9.3939%" height="15" fill="rgb(245,50,10)" fg:x="174" fg:w="31"/><text x="52.9773%" y="398.50">_handle_froml..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (31 samples, 9.39%)</title><rect x="52.7273%" y="404" width="9.3939%" height="15" fill="rgb(216,100,18)" fg:x="174" fg:w="31"/><text x="52.9773%" y="414.50">_call_with_fr..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (31 samples, 9.39%)</title><rect x="52.7273%" y="420" width="9.3939%" height="15" fill="rgb(236,147,54)" fg:x="174" fg:w="31"/><text x="52.9773%" y="430.50">_find_and_loa..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (31 samples, 9.39%)</title><rect x="52.7273%" y="436" width="9.3939%" height="15" fill="rgb(205,143,26)" fg:x="174" fg:w="31"/><text x="52.9773%" y="446.50">_find_and_loa..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (31 samples, 9.39%)</title><rect x="52.7273%" y="452" width="9.3939%" height="15" fill="rgb(236,26,9)" fg:x="174" fg:w="31"/><text x="52.9773%" y="462.50">_load_unlocke..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (31 samples, 9.39%)</title><rect x="52.7273%" y="468" width="9.3939%" height="15" fill="rgb(221,165,53)" fg:x="174" fg:w="31"/><text x="52.9773%" y="478.50">exec_module (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (31 samples, 9.39%)</title><rect x="52.7273%" y="484" width="9.3939%" height="15" fill="rgb(214,110,17)" fg:x="174" fg:w="31"/><text x="52.9773%" y="494.50">_call_with_fr..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (2 samples, 0.61%)</title><rect x="61.5152%" y="500" width="0.6061%" height="15" fill="rgb(237,197,12)" fg:x="203" fg:w="2"/><text x="61.7652%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="61.5152%" y="516" width="0.6061%" height="15" fill="rgb(205,84,17)" fg:x="203" fg:w="2"/><text x="61.7652%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="61.5152%" y="532" width="0.6061%" height="15" fill="rgb(237,18,45)" fg:x="203" fg:w="2"/><text x="61.7652%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="61.5152%" y="548" width="0.6061%" height="15" fill="rgb(221,87,14)" fg:x="203" fg:w="2"/><text x="61.7652%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="61.5152%" y="564" width="0.6061%" height="15" fill="rgb(238,186,15)" fg:x="203" fg:w="2"/><text x="61.7652%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="61.5152%" y="580" width="0.6061%" height="15" fill="rgb(208,115,11)" fg:x="203" fg:w="2"/><text x="61.7652%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (2 samples, 0.61%)</title><rect x="61.5152%" y="596" width="0.6061%" height="15" fill="rgb(254,175,0)" fg:x="203" fg:w="2"/><text x="61.7652%" y="606.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="61.8182%" y="612" width="0.3030%" height="15" fill="rgb(227,24,42)" fg:x="204" fg:w="1"/><text x="62.0682%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="61.8182%" y="628" width="0.3030%" height="15" fill="rgb(223,211,37)" fg:x="204" fg:w="1"/><text x="62.0682%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="61.8182%" y="644" width="0.3030%" height="15" fill="rgb(235,49,27)" fg:x="204" fg:w="1"/><text x="62.0682%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="61.8182%" y="660" width="0.3030%" height="15" fill="rgb(254,97,51)" fg:x="204" fg:w="1"/><text x="62.0682%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="61.8182%" y="676" width="0.3030%" height="15" fill="rgb(249,51,40)" fg:x="204" fg:w="1"/><text x="62.0682%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="61.8182%" y="692" width="0.3030%" height="15" fill="rgb(210,128,45)" fg:x="204" fg:w="1"/><text x="62.0682%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="61.8182%" y="708" width="0.3030%" height="15" fill="rgb(224,137,50)" fg:x="204" fg:w="1"/><text x="62.0682%" y="718.50"></text></g><g><title><module> (dask/dataframe/io/demo.py:1) (1 samples, 0.30%)</title><rect x="61.8182%" y="724" width="0.3030%" height="15" fill="rgb(242,15,9)" fg:x="204" fg:w="1"/><text x="62.0682%" y="734.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.30%)</title><rect x="61.8182%" y="740" width="0.3030%" height="15" fill="rgb(233,187,41)" fg:x="204" fg:w="1"/><text x="62.0682%" y="750.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.30%)</title><rect x="61.8182%" y="756" width="0.3030%" height="15" fill="rgb(227,2,29)" fg:x="204" fg:w="1"/><text x="62.0682%" y="766.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.30%)</title><rect x="61.8182%" y="772" width="0.3030%" height="15" fill="rgb(222,70,3)" fg:x="204" fg:w="1"/><text x="62.0682%" y="782.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.30%)</title><rect x="61.8182%" y="788" width="0.3030%" height="15" fill="rgb(213,11,42)" fg:x="204" fg:w="1"/><text x="62.0682%" y="798.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.30%)</title><rect x="61.8182%" y="804" width="0.3030%" height="15" fill="rgb(225,150,9)" fg:x="204" fg:w="1"/><text x="62.0682%" y="814.50"></text></g><g><title><module> (numpy/core/_internal.py:1) (1 samples, 0.30%)</title><rect x="62.1212%" y="772" width="0.3030%" height="15" fill="rgb(230,162,45)" fg:x="205" fg:w="1"/><text x="62.3712%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="62.1212%" y="788" width="0.3030%" height="15" fill="rgb(222,14,52)" fg:x="205" fg:w="1"/><text x="62.3712%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="62.1212%" y="804" width="0.3030%" height="15" fill="rgb(254,198,14)" fg:x="205" fg:w="1"/><text x="62.3712%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="62.1212%" y="820" width="0.3030%" height="15" fill="rgb(220,217,30)" fg:x="205" fg:w="1"/><text x="62.3712%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="62.1212%" y="836" width="0.3030%" height="15" fill="rgb(215,146,41)" fg:x="205" fg:w="1"/><text x="62.3712%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="62.1212%" y="852" width="0.3030%" height="15" fill="rgb(217,27,36)" fg:x="205" fg:w="1"/><text x="62.3712%" y="862.50"></text></g><g><title><module> (ast.py:1) (1 samples, 0.30%)</title><rect x="62.1212%" y="868" width="0.3030%" height="15" fill="rgb(219,218,39)" fg:x="205" fg:w="1"/><text x="62.3712%" y="878.50"></text></g><g><title><module> (numpy/core/multiarray.py:1) (3 samples, 0.91%)</title><rect x="62.4242%" y="772" width="0.9091%" height="15" fill="rgb(219,4,42)" fg:x="206" fg:w="3"/><text x="62.6742%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.91%)</title><rect x="62.4242%" y="788" width="0.9091%" height="15" fill="rgb(249,119,36)" fg:x="206" fg:w="3"/><text x="62.6742%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="62.4242%" y="804" width="0.9091%" height="15" fill="rgb(209,23,33)" fg:x="206" fg:w="3"/><text x="62.6742%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="62.4242%" y="820" width="0.9091%" height="15" fill="rgb(211,10,0)" fg:x="206" fg:w="3"/><text x="62.6742%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="62.4242%" y="836" width="0.9091%" height="15" fill="rgb(208,99,37)" fg:x="206" fg:w="3"/><text x="62.6742%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="62.4242%" y="852" width="0.9091%" height="15" fill="rgb(213,132,31)" fg:x="206" fg:w="3"/><text x="62.6742%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="62.4242%" y="868" width="0.9091%" height="15" fill="rgb(243,129,40)" fg:x="206" fg:w="3"/><text x="62.6742%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="62.4242%" y="884" width="0.9091%" height="15" fill="rgb(210,66,33)" fg:x="206" fg:w="3"/><text x="62.6742%" y="894.50"></text></g><g><title><module> (numpy/core/overrides.py:1) (3 samples, 0.91%)</title><rect x="62.4242%" y="900" width="0.9091%" height="15" fill="rgb(209,189,4)" fg:x="206" fg:w="3"/><text x="62.6742%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="62.4242%" y="916" width="0.9091%" height="15" fill="rgb(214,107,37)" fg:x="206" fg:w="3"/><text x="62.6742%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="62.4242%" y="932" width="0.9091%" height="15" fill="rgb(245,88,54)" fg:x="206" fg:w="3"/><text x="62.6742%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="62.4242%" y="948" width="0.9091%" height="15" fill="rgb(205,146,20)" fg:x="206" fg:w="3"/><text x="62.6742%" y="958.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.91%)</title><rect x="62.4242%" y="964" width="0.9091%" height="15" fill="rgb(220,161,25)" fg:x="206" fg:w="3"/><text x="62.6742%" y="974.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.91%)</title><rect x="62.4242%" y="980" width="0.9091%" height="15" fill="rgb(215,152,15)" fg:x="206" fg:w="3"/><text x="62.6742%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="62.4242%" y="996" width="0.9091%" height="15" fill="rgb(233,192,44)" fg:x="206" fg:w="3"/><text x="62.6742%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="62.7273%" y="1012" width="0.6061%" height="15" fill="rgb(240,170,46)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="62.7273%" y="1028" width="0.6061%" height="15" fill="rgb(207,104,33)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="62.7273%" y="1044" width="0.6061%" height="15" fill="rgb(219,21,39)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="62.7273%" y="1060" width="0.6061%" height="15" fill="rgb(214,133,29)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="62.7273%" y="1076" width="0.6061%" height="15" fill="rgb(226,93,6)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1086.50"></text></g><g><title><module> (datetime.py:1) (2 samples, 0.61%)</title><rect x="62.7273%" y="1092" width="0.6061%" height="15" fill="rgb(252,222,34)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="62.7273%" y="1108" width="0.6061%" height="15" fill="rgb(252,92,48)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="62.7273%" y="1124" width="0.6061%" height="15" fill="rgb(245,223,24)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="62.7273%" y="1140" width="0.6061%" height="15" fill="rgb(205,176,3)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1150.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="62.7273%" y="1156" width="0.6061%" height="15" fill="rgb(235,151,15)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1166.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="62.7273%" y="1172" width="0.6061%" height="15" fill="rgb(237,209,11)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="62.7273%" y="1188" width="0.6061%" height="15" fill="rgb(243,227,24)" fg:x="207" fg:w="2"/><text x="62.9773%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="62.1212%" y="420" width="1.5152%" height="15" fill="rgb(239,193,16)" fg:x="205" fg:w="5"/><text x="62.3712%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="62.1212%" y="436" width="1.5152%" height="15" fill="rgb(231,27,9)" fg:x="205" fg:w="5"/><text x="62.3712%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="62.1212%" y="452" width="1.5152%" height="15" fill="rgb(219,169,10)" fg:x="205" fg:w="5"/><text x="62.3712%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="62.1212%" y="468" width="1.5152%" height="15" fill="rgb(244,229,43)" fg:x="205" fg:w="5"/><text x="62.3712%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="62.1212%" y="484" width="1.5152%" height="15" fill="rgb(254,38,20)" fg:x="205" fg:w="5"/><text x="62.3712%" y="494.50"></text></g><g><title><module> (numpy/__config__.py:3) (5 samples, 1.52%)</title><rect x="62.1212%" y="500" width="1.5152%" height="15" fill="rgb(250,47,30)" fg:x="205" fg:w="5"/><text x="62.3712%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="62.1212%" y="516" width="1.5152%" height="15" fill="rgb(224,124,36)" fg:x="205" fg:w="5"/><text x="62.3712%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="62.1212%" y="532" width="1.5152%" height="15" fill="rgb(246,68,51)" fg:x="205" fg:w="5"/><text x="62.3712%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="62.1212%" y="548" width="1.5152%" height="15" fill="rgb(253,43,49)" fg:x="205" fg:w="5"/><text x="62.3712%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="62.1212%" y="564" width="1.5152%" height="15" fill="rgb(219,54,36)" fg:x="205" fg:w="5"/><text x="62.3712%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="62.1212%" y="580" width="1.5152%" height="15" fill="rgb(227,133,34)" fg:x="205" fg:w="5"/><text x="62.3712%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="62.1212%" y="596" width="1.5152%" height="15" fill="rgb(247,227,15)" fg:x="205" fg:w="5"/><text x="62.3712%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="62.1212%" y="612" width="1.5152%" height="15" fill="rgb(229,96,14)" fg:x="205" fg:w="5"/><text x="62.3712%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="62.1212%" y="628" width="1.5152%" height="15" fill="rgb(220,79,17)" fg:x="205" fg:w="5"/><text x="62.3712%" y="638.50"></text></g><g><title><module> (numpy/core/__init__.py:1) (5 samples, 1.52%)</title><rect x="62.1212%" y="644" width="1.5152%" height="15" fill="rgb(205,131,53)" fg:x="205" fg:w="5"/><text x="62.3712%" y="654.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="62.1212%" y="660" width="1.5152%" height="15" fill="rgb(209,50,29)" fg:x="205" fg:w="5"/><text x="62.3712%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="62.1212%" y="676" width="1.5152%" height="15" fill="rgb(245,86,46)" fg:x="205" fg:w="5"/><text x="62.3712%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="62.1212%" y="692" width="1.5152%" height="15" fill="rgb(235,66,46)" fg:x="205" fg:w="5"/><text x="62.3712%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="62.1212%" y="708" width="1.5152%" height="15" fill="rgb(232,148,31)" fg:x="205" fg:w="5"/><text x="62.3712%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="62.1212%" y="724" width="1.5152%" height="15" fill="rgb(217,149,8)" fg:x="205" fg:w="5"/><text x="62.3712%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="62.1212%" y="740" width="1.5152%" height="15" fill="rgb(209,183,11)" fg:x="205" fg:w="5"/><text x="62.3712%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="62.1212%" y="756" width="1.5152%" height="15" fill="rgb(208,55,20)" fg:x="205" fg:w="5"/><text x="62.3712%" y="766.50"></text></g><g><title><module> (numpy/core/numerictypes.py:1) (1 samples, 0.30%)</title><rect x="63.3333%" y="772" width="0.3030%" height="15" fill="rgb(218,39,14)" fg:x="209" fg:w="1"/><text x="63.5833%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.3333%" y="788" width="0.3030%" height="15" fill="rgb(216,169,33)" fg:x="209" fg:w="1"/><text x="63.5833%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.3333%" y="804" width="0.3030%" height="15" fill="rgb(233,80,24)" fg:x="209" fg:w="1"/><text x="63.5833%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.3333%" y="820" width="0.3030%" height="15" fill="rgb(213,179,31)" fg:x="209" fg:w="1"/><text x="63.5833%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.3333%" y="836" width="0.3030%" height="15" fill="rgb(209,19,5)" fg:x="209" fg:w="1"/><text x="63.5833%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.3333%" y="852" width="0.3030%" height="15" fill="rgb(219,18,35)" fg:x="209" fg:w="1"/><text x="63.5833%" y="862.50"></text></g><g><title><module> (numpy/core/_type_aliases.py:1) (1 samples, 0.30%)</title><rect x="63.3333%" y="868" width="0.3030%" height="15" fill="rgb(209,169,16)" fg:x="209" fg:w="1"/><text x="63.5833%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.3333%" y="884" width="0.3030%" height="15" fill="rgb(245,90,51)" fg:x="209" fg:w="1"/><text x="63.5833%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.3333%" y="900" width="0.3030%" height="15" fill="rgb(220,99,45)" fg:x="209" fg:w="1"/><text x="63.5833%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.3333%" y="916" width="0.3030%" height="15" fill="rgb(249,89,25)" fg:x="209" fg:w="1"/><text x="63.5833%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.3333%" y="932" width="0.3030%" height="15" fill="rgb(239,193,0)" fg:x="209" fg:w="1"/><text x="63.5833%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.3333%" y="948" width="0.3030%" height="15" fill="rgb(231,126,1)" fg:x="209" fg:w="1"/><text x="63.5833%" y="958.50"></text></g><g><title><module> (numpy/compat/__init__.py:1) (1 samples, 0.30%)</title><rect x="63.3333%" y="964" width="0.3030%" height="15" fill="rgb(243,166,3)" fg:x="209" fg:w="1"/><text x="63.5833%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="63.3333%" y="980" width="0.3030%" height="15" fill="rgb(223,22,34)" fg:x="209" fg:w="1"/><text x="63.5833%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.3333%" y="996" width="0.3030%" height="15" fill="rgb(251,52,51)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.3333%" y="1012" width="0.3030%" height="15" fill="rgb(221,165,28)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.3333%" y="1028" width="0.3030%" height="15" fill="rgb(218,121,47)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.3333%" y="1044" width="0.3030%" height="15" fill="rgb(209,120,9)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.3333%" y="1060" width="0.3030%" height="15" fill="rgb(236,68,12)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.3333%" y="1076" width="0.3030%" height="15" fill="rgb(225,194,26)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1086.50"></text></g><g><title><module> (numpy/compat/py3k.py:1) (1 samples, 0.30%)</title><rect x="63.3333%" y="1092" width="0.3030%" height="15" fill="rgb(231,84,39)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.3333%" y="1108" width="0.3030%" height="15" fill="rgb(210,11,45)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.3333%" y="1124" width="0.3030%" height="15" fill="rgb(224,54,52)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.3333%" y="1140" width="0.3030%" height="15" fill="rgb(238,102,14)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.3333%" y="1156" width="0.3030%" height="15" fill="rgb(243,160,52)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1166.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="63.3333%" y="1172" width="0.3030%" height="15" fill="rgb(216,114,19)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1182.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.30%)</title><rect x="63.3333%" y="1188" width="0.3030%" height="15" fill="rgb(244,166,37)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1198.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="63.3333%" y="1204" width="0.3030%" height="15" fill="rgb(246,29,44)" fg:x="209" fg:w="1"/><text x="63.5833%" y="1214.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.30%)</title><rect x="63.6364%" y="596" width="0.3030%" height="15" fill="rgb(215,56,53)" fg:x="210" fg:w="1"/><text x="63.8864%" y="606.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.30%)</title><rect x="63.6364%" y="612" width="0.3030%" height="15" fill="rgb(217,60,2)" fg:x="210" fg:w="1"/><text x="63.8864%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="740" width="0.3030%" height="15" fill="rgb(207,26,24)" fg:x="211" fg:w="1"/><text x="64.1894%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (1 samples, 0.30%)</title><rect x="63.9394%" y="756" width="0.3030%" height="15" fill="rgb(252,210,15)" fg:x="211" fg:w="1"/><text x="64.1894%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="63.9394%" y="772" width="0.3030%" height="15" fill="rgb(253,209,26)" fg:x="211" fg:w="1"/><text x="64.1894%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="788" width="0.3030%" height="15" fill="rgb(238,170,14)" fg:x="211" fg:w="1"/><text x="64.1894%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.9394%" y="804" width="0.3030%" height="15" fill="rgb(216,178,15)" fg:x="211" fg:w="1"/><text x="64.1894%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.9394%" y="820" width="0.3030%" height="15" fill="rgb(250,197,2)" fg:x="211" fg:w="1"/><text x="64.1894%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.9394%" y="836" width="0.3030%" height="15" fill="rgb(212,70,42)" fg:x="211" fg:w="1"/><text x="64.1894%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.9394%" y="852" width="0.3030%" height="15" fill="rgb(227,213,9)" fg:x="211" fg:w="1"/><text x="64.1894%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="868" width="0.3030%" height="15" fill="rgb(245,99,25)" fg:x="211" fg:w="1"/><text x="64.1894%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (1 samples, 0.30%)</title><rect x="63.9394%" y="884" width="0.3030%" height="15" fill="rgb(250,82,29)" fg:x="211" fg:w="1"/><text x="64.1894%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.9394%" y="900" width="0.3030%" height="15" fill="rgb(241,226,54)" fg:x="211" fg:w="1"/><text x="64.1894%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.9394%" y="916" width="0.3030%" height="15" fill="rgb(221,99,41)" fg:x="211" fg:w="1"/><text x="64.1894%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.9394%" y="932" width="0.3030%" height="15" fill="rgb(213,90,21)" fg:x="211" fg:w="1"/><text x="64.1894%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.9394%" y="948" width="0.3030%" height="15" fill="rgb(205,208,24)" fg:x="211" fg:w="1"/><text x="64.1894%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="964" width="0.3030%" height="15" fill="rgb(246,31,12)" fg:x="211" fg:w="1"/><text x="64.1894%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (1 samples, 0.30%)</title><rect x="63.9394%" y="980" width="0.3030%" height="15" fill="rgb(213,154,6)" fg:x="211" fg:w="1"/><text x="64.1894%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="63.9394%" y="996" width="0.3030%" height="15" fill="rgb(222,163,29)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="1012" width="0.3030%" height="15" fill="rgb(227,201,8)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="63.9394%" y="1028" width="0.3030%" height="15" fill="rgb(233,9,32)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="63.9394%" y="1044" width="0.3030%" height="15" fill="rgb(217,54,24)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="63.9394%" y="1060" width="0.3030%" height="15" fill="rgb(235,192,0)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="63.9394%" y="1076" width="0.3030%" height="15" fill="rgb(235,45,9)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="63.9394%" y="1092" width="0.3030%" height="15" fill="rgb(246,42,40)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (1 samples, 0.30%)</title><rect x="63.9394%" y="1108" width="0.3030%" height="15" fill="rgb(248,111,24)" fg:x="211" fg:w="1"/><text x="64.1894%" y="1118.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (2 samples, 0.61%)</title><rect x="63.9394%" y="660" width="0.6061%" height="15" fill="rgb(249,65,22)" fg:x="211" fg:w="2"/><text x="64.1894%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="63.9394%" y="676" width="0.6061%" height="15" fill="rgb(238,111,51)" fg:x="211" fg:w="2"/><text x="64.1894%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="63.9394%" y="692" width="0.6061%" height="15" fill="rgb(250,118,22)" fg:x="211" fg:w="2"/><text x="64.1894%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="63.9394%" y="708" width="0.6061%" height="15" fill="rgb(234,84,26)" fg:x="211" fg:w="2"/><text x="64.1894%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="63.9394%" y="724" width="0.6061%" height="15" fill="rgb(243,172,12)" fg:x="211" fg:w="2"/><text x="64.1894%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="64.2424%" y="740" width="0.3030%" height="15" fill="rgb(236,150,49)" fg:x="212" fg:w="1"/><text x="64.4924%" y="750.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="64.2424%" y="756" width="0.3030%" height="15" fill="rgb(225,197,26)" fg:x="212" fg:w="1"/><text x="64.4924%" y="766.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (4 samples, 1.21%)</title><rect x="63.6364%" y="532" width="1.2121%" height="15" fill="rgb(214,17,42)" fg:x="210" fg:w="4"/><text x="63.8864%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="63.6364%" y="548" width="1.2121%" height="15" fill="rgb(224,165,40)" fg:x="210" fg:w="4"/><text x="63.8864%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="63.6364%" y="564" width="1.2121%" height="15" fill="rgb(246,100,4)" fg:x="210" fg:w="4"/><text x="63.8864%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="63.6364%" y="580" width="1.2121%" height="15" fill="rgb(222,103,0)" fg:x="210" fg:w="4"/><text x="63.8864%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="63.9394%" y="596" width="0.9091%" height="15" fill="rgb(227,189,26)" fg:x="211" fg:w="3"/><text x="64.1894%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="63.9394%" y="612" width="0.9091%" height="15" fill="rgb(214,202,17)" fg:x="211" fg:w="3"/><text x="64.1894%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="63.9394%" y="628" width="0.9091%" height="15" fill="rgb(229,111,3)" fg:x="211" fg:w="3"/><text x="64.1894%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="63.9394%" y="644" width="0.9091%" height="15" fill="rgb(229,172,15)" fg:x="211" fg:w="3"/><text x="64.1894%" y="654.50"></text></g><g><title><module> (numpy/lib/utils.py:1) (1 samples, 0.30%)</title><rect x="64.5455%" y="660" width="0.3030%" height="15" fill="rgb(230,224,35)" fg:x="213" fg:w="1"/><text x="64.7955%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="64.5455%" y="676" width="0.3030%" height="15" fill="rgb(251,141,6)" fg:x="213" fg:w="1"/><text x="64.7955%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="64.5455%" y="692" width="0.3030%" height="15" fill="rgb(225,208,6)" fg:x="213" fg:w="1"/><text x="64.7955%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="64.5455%" y="708" width="0.3030%" height="15" fill="rgb(246,181,16)" fg:x="213" fg:w="1"/><text x="64.7955%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="64.5455%" y="724" width="0.3030%" height="15" fill="rgb(227,129,36)" fg:x="213" fg:w="1"/><text x="64.7955%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="64.5455%" y="740" width="0.3030%" height="15" fill="rgb(248,117,24)" fg:x="213" fg:w="1"/><text x="64.7955%" y="750.50"></text></g><g><title><module> (textwrap.py:1) (1 samples, 0.30%)</title><rect x="64.5455%" y="756" width="0.3030%" height="15" fill="rgb(214,185,35)" fg:x="213" fg:w="1"/><text x="64.7955%" y="766.50"></text></g><g><title>TextWrapper (textwrap.py:17) (1 samples, 0.30%)</title><rect x="64.5455%" y="772" width="0.3030%" height="15" fill="rgb(236,150,34)" fg:x="213" fg:w="1"/><text x="64.7955%" y="782.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.30%)</title><rect x="64.5455%" y="788" width="0.3030%" height="15" fill="rgb(243,228,27)" fg:x="213" fg:w="1"/><text x="64.7955%" y="798.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.30%)</title><rect x="64.5455%" y="804" width="0.3030%" height="15" fill="rgb(245,77,44)" fg:x="213" fg:w="1"/><text x="64.7955%" y="814.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.30%)</title><rect x="64.5455%" y="820" width="0.3030%" height="15" fill="rgb(235,214,42)" fg:x="213" fg:w="1"/><text x="64.7955%" y="830.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.30%)</title><rect x="64.5455%" y="836" width="0.3030%" height="15" fill="rgb(221,74,3)" fg:x="213" fg:w="1"/><text x="64.7955%" y="846.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="64.5455%" y="852" width="0.3030%" height="15" fill="rgb(206,121,29)" fg:x="213" fg:w="1"/><text x="64.7955%" y="862.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="64.5455%" y="868" width="0.3030%" height="15" fill="rgb(249,131,53)" fg:x="213" fg:w="1"/><text x="64.7955%" y="878.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="64.5455%" y="884" width="0.3030%" height="15" fill="rgb(236,170,29)" fg:x="213" fg:w="1"/><text x="64.7955%" y="894.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="64.5455%" y="900" width="0.3030%" height="15" fill="rgb(247,96,15)" fg:x="213" fg:w="1"/><text x="64.7955%" y="910.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="64.5455%" y="916" width="0.3030%" height="15" fill="rgb(211,210,7)" fg:x="213" fg:w="1"/><text x="64.7955%" y="926.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="64.5455%" y="932" width="0.3030%" height="15" fill="rgb(240,88,50)" fg:x="213" fg:w="1"/><text x="64.7955%" y="942.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="64.5455%" y="948" width="0.3030%" height="15" fill="rgb(209,229,26)" fg:x="213" fg:w="1"/><text x="64.7955%" y="958.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="64.5455%" y="964" width="0.3030%" height="15" fill="rgb(210,68,23)" fg:x="213" fg:w="1"/><text x="64.7955%" y="974.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.30%)</title><rect x="64.5455%" y="980" width="0.3030%" height="15" fill="rgb(229,180,13)" fg:x="213" fg:w="1"/><text x="64.7955%" y="990.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.30%)</title><rect x="64.5455%" y="996" width="0.3030%" height="15" fill="rgb(236,53,44)" fg:x="213" fg:w="1"/><text x="64.7955%" y="1006.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (2 samples, 0.61%)</title><rect x="64.8485%" y="532" width="0.6061%" height="15" fill="rgb(244,214,29)" fg:x="214" fg:w="2"/><text x="65.0985%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="64.8485%" y="548" width="0.6061%" height="15" fill="rgb(220,75,29)" fg:x="214" fg:w="2"/><text x="65.0985%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="64.8485%" y="564" width="0.6061%" height="15" fill="rgb(214,183,37)" fg:x="214" fg:w="2"/><text x="65.0985%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="64.8485%" y="580" width="0.6061%" height="15" fill="rgb(239,117,29)" fg:x="214" fg:w="2"/><text x="65.0985%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="64.8485%" y="596" width="0.6061%" height="15" fill="rgb(237,171,35)" fg:x="214" fg:w="2"/><text x="65.0985%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="64.8485%" y="612" width="0.6061%" height="15" fill="rgb(229,178,53)" fg:x="214" fg:w="2"/><text x="65.0985%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="64.8485%" y="628" width="0.6061%" height="15" fill="rgb(210,102,19)" fg:x="214" fg:w="2"/><text x="65.0985%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="64.8485%" y="644" width="0.6061%" height="15" fill="rgb(235,127,22)" fg:x="214" fg:w="2"/><text x="65.0985%" y="654.50"></text></g><g><title><module> (numpy/ma/extras.py:1) (2 samples, 0.61%)</title><rect x="64.8485%" y="660" width="0.6061%" height="15" fill="rgb(244,31,31)" fg:x="214" fg:w="2"/><text x="65.0985%" y="670.50"></text></g><g><title>__init__ (numpy/ma/extras.py:233) (1 samples, 0.30%)</title><rect x="65.1515%" y="676" width="0.3030%" height="15" fill="rgb(231,43,21)" fg:x="215" fg:w="1"/><text x="65.4015%" y="686.50"></text></g><g><title>getdoc (numpy/ma/extras.py:237) (1 samples, 0.30%)</title><rect x="65.1515%" y="692" width="0.3030%" height="15" fill="rgb(217,131,35)" fg:x="215" fg:w="1"/><text x="65.4015%" y="702.50"></text></g><g><title>doc_note (numpy/ma/core.py:115) (1 samples, 0.30%)</title><rect x="65.1515%" y="708" width="0.3030%" height="15" fill="rgb(221,149,4)" fg:x="215" fg:w="1"/><text x="65.4015%" y="718.50"></text></g><g><title>cleandoc (inspect.py:626) (1 samples, 0.30%)</title><rect x="65.1515%" y="724" width="0.3030%" height="15" fill="rgb(232,170,28)" fg:x="215" fg:w="1"/><text x="65.4015%" y="734.50"></text></g><g><title><module> (numpy/polynomial/__init__.py:1) (2 samples, 0.61%)</title><rect x="65.4545%" y="532" width="0.6061%" height="15" fill="rgb(238,56,10)" fg:x="216" fg:w="2"/><text x="65.7045%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="65.4545%" y="548" width="0.6061%" height="15" fill="rgb(235,196,14)" fg:x="216" fg:w="2"/><text x="65.7045%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="65.4545%" y="564" width="0.6061%" height="15" fill="rgb(216,45,48)" fg:x="216" fg:w="2"/><text x="65.7045%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="65.4545%" y="580" width="0.6061%" height="15" fill="rgb(238,213,17)" fg:x="216" fg:w="2"/><text x="65.7045%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="65.4545%" y="596" width="0.6061%" height="15" fill="rgb(212,13,2)" fg:x="216" fg:w="2"/><text x="65.7045%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="65.4545%" y="612" width="0.6061%" height="15" fill="rgb(240,114,20)" fg:x="216" fg:w="2"/><text x="65.7045%" y="622.50"></text></g><g><title><module> (numpy/polynomial/legendre.py:1) (2 samples, 0.61%)</title><rect x="65.4545%" y="628" width="0.6061%" height="15" fill="rgb(228,41,40)" fg:x="216" fg:w="2"/><text x="65.7045%" y="638.50"></text></g><g><title>Legendre (numpy/polynomial/legendre.py:1619) (1 samples, 0.30%)</title><rect x="65.7576%" y="644" width="0.3030%" height="15" fill="rgb(244,132,35)" fg:x="217" fg:w="1"/><text x="66.0076%" y="654.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="66.3636%" y="788" width="0.3030%" height="15" fill="rgb(253,189,4)" fg:x="219" fg:w="1"/><text x="66.6136%" y="798.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="66.3636%" y="804" width="0.3030%" height="15" fill="rgb(224,37,19)" fg:x="219" fg:w="1"/><text x="66.6136%" y="814.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="66.3636%" y="820" width="0.3030%" height="15" fill="rgb(235,223,18)" fg:x="219" fg:w="1"/><text x="66.6136%" y="830.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="66.3636%" y="836" width="0.3030%" height="15" fill="rgb(235,163,25)" fg:x="219" fg:w="1"/><text x="66.6136%" y="846.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="66.3636%" y="852" width="0.3030%" height="15" fill="rgb(217,145,28)" fg:x="219" fg:w="1"/><text x="66.6136%" y="862.50"></text></g><g><title><module> (numpy/__init__.py:1) (17 samples, 5.15%)</title><rect x="62.1212%" y="404" width="5.1515%" height="15" fill="rgb(223,223,32)" fg:x="205" fg:w="17"/><text x="62.3712%" y="414.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (12 samples, 3.64%)</title><rect x="63.6364%" y="420" width="3.6364%" height="15" fill="rgb(227,189,39)" fg:x="210" fg:w="12"/><text x="63.8864%" y="430.50">_han..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.64%)</title><rect x="63.6364%" y="436" width="3.6364%" height="15" fill="rgb(248,10,22)" fg:x="210" fg:w="12"/><text x="63.8864%" y="446.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 3.64%)</title><rect x="63.6364%" y="452" width="3.6364%" height="15" fill="rgb(248,46,39)" fg:x="210" fg:w="12"/><text x="63.8864%" y="462.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 3.64%)</title><rect x="63.6364%" y="468" width="3.6364%" height="15" fill="rgb(248,113,48)" fg:x="210" fg:w="12"/><text x="63.8864%" y="478.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 3.64%)</title><rect x="63.6364%" y="484" width="3.6364%" height="15" fill="rgb(245,16,25)" fg:x="210" fg:w="12"/><text x="63.8864%" y="494.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 3.64%)</title><rect x="63.6364%" y="500" width="3.6364%" height="15" fill="rgb(249,152,16)" fg:x="210" fg:w="12"/><text x="63.8864%" y="510.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 3.64%)</title><rect x="63.6364%" y="516" width="3.6364%" height="15" fill="rgb(250,16,1)" fg:x="210" fg:w="12"/><text x="63.8864%" y="526.50">_cal..</text></g><g><title><module> (numpy/random/__init__.py:1) (4 samples, 1.21%)</title><rect x="66.0606%" y="532" width="1.2121%" height="15" fill="rgb(249,138,3)" fg:x="218" fg:w="4"/><text x="66.3106%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="66.0606%" y="548" width="1.2121%" height="15" fill="rgb(227,71,41)" fg:x="218" fg:w="4"/><text x="66.3106%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="66.0606%" y="564" width="1.2121%" height="15" fill="rgb(209,184,23)" fg:x="218" fg:w="4"/><text x="66.3106%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="66.0606%" y="580" width="1.2121%" height="15" fill="rgb(223,215,31)" fg:x="218" fg:w="4"/><text x="66.3106%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="66.0606%" y="596" width="1.2121%" height="15" fill="rgb(210,146,28)" fg:x="218" fg:w="4"/><text x="66.3106%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="66.0606%" y="612" width="1.2121%" height="15" fill="rgb(209,183,41)" fg:x="218" fg:w="4"/><text x="66.3106%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="66.0606%" y="628" width="1.2121%" height="15" fill="rgb(209,224,45)" fg:x="218" fg:w="4"/><text x="66.3106%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="66.0606%" y="644" width="1.2121%" height="15" fill="rgb(224,209,51)" fg:x="218" fg:w="4"/><text x="66.3106%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (4 samples, 1.21%)</title><rect x="66.0606%" y="660" width="1.2121%" height="15" fill="rgb(223,17,39)" fg:x="218" fg:w="4"/><text x="66.3106%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="66.0606%" y="676" width="1.2121%" height="15" fill="rgb(234,204,37)" fg:x="218" fg:w="4"/><text x="66.3106%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="66.0606%" y="692" width="1.2121%" height="15" fill="rgb(236,120,5)" fg:x="218" fg:w="4"/><text x="66.3106%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="66.0606%" y="708" width="1.2121%" height="15" fill="rgb(248,97,27)" fg:x="218" fg:w="4"/><text x="66.3106%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 1.21%)</title><rect x="66.0606%" y="724" width="1.2121%" height="15" fill="rgb(240,66,17)" fg:x="218" fg:w="4"/><text x="66.3106%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="66.0606%" y="740" width="1.2121%" height="15" fill="rgb(210,79,3)" fg:x="218" fg:w="4"/><text x="66.3106%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="66.3636%" y="756" width="0.9091%" height="15" fill="rgb(214,176,27)" fg:x="219" fg:w="3"/><text x="66.6136%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="66.3636%" y="772" width="0.9091%" height="15" fill="rgb(235,185,3)" fg:x="219" fg:w="3"/><text x="66.6136%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="66.6667%" y="788" width="0.6061%" height="15" fill="rgb(227,24,12)" fg:x="220" fg:w="2"/><text x="66.9167%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="66.6667%" y="804" width="0.6061%" height="15" fill="rgb(252,169,48)" fg:x="220" fg:w="2"/><text x="66.9167%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="66.6667%" y="820" width="0.6061%" height="15" fill="rgb(212,65,1)" fg:x="220" fg:w="2"/><text x="66.9167%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="66.6667%" y="836" width="0.6061%" height="15" fill="rgb(242,39,24)" fg:x="220" fg:w="2"/><text x="66.9167%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="66.6667%" y="852" width="0.6061%" height="15" fill="rgb(249,32,23)" fg:x="220" fg:w="2"/><text x="66.9167%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="66.6667%" y="868" width="0.6061%" height="15" fill="rgb(251,195,23)" fg:x="220" fg:w="2"/><text x="66.9167%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="66.6667%" y="884" width="0.6061%" height="15" fill="rgb(236,174,8)" fg:x="220" fg:w="2"/><text x="66.9167%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="66.6667%" y="900" width="0.6061%" height="15" fill="rgb(220,197,8)" fg:x="220" fg:w="2"/><text x="66.9167%" y="910.50"></text></g><g><title><module> (secrets.py:1) (2 samples, 0.61%)</title><rect x="66.6667%" y="916" width="0.6061%" height="15" fill="rgb(240,108,37)" fg:x="220" fg:w="2"/><text x="66.9167%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="66.6667%" y="932" width="0.6061%" height="15" fill="rgb(232,176,24)" fg:x="220" fg:w="2"/><text x="66.9167%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="66.6667%" y="948" width="0.6061%" height="15" fill="rgb(243,35,29)" fg:x="220" fg:w="2"/><text x="66.9167%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="66.6667%" y="964" width="0.6061%" height="15" fill="rgb(210,37,18)" fg:x="220" fg:w="2"/><text x="66.9167%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="66.6667%" y="980" width="0.6061%" height="15" fill="rgb(224,184,40)" fg:x="220" fg:w="2"/><text x="66.9167%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="66.6667%" y="996" width="0.6061%" height="15" fill="rgb(236,39,29)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1006.50"></text></g><g><title><module> (hmac.py:1) (2 samples, 0.61%)</title><rect x="66.6667%" y="1012" width="0.6061%" height="15" fill="rgb(232,48,39)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="66.6667%" y="1028" width="0.6061%" height="15" fill="rgb(236,34,42)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="66.6667%" y="1044" width="0.6061%" height="15" fill="rgb(243,106,37)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="66.6667%" y="1060" width="0.6061%" height="15" fill="rgb(218,96,6)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="66.6667%" y="1076" width="0.6061%" height="15" fill="rgb(235,130,12)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="66.6667%" y="1092" width="0.6061%" height="15" fill="rgb(231,95,0)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="66.6667%" y="1108" width="0.6061%" height="15" fill="rgb(228,12,23)" fg:x="220" fg:w="2"/><text x="66.9167%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.91%)</title><rect x="67.5758%" y="756" width="0.9091%" height="15" fill="rgb(216,12,1)" fg:x="223" fg:w="3"/><text x="67.8258%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="67.5758%" y="772" width="0.9091%" height="15" fill="rgb(219,59,3)" fg:x="223" fg:w="3"/><text x="67.8258%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="68.1818%" y="788" width="0.3030%" height="15" fill="rgb(215,208,46)" fg:x="225" fg:w="1"/><text x="68.4318%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="68.1818%" y="804" width="0.3030%" height="15" fill="rgb(254,224,29)" fg:x="225" fg:w="1"/><text x="68.4318%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="68.1818%" y="820" width="0.3030%" height="15" fill="rgb(232,14,29)" fg:x="225" fg:w="1"/><text x="68.4318%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="68.1818%" y="836" width="0.3030%" height="15" fill="rgb(208,45,52)" fg:x="225" fg:w="1"/><text x="68.4318%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="68.1818%" y="852" width="0.3030%" height="15" fill="rgb(234,191,28)" fg:x="225" fg:w="1"/><text x="68.4318%" y="862.50"></text></g><g><title><module> (pyarrow/util.py:20) (1 samples, 0.30%)</title><rect x="68.1818%" y="868" width="0.3030%" height="15" fill="rgb(244,67,43)" fg:x="225" fg:w="1"/><text x="68.4318%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="68.1818%" y="884" width="0.3030%" height="15" fill="rgb(236,189,24)" fg:x="225" fg:w="1"/><text x="68.4318%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="68.1818%" y="900" width="0.3030%" height="15" fill="rgb(239,214,33)" fg:x="225" fg:w="1"/><text x="68.4318%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="68.1818%" y="916" width="0.3030%" height="15" fill="rgb(226,176,41)" fg:x="225" fg:w="1"/><text x="68.4318%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="68.1818%" y="932" width="0.3030%" height="15" fill="rgb(248,47,8)" fg:x="225" fg:w="1"/><text x="68.4318%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="68.1818%" y="948" width="0.3030%" height="15" fill="rgb(218,81,44)" fg:x="225" fg:w="1"/><text x="68.4318%" y="958.50"></text></g><g><title><module> (socket.py:4) (1 samples, 0.30%)</title><rect x="68.1818%" y="964" width="0.3030%" height="15" fill="rgb(213,98,6)" fg:x="225" fg:w="1"/><text x="68.4318%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="68.1818%" y="980" width="0.3030%" height="15" fill="rgb(222,85,22)" fg:x="225" fg:w="1"/><text x="68.4318%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="68.1818%" y="996" width="0.3030%" height="15" fill="rgb(239,46,39)" fg:x="225" fg:w="1"/><text x="68.4318%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="68.1818%" y="1012" width="0.3030%" height="15" fill="rgb(237,12,29)" fg:x="225" fg:w="1"/><text x="68.4318%" y="1022.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="68.1818%" y="1028" width="0.3030%" height="15" fill="rgb(214,77,8)" fg:x="225" fg:w="1"/><text x="68.4318%" y="1038.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="68.1818%" y="1044" width="0.3030%" height="15" fill="rgb(217,168,37)" fg:x="225" fg:w="1"/><text x="68.4318%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="68.1818%" y="1060" width="0.3030%" height="15" fill="rgb(221,217,23)" fg:x="225" fg:w="1"/><text x="68.4318%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.24%)</title><rect x="67.2727%" y="580" width="4.2424%" height="15" fill="rgb(243,229,36)" fg:x="222" fg:w="14"/><text x="67.5227%" y="590.50">_call..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (14 samples, 4.24%)</title><rect x="67.2727%" y="596" width="4.2424%" height="15" fill="rgb(251,163,40)" fg:x="222" fg:w="14"/><text x="67.5227%" y="606.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.24%)</title><rect x="67.2727%" y="612" width="4.2424%" height="15" fill="rgb(237,222,12)" fg:x="222" fg:w="14"/><text x="67.5227%" y="622.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.24%)</title><rect x="67.2727%" y="628" width="4.2424%" height="15" fill="rgb(248,132,6)" fg:x="222" fg:w="14"/><text x="67.5227%" y="638.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.24%)</title><rect x="67.2727%" y="644" width="4.2424%" height="15" fill="rgb(227,167,50)" fg:x="222" fg:w="14"/><text x="67.5227%" y="654.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.24%)</title><rect x="67.2727%" y="660" width="4.2424%" height="15" fill="rgb(242,84,37)" fg:x="222" fg:w="14"/><text x="67.5227%" y="670.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.24%)</title><rect x="67.2727%" y="676" width="4.2424%" height="15" fill="rgb(212,4,50)" fg:x="222" fg:w="14"/><text x="67.5227%" y="686.50">_call..</text></g><g><title><module> (pyarrow/__init__.py:20) (14 samples, 4.24%)</title><rect x="67.2727%" y="692" width="4.2424%" height="15" fill="rgb(230,228,32)" fg:x="222" fg:w="14"/><text x="67.5227%" y="702.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 3.94%)</title><rect x="67.5758%" y="708" width="3.9394%" height="15" fill="rgb(248,217,23)" fg:x="223" fg:w="13"/><text x="67.8258%" y="718.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 3.94%)</title><rect x="67.5758%" y="724" width="3.9394%" height="15" fill="rgb(238,197,32)" fg:x="223" fg:w="13"/><text x="67.8258%" y="734.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 3.94%)</title><rect x="67.5758%" y="740" width="3.9394%" height="15" fill="rgb(236,106,1)" fg:x="223" fg:w="13"/><text x="67.8258%" y="750.50">_loa..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (10 samples, 3.03%)</title><rect x="68.4848%" y="756" width="3.0303%" height="15" fill="rgb(219,228,13)" fg:x="226" fg:w="10"/><text x="68.7348%" y="766.50">mod..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (10 samples, 3.03%)</title><rect x="68.4848%" y="772" width="3.0303%" height="15" fill="rgb(238,30,35)" fg:x="226" fg:w="10"/><text x="68.7348%" y="782.50">cre..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.03%)</title><rect x="68.4848%" y="788" width="3.0303%" height="15" fill="rgb(236,70,23)" fg:x="226" fg:w="10"/><text x="68.7348%" y="798.50">_ca..</text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="71.5152%" y="596" width="0.3030%" height="15" fill="rgb(249,104,48)" fg:x="236" fg:w="1"/><text x="71.7652%" y="606.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (16 samples, 4.85%)</title><rect x="67.2727%" y="500" width="4.8485%" height="15" fill="rgb(254,117,50)" fg:x="222" fg:w="16"/><text x="67.5227%" y="510.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 4.85%)</title><rect x="67.2727%" y="516" width="4.8485%" height="15" fill="rgb(223,152,4)" fg:x="222" fg:w="16"/><text x="67.5227%" y="526.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 4.85%)</title><rect x="67.2727%" y="532" width="4.8485%" height="15" fill="rgb(245,6,2)" fg:x="222" fg:w="16"/><text x="67.5227%" y="542.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 4.85%)</title><rect x="67.2727%" y="548" width="4.8485%" height="15" fill="rgb(249,150,24)" fg:x="222" fg:w="16"/><text x="67.5227%" y="558.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 4.85%)</title><rect x="67.2727%" y="564" width="4.8485%" height="15" fill="rgb(228,185,42)" fg:x="222" fg:w="16"/><text x="67.5227%" y="574.50">exec_m..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="71.5152%" y="580" width="0.6061%" height="15" fill="rgb(226,39,33)" fg:x="236" fg:w="2"/><text x="71.7652%" y="590.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.30%)</title><rect x="71.8182%" y="596" width="0.3030%" height="15" fill="rgb(221,166,19)" fg:x="237" fg:w="1"/><text x="72.0682%" y="606.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="71.8182%" y="612" width="0.3030%" height="15" fill="rgb(209,109,2)" fg:x="237" fg:w="1"/><text x="72.0682%" y="622.50"></text></g><g><title><module> (dateutil/tz/__init__.py:2) (1 samples, 0.30%)</title><rect x="72.4242%" y="1476" width="0.3030%" height="15" fill="rgb(252,216,26)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="72.4242%" y="1492" width="0.3030%" height="15" fill="rgb(227,173,36)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="72.4242%" y="1508" width="0.3030%" height="15" fill="rgb(209,90,7)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="72.4242%" y="1524" width="0.3030%" height="15" fill="rgb(250,194,11)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="72.4242%" y="1540" width="0.3030%" height="15" fill="rgb(220,72,50)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="72.4242%" y="1556" width="0.3030%" height="15" fill="rgb(222,106,48)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1566.50"></text></g><g><title><module> (dateutil/tz/tz.py:2) (1 samples, 0.30%)</title><rect x="72.4242%" y="1572" width="0.3030%" height="15" fill="rgb(216,220,45)" fg:x="239" fg:w="1"/><text x="72.6742%" y="1582.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="72.4242%" y="1284" width="0.6061%" height="15" fill="rgb(234,112,18)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="72.4242%" y="1300" width="0.6061%" height="15" fill="rgb(206,179,9)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="72.4242%" y="1316" width="0.6061%" height="15" fill="rgb(215,115,40)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="72.4242%" y="1332" width="0.6061%" height="15" fill="rgb(222,69,34)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="72.4242%" y="1348" width="0.6061%" height="15" fill="rgb(209,161,10)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="72.4242%" y="1364" width="0.6061%" height="15" fill="rgb(217,6,38)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="72.4242%" y="1380" width="0.6061%" height="15" fill="rgb(229,229,48)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="72.4242%" y="1396" width="0.6061%" height="15" fill="rgb(225,21,28)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="72.4242%" y="1412" width="0.6061%" height="15" fill="rgb(206,33,13)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="72.4242%" y="1428" width="0.6061%" height="15" fill="rgb(242,178,17)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="72.4242%" y="1444" width="0.6061%" height="15" fill="rgb(220,162,5)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="72.4242%" y="1460" width="0.6061%" height="15" fill="rgb(210,33,43)" fg:x="239" fg:w="2"/><text x="72.6742%" y="1470.50"></text></g><g><title><module> (zoneinfo/__init__.py:1) (1 samples, 0.30%)</title><rect x="72.7273%" y="1476" width="0.3030%" height="15" fill="rgb(216,116,54)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="72.7273%" y="1492" width="0.3030%" height="15" fill="rgb(249,92,24)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="72.7273%" y="1508" width="0.3030%" height="15" fill="rgb(231,189,14)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="72.7273%" y="1524" width="0.3030%" height="15" fill="rgb(230,8,41)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1534.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="72.7273%" y="1540" width="0.3030%" height="15" fill="rgb(249,7,27)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1550.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="72.7273%" y="1556" width="0.3030%" height="15" fill="rgb(232,86,5)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="72.7273%" y="1572" width="0.3030%" height="15" fill="rgb(224,175,18)" fg:x="240" fg:w="1"/><text x="72.9773%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="72.4242%" y="996" width="0.9091%" height="15" fill="rgb(220,129,12)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="72.4242%" y="1012" width="0.9091%" height="15" fill="rgb(210,19,36)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="72.4242%" y="1028" width="0.9091%" height="15" fill="rgb(219,96,14)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.91%)</title><rect x="72.4242%" y="1044" width="0.9091%" height="15" fill="rgb(249,106,1)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="72.4242%" y="1060" width="0.9091%" height="15" fill="rgb(249,155,20)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="72.4242%" y="1076" width="0.9091%" height="15" fill="rgb(244,168,9)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="72.4242%" y="1092" width="0.9091%" height="15" fill="rgb(216,23,50)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="72.4242%" y="1108" width="0.9091%" height="15" fill="rgb(224,219,20)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.91%)</title><rect x="72.4242%" y="1124" width="0.9091%" height="15" fill="rgb(222,156,15)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="72.4242%" y="1140" width="0.9091%" height="15" fill="rgb(231,97,17)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="72.4242%" y="1156" width="0.9091%" height="15" fill="rgb(218,70,48)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="72.4242%" y="1172" width="0.9091%" height="15" fill="rgb(212,196,52)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="72.4242%" y="1188" width="0.9091%" height="15" fill="rgb(243,203,18)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.91%)</title><rect x="72.4242%" y="1204" width="0.9091%" height="15" fill="rgb(252,125,41)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="72.4242%" y="1220" width="0.9091%" height="15" fill="rgb(223,180,33)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="72.4242%" y="1236" width="0.9091%" height="15" fill="rgb(254,159,46)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="72.4242%" y="1252" width="0.9091%" height="15" fill="rgb(254,38,10)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="72.4242%" y="1268" width="0.9091%" height="15" fill="rgb(208,217,32)" fg:x="239" fg:w="3"/><text x="72.6742%" y="1278.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="73.0303%" y="1284" width="0.3030%" height="15" fill="rgb(221,120,13)" fg:x="241" fg:w="1"/><text x="73.2803%" y="1294.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="73.0303%" y="1300" width="0.3030%" height="15" fill="rgb(246,54,52)" fg:x="241" fg:w="1"/><text x="73.2803%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.0303%" y="1316" width="0.3030%" height="15" fill="rgb(242,34,25)" fg:x="241" fg:w="1"/><text x="73.2803%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 1.21%)</title><rect x="72.4242%" y="740" width="1.2121%" height="15" fill="rgb(247,209,9)" fg:x="239" fg:w="4"/><text x="72.6742%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="72.4242%" y="756" width="1.2121%" height="15" fill="rgb(228,71,26)" fg:x="239" fg:w="4"/><text x="72.6742%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="72.4242%" y="772" width="1.2121%" height="15" fill="rgb(222,145,49)" fg:x="239" fg:w="4"/><text x="72.6742%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="72.4242%" y="788" width="1.2121%" height="15" fill="rgb(218,121,17)" fg:x="239" fg:w="4"/><text x="72.6742%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="72.4242%" y="804" width="1.2121%" height="15" fill="rgb(244,50,7)" fg:x="239" fg:w="4"/><text x="72.6742%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 1.21%)</title><rect x="72.4242%" y="820" width="1.2121%" height="15" fill="rgb(246,229,37)" fg:x="239" fg:w="4"/><text x="72.6742%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="72.4242%" y="836" width="1.2121%" height="15" fill="rgb(225,18,5)" fg:x="239" fg:w="4"/><text x="72.6742%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="72.4242%" y="852" width="1.2121%" height="15" fill="rgb(213,204,8)" fg:x="239" fg:w="4"/><text x="72.6742%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="72.4242%" y="868" width="1.2121%" height="15" fill="rgb(238,103,6)" fg:x="239" fg:w="4"/><text x="72.6742%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="72.4242%" y="884" width="1.2121%" height="15" fill="rgb(222,25,35)" fg:x="239" fg:w="4"/><text x="72.6742%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="72.4242%" y="900" width="1.2121%" height="15" fill="rgb(213,203,35)" fg:x="239" fg:w="4"/><text x="72.6742%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="72.4242%" y="916" width="1.2121%" height="15" fill="rgb(221,79,53)" fg:x="239" fg:w="4"/><text x="72.6742%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="72.4242%" y="932" width="1.2121%" height="15" fill="rgb(243,200,35)" fg:x="239" fg:w="4"/><text x="72.6742%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="72.4242%" y="948" width="1.2121%" height="15" fill="rgb(248,60,25)" fg:x="239" fg:w="4"/><text x="72.6742%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="72.4242%" y="964" width="1.2121%" height="15" fill="rgb(227,53,46)" fg:x="239" fg:w="4"/><text x="72.6742%" y="974.50"></text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (4 samples, 1.21%)</title><rect x="72.4242%" y="980" width="1.2121%" height="15" fill="rgb(216,120,32)" fg:x="239" fg:w="4"/><text x="72.6742%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="73.3333%" y="996" width="0.3030%" height="15" fill="rgb(220,134,1)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.3333%" y="1012" width="0.3030%" height="15" fill="rgb(237,168,5)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="73.3333%" y="1028" width="0.3030%" height="15" fill="rgb(231,100,33)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="73.3333%" y="1044" width="0.3030%" height="15" fill="rgb(236,177,47)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="73.3333%" y="1060" width="0.3030%" height="15" fill="rgb(235,7,49)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="73.3333%" y="1076" width="0.3030%" height="15" fill="rgb(232,119,22)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="73.3333%" y="1092" width="0.3030%" height="15" fill="rgb(254,73,53)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.3333%" y="1108" width="0.3030%" height="15" fill="rgb(251,35,20)" fg:x="242" fg:w="1"/><text x="73.5833%" y="1118.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (5 samples, 1.52%)</title><rect x="72.4242%" y="596" width="1.5152%" height="15" fill="rgb(241,119,20)" fg:x="239" fg:w="5"/><text x="72.6742%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="72.4242%" y="612" width="1.5152%" height="15" fill="rgb(207,102,14)" fg:x="239" fg:w="5"/><text x="72.6742%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="72.4242%" y="628" width="1.5152%" height="15" fill="rgb(248,201,50)" fg:x="239" fg:w="5"/><text x="72.6742%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="72.4242%" y="644" width="1.5152%" height="15" fill="rgb(222,185,44)" fg:x="239" fg:w="5"/><text x="72.6742%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (5 samples, 1.52%)</title><rect x="72.4242%" y="660" width="1.5152%" height="15" fill="rgb(218,107,18)" fg:x="239" fg:w="5"/><text x="72.6742%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="72.4242%" y="676" width="1.5152%" height="15" fill="rgb(237,177,39)" fg:x="239" fg:w="5"/><text x="72.6742%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="72.4242%" y="692" width="1.5152%" height="15" fill="rgb(246,69,6)" fg:x="239" fg:w="5"/><text x="72.6742%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="72.4242%" y="708" width="1.5152%" height="15" fill="rgb(234,208,37)" fg:x="239" fg:w="5"/><text x="72.6742%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="72.4242%" y="724" width="1.5152%" height="15" fill="rgb(225,4,6)" fg:x="239" fg:w="5"/><text x="72.6742%" y="734.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="73.6364%" y="740" width="0.3030%" height="15" fill="rgb(233,45,0)" fg:x="243" fg:w="1"/><text x="73.8864%" y="750.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="73.6364%" y="756" width="0.3030%" height="15" fill="rgb(226,136,5)" fg:x="243" fg:w="1"/><text x="73.8864%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.6364%" y="772" width="0.3030%" height="15" fill="rgb(211,91,47)" fg:x="243" fg:w="1"/><text x="73.8864%" y="782.50"></text></g><g><title><module> (pandas/core/algorithms.py:1) (1 samples, 0.30%)</title><rect x="73.9394%" y="596" width="0.3030%" height="15" fill="rgb(242,88,51)" fg:x="244" fg:w="1"/><text x="74.1894%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="73.9394%" y="612" width="0.3030%" height="15" fill="rgb(230,91,28)" fg:x="244" fg:w="1"/><text x="74.1894%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="73.9394%" y="628" width="0.3030%" height="15" fill="rgb(254,186,29)" fg:x="244" fg:w="1"/><text x="74.1894%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="73.9394%" y="644" width="0.3030%" height="15" fill="rgb(238,6,4)" fg:x="244" fg:w="1"/><text x="74.1894%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="73.9394%" y="660" width="0.3030%" height="15" fill="rgb(221,151,16)" fg:x="244" fg:w="1"/><text x="74.1894%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.9394%" y="676" width="0.3030%" height="15" fill="rgb(251,143,52)" fg:x="244" fg:w="1"/><text x="74.1894%" y="686.50"></text></g><g><title><module> (pandas/core/array_algos/take.py:1) (1 samples, 0.30%)</title><rect x="73.9394%" y="692" width="0.3030%" height="15" fill="rgb(206,90,15)" fg:x="244" fg:w="1"/><text x="74.1894%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="73.9394%" y="708" width="0.3030%" height="15" fill="rgb(218,35,8)" fg:x="244" fg:w="1"/><text x="74.1894%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="73.9394%" y="724" width="0.3030%" height="15" fill="rgb(239,215,6)" fg:x="244" fg:w="1"/><text x="74.1894%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="73.9394%" y="740" width="0.3030%" height="15" fill="rgb(245,116,39)" fg:x="244" fg:w="1"/><text x="74.1894%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="73.9394%" y="756" width="0.3030%" height="15" fill="rgb(242,65,28)" fg:x="244" fg:w="1"/><text x="74.1894%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="73.9394%" y="772" width="0.3030%" height="15" fill="rgb(252,132,53)" fg:x="244" fg:w="1"/><text x="74.1894%" y="782.50"></text></g><g><title><module> (pandas/core/construction.py:1) (1 samples, 0.30%)</title><rect x="73.9394%" y="788" width="0.3030%" height="15" fill="rgb(224,159,50)" fg:x="244" fg:w="1"/><text x="74.1894%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="73.9394%" y="804" width="0.3030%" height="15" fill="rgb(224,93,4)" fg:x="244" fg:w="1"/><text x="74.1894%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="73.9394%" y="820" width="0.3030%" height="15" fill="rgb(208,81,34)" fg:x="244" fg:w="1"/><text x="74.1894%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="73.9394%" y="836" width="0.3030%" height="15" fill="rgb(233,92,54)" fg:x="244" fg:w="1"/><text x="74.1894%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="73.9394%" y="852" width="0.3030%" height="15" fill="rgb(237,21,14)" fg:x="244" fg:w="1"/><text x="74.1894%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="73.9394%" y="868" width="0.3030%" height="15" fill="rgb(249,128,51)" fg:x="244" fg:w="1"/><text x="74.1894%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="73.9394%" y="884" width="0.3030%" height="15" fill="rgb(223,129,24)" fg:x="244" fg:w="1"/><text x="74.1894%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="74.2424%" y="996" width="0.3030%" height="15" fill="rgb(231,168,25)" fg:x="245" fg:w="1"/><text x="74.4924%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="74.2424%" y="1012" width="0.3030%" height="15" fill="rgb(224,39,20)" fg:x="245" fg:w="1"/><text x="74.4924%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="74.2424%" y="1028" width="0.3030%" height="15" fill="rgb(225,152,53)" fg:x="245" fg:w="1"/><text x="74.4924%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.30%)</title><rect x="74.2424%" y="1044" width="0.3030%" height="15" fill="rgb(252,17,24)" fg:x="245" fg:w="1"/><text x="74.4924%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="74.2424%" y="1060" width="0.3030%" height="15" fill="rgb(250,114,30)" fg:x="245" fg:w="1"/><text x="74.4924%" y="1070.50"></text></g><g><title>_parse_summary (pyarrow/vendored/docscrape.py:362) (1 samples, 0.30%)</title><rect x="74.8485%" y="1092" width="0.3030%" height="15" fill="rgb(229,5,4)" fg:x="247" fg:w="1"/><text x="75.0985%" y="1102.50"></text></g><g><title>_is_at_section (pyarrow/vendored/docscrape.py:174) (1 samples, 0.30%)</title><rect x="74.8485%" y="1108" width="0.3030%" height="15" fill="rgb(225,176,49)" fg:x="247" fg:w="1"/><text x="75.0985%" y="1118.50"></text></g><g><title>_parse (pyarrow/vendored/docscrape.py:384) (2 samples, 0.61%)</title><rect x="74.8485%" y="1076" width="0.6061%" height="15" fill="rgb(224,221,49)" fg:x="247" fg:w="2"/><text x="75.0985%" y="1086.50"></text></g><g><title>_read_sections (pyarrow/vendored/docscrape.py:216) (1 samples, 0.30%)</title><rect x="75.1515%" y="1092" width="0.3030%" height="15" fill="rgb(253,169,27)" fg:x="248" fg:w="1"/><text x="75.4015%" y="1102.50"></text></g><g><title>_strip (pyarrow/vendored/docscrape.py:192) (1 samples, 0.30%)</title><rect x="75.1515%" y="1108" width="0.3030%" height="15" fill="rgb(211,206,16)" fg:x="248" fg:w="1"/><text x="75.4015%" y="1118.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="75.4545%" y="1076" width="0.3030%" height="15" fill="rgb(244,87,35)" fg:x="249" fg:w="1"/><text x="75.7045%" y="1086.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.30%)</title><rect x="75.4545%" y="1092" width="0.3030%" height="15" fill="rgb(246,28,10)" fg:x="249" fg:w="1"/><text x="75.7045%" y="1102.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (4 samples, 1.21%)</title><rect x="74.8485%" y="1044" width="1.2121%" height="15" fill="rgb(229,12,44)" fg:x="247" fg:w="4"/><text x="75.0985%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (4 samples, 1.21%)</title><rect x="74.8485%" y="1060" width="1.2121%" height="15" fill="rgb(210,145,37)" fg:x="247" fg:w="4"/><text x="75.0985%" y="1070.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.30%)</title><rect x="75.7576%" y="1076" width="0.3030%" height="15" fill="rgb(227,112,52)" fg:x="250" fg:w="1"/><text x="76.0076%" y="1086.50"></text></g><g><title>_deepcopy_dict (copy.py:226) (1 samples, 0.30%)</title><rect x="75.7576%" y="1092" width="0.3030%" height="15" fill="rgb(238,155,34)" fg:x="250" fg:w="1"/><text x="76.0076%" y="1102.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.30%)</title><rect x="75.7576%" y="1108" width="0.3030%" height="15" fill="rgb(239,226,36)" fg:x="250" fg:w="1"/><text x="76.0076%" y="1118.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (7 samples, 2.12%)</title><rect x="74.2424%" y="692" width="2.1212%" height="15" fill="rgb(230,16,23)" fg:x="245" fg:w="7"/><text x="74.4924%" y="702.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="74.2424%" y="708" width="2.1212%" height="15" fill="rgb(236,171,36)" fg:x="245" fg:w="7"/><text x="74.4924%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="74.2424%" y="724" width="2.1212%" height="15" fill="rgb(221,22,14)" fg:x="245" fg:w="7"/><text x="74.4924%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="74.2424%" y="740" width="2.1212%" height="15" fill="rgb(242,43,11)" fg:x="245" fg:w="7"/><text x="74.4924%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="74.2424%" y="756" width="2.1212%" height="15" fill="rgb(232,69,23)" fg:x="245" fg:w="7"/><text x="74.4924%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="74.2424%" y="772" width="2.1212%" height="15" fill="rgb(216,180,54)" fg:x="245" fg:w="7"/><text x="74.4924%" y="782.50">_..</text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (7 samples, 2.12%)</title><rect x="74.2424%" y="788" width="2.1212%" height="15" fill="rgb(216,5,24)" fg:x="245" fg:w="7"/><text x="74.4924%" y="798.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="74.2424%" y="804" width="2.1212%" height="15" fill="rgb(225,89,9)" fg:x="245" fg:w="7"/><text x="74.4924%" y="814.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="74.2424%" y="820" width="2.1212%" height="15" fill="rgb(243,75,33)" fg:x="245" fg:w="7"/><text x="74.4924%" y="830.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="74.2424%" y="836" width="2.1212%" height="15" fill="rgb(247,141,45)" fg:x="245" fg:w="7"/><text x="74.4924%" y="846.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="74.2424%" y="852" width="2.1212%" height="15" fill="rgb(232,177,36)" fg:x="245" fg:w="7"/><text x="74.4924%" y="862.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="74.2424%" y="868" width="2.1212%" height="15" fill="rgb(219,125,36)" fg:x="245" fg:w="7"/><text x="74.4924%" y="878.50">_..</text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (7 samples, 2.12%)</title><rect x="74.2424%" y="884" width="2.1212%" height="15" fill="rgb(227,94,9)" fg:x="245" fg:w="7"/><text x="74.4924%" y="894.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.12%)</title><rect x="74.2424%" y="900" width="2.1212%" height="15" fill="rgb(240,34,52)" fg:x="245" fg:w="7"/><text x="74.4924%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.12%)</title><rect x="74.2424%" y="916" width="2.1212%" height="15" fill="rgb(216,45,12)" fg:x="245" fg:w="7"/><text x="74.4924%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.12%)</title><rect x="74.2424%" y="932" width="2.1212%" height="15" fill="rgb(246,21,19)" fg:x="245" fg:w="7"/><text x="74.4924%" y="942.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.12%)</title><rect x="74.2424%" y="948" width="2.1212%" height="15" fill="rgb(213,98,42)" fg:x="245" fg:w="7"/><text x="74.4924%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.12%)</title><rect x="74.2424%" y="964" width="2.1212%" height="15" fill="rgb(250,136,47)" fg:x="245" fg:w="7"/><text x="74.4924%" y="974.50">_..</text></g><g><title><module> (pyarrow/compute.py:18) (7 samples, 2.12%)</title><rect x="74.2424%" y="980" width="2.1212%" height="15" fill="rgb(251,124,27)" fg:x="245" fg:w="7"/><text x="74.4924%" y="990.50"><..</text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (6 samples, 1.82%)</title><rect x="74.5455%" y="996" width="1.8182%" height="15" fill="rgb(229,180,14)" fg:x="246" fg:w="6"/><text x="74.7955%" y="1006.50">_..</text></g><g><title>_wrap_function (pyarrow/compute.py:290) (5 samples, 1.52%)</title><rect x="74.8485%" y="1012" width="1.5152%" height="15" fill="rgb(245,216,25)" fg:x="247" fg:w="5"/><text x="75.0985%" y="1022.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (5 samples, 1.52%)</title><rect x="74.8485%" y="1028" width="1.5152%" height="15" fill="rgb(251,43,5)" fg:x="247" fg:w="5"/><text x="75.0985%" y="1038.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="76.0606%" y="1044" width="0.3030%" height="15" fill="rgb(250,128,24)" fg:x="251" fg:w="1"/><text x="76.3106%" y="1054.50"></text></g><g><title><module> (pandas/core/arrays/categorical.py:1) (2 samples, 0.61%)</title><rect x="76.3636%" y="692" width="0.6061%" height="15" fill="rgb(217,117,27)" fg:x="252" fg:w="2"/><text x="76.6136%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="76.3636%" y="708" width="0.6061%" height="15" fill="rgb(245,147,4)" fg:x="252" fg:w="2"/><text x="76.6136%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="76.3636%" y="724" width="0.6061%" height="15" fill="rgb(242,201,35)" fg:x="252" fg:w="2"/><text x="76.6136%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="76.3636%" y="740" width="0.6061%" height="15" fill="rgb(218,181,1)" fg:x="252" fg:w="2"/><text x="76.6136%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="76.3636%" y="756" width="0.6061%" height="15" fill="rgb(222,6,29)" fg:x="252" fg:w="2"/><text x="76.6136%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="76.3636%" y="772" width="0.6061%" height="15" fill="rgb(208,186,3)" fg:x="252" fg:w="2"/><text x="76.6136%" y="782.50"></text></g><g><title><module> (pandas/core/base.py:1) (2 samples, 0.61%)</title><rect x="76.3636%" y="788" width="0.6061%" height="15" fill="rgb(216,36,26)" fg:x="252" fg:w="2"/><text x="76.6136%" y="798.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (10 samples, 3.03%)</title><rect x="74.2424%" y="596" width="3.0303%" height="15" fill="rgb(248,201,23)" fg:x="245" fg:w="10"/><text x="74.4924%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.03%)</title><rect x="74.2424%" y="612" width="3.0303%" height="15" fill="rgb(251,170,31)" fg:x="245" fg:w="10"/><text x="74.4924%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.03%)</title><rect x="74.2424%" y="628" width="3.0303%" height="15" fill="rgb(207,110,25)" fg:x="245" fg:w="10"/><text x="74.4924%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.03%)</title><rect x="74.2424%" y="644" width="3.0303%" height="15" fill="rgb(250,54,15)" fg:x="245" fg:w="10"/><text x="74.4924%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.03%)</title><rect x="74.2424%" y="660" width="3.0303%" height="15" fill="rgb(227,68,33)" fg:x="245" fg:w="10"/><text x="74.4924%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.03%)</title><rect x="74.2424%" y="676" width="3.0303%" height="15" fill="rgb(238,34,41)" fg:x="245" fg:w="10"/><text x="74.4924%" y="686.50">_ca..</text></g><g><title><module> (pandas/core/arrays/datetimes.py:1) (1 samples, 0.30%)</title><rect x="76.9697%" y="692" width="0.3030%" height="15" fill="rgb(220,11,15)" fg:x="254" fg:w="1"/><text x="77.2197%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="76.9697%" y="708" width="0.3030%" height="15" fill="rgb(246,111,35)" fg:x="254" fg:w="1"/><text x="77.2197%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="76.9697%" y="724" width="0.3030%" height="15" fill="rgb(209,88,53)" fg:x="254" fg:w="1"/><text x="77.2197%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="76.9697%" y="740" width="0.3030%" height="15" fill="rgb(231,185,47)" fg:x="254" fg:w="1"/><text x="77.2197%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="76.9697%" y="756" width="0.3030%" height="15" fill="rgb(233,154,1)" fg:x="254" fg:w="1"/><text x="77.2197%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="76.9697%" y="772" width="0.3030%" height="15" fill="rgb(225,15,46)" fg:x="254" fg:w="1"/><text x="77.2197%" y="782.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="76.9697%" y="788" width="0.3030%" height="15" fill="rgb(211,135,41)" fg:x="254" fg:w="1"/><text x="77.2197%" y="798.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.30%)</title><rect x="77.5758%" y="820" width="0.3030%" height="15" fill="rgb(208,54,0)" fg:x="256" fg:w="1"/><text x="77.8258%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="77.5758%" y="836" width="0.3030%" height="15" fill="rgb(244,136,14)" fg:x="256" fg:w="1"/><text x="77.8258%" y="846.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (2 samples, 0.61%)</title><rect x="77.5758%" y="804" width="0.6061%" height="15" fill="rgb(241,56,14)" fg:x="256" fg:w="2"/><text x="77.8258%" y="814.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.30%)</title><rect x="77.8788%" y="820" width="0.3030%" height="15" fill="rgb(205,80,24)" fg:x="257" fg:w="1"/><text x="78.1288%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="77.8788%" y="836" width="0.3030%" height="15" fill="rgb(220,57,4)" fg:x="257" fg:w="1"/><text x="78.1288%" y="846.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.30%)</title><rect x="77.8788%" y="852" width="0.3030%" height="15" fill="rgb(226,193,50)" fg:x="257" fg:w="1"/><text x="78.1288%" y="862.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (3 samples, 0.91%)</title><rect x="78.1818%" y="900" width="0.9091%" height="15" fill="rgb(231,168,22)" fg:x="258" fg:w="3"/><text x="78.4318%" y="910.50"></text></g><g><title><module> (pandas/core/internals/api.py:1) (2 samples, 0.61%)</title><rect x="79.0909%" y="1076" width="0.6061%" height="15" fill="rgb(254,215,14)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="79.0909%" y="1092" width="0.6061%" height="15" fill="rgb(211,115,16)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="79.0909%" y="1108" width="0.6061%" height="15" fill="rgb(236,210,16)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="79.0909%" y="1124" width="0.6061%" height="15" fill="rgb(221,94,12)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="79.0909%" y="1140" width="0.6061%" height="15" fill="rgb(235,218,49)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="79.0909%" y="1156" width="0.6061%" height="15" fill="rgb(217,114,14)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1166.50"></text></g><g><title><module> (pandas/core/internals/blocks.py:1) (2 samples, 0.61%)</title><rect x="79.0909%" y="1172" width="0.6061%" height="15" fill="rgb(216,145,22)" fg:x="261" fg:w="2"/><text x="79.3409%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="79.3939%" y="1188" width="0.3030%" height="15" fill="rgb(217,112,39)" fg:x="262" fg:w="1"/><text x="79.6439%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="79.3939%" y="1204" width="0.3030%" height="15" fill="rgb(225,85,32)" fg:x="262" fg:w="1"/><text x="79.6439%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="79.3939%" y="1220" width="0.3030%" height="15" fill="rgb(245,209,47)" fg:x="262" fg:w="1"/><text x="79.6439%" y="1230.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.30%)</title><rect x="79.3939%" y="1236" width="0.3030%" height="15" fill="rgb(218,220,15)" fg:x="262" fg:w="1"/><text x="79.6439%" y="1246.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.30%)</title><rect x="79.3939%" y="1252" width="0.3030%" height="15" fill="rgb(222,202,31)" fg:x="262" fg:w="1"/><text x="79.6439%" y="1262.50"></text></g><g><title><module> (pandas/core/internals/__init__.py:1) (3 samples, 0.91%)</title><rect x="79.0909%" y="980" width="0.9091%" height="15" fill="rgb(243,203,4)" fg:x="261" fg:w="3"/><text x="79.3409%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="79.0909%" y="996" width="0.9091%" height="15" fill="rgb(237,92,17)" fg:x="261" fg:w="3"/><text x="79.3409%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="79.0909%" y="1012" width="0.9091%" height="15" fill="rgb(231,119,7)" fg:x="261" fg:w="3"/><text x="79.3409%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="79.0909%" y="1028" width="0.9091%" height="15" fill="rgb(237,82,41)" fg:x="261" fg:w="3"/><text x="79.3409%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="79.0909%" y="1044" width="0.9091%" height="15" fill="rgb(226,81,48)" fg:x="261" fg:w="3"/><text x="79.3409%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="79.0909%" y="1060" width="0.9091%" height="15" fill="rgb(234,70,51)" fg:x="261" fg:w="3"/><text x="79.3409%" y="1070.50"></text></g><g><title><module> (pandas/core/internals/array_manager.py:1) (1 samples, 0.30%)</title><rect x="79.6970%" y="1076" width="0.3030%" height="15" fill="rgb(251,86,4)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="79.6970%" y="1092" width="0.3030%" height="15" fill="rgb(244,144,28)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="79.6970%" y="1108" width="0.3030%" height="15" fill="rgb(232,161,39)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="79.6970%" y="1124" width="0.3030%" height="15" fill="rgb(247,34,51)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="79.6970%" y="1140" width="0.3030%" height="15" fill="rgb(225,132,2)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="79.6970%" y="1156" width="0.3030%" height="15" fill="rgb(209,159,44)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="79.6970%" y="1172" width="0.3030%" height="15" fill="rgb(251,214,1)" fg:x="263" fg:w="1"/><text x="79.9470%" y="1182.50"></text></g><g><title><module> (pandas/core/window/ewm.py:1) (1 samples, 0.30%)</title><rect x="80.0000%" y="1076" width="0.3030%" height="15" fill="rgb(247,84,47)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="80.0000%" y="1092" width="0.3030%" height="15" fill="rgb(240,111,43)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="80.0000%" y="1108" width="0.3030%" height="15" fill="rgb(215,214,35)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="80.0000%" y="1124" width="0.3030%" height="15" fill="rgb(248,207,23)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="80.0000%" y="1140" width="0.3030%" height="15" fill="rgb(214,186,4)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="80.0000%" y="1156" width="0.3030%" height="15" fill="rgb(220,133,22)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="80.0000%" y="1172" width="0.3030%" height="15" fill="rgb(239,134,19)" fg:x="264" fg:w="1"/><text x="80.2500%" y="1182.50"></text></g><g><title><module> (pandas/core/generic.py:2) (8 samples, 2.42%)</title><rect x="78.1818%" y="884" width="2.4242%" height="15" fill="rgb(250,140,9)" fg:x="258" fg:w="8"/><text x="78.4318%" y="894.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="79.0909%" y="900" width="1.5152%" height="15" fill="rgb(225,59,14)" fg:x="261" fg:w="5"/><text x="79.3409%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="79.0909%" y="916" width="1.5152%" height="15" fill="rgb(214,152,51)" fg:x="261" fg:w="5"/><text x="79.3409%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="79.0909%" y="932" width="1.5152%" height="15" fill="rgb(251,227,43)" fg:x="261" fg:w="5"/><text x="79.3409%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="79.0909%" y="948" width="1.5152%" height="15" fill="rgb(241,96,17)" fg:x="261" fg:w="5"/><text x="79.3409%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="79.0909%" y="964" width="1.5152%" height="15" fill="rgb(234,198,43)" fg:x="261" fg:w="5"/><text x="79.3409%" y="974.50"></text></g><g><title><module> (pandas/core/window/__init__.py:1) (2 samples, 0.61%)</title><rect x="80.0000%" y="980" width="0.6061%" height="15" fill="rgb(220,108,29)" fg:x="264" fg:w="2"/><text x="80.2500%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="80.0000%" y="996" width="0.6061%" height="15" fill="rgb(226,163,33)" fg:x="264" fg:w="2"/><text x="80.2500%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="80.0000%" y="1012" width="0.6061%" height="15" fill="rgb(205,194,45)" fg:x="264" fg:w="2"/><text x="80.2500%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="80.0000%" y="1028" width="0.6061%" height="15" fill="rgb(206,143,44)" fg:x="264" fg:w="2"/><text x="80.2500%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="80.0000%" y="1044" width="0.6061%" height="15" fill="rgb(236,136,36)" fg:x="264" fg:w="2"/><text x="80.2500%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="80.0000%" y="1060" width="0.6061%" height="15" fill="rgb(249,172,42)" fg:x="264" fg:w="2"/><text x="80.2500%" y="1070.50"></text></g><g><title><module> (pandas/core/window/expanding.py:1) (1 samples, 0.30%)</title><rect x="80.3030%" y="1076" width="0.3030%" height="15" fill="rgb(216,139,23)" fg:x="265" fg:w="1"/><text x="80.5530%" y="1086.50"></text></g><g><title>Expanding (pandas/core/window/expanding.py:51) (1 samples, 0.30%)</title><rect x="80.3030%" y="1092" width="0.3030%" height="15" fill="rgb(207,166,20)" fg:x="265" fg:w="1"/><text x="80.5530%" y="1102.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.30%)</title><rect x="80.3030%" y="1108" width="0.3030%" height="15" fill="rgb(210,209,22)" fg:x="265" fg:w="1"/><text x="80.5530%" y="1118.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:379) (1 samples, 0.30%)</title><rect x="80.3030%" y="1124" width="0.3030%" height="15" fill="rgb(232,118,20)" fg:x="265" fg:w="1"/><text x="80.5530%" y="1134.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.30%)</title><rect x="80.6061%" y="916" width="0.3030%" height="15" fill="rgb(238,113,42)" fg:x="266" fg:w="1"/><text x="80.8561%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="80.6061%" y="932" width="0.3030%" height="15" fill="rgb(231,42,5)" fg:x="266" fg:w="1"/><text x="80.8561%" y="942.50"></text></g><g><title>Series (pandas/core/series.py:245) (2 samples, 0.61%)</title><rect x="80.6061%" y="900" width="0.6061%" height="15" fill="rgb(243,166,24)" fg:x="266" fg:w="2"/><text x="80.8561%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.30%)</title><rect x="80.9091%" y="916" width="0.3030%" height="15" fill="rgb(237,226,12)" fg:x="267" fg:w="1"/><text x="81.1591%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="80.9091%" y="932" width="0.3030%" height="15" fill="rgb(229,133,24)" fg:x="267" fg:w="1"/><text x="81.1591%" y="942.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.30%)</title><rect x="80.9091%" y="948" width="0.3030%" height="15" fill="rgb(238,33,43)" fg:x="267" fg:w="1"/><text x="81.1591%" y="958.50"></text></g><g><title><module> (pandas/core/api.py:1) (31 samples, 9.39%)</title><rect x="72.1212%" y="500" width="9.3939%" height="15" fill="rgb(227,59,38)" fg:x="238" fg:w="31"/><text x="72.3712%" y="510.50"><module> (pan..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (31 samples, 9.39%)</title><rect x="72.1212%" y="516" width="9.3939%" height="15" fill="rgb(230,97,0)" fg:x="238" fg:w="31"/><text x="72.3712%" y="526.50">_find_and_loa..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (31 samples, 9.39%)</title><rect x="72.1212%" y="532" width="9.3939%" height="15" fill="rgb(250,173,50)" fg:x="238" fg:w="31"/><text x="72.3712%" y="542.50">_find_and_loa..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (31 samples, 9.39%)</title><rect x="72.1212%" y="548" width="9.3939%" height="15" fill="rgb(240,15,50)" fg:x="238" fg:w="31"/><text x="72.3712%" y="558.50">_load_unlocke..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (31 samples, 9.39%)</title><rect x="72.1212%" y="564" width="9.3939%" height="15" fill="rgb(221,93,22)" fg:x="238" fg:w="31"/><text x="72.3712%" y="574.50">exec_module (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (30 samples, 9.09%)</title><rect x="72.4242%" y="580" width="9.0909%" height="15" fill="rgb(245,180,53)" fg:x="239" fg:w="30"/><text x="72.6742%" y="590.50">_call_with_fr..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (14 samples, 4.24%)</title><rect x="77.2727%" y="596" width="4.2424%" height="15" fill="rgb(231,88,51)" fg:x="255" fg:w="14"/><text x="77.5227%" y="606.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.24%)</title><rect x="77.2727%" y="612" width="4.2424%" height="15" fill="rgb(240,58,21)" fg:x="255" fg:w="14"/><text x="77.5227%" y="622.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.24%)</title><rect x="77.2727%" y="628" width="4.2424%" height="15" fill="rgb(237,21,10)" fg:x="255" fg:w="14"/><text x="77.5227%" y="638.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.24%)</title><rect x="77.2727%" y="644" width="4.2424%" height="15" fill="rgb(218,43,11)" fg:x="255" fg:w="14"/><text x="77.5227%" y="654.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.24%)</title><rect x="77.2727%" y="660" width="4.2424%" height="15" fill="rgb(218,221,29)" fg:x="255" fg:w="14"/><text x="77.5227%" y="670.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.24%)</title><rect x="77.2727%" y="676" width="4.2424%" height="15" fill="rgb(214,118,42)" fg:x="255" fg:w="14"/><text x="77.5227%" y="686.50">_call..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (14 samples, 4.24%)</title><rect x="77.2727%" y="692" width="4.2424%" height="15" fill="rgb(251,200,26)" fg:x="255" fg:w="14"/><text x="77.5227%" y="702.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.24%)</title><rect x="77.2727%" y="708" width="4.2424%" height="15" fill="rgb(237,101,39)" fg:x="255" fg:w="14"/><text x="77.5227%" y="718.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.24%)</title><rect x="77.2727%" y="724" width="4.2424%" height="15" fill="rgb(251,117,11)" fg:x="255" fg:w="14"/><text x="77.5227%" y="734.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.24%)</title><rect x="77.2727%" y="740" width="4.2424%" height="15" fill="rgb(216,223,23)" fg:x="255" fg:w="14"/><text x="77.5227%" y="750.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.24%)</title><rect x="77.2727%" y="756" width="4.2424%" height="15" fill="rgb(251,54,12)" fg:x="255" fg:w="14"/><text x="77.5227%" y="766.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.24%)</title><rect x="77.2727%" y="772" width="4.2424%" height="15" fill="rgb(254,176,54)" fg:x="255" fg:w="14"/><text x="77.5227%" y="782.50">_call..</text></g><g><title><module> (pandas/core/frame.py:1) (14 samples, 4.24%)</title><rect x="77.2727%" y="788" width="4.2424%" height="15" fill="rgb(210,32,8)" fg:x="255" fg:w="14"/><text x="77.5227%" y="798.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="78.1818%" y="804" width="3.3333%" height="15" fill="rgb(235,52,38)" fg:x="258" fg:w="11"/><text x="78.4318%" y="814.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="78.1818%" y="820" width="3.3333%" height="15" fill="rgb(231,4,44)" fg:x="258" fg:w="11"/><text x="78.4318%" y="830.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.33%)</title><rect x="78.1818%" y="836" width="3.3333%" height="15" fill="rgb(249,2,32)" fg:x="258" fg:w="11"/><text x="78.4318%" y="846.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.33%)</title><rect x="78.1818%" y="852" width="3.3333%" height="15" fill="rgb(224,65,26)" fg:x="258" fg:w="11"/><text x="78.4318%" y="862.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="78.1818%" y="868" width="3.3333%" height="15" fill="rgb(250,73,40)" fg:x="258" fg:w="11"/><text x="78.4318%" y="878.50">_ca..</text></g><g><title><module> (pandas/core/series.py:1) (3 samples, 0.91%)</title><rect x="80.6061%" y="884" width="0.9091%" height="15" fill="rgb(253,177,16)" fg:x="266" fg:w="3"/><text x="80.8561%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="81.2121%" y="900" width="0.3030%" height="15" fill="rgb(217,32,34)" fg:x="268" fg:w="1"/><text x="81.4621%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="81.2121%" y="916" width="0.3030%" height="15" fill="rgb(212,7,10)" fg:x="268" fg:w="1"/><text x="81.4621%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="81.2121%" y="932" width="0.3030%" height="15" fill="rgb(245,89,8)" fg:x="268" fg:w="1"/><text x="81.4621%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="81.2121%" y="948" width="0.3030%" height="15" fill="rgb(237,16,53)" fg:x="268" fg:w="1"/><text x="81.4621%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="81.2121%" y="964" width="0.3030%" height="15" fill="rgb(250,204,30)" fg:x="268" fg:w="1"/><text x="81.4621%" y="974.50"></text></g><g><title><module> (pandas/io/formats/info.py:1) (1 samples, 0.30%)</title><rect x="81.2121%" y="980" width="0.3030%" height="15" fill="rgb(208,77,27)" fg:x="268" fg:w="1"/><text x="81.4621%" y="990.50"></text></g><g><title>SeriesInfo (pandas/io/formats/info.py:515) (1 samples, 0.30%)</title><rect x="81.2121%" y="996" width="0.3030%" height="15" fill="rgb(250,204,28)" fg:x="268" fg:w="1"/><text x="81.4621%" y="1006.50"></text></g><g><title><module> (pandas/core/computation/api.py:1) (1 samples, 0.30%)</title><rect x="81.5152%" y="500" width="0.3030%" height="15" fill="rgb(244,63,21)" fg:x="269" fg:w="1"/><text x="81.7652%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="81.5152%" y="516" width="0.3030%" height="15" fill="rgb(236,85,44)" fg:x="269" fg:w="1"/><text x="81.7652%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="81.5152%" y="532" width="0.3030%" height="15" fill="rgb(215,98,4)" fg:x="269" fg:w="1"/><text x="81.7652%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="81.5152%" y="548" width="0.3030%" height="15" fill="rgb(235,38,11)" fg:x="269" fg:w="1"/><text x="81.7652%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="81.5152%" y="564" width="0.3030%" height="15" fill="rgb(254,186,25)" fg:x="269" fg:w="1"/><text x="81.7652%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="81.5152%" y="580" width="0.3030%" height="15" fill="rgb(225,55,31)" fg:x="269" fg:w="1"/><text x="81.7652%" y="590.50"></text></g><g><title><module> (pandas/core/computation/eval.py:1) (1 samples, 0.30%)</title><rect x="81.5152%" y="596" width="0.3030%" height="15" fill="rgb(211,15,21)" fg:x="269" fg:w="1"/><text x="81.7652%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="81.5152%" y="612" width="0.3030%" height="15" fill="rgb(215,187,41)" fg:x="269" fg:w="1"/><text x="81.7652%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="81.5152%" y="628" width="0.3030%" height="15" fill="rgb(248,69,32)" fg:x="269" fg:w="1"/><text x="81.7652%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="81.5152%" y="644" width="0.3030%" height="15" fill="rgb(252,102,52)" fg:x="269" fg:w="1"/><text x="81.7652%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="81.5152%" y="660" width="0.3030%" height="15" fill="rgb(253,140,32)" fg:x="269" fg:w="1"/><text x="81.7652%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="81.5152%" y="676" width="0.3030%" height="15" fill="rgb(216,56,42)" fg:x="269" fg:w="1"/><text x="81.7652%" y="686.50"></text></g><g><title><module> (pandas/core/computation/expr.py:1) (1 samples, 0.30%)</title><rect x="81.5152%" y="692" width="0.3030%" height="15" fill="rgb(216,184,14)" fg:x="269" fg:w="1"/><text x="81.7652%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="81.5152%" y="708" width="0.3030%" height="15" fill="rgb(237,187,27)" fg:x="269" fg:w="1"/><text x="81.7652%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="81.5152%" y="724" width="0.3030%" height="15" fill="rgb(219,65,3)" fg:x="269" fg:w="1"/><text x="81.7652%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="81.5152%" y="740" width="0.3030%" height="15" fill="rgb(245,83,25)" fg:x="269" fg:w="1"/><text x="81.7652%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="81.5152%" y="756" width="0.3030%" height="15" fill="rgb(214,205,45)" fg:x="269" fg:w="1"/><text x="81.7652%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="81.5152%" y="772" width="0.3030%" height="15" fill="rgb(241,20,18)" fg:x="269" fg:w="1"/><text x="81.7652%" y="782.50"></text></g><g><title><module> (pandas/core/computation/parsing.py:1) (1 samples, 0.30%)</title><rect x="81.5152%" y="788" width="0.3030%" height="15" fill="rgb(232,163,23)" fg:x="269" fg:w="1"/><text x="81.7652%" y="798.50"></text></g><g><title><genexpr> (typing.py:993) (1 samples, 0.30%)</title><rect x="82.1212%" y="852" width="0.3030%" height="15" fill="rgb(214,5,46)" fg:x="271" fg:w="1"/><text x="82.3712%" y="862.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.30%)</title><rect x="82.1212%" y="868" width="0.3030%" height="15" fill="rgb(229,78,17)" fg:x="271" fg:w="1"/><text x="82.3712%" y="878.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.30%)</title><rect x="82.1212%" y="884" width="0.3030%" height="15" fill="rgb(248,89,10)" fg:x="271" fg:w="1"/><text x="82.3712%" y="894.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.30%)</title><rect x="82.1212%" y="900" width="0.3030%" height="15" fill="rgb(248,54,15)" fg:x="271" fg:w="1"/><text x="82.3712%" y="910.50"></text></g><g><title>ExcelFile (pandas/io/excel/_base.py:1452) (3 samples, 0.91%)</title><rect x="81.8182%" y="708" width="0.9091%" height="15" fill="rgb(223,116,6)" fg:x="270" fg:w="3"/><text x="82.0682%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="81.8182%" y="724" width="0.9091%" height="15" fill="rgb(205,125,38)" fg:x="270" fg:w="3"/><text x="82.0682%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="81.8182%" y="740" width="0.9091%" height="15" fill="rgb(251,78,38)" fg:x="270" fg:w="3"/><text x="82.0682%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="81.8182%" y="756" width="0.9091%" height="15" fill="rgb(253,78,28)" fg:x="270" fg:w="3"/><text x="82.0682%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="81.8182%" y="772" width="0.9091%" height="15" fill="rgb(209,120,3)" fg:x="270" fg:w="3"/><text x="82.0682%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="81.8182%" y="788" width="0.9091%" height="15" fill="rgb(238,229,9)" fg:x="270" fg:w="3"/><text x="82.0682%" y="798.50"></text></g><g><title><module> (pandas/io/excel/_xlrd.py:1) (3 samples, 0.91%)</title><rect x="81.8182%" y="804" width="0.9091%" height="15" fill="rgb(253,159,18)" fg:x="270" fg:w="3"/><text x="82.0682%" y="814.50"></text></g><g><title>inner (typing.py:271) (3 samples, 0.91%)</title><rect x="81.8182%" y="820" width="0.9091%" height="15" fill="rgb(244,42,34)" fg:x="270" fg:w="3"/><text x="82.0682%" y="830.50"></text></g><g><title>__class_getitem__ (typing.py:985) (3 samples, 0.91%)</title><rect x="81.8182%" y="836" width="0.9091%" height="15" fill="rgb(224,8,7)" fg:x="270" fg:w="3"/><text x="82.0682%" y="846.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.30%)</title><rect x="82.4242%" y="852" width="0.3030%" height="15" fill="rgb(210,201,45)" fg:x="272" fg:w="1"/><text x="82.6742%" y="862.50"></text></g><g><title>_collect_type_vars (typing.py:191) (1 samples, 0.30%)</title><rect x="82.4242%" y="868" width="0.3030%" height="15" fill="rgb(252,185,21)" fg:x="272" fg:w="1"/><text x="82.6742%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="81.8182%" y="580" width="1.2121%" height="15" fill="rgb(223,131,1)" fg:x="270" fg:w="4"/><text x="82.0682%" y="590.50"></text></g><g><title><module> (pandas/io/excel/__init__.py:1) (4 samples, 1.21%)</title><rect x="81.8182%" y="596" width="1.2121%" height="15" fill="rgb(245,141,16)" fg:x="270" fg:w="4"/><text x="82.0682%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="81.8182%" y="612" width="1.2121%" height="15" fill="rgb(229,55,45)" fg:x="270" fg:w="4"/><text x="82.0682%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="81.8182%" y="628" width="1.2121%" height="15" fill="rgb(208,92,15)" fg:x="270" fg:w="4"/><text x="82.0682%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="81.8182%" y="644" width="1.2121%" height="15" fill="rgb(234,185,47)" fg:x="270" fg:w="4"/><text x="82.0682%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="81.8182%" y="660" width="1.2121%" height="15" fill="rgb(253,104,50)" fg:x="270" fg:w="4"/><text x="82.0682%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="81.8182%" y="676" width="1.2121%" height="15" fill="rgb(205,70,7)" fg:x="270" fg:w="4"/><text x="82.0682%" y="686.50"></text></g><g><title><module> (pandas/io/excel/_base.py:1) (4 samples, 1.21%)</title><rect x="81.8182%" y="692" width="1.2121%" height="15" fill="rgb(240,178,43)" fg:x="270" fg:w="4"/><text x="82.0682%" y="702.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.30%)</title><rect x="82.7273%" y="708" width="0.3030%" height="15" fill="rgb(214,112,2)" fg:x="273" fg:w="1"/><text x="82.9773%" y="718.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.30%)</title><rect x="82.7273%" y="724" width="0.3030%" height="15" fill="rgb(206,46,17)" fg:x="273" fg:w="1"/><text x="82.9773%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 16.06%)</title><rect x="67.2727%" y="484" width="16.0606%" height="15" fill="rgb(225,220,16)" fg:x="222" fg:w="53"/><text x="67.5227%" y="494.50">_call_with_frames_removed..</text></g><g><title><module> (pandas/io/api.py:1) (5 samples, 1.52%)</title><rect x="81.8182%" y="500" width="1.5152%" height="15" fill="rgb(238,65,40)" fg:x="270" fg:w="5"/><text x="82.0682%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="81.8182%" y="516" width="1.5152%" height="15" fill="rgb(230,151,21)" fg:x="270" fg:w="5"/><text x="82.0682%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="81.8182%" y="532" width="1.5152%" height="15" fill="rgb(218,58,49)" fg:x="270" fg:w="5"/><text x="82.0682%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="81.8182%" y="548" width="1.5152%" height="15" fill="rgb(219,179,14)" fg:x="270" fg:w="5"/><text x="82.0682%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.52%)</title><rect x="81.8182%" y="564" width="1.5152%" height="15" fill="rgb(223,72,1)" fg:x="270" fg:w="5"/><text x="82.0682%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="83.0303%" y="580" width="0.3030%" height="15" fill="rgb(238,126,10)" fg:x="274" fg:w="1"/><text x="83.2803%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="83.0303%" y="596" width="0.3030%" height="15" fill="rgb(224,206,38)" fg:x="274" fg:w="1"/><text x="83.2803%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (54 samples, 16.36%)</title><rect x="67.2727%" y="420" width="16.3636%" height="15" fill="rgb(212,201,54)" fg:x="222" fg:w="54"/><text x="67.5227%" y="430.50">_find_and_load (<frozen i..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (54 samples, 16.36%)</title><rect x="67.2727%" y="436" width="16.3636%" height="15" fill="rgb(218,154,48)" fg:x="222" fg:w="54"/><text x="67.5227%" y="446.50">_find_and_load_unlocked (..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (54 samples, 16.36%)</title><rect x="67.2727%" y="452" width="16.3636%" height="15" fill="rgb(232,93,24)" fg:x="222" fg:w="54"/><text x="67.5227%" y="462.50">_load_unlocked (<frozen i..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (54 samples, 16.36%)</title><rect x="67.2727%" y="468" width="16.3636%" height="15" fill="rgb(245,30,21)" fg:x="222" fg:w="54"/><text x="67.5227%" y="478.50">exec_module (<frozen impo..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="83.3333%" y="484" width="0.3030%" height="15" fill="rgb(242,148,29)" fg:x="275" fg:w="1"/><text x="83.5833%" y="494.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="83.3333%" y="500" width="0.3030%" height="15" fill="rgb(244,153,54)" fg:x="275" fg:w="1"/><text x="83.5833%" y="510.50"></text></g><g><title><module> (pandas/__init__.py:1) (58 samples, 17.58%)</title><rect x="67.2727%" y="404" width="17.5758%" height="15" fill="rgb(252,87,22)" fg:x="222" fg:w="58"/><text x="67.5227%" y="414.50"><module> (pandas/__init__.p..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.21%)</title><rect x="83.6364%" y="420" width="1.2121%" height="15" fill="rgb(210,51,29)" fg:x="276" fg:w="4"/><text x="83.8864%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="83.6364%" y="436" width="1.2121%" height="15" fill="rgb(242,136,47)" fg:x="276" fg:w="4"/><text x="83.8864%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="83.6364%" y="452" width="1.2121%" height="15" fill="rgb(238,68,4)" fg:x="276" fg:w="4"/><text x="83.8864%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="83.6364%" y="468" width="1.2121%" height="15" fill="rgb(242,161,30)" fg:x="276" fg:w="4"/><text x="83.8864%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="83.6364%" y="484" width="1.2121%" height="15" fill="rgb(218,58,44)" fg:x="276" fg:w="4"/><text x="83.8864%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="83.6364%" y="500" width="1.2121%" height="15" fill="rgb(252,125,32)" fg:x="276" fg:w="4"/><text x="83.8864%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="83.6364%" y="516" width="1.2121%" height="15" fill="rgb(219,178,0)" fg:x="276" fg:w="4"/><text x="83.8864%" y="526.50"></text></g><g><title><module> (pandas/testing.py:1) (4 samples, 1.21%)</title><rect x="83.6364%" y="532" width="1.2121%" height="15" fill="rgb(213,152,7)" fg:x="276" fg:w="4"/><text x="83.8864%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="83.6364%" y="548" width="1.2121%" height="15" fill="rgb(249,109,34)" fg:x="276" fg:w="4"/><text x="83.8864%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="83.6364%" y="564" width="1.2121%" height="15" fill="rgb(232,96,21)" fg:x="276" fg:w="4"/><text x="83.8864%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="83.6364%" y="580" width="1.2121%" height="15" fill="rgb(228,27,39)" fg:x="276" fg:w="4"/><text x="83.8864%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="83.6364%" y="596" width="1.2121%" height="15" fill="rgb(211,182,52)" fg:x="276" fg:w="4"/><text x="83.8864%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="83.6364%" y="612" width="1.2121%" height="15" fill="rgb(234,178,38)" fg:x="276" fg:w="4"/><text x="83.8864%" y="622.50"></text></g><g><title><module> (pandas/_testing/__init__.py:1) (4 samples, 1.21%)</title><rect x="83.6364%" y="628" width="1.2121%" height="15" fill="rgb(221,111,3)" fg:x="276" fg:w="4"/><text x="83.8864%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="83.6364%" y="644" width="1.2121%" height="15" fill="rgb(228,175,21)" fg:x="276" fg:w="4"/><text x="83.8864%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="83.6364%" y="660" width="1.2121%" height="15" fill="rgb(228,174,43)" fg:x="276" fg:w="4"/><text x="83.8864%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="83.6364%" y="676" width="1.2121%" height="15" fill="rgb(211,191,0)" fg:x="276" fg:w="4"/><text x="83.8864%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="83.6364%" y="692" width="1.2121%" height="15" fill="rgb(253,117,3)" fg:x="276" fg:w="4"/><text x="83.8864%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="83.6364%" y="708" width="1.2121%" height="15" fill="rgb(241,127,19)" fg:x="276" fg:w="4"/><text x="83.8864%" y="718.50"></text></g><g><title><module> (pandas/_testing/asserters.py:1) (4 samples, 1.21%)</title><rect x="83.6364%" y="724" width="1.2121%" height="15" fill="rgb(218,103,12)" fg:x="276" fg:w="4"/><text x="83.8864%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="83.6364%" y="740" width="1.2121%" height="15" fill="rgb(236,214,43)" fg:x="276" fg:w="4"/><text x="83.8864%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="83.6364%" y="756" width="1.2121%" height="15" fill="rgb(244,144,19)" fg:x="276" fg:w="4"/><text x="83.8864%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="83.6364%" y="772" width="1.2121%" height="15" fill="rgb(246,188,10)" fg:x="276" fg:w="4"/><text x="83.8864%" y="782.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (4 samples, 1.21%)</title><rect x="83.6364%" y="788" width="1.2121%" height="15" fill="rgb(212,193,33)" fg:x="276" fg:w="4"/><text x="83.8864%" y="798.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (4 samples, 1.21%)</title><rect x="83.6364%" y="804" width="1.2121%" height="15" fill="rgb(241,51,29)" fg:x="276" fg:w="4"/><text x="83.8864%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="83.6364%" y="820" width="1.2121%" height="15" fill="rgb(211,58,19)" fg:x="276" fg:w="4"/><text x="83.8864%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (76 samples, 23.03%)</title><rect x="62.1212%" y="324" width="23.0303%" height="15" fill="rgb(229,111,26)" fg:x="205" fg:w="76"/><text x="62.3712%" y="334.50">_find_and_load (<frozen importlib._bo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (76 samples, 23.03%)</title><rect x="62.1212%" y="340" width="23.0303%" height="15" fill="rgb(213,115,40)" fg:x="205" fg:w="76"/><text x="62.3712%" y="350.50">_find_and_load_unlocked (<frozen impo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (76 samples, 23.03%)</title><rect x="62.1212%" y="356" width="23.0303%" height="15" fill="rgb(209,56,44)" fg:x="205" fg:w="76"/><text x="62.3712%" y="366.50">_load_unlocked (<frozen importlib._bo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (76 samples, 23.03%)</title><rect x="62.1212%" y="372" width="23.0303%" height="15" fill="rgb(230,108,32)" fg:x="205" fg:w="76"/><text x="62.3712%" y="382.50">exec_module (<frozen importlib._boots..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (76 samples, 23.03%)</title><rect x="62.1212%" y="388" width="23.0303%" height="15" fill="rgb(216,165,31)" fg:x="205" fg:w="76"/><text x="62.3712%" y="398.50">_call_with_frames_removed (<frozen im..</text></g><g><title><module> (xarray/core/dataarray.py:1) (1 samples, 0.30%)</title><rect x="84.8485%" y="404" width="0.3030%" height="15" fill="rgb(218,122,21)" fg:x="280" fg:w="1"/><text x="85.0985%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="84.8485%" y="420" width="0.3030%" height="15" fill="rgb(223,224,47)" fg:x="280" fg:w="1"/><text x="85.0985%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="84.8485%" y="436" width="0.3030%" height="15" fill="rgb(238,102,44)" fg:x="280" fg:w="1"/><text x="85.0985%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="84.8485%" y="452" width="0.3030%" height="15" fill="rgb(236,46,40)" fg:x="280" fg:w="1"/><text x="85.0985%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="84.8485%" y="468" width="0.3030%" height="15" fill="rgb(247,202,50)" fg:x="280" fg:w="1"/><text x="85.0985%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="84.8485%" y="484" width="0.3030%" height="15" fill="rgb(209,99,20)" fg:x="280" fg:w="1"/><text x="85.0985%" y="494.50"></text></g><g><title><module> (xarray/coding/calendar_ops.py:1) (1 samples, 0.30%)</title><rect x="84.8485%" y="500" width="0.3030%" height="15" fill="rgb(252,27,34)" fg:x="280" fg:w="1"/><text x="85.0985%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="84.8485%" y="516" width="0.3030%" height="15" fill="rgb(215,206,23)" fg:x="280" fg:w="1"/><text x="85.0985%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="84.8485%" y="532" width="0.3030%" height="15" fill="rgb(212,135,36)" fg:x="280" fg:w="1"/><text x="85.0985%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="84.8485%" y="548" width="0.3030%" height="15" fill="rgb(240,189,1)" fg:x="280" fg:w="1"/><text x="85.0985%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="84.8485%" y="564" width="0.3030%" height="15" fill="rgb(242,56,20)" fg:x="280" fg:w="1"/><text x="85.0985%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="84.8485%" y="580" width="0.3030%" height="15" fill="rgb(247,132,33)" fg:x="280" fg:w="1"/><text x="85.0985%" y="590.50"></text></g><g><title><module> (xarray/coding/cftime_offsets.py:1) (1 samples, 0.30%)</title><rect x="84.8485%" y="596" width="0.3030%" height="15" fill="rgb(208,149,11)" fg:x="280" fg:w="1"/><text x="85.0985%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="84.8485%" y="612" width="0.3030%" height="15" fill="rgb(211,33,11)" fg:x="280" fg:w="1"/><text x="85.0985%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="84.8485%" y="628" width="0.3030%" height="15" fill="rgb(221,29,38)" fg:x="280" fg:w="1"/><text x="85.0985%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="84.8485%" y="644" width="0.3030%" height="15" fill="rgb(206,182,49)" fg:x="280" fg:w="1"/><text x="85.0985%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="84.8485%" y="660" width="0.3030%" height="15" fill="rgb(216,140,1)" fg:x="280" fg:w="1"/><text x="85.0985%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="84.8485%" y="676" width="0.3030%" height="15" fill="rgb(232,57,40)" fg:x="280" fg:w="1"/><text x="85.0985%" y="686.50"></text></g><g><title><module> (xarray/coding/cftimeindex.py:1) (1 samples, 0.30%)</title><rect x="84.8485%" y="692" width="0.3030%" height="15" fill="rgb(224,186,18)" fg:x="280" fg:w="1"/><text x="85.0985%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="84.8485%" y="708" width="0.3030%" height="15" fill="rgb(215,121,11)" fg:x="280" fg:w="1"/><text x="85.0985%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="84.8485%" y="724" width="0.3030%" height="15" fill="rgb(245,147,10)" fg:x="280" fg:w="1"/><text x="85.0985%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="84.8485%" y="740" width="0.3030%" height="15" fill="rgb(238,153,13)" fg:x="280" fg:w="1"/><text x="85.0985%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="84.8485%" y="756" width="0.3030%" height="15" fill="rgb(233,108,0)" fg:x="280" fg:w="1"/><text x="85.0985%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="84.8485%" y="772" width="0.3030%" height="15" fill="rgb(212,157,17)" fg:x="280" fg:w="1"/><text x="85.0985%" y="782.50"></text></g><g><title><module> (xarray/coding/times.py:1) (1 samples, 0.30%)</title><rect x="84.8485%" y="788" width="0.3030%" height="15" fill="rgb(225,213,38)" fg:x="280" fg:w="1"/><text x="85.0985%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="84.8485%" y="804" width="0.3030%" height="15" fill="rgb(248,16,11)" fg:x="280" fg:w="1"/><text x="85.0985%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="84.8485%" y="820" width="0.3030%" height="15" fill="rgb(241,33,4)" fg:x="280" fg:w="1"/><text x="85.0985%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="84.8485%" y="836" width="0.3030%" height="15" fill="rgb(222,26,43)" fg:x="280" fg:w="1"/><text x="85.0985%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="84.8485%" y="852" width="0.3030%" height="15" fill="rgb(243,29,36)" fg:x="280" fg:w="1"/><text x="85.0985%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="84.8485%" y="868" width="0.3030%" height="15" fill="rgb(241,9,27)" fg:x="280" fg:w="1"/><text x="85.0985%" y="878.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="84.8485%" y="884" width="0.3030%" height="15" fill="rgb(205,117,26)" fg:x="280" fg:w="1"/><text x="85.0985%" y="894.50"></text></g><g><title><module> (xarray/testing.py:1) (77 samples, 23.33%)</title><rect x="62.1212%" y="308" width="23.3333%" height="15" fill="rgb(209,80,39)" fg:x="205" fg:w="77"/><text x="62.3712%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="85.1515%" y="324" width="0.3030%" height="15" fill="rgb(239,155,6)" fg:x="281" fg:w="1"/><text x="85.4015%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.1515%" y="340" width="0.3030%" height="15" fill="rgb(212,104,12)" fg:x="281" fg:w="1"/><text x="85.4015%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.1515%" y="356" width="0.3030%" height="15" fill="rgb(234,204,3)" fg:x="281" fg:w="1"/><text x="85.4015%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.1515%" y="372" width="0.3030%" height="15" fill="rgb(251,218,7)" fg:x="281" fg:w="1"/><text x="85.4015%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.1515%" y="388" width="0.3030%" height="15" fill="rgb(221,81,32)" fg:x="281" fg:w="1"/><text x="85.4015%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.1515%" y="404" width="0.3030%" height="15" fill="rgb(214,152,26)" fg:x="281" fg:w="1"/><text x="85.4015%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.1515%" y="420" width="0.3030%" height="15" fill="rgb(223,22,3)" fg:x="281" fg:w="1"/><text x="85.4015%" y="430.50"></text></g><g><title><module> (xarray/core/duck_array_ops.py:1) (1 samples, 0.30%)</title><rect x="85.1515%" y="436" width="0.3030%" height="15" fill="rgb(207,174,7)" fg:x="281" fg:w="1"/><text x="85.4015%" y="446.50"></text></g><g><title>_create_nan_agg_method (xarray/core/duck_array_ops.py:350) (1 samples, 0.30%)</title><rect x="85.1515%" y="452" width="0.3030%" height="15" fill="rgb(224,19,52)" fg:x="281" fg:w="1"/><text x="85.4015%" y="462.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="85.1515%" y="468" width="0.3030%" height="15" fill="rgb(228,24,14)" fg:x="281" fg:w="1"/><text x="85.4015%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.1515%" y="484" width="0.3030%" height="15" fill="rgb(230,153,43)" fg:x="281" fg:w="1"/><text x="85.4015%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.1515%" y="500" width="0.3030%" height="15" fill="rgb(231,106,12)" fg:x="281" fg:w="1"/><text x="85.4015%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.1515%" y="516" width="0.3030%" height="15" fill="rgb(215,92,2)" fg:x="281" fg:w="1"/><text x="85.4015%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.1515%" y="532" width="0.3030%" height="15" fill="rgb(249,143,25)" fg:x="281" fg:w="1"/><text x="85.4015%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.1515%" y="548" width="0.3030%" height="15" fill="rgb(252,7,35)" fg:x="281" fg:w="1"/><text x="85.4015%" y="558.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="85.1515%" y="564" width="0.3030%" height="15" fill="rgb(216,69,40)" fg:x="281" fg:w="1"/><text x="85.4015%" y="574.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="85.1515%" y="580" width="0.3030%" height="15" fill="rgb(240,36,33)" fg:x="281" fg:w="1"/><text x="85.4015%" y="590.50"></text></g><g><title><module> (dask/base.py:1) (1 samples, 0.30%)</title><rect x="85.4545%" y="884" width="0.3030%" height="15" fill="rgb(231,128,14)" fg:x="282" fg:w="1"/><text x="85.7045%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.4545%" y="900" width="0.3030%" height="15" fill="rgb(245,143,14)" fg:x="282" fg:w="1"/><text x="85.7045%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.4545%" y="916" width="0.3030%" height="15" fill="rgb(222,130,28)" fg:x="282" fg:w="1"/><text x="85.7045%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.4545%" y="932" width="0.3030%" height="15" fill="rgb(212,10,48)" fg:x="282" fg:w="1"/><text x="85.7045%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.4545%" y="948" width="0.3030%" height="15" fill="rgb(254,118,45)" fg:x="282" fg:w="1"/><text x="85.7045%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.4545%" y="964" width="0.3030%" height="15" fill="rgb(228,6,45)" fg:x="282" fg:w="1"/><text x="85.7045%" y="974.50"></text></g><g><title><module> (dask/_compatibility.py:1) (1 samples, 0.30%)</title><rect x="85.4545%" y="980" width="0.3030%" height="15" fill="rgb(241,18,35)" fg:x="282" fg:w="1"/><text x="85.7045%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.4545%" y="996" width="0.3030%" height="15" fill="rgb(227,214,53)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.4545%" y="1012" width="0.3030%" height="15" fill="rgb(224,107,51)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.4545%" y="1028" width="0.3030%" height="15" fill="rgb(248,60,28)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.4545%" y="1044" width="0.3030%" height="15" fill="rgb(249,101,23)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.4545%" y="1060" width="0.3030%" height="15" fill="rgb(228,51,19)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1070.50"></text></g><g><title><module> (importlib_metadata/__init__.py:1) (1 samples, 0.30%)</title><rect x="85.4545%" y="1076" width="0.3030%" height="15" fill="rgb(213,20,6)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.4545%" y="1092" width="0.3030%" height="15" fill="rgb(212,124,10)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.4545%" y="1108" width="0.3030%" height="15" fill="rgb(248,3,40)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.4545%" y="1124" width="0.3030%" height="15" fill="rgb(223,178,23)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.4545%" y="1140" width="0.3030%" height="15" fill="rgb(240,132,45)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="85.4545%" y="1156" width="0.3030%" height="15" fill="rgb(245,164,36)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="85.4545%" y="1172" width="0.3030%" height="15" fill="rgb(231,188,53)" fg:x="282" fg:w="1"/><text x="85.7045%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="85.7576%" y="1444" width="0.3030%" height="15" fill="rgb(237,198,39)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1454.50"></text></g><g><title><module> (jinja2/lexer.py:1) (1 samples, 0.30%)</title><rect x="85.7576%" y="1460" width="0.3030%" height="15" fill="rgb(223,120,35)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="85.7576%" y="1476" width="0.3030%" height="15" fill="rgb(253,107,49)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="85.7576%" y="1492" width="0.3030%" height="15" fill="rgb(216,44,31)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="85.7576%" y="1508" width="0.3030%" height="15" fill="rgb(253,87,21)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1518.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="85.7576%" y="1524" width="0.3030%" height="15" fill="rgb(226,18,2)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1534.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="85.7576%" y="1540" width="0.3030%" height="15" fill="rgb(216,8,46)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1550.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="85.7576%" y="1556" width="0.3030%" height="15" fill="rgb(226,140,39)" fg:x="283" fg:w="1"/><text x="86.0076%" y="1566.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="85.4545%" y="804" width="0.9091%" height="15" fill="rgb(221,194,54)" fg:x="282" fg:w="3"/><text x="85.7045%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="85.4545%" y="820" width="0.9091%" height="15" fill="rgb(213,92,11)" fg:x="282" fg:w="3"/><text x="85.7045%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="85.4545%" y="836" width="0.9091%" height="15" fill="rgb(229,162,46)" fg:x="282" fg:w="3"/><text x="85.7045%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="85.4545%" y="852" width="0.9091%" height="15" fill="rgb(214,111,36)" fg:x="282" fg:w="3"/><text x="85.7045%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="85.4545%" y="868" width="0.9091%" height="15" fill="rgb(207,6,21)" fg:x="282" fg:w="3"/><text x="85.7045%" y="878.50"></text></g><g><title><module> (dask/delayed.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="884" width="0.6061%" height="15" fill="rgb(213,127,38)" fg:x="283" fg:w="2"/><text x="86.0076%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="900" width="0.6061%" height="15" fill="rgb(238,118,32)" fg:x="283" fg:w="2"/><text x="86.0076%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="916" width="0.6061%" height="15" fill="rgb(240,139,39)" fg:x="283" fg:w="2"/><text x="86.0076%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="932" width="0.6061%" height="15" fill="rgb(235,10,37)" fg:x="283" fg:w="2"/><text x="86.0076%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="948" width="0.6061%" height="15" fill="rgb(249,171,38)" fg:x="283" fg:w="2"/><text x="86.0076%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="85.7576%" y="964" width="0.6061%" height="15" fill="rgb(242,144,32)" fg:x="283" fg:w="2"/><text x="86.0076%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="980" width="0.6061%" height="15" fill="rgb(217,117,21)" fg:x="283" fg:w="2"/><text x="86.0076%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="996" width="0.6061%" height="15" fill="rgb(249,87,1)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="1012" width="0.6061%" height="15" fill="rgb(248,196,48)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="1028" width="0.6061%" height="15" fill="rgb(251,206,33)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="1044" width="0.6061%" height="15" fill="rgb(232,141,28)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="85.7576%" y="1060" width="0.6061%" height="15" fill="rgb(209,167,14)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="1076" width="0.6061%" height="15" fill="rgb(225,11,50)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="1092" width="0.6061%" height="15" fill="rgb(209,50,20)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="1108" width="0.6061%" height="15" fill="rgb(212,17,46)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="1124" width="0.6061%" height="15" fill="rgb(216,101,39)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="1140" width="0.6061%" height="15" fill="rgb(212,228,48)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="85.7576%" y="1156" width="0.6061%" height="15" fill="rgb(250,6,50)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="1172" width="0.6061%" height="15" fill="rgb(250,160,48)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="1188" width="0.6061%" height="15" fill="rgb(244,216,33)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="1204" width="0.6061%" height="15" fill="rgb(207,157,5)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="1220" width="0.6061%" height="15" fill="rgb(228,199,8)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="1236" width="0.6061%" height="15" fill="rgb(227,80,20)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="85.7576%" y="1252" width="0.6061%" height="15" fill="rgb(222,9,33)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="1268" width="0.6061%" height="15" fill="rgb(239,44,28)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="1284" width="0.6061%" height="15" fill="rgb(249,187,43)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="1300" width="0.6061%" height="15" fill="rgb(216,141,28)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="1316" width="0.6061%" height="15" fill="rgb(230,154,53)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="1332" width="0.6061%" height="15" fill="rgb(227,82,4)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="85.7576%" y="1348" width="0.6061%" height="15" fill="rgb(220,107,16)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1358.50"></text></g><g><title><module> (jinja2/environment.py:1) (2 samples, 0.61%)</title><rect x="85.7576%" y="1364" width="0.6061%" height="15" fill="rgb(207,187,2)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="85.7576%" y="1380" width="0.6061%" height="15" fill="rgb(210,162,52)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="85.7576%" y="1396" width="0.6061%" height="15" fill="rgb(217,216,49)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="85.7576%" y="1412" width="0.6061%" height="15" fill="rgb(218,146,49)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="85.7576%" y="1428" width="0.6061%" height="15" fill="rgb(216,55,40)" fg:x="283" fg:w="2"/><text x="86.0076%" y="1438.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="86.0606%" y="1444" width="0.3030%" height="15" fill="rgb(208,196,21)" fg:x="284" fg:w="1"/><text x="86.3106%" y="1454.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="86.0606%" y="1460" width="0.3030%" height="15" fill="rgb(242,117,42)" fg:x="284" fg:w="1"/><text x="86.3106%" y="1470.50"></text></g><g><title><module> (yaml/cyaml.py:2) (5 samples, 1.52%)</title><rect x="86.3636%" y="1108" width="1.5152%" height="15" fill="rgb(210,11,23)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="86.3636%" y="1124" width="1.5152%" height="15" fill="rgb(217,110,2)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="86.3636%" y="1140" width="1.5152%" height="15" fill="rgb(229,77,54)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.52%)</title><rect x="86.3636%" y="1156" width="1.5152%" height="15" fill="rgb(218,53,16)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (5 samples, 1.52%)</title><rect x="86.3636%" y="1172" width="1.5152%" height="15" fill="rgb(215,38,13)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="86.3636%" y="1188" width="1.5152%" height="15" fill="rgb(235,42,18)" fg:x="285" fg:w="5"/><text x="86.6136%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="86.3636%" y="932" width="1.8182%" height="15" fill="rgb(219,66,54)" fg:x="285" fg:w="6"/><text x="86.6136%" y="942.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="86.3636%" y="948" width="1.8182%" height="15" fill="rgb(222,205,4)" fg:x="285" fg:w="6"/><text x="86.6136%" y="958.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="86.3636%" y="964" width="1.8182%" height="15" fill="rgb(227,213,46)" fg:x="285" fg:w="6"/><text x="86.6136%" y="974.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="86.3636%" y="980" width="1.8182%" height="15" fill="rgb(250,145,42)" fg:x="285" fg:w="6"/><text x="86.6136%" y="990.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="86.3636%" y="996" width="1.8182%" height="15" fill="rgb(219,15,2)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1006.50">_..</text></g><g><title><module> (yaml/__init__.py:2) (6 samples, 1.82%)</title><rect x="86.3636%" y="1012" width="1.8182%" height="15" fill="rgb(231,181,52)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1022.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="86.3636%" y="1028" width="1.8182%" height="15" fill="rgb(235,1,42)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1038.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="86.3636%" y="1044" width="1.8182%" height="15" fill="rgb(249,88,27)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1054.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="86.3636%" y="1060" width="1.8182%" height="15" fill="rgb(235,145,16)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1070.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="86.3636%" y="1076" width="1.8182%" height="15" fill="rgb(237,114,19)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1086.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="86.3636%" y="1092" width="1.8182%" height="15" fill="rgb(238,51,50)" fg:x="285" fg:w="6"/><text x="86.6136%" y="1102.50">_..</text></g><g><title><module> (yaml/tokens.py:2) (1 samples, 0.30%)</title><rect x="87.8788%" y="1108" width="0.3030%" height="15" fill="rgb(205,194,25)" fg:x="290" fg:w="1"/><text x="88.1288%" y="1118.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.30%)</title><rect x="88.1818%" y="1156" width="0.3030%" height="15" fill="rgb(215,203,17)" fg:x="291" fg:w="1"/><text x="88.4318%" y="1166.50"></text></g><g><title>parse_block_sequence_entry (yaml/parser.py:381) (1 samples, 0.30%)</title><rect x="88.1818%" y="1172" width="0.3030%" height="15" fill="rgb(233,112,49)" fg:x="291" fg:w="1"/><text x="88.4318%" y="1182.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.30%)</title><rect x="88.1818%" y="1188" width="0.3030%" height="15" fill="rgb(241,130,26)" fg:x="291" fg:w="1"/><text x="88.4318%" y="1198.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.30%)</title><rect x="88.1818%" y="1204" width="0.3030%" height="15" fill="rgb(252,223,19)" fg:x="291" fg:w="1"/><text x="88.4318%" y="1214.50"></text></g><g><title>fetch_block_entry (yaml/scanner.py:484) (1 samples, 0.30%)</title><rect x="88.1818%" y="1220" width="0.3030%" height="15" fill="rgb(211,95,25)" fg:x="291" fg:w="1"/><text x="88.4318%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (268 samples, 81.21%)</title><rect x="7.5758%" y="100" width="81.2121%" height="15" fill="rgb(251,182,27)" fg:x="25" fg:w="268"/><text x="7.8258%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (268 samples, 81.21%)</title><rect x="7.5758%" y="116" width="81.2121%" height="15" fill="rgb(238,24,4)" fg:x="25" fg:w="268"/><text x="7.8258%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (268 samples, 81.21%)</title><rect x="7.5758%" y="132" width="81.2121%" height="15" fill="rgb(224,220,25)" fg:x="25" fg:w="268"/><text x="7.8258%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (268 samples, 81.21%)</title><rect x="7.5758%" y="148" width="81.2121%" height="15" fill="rgb(239,133,26)" fg:x="25" fg:w="268"/><text x="7.8258%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (268 samples, 81.21%)</title><rect x="7.5758%" y="164" width="81.2121%" height="15" fill="rgb(211,94,48)" fg:x="25" fg:w="268"/><text x="7.8258%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (88 samples, 26.67%)</title><rect x="62.1212%" y="180" width="26.6667%" height="15" fill="rgb(239,87,6)" fg:x="205" fg:w="88"/><text x="62.3712%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (88 samples, 26.67%)</title><rect x="62.1212%" y="196" width="26.6667%" height="15" fill="rgb(227,62,0)" fg:x="205" fg:w="88"/><text x="62.3712%" y="206.50">_handle_fromlist (<frozen importlib._bootst..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (88 samples, 26.67%)</title><rect x="62.1212%" y="212" width="26.6667%" height="15" fill="rgb(211,226,4)" fg:x="205" fg:w="88"/><text x="62.3712%" y="222.50">_call_with_frames_removed (<frozen importli..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (88 samples, 26.67%)</title><rect x="62.1212%" y="228" width="26.6667%" height="15" fill="rgb(253,38,52)" fg:x="205" fg:w="88"/><text x="62.3712%" y="238.50">_find_and_load (<frozen importlib._bootstra..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (88 samples, 26.67%)</title><rect x="62.1212%" y="244" width="26.6667%" height="15" fill="rgb(229,126,40)" fg:x="205" fg:w="88"/><text x="62.3712%" y="254.50">_find_and_load_unlocked (<frozen importlib...</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (88 samples, 26.67%)</title><rect x="62.1212%" y="260" width="26.6667%" height="15" fill="rgb(229,165,44)" fg:x="205" fg:w="88"/><text x="62.3712%" y="270.50">_load_unlocked (<frozen importlib._bootstra..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (88 samples, 26.67%)</title><rect x="62.1212%" y="276" width="26.6667%" height="15" fill="rgb(247,95,47)" fg:x="205" fg:w="88"/><text x="62.3712%" y="286.50">exec_module (<frozen importlib._bootstrap_e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (88 samples, 26.67%)</title><rect x="62.1212%" y="292" width="26.6667%" height="15" fill="rgb(216,140,30)" fg:x="205" fg:w="88"/><text x="62.3712%" y="302.50">_call_with_frames_removed (<frozen importli..</text></g><g><title><module> (xarray/tutorial.py:1) (11 samples, 3.33%)</title><rect x="85.4545%" y="308" width="3.3333%" height="15" fill="rgb(246,214,8)" fg:x="282" fg:w="11"/><text x="85.7045%" y="318.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="324" width="3.3333%" height="15" fill="rgb(227,224,15)" fg:x="282" fg:w="11"/><text x="85.7045%" y="334.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="340" width="3.3333%" height="15" fill="rgb(233,175,4)" fg:x="282" fg:w="11"/><text x="85.7045%" y="350.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="356" width="3.3333%" height="15" fill="rgb(221,66,45)" fg:x="282" fg:w="11"/><text x="85.7045%" y="366.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="372" width="3.3333%" height="15" fill="rgb(221,178,18)" fg:x="282" fg:w="11"/><text x="85.7045%" y="382.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="388" width="3.3333%" height="15" fill="rgb(213,81,29)" fg:x="282" fg:w="11"/><text x="85.7045%" y="398.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.33%)</title><rect x="85.4545%" y="404" width="3.3333%" height="15" fill="rgb(220,89,49)" fg:x="282" fg:w="11"/><text x="85.7045%" y="414.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.33%)</title><rect x="85.4545%" y="420" width="3.3333%" height="15" fill="rgb(227,60,33)" fg:x="282" fg:w="11"/><text x="85.7045%" y="430.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="436" width="3.3333%" height="15" fill="rgb(205,113,12)" fg:x="282" fg:w="11"/><text x="85.7045%" y="446.50">_ca..</text></g><g><title><module> (xarray/backends/__init__.py:1) (11 samples, 3.33%)</title><rect x="85.4545%" y="452" width="3.3333%" height="15" fill="rgb(211,32,1)" fg:x="282" fg:w="11"/><text x="85.7045%" y="462.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="468" width="3.3333%" height="15" fill="rgb(246,2,12)" fg:x="282" fg:w="11"/><text x="85.7045%" y="478.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="484" width="3.3333%" height="15" fill="rgb(243,37,27)" fg:x="282" fg:w="11"/><text x="85.7045%" y="494.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.33%)</title><rect x="85.4545%" y="500" width="3.3333%" height="15" fill="rgb(248,211,31)" fg:x="282" fg:w="11"/><text x="85.7045%" y="510.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.33%)</title><rect x="85.4545%" y="516" width="3.3333%" height="15" fill="rgb(242,146,47)" fg:x="282" fg:w="11"/><text x="85.7045%" y="526.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="532" width="3.3333%" height="15" fill="rgb(206,70,20)" fg:x="282" fg:w="11"/><text x="85.7045%" y="542.50">_ca..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (11 samples, 3.33%)</title><rect x="85.4545%" y="548" width="3.3333%" height="15" fill="rgb(215,10,51)" fg:x="282" fg:w="11"/><text x="85.7045%" y="558.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="564" width="3.3333%" height="15" fill="rgb(243,178,53)" fg:x="282" fg:w="11"/><text x="85.7045%" y="574.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="580" width="3.3333%" height="15" fill="rgb(233,221,20)" fg:x="282" fg:w="11"/><text x="85.7045%" y="590.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.33%)</title><rect x="85.4545%" y="596" width="3.3333%" height="15" fill="rgb(218,95,35)" fg:x="282" fg:w="11"/><text x="85.7045%" y="606.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.33%)</title><rect x="85.4545%" y="612" width="3.3333%" height="15" fill="rgb(229,13,5)" fg:x="282" fg:w="11"/><text x="85.7045%" y="622.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="628" width="3.3333%" height="15" fill="rgb(252,164,30)" fg:x="282" fg:w="11"/><text x="85.7045%" y="638.50">_ca..</text></g><g><title><module> (xarray/backends/locks.py:1) (11 samples, 3.33%)</title><rect x="85.4545%" y="644" width="3.3333%" height="15" fill="rgb(232,68,36)" fg:x="282" fg:w="11"/><text x="85.7045%" y="654.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="660" width="3.3333%" height="15" fill="rgb(219,59,54)" fg:x="282" fg:w="11"/><text x="85.7045%" y="670.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="676" width="3.3333%" height="15" fill="rgb(250,92,33)" fg:x="282" fg:w="11"/><text x="85.7045%" y="686.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="692" width="3.3333%" height="15" fill="rgb(229,162,54)" fg:x="282" fg:w="11"/><text x="85.7045%" y="702.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.33%)</title><rect x="85.4545%" y="708" width="3.3333%" height="15" fill="rgb(244,114,52)" fg:x="282" fg:w="11"/><text x="85.7045%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.33%)</title><rect x="85.4545%" y="724" width="3.3333%" height="15" fill="rgb(212,211,43)" fg:x="282" fg:w="11"/><text x="85.7045%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.33%)</title><rect x="85.4545%" y="740" width="3.3333%" height="15" fill="rgb(226,147,8)" fg:x="282" fg:w="11"/><text x="85.7045%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.33%)</title><rect x="85.4545%" y="756" width="3.3333%" height="15" fill="rgb(226,23,13)" fg:x="282" fg:w="11"/><text x="85.7045%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.33%)</title><rect x="85.4545%" y="772" width="3.3333%" height="15" fill="rgb(240,63,4)" fg:x="282" fg:w="11"/><text x="85.7045%" y="782.50">_ca..</text></g><g><title><module> (dask/__init__.py:1) (11 samples, 3.33%)</title><rect x="85.4545%" y="788" width="3.3333%" height="15" fill="rgb(221,1,32)" fg:x="282" fg:w="11"/><text x="85.7045%" y="798.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.42%)</title><rect x="86.3636%" y="804" width="2.4242%" height="15" fill="rgb(242,117,10)" fg:x="285" fg:w="8"/><text x="86.6136%" y="814.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="86.3636%" y="820" width="2.4242%" height="15" fill="rgb(249,172,44)" fg:x="285" fg:w="8"/><text x="86.6136%" y="830.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="86.3636%" y="836" width="2.4242%" height="15" fill="rgb(244,46,45)" fg:x="285" fg:w="8"/><text x="86.6136%" y="846.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="86.3636%" y="852" width="2.4242%" height="15" fill="rgb(206,43,17)" fg:x="285" fg:w="8"/><text x="86.6136%" y="862.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="86.3636%" y="868" width="2.4242%" height="15" fill="rgb(239,218,39)" fg:x="285" fg:w="8"/><text x="86.6136%" y="878.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="86.3636%" y="884" width="2.4242%" height="15" fill="rgb(208,169,54)" fg:x="285" fg:w="8"/><text x="86.6136%" y="894.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="86.3636%" y="900" width="2.4242%" height="15" fill="rgb(247,25,42)" fg:x="285" fg:w="8"/><text x="86.6136%" y="910.50">_c..</text></g><g><title><module> (dask/config.py:1) (8 samples, 2.42%)</title><rect x="86.3636%" y="916" width="2.4242%" height="15" fill="rgb(226,23,31)" fg:x="285" fg:w="8"/><text x="86.6136%" y="926.50"><m..</text></g><g><title>_initialize (dask/config.py:792) (2 samples, 0.61%)</title><rect x="88.1818%" y="932" width="0.6061%" height="15" fill="rgb(247,16,28)" fg:x="291" fg:w="2"/><text x="88.4318%" y="942.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (2 samples, 0.61%)</title><rect x="88.1818%" y="948" width="0.6061%" height="15" fill="rgb(231,147,38)" fg:x="291" fg:w="2"/><text x="88.4318%" y="958.50"></text></g><g><title>load (yaml/__init__.py:74) (2 samples, 0.61%)</title><rect x="88.1818%" y="964" width="0.6061%" height="15" fill="rgb(253,81,48)" fg:x="291" fg:w="2"/><text x="88.4318%" y="974.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (2 samples, 0.61%)</title><rect x="88.1818%" y="980" width="0.6061%" height="15" fill="rgb(249,222,43)" fg:x="291" fg:w="2"/><text x="88.4318%" y="990.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (2 samples, 0.61%)</title><rect x="88.1818%" y="996" width="0.6061%" height="15" fill="rgb(221,3,27)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1006.50"></text></g><g><title>compose_document (yaml/composer.py:50) (2 samples, 0.61%)</title><rect x="88.1818%" y="1012" width="0.6061%" height="15" fill="rgb(228,180,5)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1022.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.61%)</title><rect x="88.1818%" y="1028" width="0.6061%" height="15" fill="rgb(227,131,42)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1038.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.61%)</title><rect x="88.1818%" y="1044" width="0.6061%" height="15" fill="rgb(212,3,39)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1054.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.61%)</title><rect x="88.1818%" y="1060" width="0.6061%" height="15" fill="rgb(226,45,5)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1070.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.61%)</title><rect x="88.1818%" y="1076" width="0.6061%" height="15" fill="rgb(215,167,45)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1086.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.61%)</title><rect x="88.1818%" y="1092" width="0.6061%" height="15" fill="rgb(250,218,53)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1102.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.61%)</title><rect x="88.1818%" y="1108" width="0.6061%" height="15" fill="rgb(207,140,0)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1118.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.61%)</title><rect x="88.1818%" y="1124" width="0.6061%" height="15" fill="rgb(238,133,51)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1134.50"></text></g><g><title>compose_sequence_node (yaml/composer.py:99) (2 samples, 0.61%)</title><rect x="88.1818%" y="1140" width="0.6061%" height="15" fill="rgb(218,203,53)" fg:x="291" fg:w="2"/><text x="88.4318%" y="1150.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.30%)</title><rect x="88.4848%" y="1156" width="0.3030%" height="15" fill="rgb(226,184,25)" fg:x="292" fg:w="1"/><text x="88.7348%" y="1166.50"></text></g><g><title>compose_scalar_node (yaml/composer.py:88) (1 samples, 0.30%)</title><rect x="88.4848%" y="1172" width="0.3030%" height="15" fill="rgb(231,121,21)" fg:x="292" fg:w="1"/><text x="88.7348%" y="1182.50"></text></g><g><title>resolve (yaml/resolver.py:143) (1 samples, 0.30%)</title><rect x="88.4848%" y="1188" width="0.3030%" height="15" fill="rgb(251,14,34)" fg:x="292" fg:w="1"/><text x="88.7348%" y="1198.50"></text></g><g><title>compute (dask/base.py:355) (1 samples, 0.30%)</title><rect x="88.7879%" y="100" width="0.3030%" height="15" fill="rgb(249,193,11)" fg:x="293" fg:w="1"/><text x="89.0379%" y="110.50"></text></g><g><title>compute (dask/base.py:603) (1 samples, 0.30%)</title><rect x="88.7879%" y="116" width="0.3030%" height="15" fill="rgb(220,172,37)" fg:x="293" fg:w="1"/><text x="89.0379%" y="126.50"></text></g><g><title>collections_to_dsk (dask/base.py:417) (1 samples, 0.30%)</title><rect x="88.7879%" y="132" width="0.3030%" height="15" fill="rgb(231,229,43)" fg:x="293" fg:w="1"/><text x="89.0379%" y="142.50"></text></g><g><title>optimize (dask/dataframe/optimize.py:15) (1 samples, 0.30%)</title><rect x="88.7879%" y="148" width="0.3030%" height="15" fill="rgb(250,161,5)" fg:x="293" fg:w="1"/><text x="89.0379%" y="158.50"></text></g><g><title>optimize_blockwise (dask/blockwise.py:1054) (1 samples, 0.30%)</title><rect x="88.7879%" y="164" width="0.3030%" height="15" fill="rgb(218,225,18)" fg:x="293" fg:w="1"/><text x="89.0379%" y="174.50"></text></g><g><title>_optimize_blockwise (dask/blockwise.py:1086) (1 samples, 0.30%)</title><rect x="88.7879%" y="180" width="0.3030%" height="15" fill="rgb(245,45,42)" fg:x="293" fg:w="1"/><text x="89.0379%" y="190.50"></text></g><g><title>rewrite_blockwise (dask/blockwise.py:1244) (1 samples, 0.30%)</title><rect x="88.7879%" y="196" width="0.3030%" height="15" fill="rgb(211,115,1)" fg:x="293" fg:w="1"/><text x="89.0379%" y="206.50"></text></g><g><title><dictcomp> (dask/blockwise.py:1310) (1 samples, 0.30%)</title><rect x="88.7879%" y="212" width="0.3030%" height="15" fill="rgb(248,133,52)" fg:x="293" fg:w="1"/><text x="89.0379%" y="222.50"></text></g><g><title>subs (dask/blockwise.py:201) (1 samples, 0.30%)</title><rect x="88.7879%" y="228" width="0.3030%" height="15" fill="rgb(238,100,21)" fg:x="293" fg:w="1"/><text x="89.0379%" y="238.50"></text></g><g><title><listcomp> (dask/blockwise.py:210) (1 samples, 0.30%)</title><rect x="88.7879%" y="244" width="0.3030%" height="15" fill="rgb(247,144,11)" fg:x="293" fg:w="1"/><text x="89.0379%" y="254.50"></text></g><g><title>subs (dask/blockwise.py:201) (1 samples, 0.30%)</title><rect x="88.7879%" y="260" width="0.3030%" height="15" fill="rgb(206,164,16)" fg:x="293" fg:w="1"/><text x="89.0379%" y="270.50"></text></g><g><title><listcomp> (dask/blockwise.py:210) (1 samples, 0.30%)</title><rect x="88.7879%" y="276" width="0.3030%" height="15" fill="rgb(222,34,3)" fg:x="293" fg:w="1"/><text x="89.0379%" y="286.50"></text></g><g><title>subs (dask/blockwise.py:201) (1 samples, 0.30%)</title><rect x="88.7879%" y="292" width="0.3030%" height="15" fill="rgb(248,82,4)" fg:x="293" fg:w="1"/><text x="89.0379%" y="302.50"></text></g><g><title><listcomp> (dask/blockwise.py:210) (1 samples, 0.30%)</title><rect x="88.7879%" y="308" width="0.3030%" height="15" fill="rgb(228,81,46)" fg:x="293" fg:w="1"/><text x="89.0379%" y="318.50"></text></g><g><title>subs (dask/blockwise.py:201) (1 samples, 0.30%)</title><rect x="88.7879%" y="324" width="0.3030%" height="15" fill="rgb(227,67,47)" fg:x="293" fg:w="1"/><text x="89.0379%" y="334.50"></text></g><g><title><listcomp> (dask/blockwise.py:210) (1 samples, 0.30%)</title><rect x="88.7879%" y="340" width="0.3030%" height="15" fill="rgb(215,93,53)" fg:x="293" fg:w="1"/><text x="89.0379%" y="350.50"></text></g><g><title>subs (dask/blockwise.py:201) (1 samples, 0.30%)</title><rect x="88.7879%" y="356" width="0.3030%" height="15" fill="rgb(248,194,39)" fg:x="293" fg:w="1"/><text x="89.0379%" y="366.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.0909%" y="596" width="0.3030%" height="15" fill="rgb(215,5,19)" fg:x="294" fg:w="1"/><text x="89.3409%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.0909%" y="612" width="0.3030%" height="15" fill="rgb(226,215,51)" fg:x="294" fg:w="1"/><text x="89.3409%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.0909%" y="628" width="0.3030%" height="15" fill="rgb(225,56,26)" fg:x="294" fg:w="1"/><text x="89.3409%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.0909%" y="644" width="0.3030%" height="15" fill="rgb(222,75,29)" fg:x="294" fg:w="1"/><text x="89.3409%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.0909%" y="660" width="0.3030%" height="15" fill="rgb(236,139,6)" fg:x="294" fg:w="1"/><text x="89.3409%" y="670.50"></text></g><g><title><module> (charset_normalizer/__init__.py:2) (1 samples, 0.30%)</title><rect x="89.0909%" y="676" width="0.3030%" height="15" fill="rgb(223,137,36)" fg:x="294" fg:w="1"/><text x="89.3409%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.0909%" y="692" width="0.3030%" height="15" fill="rgb(226,99,2)" fg:x="294" fg:w="1"/><text x="89.3409%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.0909%" y="708" width="0.3030%" height="15" fill="rgb(206,133,23)" fg:x="294" fg:w="1"/><text x="89.3409%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.0909%" y="724" width="0.3030%" height="15" fill="rgb(243,173,15)" fg:x="294" fg:w="1"/><text x="89.3409%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.0909%" y="740" width="0.3030%" height="15" fill="rgb(228,69,28)" fg:x="294" fg:w="1"/><text x="89.3409%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.0909%" y="756" width="0.3030%" height="15" fill="rgb(212,51,22)" fg:x="294" fg:w="1"/><text x="89.3409%" y="766.50"></text></g><g><title><module> (charset_normalizer/api.py:1) (1 samples, 0.30%)</title><rect x="89.0909%" y="772" width="0.3030%" height="15" fill="rgb(227,113,0)" fg:x="294" fg:w="1"/><text x="89.3409%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.0909%" y="788" width="0.3030%" height="15" fill="rgb(252,84,27)" fg:x="294" fg:w="1"/><text x="89.3409%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.0909%" y="804" width="0.3030%" height="15" fill="rgb(223,145,39)" fg:x="294" fg:w="1"/><text x="89.3409%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.0909%" y="820" width="0.3030%" height="15" fill="rgb(239,219,30)" fg:x="294" fg:w="1"/><text x="89.3409%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.0909%" y="836" width="0.3030%" height="15" fill="rgb(224,196,39)" fg:x="294" fg:w="1"/><text x="89.3409%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.0909%" y="852" width="0.3030%" height="15" fill="rgb(205,35,43)" fg:x="294" fg:w="1"/><text x="89.3409%" y="862.50"></text></g><g><title><module> (charset_normalizer/cd.py:1) (1 samples, 0.30%)</title><rect x="89.0909%" y="868" width="0.3030%" height="15" fill="rgb(228,201,21)" fg:x="294" fg:w="1"/><text x="89.3409%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.0909%" y="884" width="0.3030%" height="15" fill="rgb(237,118,16)" fg:x="294" fg:w="1"/><text x="89.3409%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.0909%" y="900" width="0.3030%" height="15" fill="rgb(241,17,19)" fg:x="294" fg:w="1"/><text x="89.3409%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.0909%" y="916" width="0.3030%" height="15" fill="rgb(214,10,25)" fg:x="294" fg:w="1"/><text x="89.3409%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="89.0909%" y="932" width="0.3030%" height="15" fill="rgb(238,37,29)" fg:x="294" fg:w="1"/><text x="89.3409%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="89.0909%" y="948" width="0.3030%" height="15" fill="rgb(253,83,25)" fg:x="294" fg:w="1"/><text x="89.3409%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.0909%" y="964" width="0.3030%" height="15" fill="rgb(234,192,12)" fg:x="294" fg:w="1"/><text x="89.3409%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.0909%" y="980" width="0.3030%" height="15" fill="rgb(241,216,45)" fg:x="294" fg:w="1"/><text x="89.3409%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.0909%" y="996" width="0.3030%" height="15" fill="rgb(242,22,33)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1006.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="89.0909%" y="1012" width="0.3030%" height="15" fill="rgb(231,105,49)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1022.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="89.0909%" y="1028" width="0.3030%" height="15" fill="rgb(218,204,15)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1038.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="89.0909%" y="1044" width="0.3030%" height="15" fill="rgb(235,138,41)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1054.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="89.0909%" y="1060" width="0.3030%" height="15" fill="rgb(246,0,9)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1070.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="89.0909%" y="1076" width="0.3030%" height="15" fill="rgb(210,74,4)" fg:x="294" fg:w="1"/><text x="89.3409%" y="1086.50"></text></g><g><title><module> (requests/exceptions.py:1) (2 samples, 0.61%)</title><rect x="89.0909%" y="484" width="0.6061%" height="15" fill="rgb(250,60,41)" fg:x="294" fg:w="2"/><text x="89.3409%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="89.0909%" y="500" width="0.6061%" height="15" fill="rgb(220,115,12)" fg:x="294" fg:w="2"/><text x="89.3409%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="89.0909%" y="516" width="0.6061%" height="15" fill="rgb(237,100,13)" fg:x="294" fg:w="2"/><text x="89.3409%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="89.0909%" y="532" width="0.6061%" height="15" fill="rgb(213,55,26)" fg:x="294" fg:w="2"/><text x="89.3409%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="89.0909%" y="548" width="0.6061%" height="15" fill="rgb(216,17,4)" fg:x="294" fg:w="2"/><text x="89.3409%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="89.0909%" y="564" width="0.6061%" height="15" fill="rgb(220,153,47)" fg:x="294" fg:w="2"/><text x="89.3409%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (2 samples, 0.61%)</title><rect x="89.0909%" y="580" width="0.6061%" height="15" fill="rgb(215,131,9)" fg:x="294" fg:w="2"/><text x="89.3409%" y="590.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="89.3939%" y="596" width="0.3030%" height="15" fill="rgb(233,46,42)" fg:x="295" fg:w="1"/><text x="89.6439%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.3939%" y="612" width="0.3030%" height="15" fill="rgb(226,86,7)" fg:x="295" fg:w="1"/><text x="89.6439%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.3939%" y="628" width="0.3030%" height="15" fill="rgb(239,226,21)" fg:x="295" fg:w="1"/><text x="89.6439%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.3939%" y="644" width="0.3030%" height="15" fill="rgb(244,137,22)" fg:x="295" fg:w="1"/><text x="89.6439%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.3939%" y="660" width="0.3030%" height="15" fill="rgb(211,139,35)" fg:x="295" fg:w="1"/><text x="89.6439%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.3939%" y="676" width="0.3030%" height="15" fill="rgb(214,62,50)" fg:x="295" fg:w="1"/><text x="89.6439%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.3939%" y="692" width="0.3030%" height="15" fill="rgb(212,113,44)" fg:x="295" fg:w="1"/><text x="89.6439%" y="702.50"></text></g><g><title><module> (http/cookiejar.py:1) (1 samples, 0.30%)</title><rect x="89.3939%" y="708" width="0.3030%" height="15" fill="rgb(226,150,43)" fg:x="295" fg:w="1"/><text x="89.6439%" y="718.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.30%)</title><rect x="89.3939%" y="724" width="0.3030%" height="15" fill="rgb(250,71,37)" fg:x="295" fg:w="1"/><text x="89.6439%" y="734.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.30%)</title><rect x="89.3939%" y="740" width="0.3030%" height="15" fill="rgb(219,76,19)" fg:x="295" fg:w="1"/><text x="89.6439%" y="750.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.30%)</title><rect x="89.3939%" y="756" width="0.3030%" height="15" fill="rgb(250,39,11)" fg:x="295" fg:w="1"/><text x="89.6439%" y="766.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.30%)</title><rect x="89.3939%" y="772" width="0.3030%" height="15" fill="rgb(230,64,31)" fg:x="295" fg:w="1"/><text x="89.6439%" y="782.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.30%)</title><rect x="89.3939%" y="788" width="0.3030%" height="15" fill="rgb(208,222,23)" fg:x="295" fg:w="1"/><text x="89.6439%" y="798.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.30%)</title><rect x="89.3939%" y="804" width="0.3030%" height="15" fill="rgb(227,125,18)" fg:x="295" fg:w="1"/><text x="89.6439%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.6970%" y="500" width="0.3030%" height="15" fill="rgb(234,210,9)" fg:x="296" fg:w="1"/><text x="89.9470%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.6970%" y="516" width="0.3030%" height="15" fill="rgb(217,127,24)" fg:x="296" fg:w="1"/><text x="89.9470%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.6970%" y="532" width="0.3030%" height="15" fill="rgb(239,141,48)" fg:x="296" fg:w="1"/><text x="89.9470%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.6970%" y="548" width="0.3030%" height="15" fill="rgb(227,109,8)" fg:x="296" fg:w="1"/><text x="89.9470%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.6970%" y="564" width="0.3030%" height="15" fill="rgb(235,184,23)" fg:x="296" fg:w="1"/><text x="89.9470%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (1 samples, 0.30%)</title><rect x="89.6970%" y="580" width="0.3030%" height="15" fill="rgb(227,226,48)" fg:x="296" fg:w="1"/><text x="89.9470%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.6970%" y="596" width="0.3030%" height="15" fill="rgb(206,150,11)" fg:x="296" fg:w="1"/><text x="89.9470%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.6970%" y="612" width="0.3030%" height="15" fill="rgb(254,2,33)" fg:x="296" fg:w="1"/><text x="89.9470%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.6970%" y="628" width="0.3030%" height="15" fill="rgb(243,160,20)" fg:x="296" fg:w="1"/><text x="89.9470%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.6970%" y="644" width="0.3030%" height="15" fill="rgb(218,208,30)" fg:x="296" fg:w="1"/><text x="89.9470%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.6970%" y="660" width="0.3030%" height="15" fill="rgb(224,120,49)" fg:x="296" fg:w="1"/><text x="89.9470%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.6970%" y="676" width="0.3030%" height="15" fill="rgb(246,12,2)" fg:x="296" fg:w="1"/><text x="89.9470%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.6970%" y="692" width="0.3030%" height="15" fill="rgb(236,117,3)" fg:x="296" fg:w="1"/><text x="89.9470%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.6970%" y="708" width="0.3030%" height="15" fill="rgb(216,128,52)" fg:x="296" fg:w="1"/><text x="89.9470%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (1 samples, 0.30%)</title><rect x="89.6970%" y="724" width="0.3030%" height="15" fill="rgb(246,145,19)" fg:x="296" fg:w="1"/><text x="89.9470%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.6970%" y="740" width="0.3030%" height="15" fill="rgb(222,11,46)" fg:x="296" fg:w="1"/><text x="89.9470%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.6970%" y="756" width="0.3030%" height="15" fill="rgb(245,82,36)" fg:x="296" fg:w="1"/><text x="89.9470%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="89.6970%" y="772" width="0.3030%" height="15" fill="rgb(250,73,51)" fg:x="296" fg:w="1"/><text x="89.9470%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="89.6970%" y="788" width="0.3030%" height="15" fill="rgb(221,189,23)" fg:x="296" fg:w="1"/><text x="89.9470%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="89.6970%" y="804" width="0.3030%" height="15" fill="rgb(210,33,7)" fg:x="296" fg:w="1"/><text x="89.9470%" y="814.50"></text></g><g><title><module> (urllib3/util/request.py:1) (1 samples, 0.30%)</title><rect x="89.6970%" y="820" width="0.3030%" height="15" fill="rgb(210,107,22)" fg:x="296" fg:w="1"/><text x="89.9470%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="89.6970%" y="836" width="0.3030%" height="15" fill="rgb(222,116,37)" fg:x="296" fg:w="1"/><text x="89.9470%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="89.6970%" y="852" width="0.3030%" height="15" fill="rgb(254,17,48)" fg:x="296" fg:w="1"/><text x="89.9470%" y="862.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="89.6970%" y="868" width="0.3030%" height="15" fill="rgb(224,36,32)" fg:x="296" fg:w="1"/><text x="89.9470%" y="878.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.30%)</title><rect x="89.6970%" y="884" width="0.3030%" height="15" fill="rgb(232,90,46)" fg:x="296" fg:w="1"/><text x="89.9470%" y="894.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.30%)</title><rect x="89.6970%" y="900" width="0.3030%" height="15" fill="rgb(241,66,40)" fg:x="296" fg:w="1"/><text x="89.9470%" y="910.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.30%)</title><rect x="89.6970%" y="916" width="0.3030%" height="15" fill="rgb(249,184,29)" fg:x="296" fg:w="1"/><text x="89.9470%" y="926.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.30%)</title><rect x="89.6970%" y="932" width="0.3030%" height="15" fill="rgb(231,181,1)" fg:x="296" fg:w="1"/><text x="89.9470%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="89.0909%" y="116" width="1.2121%" height="15" fill="rgb(224,94,2)" fg:x="294" fg:w="4"/><text x="89.3409%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="89.0909%" y="132" width="1.2121%" height="15" fill="rgb(229,170,15)" fg:x="294" fg:w="4"/><text x="89.3409%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="89.0909%" y="148" width="1.2121%" height="15" fill="rgb(240,127,35)" fg:x="294" fg:w="4"/><text x="89.3409%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="89.0909%" y="164" width="1.2121%" height="15" fill="rgb(248,196,34)" fg:x="294" fg:w="4"/><text x="89.3409%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="89.0909%" y="180" width="1.2121%" height="15" fill="rgb(236,137,7)" fg:x="294" fg:w="4"/><text x="89.3409%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (4 samples, 1.21%)</title><rect x="89.0909%" y="196" width="1.2121%" height="15" fill="rgb(235,127,16)" fg:x="294" fg:w="4"/><text x="89.3409%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="89.0909%" y="212" width="1.2121%" height="15" fill="rgb(250,192,54)" fg:x="294" fg:w="4"/><text x="89.3409%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="89.0909%" y="228" width="1.2121%" height="15" fill="rgb(218,98,20)" fg:x="294" fg:w="4"/><text x="89.3409%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="89.0909%" y="244" width="1.2121%" height="15" fill="rgb(230,176,47)" fg:x="294" fg:w="4"/><text x="89.3409%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="89.0909%" y="260" width="1.2121%" height="15" fill="rgb(244,2,33)" fg:x="294" fg:w="4"/><text x="89.3409%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="89.0909%" y="276" width="1.2121%" height="15" fill="rgb(231,100,17)" fg:x="294" fg:w="4"/><text x="89.3409%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (4 samples, 1.21%)</title><rect x="89.0909%" y="292" width="1.2121%" height="15" fill="rgb(245,23,12)" fg:x="294" fg:w="4"/><text x="89.3409%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="89.0909%" y="308" width="1.2121%" height="15" fill="rgb(249,55,22)" fg:x="294" fg:w="4"/><text x="89.3409%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="89.0909%" y="324" width="1.2121%" height="15" fill="rgb(207,134,9)" fg:x="294" fg:w="4"/><text x="89.3409%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="89.0909%" y="340" width="1.2121%" height="15" fill="rgb(218,134,0)" fg:x="294" fg:w="4"/><text x="89.3409%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="89.0909%" y="356" width="1.2121%" height="15" fill="rgb(213,212,33)" fg:x="294" fg:w="4"/><text x="89.3409%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="89.0909%" y="372" width="1.2121%" height="15" fill="rgb(252,106,18)" fg:x="294" fg:w="4"/><text x="89.3409%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (4 samples, 1.21%)</title><rect x="89.0909%" y="388" width="1.2121%" height="15" fill="rgb(208,126,42)" fg:x="294" fg:w="4"/><text x="89.3409%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="89.0909%" y="404" width="1.2121%" height="15" fill="rgb(246,175,29)" fg:x="294" fg:w="4"/><text x="89.3409%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="89.0909%" y="420" width="1.2121%" height="15" fill="rgb(215,13,50)" fg:x="294" fg:w="4"/><text x="89.3409%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="89.0909%" y="436" width="1.2121%" height="15" fill="rgb(216,172,15)" fg:x="294" fg:w="4"/><text x="89.3409%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="89.0909%" y="452" width="1.2121%" height="15" fill="rgb(212,103,13)" fg:x="294" fg:w="4"/><text x="89.3409%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="89.0909%" y="468" width="1.2121%" height="15" fill="rgb(231,171,36)" fg:x="294" fg:w="4"/><text x="89.3409%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (2 samples, 0.61%)</title><rect x="89.6970%" y="484" width="0.6061%" height="15" fill="rgb(250,123,20)" fg:x="296" fg:w="2"/><text x="89.9470%" y="494.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="90.0000%" y="500" width="0.3030%" height="15" fill="rgb(212,53,50)" fg:x="297" fg:w="1"/><text x="90.2500%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="90.0000%" y="516" width="0.3030%" height="15" fill="rgb(243,54,12)" fg:x="297" fg:w="1"/><text x="90.2500%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="90.0000%" y="532" width="0.3030%" height="15" fill="rgb(234,101,34)" fg:x="297" fg:w="1"/><text x="90.2500%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="90.0000%" y="548" width="0.3030%" height="15" fill="rgb(254,67,22)" fg:x="297" fg:w="1"/><text x="90.2500%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="90.0000%" y="564" width="0.3030%" height="15" fill="rgb(250,35,47)" fg:x="297" fg:w="1"/><text x="90.2500%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="90.0000%" y="580" width="0.3030%" height="15" fill="rgb(226,126,38)" fg:x="297" fg:w="1"/><text x="90.2500%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="90.0000%" y="596" width="0.3030%" height="15" fill="rgb(216,138,53)" fg:x="297" fg:w="1"/><text x="90.2500%" y="606.50"></text></g><g><title><module> (urllib3/exceptions.py:1) (1 samples, 0.30%)</title><rect x="90.0000%" y="612" width="0.3030%" height="15" fill="rgb(246,199,43)" fg:x="297" fg:w="1"/><text x="90.2500%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="90.3030%" y="1156" width="0.3030%" height="15" fill="rgb(232,125,11)" fg:x="298" fg:w="1"/><text x="90.5530%" y="1166.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="90.3030%" y="1172" width="0.3030%" height="15" fill="rgb(218,219,45)" fg:x="298" fg:w="1"/><text x="90.5530%" y="1182.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="90.3030%" y="1188" width="0.3030%" height="15" fill="rgb(216,102,54)" fg:x="298" fg:w="1"/><text x="90.5530%" y="1198.50"></text></g><g><title><module> (auth/__init__.py:15) (2 samples, 0.61%)</title><rect x="90.3030%" y="964" width="0.6061%" height="15" fill="rgb(250,228,7)" fg:x="298" fg:w="2"/><text x="90.5530%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="90.3030%" y="980" width="0.6061%" height="15" fill="rgb(226,125,25)" fg:x="298" fg:w="2"/><text x="90.5530%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="90.3030%" y="996" width="0.6061%" height="15" fill="rgb(224,165,27)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="90.3030%" y="1012" width="0.6061%" height="15" fill="rgb(233,86,3)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="90.3030%" y="1028" width="0.6061%" height="15" fill="rgb(228,116,20)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="90.3030%" y="1044" width="0.6061%" height="15" fill="rgb(209,192,17)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1054.50"></text></g><g><title><module> (auth/_default.py:15) (2 samples, 0.61%)</title><rect x="90.3030%" y="1060" width="0.6061%" height="15" fill="rgb(224,88,34)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1070.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="90.3030%" y="1076" width="0.6061%" height="15" fill="rgb(233,38,6)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="90.3030%" y="1092" width="0.6061%" height="15" fill="rgb(212,59,30)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="90.3030%" y="1108" width="0.6061%" height="15" fill="rgb(213,80,3)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="90.3030%" y="1124" width="0.6061%" height="15" fill="rgb(251,178,7)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="90.3030%" y="1140" width="0.6061%" height="15" fill="rgb(213,154,26)" fg:x="298" fg:w="2"/><text x="90.5530%" y="1150.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="90.6061%" y="1156" width="0.3030%" height="15" fill="rgb(238,165,49)" fg:x="299" fg:w="1"/><text x="90.8561%" y="1166.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.30%)</title><rect x="90.6061%" y="1172" width="0.3030%" height="15" fill="rgb(248,91,46)" fg:x="299" fg:w="1"/><text x="90.8561%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="90.3030%" y="788" width="1.2121%" height="15" fill="rgb(244,21,52)" fg:x="298" fg:w="4"/><text x="90.5530%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="90.3030%" y="804" width="1.2121%" height="15" fill="rgb(247,122,20)" fg:x="298" fg:w="4"/><text x="90.5530%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="90.3030%" y="820" width="1.2121%" height="15" fill="rgb(218,27,9)" fg:x="298" fg:w="4"/><text x="90.5530%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="90.3030%" y="836" width="1.2121%" height="15" fill="rgb(246,7,6)" fg:x="298" fg:w="4"/><text x="90.5530%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="90.3030%" y="852" width="1.2121%" height="15" fill="rgb(227,135,54)" fg:x="298" fg:w="4"/><text x="90.5530%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (4 samples, 1.21%)</title><rect x="90.3030%" y="868" width="1.2121%" height="15" fill="rgb(247,14,11)" fg:x="298" fg:w="4"/><text x="90.5530%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="90.3030%" y="884" width="1.2121%" height="15" fill="rgb(206,149,34)" fg:x="298" fg:w="4"/><text x="90.5530%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="90.3030%" y="900" width="1.2121%" height="15" fill="rgb(227,228,4)" fg:x="298" fg:w="4"/><text x="90.5530%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="90.3030%" y="916" width="1.2121%" height="15" fill="rgb(238,218,28)" fg:x="298" fg:w="4"/><text x="90.5530%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="90.3030%" y="932" width="1.2121%" height="15" fill="rgb(252,86,40)" fg:x="298" fg:w="4"/><text x="90.5530%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="90.3030%" y="948" width="1.2121%" height="15" fill="rgb(251,225,11)" fg:x="298" fg:w="4"/><text x="90.5530%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (2 samples, 0.61%)</title><rect x="90.9091%" y="964" width="0.6061%" height="15" fill="rgb(206,46,49)" fg:x="300" fg:w="2"/><text x="91.1591%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="90.9091%" y="980" width="0.6061%" height="15" fill="rgb(245,128,24)" fg:x="300" fg:w="2"/><text x="91.1591%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="90.9091%" y="996" width="0.6061%" height="15" fill="rgb(219,177,34)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="90.9091%" y="1012" width="0.6061%" height="15" fill="rgb(218,60,48)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="90.9091%" y="1028" width="0.6061%" height="15" fill="rgb(221,11,5)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="90.9091%" y="1044" width="0.6061%" height="15" fill="rgb(220,148,13)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="90.9091%" y="1060" width="0.6061%" height="15" fill="rgb(210,16,3)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="90.9091%" y="1076" width="0.6061%" height="15" fill="rgb(236,80,2)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (2 samples, 0.61%)</title><rect x="90.9091%" y="1092" width="0.6061%" height="15" fill="rgb(239,129,19)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="90.9091%" y="1108" width="0.6061%" height="15" fill="rgb(220,106,35)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="90.9091%" y="1124" width="0.6061%" height="15" fill="rgb(252,139,45)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="90.9091%" y="1140" width="0.6061%" height="15" fill="rgb(229,8,36)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="90.9091%" y="1156" width="0.6061%" height="15" fill="rgb(230,126,33)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="90.9091%" y="1172" width="0.6061%" height="15" fill="rgb(239,140,21)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (2 samples, 0.61%)</title><rect x="90.9091%" y="1188" width="0.6061%" height="15" fill="rgb(254,104,9)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="90.9091%" y="1204" width="0.6061%" height="15" fill="rgb(239,52,14)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="90.9091%" y="1220" width="0.6061%" height="15" fill="rgb(208,227,44)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="90.9091%" y="1236" width="0.6061%" height="15" fill="rgb(246,18,19)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="90.9091%" y="1252" width="0.6061%" height="15" fill="rgb(235,228,25)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1262.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="90.9091%" y="1268" width="0.6061%" height="15" fill="rgb(240,156,20)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1278.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.61%)</title><rect x="90.9091%" y="1284" width="0.6061%" height="15" fill="rgb(224,8,20)" fg:x="300" fg:w="2"/><text x="91.1591%" y="1294.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.30%)</title><rect x="91.5152%" y="1492" width="0.3030%" height="15" fill="rgb(214,12,52)" fg:x="302" fg:w="1"/><text x="91.7652%" y="1502.50"></text></g><g><title>find_spec (_distutils_hack/__init__.py:89) (1 samples, 0.30%)</title><rect x="91.5152%" y="1508" width="0.3030%" height="15" fill="rgb(211,220,47)" fg:x="302" fg:w="1"/><text x="91.7652%" y="1518.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (3 samples, 0.91%)</title><rect x="91.8182%" y="1636" width="0.9091%" height="15" fill="rgb(250,173,5)" fg:x="303" fg:w="3"/><text x="92.0682%" y="1646.50"></text></g><g><title>TBSCertList (pyasn1_modules/rfc2459.py:1269) (1 samples, 0.30%)</title><rect x="92.4242%" y="1652" width="0.3030%" height="15" fill="rgb(250,125,52)" fg:x="305" fg:w="1"/><text x="92.6742%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/univ.py:102) (1 samples, 0.30%)</title><rect x="92.4242%" y="1668" width="0.3030%" height="15" fill="rgb(209,133,18)" fg:x="305" fg:w="1"/><text x="92.6742%" y="1678.50"></text></g><g><title>__init__ (pyasn1/type/base.py:261) (1 samples, 0.30%)</title><rect x="92.4242%" y="1684" width="0.3030%" height="15" fill="rgb(216,173,22)" fg:x="305" fg:w="1"/><text x="92.6742%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="91.5152%" y="1396" width="1.5152%" height="15" fill="rgb(205,3,22)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1406.50"></text></g><g><title><module> (auth/crypt/rsa.py:15) (5 samples, 1.52%)</title><rect x="91.5152%" y="1412" width="1.5152%" height="15" fill="rgb(248,22,20)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1422.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.52%)</title><rect x="91.5152%" y="1428" width="1.5152%" height="15" fill="rgb(233,6,29)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.52%)</title><rect x="91.5152%" y="1444" width="1.5152%" height="15" fill="rgb(240,22,54)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1454.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.52%)</title><rect x="91.5152%" y="1460" width="1.5152%" height="15" fill="rgb(231,133,32)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1470.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.52%)</title><rect x="91.5152%" y="1476" width="1.5152%" height="15" fill="rgb(248,193,4)" fg:x="302" fg:w="5"/><text x="91.7652%" y="1486.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="91.8182%" y="1492" width="1.2121%" height="15" fill="rgb(211,178,46)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1502.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="91.8182%" y="1508" width="1.2121%" height="15" fill="rgb(224,5,42)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1518.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="91.8182%" y="1524" width="1.2121%" height="15" fill="rgb(239,176,25)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1534.50"></text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (4 samples, 1.21%)</title><rect x="91.8182%" y="1540" width="1.2121%" height="15" fill="rgb(245,187,50)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1550.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.21%)</title><rect x="91.8182%" y="1556" width="1.2121%" height="15" fill="rgb(248,24,15)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1566.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.21%)</title><rect x="91.8182%" y="1572" width="1.2121%" height="15" fill="rgb(205,166,13)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1582.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.21%)</title><rect x="91.8182%" y="1588" width="1.2121%" height="15" fill="rgb(208,114,23)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1598.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.21%)</title><rect x="91.8182%" y="1604" width="1.2121%" height="15" fill="rgb(239,127,18)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.21%)</title><rect x="91.8182%" y="1620" width="1.2121%" height="15" fill="rgb(219,154,28)" fg:x="303" fg:w="4"/><text x="92.0682%" y="1630.50"></text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (1 samples, 0.30%)</title><rect x="92.7273%" y="1636" width="0.3030%" height="15" fill="rgb(225,157,23)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="92.7273%" y="1652" width="0.3030%" height="15" fill="rgb(219,8,6)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="92.7273%" y="1668" width="0.3030%" height="15" fill="rgb(212,47,6)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="92.7273%" y="1684" width="0.3030%" height="15" fill="rgb(224,190,4)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="92.7273%" y="1700" width="0.3030%" height="15" fill="rgb(239,183,29)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="92.7273%" y="1716" width="0.3030%" height="15" fill="rgb(213,57,7)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="92.7273%" y="1732" width="0.3030%" height="15" fill="rgb(216,148,1)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="92.7273%" y="1748" width="0.3030%" height="15" fill="rgb(236,182,29)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (1 samples, 0.30%)</title><rect x="92.7273%" y="1764" width="0.3030%" height="15" fill="rgb(244,120,48)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1774.50"></text></g><g><title>Filter2 (pyasn1_modules/rfc2251.py:205) (1 samples, 0.30%)</title><rect x="92.7273%" y="1780" width="0.3030%" height="15" fill="rgb(206,71,34)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1790.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.30%)</title><rect x="92.7273%" y="1796" width="0.3030%" height="15" fill="rgb(242,32,6)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1806.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.30%)</title><rect x="92.7273%" y="1812" width="0.3030%" height="15" fill="rgb(241,35,3)" fg:x="306" fg:w="1"/><text x="92.9773%" y="1822.50"></text></g><g><title><module> (auth/_service_account_info.py:15) (6 samples, 1.82%)</title><rect x="91.5152%" y="1156" width="1.8182%" height="15" fill="rgb(222,62,19)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1166.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.82%)</title><rect x="91.5152%" y="1172" width="1.8182%" height="15" fill="rgb(223,110,41)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1182.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="91.5152%" y="1188" width="1.8182%" height="15" fill="rgb(208,224,4)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1198.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="91.5152%" y="1204" width="1.8182%" height="15" fill="rgb(241,137,19)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1214.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="91.5152%" y="1220" width="1.8182%" height="15" fill="rgb(244,24,17)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1230.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="91.5152%" y="1236" width="1.8182%" height="15" fill="rgb(245,178,49)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1246.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="91.5152%" y="1252" width="1.8182%" height="15" fill="rgb(219,160,38)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1262.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="91.5152%" y="1268" width="1.8182%" height="15" fill="rgb(228,137,14)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1278.50">_..</text></g><g><title><module> (auth/crypt/__init__.py:15) (6 samples, 1.82%)</title><rect x="91.5152%" y="1284" width="1.8182%" height="15" fill="rgb(237,134,11)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1294.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.82%)</title><rect x="91.5152%" y="1300" width="1.8182%" height="15" fill="rgb(211,126,44)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1310.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="91.5152%" y="1316" width="1.8182%" height="15" fill="rgb(226,171,33)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1326.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="91.5152%" y="1332" width="1.8182%" height="15" fill="rgb(253,99,13)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1342.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="91.5152%" y="1348" width="1.8182%" height="15" fill="rgb(244,48,7)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1358.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="91.5152%" y="1364" width="1.8182%" height="15" fill="rgb(244,217,54)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1374.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="91.5152%" y="1380" width="1.8182%" height="15" fill="rgb(224,15,18)" fg:x="302" fg:w="6"/><text x="91.7652%" y="1390.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="93.0303%" y="1396" width="0.3030%" height="15" fill="rgb(244,99,12)" fg:x="307" fg:w="1"/><text x="93.2803%" y="1406.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.30%)</title><rect x="93.0303%" y="1412" width="0.3030%" height="15" fill="rgb(233,226,8)" fg:x="307" fg:w="1"/><text x="93.2803%" y="1422.50"></text></g><g><title><module> (ee/_cloud_api_utils.py:1) (12 samples, 3.64%)</title><rect x="90.3030%" y="772" width="3.6364%" height="15" fill="rgb(229,211,3)" fg:x="298" fg:w="12"/><text x="90.5530%" y="782.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.42%)</title><rect x="91.5152%" y="788" width="2.4242%" height="15" fill="rgb(216,140,21)" fg:x="302" fg:w="8"/><text x="91.7652%" y="798.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="804" width="2.4242%" height="15" fill="rgb(234,122,30)" fg:x="302" fg:w="8"/><text x="91.7652%" y="814.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="91.5152%" y="820" width="2.4242%" height="15" fill="rgb(236,25,46)" fg:x="302" fg:w="8"/><text x="91.7652%" y="830.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="91.5152%" y="836" width="2.4242%" height="15" fill="rgb(217,52,54)" fg:x="302" fg:w="8"/><text x="91.7652%" y="846.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="91.5152%" y="852" width="2.4242%" height="15" fill="rgb(222,29,26)" fg:x="302" fg:w="8"/><text x="91.7652%" y="862.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="91.5152%" y="868" width="2.4242%" height="15" fill="rgb(216,177,29)" fg:x="302" fg:w="8"/><text x="91.7652%" y="878.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="884" width="2.4242%" height="15" fill="rgb(247,136,51)" fg:x="302" fg:w="8"/><text x="91.7652%" y="894.50">_c..</text></g><g><title><module> (googleapiclient/discovery.py:15) (8 samples, 2.42%)</title><rect x="91.5152%" y="900" width="2.4242%" height="15" fill="rgb(231,47,47)" fg:x="302" fg:w="8"/><text x="91.7652%" y="910.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.42%)</title><rect x="91.5152%" y="916" width="2.4242%" height="15" fill="rgb(211,192,36)" fg:x="302" fg:w="8"/><text x="91.7652%" y="926.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="932" width="2.4242%" height="15" fill="rgb(229,156,32)" fg:x="302" fg:w="8"/><text x="91.7652%" y="942.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="91.5152%" y="948" width="2.4242%" height="15" fill="rgb(248,213,20)" fg:x="302" fg:w="8"/><text x="91.7652%" y="958.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="91.5152%" y="964" width="2.4242%" height="15" fill="rgb(217,64,7)" fg:x="302" fg:w="8"/><text x="91.7652%" y="974.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="91.5152%" y="980" width="2.4242%" height="15" fill="rgb(232,142,8)" fg:x="302" fg:w="8"/><text x="91.7652%" y="990.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="91.5152%" y="996" width="2.4242%" height="15" fill="rgb(224,92,44)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1006.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="1012" width="2.4242%" height="15" fill="rgb(214,169,17)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1022.50">_c..</text></g><g><title><module> (oauth2/service_account.py:15) (8 samples, 2.42%)</title><rect x="91.5152%" y="1028" width="2.4242%" height="15" fill="rgb(210,59,37)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1038.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 2.42%)</title><rect x="91.5152%" y="1044" width="2.4242%" height="15" fill="rgb(214,116,48)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1054.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="1060" width="2.4242%" height="15" fill="rgb(244,191,6)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1070.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.42%)</title><rect x="91.5152%" y="1076" width="2.4242%" height="15" fill="rgb(241,50,52)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1086.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.42%)</title><rect x="91.5152%" y="1092" width="2.4242%" height="15" fill="rgb(236,75,39)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1102.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.42%)</title><rect x="91.5152%" y="1108" width="2.4242%" height="15" fill="rgb(236,99,0)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1118.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.42%)</title><rect x="91.5152%" y="1124" width="2.4242%" height="15" fill="rgb(207,202,15)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1134.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.42%)</title><rect x="91.5152%" y="1140" width="2.4242%" height="15" fill="rgb(233,207,14)" fg:x="302" fg:w="8"/><text x="91.7652%" y="1150.50">_c..</text></g><g><title><module> (auth/jwt.py:15) (2 samples, 0.61%)</title><rect x="93.3333%" y="1156" width="0.6061%" height="15" fill="rgb(226,27,51)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="93.3333%" y="1172" width="0.6061%" height="15" fill="rgb(206,104,42)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="93.3333%" y="1188" width="0.6061%" height="15" fill="rgb(212,225,4)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="93.3333%" y="1204" width="0.6061%" height="15" fill="rgb(233,96,42)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="93.3333%" y="1220" width="0.6061%" height="15" fill="rgb(229,21,32)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="93.3333%" y="1236" width="0.6061%" height="15" fill="rgb(226,216,24)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1246.50"></text></g><g><title><module> (cachetools/__init__.py:1) (2 samples, 0.61%)</title><rect x="93.3333%" y="1252" width="0.6061%" height="15" fill="rgb(221,163,17)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1262.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (2 samples, 0.61%)</title><rect x="93.3333%" y="1268" width="0.6061%" height="15" fill="rgb(216,216,42)" fg:x="308" fg:w="2"/><text x="93.5833%" y="1278.50"></text></g><g><title><module> (ee/computedobject.py:1) (1 samples, 0.30%)</title><rect x="93.9394%" y="900" width="0.3030%" height="15" fill="rgb(240,118,7)" fg:x="310" fg:w="1"/><text x="94.1894%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="93.9394%" y="916" width="0.3030%" height="15" fill="rgb(221,67,37)" fg:x="310" fg:w="1"/><text x="94.1894%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="93.9394%" y="932" width="0.3030%" height="15" fill="rgb(241,32,44)" fg:x="310" fg:w="1"/><text x="94.1894%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="93.9394%" y="948" width="0.3030%" height="15" fill="rgb(235,204,43)" fg:x="310" fg:w="1"/><text x="94.1894%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="93.9394%" y="964" width="0.3030%" height="15" fill="rgb(213,116,10)" fg:x="310" fg:w="1"/><text x="94.1894%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="93.9394%" y="980" width="0.3030%" height="15" fill="rgb(239,15,48)" fg:x="310" fg:w="1"/><text x="94.1894%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="93.9394%" y="996" width="0.3030%" height="15" fill="rgb(207,123,36)" fg:x="310" fg:w="1"/><text x="94.1894%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="93.9394%" y="1012" width="0.3030%" height="15" fill="rgb(209,103,30)" fg:x="310" fg:w="1"/><text x="94.1894%" y="1022.50"></text></g><g><title><module> (ee/serializer.py:1) (1 samples, 0.30%)</title><rect x="93.9394%" y="1028" width="0.3030%" height="15" fill="rgb(238,100,19)" fg:x="310" fg:w="1"/><text x="94.1894%" y="1038.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.30%)</title><rect x="93.9394%" y="1044" width="0.3030%" height="15" fill="rgb(244,30,14)" fg:x="310" fg:w="1"/><text x="94.1894%" y="1054.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.30%)</title><rect x="93.9394%" y="1060" width="0.3030%" height="15" fill="rgb(249,174,6)" fg:x="310" fg:w="1"/><text x="94.1894%" y="1070.50"></text></g><g><title><module> (ee/data.py:1) (2 samples, 0.61%)</title><rect x="93.9394%" y="772" width="0.6061%" height="15" fill="rgb(235,213,41)" fg:x="310" fg:w="2"/><text x="94.1894%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.61%)</title><rect x="93.9394%" y="788" width="0.6061%" height="15" fill="rgb(213,118,6)" fg:x="310" fg:w="2"/><text x="94.1894%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="93.9394%" y="804" width="0.6061%" height="15" fill="rgb(235,44,51)" fg:x="310" fg:w="2"/><text x="94.1894%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="93.9394%" y="820" width="0.6061%" height="15" fill="rgb(217,9,53)" fg:x="310" fg:w="2"/><text x="94.1894%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="93.9394%" y="836" width="0.6061%" height="15" fill="rgb(237,172,34)" fg:x="310" fg:w="2"/><text x="94.1894%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="93.9394%" y="852" width="0.6061%" height="15" fill="rgb(206,206,11)" fg:x="310" fg:w="2"/><text x="94.1894%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="93.9394%" y="868" width="0.6061%" height="15" fill="rgb(214,149,29)" fg:x="310" fg:w="2"/><text x="94.1894%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="93.9394%" y="884" width="0.6061%" height="15" fill="rgb(208,123,3)" fg:x="310" fg:w="2"/><text x="94.1894%" y="894.50"></text></g><g><title><module> (oauth2/credentials.py:15) (1 samples, 0.30%)</title><rect x="94.2424%" y="900" width="0.3030%" height="15" fill="rgb(229,126,4)" fg:x="311" fg:w="1"/><text x="94.4924%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="94.2424%" y="916" width="0.3030%" height="15" fill="rgb(222,92,36)" fg:x="311" fg:w="1"/><text x="94.4924%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="932" width="0.3030%" height="15" fill="rgb(216,39,41)" fg:x="311" fg:w="1"/><text x="94.4924%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="94.2424%" y="948" width="0.3030%" height="15" fill="rgb(253,127,28)" fg:x="311" fg:w="1"/><text x="94.4924%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="94.2424%" y="964" width="0.3030%" height="15" fill="rgb(249,152,51)" fg:x="311" fg:w="1"/><text x="94.4924%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="94.2424%" y="980" width="0.3030%" height="15" fill="rgb(209,123,42)" fg:x="311" fg:w="1"/><text x="94.4924%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="94.2424%" y="996" width="0.3030%" height="15" fill="rgb(241,118,22)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="1012" width="0.3030%" height="15" fill="rgb(208,25,7)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1022.50"></text></g><g><title><module> (oauth2/reauth.py:15) (1 samples, 0.30%)</title><rect x="94.2424%" y="1028" width="0.3030%" height="15" fill="rgb(243,144,39)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="94.2424%" y="1044" width="0.3030%" height="15" fill="rgb(250,50,5)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="1060" width="0.3030%" height="15" fill="rgb(207,67,11)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="94.2424%" y="1076" width="0.3030%" height="15" fill="rgb(245,204,40)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="94.2424%" y="1092" width="0.3030%" height="15" fill="rgb(238,228,24)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="94.2424%" y="1108" width="0.3030%" height="15" fill="rgb(217,116,22)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="94.2424%" y="1124" width="0.3030%" height="15" fill="rgb(234,98,12)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="1140" width="0.3030%" height="15" fill="rgb(242,170,50)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1150.50"></text></g><g><title><module> (oauth2/challenges.py:15) (1 samples, 0.30%)</title><rect x="94.2424%" y="1156" width="0.3030%" height="15" fill="rgb(235,7,5)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="94.2424%" y="1172" width="0.3030%" height="15" fill="rgb(241,114,28)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="94.2424%" y="1188" width="0.3030%" height="15" fill="rgb(246,112,42)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="94.2424%" y="1204" width="0.3030%" height="15" fill="rgb(248,228,14)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="94.2424%" y="1220" width="0.3030%" height="15" fill="rgb(208,133,18)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="1236" width="0.3030%" height="15" fill="rgb(207,35,49)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1246.50"></text></g><g><title><module> (getpass.py:1) (1 samples, 0.30%)</title><rect x="94.2424%" y="1252" width="0.3030%" height="15" fill="rgb(205,68,36)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="94.2424%" y="1268" width="0.3030%" height="15" fill="rgb(245,62,40)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="94.2424%" y="1284" width="0.3030%" height="15" fill="rgb(228,27,24)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="94.2424%" y="1300" width="0.3030%" height="15" fill="rgb(253,19,12)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1310.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="94.2424%" y="1316" width="0.3030%" height="15" fill="rgb(232,28,20)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1326.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="94.2424%" y="1332" width="0.3030%" height="15" fill="rgb(218,35,51)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.2424%" y="1348" width="0.3030%" height="15" fill="rgb(212,90,40)" fg:x="311" fg:w="1"/><text x="94.4924%" y="1358.50"></text></g><g><title><module> (ee/__init__.py:1) (15 samples, 4.55%)</title><rect x="90.3030%" y="516" width="4.5455%" height="15" fill="rgb(220,172,12)" fg:x="298" fg:w="15"/><text x="90.5530%" y="526.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 4.55%)</title><rect x="90.3030%" y="532" width="4.5455%" height="15" fill="rgb(226,159,20)" fg:x="298" fg:w="15"/><text x="90.5530%" y="542.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 4.55%)</title><rect x="90.3030%" y="548" width="4.5455%" height="15" fill="rgb(234,205,16)" fg:x="298" fg:w="15"/><text x="90.5530%" y="558.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 4.55%)</title><rect x="90.3030%" y="564" width="4.5455%" height="15" fill="rgb(207,9,39)" fg:x="298" fg:w="15"/><text x="90.5530%" y="574.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 4.55%)</title><rect x="90.3030%" y="580" width="4.5455%" height="15" fill="rgb(249,143,15)" fg:x="298" fg:w="15"/><text x="90.5530%" y="590.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 4.55%)</title><rect x="90.3030%" y="596" width="4.5455%" height="15" fill="rgb(253,133,29)" fg:x="298" fg:w="15"/><text x="90.5530%" y="606.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 4.55%)</title><rect x="90.3030%" y="612" width="4.5455%" height="15" fill="rgb(221,187,0)" fg:x="298" fg:w="15"/><text x="90.5530%" y="622.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 4.55%)</title><rect x="90.3030%" y="628" width="4.5455%" height="15" fill="rgb(205,204,26)" fg:x="298" fg:w="15"/><text x="90.5530%" y="638.50">_call..</text></g><g><title><module> (ee/batch.py:1) (15 samples, 4.55%)</title><rect x="90.3030%" y="644" width="4.5455%" height="15" fill="rgb(224,68,54)" fg:x="298" fg:w="15"/><text x="90.5530%" y="654.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 4.55%)</title><rect x="90.3030%" y="660" width="4.5455%" height="15" fill="rgb(209,67,4)" fg:x="298" fg:w="15"/><text x="90.5530%" y="670.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 4.55%)</title><rect x="90.3030%" y="676" width="4.5455%" height="15" fill="rgb(228,229,18)" fg:x="298" fg:w="15"/><text x="90.5530%" y="686.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 4.55%)</title><rect x="90.3030%" y="692" width="4.5455%" height="15" fill="rgb(231,89,13)" fg:x="298" fg:w="15"/><text x="90.5530%" y="702.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 4.55%)</title><rect x="90.3030%" y="708" width="4.5455%" height="15" fill="rgb(210,182,18)" fg:x="298" fg:w="15"/><text x="90.5530%" y="718.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 4.55%)</title><rect x="90.3030%" y="724" width="4.5455%" height="15" fill="rgb(240,105,2)" fg:x="298" fg:w="15"/><text x="90.5530%" y="734.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 4.55%)</title><rect x="90.3030%" y="740" width="4.5455%" height="15" fill="rgb(207,170,50)" fg:x="298" fg:w="15"/><text x="90.5530%" y="750.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 4.55%)</title><rect x="90.3030%" y="756" width="4.5455%" height="15" fill="rgb(232,133,24)" fg:x="298" fg:w="15"/><text x="90.5530%" y="766.50">_call..</text></g><g><title><module> (ee/geometry.py:1) (1 samples, 0.30%)</title><rect x="94.5455%" y="772" width="0.3030%" height="15" fill="rgb(235,166,27)" fg:x="312" fg:w="1"/><text x="94.7955%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.30%)</title><rect x="94.5455%" y="788" width="0.3030%" height="15" fill="rgb(209,19,13)" fg:x="312" fg:w="1"/><text x="94.7955%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="94.5455%" y="804" width="0.3030%" height="15" fill="rgb(226,79,39)" fg:x="312" fg:w="1"/><text x="94.7955%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="94.5455%" y="820" width="0.3030%" height="15" fill="rgb(222,163,10)" fg:x="312" fg:w="1"/><text x="94.7955%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="94.5455%" y="836" width="0.3030%" height="15" fill="rgb(214,44,19)" fg:x="312" fg:w="1"/><text x="94.7955%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="94.5455%" y="852" width="0.3030%" height="15" fill="rgb(210,217,13)" fg:x="312" fg:w="1"/><text x="94.7955%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="94.5455%" y="868" width="0.3030%" height="15" fill="rgb(237,61,54)" fg:x="312" fg:w="1"/><text x="94.7955%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.30%)</title><rect x="94.5455%" y="884" width="0.3030%" height="15" fill="rgb(226,184,24)" fg:x="312" fg:w="1"/><text x="94.7955%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.30%)</title><rect x="94.5455%" y="900" width="0.3030%" height="15" fill="rgb(223,226,4)" fg:x="312" fg:w="1"/><text x="94.7955%" y="910.50"></text></g><g><title>CRS (pyproj/crs/crs.py:163) (1 samples, 0.30%)</title><rect x="94.8485%" y="724" width="0.3030%" height="15" fill="rgb(210,26,41)" fg:x="313" fg:w="1"/><text x="95.0985%" y="734.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.30%)</title><rect x="94.8485%" y="740" width="0.3030%" height="15" fill="rgb(220,221,6)" fg:x="313" fg:w="1"/><text x="95.0985%" y="750.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.30%)</title><rect x="94.8485%" y="756" width="0.3030%" height="15" fill="rgb(225,89,49)" fg:x="313" fg:w="1"/><text x="95.0985%" y="766.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.30%)</title><rect x="94.8485%" y="772" width="0.3030%" height="15" fill="rgb(218,70,45)" fg:x="313" fg:w="1"/><text x="95.0985%" y="782.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.30%)</title><rect x="94.8485%" y="788" width="0.3030%" height="15" fill="rgb(238,166,21)" fg:x="313" fg:w="1"/><text x="95.0985%" y="798.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.30%)</title><rect x="94.8485%" y="804" width="0.3030%" height="15" fill="rgb(224,141,44)" fg:x="313" fg:w="1"/><text x="95.0985%" y="814.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.30%)</title><rect x="94.8485%" y="820" width="0.3030%" height="15" fill="rgb(230,12,49)" fg:x="313" fg:w="1"/><text x="95.0985%" y="830.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.30%)</title><rect x="94.8485%" y="836" width="0.3030%" height="15" fill="rgb(212,174,12)" fg:x="313" fg:w="1"/><text x="95.0985%" y="846.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.30%)</title><rect x="94.8485%" y="852" width="0.3030%" height="15" fill="rgb(246,67,9)" fg:x="313" fg:w="1"/><text x="95.0985%" y="862.50"></text></g><g><title><module> (pyproj/crs/__init__.py:1) (3 samples, 0.91%)</title><rect x="94.8485%" y="612" width="0.9091%" height="15" fill="rgb(239,35,23)" fg:x="313" fg:w="3"/><text x="95.0985%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.91%)</title><rect x="94.8485%" y="628" width="0.9091%" height="15" fill="rgb(211,167,0)" fg:x="313" fg:w="3"/><text x="95.0985%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.91%)</title><rect x="94.8485%" y="644" width="0.9091%" height="15" fill="rgb(225,119,45)" fg:x="313" fg:w="3"/><text x="95.0985%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.91%)</title><rect x="94.8485%" y="660" width="0.9091%" height="15" fill="rgb(210,162,6)" fg:x="313" fg:w="3"/><text x="95.0985%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.91%)</title><rect x="94.8485%" y="676" width="0.9091%" height="15" fill="rgb(208,118,35)" fg:x="313" fg:w="3"/><text x="95.0985%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.91%)</title><rect x="94.8485%" y="692" width="0.9091%" height="15" fill="rgb(239,4,53)" fg:x="313" fg:w="3"/><text x="95.0985%" y="702.50"></text></g><g><title><module> (pyproj/crs/crs.py:1) (3 samples, 0.91%)</title><rect x="94.8485%" y="708" width="0.9091%" height="15" fill="rgb(213,130,21)" fg:x="313" fg:w="3"/><text x="95.0985%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="95.1515%" y="724" width="0.6061%" height="15" fill="rgb(235,148,0)" fg:x="314" fg:w="2"/><text x="95.4015%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="95.1515%" y="740" width="0.6061%" height="15" fill="rgb(244,224,18)" fg:x="314" fg:w="2"/><text x="95.4015%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="95.1515%" y="756" width="0.6061%" height="15" fill="rgb(211,214,4)" fg:x="314" fg:w="2"/><text x="95.4015%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="95.1515%" y="772" width="0.6061%" height="15" fill="rgb(206,119,25)" fg:x="314" fg:w="2"/><text x="95.4015%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="95.1515%" y="788" width="0.6061%" height="15" fill="rgb(243,93,47)" fg:x="314" fg:w="2"/><text x="95.4015%" y="798.50"></text></g><g><title><module> (pyproj/crs/_cf1x8.py:1) (2 samples, 0.61%)</title><rect x="95.1515%" y="804" width="0.6061%" height="15" fill="rgb(224,194,6)" fg:x="314" fg:w="2"/><text x="95.4015%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="95.1515%" y="820" width="0.6061%" height="15" fill="rgb(243,229,6)" fg:x="314" fg:w="2"/><text x="95.4015%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="95.1515%" y="836" width="0.6061%" height="15" fill="rgb(207,23,50)" fg:x="314" fg:w="2"/><text x="95.4015%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="95.1515%" y="852" width="0.6061%" height="15" fill="rgb(253,192,32)" fg:x="314" fg:w="2"/><text x="95.4015%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.61%)</title><rect x="95.1515%" y="868" width="0.6061%" height="15" fill="rgb(213,21,6)" fg:x="314" fg:w="2"/><text x="95.4015%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.61%)</title><rect x="95.1515%" y="884" width="0.6061%" height="15" fill="rgb(243,151,13)" fg:x="314" fg:w="2"/><text x="95.4015%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.61%)</title><rect x="95.1515%" y="900" width="0.6061%" height="15" fill="rgb(233,165,41)" fg:x="314" fg:w="2"/><text x="95.4015%" y="910.50"></text></g><g><title><module> (pyproj/network.py:1) (2 samples, 0.61%)</title><rect x="95.7576%" y="612" width="0.6061%" height="15" fill="rgb(246,176,45)" fg:x="316" fg:w="2"/><text x="96.0076%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="95.7576%" y="628" width="0.6061%" height="15" fill="rgb(217,170,52)" fg:x="316" fg:w="2"/><text x="96.0076%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="95.7576%" y="644" width="0.6061%" height="15" fill="rgb(214,203,54)" fg:x="316" fg:w="2"/><text x="96.0076%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="95.7576%" y="660" width="0.6061%" height="15" fill="rgb(248,215,49)" fg:x="316" fg:w="2"/><text x="96.0076%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.61%)</title><rect x="95.7576%" y="676" width="0.6061%" height="15" fill="rgb(208,46,10)" fg:x="316" fg:w="2"/><text x="96.0076%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="95.7576%" y="692" width="0.6061%" height="15" fill="rgb(254,5,31)" fg:x="316" fg:w="2"/><text x="96.0076%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.61%)</title><rect x="95.7576%" y="708" width="0.6061%" height="15" fill="rgb(222,104,33)" fg:x="316" fg:w="2"/><text x="96.0076%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.61%)</title><rect x="95.7576%" y="724" width="0.6061%" height="15" fill="rgb(248,49,16)" fg:x="316" fg:w="2"/><text x="96.0076%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.61%)</title><rect x="95.7576%" y="740" width="0.6061%" height="15" fill="rgb(232,198,41)" fg:x="316" fg:w="2"/><text x="96.0076%" y="750.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.61%)</title><rect x="95.7576%" y="756" width="0.6061%" height="15" fill="rgb(214,125,3)" fg:x="316" fg:w="2"/><text x="96.0076%" y="766.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.61%)</title><rect x="95.7576%" y="772" width="0.6061%" height="15" fill="rgb(229,220,28)" fg:x="316" fg:w="2"/><text x="96.0076%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.61%)</title><rect x="95.7576%" y="788" width="0.6061%" height="15" fill="rgb(222,64,37)" fg:x="316" fg:w="2"/><text x="96.0076%" y="798.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (21 samples, 6.36%)</title><rect x="90.3030%" y="132" width="6.3636%" height="15" fill="rgb(249,184,13)" fg:x="298" fg:w="21"/><text x="90.5530%" y="142.50">guess_en..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (21 samples, 6.36%)</title><rect x="90.3030%" y="148" width="6.3636%" height="15" fill="rgb(252,176,6)" fg:x="298" fg:w="21"/><text x="90.5530%" y="158.50">list_eng..</text></g><g><title>build_engines (xarray/backends/plugins.py:106) (21 samples, 6.36%)</title><rect x="90.3030%" y="164" width="6.3636%" height="15" fill="rgb(228,153,7)" fg:x="298" fg:w="21"/><text x="90.5530%" y="174.50">build_en..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (21 samples, 6.36%)</title><rect x="90.3030%" y="180" width="6.3636%" height="15" fill="rgb(242,193,5)" fg:x="298" fg:w="21"/><text x="90.5530%" y="190.50">backends..</text></g><g><title>load (importlib_metadata/__init__.py:178) (21 samples, 6.36%)</title><rect x="90.3030%" y="196" width="6.3636%" height="15" fill="rgb(232,140,9)" fg:x="298" fg:w="21"/><text x="90.5530%" y="206.50">load (im..</text></g><g><title>import_module (importlib/__init__.py:109) (21 samples, 6.36%)</title><rect x="90.3030%" y="212" width="6.3636%" height="15" fill="rgb(213,222,16)" fg:x="298" fg:w="21"/><text x="90.5530%" y="222.50">import_m..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (21 samples, 6.36%)</title><rect x="90.3030%" y="228" width="6.3636%" height="15" fill="rgb(222,75,50)" fg:x="298" fg:w="21"/><text x="90.5530%" y="238.50">_gcd_imp..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 6.36%)</title><rect x="90.3030%" y="244" width="6.3636%" height="15" fill="rgb(205,180,2)" fg:x="298" fg:w="21"/><text x="90.5530%" y="254.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 6.36%)</title><rect x="90.3030%" y="260" width="6.3636%" height="15" fill="rgb(216,34,7)" fg:x="298" fg:w="21"/><text x="90.5530%" y="270.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 6.36%)</title><rect x="90.3030%" y="276" width="6.3636%" height="15" fill="rgb(253,16,32)" fg:x="298" fg:w="21"/><text x="90.5530%" y="286.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 6.36%)</title><rect x="90.3030%" y="292" width="6.3636%" height="15" fill="rgb(208,97,28)" fg:x="298" fg:w="21"/><text x="90.5530%" y="302.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 6.36%)</title><rect x="90.3030%" y="308" width="6.3636%" height="15" fill="rgb(225,92,11)" fg:x="298" fg:w="21"/><text x="90.5530%" y="318.50">_call_wi..</text></g><g><title><module> (xee/__init__.py:15) (21 samples, 6.36%)</title><rect x="90.3030%" y="324" width="6.3636%" height="15" fill="rgb(243,38,12)" fg:x="298" fg:w="21"/><text x="90.5530%" y="334.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 6.36%)</title><rect x="90.3030%" y="340" width="6.3636%" height="15" fill="rgb(208,139,16)" fg:x="298" fg:w="21"/><text x="90.5530%" y="350.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 6.36%)</title><rect x="90.3030%" y="356" width="6.3636%" height="15" fill="rgb(227,24,9)" fg:x="298" fg:w="21"/><text x="90.5530%" y="366.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 6.36%)</title><rect x="90.3030%" y="372" width="6.3636%" height="15" fill="rgb(206,62,11)" fg:x="298" fg:w="21"/><text x="90.5530%" y="382.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 6.36%)</title><rect x="90.3030%" y="388" width="6.3636%" height="15" fill="rgb(228,134,27)" fg:x="298" fg:w="21"/><text x="90.5530%" y="398.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 6.36%)</title><rect x="90.3030%" y="404" width="6.3636%" height="15" fill="rgb(205,55,33)" fg:x="298" fg:w="21"/><text x="90.5530%" y="414.50">_call_wi..</text></g><g><title><module> (xee/ext.py:15) (21 samples, 6.36%)</title><rect x="90.3030%" y="420" width="6.3636%" height="15" fill="rgb(243,75,43)" fg:x="298" fg:w="21"/><text x="90.5530%" y="430.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 6.36%)</title><rect x="90.3030%" y="436" width="6.3636%" height="15" fill="rgb(223,27,42)" fg:x="298" fg:w="21"/><text x="90.5530%" y="446.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 6.36%)</title><rect x="90.3030%" y="452" width="6.3636%" height="15" fill="rgb(232,189,33)" fg:x="298" fg:w="21"/><text x="90.5530%" y="462.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 6.36%)</title><rect x="90.3030%" y="468" width="6.3636%" height="15" fill="rgb(210,9,39)" fg:x="298" fg:w="21"/><text x="90.5530%" y="478.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 6.36%)</title><rect x="90.3030%" y="484" width="6.3636%" height="15" fill="rgb(242,85,26)" fg:x="298" fg:w="21"/><text x="90.5530%" y="494.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 6.36%)</title><rect x="90.3030%" y="500" width="6.3636%" height="15" fill="rgb(248,44,4)" fg:x="298" fg:w="21"/><text x="90.5530%" y="510.50">_call_wi..</text></g><g><title><module> (pyproj/__init__.py:1) (6 samples, 1.82%)</title><rect x="94.8485%" y="516" width="1.8182%" height="15" fill="rgb(250,96,46)" fg:x="313" fg:w="6"/><text x="95.0985%" y="526.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.82%)</title><rect x="94.8485%" y="532" width="1.8182%" height="15" fill="rgb(229,116,26)" fg:x="313" fg:w="6"/><text x="95.0985%" y="542.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.82%)</title><rect x="94.8485%" y="548" width="1.8182%" height="15" fill="rgb(246,94,34)" fg:x="313" fg:w="6"/><text x="95.0985%" y="558.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.82%)</title><rect x="94.8485%" y="564" width="1.8182%" height="15" fill="rgb(251,73,21)" fg:x="313" fg:w="6"/><text x="95.0985%" y="574.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.82%)</title><rect x="94.8485%" y="580" width="1.8182%" height="15" fill="rgb(254,121,25)" fg:x="313" fg:w="6"/><text x="95.0985%" y="590.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.82%)</title><rect x="94.8485%" y="596" width="1.8182%" height="15" fill="rgb(215,161,49)" fg:x="313" fg:w="6"/><text x="95.0985%" y="606.50">_..</text></g><g><title><module> (pyproj/proj.py:1) (1 samples, 0.30%)</title><rect x="96.3636%" y="612" width="0.3030%" height="15" fill="rgb(221,43,13)" fg:x="318" fg:w="1"/><text x="96.6136%" y="622.50"></text></g><g><title>open_dataset (xarray/tutorial.py:81) (26 samples, 7.88%)</title><rect x="89.0909%" y="100" width="7.8788%" height="15" fill="rgb(249,5,37)" fg:x="294" fg:w="26"/><text x="89.3409%" y="110.50">open_datase..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (22 samples, 6.67%)</title><rect x="90.3030%" y="116" width="6.6667%" height="15" fill="rgb(226,25,44)" fg:x="298" fg:w="22"/><text x="90.5530%" y="126.50">open_data..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (1 samples, 0.30%)</title><rect x="96.6667%" y="132" width="0.3030%" height="15" fill="rgb(238,189,16)" fg:x="319" fg:w="1"/><text x="96.9167%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (1 samples, 0.30%)</title><rect x="96.6667%" y="148" width="0.3030%" height="15" fill="rgb(251,186,8)" fg:x="319" fg:w="1"/><text x="96.9167%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (1 samples, 0.30%)</title><rect x="96.6667%" y="164" width="0.3030%" height="15" fill="rgb(254,34,31)" fg:x="319" fg:w="1"/><text x="96.9167%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (1 samples, 0.30%)</title><rect x="96.6667%" y="180" width="0.3030%" height="15" fill="rgb(225,215,27)" fg:x="319" fg:w="1"/><text x="96.9167%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (1 samples, 0.30%)</title><rect x="96.6667%" y="196" width="0.3030%" height="15" fill="rgb(221,192,48)" fg:x="319" fg:w="1"/><text x="96.9167%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (1 samples, 0.30%)</title><rect x="96.6667%" y="212" width="0.3030%" height="15" fill="rgb(219,137,20)" fg:x="319" fg:w="1"/><text x="96.9167%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (1 samples, 0.30%)</title><rect x="96.6667%" y="228" width="0.3030%" height="15" fill="rgb(219,84,11)" fg:x="319" fg:w="1"/><text x="96.9167%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (1 samples, 0.30%)</title><rect x="96.6667%" y="244" width="0.3030%" height="15" fill="rgb(224,10,23)" fg:x="319" fg:w="1"/><text x="96.9167%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="96.6667%" y="260" width="0.3030%" height="15" fill="rgb(248,22,39)" fg:x="319" fg:w="1"/><text x="96.9167%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="96.6667%" y="276" width="0.3030%" height="15" fill="rgb(212,154,20)" fg:x="319" fg:w="1"/><text x="96.9167%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="96.6667%" y="292" width="0.3030%" height="15" fill="rgb(236,199,50)" fg:x="319" fg:w="1"/><text x="96.9167%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="96.6667%" y="308" width="0.3030%" height="15" fill="rgb(211,9,17)" fg:x="319" fg:w="1"/><text x="96.9167%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="96.6667%" y="324" width="0.3030%" height="15" fill="rgb(243,216,36)" fg:x="319" fg:w="1"/><text x="96.9167%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (1 samples, 0.30%)</title><rect x="96.6667%" y="340" width="0.3030%" height="15" fill="rgb(250,2,10)" fg:x="319" fg:w="1"/><text x="96.9167%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="96.6667%" y="356" width="0.3030%" height="15" fill="rgb(226,50,48)" fg:x="319" fg:w="1"/><text x="96.9167%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="96.6667%" y="372" width="0.3030%" height="15" fill="rgb(243,81,16)" fg:x="319" fg:w="1"/><text x="96.9167%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="96.6667%" y="388" width="0.3030%" height="15" fill="rgb(250,14,2)" fg:x="319" fg:w="1"/><text x="96.9167%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="96.6667%" y="404" width="0.3030%" height="15" fill="rgb(233,135,29)" fg:x="319" fg:w="1"/><text x="96.9167%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="96.6667%" y="420" width="0.3030%" height="15" fill="rgb(224,64,43)" fg:x="319" fg:w="1"/><text x="96.9167%" y="430.50"></text></g><g><title><module> (scipy/io/matlab/__init__.py:1) (1 samples, 0.30%)</title><rect x="96.6667%" y="436" width="0.3030%" height="15" fill="rgb(238,84,13)" fg:x="319" fg:w="1"/><text x="96.9167%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="96.6667%" y="452" width="0.3030%" height="15" fill="rgb(253,48,26)" fg:x="319" fg:w="1"/><text x="96.9167%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="96.6667%" y="468" width="0.3030%" height="15" fill="rgb(205,223,31)" fg:x="319" fg:w="1"/><text x="96.9167%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="96.6667%" y="484" width="0.3030%" height="15" fill="rgb(221,41,32)" fg:x="319" fg:w="1"/><text x="96.9167%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="96.6667%" y="500" width="0.3030%" height="15" fill="rgb(213,158,31)" fg:x="319" fg:w="1"/><text x="96.9167%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="96.6667%" y="516" width="0.3030%" height="15" fill="rgb(245,126,43)" fg:x="319" fg:w="1"/><text x="96.9167%" y="526.50"></text></g><g><title><module> (scipy/io/matlab/_mio.py:1) (1 samples, 0.30%)</title><rect x="96.6667%" y="532" width="0.3030%" height="15" fill="rgb(227,7,22)" fg:x="319" fg:w="1"/><text x="96.9167%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="96.6667%" y="548" width="0.3030%" height="15" fill="rgb(252,90,44)" fg:x="319" fg:w="1"/><text x="96.9167%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="96.6667%" y="564" width="0.3030%" height="15" fill="rgb(253,91,0)" fg:x="319" fg:w="1"/><text x="96.9167%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="96.6667%" y="580" width="0.3030%" height="15" fill="rgb(252,175,49)" fg:x="319" fg:w="1"/><text x="96.9167%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.30%)</title><rect x="96.6667%" y="596" width="0.3030%" height="15" fill="rgb(246,150,1)" fg:x="319" fg:w="1"/><text x="96.9167%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="96.6667%" y="612" width="0.3030%" height="15" fill="rgb(241,192,25)" fg:x="319" fg:w="1"/><text x="96.9167%" y="622.50"></text></g><g><title><module> (scipy/io/matlab/_mio4.py:1) (1 samples, 0.30%)</title><rect x="96.6667%" y="628" width="0.3030%" height="15" fill="rgb(239,187,11)" fg:x="319" fg:w="1"/><text x="96.9167%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.30%)</title><rect x="96.6667%" y="644" width="0.3030%" height="15" fill="rgb(218,202,51)" fg:x="319" fg:w="1"/><text x="96.9167%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.30%)</title><rect x="96.6667%" y="660" width="0.3030%" height="15" fill="rgb(225,176,8)" fg:x="319" fg:w="1"/><text x="96.9167%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.30%)</title><rect x="96.6667%" y="676" width="0.3030%" height="15" fill="rgb(219,122,41)" fg:x="319" fg:w="1"/><text x="96.9167%" y="686.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.30%)</title><rect x="96.6667%" y="692" width="0.3030%" height="15" fill="rgb(248,140,20)" fg:x="319" fg:w="1"/><text x="96.9167%" y="702.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.30%)</title><rect x="96.6667%" y="708" width="0.3030%" height="15" fill="rgb(245,41,37)" fg:x="319" fg:w="1"/><text x="96.9167%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.30%)</title><rect x="96.6667%" y="724" width="0.3030%" height="15" fill="rgb(235,82,39)" fg:x="319" fg:w="1"/><text x="96.9167%" y="734.50"></text></g><g><title>_compute_table_from_rel (dask_sql/context.py:847) (1 samples, 0.30%)</title><rect x="96.9697%" y="116" width="0.3030%" height="15" fill="rgb(230,108,42)" fg:x="320" fg:w="1"/><text x="97.2197%" y="126.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (1 samples, 0.30%)</title><rect x="96.9697%" y="132" width="0.3030%" height="15" fill="rgb(215,150,50)" fg:x="320" fg:w="1"/><text x="97.2197%" y="142.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/project.py:26) (1 samples, 0.30%)</title><rect x="96.9697%" y="148" width="0.3030%" height="15" fill="rgb(233,212,5)" fg:x="320" fg:w="1"/><text x="97.2197%" y="158.50"></text></g><g><title>fix_dtype_to_row_type (dask_sql/physical/rel/base.py:88) (1 samples, 0.30%)</title><rect x="96.9697%" y="164" width="0.3030%" height="15" fill="rgb(245,80,22)" fg:x="320" fg:w="1"/><text x="97.2197%" y="174.50"></text></g><g><title>cast_column_type (dask_sql/mappings.py:309) (1 samples, 0.30%)</title><rect x="96.9697%" y="180" width="0.3030%" height="15" fill="rgb(238,129,16)" fg:x="320" fg:w="1"/><text x="97.2197%" y="190.50"></text></g><g><title>__getitem__ (dask/dataframe/core.py:5142) (1 samples, 0.30%)</title><rect x="96.9697%" y="196" width="0.3030%" height="15" fill="rgb(240,19,0)" fg:x="320" fg:w="1"/><text x="97.2197%" y="206.50"></text></g><g><title>new_dd_object (dask/dataframe/core.py:8489) (1 samples, 0.30%)</title><rect x="96.9697%" y="212" width="0.3030%" height="15" fill="rgb(232,42,35)" fg:x="320" fg:w="1"/><text x="97.2197%" y="222.50"></text></g><g><title>__init__ (dask/dataframe/core.py:454) (1 samples, 0.30%)</title><rect x="96.9697%" y="228" width="0.3030%" height="15" fill="rgb(223,130,24)" fg:x="320" fg:w="1"/><text x="97.2197%" y="238.50"></text></g><g><title>make_meta (dask/dataframe/dispatch.py:95) (1 samples, 0.30%)</title><rect x="96.9697%" y="244" width="0.3030%" height="15" fill="rgb(237,16,22)" fg:x="320" fg:w="1"/><text x="97.2197%" y="254.50"></text></g><g><title>__call__ (dask/utils.py:762) (1 samples, 0.30%)</title><rect x="96.9697%" y="260" width="0.3030%" height="15" fill="rgb(248,192,20)" fg:x="320" fg:w="1"/><text x="97.2197%" y="270.50"></text></g><g><title>_ (dask/dataframe/backends.py:190) (1 samples, 0.30%)</title><rect x="96.9697%" y="276" width="0.3030%" height="15" fill="rgb(233,167,2)" fg:x="320" fg:w="1"/><text x="97.2197%" y="286.50"></text></g><g><title>copy (pandas/core/generic.py:6553) (1 samples, 0.30%)</title><rect x="96.9697%" y="292" width="0.3030%" height="15" fill="rgb(252,71,44)" fg:x="320" fg:w="1"/><text x="97.2197%" y="302.50"></text></g><g><title>copy (pandas/core/internals/managers.py:540) (1 samples, 0.30%)</title><rect x="96.9697%" y="308" width="0.3030%" height="15" fill="rgb(238,37,47)" fg:x="320" fg:w="1"/><text x="97.2197%" y="318.50"></text></g><g><title>apply (pandas/core/internals/managers.py:308) (1 samples, 0.30%)</title><rect x="96.9697%" y="324" width="0.3030%" height="15" fill="rgb(214,202,54)" fg:x="320" fg:w="1"/><text x="97.2197%" y="334.50"></text></g><g><title>extend_blocks (pandas/core/internals/blocks.py:2467) (1 samples, 0.30%)</title><rect x="96.9697%" y="340" width="0.3030%" height="15" fill="rgb(254,165,40)" fg:x="320" fg:w="1"/><text x="97.2197%" y="350.50"></text></g><g><title>thread (0x205199240) (322 samples, 97.58%)</title><rect x="0.0000%" y="68" width="97.5758%" height="15" fill="rgb(246,173,38)" fg:x="0" fg:w="322"/><text x="0.2500%" y="78.50">thread (0x205199240)</text></g><g><title><module> (groupby_air.py:3) (298 samples, 90.30%)</title><rect x="7.2727%" y="84" width="90.3030%" height="15" fill="rgb(215,3,27)" fg:x="24" fg:w="298"/><text x="7.5227%" y="94.50"><module> (groupby_air.py:3)</text></g><g><title>sql (dask_sql/context.py:466) (2 samples, 0.61%)</title><rect x="96.9697%" y="100" width="0.6061%" height="15" fill="rgb(239,169,51)" fg:x="320" fg:w="2"/><text x="97.2197%" y="110.50"></text></g><g><title>_get_ral (dask_sql/context.py:798) (1 samples, 0.30%)</title><rect x="97.2727%" y="116" width="0.3030%" height="15" fill="rgb(212,5,25)" fg:x="321" fg:w="1"/><text x="97.5227%" y="126.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (1 samples, 0.30%)</title><rect x="97.5758%" y="564" width="0.3030%" height="15" fill="rgb(243,45,17)" fg:x="322" fg:w="1"/><text x="97.8258%" y="574.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (1 samples, 0.30%)</title><rect x="97.5758%" y="580" width="0.3030%" height="15" fill="rgb(242,97,9)" fg:x="322" fg:w="1"/><text x="97.8258%" y="590.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (1 samples, 0.30%)</title><rect x="97.5758%" y="596" width="0.3030%" height="15" fill="rgb(228,71,31)" fg:x="322" fg:w="1"/><text x="97.8258%" y="606.50"></text></g><g><title>thread (0x30C3C5000) (2 samples, 0.61%)</title><rect x="97.5758%" y="68" width="0.6061%" height="15" fill="rgb(252,184,16)" fg:x="322" fg:w="2"/><text x="97.8258%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (2 samples, 0.61%)</title><rect x="97.5758%" y="84" width="0.6061%" height="15" fill="rgb(236,169,46)" fg:x="322" fg:w="2"/><text x="97.8258%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (2 samples, 0.61%)</title><rect x="97.5758%" y="100" width="0.6061%" height="15" fill="rgb(207,17,47)" fg:x="322" fg:w="2"/><text x="97.8258%" y="110.50"></text></g><g><title>run (threading.py:906) (2 samples, 0.61%)</title><rect x="97.5758%" y="116" width="0.6061%" height="15" fill="rgb(206,201,28)" fg:x="322" fg:w="2"/><text x="97.8258%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (2 samples, 0.61%)</title><rect x="97.5758%" y="132" width="0.6061%" height="15" fill="rgb(224,184,23)" fg:x="322" fg:w="2"/><text x="97.8258%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (2 samples, 0.61%)</title><rect x="97.5758%" y="148" width="0.6061%" height="15" fill="rgb(208,139,48)" fg:x="322" fg:w="2"/><text x="97.8258%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (2 samples, 0.61%)</title><rect x="97.5758%" y="164" width="0.6061%" height="15" fill="rgb(208,130,10)" fg:x="322" fg:w="2"/><text x="97.8258%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (2 samples, 0.61%)</title><rect x="97.5758%" y="180" width="0.6061%" height="15" fill="rgb(211,213,45)" fg:x="322" fg:w="2"/><text x="97.8258%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (2 samples, 0.61%)</title><rect x="97.5758%" y="196" width="0.6061%" height="15" fill="rgb(235,100,30)" fg:x="322" fg:w="2"/><text x="97.8258%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="212" width="0.6061%" height="15" fill="rgb(206,144,31)" fg:x="322" fg:w="2"/><text x="97.8258%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (2 samples, 0.61%)</title><rect x="97.5758%" y="228" width="0.6061%" height="15" fill="rgb(224,200,26)" fg:x="322" fg:w="2"/><text x="97.8258%" y="238.50"></text></g><g><title>get (dask/core.py:136) (2 samples, 0.61%)</title><rect x="97.5758%" y="244" width="0.6061%" height="15" fill="rgb(247,104,53)" fg:x="322" fg:w="2"/><text x="97.8258%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="260" width="0.6061%" height="15" fill="rgb(220,14,17)" fg:x="322" fg:w="2"/><text x="97.8258%" y="270.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="97.5758%" y="276" width="0.6061%" height="15" fill="rgb(230,140,40)" fg:x="322" fg:w="2"/><text x="97.8258%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="292" width="0.6061%" height="15" fill="rgb(229,2,41)" fg:x="322" fg:w="2"/><text x="97.8258%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (2 samples, 0.61%)</title><rect x="97.5758%" y="308" width="0.6061%" height="15" fill="rgb(232,89,16)" fg:x="322" fg:w="2"/><text x="97.8258%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="324" width="0.6061%" height="15" fill="rgb(247,59,52)" fg:x="322" fg:w="2"/><text x="97.8258%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="97.5758%" y="340" width="0.6061%" height="15" fill="rgb(226,110,21)" fg:x="322" fg:w="2"/><text x="97.8258%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="356" width="0.6061%" height="15" fill="rgb(224,176,43)" fg:x="322" fg:w="2"/><text x="97.8258%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="97.5758%" y="372" width="0.6061%" height="15" fill="rgb(221,73,6)" fg:x="322" fg:w="2"/><text x="97.8258%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="388" width="0.6061%" height="15" fill="rgb(232,78,19)" fg:x="322" fg:w="2"/><text x="97.8258%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="97.5758%" y="404" width="0.6061%" height="15" fill="rgb(233,112,48)" fg:x="322" fg:w="2"/><text x="97.8258%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="97.5758%" y="420" width="0.6061%" height="15" fill="rgb(243,131,47)" fg:x="322" fg:w="2"/><text x="97.8258%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (2 samples, 0.61%)</title><rect x="97.5758%" y="436" width="0.6061%" height="15" fill="rgb(226,51,1)" fg:x="322" fg:w="2"/><text x="97.8258%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (2 samples, 0.61%)</title><rect x="97.5758%" y="452" width="0.6061%" height="15" fill="rgb(247,58,7)" fg:x="322" fg:w="2"/><text x="97.8258%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (2 samples, 0.61%)</title><rect x="97.5758%" y="468" width="0.6061%" height="15" fill="rgb(209,7,32)" fg:x="322" fg:w="2"/><text x="97.8258%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (2 samples, 0.61%)</title><rect x="97.5758%" y="484" width="0.6061%" height="15" fill="rgb(209,39,41)" fg:x="322" fg:w="2"/><text x="97.8258%" y="494.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (2 samples, 0.61%)</title><rect x="97.5758%" y="500" width="0.6061%" height="15" fill="rgb(226,182,46)" fg:x="322" fg:w="2"/><text x="97.8258%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (2 samples, 0.61%)</title><rect x="97.5758%" y="516" width="0.6061%" height="15" fill="rgb(230,219,10)" fg:x="322" fg:w="2"/><text x="97.8258%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (2 samples, 0.61%)</title><rect x="97.5758%" y="532" width="0.6061%" height="15" fill="rgb(227,175,30)" fg:x="322" fg:w="2"/><text x="97.8258%" y="542.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (2 samples, 0.61%)</title><rect x="97.5758%" y="548" width="0.6061%" height="15" fill="rgb(217,2,50)" fg:x="322" fg:w="2"/><text x="97.8258%" y="558.50"></text></g><g><title>is_consolidated (pandas/core/internals/managers.py:1726) (1 samples, 0.30%)</title><rect x="97.8788%" y="564" width="0.3030%" height="15" fill="rgb(229,160,0)" fg:x="323" fg:w="1"/><text x="98.1288%" y="574.50"></text></g><g><title>_consolidate_check (pandas/core/internals/managers.py:1734) (1 samples, 0.30%)</title><rect x="97.8788%" y="580" width="0.3030%" height="15" fill="rgb(207,78,37)" fg:x="323" fg:w="1"/><text x="98.1288%" y="590.50"></text></g><g><title>thread (0x30D3C8000) (1 samples, 0.30%)</title><rect x="98.1818%" y="68" width="0.3030%" height="15" fill="rgb(225,57,0)" fg:x="324" fg:w="1"/><text x="98.4318%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.30%)</title><rect x="98.1818%" y="84" width="0.3030%" height="15" fill="rgb(232,154,2)" fg:x="324" fg:w="1"/><text x="98.4318%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.30%)</title><rect x="98.1818%" y="100" width="0.3030%" height="15" fill="rgb(241,212,25)" fg:x="324" fg:w="1"/><text x="98.4318%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.30%)</title><rect x="98.1818%" y="116" width="0.3030%" height="15" fill="rgb(226,69,20)" fg:x="324" fg:w="1"/><text x="98.4318%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.30%)</title><rect x="98.1818%" y="132" width="0.3030%" height="15" fill="rgb(247,184,54)" fg:x="324" fg:w="1"/><text x="98.4318%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.30%)</title><rect x="98.1818%" y="148" width="0.3030%" height="15" fill="rgb(210,145,0)" fg:x="324" fg:w="1"/><text x="98.4318%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.30%)</title><rect x="98.1818%" y="164" width="0.3030%" height="15" fill="rgb(253,82,12)" fg:x="324" fg:w="1"/><text x="98.4318%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.30%)</title><rect x="98.1818%" y="180" width="0.3030%" height="15" fill="rgb(245,42,11)" fg:x="324" fg:w="1"/><text x="98.4318%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.30%)</title><rect x="98.1818%" y="196" width="0.3030%" height="15" fill="rgb(219,147,32)" fg:x="324" fg:w="1"/><text x="98.4318%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.30%)</title><rect x="98.1818%" y="212" width="0.3030%" height="15" fill="rgb(246,12,7)" fg:x="324" fg:w="1"/><text x="98.4318%" y="222.50"></text></g><g><title>pipe (toolz/functoolz.py:607) (1 samples, 0.30%)</title><rect x="98.1818%" y="228" width="0.3030%" height="15" fill="rgb(243,50,9)" fg:x="324" fg:w="1"/><text x="98.4318%" y="238.50"></text></g><g><title>_concat (dask/dataframe/core.py:179) (1 samples, 0.30%)</title><rect x="98.1818%" y="244" width="0.3030%" height="15" fill="rgb(219,149,6)" fg:x="324" fg:w="1"/><text x="98.4318%" y="254.50"></text></g><g><title>concat (dask/dataframe/dispatch.py:34) (1 samples, 0.30%)</title><rect x="98.1818%" y="260" width="0.3030%" height="15" fill="rgb(241,51,42)" fg:x="324" fg:w="1"/><text x="98.4318%" y="270.50"></text></g><g><title>concat_pandas (dask/dataframe/backends.py:561) (1 samples, 0.30%)</title><rect x="98.1818%" y="276" width="0.3030%" height="15" fill="rgb(226,128,27)" fg:x="324" fg:w="1"/><text x="98.4318%" y="286.50"></text></g><g><title>new_method (pandas/core/ops/common.py:62) (1 samples, 0.30%)</title><rect x="98.1818%" y="292" width="0.3030%" height="15" fill="rgb(244,144,4)" fg:x="324" fg:w="1"/><text x="98.4318%" y="302.50"></text></g><g><title>__eq__ (pandas/core/arraylike.py:38) (1 samples, 0.30%)</title><rect x="98.1818%" y="308" width="0.3030%" height="15" fill="rgb(221,4,13)" fg:x="324" fg:w="1"/><text x="98.4318%" y="318.50"></text></g><g><title>_cmp_method (pandas/core/series.py:5790) (1 samples, 0.30%)</title><rect x="98.1818%" y="324" width="0.3030%" height="15" fill="rgb(208,170,28)" fg:x="324" fg:w="1"/><text x="98.4318%" y="334.50"></text></g><g><title>comparison_op (pandas/core/ops/array_ops.py:290) (1 samples, 0.30%)</title><rect x="98.1818%" y="340" width="0.3030%" height="15" fill="rgb(226,131,13)" fg:x="324" fg:w="1"/><text x="98.4318%" y="350.50"></text></g><g><title>comp_method_OBJECT_ARRAY (pandas/core/ops/array_ops.py:115) (1 samples, 0.30%)</title><rect x="98.1818%" y="356" width="0.3030%" height="15" fill="rgb(215,72,41)" fg:x="324" fg:w="1"/><text x="98.4318%" y="366.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.30%)</title><rect x="98.4848%" y="500" width="0.3030%" height="15" fill="rgb(243,108,20)" fg:x="325" fg:w="1"/><text x="98.7348%" y="510.50"></text></g><g><title>to_arrays (pandas/core/internals/construction.py:793) (1 samples, 0.30%)</title><rect x="98.4848%" y="516" width="0.3030%" height="15" fill="rgb(230,189,17)" fg:x="325" fg:w="1"/><text x="98.7348%" y="526.50"></text></g><g><title>__new__ (pandas/core/indexes/base.py:477) (1 samples, 0.30%)</title><rect x="98.4848%" y="532" width="0.3030%" height="15" fill="rgb(220,50,17)" fg:x="325" fg:w="1"/><text x="98.7348%" y="542.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.30%)</title><rect x="98.4848%" y="548" width="0.3030%" height="15" fill="rgb(248,152,48)" fg:x="325" fg:w="1"/><text x="98.7348%" y="558.50"></text></g><g><title>maybe_infer_to_datetimelike (pandas/core/dtypes/cast.py:1147) (1 samples, 0.30%)</title><rect x="98.4848%" y="564" width="0.3030%" height="15" fill="rgb(244,91,11)" fg:x="325" fg:w="1"/><text x="98.7348%" y="574.50"></text></g><g><title>full (numpy/core/numeric.py:274) (1 samples, 0.30%)</title><rect x="98.4848%" y="580" width="0.3030%" height="15" fill="rgb(220,157,5)" fg:x="325" fg:w="1"/><text x="98.7348%" y="590.50"></text></g><g><title>thread (0x3113D4000) (3 samples, 0.91%)</title><rect x="98.4848%" y="68" width="0.9091%" height="15" fill="rgb(253,137,8)" fg:x="325" fg:w="3"/><text x="98.7348%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (3 samples, 0.91%)</title><rect x="98.4848%" y="84" width="0.9091%" height="15" fill="rgb(217,137,51)" fg:x="325" fg:w="3"/><text x="98.7348%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (3 samples, 0.91%)</title><rect x="98.4848%" y="100" width="0.9091%" height="15" fill="rgb(218,209,53)" fg:x="325" fg:w="3"/><text x="98.7348%" y="110.50"></text></g><g><title>run (threading.py:906) (3 samples, 0.91%)</title><rect x="98.4848%" y="116" width="0.9091%" height="15" fill="rgb(249,137,25)" fg:x="325" fg:w="3"/><text x="98.7348%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (3 samples, 0.91%)</title><rect x="98.4848%" y="132" width="0.9091%" height="15" fill="rgb(239,155,26)" fg:x="325" fg:w="3"/><text x="98.7348%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (3 samples, 0.91%)</title><rect x="98.4848%" y="148" width="0.9091%" height="15" fill="rgb(227,85,46)" fg:x="325" fg:w="3"/><text x="98.7348%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (3 samples, 0.91%)</title><rect x="98.4848%" y="164" width="0.9091%" height="15" fill="rgb(251,107,43)" fg:x="325" fg:w="3"/><text x="98.7348%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (3 samples, 0.91%)</title><rect x="98.4848%" y="180" width="0.9091%" height="15" fill="rgb(234,170,33)" fg:x="325" fg:w="3"/><text x="98.7348%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (3 samples, 0.91%)</title><rect x="98.4848%" y="196" width="0.9091%" height="15" fill="rgb(206,29,35)" fg:x="325" fg:w="3"/><text x="98.7348%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="212" width="0.9091%" height="15" fill="rgb(227,138,25)" fg:x="325" fg:w="3"/><text x="98.7348%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (3 samples, 0.91%)</title><rect x="98.4848%" y="228" width="0.9091%" height="15" fill="rgb(249,131,35)" fg:x="325" fg:w="3"/><text x="98.7348%" y="238.50"></text></g><g><title>get (dask/core.py:136) (3 samples, 0.91%)</title><rect x="98.4848%" y="244" width="0.9091%" height="15" fill="rgb(239,6,40)" fg:x="325" fg:w="3"/><text x="98.7348%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="260" width="0.9091%" height="15" fill="rgb(246,136,47)" fg:x="325" fg:w="3"/><text x="98.7348%" y="270.50"></text></g><g><title><genexpr> (dask/core.py:127) (3 samples, 0.91%)</title><rect x="98.4848%" y="276" width="0.9091%" height="15" fill="rgb(253,58,26)" fg:x="325" fg:w="3"/><text x="98.7348%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="292" width="0.9091%" height="15" fill="rgb(237,141,10)" fg:x="325" fg:w="3"/><text x="98.7348%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (3 samples, 0.91%)</title><rect x="98.4848%" y="308" width="0.9091%" height="15" fill="rgb(234,156,12)" fg:x="325" fg:w="3"/><text x="98.7348%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="324" width="0.9091%" height="15" fill="rgb(243,224,36)" fg:x="325" fg:w="3"/><text x="98.7348%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (3 samples, 0.91%)</title><rect x="98.4848%" y="340" width="0.9091%" height="15" fill="rgb(205,229,51)" fg:x="325" fg:w="3"/><text x="98.7348%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="356" width="0.9091%" height="15" fill="rgb(223,189,4)" fg:x="325" fg:w="3"/><text x="98.7348%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (3 samples, 0.91%)</title><rect x="98.4848%" y="372" width="0.9091%" height="15" fill="rgb(249,167,54)" fg:x="325" fg:w="3"/><text x="98.7348%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="388" width="0.9091%" height="15" fill="rgb(218,34,28)" fg:x="325" fg:w="3"/><text x="98.7348%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (3 samples, 0.91%)</title><rect x="98.4848%" y="404" width="0.9091%" height="15" fill="rgb(232,109,42)" fg:x="325" fg:w="3"/><text x="98.7348%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (3 samples, 0.91%)</title><rect x="98.4848%" y="420" width="0.9091%" height="15" fill="rgb(248,214,46)" fg:x="325" fg:w="3"/><text x="98.7348%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (3 samples, 0.91%)</title><rect x="98.4848%" y="436" width="0.9091%" height="15" fill="rgb(244,216,40)" fg:x="325" fg:w="3"/><text x="98.7348%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (3 samples, 0.91%)</title><rect x="98.4848%" y="452" width="0.9091%" height="15" fill="rgb(231,226,31)" fg:x="325" fg:w="3"/><text x="98.7348%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (3 samples, 0.91%)</title><rect x="98.4848%" y="468" width="0.9091%" height="15" fill="rgb(238,38,43)" fg:x="325" fg:w="3"/><text x="98.7348%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (3 samples, 0.91%)</title><rect x="98.4848%" y="484" width="0.9091%" height="15" fill="rgb(208,88,43)" fg:x="325" fg:w="3"/><text x="98.7348%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (2 samples, 0.61%)</title><rect x="98.7879%" y="500" width="0.6061%" height="15" fill="rgb(205,136,37)" fg:x="326" fg:w="2"/><text x="99.0379%" y="510.50"></text></g><g><title>all (330 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(237,34,14)" fg:x="0" fg:w="330"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x3133DA000) (2 samples, 0.61%)</title><rect x="99.3939%" y="68" width="0.6061%" height="15" fill="rgb(236,193,44)" fg:x="328" fg:w="2"/><text x="99.6439%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (2 samples, 0.61%)</title><rect x="99.3939%" y="84" width="0.6061%" height="15" fill="rgb(231,48,10)" fg:x="328" fg:w="2"/><text x="99.6439%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (2 samples, 0.61%)</title><rect x="99.3939%" y="100" width="0.6061%" height="15" fill="rgb(213,141,34)" fg:x="328" fg:w="2"/><text x="99.6439%" y="110.50"></text></g><g><title>run (threading.py:906) (2 samples, 0.61%)</title><rect x="99.3939%" y="116" width="0.6061%" height="15" fill="rgb(249,130,34)" fg:x="328" fg:w="2"/><text x="99.6439%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (2 samples, 0.61%)</title><rect x="99.3939%" y="132" width="0.6061%" height="15" fill="rgb(219,42,41)" fg:x="328" fg:w="2"/><text x="99.6439%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (2 samples, 0.61%)</title><rect x="99.3939%" y="148" width="0.6061%" height="15" fill="rgb(224,100,54)" fg:x="328" fg:w="2"/><text x="99.6439%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (2 samples, 0.61%)</title><rect x="99.3939%" y="164" width="0.6061%" height="15" fill="rgb(229,200,27)" fg:x="328" fg:w="2"/><text x="99.6439%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (2 samples, 0.61%)</title><rect x="99.3939%" y="180" width="0.6061%" height="15" fill="rgb(217,118,10)" fg:x="328" fg:w="2"/><text x="99.6439%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (2 samples, 0.61%)</title><rect x="99.3939%" y="196" width="0.6061%" height="15" fill="rgb(206,22,3)" fg:x="328" fg:w="2"/><text x="99.6439%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="212" width="0.6061%" height="15" fill="rgb(232,163,46)" fg:x="328" fg:w="2"/><text x="99.6439%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (2 samples, 0.61%)</title><rect x="99.3939%" y="228" width="0.6061%" height="15" fill="rgb(206,95,13)" fg:x="328" fg:w="2"/><text x="99.6439%" y="238.50"></text></g><g><title>get (dask/core.py:136) (2 samples, 0.61%)</title><rect x="99.3939%" y="244" width="0.6061%" height="15" fill="rgb(253,154,18)" fg:x="328" fg:w="2"/><text x="99.6439%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="260" width="0.6061%" height="15" fill="rgb(219,32,23)" fg:x="328" fg:w="2"/><text x="99.6439%" y="270.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="99.3939%" y="276" width="0.6061%" height="15" fill="rgb(230,191,45)" fg:x="328" fg:w="2"/><text x="99.6439%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="292" width="0.6061%" height="15" fill="rgb(229,64,36)" fg:x="328" fg:w="2"/><text x="99.6439%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (2 samples, 0.61%)</title><rect x="99.3939%" y="308" width="0.6061%" height="15" fill="rgb(205,129,25)" fg:x="328" fg:w="2"/><text x="99.6439%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="324" width="0.6061%" height="15" fill="rgb(254,112,7)" fg:x="328" fg:w="2"/><text x="99.6439%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="99.3939%" y="340" width="0.6061%" height="15" fill="rgb(226,53,48)" fg:x="328" fg:w="2"/><text x="99.6439%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="356" width="0.6061%" height="15" fill="rgb(214,153,38)" fg:x="328" fg:w="2"/><text x="99.6439%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="99.3939%" y="372" width="0.6061%" height="15" fill="rgb(243,101,7)" fg:x="328" fg:w="2"/><text x="99.6439%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="388" width="0.6061%" height="15" fill="rgb(240,140,22)" fg:x="328" fg:w="2"/><text x="99.6439%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (2 samples, 0.61%)</title><rect x="99.3939%" y="404" width="0.6061%" height="15" fill="rgb(235,114,2)" fg:x="328" fg:w="2"/><text x="99.6439%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.61%)</title><rect x="99.3939%" y="420" width="0.6061%" height="15" fill="rgb(242,59,12)" fg:x="328" fg:w="2"/><text x="99.6439%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (2 samples, 0.61%)</title><rect x="99.3939%" y="436" width="0.6061%" height="15" fill="rgb(252,134,9)" fg:x="328" fg:w="2"/><text x="99.6439%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (2 samples, 0.61%)</title><rect x="99.3939%" y="452" width="0.6061%" height="15" fill="rgb(236,4,44)" fg:x="328" fg:w="2"/><text x="99.6439%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (2 samples, 0.61%)</title><rect x="99.3939%" y="468" width="0.6061%" height="15" fill="rgb(254,172,41)" fg:x="328" fg:w="2"/><text x="99.6439%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (2 samples, 0.61%)</title><rect x="99.3939%" y="484" width="0.6061%" height="15" fill="rgb(244,63,20)" fg:x="328" fg:w="2"/><text x="99.6439%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (2 samples, 0.61%)</title><rect x="99.3939%" y="500" width="0.6061%" height="15" fill="rgb(250,73,31)" fg:x="328" fg:w="2"/><text x="99.6439%" y="510.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/groupby_air.py-2024-03-03T07:50:06+05:30.svg b/perf_tests/groupby_air.py-2024-03-03T07:50:06+05:30.svg new file mode 100644 index 0000000..6e0a65c --- /dev/null +++ b/perf_tests/groupby_air.py-2024-03-03T07:50:06+05:30.svg @@ -0,0 +1,415 @@ +<?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="2298" onload="init(evt)" viewBox="0 0 1200 2298" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2298" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./groupby_air.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2287.00"> </text><svg id="frames" x="10" width="1180" total_samples="300"><g><title><module> (prompt_toolkit/auto_suggest.py:1) (1 samples, 0.33%)</title><rect x="7.3333%" y="804" width="0.3333%" height="15" fill="rgb(227,0,7)" fg:x="22" fg:w="1"/><text x="7.5833%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.3333%" y="820" width="0.3333%" height="15" fill="rgb(217,0,24)" fg:x="22" fg:w="1"/><text x="7.5833%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.3333%" y="836" width="0.3333%" height="15" fill="rgb(221,193,54)" fg:x="22" fg:w="1"/><text x="7.5833%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.3333%" y="852" width="0.3333%" height="15" fill="rgb(248,212,6)" fg:x="22" fg:w="1"/><text x="7.5833%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.3333%" y="868" width="0.3333%" height="15" fill="rgb(208,68,35)" fg:x="22" fg:w="1"/><text x="7.5833%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.3333%" y="884" width="0.3333%" height="15" fill="rgb(232,128,0)" fg:x="22" fg:w="1"/><text x="7.5833%" y="894.50"></text></g><g><title><module> (prompt_toolkit/document.py:1) (1 samples, 0.33%)</title><rect x="7.3333%" y="900" width="0.3333%" height="15" fill="rgb(207,160,47)" fg:x="22" fg:w="1"/><text x="7.5833%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.3333%" y="916" width="0.3333%" height="15" fill="rgb(228,23,34)" fg:x="22" fg:w="1"/><text x="7.5833%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.3333%" y="932" width="0.3333%" height="15" fill="rgb(218,30,26)" fg:x="22" fg:w="1"/><text x="7.5833%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.3333%" y="948" width="0.3333%" height="15" fill="rgb(220,122,19)" fg:x="22" fg:w="1"/><text x="7.5833%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.3333%" y="964" width="0.3333%" height="15" fill="rgb(250,228,42)" fg:x="22" fg:w="1"/><text x="7.5833%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.3333%" y="980" width="0.3333%" height="15" fill="rgb(240,193,28)" fg:x="22" fg:w="1"/><text x="7.5833%" y="990.50"></text></g><g><title><module> (prompt_toolkit/clipboard/__init__.py:1) (1 samples, 0.33%)</title><rect x="7.3333%" y="996" width="0.3333%" height="15" fill="rgb(216,20,37)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.3333%" y="1012" width="0.3333%" height="15" fill="rgb(206,188,39)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.3333%" y="1028" width="0.3333%" height="15" fill="rgb(217,207,13)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.3333%" y="1044" width="0.3333%" height="15" fill="rgb(231,73,38)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.3333%" y="1060" width="0.3333%" height="15" fill="rgb(225,20,46)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.3333%" y="1076" width="0.3333%" height="15" fill="rgb(210,31,41)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/clipboard/base.py:1) (1 samples, 0.33%)</title><rect x="7.3333%" y="1092" width="0.3333%" height="15" fill="rgb(221,200,47)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.3333%" y="1108" width="0.3333%" height="15" fill="rgb(226,26,5)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.3333%" y="1124" width="0.3333%" height="15" fill="rgb(249,33,26)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.3333%" y="1140" width="0.3333%" height="15" fill="rgb(235,183,28)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1150.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="7.3333%" y="1156" width="0.3333%" height="15" fill="rgb(221,5,38)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1166.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.33%)</title><rect x="7.3333%" y="1172" width="0.3333%" height="15" fill="rgb(247,18,42)" fg:x="22" fg:w="1"/><text x="7.5833%" y="1182.50"></text></g><g><title><module> (prompt_toolkit/application/__init__.py:1) (2 samples, 0.67%)</title><rect x="7.3333%" y="516" width="0.6667%" height="15" fill="rgb(241,131,45)" fg:x="22" fg:w="2"/><text x="7.5833%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="7.3333%" y="532" width="0.6667%" height="15" fill="rgb(249,31,29)" fg:x="22" fg:w="2"/><text x="7.5833%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="7.3333%" y="548" width="0.6667%" height="15" fill="rgb(225,111,53)" fg:x="22" fg:w="2"/><text x="7.5833%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="7.3333%" y="564" width="0.6667%" height="15" fill="rgb(238,160,17)" fg:x="22" fg:w="2"/><text x="7.5833%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="7.3333%" y="580" width="0.6667%" height="15" fill="rgb(214,148,48)" fg:x="22" fg:w="2"/><text x="7.5833%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="7.3333%" y="596" width="0.6667%" height="15" fill="rgb(232,36,49)" fg:x="22" fg:w="2"/><text x="7.5833%" y="606.50"></text></g><g><title><module> (prompt_toolkit/application/application.py:1) (2 samples, 0.67%)</title><rect x="7.3333%" y="612" width="0.6667%" height="15" fill="rgb(209,103,24)" fg:x="22" fg:w="2"/><text x="7.5833%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="7.3333%" y="628" width="0.6667%" height="15" fill="rgb(229,88,8)" fg:x="22" fg:w="2"/><text x="7.5833%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="7.3333%" y="644" width="0.6667%" height="15" fill="rgb(213,181,19)" fg:x="22" fg:w="2"/><text x="7.5833%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="7.3333%" y="660" width="0.6667%" height="15" fill="rgb(254,191,54)" fg:x="22" fg:w="2"/><text x="7.5833%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="7.3333%" y="676" width="0.6667%" height="15" fill="rgb(241,83,37)" fg:x="22" fg:w="2"/><text x="7.5833%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="7.3333%" y="692" width="0.6667%" height="15" fill="rgb(233,36,39)" fg:x="22" fg:w="2"/><text x="7.5833%" y="702.50"></text></g><g><title><module> (prompt_toolkit/buffer.py:1) (2 samples, 0.67%)</title><rect x="7.3333%" y="708" width="0.6667%" height="15" fill="rgb(226,3,54)" fg:x="22" fg:w="2"/><text x="7.5833%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="7.3333%" y="724" width="0.6667%" height="15" fill="rgb(245,192,40)" fg:x="22" fg:w="2"/><text x="7.5833%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="7.3333%" y="740" width="0.6667%" height="15" fill="rgb(238,167,29)" fg:x="22" fg:w="2"/><text x="7.5833%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="7.3333%" y="756" width="0.6667%" height="15" fill="rgb(232,182,51)" fg:x="22" fg:w="2"/><text x="7.5833%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="7.3333%" y="772" width="0.6667%" height="15" fill="rgb(231,60,39)" fg:x="22" fg:w="2"/><text x="7.5833%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="7.3333%" y="788" width="0.6667%" height="15" fill="rgb(208,69,12)" fg:x="22" fg:w="2"/><text x="7.5833%" y="798.50"></text></g><g><title><module> (prompt_toolkit/completion/__init__.py:1) (1 samples, 0.33%)</title><rect x="7.6667%" y="804" width="0.3333%" height="15" fill="rgb(235,93,37)" fg:x="23" fg:w="1"/><text x="7.9167%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.6667%" y="820" width="0.3333%" height="15" fill="rgb(213,116,39)" fg:x="23" fg:w="1"/><text x="7.9167%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.6667%" y="836" width="0.3333%" height="15" fill="rgb(222,207,29)" fg:x="23" fg:w="1"/><text x="7.9167%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.6667%" y="852" width="0.3333%" height="15" fill="rgb(206,96,30)" fg:x="23" fg:w="1"/><text x="7.9167%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.6667%" y="868" width="0.3333%" height="15" fill="rgb(218,138,4)" fg:x="23" fg:w="1"/><text x="7.9167%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.6667%" y="884" width="0.3333%" height="15" fill="rgb(250,191,14)" fg:x="23" fg:w="1"/><text x="7.9167%" y="894.50"></text></g><g><title><module> (prompt_toolkit/completion/base.py:1) (1 samples, 0.33%)</title><rect x="7.6667%" y="900" width="0.3333%" height="15" fill="rgb(239,60,40)" fg:x="23" fg:w="1"/><text x="7.9167%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.6667%" y="916" width="0.3333%" height="15" fill="rgb(206,27,48)" fg:x="23" fg:w="1"/><text x="7.9167%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.6667%" y="932" width="0.3333%" height="15" fill="rgb(225,35,8)" fg:x="23" fg:w="1"/><text x="7.9167%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.6667%" y="948" width="0.3333%" height="15" fill="rgb(250,213,24)" fg:x="23" fg:w="1"/><text x="7.9167%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.6667%" y="964" width="0.3333%" height="15" fill="rgb(247,123,22)" fg:x="23" fg:w="1"/><text x="7.9167%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.6667%" y="980" width="0.3333%" height="15" fill="rgb(231,138,38)" fg:x="23" fg:w="1"/><text x="7.9167%" y="990.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/__init__.py:1) (1 samples, 0.33%)</title><rect x="7.6667%" y="996" width="0.3333%" height="15" fill="rgb(231,145,46)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.6667%" y="1012" width="0.3333%" height="15" fill="rgb(251,118,11)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.6667%" y="1028" width="0.3333%" height="15" fill="rgb(217,147,25)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.6667%" y="1044" width="0.3333%" height="15" fill="rgb(247,81,37)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.6667%" y="1060" width="0.3333%" height="15" fill="rgb(209,12,38)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.6667%" y="1076" width="0.3333%" height="15" fill="rgb(227,1,9)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/html.py:1) (1 samples, 0.33%)</title><rect x="7.6667%" y="1092" width="0.3333%" height="15" fill="rgb(248,47,43)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.6667%" y="1108" width="0.3333%" height="15" fill="rgb(221,10,30)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.6667%" y="1124" width="0.3333%" height="15" fill="rgb(210,229,1)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.6667%" y="1140" width="0.3333%" height="15" fill="rgb(222,148,37)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.6667%" y="1156" width="0.3333%" height="15" fill="rgb(234,67,33)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="7.6667%" y="1172" width="0.3333%" height="15" fill="rgb(247,98,35)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1182.50"></text></g><g><title><module> (xml/dom/minidom.py:1) (1 samples, 0.33%)</title><rect x="7.6667%" y="1188" width="0.3333%" height="15" fill="rgb(247,138,52)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="7.6667%" y="1204" width="0.3333%" height="15" fill="rgb(213,79,30)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="7.6667%" y="1220" width="0.3333%" height="15" fill="rgb(246,177,23)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="7.6667%" y="1236" width="0.3333%" height="15" fill="rgb(230,62,27)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="7.6667%" y="1252" width="0.3333%" height="15" fill="rgb(216,154,8)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1262.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="7.6667%" y="1268" width="0.3333%" height="15" fill="rgb(244,35,45)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1278.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="7.6667%" y="1284" width="0.3333%" height="15" fill="rgb(251,115,12)" fg:x="23" fg:w="1"/><text x="7.9167%" y="1294.50"></text></g><g><title><module> (prompt_toolkit/__init__.py:1) (9 samples, 3.00%)</title><rect x="7.3333%" y="420" width="3.0000%" height="15" fill="rgb(240,54,50)" fg:x="22" fg:w="9"/><text x="7.5833%" y="430.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="7.3333%" y="436" width="3.0000%" height="15" fill="rgb(233,84,52)" fg:x="22" fg:w="9"/><text x="7.5833%" y="446.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="7.3333%" y="452" width="3.0000%" height="15" fill="rgb(207,117,47)" fg:x="22" fg:w="9"/><text x="7.5833%" y="462.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="7.3333%" y="468" width="3.0000%" height="15" fill="rgb(249,43,39)" fg:x="22" fg:w="9"/><text x="7.5833%" y="478.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="7.3333%" y="484" width="3.0000%" height="15" fill="rgb(209,38,44)" fg:x="22" fg:w="9"/><text x="7.5833%" y="494.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="7.3333%" y="500" width="3.0000%" height="15" fill="rgb(236,212,23)" fg:x="22" fg:w="9"/><text x="7.5833%" y="510.50">_ca..</text></g><g><title><module> (prompt_toolkit/shortcuts/__init__.py:1) (7 samples, 2.33%)</title><rect x="8.0000%" y="516" width="2.3333%" height="15" fill="rgb(242,79,21)" fg:x="24" fg:w="7"/><text x="8.2500%" y="526.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.33%)</title><rect x="8.0000%" y="532" width="2.3333%" height="15" fill="rgb(211,96,35)" fg:x="24" fg:w="7"/><text x="8.2500%" y="542.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.33%)</title><rect x="8.0000%" y="548" width="2.3333%" height="15" fill="rgb(253,215,40)" fg:x="24" fg:w="7"/><text x="8.2500%" y="558.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.33%)</title><rect x="8.0000%" y="564" width="2.3333%" height="15" fill="rgb(211,81,21)" fg:x="24" fg:w="7"/><text x="8.2500%" y="574.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.33%)</title><rect x="8.0000%" y="580" width="2.3333%" height="15" fill="rgb(208,190,38)" fg:x="24" fg:w="7"/><text x="8.2500%" y="590.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="8.0000%" y="596" width="2.3333%" height="15" fill="rgb(235,213,38)" fg:x="24" fg:w="7"/><text x="8.2500%" y="606.50">_..</text></g><g><title><module> (prompt_toolkit/shortcuts/dialogs.py:1) (7 samples, 2.33%)</title><rect x="8.0000%" y="612" width="2.3333%" height="15" fill="rgb(237,122,38)" fg:x="24" fg:w="7"/><text x="8.2500%" y="622.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.33%)</title><rect x="8.0000%" y="628" width="2.3333%" height="15" fill="rgb(244,218,35)" fg:x="24" fg:w="7"/><text x="8.2500%" y="638.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.33%)</title><rect x="8.0000%" y="644" width="2.3333%" height="15" fill="rgb(240,68,47)" fg:x="24" fg:w="7"/><text x="8.2500%" y="654.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.33%)</title><rect x="8.0000%" y="660" width="2.3333%" height="15" fill="rgb(210,16,53)" fg:x="24" fg:w="7"/><text x="8.2500%" y="670.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.33%)</title><rect x="8.0000%" y="676" width="2.3333%" height="15" fill="rgb(235,124,12)" fg:x="24" fg:w="7"/><text x="8.2500%" y="686.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="8.0000%" y="692" width="2.3333%" height="15" fill="rgb(224,169,11)" fg:x="24" fg:w="7"/><text x="8.2500%" y="702.50">_..</text></g><g><title><module> (prompt_toolkit/widgets/__init__.py:1) (7 samples, 2.33%)</title><rect x="8.0000%" y="708" width="2.3333%" height="15" fill="rgb(250,166,2)" fg:x="24" fg:w="7"/><text x="8.2500%" y="718.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.33%)</title><rect x="8.0000%" y="724" width="2.3333%" height="15" fill="rgb(242,216,29)" fg:x="24" fg:w="7"/><text x="8.2500%" y="734.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.33%)</title><rect x="8.0000%" y="740" width="2.3333%" height="15" fill="rgb(230,116,27)" fg:x="24" fg:w="7"/><text x="8.2500%" y="750.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.33%)</title><rect x="8.0000%" y="756" width="2.3333%" height="15" fill="rgb(228,99,48)" fg:x="24" fg:w="7"/><text x="8.2500%" y="766.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.33%)</title><rect x="8.0000%" y="772" width="2.3333%" height="15" fill="rgb(253,11,6)" fg:x="24" fg:w="7"/><text x="8.2500%" y="782.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="8.0000%" y="788" width="2.3333%" height="15" fill="rgb(247,143,39)" fg:x="24" fg:w="7"/><text x="8.2500%" y="798.50">_..</text></g><g><title><module> (prompt_toolkit/widgets/base.py:1) (7 samples, 2.33%)</title><rect x="8.0000%" y="804" width="2.3333%" height="15" fill="rgb(236,97,10)" fg:x="24" fg:w="7"/><text x="8.2500%" y="814.50"><..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="7.3333%" y="324" width="3.6667%" height="15" fill="rgb(233,208,19)" fg:x="22" fg:w="11"/><text x="7.5833%" y="334.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.67%)</title><rect x="7.3333%" y="340" width="3.6667%" height="15" fill="rgb(216,164,2)" fg:x="22" fg:w="11"/><text x="7.5833%" y="350.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.67%)</title><rect x="7.3333%" y="356" width="3.6667%" height="15" fill="rgb(220,129,5)" fg:x="22" fg:w="11"/><text x="7.5833%" y="366.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.67%)</title><rect x="7.3333%" y="372" width="3.6667%" height="15" fill="rgb(242,17,10)" fg:x="22" fg:w="11"/><text x="7.5833%" y="382.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.67%)</title><rect x="7.3333%" y="388" width="3.6667%" height="15" fill="rgb(242,107,0)" fg:x="22" fg:w="11"/><text x="7.5833%" y="398.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="7.3333%" y="404" width="3.6667%" height="15" fill="rgb(251,28,31)" fg:x="22" fg:w="11"/><text x="7.5833%" y="414.50">_cal..</text></g><g><title><module> (pygments/lexers/__init__.py:1) (2 samples, 0.67%)</title><rect x="10.3333%" y="420" width="0.6667%" height="15" fill="rgb(233,223,10)" fg:x="31" fg:w="2"/><text x="10.5833%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="10.3333%" y="436" width="0.6667%" height="15" fill="rgb(215,21,27)" fg:x="31" fg:w="2"/><text x="10.5833%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="10.3333%" y="452" width="0.6667%" height="15" fill="rgb(232,23,21)" fg:x="31" fg:w="2"/><text x="10.5833%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="10.3333%" y="468" width="0.6667%" height="15" fill="rgb(244,5,23)" fg:x="31" fg:w="2"/><text x="10.5833%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="10.3333%" y="484" width="0.6667%" height="15" fill="rgb(226,81,46)" fg:x="31" fg:w="2"/><text x="10.5833%" y="494.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.67%)</title><rect x="10.3333%" y="500" width="0.6667%" height="15" fill="rgb(247,70,30)" fg:x="31" fg:w="2"/><text x="10.5833%" y="510.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.67%)</title><rect x="10.3333%" y="516" width="0.6667%" height="15" fill="rgb(212,68,19)" fg:x="31" fg:w="2"/><text x="10.5833%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="11.0000%" y="1012" width="0.3333%" height="15" fill="rgb(240,187,13)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="11.0000%" y="1028" width="0.3333%" height="15" fill="rgb(223,113,26)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="11.0000%" y="1044" width="0.3333%" height="15" fill="rgb(206,192,2)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="11.0000%" y="1060" width="0.3333%" height="15" fill="rgb(241,108,4)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="11.0000%" y="1076" width="0.3333%" height="15" fill="rgb(247,173,49)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1086.50"></text></g><g><title><module> (tornado/tcpserver.py:16) (1 samples, 0.33%)</title><rect x="11.0000%" y="1092" width="0.3333%" height="15" fill="rgb(224,114,35)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1102.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="11.0000%" y="1108" width="0.3333%" height="15" fill="rgb(245,159,27)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1118.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (1 samples, 0.33%)</title><rect x="11.0000%" y="1124" width="0.3333%" height="15" fill="rgb(245,172,44)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1134.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.33%)</title><rect x="11.0000%" y="1140" width="0.3333%" height="15" fill="rgb(236,23,11)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1150.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.33%)</title><rect x="11.0000%" y="1156" width="0.3333%" height="15" fill="rgb(205,117,38)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1166.50"></text></g><g><title>_resolve_name (<frozen importlib._bootstrap>:883) (1 samples, 0.33%)</title><rect x="11.0000%" y="1172" width="0.3333%" height="15" fill="rgb(237,72,25)" fg:x="33" fg:w="1"/><text x="11.2500%" y="1182.50"></text></g><g><title>__new__ (ssl.py:483) (1 samples, 0.33%)</title><rect x="11.3333%" y="1188" width="0.3333%" height="15" fill="rgb(244,70,9)" fg:x="34" fg:w="1"/><text x="11.5833%" y="1198.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (6 samples, 2.00%)</title><rect x="11.0000%" y="996" width="2.0000%" height="15" fill="rgb(217,125,39)" fg:x="33" fg:w="6"/><text x="11.2500%" y="1006.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.67%)</title><rect x="11.3333%" y="1012" width="1.6667%" height="15" fill="rgb(235,36,10)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (5 samples, 1.67%)</title><rect x="11.3333%" y="1028" width="1.6667%" height="15" fill="rgb(251,123,47)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (5 samples, 1.67%)</title><rect x="11.3333%" y="1044" width="1.6667%" height="15" fill="rgb(221,13,13)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (5 samples, 1.67%)</title><rect x="11.3333%" y="1060" width="1.6667%" height="15" fill="rgb(238,131,9)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="11.3333%" y="1076" width="1.6667%" height="15" fill="rgb(211,50,8)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="11.3333%" y="1092" width="1.6667%" height="15" fill="rgb(245,182,24)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="11.3333%" y="1108" width="1.6667%" height="15" fill="rgb(242,14,37)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="11.3333%" y="1124" width="1.6667%" height="15" fill="rgb(246,228,12)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="11.3333%" y="1140" width="1.6667%" height="15" fill="rgb(213,55,15)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1150.50"></text></g><g><title><module> (tornado/netutil.py:16) (5 samples, 1.67%)</title><rect x="11.3333%" y="1156" width="1.6667%" height="15" fill="rgb(209,9,3)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1166.50"></text></g><g><title>create_default_context (ssl.py:724) (5 samples, 1.67%)</title><rect x="11.3333%" y="1172" width="1.6667%" height="15" fill="rgb(230,59,30)" fg:x="34" fg:w="5"/><text x="11.5833%" y="1182.50"></text></g><g><title>load_default_certs (ssl.py:570) (4 samples, 1.33%)</title><rect x="11.6667%" y="1188" width="1.3333%" height="15" fill="rgb(209,121,21)" fg:x="35" fg:w="4"/><text x="11.9167%" y="1198.50"></text></g><g><title><module> (distributed/comm/ucx.py:1) (1 samples, 0.33%)</title><rect x="13.0000%" y="996" width="0.3333%" height="15" fill="rgb(220,109,13)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="13.0000%" y="1012" width="0.3333%" height="15" fill="rgb(232,18,1)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="13.0000%" y="1028" width="0.3333%" height="15" fill="rgb(215,41,42)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="13.0000%" y="1044" width="0.3333%" height="15" fill="rgb(224,123,36)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="13.0000%" y="1060" width="0.3333%" height="15" fill="rgb(240,125,3)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="13.0000%" y="1076" width="0.3333%" height="15" fill="rgb(205,98,50)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1086.50"></text></g><g><title><module> (distributed/diagnostics/nvml.py:1) (1 samples, 0.33%)</title><rect x="13.0000%" y="1092" width="0.3333%" height="15" fill="rgb(205,185,37)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1102.50"></text></g><g><title>__new__ (typing.py:1866) (1 samples, 0.33%)</title><rect x="13.0000%" y="1108" width="0.3333%" height="15" fill="rgb(238,207,15)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1118.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (1 samples, 0.33%)</title><rect x="13.0000%" y="1124" width="0.3333%" height="15" fill="rgb(213,199,42)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1134.50"></text></g><g><title><dictcomp> (typing.py:1848) (1 samples, 0.33%)</title><rect x="13.0000%" y="1140" width="0.3333%" height="15" fill="rgb(235,201,11)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1150.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.33%)</title><rect x="13.0000%" y="1156" width="0.3333%" height="15" fill="rgb(207,46,11)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1166.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.33%)</title><rect x="13.0000%" y="1172" width="0.3333%" height="15" fill="rgb(241,35,35)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1182.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.33%)</title><rect x="13.0000%" y="1188" width="0.3333%" height="15" fill="rgb(243,32,47)" fg:x="39" fg:w="1"/><text x="13.2500%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="13.3333%" y="1220" width="0.3333%" height="15" fill="rgb(247,202,23)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="13.3333%" y="1236" width="0.3333%" height="15" fill="rgb(219,102,11)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1246.50"></text></g><g><title><module> (http/cookies.py:39) (1 samples, 0.33%)</title><rect x="13.3333%" y="1252" width="0.3333%" height="15" fill="rgb(243,110,44)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1262.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="13.3333%" y="1268" width="0.3333%" height="15" fill="rgb(222,74,54)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1278.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="13.3333%" y="1284" width="0.3333%" height="15" fill="rgb(216,99,12)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1294.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.33%)</title><rect x="13.3333%" y="1300" width="0.3333%" height="15" fill="rgb(226,22,26)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1310.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.33%)</title><rect x="13.3333%" y="1316" width="0.3333%" height="15" fill="rgb(217,163,10)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1326.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="13.3333%" y="1332" width="0.3333%" height="15" fill="rgb(213,25,53)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1342.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="13.3333%" y="1348" width="0.3333%" height="15" fill="rgb(252,105,26)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1358.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="13.3333%" y="1364" width="0.3333%" height="15" fill="rgb(220,39,43)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1374.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="13.3333%" y="1380" width="0.3333%" height="15" fill="rgb(229,68,48)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1390.50"></text></g><g><title>get (sre_parse.py:255) (1 samples, 0.33%)</title><rect x="13.3333%" y="1396" width="0.3333%" height="15" fill="rgb(252,8,32)" fg:x="40" fg:w="1"/><text x="13.5833%" y="1406.50"></text></g><g><title><module> (distributed/comm/__init__.py:1) (9 samples, 3.00%)</title><rect x="11.0000%" y="852" width="3.0000%" height="15" fill="rgb(223,20,43)" fg:x="33" fg:w="9"/><text x="11.2500%" y="862.50"><mo..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (9 samples, 3.00%)</title><rect x="11.0000%" y="868" width="3.0000%" height="15" fill="rgb(229,81,49)" fg:x="33" fg:w="9"/><text x="11.2500%" y="878.50">_re..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 3.00%)</title><rect x="11.0000%" y="884" width="3.0000%" height="15" fill="rgb(236,28,36)" fg:x="33" fg:w="9"/><text x="11.2500%" y="894.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="11.0000%" y="900" width="3.0000%" height="15" fill="rgb(249,185,26)" fg:x="33" fg:w="9"/><text x="11.2500%" y="910.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="11.0000%" y="916" width="3.0000%" height="15" fill="rgb(249,174,33)" fg:x="33" fg:w="9"/><text x="11.2500%" y="926.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="11.0000%" y="932" width="3.0000%" height="15" fill="rgb(233,201,37)" fg:x="33" fg:w="9"/><text x="11.2500%" y="942.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="11.0000%" y="948" width="3.0000%" height="15" fill="rgb(221,78,26)" fg:x="33" fg:w="9"/><text x="11.2500%" y="958.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="11.0000%" y="964" width="3.0000%" height="15" fill="rgb(250,127,30)" fg:x="33" fg:w="9"/><text x="11.2500%" y="974.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="11.0000%" y="980" width="3.0000%" height="15" fill="rgb(230,49,44)" fg:x="33" fg:w="9"/><text x="11.2500%" y="990.50">_ca..</text></g><g><title><module> (distributed/comm/ws.py:1) (2 samples, 0.67%)</title><rect x="13.3333%" y="996" width="0.6667%" height="15" fill="rgb(229,67,23)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1006.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="13.3333%" y="1012" width="0.6667%" height="15" fill="rgb(249,83,47)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (2 samples, 0.67%)</title><rect x="13.3333%" y="1028" width="0.6667%" height="15" fill="rgb(215,43,3)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.67%)</title><rect x="13.3333%" y="1044" width="0.6667%" height="15" fill="rgb(238,154,13)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.67%)</title><rect x="13.3333%" y="1060" width="0.6667%" height="15" fill="rgb(219,56,2)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="13.3333%" y="1076" width="0.6667%" height="15" fill="rgb(233,0,4)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="13.3333%" y="1092" width="0.6667%" height="15" fill="rgb(235,30,7)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="13.3333%" y="1108" width="0.6667%" height="15" fill="rgb(250,79,13)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="13.3333%" y="1124" width="0.6667%" height="15" fill="rgb(211,146,34)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="13.3333%" y="1140" width="0.6667%" height="15" fill="rgb(228,22,38)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1150.50"></text></g><g><title><module> (tornado/web.py:16) (2 samples, 0.67%)</title><rect x="13.3333%" y="1156" width="0.6667%" height="15" fill="rgb(235,168,5)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="13.3333%" y="1172" width="0.6667%" height="15" fill="rgb(221,155,16)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="13.3333%" y="1188" width="0.6667%" height="15" fill="rgb(215,215,53)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="13.3333%" y="1204" width="0.6667%" height="15" fill="rgb(223,4,10)" fg:x="40" fg:w="2"/><text x="13.5833%" y="1214.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="13.6667%" y="1220" width="0.3333%" height="15" fill="rgb(234,103,6)" fg:x="41" fg:w="1"/><text x="13.9167%" y="1230.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.33%)</title><rect x="13.6667%" y="1236" width="0.3333%" height="15" fill="rgb(227,97,0)" fg:x="41" fg:w="1"/><text x="13.9167%" y="1246.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.33%)</title><rect x="13.6667%" y="1252" width="0.3333%" height="15" fill="rgb(234,150,53)" fg:x="41" fg:w="1"/><text x="13.9167%" y="1262.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.33%)</title><rect x="13.6667%" y="1268" width="0.3333%" height="15" fill="rgb(228,201,54)" fg:x="41" fg:w="1"/><text x="13.9167%" y="1278.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.33%)</title><rect x="13.6667%" y="1284" width="0.3333%" height="15" fill="rgb(222,22,37)" fg:x="41" fg:w="1"/><text x="13.9167%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.33%)</title><rect x="11.0000%" y="772" width="3.3333%" height="15" fill="rgb(237,53,32)" fg:x="33" fg:w="10"/><text x="11.2500%" y="782.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.33%)</title><rect x="11.0000%" y="788" width="3.3333%" height="15" fill="rgb(233,25,53)" fg:x="33" fg:w="10"/><text x="11.2500%" y="798.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.33%)</title><rect x="11.0000%" y="804" width="3.3333%" height="15" fill="rgb(210,40,34)" fg:x="33" fg:w="10"/><text x="11.2500%" y="814.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.33%)</title><rect x="11.0000%" y="820" width="3.3333%" height="15" fill="rgb(241,220,44)" fg:x="33" fg:w="10"/><text x="11.2500%" y="830.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="11.0000%" y="836" width="3.3333%" height="15" fill="rgb(235,28,35)" fg:x="33" fg:w="10"/><text x="11.2500%" y="846.50">_ca..</text></g><g><title><module> (distributed/diskutils.py:1) (1 samples, 0.33%)</title><rect x="14.0000%" y="852" width="0.3333%" height="15" fill="rgb(210,56,17)" fg:x="42" fg:w="1"/><text x="14.2500%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="14.0000%" y="868" width="0.3333%" height="15" fill="rgb(224,130,29)" fg:x="42" fg:w="1"/><text x="14.2500%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="14.0000%" y="884" width="0.3333%" height="15" fill="rgb(235,212,8)" fg:x="42" fg:w="1"/><text x="14.2500%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="14.0000%" y="900" width="0.3333%" height="15" fill="rgb(223,33,50)" fg:x="42" fg:w="1"/><text x="14.2500%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="14.0000%" y="916" width="0.3333%" height="15" fill="rgb(219,149,13)" fg:x="42" fg:w="1"/><text x="14.2500%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.0000%" y="932" width="0.3333%" height="15" fill="rgb(250,156,29)" fg:x="42" fg:w="1"/><text x="14.2500%" y="942.50"></text></g><g><title><module> (locket/__init__.py:1) (1 samples, 0.33%)</title><rect x="14.0000%" y="948" width="0.3333%" height="15" fill="rgb(216,193,19)" fg:x="42" fg:w="1"/><text x="14.2500%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="14.0000%" y="964" width="0.3333%" height="15" fill="rgb(216,135,14)" fg:x="42" fg:w="1"/><text x="14.2500%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="14.0000%" y="980" width="0.3333%" height="15" fill="rgb(241,47,5)" fg:x="42" fg:w="1"/><text x="14.2500%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="14.0000%" y="996" width="0.3333%" height="15" fill="rgb(233,42,35)" fg:x="42" fg:w="1"/><text x="14.2500%" y="1006.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="14.0000%" y="1012" width="0.3333%" height="15" fill="rgb(231,13,6)" fg:x="42" fg:w="1"/><text x="14.2500%" y="1022.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="14.0000%" y="1028" width="0.3333%" height="15" fill="rgb(207,181,40)" fg:x="42" fg:w="1"/><text x="14.2500%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.0000%" y="1044" width="0.3333%" height="15" fill="rgb(254,173,49)" fg:x="42" fg:w="1"/><text x="14.2500%" y="1054.50"></text></g><g><title><module> (click/__init__.py:1) (1 samples, 0.33%)</title><rect x="14.3333%" y="1076" width="0.3333%" height="15" fill="rgb(221,1,38)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="14.3333%" y="1092" width="0.3333%" height="15" fill="rgb(206,124,46)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="14.3333%" y="1108" width="0.3333%" height="15" fill="rgb(249,21,11)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="14.3333%" y="1124" width="0.3333%" height="15" fill="rgb(222,201,40)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="14.3333%" y="1140" width="0.3333%" height="15" fill="rgb(235,61,29)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.3333%" y="1156" width="0.3333%" height="15" fill="rgb(219,207,3)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1166.50"></text></g><g><title><module> (click/core.py:1) (1 samples, 0.33%)</title><rect x="14.3333%" y="1172" width="0.3333%" height="15" fill="rgb(222,56,46)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="14.3333%" y="1188" width="0.3333%" height="15" fill="rgb(239,76,54)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.3333%" y="1204" width="0.3333%" height="15" fill="rgb(231,124,27)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="14.3333%" y="1220" width="0.3333%" height="15" fill="rgb(249,195,6)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="14.3333%" y="1236" width="0.3333%" height="15" fill="rgb(237,174,47)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="14.3333%" y="1252" width="0.3333%" height="15" fill="rgb(206,201,31)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="14.3333%" y="1268" width="0.3333%" height="15" fill="rgb(231,57,52)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.3333%" y="1284" width="0.3333%" height="15" fill="rgb(248,177,22)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1294.50"></text></g><g><title><module> (click/types.py:1) (1 samples, 0.33%)</title><rect x="14.3333%" y="1300" width="0.3333%" height="15" fill="rgb(215,211,37)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="14.3333%" y="1316" width="0.3333%" height="15" fill="rgb(241,128,51)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="14.3333%" y="1332" width="0.3333%" height="15" fill="rgb(227,165,31)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="14.3333%" y="1348" width="0.3333%" height="15" fill="rgb(228,167,24)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="14.3333%" y="1364" width="0.3333%" height="15" fill="rgb(228,143,12)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="14.3333%" y="1380" width="0.3333%" height="15" fill="rgb(249,149,8)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1390.50"></text></g><g><title><module> (click/_compat.py:1) (1 samples, 0.33%)</title><rect x="14.3333%" y="1396" width="0.3333%" height="15" fill="rgb(243,35,44)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1406.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="14.3333%" y="1412" width="0.3333%" height="15" fill="rgb(246,89,9)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1422.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="14.3333%" y="1428" width="0.3333%" height="15" fill="rgb(233,213,13)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1438.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.33%)</title><rect x="14.3333%" y="1444" width="0.3333%" height="15" fill="rgb(233,141,41)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1454.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.33%)</title><rect x="14.3333%" y="1460" width="0.3333%" height="15" fill="rgb(239,167,4)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1470.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="14.3333%" y="1476" width="0.3333%" height="15" fill="rgb(209,217,16)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1486.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="14.3333%" y="1492" width="0.3333%" height="15" fill="rgb(219,88,35)" fg:x="43" fg:w="1"/><text x="14.5833%" y="1502.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="14.6667%" y="1124" width="0.3333%" height="15" fill="rgb(220,193,23)" fg:x="44" fg:w="1"/><text x="14.9167%" y="1134.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="14.6667%" y="1140" width="0.3333%" height="15" fill="rgb(230,90,52)" fg:x="44" fg:w="1"/><text x="14.9167%" y="1150.50"></text></g><g><title><module> (distributed/profile.py:1) (3 samples, 1.00%)</title><rect x="14.3333%" y="884" width="1.0000%" height="15" fill="rgb(252,106,19)" fg:x="43" fg:w="3"/><text x="14.5833%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="14.3333%" y="900" width="1.0000%" height="15" fill="rgb(206,74,20)" fg:x="43" fg:w="3"/><text x="14.5833%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="14.3333%" y="916" width="1.0000%" height="15" fill="rgb(230,138,44)" fg:x="43" fg:w="3"/><text x="14.5833%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="14.3333%" y="932" width="1.0000%" height="15" fill="rgb(235,182,43)" fg:x="43" fg:w="3"/><text x="14.5833%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="14.3333%" y="948" width="1.0000%" height="15" fill="rgb(242,16,51)" fg:x="43" fg:w="3"/><text x="14.5833%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="14.3333%" y="964" width="1.0000%" height="15" fill="rgb(248,9,4)" fg:x="43" fg:w="3"/><text x="14.5833%" y="974.50"></text></g><g><title><module> (distributed/utils.py:1) (3 samples, 1.00%)</title><rect x="14.3333%" y="980" width="1.0000%" height="15" fill="rgb(210,31,22)" fg:x="43" fg:w="3"/><text x="14.5833%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="14.3333%" y="996" width="1.0000%" height="15" fill="rgb(239,54,39)" fg:x="43" fg:w="3"/><text x="14.5833%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="14.3333%" y="1012" width="1.0000%" height="15" fill="rgb(230,99,41)" fg:x="43" fg:w="3"/><text x="14.5833%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="14.3333%" y="1028" width="1.0000%" height="15" fill="rgb(253,106,12)" fg:x="43" fg:w="3"/><text x="14.5833%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="14.3333%" y="1044" width="1.0000%" height="15" fill="rgb(213,46,41)" fg:x="43" fg:w="3"/><text x="14.5833%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="14.3333%" y="1060" width="1.0000%" height="15" fill="rgb(215,133,35)" fg:x="43" fg:w="3"/><text x="14.5833%" y="1070.50"></text></g><g><title><module> (xml/etree/ElementTree.py:1) (2 samples, 0.67%)</title><rect x="14.6667%" y="1076" width="0.6667%" height="15" fill="rgb(213,28,5)" fg:x="44" fg:w="2"/><text x="14.9167%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="14.6667%" y="1092" width="0.6667%" height="15" fill="rgb(215,77,49)" fg:x="44" fg:w="2"/><text x="14.9167%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="14.6667%" y="1108" width="0.6667%" height="15" fill="rgb(248,100,22)" fg:x="44" fg:w="2"/><text x="14.9167%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.0000%" y="1124" width="0.3333%" height="15" fill="rgb(208,67,9)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1134.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="15.0000%" y="1140" width="0.3333%" height="15" fill="rgb(219,133,21)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1150.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="15.0000%" y="1156" width="0.3333%" height="15" fill="rgb(246,46,29)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.0000%" y="1172" width="0.3333%" height="15" fill="rgb(246,185,52)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.0000%" y="1188" width="0.3333%" height="15" fill="rgb(252,136,11)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.0000%" y="1204" width="0.3333%" height="15" fill="rgb(219,138,53)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.0000%" y="1220" width="0.3333%" height="15" fill="rgb(211,51,23)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1230.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="15.0000%" y="1236" width="0.3333%" height="15" fill="rgb(247,221,28)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1246.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="15.0000%" y="1252" width="0.3333%" height="15" fill="rgb(251,222,45)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.0000%" y="1268" width="0.3333%" height="15" fill="rgb(217,162,53)" fg:x="45" fg:w="1"/><text x="15.2500%" y="1278.50"></text></g><g><title><module> (distributed/core.py:1) (14 samples, 4.67%)</title><rect x="11.0000%" y="756" width="4.6667%" height="15" fill="rgb(229,93,14)" fg:x="33" fg:w="14"/><text x="11.2500%" y="766.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="14.3333%" y="772" width="1.3333%" height="15" fill="rgb(209,67,49)" fg:x="43" fg:w="4"/><text x="14.5833%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="14.3333%" y="788" width="1.3333%" height="15" fill="rgb(213,87,29)" fg:x="43" fg:w="4"/><text x="14.5833%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="14.3333%" y="804" width="1.3333%" height="15" fill="rgb(205,151,52)" fg:x="43" fg:w="4"/><text x="14.5833%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="14.3333%" y="820" width="1.3333%" height="15" fill="rgb(253,215,39)" fg:x="43" fg:w="4"/><text x="14.5833%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="14.3333%" y="836" width="1.3333%" height="15" fill="rgb(221,220,41)" fg:x="43" fg:w="4"/><text x="14.5833%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="14.3333%" y="852" width="1.3333%" height="15" fill="rgb(218,133,21)" fg:x="43" fg:w="4"/><text x="14.5833%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="14.3333%" y="868" width="1.3333%" height="15" fill="rgb(221,193,43)" fg:x="43" fg:w="4"/><text x="14.5833%" y="878.50"></text></g><g><title><module> (distributed/protocol/__init__.py:1) (1 samples, 0.33%)</title><rect x="15.3333%" y="884" width="0.3333%" height="15" fill="rgb(240,128,52)" fg:x="46" fg:w="1"/><text x="15.5833%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.3333%" y="900" width="0.3333%" height="15" fill="rgb(253,114,12)" fg:x="46" fg:w="1"/><text x="15.5833%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.3333%" y="916" width="0.3333%" height="15" fill="rgb(215,223,47)" fg:x="46" fg:w="1"/><text x="15.5833%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.3333%" y="932" width="0.3333%" height="15" fill="rgb(248,225,23)" fg:x="46" fg:w="1"/><text x="15.5833%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="15.3333%" y="948" width="0.3333%" height="15" fill="rgb(250,108,0)" fg:x="46" fg:w="1"/><text x="15.5833%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.3333%" y="964" width="0.3333%" height="15" fill="rgb(228,208,7)" fg:x="46" fg:w="1"/><text x="15.5833%" y="974.50"></text></g><g><title><module> (distributed/protocol/core.py:1) (1 samples, 0.33%)</title><rect x="15.3333%" y="980" width="0.3333%" height="15" fill="rgb(244,45,10)" fg:x="46" fg:w="1"/><text x="15.5833%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.3333%" y="996" width="0.3333%" height="15" fill="rgb(207,125,25)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.3333%" y="1012" width="0.3333%" height="15" fill="rgb(210,195,18)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.3333%" y="1028" width="0.3333%" height="15" fill="rgb(249,80,12)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="15.3333%" y="1044" width="0.3333%" height="15" fill="rgb(221,65,9)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.3333%" y="1060" width="0.3333%" height="15" fill="rgb(235,49,36)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1070.50"></text></g><g><title><module> (msgpack/__init__.py:1) (1 samples, 0.33%)</title><rect x="15.3333%" y="1076" width="0.3333%" height="15" fill="rgb(225,32,20)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.3333%" y="1092" width="0.3333%" height="15" fill="rgb(215,141,46)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.3333%" y="1108" width="0.3333%" height="15" fill="rgb(250,160,47)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.3333%" y="1124" width="0.3333%" height="15" fill="rgb(216,222,40)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1134.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="15.3333%" y="1140" width="0.3333%" height="15" fill="rgb(234,217,39)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1150.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="15.3333%" y="1156" width="0.3333%" height="15" fill="rgb(207,178,40)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.3333%" y="1172" width="0.3333%" height="15" fill="rgb(221,136,13)" fg:x="46" fg:w="1"/><text x="15.5833%" y="1182.50"></text></g><g><title><module> (distributed/worker_memory.py:1) (1 samples, 0.33%)</title><rect x="15.6667%" y="852" width="0.3333%" height="15" fill="rgb(249,199,10)" fg:x="47" fg:w="1"/><text x="15.9167%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.6667%" y="868" width="0.3333%" height="15" fill="rgb(249,222,13)" fg:x="47" fg:w="1"/><text x="15.9167%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.6667%" y="884" width="0.3333%" height="15" fill="rgb(244,185,38)" fg:x="47" fg:w="1"/><text x="15.9167%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.6667%" y="900" width="0.3333%" height="15" fill="rgb(236,202,9)" fg:x="47" fg:w="1"/><text x="15.9167%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="15.6667%" y="916" width="0.3333%" height="15" fill="rgb(250,229,37)" fg:x="47" fg:w="1"/><text x="15.9167%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.6667%" y="932" width="0.3333%" height="15" fill="rgb(206,174,23)" fg:x="47" fg:w="1"/><text x="15.9167%" y="942.50"></text></g><g><title><module> (distributed/spill.py:1) (1 samples, 0.33%)</title><rect x="15.6667%" y="948" width="0.3333%" height="15" fill="rgb(211,33,43)" fg:x="47" fg:w="1"/><text x="15.9167%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.6667%" y="964" width="0.3333%" height="15" fill="rgb(245,58,50)" fg:x="47" fg:w="1"/><text x="15.9167%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.6667%" y="980" width="0.3333%" height="15" fill="rgb(244,68,36)" fg:x="47" fg:w="1"/><text x="15.9167%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.6667%" y="996" width="0.3333%" height="15" fill="rgb(232,229,15)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="15.6667%" y="1012" width="0.3333%" height="15" fill="rgb(254,30,23)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.6667%" y="1028" width="0.3333%" height="15" fill="rgb(235,160,14)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1038.50"></text></g><g><title><module> (zict/__init__.py:1) (1 samples, 0.33%)</title><rect x="15.6667%" y="1044" width="0.3333%" height="15" fill="rgb(212,155,44)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="15.6667%" y="1060" width="0.3333%" height="15" fill="rgb(226,2,50)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="15.6667%" y="1076" width="0.3333%" height="15" fill="rgb(234,177,6)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="15.6667%" y="1092" width="0.3333%" height="15" fill="rgb(217,24,9)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="15.6667%" y="1108" width="0.3333%" height="15" fill="rgb(220,13,46)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="15.6667%" y="1124" width="0.3333%" height="15" fill="rgb(239,221,27)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1134.50"></text></g><g><title><module> (zict/cache.py:1) (1 samples, 0.33%)</title><rect x="15.6667%" y="1140" width="0.3333%" height="15" fill="rgb(222,198,25)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1150.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.33%)</title><rect x="15.6667%" y="1156" width="0.3333%" height="15" fill="rgb(211,99,13)" fg:x="47" fg:w="1"/><text x="15.9167%" y="1166.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (2 samples, 0.67%)</title><rect x="16.3333%" y="916" width="0.6667%" height="15" fill="rgb(232,111,31)" fg:x="49" fg:w="2"/><text x="16.5833%" y="926.50"></text></g><g><title>_create_fn (dataclasses.py:377) (2 samples, 0.67%)</title><rect x="16.3333%" y="932" width="0.6667%" height="15" fill="rgb(245,82,37)" fg:x="49" fg:w="2"/><text x="16.5833%" y="942.50"></text></g><g><title>_tuple_str (dataclasses.py:344) (1 samples, 0.33%)</title><rect x="17.0000%" y="916" width="0.3333%" height="15" fill="rgb(227,149,46)" fg:x="51" fg:w="1"/><text x="17.2500%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (20 samples, 6.67%)</title><rect x="11.0000%" y="740" width="6.6667%" height="15" fill="rgb(218,36,50)" fg:x="33" fg:w="20"/><text x="11.2500%" y="750.50">_call_wit..</text></g><g><title><module> (distributed/worker.py:1) (6 samples, 2.00%)</title><rect x="15.6667%" y="756" width="2.0000%" height="15" fill="rgb(226,80,48)" fg:x="47" fg:w="6"/><text x="15.9167%" y="766.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.00%)</title><rect x="15.6667%" y="772" width="2.0000%" height="15" fill="rgb(238,224,15)" fg:x="47" fg:w="6"/><text x="15.9167%" y="782.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.00%)</title><rect x="15.6667%" y="788" width="2.0000%" height="15" fill="rgb(241,136,10)" fg:x="47" fg:w="6"/><text x="15.9167%" y="798.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.00%)</title><rect x="15.6667%" y="804" width="2.0000%" height="15" fill="rgb(208,32,45)" fg:x="47" fg:w="6"/><text x="15.9167%" y="814.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.00%)</title><rect x="15.6667%" y="820" width="2.0000%" height="15" fill="rgb(207,135,9)" fg:x="47" fg:w="6"/><text x="15.9167%" y="830.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.00%)</title><rect x="15.6667%" y="836" width="2.0000%" height="15" fill="rgb(206,86,44)" fg:x="47" fg:w="6"/><text x="15.9167%" y="846.50">_..</text></g><g><title><module> (distributed/worker_state_machine.py:1) (5 samples, 1.67%)</title><rect x="16.0000%" y="852" width="1.6667%" height="15" fill="rgb(245,177,15)" fg:x="48" fg:w="5"/><text x="16.2500%" y="862.50"></text></g><g><title>dataclass (dataclasses.py:998) (5 samples, 1.67%)</title><rect x="16.0000%" y="868" width="1.6667%" height="15" fill="rgb(206,64,50)" fg:x="48" fg:w="5"/><text x="16.2500%" y="878.50"></text></g><g><title>wrap (dataclasses.py:1012) (5 samples, 1.67%)</title><rect x="16.0000%" y="884" width="1.6667%" height="15" fill="rgb(234,36,40)" fg:x="48" fg:w="5"/><text x="16.2500%" y="894.50"></text></g><g><title>_process_class (dataclasses.py:809) (5 samples, 1.67%)</title><rect x="16.0000%" y="900" width="1.6667%" height="15" fill="rgb(213,64,8)" fg:x="48" fg:w="5"/><text x="16.2500%" y="910.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.33%)</title><rect x="17.3333%" y="916" width="0.3333%" height="15" fill="rgb(210,75,36)" fg:x="52" fg:w="1"/><text x="17.5833%" y="926.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.33%)</title><rect x="17.3333%" y="932" width="0.3333%" height="15" fill="rgb(229,88,21)" fg:x="52" fg:w="1"/><text x="17.5833%" y="942.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.33%)</title><rect x="17.3333%" y="948" width="0.3333%" height="15" fill="rgb(252,204,47)" fg:x="52" fg:w="1"/><text x="17.5833%" y="958.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.33%)</title><rect x="17.3333%" y="964" width="0.3333%" height="15" fill="rgb(208,77,27)" fg:x="52" fg:w="1"/><text x="17.5833%" y="974.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.33%)</title><rect x="17.3333%" y="980" width="0.3333%" height="15" fill="rgb(221,76,26)" fg:x="52" fg:w="1"/><text x="17.5833%" y="990.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.33%)</title><rect x="17.3333%" y="996" width="0.3333%" height="15" fill="rgb(225,139,18)" fg:x="52" fg:w="1"/><text x="17.5833%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 7.00%)</title><rect x="11.0000%" y="676" width="7.0000%" height="15" fill="rgb(230,137,11)" fg:x="33" fg:w="21"/><text x="11.2500%" y="686.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 7.00%)</title><rect x="11.0000%" y="692" width="7.0000%" height="15" fill="rgb(212,28,1)" fg:x="33" fg:w="21"/><text x="11.2500%" y="702.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 7.00%)</title><rect x="11.0000%" y="708" width="7.0000%" height="15" fill="rgb(248,164,17)" fg:x="33" fg:w="21"/><text x="11.2500%" y="718.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 7.00%)</title><rect x="11.0000%" y="724" width="7.0000%" height="15" fill="rgb(222,171,42)" fg:x="33" fg:w="21"/><text x="11.2500%" y="734.50">exec_modu..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="17.6667%" y="740" width="0.3333%" height="15" fill="rgb(243,84,45)" fg:x="53" fg:w="1"/><text x="17.9167%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="17.6667%" y="756" width="0.3333%" height="15" fill="rgb(252,49,23)" fg:x="53" fg:w="1"/><text x="17.9167%" y="766.50"></text></g><g><title><module> (distributed/preloading.py:1) (1 samples, 0.33%)</title><rect x="18.0000%" y="788" width="0.3333%" height="15" fill="rgb(215,19,7)" fg:x="54" fg:w="1"/><text x="18.2500%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="18.0000%" y="804" width="0.3333%" height="15" fill="rgb(238,81,41)" fg:x="54" fg:w="1"/><text x="18.2500%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="18.0000%" y="820" width="0.3333%" height="15" fill="rgb(210,199,37)" fg:x="54" fg:w="1"/><text x="18.2500%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="18.0000%" y="836" width="0.3333%" height="15" fill="rgb(244,192,49)" fg:x="54" fg:w="1"/><text x="18.2500%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="18.0000%" y="852" width="0.3333%" height="15" fill="rgb(226,211,11)" fg:x="54" fg:w="1"/><text x="18.2500%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="18.0000%" y="868" width="0.3333%" height="15" fill="rgb(236,162,54)" fg:x="54" fg:w="1"/><text x="18.2500%" y="878.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="18.0000%" y="884" width="0.3333%" height="15" fill="rgb(220,229,9)" fg:x="54" fg:w="1"/><text x="18.2500%" y="894.50"></text></g><g><title>__init__ (sre_parse.py:112) (1 samples, 0.33%)</title><rect x="18.3333%" y="1316" width="0.3333%" height="15" fill="rgb(250,87,22)" fg:x="55" fg:w="1"/><text x="18.5833%" y="1326.50"></text></g><g><title><module> (distributed/client.py:1) (24 samples, 8.00%)</title><rect x="11.0000%" y="660" width="8.0000%" height="15" fill="rgb(239,43,17)" fg:x="33" fg:w="24"/><text x="11.2500%" y="670.50"><module> (d..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="18.0000%" y="676" width="1.0000%" height="15" fill="rgb(231,177,25)" fg:x="54" fg:w="3"/><text x="18.2500%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="18.0000%" y="692" width="1.0000%" height="15" fill="rgb(219,179,1)" fg:x="54" fg:w="3"/><text x="18.2500%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="18.0000%" y="708" width="1.0000%" height="15" fill="rgb(238,219,53)" fg:x="54" fg:w="3"/><text x="18.2500%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="18.0000%" y="724" width="1.0000%" height="15" fill="rgb(232,167,36)" fg:x="54" fg:w="3"/><text x="18.2500%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="18.0000%" y="740" width="1.0000%" height="15" fill="rgb(244,19,51)" fg:x="54" fg:w="3"/><text x="18.2500%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="18.0000%" y="756" width="1.0000%" height="15" fill="rgb(224,6,22)" fg:x="54" fg:w="3"/><text x="18.2500%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="18.0000%" y="772" width="1.0000%" height="15" fill="rgb(224,145,5)" fg:x="54" fg:w="3"/><text x="18.2500%" y="782.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 0.67%)</title><rect x="18.3333%" y="788" width="0.6667%" height="15" fill="rgb(234,130,49)" fg:x="55" fg:w="2"/><text x="18.5833%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="18.3333%" y="804" width="0.6667%" height="15" fill="rgb(254,6,2)" fg:x="55" fg:w="2"/><text x="18.5833%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="18.3333%" y="820" width="0.6667%" height="15" fill="rgb(208,96,46)" fg:x="55" fg:w="2"/><text x="18.5833%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="18.3333%" y="836" width="0.6667%" height="15" fill="rgb(239,3,39)" fg:x="55" fg:w="2"/><text x="18.5833%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="18.3333%" y="852" width="0.6667%" height="15" fill="rgb(233,210,1)" fg:x="55" fg:w="2"/><text x="18.5833%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="18.3333%" y="868" width="0.6667%" height="15" fill="rgb(244,137,37)" fg:x="55" fg:w="2"/><text x="18.5833%" y="878.50"></text></g><g><title><module> (packaging/requirements.py:5) (2 samples, 0.67%)</title><rect x="18.3333%" y="884" width="0.6667%" height="15" fill="rgb(240,136,2)" fg:x="55" fg:w="2"/><text x="18.5833%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="18.3333%" y="900" width="0.6667%" height="15" fill="rgb(239,18,37)" fg:x="55" fg:w="2"/><text x="18.5833%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="18.3333%" y="916" width="0.6667%" height="15" fill="rgb(218,185,22)" fg:x="55" fg:w="2"/><text x="18.5833%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="18.3333%" y="932" width="0.6667%" height="15" fill="rgb(225,218,4)" fg:x="55" fg:w="2"/><text x="18.5833%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="18.3333%" y="948" width="0.6667%" height="15" fill="rgb(230,182,32)" fg:x="55" fg:w="2"/><text x="18.5833%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="18.3333%" y="964" width="0.6667%" height="15" fill="rgb(242,56,43)" fg:x="55" fg:w="2"/><text x="18.5833%" y="974.50"></text></g><g><title><module> (packaging/_parser.py:1) (2 samples, 0.67%)</title><rect x="18.3333%" y="980" width="0.6667%" height="15" fill="rgb(233,99,24)" fg:x="55" fg:w="2"/><text x="18.5833%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="18.3333%" y="996" width="0.6667%" height="15" fill="rgb(234,209,42)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="18.3333%" y="1012" width="0.6667%" height="15" fill="rgb(227,7,12)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="18.3333%" y="1028" width="0.6667%" height="15" fill="rgb(245,203,43)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="18.3333%" y="1044" width="0.6667%" height="15" fill="rgb(238,205,33)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="18.3333%" y="1060" width="0.6667%" height="15" fill="rgb(231,56,7)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1070.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (2 samples, 0.67%)</title><rect x="18.3333%" y="1076" width="0.6667%" height="15" fill="rgb(244,186,29)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1086.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.67%)</title><rect x="18.3333%" y="1092" width="0.6667%" height="15" fill="rgb(234,111,31)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1102.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.67%)</title><rect x="18.3333%" y="1108" width="0.6667%" height="15" fill="rgb(241,149,10)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1118.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.67%)</title><rect x="18.3333%" y="1124" width="0.6667%" height="15" fill="rgb(249,206,44)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1134.50"></text></g><g><title>parse (sre_parse.py:944) (2 samples, 0.67%)</title><rect x="18.3333%" y="1140" width="0.6667%" height="15" fill="rgb(251,153,30)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1150.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.67%)</title><rect x="18.3333%" y="1156" width="0.6667%" height="15" fill="rgb(239,152,38)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1166.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.67%)</title><rect x="18.3333%" y="1172" width="0.6667%" height="15" fill="rgb(249,139,47)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1182.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.67%)</title><rect x="18.3333%" y="1188" width="0.6667%" height="15" fill="rgb(244,64,35)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1198.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.67%)</title><rect x="18.3333%" y="1204" width="0.6667%" height="15" fill="rgb(216,46,15)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1214.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.67%)</title><rect x="18.3333%" y="1220" width="0.6667%" height="15" fill="rgb(250,74,19)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1230.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.67%)</title><rect x="18.3333%" y="1236" width="0.6667%" height="15" fill="rgb(249,42,33)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1246.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.67%)</title><rect x="18.3333%" y="1252" width="0.6667%" height="15" fill="rgb(242,149,17)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1262.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.67%)</title><rect x="18.3333%" y="1268" width="0.6667%" height="15" fill="rgb(244,29,21)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1278.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.67%)</title><rect x="18.3333%" y="1284" width="0.6667%" height="15" fill="rgb(220,130,37)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1294.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.67%)</title><rect x="18.3333%" y="1300" width="0.6667%" height="15" fill="rgb(211,67,2)" fg:x="55" fg:w="2"/><text x="18.5833%" y="1310.50"></text></g><g><title>get (sre_parse.py:255) (1 samples, 0.33%)</title><rect x="18.6667%" y="1316" width="0.3333%" height="15" fill="rgb(235,68,52)" fg:x="56" fg:w="1"/><text x="18.9167%" y="1326.50"></text></g><g><title>__next (sre_parse.py:234) (1 samples, 0.33%)</title><rect x="18.6667%" y="1332" width="0.3333%" height="15" fill="rgb(246,142,3)" fg:x="56" fg:w="1"/><text x="18.9167%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 8.33%)</title><rect x="11.0000%" y="484" width="8.3333%" height="15" fill="rgb(241,25,7)" fg:x="33" fg:w="25"/><text x="11.2500%" y="494.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 8.33%)</title><rect x="11.0000%" y="500" width="8.3333%" height="15" fill="rgb(242,119,39)" fg:x="33" fg:w="25"/><text x="11.2500%" y="510.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 8.33%)</title><rect x="11.0000%" y="516" width="8.3333%" height="15" fill="rgb(241,98,45)" fg:x="33" fg:w="25"/><text x="11.2500%" y="526.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 8.33%)</title><rect x="11.0000%" y="532" width="8.3333%" height="15" fill="rgb(254,28,30)" fg:x="33" fg:w="25"/><text x="11.2500%" y="542.50">exec_module ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (25 samples, 8.33%)</title><rect x="11.0000%" y="548" width="8.3333%" height="15" fill="rgb(241,142,54)" fg:x="33" fg:w="25"/><text x="11.2500%" y="558.50">_call_with_f..</text></g><g><title><module> (distributed/actor.py:1) (25 samples, 8.33%)</title><rect x="11.0000%" y="564" width="8.3333%" height="15" fill="rgb(222,85,15)" fg:x="33" fg:w="25"/><text x="11.2500%" y="574.50"><module> (di..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 8.33%)</title><rect x="11.0000%" y="580" width="8.3333%" height="15" fill="rgb(210,85,47)" fg:x="33" fg:w="25"/><text x="11.2500%" y="590.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 8.33%)</title><rect x="11.0000%" y="596" width="8.3333%" height="15" fill="rgb(224,206,25)" fg:x="33" fg:w="25"/><text x="11.2500%" y="606.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 8.33%)</title><rect x="11.0000%" y="612" width="8.3333%" height="15" fill="rgb(243,201,19)" fg:x="33" fg:w="25"/><text x="11.2500%" y="622.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 8.33%)</title><rect x="11.0000%" y="628" width="8.3333%" height="15" fill="rgb(236,59,4)" fg:x="33" fg:w="25"/><text x="11.2500%" y="638.50">exec_module ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (25 samples, 8.33%)</title><rect x="11.0000%" y="644" width="8.3333%" height="15" fill="rgb(254,179,45)" fg:x="33" fg:w="25"/><text x="11.2500%" y="654.50">_call_with_f..</text></g><g><title><module> (tornado/ioloop.py:16) (1 samples, 0.33%)</title><rect x="19.0000%" y="660" width="0.3333%" height="15" fill="rgb(226,14,10)" fg:x="57" fg:w="1"/><text x="19.2500%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="19.0000%" y="676" width="0.3333%" height="15" fill="rgb(244,27,41)" fg:x="57" fg:w="1"/><text x="19.2500%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="19.0000%" y="692" width="0.3333%" height="15" fill="rgb(235,35,32)" fg:x="57" fg:w="1"/><text x="19.2500%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="19.0000%" y="708" width="0.3333%" height="15" fill="rgb(218,68,31)" fg:x="57" fg:w="1"/><text x="19.2500%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="19.0000%" y="724" width="0.3333%" height="15" fill="rgb(207,120,37)" fg:x="57" fg:w="1"/><text x="19.2500%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="19.0000%" y="740" width="0.3333%" height="15" fill="rgb(227,98,0)" fg:x="57" fg:w="1"/><text x="19.2500%" y="750.50"></text></g><g><title><module> (tornado/concurrent.py:15) (1 samples, 0.33%)</title><rect x="19.0000%" y="756" width="0.3333%" height="15" fill="rgb(207,7,3)" fg:x="57" fg:w="1"/><text x="19.2500%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="19.0000%" y="772" width="0.3333%" height="15" fill="rgb(206,98,19)" fg:x="57" fg:w="1"/><text x="19.2500%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="19.0000%" y="788" width="0.3333%" height="15" fill="rgb(217,5,26)" fg:x="57" fg:w="1"/><text x="19.2500%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="19.0000%" y="804" width="0.3333%" height="15" fill="rgb(235,190,38)" fg:x="57" fg:w="1"/><text x="19.2500%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="19.0000%" y="820" width="0.3333%" height="15" fill="rgb(247,86,24)" fg:x="57" fg:w="1"/><text x="19.2500%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="19.0000%" y="836" width="0.3333%" height="15" fill="rgb(205,101,16)" fg:x="57" fg:w="1"/><text x="19.2500%" y="846.50"></text></g><g><title><module> (tornado/log.py:15) (1 samples, 0.33%)</title><rect x="19.0000%" y="852" width="0.3333%" height="15" fill="rgb(246,168,33)" fg:x="57" fg:w="1"/><text x="19.2500%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="19.0000%" y="868" width="0.3333%" height="15" fill="rgb(231,114,1)" fg:x="57" fg:w="1"/><text x="19.2500%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="19.0000%" y="884" width="0.3333%" height="15" fill="rgb(207,184,53)" fg:x="57" fg:w="1"/><text x="19.2500%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="19.0000%" y="900" width="0.3333%" height="15" fill="rgb(224,95,51)" fg:x="57" fg:w="1"/><text x="19.2500%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="19.0000%" y="916" width="0.3333%" height="15" fill="rgb(212,188,45)" fg:x="57" fg:w="1"/><text x="19.2500%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="19.0000%" y="932" width="0.3333%" height="15" fill="rgb(223,154,38)" fg:x="57" fg:w="1"/><text x="19.2500%" y="942.50"></text></g><g><title><module> (curses/__init__.py:1) (1 samples, 0.33%)</title><rect x="19.0000%" y="948" width="0.3333%" height="15" fill="rgb(251,22,52)" fg:x="57" fg:w="1"/><text x="19.2500%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="19.0000%" y="964" width="0.3333%" height="15" fill="rgb(229,209,22)" fg:x="57" fg:w="1"/><text x="19.2500%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="19.0000%" y="980" width="0.3333%" height="15" fill="rgb(234,138,34)" fg:x="57" fg:w="1"/><text x="19.2500%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="19.0000%" y="996" width="0.3333%" height="15" fill="rgb(212,95,11)" fg:x="57" fg:w="1"/><text x="19.2500%" y="1006.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="19.0000%" y="1012" width="0.3333%" height="15" fill="rgb(240,179,47)" fg:x="57" fg:w="1"/><text x="19.2500%" y="1022.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="19.0000%" y="1028" width="0.3333%" height="15" fill="rgb(240,163,11)" fg:x="57" fg:w="1"/><text x="19.2500%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="19.0000%" y="1044" width="0.3333%" height="15" fill="rgb(236,37,12)" fg:x="57" fg:w="1"/><text x="19.2500%" y="1054.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.33%)</title><rect x="19.3333%" y="772" width="0.3333%" height="15" fill="rgb(232,164,16)" fg:x="58" fg:w="1"/><text x="19.5833%" y="782.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.33%)</title><rect x="19.3333%" y="788" width="0.3333%" height="15" fill="rgb(244,205,15)" fg:x="58" fg:w="1"/><text x="19.5833%" y="798.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.33%)</title><rect x="19.3333%" y="804" width="0.3333%" height="15" fill="rgb(223,117,47)" fg:x="58" fg:w="1"/><text x="19.5833%" y="814.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.33%)</title><rect x="19.3333%" y="820" width="0.3333%" height="15" fill="rgb(244,107,35)" fg:x="58" fg:w="1"/><text x="19.5833%" y="830.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.33%)</title><rect x="19.3333%" y="836" width="0.3333%" height="15" fill="rgb(205,140,8)" fg:x="58" fg:w="1"/><text x="19.5833%" y="846.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.33%)</title><rect x="19.3333%" y="852" width="0.3333%" height="15" fill="rgb(228,84,46)" fg:x="58" fg:w="1"/><text x="19.5833%" y="862.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.33%)</title><rect x="19.3333%" y="868" width="0.3333%" height="15" fill="rgb(254,188,9)" fg:x="58" fg:w="1"/><text x="19.5833%" y="878.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.33%)</title><rect x="19.6667%" y="884" width="0.3333%" height="15" fill="rgb(206,112,54)" fg:x="59" fg:w="1"/><text x="19.9167%" y="894.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.33%)</title><rect x="19.6667%" y="900" width="0.3333%" height="15" fill="rgb(216,84,49)" fg:x="59" fg:w="1"/><text x="19.9167%" y="910.50"></text></g><g><title>get_mark (yaml/reader.py:114) (1 samples, 0.33%)</title><rect x="19.6667%" y="916" width="0.3333%" height="15" fill="rgb(214,194,35)" fg:x="59" fg:w="1"/><text x="19.9167%" y="926.50"></text></g><g><title>__init__ (yaml/error.py:6) (1 samples, 0.33%)</title><rect x="19.6667%" y="932" width="0.3333%" height="15" fill="rgb(249,28,3)" fg:x="59" fg:w="1"/><text x="19.9167%" y="942.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.67%)</title><rect x="19.6667%" y="852" width="0.6667%" height="15" fill="rgb(222,56,52)" fg:x="59" fg:w="2"/><text x="19.9167%" y="862.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.67%)</title><rect x="19.6667%" y="868" width="0.6667%" height="15" fill="rgb(245,217,50)" fg:x="59" fg:w="2"/><text x="19.9167%" y="878.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.33%)</title><rect x="20.0000%" y="884" width="0.3333%" height="15" fill="rgb(213,201,24)" fg:x="60" fg:w="1"/><text x="20.2500%" y="894.50"></text></g><g><title>check_event (yaml/parser.py:94) (3 samples, 1.00%)</title><rect x="19.6667%" y="820" width="1.0000%" height="15" fill="rgb(248,116,28)" fg:x="59" fg:w="3"/><text x="19.9167%" y="830.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (3 samples, 1.00%)</title><rect x="19.6667%" y="836" width="1.0000%" height="15" fill="rgb(219,72,43)" fg:x="59" fg:w="3"/><text x="19.9167%" y="846.50"></text></g><g><title>parse_block_node_or_indentless_sequence (yaml/parser.py:270) (1 samples, 0.33%)</title><rect x="20.3333%" y="852" width="0.3333%" height="15" fill="rgb(209,138,14)" fg:x="61" fg:w="1"/><text x="20.5833%" y="862.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.33%)</title><rect x="20.3333%" y="868" width="0.3333%" height="15" fill="rgb(222,18,33)" fg:x="61" fg:w="1"/><text x="20.5833%" y="878.50"></text></g><g><title><module> (dask/distributed.py:3) (30 samples, 10.00%)</title><rect x="11.0000%" y="372" width="10.0000%" height="15" fill="rgb(213,199,7)" fg:x="33" fg:w="30"/><text x="11.2500%" y="382.50"><module> (dask..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (30 samples, 10.00%)</title><rect x="11.0000%" y="388" width="10.0000%" height="15" fill="rgb(250,110,10)" fg:x="33" fg:w="30"/><text x="11.2500%" y="398.50">_find_and_load..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (30 samples, 10.00%)</title><rect x="11.0000%" y="404" width="10.0000%" height="15" fill="rgb(248,123,6)" fg:x="33" fg:w="30"/><text x="11.2500%" y="414.50">_find_and_load..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (30 samples, 10.00%)</title><rect x="11.0000%" y="420" width="10.0000%" height="15" fill="rgb(206,91,31)" fg:x="33" fg:w="30"/><text x="11.2500%" y="430.50">_load_unlocked..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (30 samples, 10.00%)</title><rect x="11.0000%" y="436" width="10.0000%" height="15" fill="rgb(211,154,13)" fg:x="33" fg:w="30"/><text x="11.2500%" y="446.50">exec_module (<..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (30 samples, 10.00%)</title><rect x="11.0000%" y="452" width="10.0000%" height="15" fill="rgb(225,148,7)" fg:x="33" fg:w="30"/><text x="11.2500%" y="462.50">_call_with_fra..</text></g><g><title><module> (distributed/__init__.py:1) (30 samples, 10.00%)</title><rect x="11.0000%" y="468" width="10.0000%" height="15" fill="rgb(220,160,43)" fg:x="33" fg:w="30"/><text x="11.2500%" y="478.50"><module> (dist..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.67%)</title><rect x="19.3333%" y="484" width="1.6667%" height="15" fill="rgb(213,52,39)" fg:x="58" fg:w="5"/><text x="19.5833%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="19.3333%" y="500" width="1.6667%" height="15" fill="rgb(243,137,7)" fg:x="58" fg:w="5"/><text x="19.5833%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="19.3333%" y="516" width="1.6667%" height="15" fill="rgb(230,79,13)" fg:x="58" fg:w="5"/><text x="19.5833%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="19.3333%" y="532" width="1.6667%" height="15" fill="rgb(247,105,23)" fg:x="58" fg:w="5"/><text x="19.5833%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="19.3333%" y="548" width="1.6667%" height="15" fill="rgb(223,179,41)" fg:x="58" fg:w="5"/><text x="19.5833%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="19.3333%" y="564" width="1.6667%" height="15" fill="rgb(218,9,34)" fg:x="58" fg:w="5"/><text x="19.5833%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="19.3333%" y="580" width="1.6667%" height="15" fill="rgb(222,106,8)" fg:x="58" fg:w="5"/><text x="19.5833%" y="590.50"></text></g><g><title><module> (distributed/config.py:1) (5 samples, 1.67%)</title><rect x="19.3333%" y="596" width="1.6667%" height="15" fill="rgb(211,220,0)" fg:x="58" fg:w="5"/><text x="19.5833%" y="606.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (5 samples, 1.67%)</title><rect x="19.3333%" y="612" width="1.6667%" height="15" fill="rgb(229,52,16)" fg:x="58" fg:w="5"/><text x="19.5833%" y="622.50"></text></g><g><title>load (yaml/__init__.py:74) (5 samples, 1.67%)</title><rect x="19.3333%" y="628" width="1.6667%" height="15" fill="rgb(212,155,18)" fg:x="58" fg:w="5"/><text x="19.5833%" y="638.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (5 samples, 1.67%)</title><rect x="19.3333%" y="644" width="1.6667%" height="15" fill="rgb(242,21,14)" fg:x="58" fg:w="5"/><text x="19.5833%" y="654.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (5 samples, 1.67%)</title><rect x="19.3333%" y="660" width="1.6667%" height="15" fill="rgb(222,19,48)" fg:x="58" fg:w="5"/><text x="19.5833%" y="670.50"></text></g><g><title>compose_document (yaml/composer.py:50) (5 samples, 1.67%)</title><rect x="19.3333%" y="676" width="1.6667%" height="15" fill="rgb(232,45,27)" fg:x="58" fg:w="5"/><text x="19.5833%" y="686.50"></text></g><g><title>compose_node (yaml/composer.py:63) (5 samples, 1.67%)</title><rect x="19.3333%" y="692" width="1.6667%" height="15" fill="rgb(249,103,42)" fg:x="58" fg:w="5"/><text x="19.5833%" y="702.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (5 samples, 1.67%)</title><rect x="19.3333%" y="708" width="1.6667%" height="15" fill="rgb(246,81,33)" fg:x="58" fg:w="5"/><text x="19.5833%" y="718.50"></text></g><g><title>compose_node (yaml/composer.py:63) (5 samples, 1.67%)</title><rect x="19.3333%" y="724" width="1.6667%" height="15" fill="rgb(252,33,42)" fg:x="58" fg:w="5"/><text x="19.5833%" y="734.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (5 samples, 1.67%)</title><rect x="19.3333%" y="740" width="1.6667%" height="15" fill="rgb(209,212,41)" fg:x="58" fg:w="5"/><text x="19.5833%" y="750.50"></text></g><g><title>compose_node (yaml/composer.py:63) (5 samples, 1.67%)</title><rect x="19.3333%" y="756" width="1.6667%" height="15" fill="rgb(207,154,6)" fg:x="58" fg:w="5"/><text x="19.5833%" y="766.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.33%)</title><rect x="19.6667%" y="772" width="1.3333%" height="15" fill="rgb(223,64,47)" fg:x="59" fg:w="4"/><text x="19.9167%" y="782.50"></text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.33%)</title><rect x="19.6667%" y="788" width="1.3333%" height="15" fill="rgb(211,161,38)" fg:x="59" fg:w="4"/><text x="19.9167%" y="798.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.33%)</title><rect x="19.6667%" y="804" width="1.3333%" height="15" fill="rgb(219,138,40)" fg:x="59" fg:w="4"/><text x="19.9167%" y="814.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.33%)</title><rect x="20.6667%" y="820" width="0.3333%" height="15" fill="rgb(241,228,46)" fg:x="62" fg:w="1"/><text x="20.9167%" y="830.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.33%)</title><rect x="20.6667%" y="836" width="0.3333%" height="15" fill="rgb(223,209,38)" fg:x="62" fg:w="1"/><text x="20.9167%" y="846.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.33%)</title><rect x="20.6667%" y="852" width="0.3333%" height="15" fill="rgb(236,164,45)" fg:x="62" fg:w="1"/><text x="20.9167%" y="862.50"></text></g><g><title>get_token (yaml/scanner.py:135) (1 samples, 0.33%)</title><rect x="20.6667%" y="868" width="0.3333%" height="15" fill="rgb(231,15,5)" fg:x="62" fg:w="1"/><text x="20.9167%" y="878.50"></text></g><g><title>ArrowDatasetEngine (dask/dataframe/io/parquet/arrow.py:422) (1 samples, 0.33%)</title><rect x="21.0000%" y="580" width="0.3333%" height="15" fill="rgb(252,35,15)" fg:x="63" fg:w="1"/><text x="21.2500%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/parquet/arrow.py:1) (2 samples, 0.67%)</title><rect x="21.0000%" y="564" width="0.6667%" height="15" fill="rgb(248,181,18)" fg:x="63" fg:w="2"/><text x="21.2500%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="21.3333%" y="580" width="0.3333%" height="15" fill="rgb(233,39,42)" fg:x="64" fg:w="1"/><text x="21.5833%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="21.3333%" y="596" width="0.3333%" height="15" fill="rgb(238,110,33)" fg:x="64" fg:w="1"/><text x="21.5833%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="21.3333%" y="612" width="0.3333%" height="15" fill="rgb(233,195,10)" fg:x="64" fg:w="1"/><text x="21.5833%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="21.3333%" y="628" width="0.3333%" height="15" fill="rgb(254,105,3)" fg:x="64" fg:w="1"/><text x="21.5833%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="21.3333%" y="644" width="0.3333%" height="15" fill="rgb(221,225,9)" fg:x="64" fg:w="1"/><text x="21.5833%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="21.3333%" y="660" width="0.3333%" height="15" fill="rgb(224,227,45)" fg:x="64" fg:w="1"/><text x="21.5833%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="21.3333%" y="676" width="0.3333%" height="15" fill="rgb(229,198,43)" fg:x="64" fg:w="1"/><text x="21.5833%" y="686.50"></text></g><g><title><module> (pyarrow/dataset.py:18) (1 samples, 0.33%)</title><rect x="21.3333%" y="692" width="0.3333%" height="15" fill="rgb(206,209,35)" fg:x="64" fg:w="1"/><text x="21.5833%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="21.3333%" y="708" width="0.3333%" height="15" fill="rgb(245,195,53)" fg:x="64" fg:w="1"/><text x="21.5833%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="21.3333%" y="724" width="0.3333%" height="15" fill="rgb(240,92,26)" fg:x="64" fg:w="1"/><text x="21.5833%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="21.3333%" y="740" width="0.3333%" height="15" fill="rgb(207,40,23)" fg:x="64" fg:w="1"/><text x="21.5833%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="21.3333%" y="756" width="0.3333%" height="15" fill="rgb(223,111,35)" fg:x="64" fg:w="1"/><text x="21.5833%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="21.3333%" y="772" width="0.3333%" height="15" fill="rgb(229,147,28)" fg:x="64" fg:w="1"/><text x="21.5833%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="21.3333%" y="788" width="0.3333%" height="15" fill="rgb(211,29,28)" fg:x="64" fg:w="1"/><text x="21.5833%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="21.3333%" y="804" width="0.3333%" height="15" fill="rgb(228,72,33)" fg:x="64" fg:w="1"/><text x="21.5833%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="21.3333%" y="820" width="0.3333%" height="15" fill="rgb(205,214,31)" fg:x="64" fg:w="1"/><text x="21.5833%" y="830.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="21.3333%" y="836" width="0.3333%" height="15" fill="rgb(224,111,15)" fg:x="64" fg:w="1"/><text x="21.5833%" y="846.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="21.3333%" y="852" width="0.3333%" height="15" fill="rgb(253,21,26)" fg:x="64" fg:w="1"/><text x="21.5833%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="21.3333%" y="868" width="0.3333%" height="15" fill="rgb(245,139,43)" fg:x="64" fg:w="1"/><text x="21.5833%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="21.0000%" y="388" width="1.3333%" height="15" fill="rgb(252,170,7)" fg:x="63" fg:w="4"/><text x="21.2500%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="21.0000%" y="404" width="1.3333%" height="15" fill="rgb(231,118,14)" fg:x="63" fg:w="4"/><text x="21.2500%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="21.0000%" y="420" width="1.3333%" height="15" fill="rgb(238,83,0)" fg:x="63" fg:w="4"/><text x="21.2500%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="21.0000%" y="436" width="1.3333%" height="15" fill="rgb(221,39,39)" fg:x="63" fg:w="4"/><text x="21.2500%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="21.0000%" y="452" width="1.3333%" height="15" fill="rgb(222,119,46)" fg:x="63" fg:w="4"/><text x="21.2500%" y="462.50"></text></g><g><title><module> (dask_sql/physical/utils/statistics.py:1) (4 samples, 1.33%)</title><rect x="21.0000%" y="468" width="1.3333%" height="15" fill="rgb(222,165,49)" fg:x="63" fg:w="4"/><text x="21.2500%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="21.0000%" y="484" width="1.3333%" height="15" fill="rgb(219,113,52)" fg:x="63" fg:w="4"/><text x="21.2500%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="21.0000%" y="500" width="1.3333%" height="15" fill="rgb(214,7,15)" fg:x="63" fg:w="4"/><text x="21.2500%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="21.0000%" y="516" width="1.3333%" height="15" fill="rgb(235,32,4)" fg:x="63" fg:w="4"/><text x="21.2500%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="21.0000%" y="532" width="1.3333%" height="15" fill="rgb(238,90,54)" fg:x="63" fg:w="4"/><text x="21.2500%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="21.0000%" y="548" width="1.3333%" height="15" fill="rgb(213,208,19)" fg:x="63" fg:w="4"/><text x="21.2500%" y="558.50"></text></g><g><title><module> (pyarrow/parquet/__init__.py:20) (2 samples, 0.67%)</title><rect x="21.6667%" y="564" width="0.6667%" height="15" fill="rgb(233,156,4)" fg:x="65" fg:w="2"/><text x="21.9167%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="21.6667%" y="580" width="0.6667%" height="15" fill="rgb(207,194,5)" fg:x="65" fg:w="2"/><text x="21.9167%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="21.6667%" y="596" width="0.6667%" height="15" fill="rgb(206,111,30)" fg:x="65" fg:w="2"/><text x="21.9167%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="21.6667%" y="612" width="0.6667%" height="15" fill="rgb(243,70,54)" fg:x="65" fg:w="2"/><text x="21.9167%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="21.6667%" y="628" width="0.6667%" height="15" fill="rgb(242,28,8)" fg:x="65" fg:w="2"/><text x="21.9167%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="21.6667%" y="644" width="0.6667%" height="15" fill="rgb(219,106,18)" fg:x="65" fg:w="2"/><text x="21.9167%" y="654.50"></text></g><g><title><module> (pyarrow/parquet/core.py:19) (2 samples, 0.67%)</title><rect x="21.6667%" y="660" width="0.6667%" height="15" fill="rgb(244,222,10)" fg:x="65" fg:w="2"/><text x="21.9167%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="21.6667%" y="676" width="0.6667%" height="15" fill="rgb(236,179,52)" fg:x="65" fg:w="2"/><text x="21.9167%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="21.6667%" y="692" width="0.6667%" height="15" fill="rgb(213,23,39)" fg:x="65" fg:w="2"/><text x="21.9167%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="21.6667%" y="708" width="0.6667%" height="15" fill="rgb(238,48,10)" fg:x="65" fg:w="2"/><text x="21.9167%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="21.6667%" y="724" width="0.6667%" height="15" fill="rgb(251,196,23)" fg:x="65" fg:w="2"/><text x="21.9167%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="21.6667%" y="740" width="0.6667%" height="15" fill="rgb(250,152,24)" fg:x="65" fg:w="2"/><text x="21.9167%" y="750.50"></text></g><g><title><module> (pyarrow/fs.py:18) (2 samples, 0.67%)</title><rect x="21.6667%" y="756" width="0.6667%" height="15" fill="rgb(209,150,17)" fg:x="65" fg:w="2"/><text x="21.9167%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="21.6667%" y="772" width="0.6667%" height="15" fill="rgb(234,202,34)" fg:x="65" fg:w="2"/><text x="21.9167%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="21.6667%" y="788" width="0.6667%" height="15" fill="rgb(253,148,53)" fg:x="65" fg:w="2"/><text x="21.9167%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="21.6667%" y="804" width="0.6667%" height="15" fill="rgb(218,129,16)" fg:x="65" fg:w="2"/><text x="21.9167%" y="814.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="21.6667%" y="820" width="0.6667%" height="15" fill="rgb(216,85,19)" fg:x="65" fg:w="2"/><text x="21.9167%" y="830.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="21.6667%" y="836" width="0.6667%" height="15" fill="rgb(235,228,7)" fg:x="65" fg:w="2"/><text x="21.9167%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="21.6667%" y="852" width="0.6667%" height="15" fill="rgb(245,175,0)" fg:x="65" fg:w="2"/><text x="21.9167%" y="862.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.33%)</title><rect x="22.3333%" y="676" width="0.3333%" height="15" fill="rgb(208,168,36)" fg:x="67" fg:w="1"/><text x="22.5833%" y="686.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.33%)</title><rect x="22.3333%" y="692" width="0.3333%" height="15" fill="rgb(246,171,24)" fg:x="67" fg:w="1"/><text x="22.5833%" y="702.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.33%)</title><rect x="22.3333%" y="708" width="0.3333%" height="15" fill="rgb(215,142,24)" fg:x="67" fg:w="1"/><text x="22.5833%" y="718.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.33%)</title><rect x="22.3333%" y="724" width="0.3333%" height="15" fill="rgb(250,187,7)" fg:x="67" fg:w="1"/><text x="22.5833%" y="734.50"></text></g><g><title>HiveInputPlugin (dask_sql/input_utils/hive.py:27) (2 samples, 0.67%)</title><rect x="22.3333%" y="612" width="0.6667%" height="15" fill="rgb(228,66,33)" fg:x="67" fg:w="2"/><text x="22.5833%" y="622.50"></text></g><g><title>inner (typing.py:271) (2 samples, 0.67%)</title><rect x="22.3333%" y="628" width="0.6667%" height="15" fill="rgb(234,215,21)" fg:x="67" fg:w="2"/><text x="22.5833%" y="638.50"></text></g><g><title>__getitem__ (typing.py:352) (2 samples, 0.67%)</title><rect x="22.3333%" y="644" width="0.6667%" height="15" fill="rgb(222,191,20)" fg:x="67" fg:w="2"/><text x="22.5833%" y="654.50"></text></g><g><title>Union (typing.py:434) (2 samples, 0.67%)</title><rect x="22.3333%" y="660" width="0.6667%" height="15" fill="rgb(245,79,54)" fg:x="67" fg:w="2"/><text x="22.5833%" y="670.50"></text></g><g><title>_remove_dups_flatten (typing.py:232) (1 samples, 0.33%)</title><rect x="22.6667%" y="676" width="0.3333%" height="15" fill="rgb(240,10,37)" fg:x="68" fg:w="1"/><text x="22.9167%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="23.0000%" y="804" width="0.3333%" height="15" fill="rgb(214,192,32)" fg:x="69" fg:w="1"/><text x="23.2500%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="23.0000%" y="820" width="0.3333%" height="15" fill="rgb(209,36,54)" fg:x="69" fg:w="1"/><text x="23.2500%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="23.0000%" y="836" width="0.3333%" height="15" fill="rgb(220,10,11)" fg:x="69" fg:w="1"/><text x="23.2500%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="23.0000%" y="852" width="0.3333%" height="15" fill="rgb(221,106,17)" fg:x="69" fg:w="1"/><text x="23.2500%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="23.0000%" y="868" width="0.3333%" height="15" fill="rgb(251,142,44)" fg:x="69" fg:w="1"/><text x="23.2500%" y="878.50"></text></g><g><title><module> (sqlalchemy/engine/cursor.py:9) (1 samples, 0.33%)</title><rect x="23.0000%" y="884" width="0.3333%" height="15" fill="rgb(238,13,15)" fg:x="69" fg:w="1"/><text x="23.2500%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="23.0000%" y="900" width="0.3333%" height="15" fill="rgb(208,107,27)" fg:x="69" fg:w="1"/><text x="23.2500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="23.0000%" y="916" width="0.3333%" height="15" fill="rgb(205,136,37)" fg:x="69" fg:w="1"/><text x="23.2500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="23.0000%" y="932" width="0.3333%" height="15" fill="rgb(250,205,27)" fg:x="69" fg:w="1"/><text x="23.2500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="23.0000%" y="948" width="0.3333%" height="15" fill="rgb(210,80,43)" fg:x="69" fg:w="1"/><text x="23.2500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="23.0000%" y="964" width="0.3333%" height="15" fill="rgb(247,160,36)" fg:x="69" fg:w="1"/><text x="23.2500%" y="974.50"></text></g><g><title><module> (sqlalchemy/engine/result.py:8) (1 samples, 0.33%)</title><rect x="23.0000%" y="980" width="0.3333%" height="15" fill="rgb(234,13,49)" fg:x="69" fg:w="1"/><text x="23.2500%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="23.0000%" y="996" width="0.3333%" height="15" fill="rgb(234,122,0)" fg:x="69" fg:w="1"/><text x="23.2500%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="23.0000%" y="1012" width="0.3333%" height="15" fill="rgb(207,146,38)" fg:x="69" fg:w="1"/><text x="23.2500%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="23.0000%" y="1028" width="0.3333%" height="15" fill="rgb(207,177,25)" fg:x="69" fg:w="1"/><text x="23.2500%" y="1038.50"></text></g><g><title>CacheStats (sqlalchemy/engine/interfaces.py:79) (1 samples, 0.33%)</title><rect x="23.3333%" y="1124" width="0.3333%" height="15" fill="rgb(211,178,42)" fg:x="70" fg:w="1"/><text x="23.5833%" y="1134.50"></text></g><g><title>__setitem__ (enum.py:88) (1 samples, 0.33%)</title><rect x="23.3333%" y="1140" width="0.3333%" height="15" fill="rgb(230,69,54)" fg:x="70" fg:w="1"/><text x="23.5833%" y="1150.50"></text></g><g><title>_is_private (enum.py:44) (1 samples, 0.33%)</title><rect x="23.3333%" y="1156" width="0.3333%" height="15" fill="rgb(214,135,41)" fg:x="70" fg:w="1"/><text x="23.5833%" y="1166.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.33%)</title><rect x="23.6667%" y="1124" width="0.3333%" height="15" fill="rgb(237,67,25)" fg:x="71" fg:w="1"/><text x="23.9167%" y="1134.50"></text></g><g><title>_get_mixins_ (enum.py:571) (1 samples, 0.33%)</title><rect x="23.6667%" y="1140" width="0.3333%" height="15" fill="rgb(222,189,50)" fg:x="71" fg:w="1"/><text x="23.9167%" y="1150.50"></text></g><g><title>_find_data_type (enum.py:582) (1 samples, 0.33%)</title><rect x="23.6667%" y="1156" width="0.3333%" height="15" fill="rgb(245,148,34)" fg:x="71" fg:w="1"/><text x="23.9167%" y="1166.50"></text></g><g><title>__go (sqlalchemy/sql/__init__.py:111) (1 samples, 0.33%)</title><rect x="24.0000%" y="1268" width="0.3333%" height="15" fill="rgb(222,29,6)" fg:x="72" fg:w="1"/><text x="24.2500%" y="1278.50"></text></g><g><title>_prepare_annotations (sqlalchemy/sql/annotation.py:589) (1 samples, 0.33%)</title><rect x="24.0000%" y="1284" width="0.3333%" height="15" fill="rgb(221,189,43)" fg:x="72" fg:w="1"/><text x="24.2500%" y="1294.50"></text></g><g><title>_new_annotation_type (sqlalchemy/sql/annotation.py:542) (1 samples, 0.33%)</title><rect x="24.0000%" y="1300" width="0.3333%" height="15" fill="rgb(207,36,27)" fg:x="72" fg:w="1"/><text x="24.2500%" y="1310.50"></text></g><g><title>__init_subclass__ (sqlalchemy/sql/functions.py:1283) (1 samples, 0.33%)</title><rect x="24.0000%" y="1316" width="0.3333%" height="15" fill="rgb(217,90,24)" fg:x="72" fg:w="1"/><text x="24.2500%" y="1326.50"></text></g><g><title>__init_subclass__ (typing.py:1007) (1 samples, 0.33%)</title><rect x="24.0000%" y="1332" width="0.3333%" height="15" fill="rgb(224,66,35)" fg:x="72" fg:w="1"/><text x="24.2500%" y="1342.50"></text></g><g><title><module> (sqlalchemy/sql/crud.py:9) (1 samples, 0.33%)</title><rect x="24.3333%" y="1476" width="0.3333%" height="15" fill="rgb(221,13,50)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="24.3333%" y="1492" width="0.3333%" height="15" fill="rgb(236,68,49)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1508" width="0.3333%" height="15" fill="rgb(229,146,28)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="24.3333%" y="1524" width="0.3333%" height="15" fill="rgb(225,31,38)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="24.3333%" y="1540" width="0.3333%" height="15" fill="rgb(250,208,3)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="24.3333%" y="1556" width="0.3333%" height="15" fill="rgb(246,54,23)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="24.3333%" y="1572" width="0.3333%" height="15" fill="rgb(243,76,11)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1582.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1588" width="0.3333%" height="15" fill="rgb(245,21,50)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1598.50"></text></g><g><title><module> (sqlalchemy/sql/dml.py:7) (1 samples, 0.33%)</title><rect x="24.3333%" y="1604" width="0.3333%" height="15" fill="rgb(228,9,43)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1614.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="24.3333%" y="1620" width="0.3333%" height="15" fill="rgb(208,100,47)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1636" width="0.3333%" height="15" fill="rgb(232,26,8)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="24.3333%" y="1652" width="0.3333%" height="15" fill="rgb(216,166,38)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="24.3333%" y="1668" width="0.3333%" height="15" fill="rgb(251,202,51)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="24.3333%" y="1684" width="0.3333%" height="15" fill="rgb(254,216,34)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="24.3333%" y="1700" width="0.3333%" height="15" fill="rgb(251,32,27)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1716" width="0.3333%" height="15" fill="rgb(208,127,28)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1726.50"></text></g><g><title><module> (sqlalchemy/sql/util.py:9) (1 samples, 0.33%)</title><rect x="24.3333%" y="1732" width="0.3333%" height="15" fill="rgb(224,137,22)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1742.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="24.3333%" y="1748" width="0.3333%" height="15" fill="rgb(254,70,32)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="24.3333%" y="1764" width="0.3333%" height="15" fill="rgb(229,75,37)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1774.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="24.3333%" y="1780" width="0.3333%" height="15" fill="rgb(252,64,23)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1790.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="24.3333%" y="1796" width="0.3333%" height="15" fill="rgb(232,162,48)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1812" width="0.3333%" height="15" fill="rgb(246,160,12)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1822.50"></text></g><g><title><module> (sqlalchemy/sql/schema.py:8) (1 samples, 0.33%)</title><rect x="24.3333%" y="1828" width="0.3333%" height="15" fill="rgb(247,166,0)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="24.3333%" y="1844" width="0.3333%" height="15" fill="rgb(249,219,21)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="24.3333%" y="1860" width="0.3333%" height="15" fill="rgb(205,209,3)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="24.3333%" y="1876" width="0.3333%" height="15" fill="rgb(243,44,1)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="24.3333%" y="1892" width="0.3333%" height="15" fill="rgb(206,159,16)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="24.3333%" y="1908" width="0.3333%" height="15" fill="rgb(244,77,30)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1918.50"></text></g><g><title><module> (sqlalchemy/sql/selectable.py:8) (1 samples, 0.33%)</title><rect x="24.3333%" y="1924" width="0.3333%" height="15" fill="rgb(218,69,12)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1934.50"></text></g><g><title>TextualSelect (sqlalchemy/sql/selectable.py:6763) (1 samples, 0.33%)</title><rect x="24.3333%" y="1940" width="0.3333%" height="15" fill="rgb(212,87,7)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1950.50"></text></g><g><title>_generative (sqlalchemy/sql/base.py:268) (1 samples, 0.33%)</title><rect x="24.3333%" y="1956" width="0.3333%" height="15" fill="rgb(245,114,25)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1966.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (1 samples, 0.33%)</title><rect x="24.3333%" y="1972" width="0.3333%" height="15" fill="rgb(210,61,42)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1982.50"></text></g><g><title>_exec_code_in_env (sqlalchemy/util/langhelpers.py:330) (1 samples, 0.33%)</title><rect x="24.3333%" y="1988" width="0.3333%" height="15" fill="rgb(211,52,33)" fg:x="73" fg:w="1"/><text x="24.5833%" y="1998.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="24.3333%" y="1332" width="1.0000%" height="15" fill="rgb(234,58,33)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1342.50"></text></g><g><title><module> (sqlalchemy/sql/compiler.py:9) (3 samples, 1.00%)</title><rect x="24.3333%" y="1348" width="1.0000%" height="15" fill="rgb(220,115,36)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="24.3333%" y="1364" width="1.0000%" height="15" fill="rgb(243,153,54)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="24.3333%" y="1380" width="1.0000%" height="15" fill="rgb(251,47,18)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="24.3333%" y="1396" width="1.0000%" height="15" fill="rgb(242,102,42)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="24.3333%" y="1412" width="1.0000%" height="15" fill="rgb(234,31,38)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="24.3333%" y="1428" width="1.0000%" height="15" fill="rgb(221,117,51)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="24.3333%" y="1444" width="1.0000%" height="15" fill="rgb(212,20,18)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="24.3333%" y="1460" width="1.0000%" height="15" fill="rgb(245,133,36)" fg:x="73" fg:w="3"/><text x="24.5833%" y="1470.50"></text></g><g><title><module> (sqlalchemy/sql/functions.py:9) (2 samples, 0.67%)</title><rect x="24.6667%" y="1476" width="0.6667%" height="15" fill="rgb(212,6,19)" fg:x="74" fg:w="2"/><text x="24.9167%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.33%)</title><rect x="23.0000%" y="708" width="3.3333%" height="15" fill="rgb(218,1,36)" fg:x="69" fg:w="10"/><text x="23.2500%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.33%)</title><rect x="23.0000%" y="724" width="3.3333%" height="15" fill="rgb(246,84,54)" fg:x="69" fg:w="10"/><text x="23.2500%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.33%)</title><rect x="23.0000%" y="740" width="3.3333%" height="15" fill="rgb(242,110,6)" fg:x="69" fg:w="10"/><text x="23.2500%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.33%)</title><rect x="23.0000%" y="756" width="3.3333%" height="15" fill="rgb(214,47,5)" fg:x="69" fg:w="10"/><text x="23.2500%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="23.0000%" y="772" width="3.3333%" height="15" fill="rgb(218,159,25)" fg:x="69" fg:w="10"/><text x="23.2500%" y="782.50">_ca..</text></g><g><title><module> (sqlalchemy/engine/__init__.py:8) (10 samples, 3.33%)</title><rect x="23.0000%" y="788" width="3.3333%" height="15" fill="rgb(215,211,28)" fg:x="69" fg:w="10"/><text x="23.2500%" y="798.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 3.00%)</title><rect x="23.3333%" y="804" width="3.0000%" height="15" fill="rgb(238,59,32)" fg:x="70" fg:w="9"/><text x="23.5833%" y="814.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="23.3333%" y="820" width="3.0000%" height="15" fill="rgb(226,82,3)" fg:x="70" fg:w="9"/><text x="23.5833%" y="830.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="23.3333%" y="836" width="3.0000%" height="15" fill="rgb(240,164,32)" fg:x="70" fg:w="9"/><text x="23.5833%" y="846.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="23.3333%" y="852" width="3.0000%" height="15" fill="rgb(232,46,7)" fg:x="70" fg:w="9"/><text x="23.5833%" y="862.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="23.3333%" y="868" width="3.0000%" height="15" fill="rgb(229,129,53)" fg:x="70" fg:w="9"/><text x="23.5833%" y="878.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="23.3333%" y="884" width="3.0000%" height="15" fill="rgb(234,188,29)" fg:x="70" fg:w="9"/><text x="23.5833%" y="894.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="23.3333%" y="900" width="3.0000%" height="15" fill="rgb(246,141,4)" fg:x="70" fg:w="9"/><text x="23.5833%" y="910.50">_ca..</text></g><g><title><module> (sqlalchemy/engine/events.py:9) (9 samples, 3.00%)</title><rect x="23.3333%" y="916" width="3.0000%" height="15" fill="rgb(229,23,39)" fg:x="70" fg:w="9"/><text x="23.5833%" y="926.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="23.3333%" y="932" width="3.0000%" height="15" fill="rgb(206,12,3)" fg:x="70" fg:w="9"/><text x="23.5833%" y="942.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="23.3333%" y="948" width="3.0000%" height="15" fill="rgb(252,226,20)" fg:x="70" fg:w="9"/><text x="23.5833%" y="958.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="23.3333%" y="964" width="3.0000%" height="15" fill="rgb(216,123,35)" fg:x="70" fg:w="9"/><text x="23.5833%" y="974.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="23.3333%" y="980" width="3.0000%" height="15" fill="rgb(212,68,40)" fg:x="70" fg:w="9"/><text x="23.5833%" y="990.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="23.3333%" y="996" width="3.0000%" height="15" fill="rgb(254,125,32)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1006.50">_ca..</text></g><g><title><module> (sqlalchemy/engine/base.py:7) (9 samples, 3.00%)</title><rect x="23.3333%" y="1012" width="3.0000%" height="15" fill="rgb(253,97,22)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1022.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="23.3333%" y="1028" width="3.0000%" height="15" fill="rgb(241,101,14)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1038.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="23.3333%" y="1044" width="3.0000%" height="15" fill="rgb(238,103,29)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1054.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="23.3333%" y="1060" width="3.0000%" height="15" fill="rgb(233,195,47)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1070.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="23.3333%" y="1076" width="3.0000%" height="15" fill="rgb(246,218,30)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1086.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="23.3333%" y="1092" width="3.0000%" height="15" fill="rgb(219,145,47)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1102.50">_ca..</text></g><g><title><module> (sqlalchemy/engine/interfaces.py:8) (9 samples, 3.00%)</title><rect x="23.3333%" y="1108" width="3.0000%" height="15" fill="rgb(243,12,26)" fg:x="70" fg:w="9"/><text x="23.5833%" y="1118.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.33%)</title><rect x="24.0000%" y="1124" width="2.3333%" height="15" fill="rgb(214,87,16)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1134.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.33%)</title><rect x="24.0000%" y="1140" width="2.3333%" height="15" fill="rgb(208,99,42)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1150.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="24.0000%" y="1156" width="2.3333%" height="15" fill="rgb(253,99,2)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1166.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 2.33%)</title><rect x="24.0000%" y="1172" width="2.3333%" height="15" fill="rgb(220,168,23)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1182.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 2.33%)</title><rect x="24.0000%" y="1188" width="2.3333%" height="15" fill="rgb(242,38,24)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1198.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.33%)</title><rect x="24.0000%" y="1204" width="2.3333%" height="15" fill="rgb(225,182,9)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1214.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.33%)</title><rect x="24.0000%" y="1220" width="2.3333%" height="15" fill="rgb(243,178,37)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1230.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="24.0000%" y="1236" width="2.3333%" height="15" fill="rgb(232,139,19)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1246.50">_..</text></g><g><title><module> (sqlalchemy/sql/__init__.py:7) (7 samples, 2.33%)</title><rect x="24.0000%" y="1252" width="2.3333%" height="15" fill="rgb(225,201,24)" fg:x="72" fg:w="7"/><text x="24.2500%" y="1262.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.00%)</title><rect x="24.3333%" y="1268" width="2.0000%" height="15" fill="rgb(221,47,46)" fg:x="73" fg:w="6"/><text x="24.5833%" y="1278.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.00%)</title><rect x="24.3333%" y="1284" width="2.0000%" height="15" fill="rgb(249,23,13)" fg:x="73" fg:w="6"/><text x="24.5833%" y="1294.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.00%)</title><rect x="24.3333%" y="1300" width="2.0000%" height="15" fill="rgb(219,9,5)" fg:x="73" fg:w="6"/><text x="24.5833%" y="1310.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.00%)</title><rect x="24.3333%" y="1316" width="2.0000%" height="15" fill="rgb(254,171,16)" fg:x="73" fg:w="6"/><text x="24.5833%" y="1326.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (3 samples, 1.00%)</title><rect x="25.3333%" y="1332" width="1.0000%" height="15" fill="rgb(230,171,20)" fg:x="76" fg:w="3"/><text x="25.5833%" y="1342.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (3 samples, 1.00%)</title><rect x="25.3333%" y="1348" width="1.0000%" height="15" fill="rgb(210,71,41)" fg:x="76" fg:w="3"/><text x="25.5833%" y="1358.50"></text></g><g><title><module> (sqlalchemy/util/_collections.py:9) (2 samples, 0.67%)</title><rect x="26.3333%" y="916" width="0.6667%" height="15" fill="rgb(206,173,20)" fg:x="79" fg:w="2"/><text x="26.5833%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="26.3333%" y="932" width="0.6667%" height="15" fill="rgb(233,88,34)" fg:x="79" fg:w="2"/><text x="26.5833%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="26.3333%" y="948" width="0.6667%" height="15" fill="rgb(223,209,46)" fg:x="79" fg:w="2"/><text x="26.5833%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="26.3333%" y="964" width="0.6667%" height="15" fill="rgb(250,43,18)" fg:x="79" fg:w="2"/><text x="26.5833%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="26.3333%" y="980" width="0.6667%" height="15" fill="rgb(208,13,10)" fg:x="79" fg:w="2"/><text x="26.5833%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="26.3333%" y="996" width="0.6667%" height="15" fill="rgb(212,200,36)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1006.50"></text></g><g><title><module> (sqlalchemy/util/_has_cy.py:8) (2 samples, 0.67%)</title><rect x="26.3333%" y="1012" width="0.6667%" height="15" fill="rgb(225,90,30)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1022.50"></text></g><g><title>_import_cy_extensions (sqlalchemy/util/_has_cy.py:12) (2 samples, 0.67%)</title><rect x="26.3333%" y="1028" width="0.6667%" height="15" fill="rgb(236,182,39)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="26.3333%" y="1044" width="0.6667%" height="15" fill="rgb(212,144,35)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="26.3333%" y="1060" width="0.6667%" height="15" fill="rgb(228,63,44)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="26.3333%" y="1076" width="0.6667%" height="15" fill="rgb(228,109,6)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="26.3333%" y="1092" width="0.6667%" height="15" fill="rgb(238,117,24)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="26.3333%" y="1108" width="0.6667%" height="15" fill="rgb(242,26,26)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1118.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="26.3333%" y="1124" width="0.6667%" height="15" fill="rgb(221,92,48)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1134.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="26.3333%" y="1140" width="0.6667%" height="15" fill="rgb(209,209,32)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="26.3333%" y="1156" width="0.6667%" height="15" fill="rgb(221,70,22)" fg:x="79" fg:w="2"/><text x="26.5833%" y="1166.50"></text></g><g><title><module> (dask_sql/input_utils/__init__.py:1) (15 samples, 5.00%)</title><rect x="22.3333%" y="500" width="5.0000%" height="15" fill="rgb(248,145,5)" fg:x="67" fg:w="15"/><text x="22.5833%" y="510.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.00%)</title><rect x="22.3333%" y="516" width="5.0000%" height="15" fill="rgb(226,116,26)" fg:x="67" fg:w="15"/><text x="22.5833%" y="526.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.00%)</title><rect x="22.3333%" y="532" width="5.0000%" height="15" fill="rgb(244,5,17)" fg:x="67" fg:w="15"/><text x="22.5833%" y="542.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.00%)</title><rect x="22.3333%" y="548" width="5.0000%" height="15" fill="rgb(252,159,33)" fg:x="67" fg:w="15"/><text x="22.5833%" y="558.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.00%)</title><rect x="22.3333%" y="564" width="5.0000%" height="15" fill="rgb(206,71,0)" fg:x="67" fg:w="15"/><text x="22.5833%" y="574.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="22.3333%" y="580" width="5.0000%" height="15" fill="rgb(233,118,54)" fg:x="67" fg:w="15"/><text x="22.5833%" y="590.50">_call_..</text></g><g><title><module> (dask_sql/input_utils/hive.py:1) (15 samples, 5.00%)</title><rect x="22.3333%" y="596" width="5.0000%" height="15" fill="rgb(234,83,48)" fg:x="67" fg:w="15"/><text x="22.5833%" y="606.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="23.0000%" y="612" width="4.3333%" height="15" fill="rgb(228,3,54)" fg:x="69" fg:w="13"/><text x="23.2500%" y="622.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="23.0000%" y="628" width="4.3333%" height="15" fill="rgb(226,155,13)" fg:x="69" fg:w="13"/><text x="23.2500%" y="638.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 4.33%)</title><rect x="23.0000%" y="644" width="4.3333%" height="15" fill="rgb(241,28,37)" fg:x="69" fg:w="13"/><text x="23.2500%" y="654.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 4.33%)</title><rect x="23.0000%" y="660" width="4.3333%" height="15" fill="rgb(233,93,10)" fg:x="69" fg:w="13"/><text x="23.2500%" y="670.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="23.0000%" y="676" width="4.3333%" height="15" fill="rgb(225,113,19)" fg:x="69" fg:w="13"/><text x="23.2500%" y="686.50">_call..</text></g><g><title><module> (sqlalchemy/__init__.py:8) (13 samples, 4.33%)</title><rect x="23.0000%" y="692" width="4.3333%" height="15" fill="rgb(241,2,18)" fg:x="69" fg:w="13"/><text x="23.2500%" y="702.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="26.3333%" y="708" width="1.0000%" height="15" fill="rgb(228,207,21)" fg:x="79" fg:w="3"/><text x="26.5833%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="26.3333%" y="724" width="1.0000%" height="15" fill="rgb(213,211,35)" fg:x="79" fg:w="3"/><text x="26.5833%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="26.3333%" y="740" width="1.0000%" height="15" fill="rgb(209,83,10)" fg:x="79" fg:w="3"/><text x="26.5833%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="26.3333%" y="756" width="1.0000%" height="15" fill="rgb(209,164,1)" fg:x="79" fg:w="3"/><text x="26.5833%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="26.3333%" y="772" width="1.0000%" height="15" fill="rgb(213,184,43)" fg:x="79" fg:w="3"/><text x="26.5833%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="26.3333%" y="788" width="1.0000%" height="15" fill="rgb(231,61,34)" fg:x="79" fg:w="3"/><text x="26.5833%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="26.3333%" y="804" width="1.0000%" height="15" fill="rgb(235,75,3)" fg:x="79" fg:w="3"/><text x="26.5833%" y="814.50"></text></g><g><title><module> (sqlalchemy/util/__init__.py:9) (3 samples, 1.00%)</title><rect x="26.3333%" y="820" width="1.0000%" height="15" fill="rgb(220,106,47)" fg:x="79" fg:w="3"/><text x="26.5833%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="26.3333%" y="836" width="1.0000%" height="15" fill="rgb(210,196,33)" fg:x="79" fg:w="3"/><text x="26.5833%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="26.3333%" y="852" width="1.0000%" height="15" fill="rgb(229,154,42)" fg:x="79" fg:w="3"/><text x="26.5833%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="26.3333%" y="868" width="1.0000%" height="15" fill="rgb(228,114,26)" fg:x="79" fg:w="3"/><text x="26.5833%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="26.3333%" y="884" width="1.0000%" height="15" fill="rgb(208,144,1)" fg:x="79" fg:w="3"/><text x="26.5833%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="26.3333%" y="900" width="1.0000%" height="15" fill="rgb(239,112,37)" fg:x="79" fg:w="3"/><text x="26.5833%" y="910.50"></text></g><g><title><module> (sqlalchemy/util/concurrency.py:9) (1 samples, 0.33%)</title><rect x="27.0000%" y="916" width="0.3333%" height="15" fill="rgb(210,96,50)" fg:x="81" fg:w="1"/><text x="27.2500%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="27.0000%" y="932" width="0.3333%" height="15" fill="rgb(222,178,2)" fg:x="81" fg:w="1"/><text x="27.2500%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="27.0000%" y="948" width="0.3333%" height="15" fill="rgb(226,74,18)" fg:x="81" fg:w="1"/><text x="27.2500%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="27.0000%" y="964" width="0.3333%" height="15" fill="rgb(225,67,54)" fg:x="81" fg:w="1"/><text x="27.2500%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="27.0000%" y="980" width="0.3333%" height="15" fill="rgb(251,92,32)" fg:x="81" fg:w="1"/><text x="27.2500%" y="990.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="27.0000%" y="996" width="0.3333%" height="15" fill="rgb(228,149,22)" fg:x="81" fg:w="1"/><text x="27.2500%" y="1006.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="27.0000%" y="1012" width="0.3333%" height="15" fill="rgb(243,54,13)" fg:x="81" fg:w="1"/><text x="27.2500%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="27.3333%" y="596" width="0.3333%" height="15" fill="rgb(243,180,28)" fg:x="82" fg:w="1"/><text x="27.5833%" y="606.50"></text></g><g><title><module> (dask_sql/cmd.py:1) (62 samples, 20.67%)</title><rect x="7.3333%" y="276" width="20.6667%" height="15" fill="rgb(208,167,24)" fg:x="22" fg:w="62"/><text x="7.5833%" y="286.50"><module> (dask_sql/cmd.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (62 samples, 20.67%)</title><rect x="7.3333%" y="292" width="20.6667%" height="15" fill="rgb(245,73,45)" fg:x="22" fg:w="62"/><text x="7.5833%" y="302.50">_find_and_load (<frozen importlib..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (62 samples, 20.67%)</title><rect x="7.3333%" y="308" width="20.6667%" height="15" fill="rgb(237,203,48)" fg:x="22" fg:w="62"/><text x="7.5833%" y="318.50">_find_and_load_unlocked (<frozen ..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (51 samples, 17.00%)</title><rect x="11.0000%" y="324" width="17.0000%" height="15" fill="rgb(211,197,16)" fg:x="33" fg:w="51"/><text x="11.2500%" y="334.50">_load_unlocked (<frozen im..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (51 samples, 17.00%)</title><rect x="11.0000%" y="340" width="17.0000%" height="15" fill="rgb(243,99,51)" fg:x="33" fg:w="51"/><text x="11.2500%" y="350.50">exec_module (<frozen impor..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (51 samples, 17.00%)</title><rect x="11.0000%" y="356" width="17.0000%" height="15" fill="rgb(215,123,29)" fg:x="33" fg:w="51"/><text x="11.2500%" y="366.50">_call_with_frames_removed ..</text></g><g><title><module> (dask_sql/context.py:1) (21 samples, 7.00%)</title><rect x="21.0000%" y="372" width="7.0000%" height="15" fill="rgb(239,186,37)" fg:x="63" fg:w="21"/><text x="21.2500%" y="382.50"><module> ..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (17 samples, 5.67%)</title><rect x="22.3333%" y="388" width="5.6667%" height="15" fill="rgb(252,136,39)" fg:x="67" fg:w="17"/><text x="22.5833%" y="398.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.67%)</title><rect x="22.3333%" y="404" width="5.6667%" height="15" fill="rgb(223,213,32)" fg:x="67" fg:w="17"/><text x="22.5833%" y="414.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.67%)</title><rect x="22.3333%" y="420" width="5.6667%" height="15" fill="rgb(233,115,5)" fg:x="67" fg:w="17"/><text x="22.5833%" y="430.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.67%)</title><rect x="22.3333%" y="436" width="5.6667%" height="15" fill="rgb(207,226,44)" fg:x="67" fg:w="17"/><text x="22.5833%" y="446.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.67%)</title><rect x="22.3333%" y="452" width="5.6667%" height="15" fill="rgb(208,126,0)" fg:x="67" fg:w="17"/><text x="22.5833%" y="462.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.67%)</title><rect x="22.3333%" y="468" width="5.6667%" height="15" fill="rgb(244,66,21)" fg:x="67" fg:w="17"/><text x="22.5833%" y="478.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.67%)</title><rect x="22.3333%" y="484" width="5.6667%" height="15" fill="rgb(222,97,12)" fg:x="67" fg:w="17"/><text x="22.5833%" y="494.50">_call_w..</text></g><g><title><module> (dask_sql/physical/rel/logical/__init__.py:1) (2 samples, 0.67%)</title><rect x="27.3333%" y="500" width="0.6667%" height="15" fill="rgb(219,213,19)" fg:x="82" fg:w="2"/><text x="27.5833%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="27.3333%" y="516" width="0.6667%" height="15" fill="rgb(252,169,30)" fg:x="82" fg:w="2"/><text x="27.5833%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="27.3333%" y="532" width="0.6667%" height="15" fill="rgb(206,32,51)" fg:x="82" fg:w="2"/><text x="27.5833%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="27.3333%" y="548" width="0.6667%" height="15" fill="rgb(250,172,42)" fg:x="82" fg:w="2"/><text x="27.5833%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="27.3333%" y="564" width="0.6667%" height="15" fill="rgb(209,34,43)" fg:x="82" fg:w="2"/><text x="27.5833%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.67%)</title><rect x="27.3333%" y="580" width="0.6667%" height="15" fill="rgb(223,11,35)" fg:x="82" fg:w="2"/><text x="27.5833%" y="590.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.33%)</title><rect x="27.6667%" y="596" width="0.3333%" height="15" fill="rgb(251,219,26)" fg:x="83" fg:w="1"/><text x="27.9167%" y="606.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.33%)</title><rect x="27.6667%" y="612" width="0.3333%" height="15" fill="rgb(231,119,3)" fg:x="83" fg:w="1"/><text x="27.9167%" y="622.50"></text></g><g><title><module> (fastapi/security/api_key.py:1) (1 samples, 0.33%)</title><rect x="28.0000%" y="932" width="0.3333%" height="15" fill="rgb(216,97,11)" fg:x="84" fg:w="1"/><text x="28.2500%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="28.0000%" y="948" width="0.3333%" height="15" fill="rgb(223,59,9)" fg:x="84" fg:w="1"/><text x="28.2500%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="28.0000%" y="964" width="0.3333%" height="15" fill="rgb(233,93,31)" fg:x="84" fg:w="1"/><text x="28.2500%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="28.0000%" y="980" width="0.3333%" height="15" fill="rgb(239,81,33)" fg:x="84" fg:w="1"/><text x="28.2500%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="28.0000%" y="996" width="0.3333%" height="15" fill="rgb(213,120,34)" fg:x="84" fg:w="1"/><text x="28.2500%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="28.0000%" y="1012" width="0.3333%" height="15" fill="rgb(243,49,53)" fg:x="84" fg:w="1"/><text x="28.2500%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="28.0000%" y="1028" width="0.3333%" height="15" fill="rgb(247,216,33)" fg:x="84" fg:w="1"/><text x="28.2500%" y="1038.50"></text></g><g><title><module> (fastapi/dependencies/models.py:1) (2 samples, 0.67%)</title><rect x="28.0000%" y="692" width="0.6667%" height="15" fill="rgb(226,26,14)" fg:x="84" fg:w="2"/><text x="28.2500%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="28.0000%" y="708" width="0.6667%" height="15" fill="rgb(215,49,53)" fg:x="84" fg:w="2"/><text x="28.2500%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="28.0000%" y="724" width="0.6667%" height="15" fill="rgb(245,162,40)" fg:x="84" fg:w="2"/><text x="28.2500%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="28.0000%" y="740" width="0.6667%" height="15" fill="rgb(229,68,17)" fg:x="84" fg:w="2"/><text x="28.2500%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="28.0000%" y="756" width="0.6667%" height="15" fill="rgb(213,182,10)" fg:x="84" fg:w="2"/><text x="28.2500%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="28.0000%" y="772" width="0.6667%" height="15" fill="rgb(245,125,30)" fg:x="84" fg:w="2"/><text x="28.2500%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="28.0000%" y="788" width="0.6667%" height="15" fill="rgb(232,202,2)" fg:x="84" fg:w="2"/><text x="28.2500%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="28.0000%" y="804" width="0.6667%" height="15" fill="rgb(237,140,51)" fg:x="84" fg:w="2"/><text x="28.2500%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="28.0000%" y="820" width="0.6667%" height="15" fill="rgb(236,157,25)" fg:x="84" fg:w="2"/><text x="28.2500%" y="830.50"></text></g><g><title><module> (fastapi/security/__init__.py:1) (2 samples, 0.67%)</title><rect x="28.0000%" y="836" width="0.6667%" height="15" fill="rgb(219,209,0)" fg:x="84" fg:w="2"/><text x="28.2500%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="28.0000%" y="852" width="0.6667%" height="15" fill="rgb(240,116,54)" fg:x="84" fg:w="2"/><text x="28.2500%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="28.0000%" y="868" width="0.6667%" height="15" fill="rgb(216,10,36)" fg:x="84" fg:w="2"/><text x="28.2500%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="28.0000%" y="884" width="0.6667%" height="15" fill="rgb(222,72,44)" fg:x="84" fg:w="2"/><text x="28.2500%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="28.0000%" y="900" width="0.6667%" height="15" fill="rgb(232,159,9)" fg:x="84" fg:w="2"/><text x="28.2500%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="28.0000%" y="916" width="0.6667%" height="15" fill="rgb(210,39,32)" fg:x="84" fg:w="2"/><text x="28.2500%" y="926.50"></text></g><g><title><module> (fastapi/security/http.py:1) (1 samples, 0.33%)</title><rect x="28.3333%" y="932" width="0.3333%" height="15" fill="rgb(216,194,45)" fg:x="85" fg:w="1"/><text x="28.5833%" y="942.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (1 samples, 0.33%)</title><rect x="28.3333%" y="948" width="0.3333%" height="15" fill="rgb(218,18,35)" fg:x="85" fg:w="1"/><text x="28.5833%" y="958.50"></text></g><g><title>set_model_fields (pydantic/_internal/_model_construction.py:440) (1 samples, 0.33%)</title><rect x="28.3333%" y="964" width="0.3333%" height="15" fill="rgb(207,83,51)" fg:x="85" fg:w="1"/><text x="28.5833%" y="974.50"></text></g><g><title>collect_model_fields (pydantic/_internal/_fields.py:90) (1 samples, 0.33%)</title><rect x="28.3333%" y="980" width="0.3333%" height="15" fill="rgb(225,63,43)" fg:x="85" fg:w="1"/><text x="28.5833%" y="990.50"></text></g><g><title>from_annotation (pydantic/fields.py:244) (1 samples, 0.33%)</title><rect x="28.3333%" y="996" width="0.3333%" height="15" fill="rgb(207,57,36)" fg:x="85" fg:w="1"/><text x="28.5833%" y="1006.50"></text></g><g><title>merge_field_infos (pydantic/fields.py:387) (1 samples, 0.33%)</title><rect x="28.3333%" y="1012" width="0.3333%" height="15" fill="rgb(216,99,33)" fg:x="85" fg:w="1"/><text x="28.5833%" y="1022.50"></text></g><g><title>__init__ (pydantic/fields.py:174) (1 samples, 0.33%)</title><rect x="28.3333%" y="1028" width="0.3333%" height="15" fill="rgb(225,42,16)" fg:x="85" fg:w="1"/><text x="28.5833%" y="1038.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="28.6667%" y="740" width="0.3333%" height="15" fill="rgb(220,201,45)" fg:x="86" fg:w="1"/><text x="28.9167%" y="750.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="28.6667%" y="756" width="0.3333%" height="15" fill="rgb(225,33,4)" fg:x="86" fg:w="1"/><text x="28.9167%" y="766.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.33%)</title><rect x="28.6667%" y="772" width="0.3333%" height="15" fill="rgb(224,33,50)" fg:x="86" fg:w="1"/><text x="28.9167%" y="782.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.33%)</title><rect x="28.6667%" y="788" width="0.3333%" height="15" fill="rgb(246,198,51)" fg:x="86" fg:w="1"/><text x="28.9167%" y="798.50"></text></g><g><title><module> (fastapi/dependencies/utils.py:1) (2 samples, 0.67%)</title><rect x="28.6667%" y="692" width="0.6667%" height="15" fill="rgb(205,22,4)" fg:x="86" fg:w="2"/><text x="28.9167%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="28.6667%" y="708" width="0.6667%" height="15" fill="rgb(206,3,8)" fg:x="86" fg:w="2"/><text x="28.9167%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="28.6667%" y="724" width="0.6667%" height="15" fill="rgb(251,23,15)" fg:x="86" fg:w="2"/><text x="28.9167%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="29.0000%" y="740" width="0.3333%" height="15" fill="rgb(252,88,28)" fg:x="87" fg:w="1"/><text x="29.2500%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="29.0000%" y="756" width="0.3333%" height="15" fill="rgb(212,127,14)" fg:x="87" fg:w="1"/><text x="29.2500%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="29.0000%" y="772" width="0.3333%" height="15" fill="rgb(247,145,37)" fg:x="87" fg:w="1"/><text x="29.2500%" y="782.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="29.0000%" y="788" width="0.3333%" height="15" fill="rgb(209,117,53)" fg:x="87" fg:w="1"/><text x="29.2500%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="28.0000%" y="612" width="1.6667%" height="15" fill="rgb(212,90,42)" fg:x="84" fg:w="5"/><text x="28.2500%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="28.0000%" y="628" width="1.6667%" height="15" fill="rgb(218,164,37)" fg:x="84" fg:w="5"/><text x="28.2500%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="28.0000%" y="644" width="1.6667%" height="15" fill="rgb(246,65,34)" fg:x="84" fg:w="5"/><text x="28.2500%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="28.0000%" y="660" width="1.6667%" height="15" fill="rgb(231,100,33)" fg:x="84" fg:w="5"/><text x="28.2500%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="28.0000%" y="676" width="1.6667%" height="15" fill="rgb(228,126,14)" fg:x="84" fg:w="5"/><text x="28.2500%" y="686.50"></text></g><g><title><module> (fastapi/encoders.py:1) (1 samples, 0.33%)</title><rect x="29.3333%" y="692" width="0.3333%" height="15" fill="rgb(215,173,21)" fg:x="88" fg:w="1"/><text x="29.5833%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="29.3333%" y="708" width="0.3333%" height="15" fill="rgb(210,6,40)" fg:x="88" fg:w="1"/><text x="29.5833%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="29.3333%" y="724" width="0.3333%" height="15" fill="rgb(212,48,18)" fg:x="88" fg:w="1"/><text x="29.5833%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="29.3333%" y="740" width="0.3333%" height="15" fill="rgb(230,214,11)" fg:x="88" fg:w="1"/><text x="29.5833%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="29.3333%" y="756" width="0.3333%" height="15" fill="rgb(254,105,39)" fg:x="88" fg:w="1"/><text x="29.5833%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="29.3333%" y="772" width="0.3333%" height="15" fill="rgb(245,158,5)" fg:x="88" fg:w="1"/><text x="29.5833%" y="782.50"></text></g><g><title><module> (pydantic/color.py:1) (1 samples, 0.33%)</title><rect x="29.3333%" y="788" width="0.3333%" height="15" fill="rgb(249,208,11)" fg:x="88" fg:w="1"/><text x="29.5833%" y="798.50"></text></g><g><title><setcomp> (pydantic/color.py:67) (1 samples, 0.33%)</title><rect x="29.3333%" y="804" width="0.3333%" height="15" fill="rgb(210,39,28)" fg:x="88" fg:w="1"/><text x="29.5833%" y="814.50"></text></g><g><title>__eq__ (typing.py:928) (1 samples, 0.33%)</title><rect x="30.6667%" y="1636" width="0.3333%" height="15" fill="rgb(211,56,53)" fg:x="92" fg:w="1"/><text x="30.9167%" y="1646.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.33%)</title><rect x="31.0000%" y="1844" width="0.3333%" height="15" fill="rgb(226,201,30)" fg:x="93" fg:w="1"/><text x="31.2500%" y="1854.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.33%)</title><rect x="31.0000%" y="1860" width="0.3333%" height="15" fill="rgb(239,101,34)" fg:x="93" fg:w="1"/><text x="31.2500%" y="1870.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="31.0000%" y="1876" width="0.3333%" height="15" fill="rgb(226,209,5)" fg:x="93" fg:w="1"/><text x="31.2500%" y="1886.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="31.0000%" y="1892" width="0.3333%" height="15" fill="rgb(250,105,47)" fg:x="93" fg:w="1"/><text x="31.2500%" y="1902.50"></text></g><g><title>lenient_issubclass (pydantic/_internal/_utils.py:74) (1 samples, 0.33%)</title><rect x="31.0000%" y="1908" width="0.3333%" height="15" fill="rgb(230,72,3)" fg:x="93" fg:w="1"/><text x="31.2500%" y="1918.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="30.6667%" y="1588" width="1.0000%" height="15" fill="rgb(232,218,39)" fg:x="92" fg:w="3"/><text x="30.9167%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="30.6667%" y="1604" width="1.0000%" height="15" fill="rgb(248,166,6)" fg:x="92" fg:w="3"/><text x="30.9167%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="30.6667%" y="1620" width="1.0000%" height="15" fill="rgb(247,89,20)" fg:x="92" fg:w="3"/><text x="30.9167%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.67%)</title><rect x="31.0000%" y="1636" width="0.6667%" height="15" fill="rgb(248,130,54)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.67%)</title><rect x="31.0000%" y="1652" width="0.6667%" height="15" fill="rgb(234,196,4)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.67%)</title><rect x="31.0000%" y="1668" width="0.6667%" height="15" fill="rgb(250,143,31)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.67%)</title><rect x="31.0000%" y="1684" width="0.6667%" height="15" fill="rgb(211,110,34)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.67%)</title><rect x="31.0000%" y="1700" width="0.6667%" height="15" fill="rgb(215,124,48)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.67%)</title><rect x="31.0000%" y="1716" width="0.6667%" height="15" fill="rgb(216,46,13)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.67%)</title><rect x="31.0000%" y="1732" width="0.6667%" height="15" fill="rgb(205,184,25)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.67%)</title><rect x="31.0000%" y="1748" width="0.6667%" height="15" fill="rgb(228,1,10)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.67%)</title><rect x="31.0000%" y="1764" width="0.6667%" height="15" fill="rgb(213,116,27)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.67%)</title><rect x="31.0000%" y="1780" width="0.6667%" height="15" fill="rgb(241,95,50)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.67%)</title><rect x="31.0000%" y="1796" width="0.6667%" height="15" fill="rgb(238,48,32)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.67%)</title><rect x="31.0000%" y="1812" width="0.6667%" height="15" fill="rgb(235,113,49)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1822.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.67%)</title><rect x="31.0000%" y="1828" width="0.6667%" height="15" fill="rgb(205,127,43)" fg:x="93" fg:w="2"/><text x="31.2500%" y="1838.50"></text></g><g><title>__init__ (pydantic/_internal/_schema_generation_shared.py:71) (1 samples, 0.33%)</title><rect x="31.3333%" y="1844" width="0.3333%" height="15" fill="rgb(250,162,2)" fg:x="94" fg:w="1"/><text x="31.5833%" y="1854.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (4 samples, 1.33%)</title><rect x="30.6667%" y="1540" width="1.3333%" height="15" fill="rgb(220,13,41)" fg:x="92" fg:w="4"/><text x="30.9167%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (4 samples, 1.33%)</title><rect x="30.6667%" y="1556" width="1.3333%" height="15" fill="rgb(249,221,25)" fg:x="92" fg:w="4"/><text x="30.9167%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (4 samples, 1.33%)</title><rect x="30.6667%" y="1572" width="1.3333%" height="15" fill="rgb(215,208,19)" fg:x="92" fg:w="4"/><text x="30.9167%" y="1582.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.33%)</title><rect x="31.6667%" y="1588" width="0.3333%" height="15" fill="rgb(236,175,2)" fg:x="95" fg:w="1"/><text x="31.9167%" y="1598.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.33%)</title><rect x="31.6667%" y="1604" width="0.3333%" height="15" fill="rgb(241,52,2)" fg:x="95" fg:w="1"/><text x="31.9167%" y="1614.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.33%)</title><rect x="31.6667%" y="1620" width="0.3333%" height="15" fill="rgb(248,140,14)" fg:x="95" fg:w="1"/><text x="31.9167%" y="1630.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.33%)</title><rect x="31.6667%" y="1636" width="0.3333%" height="15" fill="rgb(253,22,42)" fg:x="95" fg:w="1"/><text x="31.9167%" y="1646.50"></text></g><g><title>get_args (typing_extensions.py:1218) (1 samples, 0.33%)</title><rect x="31.6667%" y="1652" width="0.3333%" height="15" fill="rgb(234,61,47)" fg:x="95" fg:w="1"/><text x="31.9167%" y="1662.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (5 samples, 1.67%)</title><rect x="30.6667%" y="1252" width="1.6667%" height="15" fill="rgb(208,226,15)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (5 samples, 1.67%)</title><rect x="30.6667%" y="1268" width="1.6667%" height="15" fill="rgb(217,221,4)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="30.6667%" y="1284" width="1.6667%" height="15" fill="rgb(212,174,34)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="30.6667%" y="1300" width="1.6667%" height="15" fill="rgb(253,83,4)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="30.6667%" y="1316" width="1.6667%" height="15" fill="rgb(250,195,49)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.67%)</title><rect x="30.6667%" y="1332" width="1.6667%" height="15" fill="rgb(241,192,25)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (5 samples, 1.67%)</title><rect x="30.6667%" y="1348" width="1.6667%" height="15" fill="rgb(208,124,10)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (5 samples, 1.67%)</title><rect x="30.6667%" y="1364" width="1.6667%" height="15" fill="rgb(222,33,0)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="30.6667%" y="1380" width="1.6667%" height="15" fill="rgb(234,209,28)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (5 samples, 1.67%)</title><rect x="30.6667%" y="1396" width="1.6667%" height="15" fill="rgb(224,11,23)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (5 samples, 1.67%)</title><rect x="30.6667%" y="1412" width="1.6667%" height="15" fill="rgb(232,99,1)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.67%)</title><rect x="30.6667%" y="1428" width="1.6667%" height="15" fill="rgb(237,95,45)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="30.6667%" y="1444" width="1.6667%" height="15" fill="rgb(208,109,11)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="30.6667%" y="1460" width="1.6667%" height="15" fill="rgb(216,190,48)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (5 samples, 1.67%)</title><rect x="30.6667%" y="1476" width="1.6667%" height="15" fill="rgb(251,171,36)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (5 samples, 1.67%)</title><rect x="30.6667%" y="1492" width="1.6667%" height="15" fill="rgb(230,62,22)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (5 samples, 1.67%)</title><rect x="30.6667%" y="1508" width="1.6667%" height="15" fill="rgb(225,114,35)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (5 samples, 1.67%)</title><rect x="30.6667%" y="1524" width="1.6667%" height="15" fill="rgb(215,118,42)" fg:x="92" fg:w="5"/><text x="30.9167%" y="1534.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.33%)</title><rect x="32.0000%" y="1540" width="0.3333%" height="15" fill="rgb(243,119,21)" fg:x="96" fg:w="1"/><text x="32.2500%" y="1550.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.33%)</title><rect x="32.3333%" y="1636" width="0.3333%" height="15" fill="rgb(252,177,53)" fg:x="97" fg:w="1"/><text x="32.5833%" y="1646.50"></text></g><g><title>datetime_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:179) (1 samples, 0.33%)</title><rect x="32.3333%" y="1652" width="0.3333%" height="15" fill="rgb(237,209,29)" fg:x="97" fg:w="1"/><text x="32.5833%" y="1662.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.33%)</title><rect x="32.6667%" y="1652" width="0.3333%" height="15" fill="rgb(212,65,23)" fg:x="98" fg:w="1"/><text x="32.9167%" y="1662.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.33%)</title><rect x="32.6667%" y="1668" width="0.3333%" height="15" fill="rgb(230,222,46)" fg:x="98" fg:w="1"/><text x="32.9167%" y="1678.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.33%)</title><rect x="32.6667%" y="1684" width="0.3333%" height="15" fill="rgb(215,135,32)" fg:x="98" fg:w="1"/><text x="32.9167%" y="1694.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 1.00%)</title><rect x="32.3333%" y="1540" width="1.0000%" height="15" fill="rgb(246,101,22)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="32.3333%" y="1556" width="1.0000%" height="15" fill="rgb(206,107,13)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 1.00%)</title><rect x="32.3333%" y="1572" width="1.0000%" height="15" fill="rgb(250,100,44)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="32.3333%" y="1588" width="1.0000%" height="15" fill="rgb(231,147,38)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="32.3333%" y="1604" width="1.0000%" height="15" fill="rgb(229,8,40)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="32.3333%" y="1620" width="1.0000%" height="15" fill="rgb(221,135,30)" fg:x="97" fg:w="3"/><text x="32.5833%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.67%)</title><rect x="32.6667%" y="1636" width="0.6667%" height="15" fill="rgb(249,193,18)" fg:x="98" fg:w="2"/><text x="32.9167%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.33%)</title><rect x="33.0000%" y="1652" width="0.3333%" height="15" fill="rgb(209,133,39)" fg:x="99" fg:w="1"/><text x="33.2500%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.33%)</title><rect x="33.0000%" y="1668" width="0.3333%" height="15" fill="rgb(232,100,14)" fg:x="99" fg:w="1"/><text x="33.2500%" y="1678.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="33.0000%" y="1684" width="0.3333%" height="15" fill="rgb(224,185,1)" fg:x="99" fg:w="1"/><text x="33.2500%" y="1694.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="33.0000%" y="1700" width="0.3333%" height="15" fill="rgb(223,139,8)" fg:x="99" fg:w="1"/><text x="33.2500%" y="1710.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (9 samples, 3.00%)</title><rect x="30.6667%" y="1156" width="3.0000%" height="15" fill="rgb(232,213,38)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1166.50">_ge..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (9 samples, 3.00%)</title><rect x="30.6667%" y="1172" width="3.0000%" height="15" fill="rgb(207,94,22)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1182.50">_ge..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (9 samples, 3.00%)</title><rect x="30.6667%" y="1188" width="3.0000%" height="15" fill="rgb(219,183,54)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1198.50">mat..</text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (9 samples, 3.00%)</title><rect x="30.6667%" y="1204" width="3.0000%" height="15" fill="rgb(216,185,54)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1214.50">_ap..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (9 samples, 3.00%)</title><rect x="30.6667%" y="1220" width="3.0000%" height="15" fill="rgb(254,217,39)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1230.50">__c..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (9 samples, 3.00%)</title><rect x="30.6667%" y="1236" width="3.0000%" height="15" fill="rgb(240,178,23)" fg:x="92" fg:w="9"/><text x="30.9167%" y="1246.50">new..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (4 samples, 1.33%)</title><rect x="32.3333%" y="1252" width="1.3333%" height="15" fill="rgb(218,11,47)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (4 samples, 1.33%)</title><rect x="32.3333%" y="1268" width="1.3333%" height="15" fill="rgb(218,51,51)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 1.33%)</title><rect x="32.3333%" y="1284" width="1.3333%" height="15" fill="rgb(238,126,27)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 1.33%)</title><rect x="32.3333%" y="1300" width="1.3333%" height="15" fill="rgb(249,202,22)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 1.33%)</title><rect x="32.3333%" y="1316" width="1.3333%" height="15" fill="rgb(254,195,49)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 1.33%)</title><rect x="32.3333%" y="1332" width="1.3333%" height="15" fill="rgb(208,123,14)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (4 samples, 1.33%)</title><rect x="32.3333%" y="1348" width="1.3333%" height="15" fill="rgb(224,200,8)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (4 samples, 1.33%)</title><rect x="32.3333%" y="1364" width="1.3333%" height="15" fill="rgb(217,61,36)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 1.33%)</title><rect x="32.3333%" y="1380" width="1.3333%" height="15" fill="rgb(206,35,45)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (4 samples, 1.33%)</title><rect x="32.3333%" y="1396" width="1.3333%" height="15" fill="rgb(217,65,33)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (4 samples, 1.33%)</title><rect x="32.3333%" y="1412" width="1.3333%" height="15" fill="rgb(222,158,48)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (4 samples, 1.33%)</title><rect x="32.3333%" y="1428" width="1.3333%" height="15" fill="rgb(254,2,54)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 1.33%)</title><rect x="32.3333%" y="1444" width="1.3333%" height="15" fill="rgb(250,143,38)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 1.33%)</title><rect x="32.3333%" y="1460" width="1.3333%" height="15" fill="rgb(248,25,0)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (4 samples, 1.33%)</title><rect x="32.3333%" y="1476" width="1.3333%" height="15" fill="rgb(206,152,27)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (4 samples, 1.33%)</title><rect x="32.3333%" y="1492" width="1.3333%" height="15" fill="rgb(240,77,30)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (4 samples, 1.33%)</title><rect x="32.3333%" y="1508" width="1.3333%" height="15" fill="rgb(231,5,3)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (4 samples, 1.33%)</title><rect x="32.3333%" y="1524" width="1.3333%" height="15" fill="rgb(207,226,32)" fg:x="97" fg:w="4"/><text x="32.5833%" y="1534.50"></text></g><g><title>filter_field_decorator_info_by_field (pydantic/_internal/_generate_schema.py:164) (1 samples, 0.33%)</title><rect x="33.3333%" y="1540" width="0.3333%" height="15" fill="rgb(222,207,47)" fg:x="100" fg:w="1"/><text x="33.5833%" y="1550.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.33%)</title><rect x="34.0000%" y="2116" width="0.3333%" height="15" fill="rgb(229,115,45)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2126.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.33%)</title><rect x="34.0000%" y="2132" width="0.3333%" height="15" fill="rgb(224,191,6)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2142.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.33%)</title><rect x="34.0000%" y="2148" width="0.3333%" height="15" fill="rgb(230,227,24)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2158.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="34.0000%" y="2164" width="0.3333%" height="15" fill="rgb(228,80,19)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2174.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.33%)</title><rect x="34.0000%" y="2180" width="0.3333%" height="15" fill="rgb(247,229,0)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2190.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.33%)</title><rect x="34.0000%" y="2196" width="0.3333%" height="15" fill="rgb(237,194,15)" fg:x="102" fg:w="1"/><text x="34.2500%" y="2206.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.33%)</title><rect x="34.3333%" y="2116" width="0.3333%" height="15" fill="rgb(219,203,20)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2126.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.33%)</title><rect x="34.3333%" y="2132" width="0.3333%" height="15" fill="rgb(234,128,8)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2142.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.33%)</title><rect x="34.3333%" y="2148" width="0.3333%" height="15" fill="rgb(248,202,8)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2158.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="34.3333%" y="2164" width="0.3333%" height="15" fill="rgb(206,104,37)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2174.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="34.3333%" y="2180" width="0.3333%" height="15" fill="rgb(223,8,27)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2190.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.33%)</title><rect x="34.3333%" y="2196" width="0.3333%" height="15" fill="rgb(216,217,28)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2206.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.33%)</title><rect x="34.3333%" y="2212" width="0.3333%" height="15" fill="rgb(249,199,1)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2222.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.33%)</title><rect x="34.3333%" y="2228" width="0.3333%" height="15" fill="rgb(240,85,17)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2238.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.33%)</title><rect x="34.3333%" y="2244" width="0.3333%" height="15" fill="rgb(206,108,45)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2254.50"></text></g><g><title>_post_process_generated_schema (pydantic/_internal/_generate_schema.py:721) (1 samples, 0.33%)</title><rect x="34.3333%" y="2260" width="0.3333%" height="15" fill="rgb(245,210,41)" fg:x="103" fg:w="1"/><text x="34.5833%" y="2270.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="34.6667%" y="2116" width="0.3333%" height="15" fill="rgb(206,13,37)" fg:x="104" fg:w="1"/><text x="34.9167%" y="2126.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.33%)</title><rect x="34.6667%" y="2132" width="0.3333%" height="15" fill="rgb(250,61,18)" fg:x="104" fg:w="1"/><text x="34.9167%" y="2142.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (5 samples, 1.67%)</title><rect x="33.6667%" y="1540" width="1.6667%" height="15" fill="rgb(235,172,48)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (5 samples, 1.67%)</title><rect x="33.6667%" y="1556" width="1.6667%" height="15" fill="rgb(249,201,17)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="33.6667%" y="1572" width="1.6667%" height="15" fill="rgb(219,208,6)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="33.6667%" y="1588" width="1.6667%" height="15" fill="rgb(248,31,23)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="33.6667%" y="1604" width="1.6667%" height="15" fill="rgb(245,15,42)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.67%)</title><rect x="33.6667%" y="1620" width="1.6667%" height="15" fill="rgb(222,217,39)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (5 samples, 1.67%)</title><rect x="33.6667%" y="1636" width="1.6667%" height="15" fill="rgb(210,219,27)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (5 samples, 1.67%)</title><rect x="33.6667%" y="1652" width="1.6667%" height="15" fill="rgb(252,166,36)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="33.6667%" y="1668" width="1.6667%" height="15" fill="rgb(245,132,34)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (5 samples, 1.67%)</title><rect x="33.6667%" y="1684" width="1.6667%" height="15" fill="rgb(236,54,3)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (5 samples, 1.67%)</title><rect x="33.6667%" y="1700" width="1.6667%" height="15" fill="rgb(241,173,43)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.67%)</title><rect x="33.6667%" y="1716" width="1.6667%" height="15" fill="rgb(215,190,9)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="33.6667%" y="1732" width="1.6667%" height="15" fill="rgb(242,101,16)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="33.6667%" y="1748" width="1.6667%" height="15" fill="rgb(223,190,21)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (5 samples, 1.67%)</title><rect x="33.6667%" y="1764" width="1.6667%" height="15" fill="rgb(215,228,25)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (5 samples, 1.67%)</title><rect x="33.6667%" y="1780" width="1.6667%" height="15" fill="rgb(225,36,22)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (5 samples, 1.67%)</title><rect x="33.6667%" y="1796" width="1.6667%" height="15" fill="rgb(251,106,46)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (5 samples, 1.67%)</title><rect x="33.6667%" y="1812" width="1.6667%" height="15" fill="rgb(208,90,1)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1822.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (5 samples, 1.67%)</title><rect x="33.6667%" y="1828" width="1.6667%" height="15" fill="rgb(243,10,4)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1838.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.67%)</title><rect x="33.6667%" y="1844" width="1.6667%" height="15" fill="rgb(212,137,27)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1854.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (5 samples, 1.67%)</title><rect x="33.6667%" y="1860" width="1.6667%" height="15" fill="rgb(231,220,49)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1870.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="33.6667%" y="1876" width="1.6667%" height="15" fill="rgb(237,96,20)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1886.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="33.6667%" y="1892" width="1.6667%" height="15" fill="rgb(239,229,30)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1902.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.67%)</title><rect x="33.6667%" y="1908" width="1.6667%" height="15" fill="rgb(219,65,33)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1918.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (5 samples, 1.67%)</title><rect x="33.6667%" y="1924" width="1.6667%" height="15" fill="rgb(243,134,7)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1934.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (5 samples, 1.67%)</title><rect x="33.6667%" y="1940" width="1.6667%" height="15" fill="rgb(216,177,54)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1950.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="33.6667%" y="1956" width="1.6667%" height="15" fill="rgb(211,160,20)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1966.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (5 samples, 1.67%)</title><rect x="33.6667%" y="1972" width="1.6667%" height="15" fill="rgb(239,85,39)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1982.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (5 samples, 1.67%)</title><rect x="33.6667%" y="1988" width="1.6667%" height="15" fill="rgb(232,125,22)" fg:x="101" fg:w="5"/><text x="33.9167%" y="1998.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.67%)</title><rect x="33.6667%" y="2004" width="1.6667%" height="15" fill="rgb(244,57,34)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2014.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="33.6667%" y="2020" width="1.6667%" height="15" fill="rgb(214,203,32)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2030.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="33.6667%" y="2036" width="1.6667%" height="15" fill="rgb(207,58,43)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2046.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (5 samples, 1.67%)</title><rect x="33.6667%" y="2052" width="1.6667%" height="15" fill="rgb(215,193,15)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2062.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (5 samples, 1.67%)</title><rect x="33.6667%" y="2068" width="1.6667%" height="15" fill="rgb(232,15,44)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2078.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (5 samples, 1.67%)</title><rect x="33.6667%" y="2084" width="1.6667%" height="15" fill="rgb(212,3,48)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2094.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (5 samples, 1.67%)</title><rect x="33.6667%" y="2100" width="1.6667%" height="15" fill="rgb(218,128,7)" fg:x="101" fg:w="5"/><text x="33.9167%" y="2110.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.33%)</title><rect x="35.0000%" y="2116" width="0.3333%" height="15" fill="rgb(226,216,39)" fg:x="105" fg:w="1"/><text x="35.2500%" y="2126.50"></text></g><g><title>get_args (pydantic/_internal/_generics.py:207) (1 samples, 0.33%)</title><rect x="35.0000%" y="2132" width="0.3333%" height="15" fill="rgb(243,47,51)" fg:x="105" fg:w="1"/><text x="35.2500%" y="2142.50"></text></g><g><title>__getattr__ (typing.py:706) (1 samples, 0.33%)</title><rect x="35.0000%" y="2148" width="0.3333%" height="15" fill="rgb(241,183,40)" fg:x="105" fg:w="1"/><text x="35.2500%" y="2158.50"></text></g><g><title>_is_dunder (typing.py:665) (1 samples, 0.33%)</title><rect x="35.0000%" y="2164" width="0.3333%" height="15" fill="rgb(231,217,32)" fg:x="105" fg:w="1"/><text x="35.2500%" y="2174.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (6 samples, 2.00%)</title><rect x="33.6667%" y="1428" width="2.0000%" height="15" fill="rgb(229,61,38)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1438.50">g..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (6 samples, 2.00%)</title><rect x="33.6667%" y="1444" width="2.0000%" height="15" fill="rgb(225,210,5)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1454.50">_..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (6 samples, 2.00%)</title><rect x="33.6667%" y="1460" width="2.0000%" height="15" fill="rgb(231,79,45)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1470.50">_..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (6 samples, 2.00%)</title><rect x="33.6667%" y="1476" width="2.0000%" height="15" fill="rgb(224,100,7)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1486.50">m..</text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (6 samples, 2.00%)</title><rect x="33.6667%" y="1492" width="2.0000%" height="15" fill="rgb(241,198,18)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1502.50">_..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (6 samples, 2.00%)</title><rect x="33.6667%" y="1508" width="2.0000%" height="15" fill="rgb(252,97,53)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1518.50">_..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (6 samples, 2.00%)</title><rect x="33.6667%" y="1524" width="2.0000%" height="15" fill="rgb(220,88,7)" fg:x="101" fg:w="6"/><text x="33.9167%" y="1534.50">n..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (1 samples, 0.33%)</title><rect x="35.3333%" y="1540" width="0.3333%" height="15" fill="rgb(213,176,14)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (1 samples, 0.33%)</title><rect x="35.3333%" y="1556" width="0.3333%" height="15" fill="rgb(246,73,7)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.33%)</title><rect x="35.3333%" y="1572" width="0.3333%" height="15" fill="rgb(245,64,36)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="35.3333%" y="1588" width="0.3333%" height="15" fill="rgb(245,80,10)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="35.3333%" y="1604" width="0.3333%" height="15" fill="rgb(232,107,50)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.33%)</title><rect x="35.3333%" y="1620" width="0.3333%" height="15" fill="rgb(253,3,0)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.33%)</title><rect x="35.3333%" y="1636" width="0.3333%" height="15" fill="rgb(212,99,53)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.33%)</title><rect x="35.3333%" y="1652" width="0.3333%" height="15" fill="rgb(249,111,54)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.33%)</title><rect x="35.3333%" y="1668" width="0.3333%" height="15" fill="rgb(249,55,30)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1678.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="35.3333%" y="1684" width="0.3333%" height="15" fill="rgb(237,47,42)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1694.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="35.3333%" y="1700" width="0.3333%" height="15" fill="rgb(211,20,18)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1710.50"></text></g><g><title>lenient_issubclass (pydantic/_internal/_utils.py:74) (1 samples, 0.33%)</title><rect x="35.3333%" y="1716" width="0.3333%" height="15" fill="rgb(231,203,46)" fg:x="106" fg:w="1"/><text x="35.5833%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (7 samples, 2.33%)</title><rect x="33.6667%" y="1348" width="2.3333%" height="15" fill="rgb(237,142,3)" fg:x="101" fg:w="7"/><text x="33.9167%" y="1358.50">_..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (7 samples, 2.33%)</title><rect x="33.6667%" y="1364" width="2.3333%" height="15" fill="rgb(241,107,1)" fg:x="101" fg:w="7"/><text x="33.9167%" y="1374.50">_..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (7 samples, 2.33%)</title><rect x="33.6667%" y="1380" width="2.3333%" height="15" fill="rgb(229,83,13)" fg:x="101" fg:w="7"/><text x="33.9167%" y="1390.50">m..</text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (7 samples, 2.33%)</title><rect x="33.6667%" y="1396" width="2.3333%" height="15" fill="rgb(241,91,40)" fg:x="101" fg:w="7"/><text x="33.9167%" y="1406.50">_..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (7 samples, 2.33%)</title><rect x="33.6667%" y="1412" width="2.3333%" height="15" fill="rgb(225,3,45)" fg:x="101" fg:w="7"/><text x="33.9167%" y="1422.50">_..</text></g><g><title>nullable_schema (pydantic_core/core_schema.py:2291) (1 samples, 0.33%)</title><rect x="35.6667%" y="1428" width="0.3333%" height="15" fill="rgb(244,223,14)" fg:x="107" fg:w="1"/><text x="35.9167%" y="1438.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (8 samples, 2.67%)</title><rect x="33.6667%" y="1332" width="2.6667%" height="15" fill="rgb(224,124,37)" fg:x="101" fg:w="8"/><text x="33.9167%" y="1342.50">in..</text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.33%)</title><rect x="36.0000%" y="1348" width="0.3333%" height="15" fill="rgb(251,171,30)" fg:x="108" fg:w="1"/><text x="36.2500%" y="1358.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.33%)</title><rect x="36.0000%" y="1364" width="0.3333%" height="15" fill="rgb(236,46,54)" fg:x="108" fg:w="1"/><text x="36.2500%" y="1374.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.33%)</title><rect x="36.0000%" y="1380" width="0.3333%" height="15" fill="rgb(245,213,5)" fg:x="108" fg:w="1"/><text x="36.2500%" y="1390.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.33%)</title><rect x="36.0000%" y="1396" width="0.3333%" height="15" fill="rgb(230,144,27)" fg:x="108" fg:w="1"/><text x="36.2500%" y="1406.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.33%)</title><rect x="36.0000%" y="1412" width="0.3333%" height="15" fill="rgb(220,86,6)" fg:x="108" fg:w="1"/><text x="36.2500%" y="1422.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (19 samples, 6.33%)</title><rect x="30.3333%" y="1044" width="6.3333%" height="15" fill="rgb(240,20,13)" fg:x="91" fg:w="19"/><text x="30.5833%" y="1054.50">inner_ha..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (19 samples, 6.33%)</title><rect x="30.3333%" y="1060" width="6.3333%" height="15" fill="rgb(217,89,34)" fg:x="91" fg:w="19"/><text x="30.5833%" y="1070.50">_generat..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (19 samples, 6.33%)</title><rect x="30.3333%" y="1076" width="6.3333%" height="15" fill="rgb(229,13,5)" fg:x="91" fg:w="19"/><text x="30.5833%" y="1086.50">_generat..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (19 samples, 6.33%)</title><rect x="30.3333%" y="1092" width="6.3333%" height="15" fill="rgb(244,67,35)" fg:x="91" fg:w="19"/><text x="30.5833%" y="1102.50">match_ty..</text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (18 samples, 6.00%)</title><rect x="30.6667%" y="1108" width="6.0000%" height="15" fill="rgb(221,40,2)" fg:x="92" fg:w="18"/><text x="30.9167%" y="1118.50">_match_g..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (18 samples, 6.00%)</title><rect x="30.6667%" y="1124" width="6.0000%" height="15" fill="rgb(237,157,21)" fg:x="92" fg:w="18"/><text x="30.9167%" y="1134.50">_union_s..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (18 samples, 6.00%)</title><rect x="30.6667%" y="1140" width="6.0000%" height="15" fill="rgb(222,94,11)" fg:x="92" fg:w="18"/><text x="30.9167%" y="1150.50">generate..</text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (9 samples, 3.00%)</title><rect x="33.6667%" y="1156" width="3.0000%" height="15" fill="rgb(249,113,6)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1166.50">_ge..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (9 samples, 3.00%)</title><rect x="33.6667%" y="1172" width="3.0000%" height="15" fill="rgb(238,137,36)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1182.50">__g..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (9 samples, 3.00%)</title><rect x="33.6667%" y="1188" width="3.0000%" height="15" fill="rgb(210,102,26)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1198.50">__c..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (9 samples, 3.00%)</title><rect x="33.6667%" y="1204" width="3.0000%" height="15" fill="rgb(218,30,30)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1214.50">_ge..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (9 samples, 3.00%)</title><rect x="33.6667%" y="1220" width="3.0000%" height="15" fill="rgb(214,67,26)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1230.50">_ge..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (9 samples, 3.00%)</title><rect x="33.6667%" y="1236" width="3.0000%" height="15" fill="rgb(251,9,53)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1246.50">_mo..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (9 samples, 3.00%)</title><rect x="33.6667%" y="1252" width="3.0000%" height="15" fill="rgb(228,204,25)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1262.50"><di..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (9 samples, 3.00%)</title><rect x="33.6667%" y="1268" width="3.0000%" height="15" fill="rgb(207,153,8)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1278.50">_ge..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (9 samples, 3.00%)</title><rect x="33.6667%" y="1284" width="3.0000%" height="15" fill="rgb(242,9,16)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1294.50">_co..</text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (9 samples, 3.00%)</title><rect x="33.6667%" y="1300" width="3.0000%" height="15" fill="rgb(217,211,10)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1310.50">_ap..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (9 samples, 3.00%)</title><rect x="33.6667%" y="1316" width="3.0000%" height="15" fill="rgb(219,228,52)" fg:x="101" fg:w="9"/><text x="33.9167%" y="1326.50">__c..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (1 samples, 0.33%)</title><rect x="36.3333%" y="1332" width="0.3333%" height="15" fill="rgb(231,92,29)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1342.50"></text></g><g><title><lambda> (pydantic/_internal/_generate_schema.py:1825) (1 samples, 0.33%)</title><rect x="36.3333%" y="1348" width="0.3333%" height="15" fill="rgb(232,8,23)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1358.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.33%)</title><rect x="36.3333%" y="1364" width="0.3333%" height="15" fill="rgb(216,211,34)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1374.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.33%)</title><rect x="36.3333%" y="1380" width="0.3333%" height="15" fill="rgb(236,151,0)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1390.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="36.3333%" y="1396" width="0.3333%" height="15" fill="rgb(209,168,3)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1406.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="36.3333%" y="1412" width="0.3333%" height="15" fill="rgb(208,129,28)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1422.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.33%)</title><rect x="36.3333%" y="1428" width="0.3333%" height="15" fill="rgb(229,78,22)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1438.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.33%)</title><rect x="36.3333%" y="1444" width="0.3333%" height="15" fill="rgb(228,187,13)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1454.50"></text></g><g><title>ip_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:598) (1 samples, 0.33%)</title><rect x="36.3333%" y="1460" width="0.3333%" height="15" fill="rgb(240,119,24)" fg:x="109" fg:w="1"/><text x="36.5833%" y="1470.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.33%)</title><rect x="36.6667%" y="1540" width="0.3333%" height="15" fill="rgb(209,194,42)" fg:x="110" fg:w="1"/><text x="36.9167%" y="1550.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.33%)</title><rect x="37.0000%" y="1540" width="0.3333%" height="15" fill="rgb(247,200,46)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.33%)</title><rect x="37.0000%" y="1556" width="0.3333%" height="15" fill="rgb(218,76,16)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.33%)</title><rect x="37.0000%" y="1572" width="0.3333%" height="15" fill="rgb(225,21,48)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.33%)</title><rect x="37.0000%" y="1588" width="0.3333%" height="15" fill="rgb(239,223,50)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.33%)</title><rect x="37.0000%" y="1604" width="0.3333%" height="15" fill="rgb(244,45,21)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.33%)</title><rect x="37.0000%" y="1620" width="0.3333%" height="15" fill="rgb(232,33,43)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.33%)</title><rect x="37.0000%" y="1636" width="0.3333%" height="15" fill="rgb(209,8,3)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.33%)</title><rect x="37.0000%" y="1652" width="0.3333%" height="15" fill="rgb(214,25,53)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.33%)</title><rect x="37.0000%" y="1668" width="0.3333%" height="15" fill="rgb(254,186,54)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.33%)</title><rect x="37.0000%" y="1684" width="0.3333%" height="15" fill="rgb(208,174,49)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1694.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.33%)</title><rect x="37.0000%" y="1700" width="0.3333%" height="15" fill="rgb(233,191,51)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1710.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.33%)</title><rect x="37.0000%" y="1716" width="0.3333%" height="15" fill="rgb(222,134,10)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1726.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.33%)</title><rect x="37.0000%" y="1732" width="0.3333%" height="15" fill="rgb(230,226,20)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1742.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.33%)</title><rect x="37.0000%" y="1748" width="0.3333%" height="15" fill="rgb(251,111,25)" fg:x="111" fg:w="1"/><text x="37.2500%" y="1758.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (24 samples, 8.00%)</title><rect x="29.6667%" y="868" width="8.0000%" height="15" fill="rgb(224,40,46)" fg:x="89" fg:w="24"/><text x="29.9167%" y="878.50">__get_pydan..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (23 samples, 7.67%)</title><rect x="30.0000%" y="884" width="7.6667%" height="15" fill="rgb(236,108,47)" fg:x="90" fg:w="23"/><text x="30.2500%" y="894.50">__call__ (..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (23 samples, 7.67%)</title><rect x="30.0000%" y="900" width="7.6667%" height="15" fill="rgb(234,93,0)" fg:x="90" fg:w="23"/><text x="30.2500%" y="910.50">generate_s..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (23 samples, 7.67%)</title><rect x="30.0000%" y="916" width="7.6667%" height="15" fill="rgb(224,213,32)" fg:x="90" fg:w="23"/><text x="30.2500%" y="926.50">_generate_..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (23 samples, 7.67%)</title><rect x="30.0000%" y="932" width="7.6667%" height="15" fill="rgb(251,11,48)" fg:x="90" fg:w="23"/><text x="30.2500%" y="942.50">_generate_..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (23 samples, 7.67%)</title><rect x="30.0000%" y="948" width="7.6667%" height="15" fill="rgb(236,173,5)" fg:x="90" fg:w="23"/><text x="30.2500%" y="958.50">_model_sch..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (22 samples, 7.33%)</title><rect x="30.3333%" y="964" width="7.3333%" height="15" fill="rgb(230,95,12)" fg:x="91" fg:w="22"/><text x="30.5833%" y="974.50"><dictcomp>..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (22 samples, 7.33%)</title><rect x="30.3333%" y="980" width="7.3333%" height="15" fill="rgb(232,209,1)" fg:x="91" fg:w="22"/><text x="30.5833%" y="990.50">_generate_..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (22 samples, 7.33%)</title><rect x="30.3333%" y="996" width="7.3333%" height="15" fill="rgb(232,6,1)" fg:x="91" fg:w="22"/><text x="30.5833%" y="1006.50">_common_fi..</text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (22 samples, 7.33%)</title><rect x="30.3333%" y="1012" width="7.3333%" height="15" fill="rgb(210,224,50)" fg:x="91" fg:w="22"/><text x="30.5833%" y="1022.50">_apply_ann..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (22 samples, 7.33%)</title><rect x="30.3333%" y="1028" width="7.3333%" height="15" fill="rgb(228,127,35)" fg:x="91" fg:w="22"/><text x="30.5833%" y="1038.50">__call__ (..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (3 samples, 1.00%)</title><rect x="36.6667%" y="1044" width="1.0000%" height="15" fill="rgb(245,102,45)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1054.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (3 samples, 1.00%)</title><rect x="36.6667%" y="1060" width="1.0000%" height="15" fill="rgb(214,1,49)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1070.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 1.00%)</title><rect x="36.6667%" y="1076" width="1.0000%" height="15" fill="rgb(226,163,40)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1086.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 1.00%)</title><rect x="36.6667%" y="1092" width="1.0000%" height="15" fill="rgb(239,212,28)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1102.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 1.00%)</title><rect x="36.6667%" y="1108" width="1.0000%" height="15" fill="rgb(220,20,13)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1118.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 1.00%)</title><rect x="36.6667%" y="1124" width="1.0000%" height="15" fill="rgb(210,164,35)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1134.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="36.6667%" y="1140" width="1.0000%" height="15" fill="rgb(248,109,41)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1150.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="36.6667%" y="1156" width="1.0000%" height="15" fill="rgb(238,23,50)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="36.6667%" y="1172" width="1.0000%" height="15" fill="rgb(211,48,49)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1182.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 1.00%)</title><rect x="36.6667%" y="1188" width="1.0000%" height="15" fill="rgb(223,36,21)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1198.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 1.00%)</title><rect x="36.6667%" y="1204" width="1.0000%" height="15" fill="rgb(207,123,46)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1214.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 1.00%)</title><rect x="36.6667%" y="1220" width="1.0000%" height="15" fill="rgb(240,218,32)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1230.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 1.00%)</title><rect x="36.6667%" y="1236" width="1.0000%" height="15" fill="rgb(252,5,43)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1246.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 1.00%)</title><rect x="36.6667%" y="1252" width="1.0000%" height="15" fill="rgb(252,84,19)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1262.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="36.6667%" y="1268" width="1.0000%" height="15" fill="rgb(243,152,39)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1278.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 1.00%)</title><rect x="36.6667%" y="1284" width="1.0000%" height="15" fill="rgb(234,160,15)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="36.6667%" y="1300" width="1.0000%" height="15" fill="rgb(237,34,20)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="36.6667%" y="1316" width="1.0000%" height="15" fill="rgb(229,97,13)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="36.6667%" y="1332" width="1.0000%" height="15" fill="rgb(234,71,50)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 1.00%)</title><rect x="36.6667%" y="1348" width="1.0000%" height="15" fill="rgb(253,155,4)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 1.00%)</title><rect x="36.6667%" y="1364" width="1.0000%" height="15" fill="rgb(222,185,37)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 1.00%)</title><rect x="36.6667%" y="1380" width="1.0000%" height="15" fill="rgb(251,177,13)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 1.00%)</title><rect x="36.6667%" y="1396" width="1.0000%" height="15" fill="rgb(250,179,40)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 1.00%)</title><rect x="36.6667%" y="1412" width="1.0000%" height="15" fill="rgb(242,44,2)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="36.6667%" y="1428" width="1.0000%" height="15" fill="rgb(216,177,13)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="36.6667%" y="1444" width="1.0000%" height="15" fill="rgb(216,106,43)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="36.6667%" y="1460" width="1.0000%" height="15" fill="rgb(216,183,2)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 1.00%)</title><rect x="36.6667%" y="1476" width="1.0000%" height="15" fill="rgb(249,75,3)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 1.00%)</title><rect x="36.6667%" y="1492" width="1.0000%" height="15" fill="rgb(219,67,39)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 1.00%)</title><rect x="36.6667%" y="1508" width="1.0000%" height="15" fill="rgb(253,228,2)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 1.00%)</title><rect x="36.6667%" y="1524" width="1.0000%" height="15" fill="rgb(235,138,27)" fg:x="110" fg:w="3"/><text x="36.9167%" y="1534.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="37.3333%" y="1540" width="0.3333%" height="15" fill="rgb(236,97,51)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1550.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.33%)</title><rect x="37.3333%" y="1556" width="0.3333%" height="15" fill="rgb(240,80,30)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1566.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.33%)</title><rect x="37.3333%" y="1572" width="0.3333%" height="15" fill="rgb(230,178,19)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1582.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.33%)</title><rect x="37.3333%" y="1588" width="0.3333%" height="15" fill="rgb(210,190,27)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1598.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="37.3333%" y="1604" width="0.3333%" height="15" fill="rgb(222,107,31)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1614.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.33%)</title><rect x="37.3333%" y="1620" width="0.3333%" height="15" fill="rgb(216,127,34)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1630.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.33%)</title><rect x="37.3333%" y="1636" width="0.3333%" height="15" fill="rgb(234,116,52)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1646.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.33%)</title><rect x="37.3333%" y="1652" width="0.3333%" height="15" fill="rgb(222,124,15)" fg:x="112" fg:w="1"/><text x="37.5833%" y="1662.50"></text></g><g><title>apply_discriminators (pydantic/_internal/_discriminated_union.py:39) (1 samples, 0.33%)</title><rect x="37.6667%" y="884" width="0.3333%" height="15" fill="rgb(231,179,28)" fg:x="113" fg:w="1"/><text x="37.9167%" y="894.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (1 samples, 0.33%)</title><rect x="37.6667%" y="900" width="0.3333%" height="15" fill="rgb(226,93,45)" fg:x="113" fg:w="1"/><text x="37.9167%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (1 samples, 0.33%)</title><rect x="37.6667%" y="916" width="0.3333%" height="15" fill="rgb(215,8,51)" fg:x="113" fg:w="1"/><text x="37.9167%" y="926.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="932" width="0.3333%" height="15" fill="rgb(223,106,5)" fg:x="113" fg:w="1"/><text x="37.9167%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="948" width="0.3333%" height="15" fill="rgb(250,191,5)" fg:x="113" fg:w="1"/><text x="37.9167%" y="958.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="964" width="0.3333%" height="15" fill="rgb(242,132,44)" fg:x="113" fg:w="1"/><text x="37.9167%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="980" width="0.3333%" height="15" fill="rgb(251,152,29)" fg:x="113" fg:w="1"/><text x="37.9167%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="996" width="0.3333%" height="15" fill="rgb(218,179,5)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1012" width="0.3333%" height="15" fill="rgb(227,67,19)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1022.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1028" width="0.3333%" height="15" fill="rgb(233,119,31)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1044" width="0.3333%" height="15" fill="rgb(241,120,22)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="37.6667%" y="1060" width="0.3333%" height="15" fill="rgb(224,102,30)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1076" width="0.3333%" height="15" fill="rgb(210,164,37)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1086.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1092" width="0.3333%" height="15" fill="rgb(226,191,16)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1108" width="0.3333%" height="15" fill="rgb(214,40,45)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1124" width="0.3333%" height="15" fill="rgb(244,29,26)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1140" width="0.3333%" height="15" fill="rgb(216,16,5)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1150.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1156" width="0.3333%" height="15" fill="rgb(249,76,35)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1172" width="0.3333%" height="15" fill="rgb(207,11,44)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1188" width="0.3333%" height="15" fill="rgb(228,190,49)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1204" width="0.3333%" height="15" fill="rgb(214,173,12)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1214.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1220" width="0.3333%" height="15" fill="rgb(218,26,35)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1236" width="0.3333%" height="15" fill="rgb(220,200,19)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1246.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1252" width="0.3333%" height="15" fill="rgb(239,95,49)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1262.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1268" width="0.3333%" height="15" fill="rgb(235,85,53)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1278.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1284" width="0.3333%" height="15" fill="rgb(233,133,31)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1294.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1300" width="0.3333%" height="15" fill="rgb(218,25,20)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1310.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="37.6667%" y="1316" width="0.3333%" height="15" fill="rgb(252,210,38)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1326.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1332" width="0.3333%" height="15" fill="rgb(242,134,21)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1342.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1348" width="0.3333%" height="15" fill="rgb(213,28,48)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1358.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1364" width="0.3333%" height="15" fill="rgb(250,196,2)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1374.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1380" width="0.3333%" height="15" fill="rgb(227,5,17)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1390.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1396" width="0.3333%" height="15" fill="rgb(221,226,24)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1406.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1412" width="0.3333%" height="15" fill="rgb(211,5,48)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1422.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1428" width="0.3333%" height="15" fill="rgb(219,150,6)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1438.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1444" width="0.3333%" height="15" fill="rgb(251,46,16)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1454.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1460" width="0.3333%" height="15" fill="rgb(220,204,40)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1470.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1476" width="0.3333%" height="15" fill="rgb(211,85,2)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1486.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1492" width="0.3333%" height="15" fill="rgb(229,17,7)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1502.50"></text></g><g><title>handle_list_schema (pydantic/_internal/_core_utils.py:256) (1 samples, 0.33%)</title><rect x="37.6667%" y="1508" width="0.3333%" height="15" fill="rgb(239,72,28)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1518.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1524" width="0.3333%" height="15" fill="rgb(230,47,54)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1534.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1540" width="0.3333%" height="15" fill="rgb(214,50,8)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1550.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1556" width="0.3333%" height="15" fill="rgb(216,198,43)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1566.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.33%)</title><rect x="37.6667%" y="1572" width="0.3333%" height="15" fill="rgb(234,20,35)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1582.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1588" width="0.3333%" height="15" fill="rgb(254,45,19)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1598.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1604" width="0.3333%" height="15" fill="rgb(219,14,44)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1614.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1620" width="0.3333%" height="15" fill="rgb(217,220,26)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1630.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1636" width="0.3333%" height="15" fill="rgb(213,158,28)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1646.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1652" width="0.3333%" height="15" fill="rgb(252,51,52)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1662.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1668" width="0.3333%" height="15" fill="rgb(246,89,16)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1678.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1684" width="0.3333%" height="15" fill="rgb(216,158,49)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1694.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="37.6667%" y="1700" width="0.3333%" height="15" fill="rgb(236,107,19)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1710.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1716" width="0.3333%" height="15" fill="rgb(228,185,30)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1726.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1732" width="0.3333%" height="15" fill="rgb(246,134,8)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1742.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1748" width="0.3333%" height="15" fill="rgb(214,143,50)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1758.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1764" width="0.3333%" height="15" fill="rgb(228,75,8)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1774.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1780" width="0.3333%" height="15" fill="rgb(207,175,4)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1790.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1796" width="0.3333%" height="15" fill="rgb(205,108,24)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1806.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1812" width="0.3333%" height="15" fill="rgb(244,120,49)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1822.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1828" width="0.3333%" height="15" fill="rgb(223,47,38)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1838.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1844" width="0.3333%" height="15" fill="rgb(229,179,11)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1854.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1860" width="0.3333%" height="15" fill="rgb(231,122,1)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1870.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1876" width="0.3333%" height="15" fill="rgb(245,119,9)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1886.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.33%)</title><rect x="37.6667%" y="1892" width="0.3333%" height="15" fill="rgb(241,163,25)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1902.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1908" width="0.3333%" height="15" fill="rgb(217,214,3)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1918.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1924" width="0.3333%" height="15" fill="rgb(240,86,28)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1934.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="1940" width="0.3333%" height="15" fill="rgb(215,47,9)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1950.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="37.6667%" y="1956" width="0.3333%" height="15" fill="rgb(252,25,45)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1966.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="1972" width="0.3333%" height="15" fill="rgb(251,164,9)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1982.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="1988" width="0.3333%" height="15" fill="rgb(233,194,0)" fg:x="113" fg:w="1"/><text x="37.9167%" y="1998.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="37.6667%" y="2004" width="0.3333%" height="15" fill="rgb(249,111,24)" fg:x="113" fg:w="1"/><text x="37.9167%" y="2014.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="37.6667%" y="2020" width="0.3333%" height="15" fill="rgb(250,223,3)" fg:x="113" fg:w="1"/><text x="37.9167%" y="2030.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="37.6667%" y="2036" width="0.3333%" height="15" fill="rgb(236,178,37)" fg:x="113" fg:w="1"/><text x="37.9167%" y="2046.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="37.6667%" y="2052" width="0.3333%" height="15" fill="rgb(241,158,50)" fg:x="113" fg:w="1"/><text x="37.9167%" y="2062.50"></text></g><g><title>collect_invalid_schemas (pydantic/_internal/_core_utils.py:165) (1 samples, 0.33%)</title><rect x="38.0000%" y="884" width="0.3333%" height="15" fill="rgb(213,121,41)" fg:x="114" fg:w="1"/><text x="38.2500%" y="894.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (1 samples, 0.33%)</title><rect x="38.0000%" y="900" width="0.3333%" height="15" fill="rgb(240,92,3)" fg:x="114" fg:w="1"/><text x="38.2500%" y="910.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="916" width="0.3333%" height="15" fill="rgb(205,123,3)" fg:x="114" fg:w="1"/><text x="38.2500%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="932" width="0.3333%" height="15" fill="rgb(205,97,47)" fg:x="114" fg:w="1"/><text x="38.2500%" y="942.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="948" width="0.3333%" height="15" fill="rgb(247,152,14)" fg:x="114" fg:w="1"/><text x="38.2500%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="964" width="0.3333%" height="15" fill="rgb(248,195,53)" fg:x="114" fg:w="1"/><text x="38.2500%" y="974.50"></text></g><g><title>handle_definitions_schema (pydantic/_internal/_core_utils.py:228) (1 samples, 0.33%)</title><rect x="38.0000%" y="980" width="0.3333%" height="15" fill="rgb(226,201,16)" fg:x="114" fg:w="1"/><text x="38.2500%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="996" width="0.3333%" height="15" fill="rgb(205,98,0)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1006.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1012" width="0.3333%" height="15" fill="rgb(214,191,48)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="1028" width="0.3333%" height="15" fill="rgb(237,112,39)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1038.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="38.0000%" y="1044" width="0.3333%" height="15" fill="rgb(247,203,27)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="1060" width="0.3333%" height="15" fill="rgb(235,124,28)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1070.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1076" width="0.3333%" height="15" fill="rgb(208,207,46)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="1092" width="0.3333%" height="15" fill="rgb(234,176,4)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1102.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="38.0000%" y="1108" width="0.3333%" height="15" fill="rgb(230,133,28)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="1124" width="0.3333%" height="15" fill="rgb(211,137,40)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1134.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1140" width="0.3333%" height="15" fill="rgb(254,35,13)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="1156" width="0.3333%" height="15" fill="rgb(225,49,51)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="38.0000%" y="1172" width="0.3333%" height="15" fill="rgb(251,10,15)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="1188" width="0.3333%" height="15" fill="rgb(228,207,15)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1198.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1204" width="0.3333%" height="15" fill="rgb(241,99,19)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1214.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="1220" width="0.3333%" height="15" fill="rgb(207,104,49)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1230.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="38.0000%" y="1236" width="0.3333%" height="15" fill="rgb(234,99,18)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1246.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="1252" width="0.3333%" height="15" fill="rgb(213,191,49)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1262.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1268" width="0.3333%" height="15" fill="rgb(210,226,19)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1278.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="38.0000%" y="1284" width="0.3333%" height="15" fill="rgb(229,97,18)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1294.50"></text></g><g><title>handle_dict_schema (pydantic/_internal/_core_utils.py:284) (1 samples, 0.33%)</title><rect x="38.0000%" y="1300" width="0.3333%" height="15" fill="rgb(211,167,15)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1310.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="38.0000%" y="1316" width="0.3333%" height="15" fill="rgb(210,169,34)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1326.50"></text></g><g><title>_is_schema_valid (pydantic/_internal/_core_utils.py:168) (1 samples, 0.33%)</title><rect x="38.0000%" y="1332" width="0.3333%" height="15" fill="rgb(241,121,31)" fg:x="114" fg:w="1"/><text x="38.2500%" y="1342.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (4 samples, 1.33%)</title><rect x="38.3333%" y="916" width="1.3333%" height="15" fill="rgb(232,40,11)" fg:x="115" fg:w="4"/><text x="38.5833%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (4 samples, 1.33%)</title><rect x="38.3333%" y="932" width="1.3333%" height="15" fill="rgb(205,86,26)" fg:x="115" fg:w="4"/><text x="38.5833%" y="942.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (4 samples, 1.33%)</title><rect x="38.3333%" y="948" width="1.3333%" height="15" fill="rgb(231,126,28)" fg:x="115" fg:w="4"/><text x="38.5833%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (4 samples, 1.33%)</title><rect x="38.3333%" y="964" width="1.3333%" height="15" fill="rgb(219,221,18)" fg:x="115" fg:w="4"/><text x="38.5833%" y="974.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (4 samples, 1.33%)</title><rect x="38.3333%" y="980" width="1.3333%" height="15" fill="rgb(211,40,0)" fg:x="115" fg:w="4"/><text x="38.5833%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (4 samples, 1.33%)</title><rect x="38.3333%" y="996" width="1.3333%" height="15" fill="rgb(239,85,43)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1006.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (4 samples, 1.33%)</title><rect x="38.3333%" y="1012" width="1.3333%" height="15" fill="rgb(231,55,21)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (4 samples, 1.33%)</title><rect x="38.3333%" y="1028" width="1.3333%" height="15" fill="rgb(225,184,43)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1038.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (4 samples, 1.33%)</title><rect x="38.3333%" y="1044" width="1.3333%" height="15" fill="rgb(251,158,41)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (4 samples, 1.33%)</title><rect x="38.3333%" y="1060" width="1.3333%" height="15" fill="rgb(234,159,37)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1070.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (4 samples, 1.33%)</title><rect x="38.3333%" y="1076" width="1.3333%" height="15" fill="rgb(216,204,22)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (4 samples, 1.33%)</title><rect x="38.3333%" y="1092" width="1.3333%" height="15" fill="rgb(214,17,3)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1102.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (4 samples, 1.33%)</title><rect x="38.3333%" y="1108" width="1.3333%" height="15" fill="rgb(212,111,17)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (4 samples, 1.33%)</title><rect x="38.3333%" y="1124" width="1.3333%" height="15" fill="rgb(221,157,24)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1134.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (4 samples, 1.33%)</title><rect x="38.3333%" y="1140" width="1.3333%" height="15" fill="rgb(252,16,13)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (4 samples, 1.33%)</title><rect x="38.3333%" y="1156" width="1.3333%" height="15" fill="rgb(221,62,2)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (4 samples, 1.33%)</title><rect x="38.3333%" y="1172" width="1.3333%" height="15" fill="rgb(247,87,22)" fg:x="115" fg:w="4"/><text x="38.5833%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (3 samples, 1.00%)</title><rect x="38.6667%" y="1188" width="1.0000%" height="15" fill="rgb(215,73,9)" fg:x="116" fg:w="3"/><text x="38.9167%" y="1198.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.33%)</title><rect x="39.3333%" y="1204" width="0.3333%" height="15" fill="rgb(207,175,33)" fg:x="118" fg:w="1"/><text x="39.5833%" y="1214.50"></text></g><g><title>get_ref (pydantic/_internal/_core_utils.py:122) (1 samples, 0.33%)</title><rect x="39.3333%" y="1220" width="0.3333%" height="15" fill="rgb(243,129,54)" fg:x="118" fg:w="1"/><text x="39.5833%" y="1230.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (5 samples, 1.67%)</title><rect x="38.3333%" y="884" width="1.6667%" height="15" fill="rgb(227,119,45)" fg:x="115" fg:w="5"/><text x="38.5833%" y="894.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (5 samples, 1.67%)</title><rect x="38.3333%" y="900" width="1.6667%" height="15" fill="rgb(205,109,36)" fg:x="115" fg:w="5"/><text x="38.5833%" y="910.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="916" width="0.3333%" height="15" fill="rgb(205,6,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="932" width="0.3333%" height="15" fill="rgb(221,32,16)" fg:x="119" fg:w="1"/><text x="39.9167%" y="942.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="948" width="0.3333%" height="15" fill="rgb(228,144,50)" fg:x="119" fg:w="1"/><text x="39.9167%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="964" width="0.3333%" height="15" fill="rgb(229,201,53)" fg:x="119" fg:w="1"/><text x="39.9167%" y="974.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="980" width="0.3333%" height="15" fill="rgb(249,153,27)" fg:x="119" fg:w="1"/><text x="39.9167%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="996" width="0.3333%" height="15" fill="rgb(227,106,25)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1006.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1012" width="0.3333%" height="15" fill="rgb(230,65,29)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1028" width="0.3333%" height="15" fill="rgb(221,57,46)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1038.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="39.6667%" y="1044" width="0.3333%" height="15" fill="rgb(229,161,17)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1060" width="0.3333%" height="15" fill="rgb(222,213,11)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1070.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1076" width="0.3333%" height="15" fill="rgb(235,35,13)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1092" width="0.3333%" height="15" fill="rgb(233,158,34)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1102.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1108" width="0.3333%" height="15" fill="rgb(215,151,48)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1124" width="0.3333%" height="15" fill="rgb(229,84,14)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1134.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1140" width="0.3333%" height="15" fill="rgb(229,68,14)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1156" width="0.3333%" height="15" fill="rgb(243,106,26)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1172" width="0.3333%" height="15" fill="rgb(206,45,38)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1188" width="0.3333%" height="15" fill="rgb(226,6,15)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1198.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1204" width="0.3333%" height="15" fill="rgb(232,22,54)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1214.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1220" width="0.3333%" height="15" fill="rgb(229,222,32)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1230.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1236" width="0.3333%" height="15" fill="rgb(228,62,29)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1246.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1252" width="0.3333%" height="15" fill="rgb(251,103,34)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1262.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1268" width="0.3333%" height="15" fill="rgb(233,12,30)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1278.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1284" width="0.3333%" height="15" fill="rgb(238,52,0)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1294.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="39.6667%" y="1300" width="0.3333%" height="15" fill="rgb(223,98,5)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1310.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1316" width="0.3333%" height="15" fill="rgb(228,75,37)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1326.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1332" width="0.3333%" height="15" fill="rgb(205,115,49)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1342.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1348" width="0.3333%" height="15" fill="rgb(250,154,43)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1358.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1364" width="0.3333%" height="15" fill="rgb(226,43,29)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1374.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1380" width="0.3333%" height="15" fill="rgb(249,228,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1390.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1396" width="0.3333%" height="15" fill="rgb(216,79,43)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1406.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1412" width="0.3333%" height="15" fill="rgb(228,95,12)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1422.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1428" width="0.3333%" height="15" fill="rgb(249,221,15)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1438.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1444" width="0.3333%" height="15" fill="rgb(233,34,13)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1454.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1460" width="0.3333%" height="15" fill="rgb(214,103,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1470.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1476" width="0.3333%" height="15" fill="rgb(251,126,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1486.50"></text></g><g><title>handle_dict_schema (pydantic/_internal/_core_utils.py:284) (1 samples, 0.33%)</title><rect x="39.6667%" y="1492" width="0.3333%" height="15" fill="rgb(214,216,36)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1502.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1508" width="0.3333%" height="15" fill="rgb(220,221,8)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1518.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1524" width="0.3333%" height="15" fill="rgb(240,216,3)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1534.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1540" width="0.3333%" height="15" fill="rgb(232,218,17)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1550.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.33%)</title><rect x="39.6667%" y="1556" width="0.3333%" height="15" fill="rgb(229,163,45)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1566.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1572" width="0.3333%" height="15" fill="rgb(231,110,42)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1582.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1588" width="0.3333%" height="15" fill="rgb(208,170,48)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1598.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1604" width="0.3333%" height="15" fill="rgb(239,116,25)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1614.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1620" width="0.3333%" height="15" fill="rgb(219,200,50)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1630.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1636" width="0.3333%" height="15" fill="rgb(245,200,0)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1646.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1652" width="0.3333%" height="15" fill="rgb(245,119,33)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1662.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1668" width="0.3333%" height="15" fill="rgb(231,125,12)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1678.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="39.6667%" y="1684" width="0.3333%" height="15" fill="rgb(216,96,41)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1694.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1700" width="0.3333%" height="15" fill="rgb(248,43,45)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1710.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1716" width="0.3333%" height="15" fill="rgb(217,222,7)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1726.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1732" width="0.3333%" height="15" fill="rgb(233,28,6)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1742.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1748" width="0.3333%" height="15" fill="rgb(231,218,15)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1758.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1764" width="0.3333%" height="15" fill="rgb(226,171,48)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1774.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1780" width="0.3333%" height="15" fill="rgb(235,201,9)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1790.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1796" width="0.3333%" height="15" fill="rgb(217,80,15)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1806.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="39.6667%" y="1812" width="0.3333%" height="15" fill="rgb(219,152,8)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1822.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1828" width="0.3333%" height="15" fill="rgb(243,107,38)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1838.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1844" width="0.3333%" height="15" fill="rgb(231,17,5)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1854.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1860" width="0.3333%" height="15" fill="rgb(209,25,54)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1870.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1876" width="0.3333%" height="15" fill="rgb(219,0,2)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1886.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1892" width="0.3333%" height="15" fill="rgb(246,9,5)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1902.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1908" width="0.3333%" height="15" fill="rgb(226,159,4)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1918.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1924" width="0.3333%" height="15" fill="rgb(219,175,34)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1934.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="1940" width="0.3333%" height="15" fill="rgb(236,10,46)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1950.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="1956" width="0.3333%" height="15" fill="rgb(240,211,16)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1966.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="1972" width="0.3333%" height="15" fill="rgb(205,3,43)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1982.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="1988" width="0.3333%" height="15" fill="rgb(245,7,22)" fg:x="119" fg:w="1"/><text x="39.9167%" y="1998.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="2004" width="0.3333%" height="15" fill="rgb(239,132,32)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2014.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="2020" width="0.3333%" height="15" fill="rgb(228,202,34)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2030.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="2036" width="0.3333%" height="15" fill="rgb(254,200,22)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2046.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="2052" width="0.3333%" height="15" fill="rgb(219,10,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2062.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.33%)</title><rect x="39.6667%" y="2068" width="0.3333%" height="15" fill="rgb(226,210,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2078.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="39.6667%" y="2084" width="0.3333%" height="15" fill="rgb(208,219,16)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2094.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="39.6667%" y="2100" width="0.3333%" height="15" fill="rgb(216,158,51)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2110.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="39.6667%" y="2116" width="0.3333%" height="15" fill="rgb(233,14,44)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2126.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="39.6667%" y="2132" width="0.3333%" height="15" fill="rgb(237,97,39)" fg:x="119" fg:w="1"/><text x="39.9167%" y="2142.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (8 samples, 2.67%)</title><rect x="37.6667%" y="868" width="2.6667%" height="15" fill="rgb(218,198,43)" fg:x="113" fg:w="8"/><text x="37.9167%" y="878.50">cl..</text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (1 samples, 0.33%)</title><rect x="40.0000%" y="884" width="0.3333%" height="15" fill="rgb(231,104,20)" fg:x="120" fg:w="1"/><text x="40.2500%" y="894.50"></text></g><g><title>__contains__ (_collections_abc.py:767) (1 samples, 0.33%)</title><rect x="40.0000%" y="900" width="0.3333%" height="15" fill="rgb(254,36,13)" fg:x="120" fg:w="1"/><text x="40.2500%" y="910.50"></text></g><g><title>__getitem__ (os.py:674) (1 samples, 0.33%)</title><rect x="40.0000%" y="916" width="0.3333%" height="15" fill="rgb(248,14,50)" fg:x="120" fg:w="1"/><text x="40.2500%" y="926.50"></text></g><g><title>encode (os.py:754) (1 samples, 0.33%)</title><rect x="40.0000%" y="932" width="0.3333%" height="15" fill="rgb(217,107,29)" fg:x="120" fg:w="1"/><text x="40.2500%" y="942.50"></text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (2 samples, 0.67%)</title><rect x="40.3333%" y="868" width="0.6667%" height="15" fill="rgb(251,169,33)" fg:x="121" fg:w="2"/><text x="40.5833%" y="878.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (35 samples, 11.67%)</title><rect x="29.6667%" y="836" width="11.6667%" height="15" fill="rgb(217,108,32)" fg:x="89" fg:w="35"/><text x="29.9167%" y="846.50">__new__ (pydantic..</text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (35 samples, 11.67%)</title><rect x="29.6667%" y="852" width="11.6667%" height="15" fill="rgb(219,66,42)" fg:x="89" fg:w="35"/><text x="29.9167%" y="862.50">complete_model_cl..</text></g><g><title>generate_pydantic_signature (pydantic/_internal/_signature.py:145) (1 samples, 0.33%)</title><rect x="41.0000%" y="868" width="0.3333%" height="15" fill="rgb(206,180,7)" fg:x="123" fg:w="1"/><text x="41.2500%" y="878.50"></text></g><g><title>_generate_signature_parameters (pydantic/_internal/_signature.py:71) (1 samples, 0.33%)</title><rect x="41.0000%" y="884" width="0.3333%" height="15" fill="rgb(208,226,31)" fg:x="123" fg:w="1"/><text x="41.2500%" y="894.50"></text></g><g><title>get_default (pydantic/fields.py:493) (1 samples, 0.33%)</title><rect x="41.0000%" y="900" width="0.3333%" height="15" fill="rgb(218,26,49)" fg:x="123" fg:w="1"/><text x="41.2500%" y="910.50"></text></g><g><title>smart_deepcopy (pydantic/_internal/_utils.py:302) (1 samples, 0.33%)</title><rect x="41.0000%" y="916" width="0.3333%" height="15" fill="rgb(233,197,48)" fg:x="123" fg:w="1"/><text x="41.2500%" y="926.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.33%)</title><rect x="41.0000%" y="932" width="0.3333%" height="15" fill="rgb(252,181,51)" fg:x="123" fg:w="1"/><text x="41.2500%" y="942.50"></text></g><g><title>ModelField (fastapi/_compat.py:83) (1 samples, 0.33%)</title><rect x="41.3333%" y="932" width="0.3333%" height="15" fill="rgb(253,90,19)" fg:x="124" fg:w="1"/><text x="41.5833%" y="942.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.33%)</title><rect x="41.3333%" y="948" width="0.3333%" height="15" fill="rgb(215,171,30)" fg:x="124" fg:w="1"/><text x="41.5833%" y="958.50"></text></g><g><title>__getitem__ (typing.py:832) (1 samples, 0.33%)</title><rect x="41.3333%" y="964" width="0.3333%" height="15" fill="rgb(214,222,9)" fg:x="124" fg:w="1"/><text x="41.5833%" y="974.50"></text></g><g><title>copy_with (typing.py:841) (1 samples, 0.33%)</title><rect x="41.3333%" y="980" width="0.3333%" height="15" fill="rgb(223,3,22)" fg:x="124" fg:w="1"/><text x="41.5833%" y="990.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.33%)</title><rect x="41.3333%" y="996" width="0.3333%" height="15" fill="rgb(225,196,46)" fg:x="124" fg:w="1"/><text x="41.5833%" y="1006.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.33%)</title><rect x="41.3333%" y="1012" width="0.3333%" height="15" fill="rgb(209,110,37)" fg:x="124" fg:w="1"/><text x="41.5833%" y="1022.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.33%)</title><rect x="41.3333%" y="1028" width="0.3333%" height="15" fill="rgb(249,89,12)" fg:x="124" fg:w="1"/><text x="41.5833%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="41.6667%" y="1188" width="1.0000%" height="15" fill="rgb(226,27,33)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="41.6667%" y="1204" width="1.0000%" height="15" fill="rgb(213,82,22)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="41.6667%" y="1220" width="1.0000%" height="15" fill="rgb(248,140,0)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="41.6667%" y="1236" width="1.0000%" height="15" fill="rgb(228,106,3)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="41.6667%" y="1252" width="1.0000%" height="15" fill="rgb(209,23,37)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1262.50"></text></g><g><title><module> (pydantic_core/__init__.py:1) (3 samples, 1.00%)</title><rect x="41.6667%" y="1268" width="1.0000%" height="15" fill="rgb(241,93,50)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="41.6667%" y="1284" width="1.0000%" height="15" fill="rgb(253,46,43)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="41.6667%" y="1300" width="1.0000%" height="15" fill="rgb(226,206,43)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="41.6667%" y="1316" width="1.0000%" height="15" fill="rgb(217,54,7)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="41.6667%" y="1332" width="1.0000%" height="15" fill="rgb(223,5,52)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="41.6667%" y="1348" width="1.0000%" height="15" fill="rgb(206,52,46)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1358.50"></text></g><g><title><module> (pydantic_core/core_schema.py:1) (3 samples, 1.00%)</title><rect x="41.6667%" y="1364" width="1.0000%" height="15" fill="rgb(253,136,11)" fg:x="125" fg:w="3"/><text x="41.9167%" y="1374.50"></text></g><g><title>__new__ (typing_extensions.py:789) (2 samples, 0.67%)</title><rect x="42.0000%" y="1380" width="0.6667%" height="15" fill="rgb(208,106,33)" fg:x="126" fg:w="2"/><text x="42.2500%" y="1390.50"></text></g><g><title><dictcomp> (typing_extensions.py:821) (2 samples, 0.67%)</title><rect x="42.0000%" y="1396" width="0.6667%" height="15" fill="rgb(206,54,4)" fg:x="126" fg:w="2"/><text x="42.2500%" y="1406.50"></text></g><g><title>_type_check (typing.py:137) (2 samples, 0.67%)</title><rect x="42.0000%" y="1412" width="0.6667%" height="15" fill="rgb(213,3,15)" fg:x="126" fg:w="2"/><text x="42.2500%" y="1422.50"></text></g><g><title>_type_convert (typing.py:128) (2 samples, 0.67%)</title><rect x="42.0000%" y="1428" width="0.6667%" height="15" fill="rgb(252,211,39)" fg:x="126" fg:w="2"/><text x="42.2500%" y="1438.50"></text></g><g><title>__init__ (typing.py:524) (2 samples, 0.67%)</title><rect x="42.0000%" y="1444" width="0.6667%" height="15" fill="rgb(223,6,36)" fg:x="126" fg:w="2"/><text x="42.2500%" y="1454.50"></text></g><g><title><module> (pydantic/_internal/_decorators.py:1) (1 samples, 0.33%)</title><rect x="42.6667%" y="1300" width="0.3333%" height="15" fill="rgb(252,169,45)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="42.6667%" y="1316" width="0.3333%" height="15" fill="rgb(212,48,26)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="42.6667%" y="1332" width="0.3333%" height="15" fill="rgb(251,102,48)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="42.6667%" y="1348" width="0.3333%" height="15" fill="rgb(243,208,16)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="42.6667%" y="1364" width="0.3333%" height="15" fill="rgb(219,96,24)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="42.6667%" y="1380" width="0.3333%" height="15" fill="rgb(219,33,29)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1390.50"></text></g><g><title><module> (pydantic/_internal/_core_utils.py:1) (1 samples, 0.33%)</title><rect x="42.6667%" y="1396" width="0.3333%" height="15" fill="rgb(223,176,5)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1406.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="42.6667%" y="1412" width="0.3333%" height="15" fill="rgb(228,140,14)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1422.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="42.6667%" y="1428" width="0.3333%" height="15" fill="rgb(217,179,31)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1438.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="42.6667%" y="1444" width="0.3333%" height="15" fill="rgb(230,9,30)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1454.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="42.6667%" y="1460" width="0.3333%" height="15" fill="rgb(230,136,20)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1470.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="42.6667%" y="1476" width="0.3333%" height="15" fill="rgb(215,210,22)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1486.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="42.6667%" y="1492" width="0.3333%" height="15" fill="rgb(218,43,5)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="42.6667%" y="1508" width="0.3333%" height="15" fill="rgb(216,11,5)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1518.50"></text></g><g><title><module> (pydantic/_internal/_repr.py:1) (1 samples, 0.33%)</title><rect x="42.6667%" y="1524" width="0.3333%" height="15" fill="rgb(209,82,29)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1534.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="42.6667%" y="1540" width="0.3333%" height="15" fill="rgb(244,115,12)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="42.6667%" y="1556" width="0.3333%" height="15" fill="rgb(222,82,18)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1566.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="42.6667%" y="1572" width="0.3333%" height="15" fill="rgb(249,227,8)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1582.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="42.6667%" y="1588" width="0.3333%" height="15" fill="rgb(253,141,45)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1598.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="42.6667%" y="1604" width="0.3333%" height="15" fill="rgb(234,184,4)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1614.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="42.6667%" y="1620" width="0.3333%" height="15" fill="rgb(218,194,23)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="42.6667%" y="1636" width="0.3333%" height="15" fill="rgb(235,66,41)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1646.50"></text></g><g><title><module> (pydantic/_internal/_typing_extra.py:1) (1 samples, 0.33%)</title><rect x="42.6667%" y="1652" width="0.3333%" height="15" fill="rgb(245,217,1)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1662.50"></text></g><g><title>no_type_check (typing.py:1566) (1 samples, 0.33%)</title><rect x="42.6667%" y="1668" width="0.3333%" height="15" fill="rgb(229,91,1)" fg:x="128" fg:w="1"/><text x="42.9167%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.00%)</title><rect x="41.6667%" y="1028" width="2.0000%" height="15" fill="rgb(207,101,30)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1038.50">_..</text></g><g><title>__getattr__ (pydantic/__init__.py:371) (6 samples, 2.00%)</title><rect x="41.6667%" y="1044" width="2.0000%" height="15" fill="rgb(223,82,49)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1054.50">_..</text></g><g><title>import_module (importlib/__init__.py:109) (6 samples, 2.00%)</title><rect x="41.6667%" y="1060" width="2.0000%" height="15" fill="rgb(218,167,17)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1070.50">i..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (6 samples, 2.00%)</title><rect x="41.6667%" y="1076" width="2.0000%" height="15" fill="rgb(208,103,14)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1086.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.00%)</title><rect x="41.6667%" y="1092" width="2.0000%" height="15" fill="rgb(238,20,8)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1102.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.00%)</title><rect x="41.6667%" y="1108" width="2.0000%" height="15" fill="rgb(218,80,54)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1118.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.00%)</title><rect x="41.6667%" y="1124" width="2.0000%" height="15" fill="rgb(240,144,17)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1134.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.00%)</title><rect x="41.6667%" y="1140" width="2.0000%" height="15" fill="rgb(245,27,50)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1150.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.00%)</title><rect x="41.6667%" y="1156" width="2.0000%" height="15" fill="rgb(251,51,7)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1166.50">_..</text></g><g><title><module> (pydantic/main.py:1) (6 samples, 2.00%)</title><rect x="41.6667%" y="1172" width="2.0000%" height="15" fill="rgb(245,217,29)" fg:x="125" fg:w="6"/><text x="41.9167%" y="1182.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="42.6667%" y="1188" width="1.0000%" height="15" fill="rgb(221,176,29)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="42.6667%" y="1204" width="1.0000%" height="15" fill="rgb(212,180,24)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="42.6667%" y="1220" width="1.0000%" height="15" fill="rgb(254,24,2)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="42.6667%" y="1236" width="1.0000%" height="15" fill="rgb(230,100,2)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="42.6667%" y="1252" width="1.0000%" height="15" fill="rgb(219,142,25)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="42.6667%" y="1268" width="1.0000%" height="15" fill="rgb(240,73,43)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="42.6667%" y="1284" width="1.0000%" height="15" fill="rgb(214,114,15)" fg:x="128" fg:w="3"/><text x="42.9167%" y="1294.50"></text></g><g><title><module> (pydantic/_internal/_generics.py:1) (2 samples, 0.67%)</title><rect x="43.0000%" y="1300" width="0.6667%" height="15" fill="rgb(207,130,4)" fg:x="129" fg:w="2"/><text x="43.2500%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="43.0000%" y="1316" width="0.6667%" height="15" fill="rgb(221,25,40)" fg:x="129" fg:w="2"/><text x="43.2500%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="43.0000%" y="1332" width="0.6667%" height="15" fill="rgb(241,184,7)" fg:x="129" fg:w="2"/><text x="43.2500%" y="1342.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.67%)</title><rect x="43.0000%" y="1348" width="0.6667%" height="15" fill="rgb(235,159,4)" fg:x="129" fg:w="2"/><text x="43.2500%" y="1358.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (2 samples, 0.67%)</title><rect x="43.6667%" y="1076" width="0.6667%" height="15" fill="rgb(214,87,48)" fg:x="131" fg:w="2"/><text x="43.9167%" y="1086.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (2 samples, 0.67%)</title><rect x="43.6667%" y="1092" width="0.6667%" height="15" fill="rgb(246,198,24)" fg:x="131" fg:w="2"/><text x="43.9167%" y="1102.50"></text></g><g><title><module> (<string>:2) (1 samples, 0.33%)</title><rect x="44.0000%" y="1108" width="0.3333%" height="15" fill="rgb(209,66,40)" fg:x="132" fg:w="1"/><text x="44.2500%" y="1118.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:340) (1 samples, 0.33%)</title><rect x="44.3333%" y="1124" width="0.3333%" height="15" fill="rgb(233,147,39)" fg:x="133" fg:w="1"/><text x="44.5833%" y="1134.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (4 samples, 1.33%)</title><rect x="44.3333%" y="1108" width="1.3333%" height="15" fill="rgb(231,145,52)" fg:x="133" fg:w="4"/><text x="44.5833%" y="1118.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:343) (3 samples, 1.00%)</title><rect x="44.6667%" y="1124" width="1.0000%" height="15" fill="rgb(206,20,26)" fg:x="134" fg:w="3"/><text x="44.9167%" y="1134.50"></text></g><g><title>__fspath__ (pathlib.py:752) (1 samples, 0.33%)</title><rect x="45.6667%" y="1172" width="0.3333%" height="15" fill="rgb(238,220,4)" fg:x="137" fg:w="1"/><text x="45.9167%" y="1182.50"></text></g><g><title>__str__ (pathlib.py:742) (1 samples, 0.33%)</title><rect x="45.6667%" y="1188" width="0.3333%" height="15" fill="rgb(252,195,42)" fg:x="137" fg:w="1"/><text x="45.9167%" y="1198.50"></text></g><g><title><module> (fastapi/exceptions.py:1) (14 samples, 4.67%)</title><rect x="41.6667%" y="1012" width="4.6667%" height="15" fill="rgb(209,10,6)" fg:x="125" fg:w="14"/><text x="41.9167%" y="1022.50"><modu..</text></g><g><title>create_model (pydantic/main.py:1397) (8 samples, 2.67%)</title><rect x="43.6667%" y="1028" width="2.6667%" height="15" fill="rgb(229,3,52)" fg:x="131" fg:w="8"/><text x="43.9167%" y="1038.50">cr..</text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (8 samples, 2.67%)</title><rect x="43.6667%" y="1044" width="2.6667%" height="15" fill="rgb(253,49,37)" fg:x="131" fg:w="8"/><text x="43.9167%" y="1054.50">__..</text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (8 samples, 2.67%)</title><rect x="43.6667%" y="1060" width="2.6667%" height="15" fill="rgb(240,103,49)" fg:x="131" fg:w="8"/><text x="43.9167%" y="1070.50">co..</text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (6 samples, 2.00%)</title><rect x="44.3333%" y="1076" width="2.0000%" height="15" fill="rgb(250,182,30)" fg:x="133" fg:w="6"/><text x="44.5833%" y="1086.50">c..</text></g><g><title>get_plugins (pydantic/plugin/_loader.py:20) (6 samples, 2.00%)</title><rect x="44.3333%" y="1092" width="2.0000%" height="15" fill="rgb(248,8,30)" fg:x="133" fg:w="6"/><text x="44.5833%" y="1102.50">g..</text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (2 samples, 0.67%)</title><rect x="45.6667%" y="1108" width="0.6667%" height="15" fill="rgb(237,120,30)" fg:x="137" fg:w="2"/><text x="45.9167%" y="1118.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (2 samples, 0.67%)</title><rect x="45.6667%" y="1124" width="0.6667%" height="15" fill="rgb(221,146,34)" fg:x="137" fg:w="2"/><text x="45.9167%" y="1134.50"></text></g><g><title>read_text (pathlib.py:1262) (2 samples, 0.67%)</title><rect x="45.6667%" y="1140" width="0.6667%" height="15" fill="rgb(242,55,13)" fg:x="137" fg:w="2"/><text x="45.9167%" y="1150.50"></text></g><g><title>open (pathlib.py:1246) (2 samples, 0.67%)</title><rect x="45.6667%" y="1156" width="0.6667%" height="15" fill="rgb(242,112,31)" fg:x="137" fg:w="2"/><text x="45.9167%" y="1166.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.33%)</title><rect x="46.0000%" y="1172" width="0.3333%" height="15" fill="rgb(249,192,27)" fg:x="138" fg:w="1"/><text x="46.2500%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="46.3333%" y="1332" width="0.3333%" height="15" fill="rgb(208,204,44)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1342.50"></text></g><g><title><module> (anyio/_core/_fileio.py:1) (1 samples, 0.33%)</title><rect x="46.3333%" y="1348" width="0.3333%" height="15" fill="rgb(208,93,54)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="46.3333%" y="1364" width="0.3333%" height="15" fill="rgb(242,1,31)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="46.3333%" y="1380" width="0.3333%" height="15" fill="rgb(241,83,25)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="46.3333%" y="1396" width="0.3333%" height="15" fill="rgb(205,169,50)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="46.3333%" y="1412" width="0.3333%" height="15" fill="rgb(239,186,37)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="46.3333%" y="1428" width="0.3333%" height="15" fill="rgb(205,221,10)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="46.3333%" y="1444" width="0.3333%" height="15" fill="rgb(218,196,15)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="46.3333%" y="1460" width="0.3333%" height="15" fill="rgb(218,196,35)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1470.50"></text></g><g><title><module> (anyio/to_thread.py:1) (1 samples, 0.33%)</title><rect x="46.3333%" y="1476" width="0.3333%" height="15" fill="rgb(233,63,24)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="46.3333%" y="1492" width="0.3333%" height="15" fill="rgb(225,8,4)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="46.3333%" y="1508" width="0.3333%" height="15" fill="rgb(234,105,35)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="46.3333%" y="1524" width="0.3333%" height="15" fill="rgb(236,21,32)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="46.3333%" y="1540" width="0.3333%" height="15" fill="rgb(228,109,6)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="46.3333%" y="1556" width="0.3333%" height="15" fill="rgb(229,215,31)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1566.50"></text></g><g><title><module> (anyio/abc/__init__.py:1) (1 samples, 0.33%)</title><rect x="46.3333%" y="1572" width="0.3333%" height="15" fill="rgb(221,52,54)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="46.3333%" y="1588" width="0.3333%" height="15" fill="rgb(252,129,43)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="46.3333%" y="1604" width="0.3333%" height="15" fill="rgb(248,183,27)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="46.3333%" y="1620" width="0.3333%" height="15" fill="rgb(250,0,22)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="46.3333%" y="1636" width="0.3333%" height="15" fill="rgb(213,166,10)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="46.3333%" y="1652" width="0.3333%" height="15" fill="rgb(207,163,36)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1662.50"></text></g><g><title><module> (anyio/abc/_sockets.py:1) (1 samples, 0.33%)</title><rect x="46.3333%" y="1668" width="0.3333%" height="15" fill="rgb(208,122,22)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1678.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.33%)</title><rect x="46.3333%" y="1684" width="0.3333%" height="15" fill="rgb(207,104,49)" fg:x="139" fg:w="1"/><text x="46.5833%" y="1694.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 6.00%)</title><rect x="41.3333%" y="836" width="6.0000%" height="15" fill="rgb(248,211,50)" fg:x="124" fg:w="18"/><text x="41.5833%" y="846.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 6.00%)</title><rect x="41.3333%" y="852" width="6.0000%" height="15" fill="rgb(217,13,45)" fg:x="124" fg:w="18"/><text x="41.5833%" y="862.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.00%)</title><rect x="41.3333%" y="868" width="6.0000%" height="15" fill="rgb(211,216,49)" fg:x="124" fg:w="18"/><text x="41.5833%" y="878.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.00%)</title><rect x="41.3333%" y="884" width="6.0000%" height="15" fill="rgb(221,58,53)" fg:x="124" fg:w="18"/><text x="41.5833%" y="894.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.00%)</title><rect x="41.3333%" y="900" width="6.0000%" height="15" fill="rgb(220,112,41)" fg:x="124" fg:w="18"/><text x="41.5833%" y="910.50">_call_wi..</text></g><g><title><module> (fastapi/_compat.py:1) (18 samples, 6.00%)</title><rect x="41.3333%" y="916" width="6.0000%" height="15" fill="rgb(236,38,28)" fg:x="124" fg:w="18"/><text x="41.5833%" y="926.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.67%)</title><rect x="41.6667%" y="932" width="5.6667%" height="15" fill="rgb(227,195,22)" fg:x="125" fg:w="17"/><text x="41.9167%" y="942.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.67%)</title><rect x="41.6667%" y="948" width="5.6667%" height="15" fill="rgb(214,55,33)" fg:x="125" fg:w="17"/><text x="41.9167%" y="958.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.67%)</title><rect x="41.6667%" y="964" width="5.6667%" height="15" fill="rgb(248,80,13)" fg:x="125" fg:w="17"/><text x="41.9167%" y="974.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.67%)</title><rect x="41.6667%" y="980" width="5.6667%" height="15" fill="rgb(238,52,6)" fg:x="125" fg:w="17"/><text x="41.9167%" y="990.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.67%)</title><rect x="41.6667%" y="996" width="5.6667%" height="15" fill="rgb(224,198,47)" fg:x="125" fg:w="17"/><text x="41.9167%" y="1006.50">_call_w..</text></g><g><title><module> (starlette/datastructures.py:1) (3 samples, 1.00%)</title><rect x="46.3333%" y="1012" width="1.0000%" height="15" fill="rgb(233,171,20)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="46.3333%" y="1028" width="1.0000%" height="15" fill="rgb(241,30,25)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="46.3333%" y="1044" width="1.0000%" height="15" fill="rgb(207,171,38)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="46.3333%" y="1060" width="1.0000%" height="15" fill="rgb(234,70,1)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="46.3333%" y="1076" width="1.0000%" height="15" fill="rgb(232,178,18)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="46.3333%" y="1092" width="1.0000%" height="15" fill="rgb(241,78,40)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1102.50"></text></g><g><title><module> (starlette/concurrency.py:1) (3 samples, 1.00%)</title><rect x="46.3333%" y="1108" width="1.0000%" height="15" fill="rgb(222,35,25)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="46.3333%" y="1124" width="1.0000%" height="15" fill="rgb(207,92,16)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="46.3333%" y="1140" width="1.0000%" height="15" fill="rgb(216,59,51)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="46.3333%" y="1156" width="1.0000%" height="15" fill="rgb(213,80,28)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="46.3333%" y="1172" width="1.0000%" height="15" fill="rgb(220,93,7)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="46.3333%" y="1188" width="1.0000%" height="15" fill="rgb(225,24,44)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="46.3333%" y="1204" width="1.0000%" height="15" fill="rgb(243,74,40)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="46.3333%" y="1220" width="1.0000%" height="15" fill="rgb(228,39,7)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="46.3333%" y="1236" width="1.0000%" height="15" fill="rgb(227,79,8)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1246.50"></text></g><g><title><module> (anyio/__init__.py:1) (3 samples, 1.00%)</title><rect x="46.3333%" y="1252" width="1.0000%" height="15" fill="rgb(236,58,11)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="46.3333%" y="1268" width="1.0000%" height="15" fill="rgb(249,63,35)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="46.3333%" y="1284" width="1.0000%" height="15" fill="rgb(252,114,16)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="46.3333%" y="1300" width="1.0000%" height="15" fill="rgb(254,151,24)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="46.3333%" y="1316" width="1.0000%" height="15" fill="rgb(253,54,39)" fg:x="139" fg:w="3"/><text x="46.5833%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.67%)</title><rect x="46.6667%" y="1332" width="0.6667%" height="15" fill="rgb(243,25,45)" fg:x="140" fg:w="2"/><text x="46.9167%" y="1342.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.67%)</title><rect x="46.6667%" y="1348" width="0.6667%" height="15" fill="rgb(234,134,9)" fg:x="140" fg:w="2"/><text x="46.9167%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="47.3333%" y="836" width="0.3333%" height="15" fill="rgb(227,166,31)" fg:x="142" fg:w="1"/><text x="47.5833%" y="846.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.33%)</title><rect x="47.3333%" y="852" width="0.3333%" height="15" fill="rgb(245,143,41)" fg:x="142" fg:w="1"/><text x="47.5833%" y="862.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.33%)</title><rect x="47.3333%" y="868" width="0.3333%" height="15" fill="rgb(238,181,32)" fg:x="142" fg:w="1"/><text x="47.5833%" y="878.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.33%)</title><rect x="47.3333%" y="884" width="0.3333%" height="15" fill="rgb(224,113,18)" fg:x="142" fg:w="1"/><text x="47.5833%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="47.3333%" y="900" width="0.3333%" height="15" fill="rgb(240,229,28)" fg:x="142" fg:w="1"/><text x="47.5833%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="47.3333%" y="916" width="0.3333%" height="15" fill="rgb(250,185,3)" fg:x="142" fg:w="1"/><text x="47.5833%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="47.3333%" y="932" width="0.3333%" height="15" fill="rgb(212,59,25)" fg:x="142" fg:w="1"/><text x="47.5833%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="47.3333%" y="948" width="0.3333%" height="15" fill="rgb(221,87,20)" fg:x="142" fg:w="1"/><text x="47.5833%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="47.3333%" y="964" width="0.3333%" height="15" fill="rgb(213,74,28)" fg:x="142" fg:w="1"/><text x="47.5833%" y="974.50"></text></g><g><title><module> (pydantic/networks.py:1) (1 samples, 0.33%)</title><rect x="47.3333%" y="980" width="0.3333%" height="15" fill="rgb(224,132,34)" fg:x="142" fg:w="1"/><text x="47.5833%" y="990.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.33%)</title><rect x="47.3333%" y="996" width="0.3333%" height="15" fill="rgb(222,101,24)" fg:x="142" fg:w="1"/><text x="47.5833%" y="1006.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.33%)</title><rect x="47.3333%" y="1012" width="0.3333%" height="15" fill="rgb(254,142,4)" fg:x="142" fg:w="1"/><text x="47.5833%" y="1022.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.33%)</title><rect x="47.3333%" y="1028" width="0.3333%" height="15" fill="rgb(230,229,49)" fg:x="142" fg:w="1"/><text x="47.5833%" y="1038.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.33%)</title><rect x="47.3333%" y="1044" width="0.3333%" height="15" fill="rgb(238,70,47)" fg:x="142" fg:w="1"/><text x="47.5833%" y="1054.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.33%)</title><rect x="47.3333%" y="1060" width="0.3333%" height="15" fill="rgb(231,160,17)" fg:x="142" fg:w="1"/><text x="47.5833%" y="1070.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.33%)</title><rect x="48.0000%" y="1620" width="0.3333%" height="15" fill="rgb(218,68,53)" fg:x="144" fg:w="1"/><text x="48.2500%" y="1630.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.33%)</title><rect x="48.0000%" y="1636" width="0.3333%" height="15" fill="rgb(236,111,10)" fg:x="144" fg:w="1"/><text x="48.2500%" y="1646.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (2 samples, 0.67%)</title><rect x="48.0000%" y="1556" width="0.6667%" height="15" fill="rgb(224,34,41)" fg:x="144" fg:w="2"/><text x="48.2500%" y="1566.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.67%)</title><rect x="48.0000%" y="1572" width="0.6667%" height="15" fill="rgb(241,118,19)" fg:x="144" fg:w="2"/><text x="48.2500%" y="1582.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.67%)</title><rect x="48.0000%" y="1588" width="0.6667%" height="15" fill="rgb(238,129,25)" fg:x="144" fg:w="2"/><text x="48.2500%" y="1598.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="48.0000%" y="1604" width="0.6667%" height="15" fill="rgb(238,22,31)" fg:x="144" fg:w="2"/><text x="48.2500%" y="1614.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.33%)</title><rect x="48.3333%" y="1620" width="0.3333%" height="15" fill="rgb(222,174,48)" fg:x="145" fg:w="1"/><text x="48.5833%" y="1630.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.33%)</title><rect x="48.3333%" y="1636" width="0.3333%" height="15" fill="rgb(206,152,40)" fg:x="145" fg:w="1"/><text x="48.5833%" y="1646.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.33%)</title><rect x="48.3333%" y="1652" width="0.3333%" height="15" fill="rgb(218,99,54)" fg:x="145" fg:w="1"/><text x="48.5833%" y="1662.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (4 samples, 1.33%)</title><rect x="47.6667%" y="1028" width="1.3333%" height="15" fill="rgb(220,174,26)" fg:x="143" fg:w="4"/><text x="47.9167%" y="1038.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="48.0000%" y="1044" width="1.0000%" height="15" fill="rgb(245,116,9)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1054.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 1.00%)</title><rect x="48.0000%" y="1060" width="1.0000%" height="15" fill="rgb(209,72,35)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1070.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="48.0000%" y="1076" width="1.0000%" height="15" fill="rgb(226,126,21)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1086.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="48.0000%" y="1092" width="1.0000%" height="15" fill="rgb(227,192,1)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1102.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="48.0000%" y="1108" width="1.0000%" height="15" fill="rgb(237,180,29)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1118.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 1.00%)</title><rect x="48.0000%" y="1124" width="1.0000%" height="15" fill="rgb(230,197,35)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1134.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 1.00%)</title><rect x="48.0000%" y="1140" width="1.0000%" height="15" fill="rgb(246,193,31)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1150.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 1.00%)</title><rect x="48.0000%" y="1156" width="1.0000%" height="15" fill="rgb(241,36,4)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1166.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="48.0000%" y="1172" width="1.0000%" height="15" fill="rgb(241,130,17)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1182.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="48.0000%" y="1188" width="1.0000%" height="15" fill="rgb(206,137,32)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1198.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="48.0000%" y="1204" width="1.0000%" height="15" fill="rgb(237,228,51)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1214.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 1.00%)</title><rect x="48.0000%" y="1220" width="1.0000%" height="15" fill="rgb(243,6,42)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1230.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="48.0000%" y="1236" width="1.0000%" height="15" fill="rgb(251,74,28)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1246.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (3 samples, 1.00%)</title><rect x="48.0000%" y="1252" width="1.0000%" height="15" fill="rgb(218,20,49)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1262.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (3 samples, 1.00%)</title><rect x="48.0000%" y="1268" width="1.0000%" height="15" fill="rgb(238,28,14)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 1.00%)</title><rect x="48.0000%" y="1284" width="1.0000%" height="15" fill="rgb(229,40,46)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1294.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 1.00%)</title><rect x="48.0000%" y="1300" width="1.0000%" height="15" fill="rgb(244,195,20)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1310.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="48.0000%" y="1316" width="1.0000%" height="15" fill="rgb(253,56,35)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1326.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="48.0000%" y="1332" width="1.0000%" height="15" fill="rgb(210,149,44)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1342.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 1.00%)</title><rect x="48.0000%" y="1348" width="1.0000%" height="15" fill="rgb(240,135,12)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1358.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 1.00%)</title><rect x="48.0000%" y="1364" width="1.0000%" height="15" fill="rgb(251,24,50)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1374.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 1.00%)</title><rect x="48.0000%" y="1380" width="1.0000%" height="15" fill="rgb(243,200,47)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1390.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 1.00%)</title><rect x="48.0000%" y="1396" width="1.0000%" height="15" fill="rgb(224,166,26)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1406.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 1.00%)</title><rect x="48.0000%" y="1412" width="1.0000%" height="15" fill="rgb(233,0,47)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1422.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 1.00%)</title><rect x="48.0000%" y="1428" width="1.0000%" height="15" fill="rgb(253,80,5)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1438.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 1.00%)</title><rect x="48.0000%" y="1444" width="1.0000%" height="15" fill="rgb(214,133,25)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1454.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 1.00%)</title><rect x="48.0000%" y="1460" width="1.0000%" height="15" fill="rgb(209,27,14)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1470.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 1.00%)</title><rect x="48.0000%" y="1476" width="1.0000%" height="15" fill="rgb(219,102,51)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1486.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 1.00%)</title><rect x="48.0000%" y="1492" width="1.0000%" height="15" fill="rgb(237,18,16)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1502.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 1.00%)</title><rect x="48.0000%" y="1508" width="1.0000%" height="15" fill="rgb(241,85,17)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1518.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 1.00%)</title><rect x="48.0000%" y="1524" width="1.0000%" height="15" fill="rgb(236,90,42)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1534.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 1.00%)</title><rect x="48.0000%" y="1540" width="1.0000%" height="15" fill="rgb(249,57,21)" fg:x="144" fg:w="3"/><text x="48.2500%" y="1550.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="48.6667%" y="1556" width="0.3333%" height="15" fill="rgb(243,12,36)" fg:x="146" fg:w="1"/><text x="48.9167%" y="1566.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.33%)</title><rect x="48.6667%" y="1572" width="0.3333%" height="15" fill="rgb(253,128,47)" fg:x="146" fg:w="1"/><text x="48.9167%" y="1582.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="48.6667%" y="1588" width="0.3333%" height="15" fill="rgb(207,33,20)" fg:x="146" fg:w="1"/><text x="48.9167%" y="1598.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (5 samples, 1.67%)</title><rect x="47.6667%" y="884" width="1.6667%" height="15" fill="rgb(233,215,35)" fg:x="143" fg:w="5"/><text x="47.9167%" y="894.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.67%)</title><rect x="47.6667%" y="900" width="1.6667%" height="15" fill="rgb(249,188,52)" fg:x="143" fg:w="5"/><text x="47.9167%" y="910.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.67%)</title><rect x="47.6667%" y="916" width="1.6667%" height="15" fill="rgb(225,12,32)" fg:x="143" fg:w="5"/><text x="47.9167%" y="926.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.67%)</title><rect x="47.6667%" y="932" width="1.6667%" height="15" fill="rgb(247,98,14)" fg:x="143" fg:w="5"/><text x="47.9167%" y="942.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.67%)</title><rect x="47.6667%" y="948" width="1.6667%" height="15" fill="rgb(247,219,48)" fg:x="143" fg:w="5"/><text x="47.9167%" y="958.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (5 samples, 1.67%)</title><rect x="47.6667%" y="964" width="1.6667%" height="15" fill="rgb(253,60,48)" fg:x="143" fg:w="5"/><text x="47.9167%" y="974.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (5 samples, 1.67%)</title><rect x="47.6667%" y="980" width="1.6667%" height="15" fill="rgb(245,15,52)" fg:x="143" fg:w="5"/><text x="47.9167%" y="990.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (5 samples, 1.67%)</title><rect x="47.6667%" y="996" width="1.6667%" height="15" fill="rgb(220,133,28)" fg:x="143" fg:w="5"/><text x="47.9167%" y="1006.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (5 samples, 1.67%)</title><rect x="47.6667%" y="1012" width="1.6667%" height="15" fill="rgb(217,180,4)" fg:x="143" fg:w="5"/><text x="47.9167%" y="1022.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.33%)</title><rect x="49.0000%" y="1028" width="0.3333%" height="15" fill="rgb(251,24,1)" fg:x="147" fg:w="1"/><text x="49.2500%" y="1038.50"></text></g><g><title><genexpr> (pydantic/_internal/_generics.py:354) (1 samples, 0.33%)</title><rect x="49.0000%" y="1044" width="0.3333%" height="15" fill="rgb(212,185,49)" fg:x="147" fg:w="1"/><text x="49.2500%" y="1054.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.33%)</title><rect x="49.0000%" y="1060" width="0.3333%" height="15" fill="rgb(215,175,22)" fg:x="147" fg:w="1"/><text x="49.2500%" y="1070.50"></text></g><g><title>get_origin (pydantic/_internal/_generics.py:214) (1 samples, 0.33%)</title><rect x="49.0000%" y="1076" width="0.3333%" height="15" fill="rgb(250,205,14)" fg:x="147" fg:w="1"/><text x="49.2500%" y="1086.50"></text></g><g><title><module> (fastapi/__init__.py:1) (66 samples, 22.00%)</title><rect x="28.0000%" y="372" width="22.0000%" height="15" fill="rgb(225,211,22)" fg:x="84" fg:w="66"/><text x="28.2500%" y="382.50"><module> (fastapi/__init__.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (66 samples, 22.00%)</title><rect x="28.0000%" y="388" width="22.0000%" height="15" fill="rgb(251,179,42)" fg:x="84" fg:w="66"/><text x="28.2500%" y="398.50">_find_and_load (<frozen importlib._..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (66 samples, 22.00%)</title><rect x="28.0000%" y="404" width="22.0000%" height="15" fill="rgb(208,216,51)" fg:x="84" fg:w="66"/><text x="28.2500%" y="414.50">_find_and_load_unlocked (<frozen im..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (66 samples, 22.00%)</title><rect x="28.0000%" y="420" width="22.0000%" height="15" fill="rgb(235,36,11)" fg:x="84" fg:w="66"/><text x="28.2500%" y="430.50">_load_unlocked (<frozen importlib._..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (66 samples, 22.00%)</title><rect x="28.0000%" y="436" width="22.0000%" height="15" fill="rgb(213,189,28)" fg:x="84" fg:w="66"/><text x="28.2500%" y="446.50">exec_module (<frozen importlib._boo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (66 samples, 22.00%)</title><rect x="28.0000%" y="452" width="22.0000%" height="15" fill="rgb(227,203,42)" fg:x="84" fg:w="66"/><text x="28.2500%" y="462.50">_call_with_frames_removed (<frozen ..</text></g><g><title><module> (fastapi/applications.py:1) (66 samples, 22.00%)</title><rect x="28.0000%" y="468" width="22.0000%" height="15" fill="rgb(244,72,36)" fg:x="84" fg:w="66"/><text x="28.2500%" y="478.50"><module> (fastapi/applications.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (66 samples, 22.00%)</title><rect x="28.0000%" y="484" width="22.0000%" height="15" fill="rgb(213,53,17)" fg:x="84" fg:w="66"/><text x="28.2500%" y="494.50">_handle_fromlist (<frozen importlib..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (66 samples, 22.00%)</title><rect x="28.0000%" y="500" width="22.0000%" height="15" fill="rgb(207,167,3)" fg:x="84" fg:w="66"/><text x="28.2500%" y="510.50">_call_with_frames_removed (<frozen ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (66 samples, 22.00%)</title><rect x="28.0000%" y="516" width="22.0000%" height="15" fill="rgb(216,98,30)" fg:x="84" fg:w="66"/><text x="28.2500%" y="526.50">_find_and_load (<frozen importlib._..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (66 samples, 22.00%)</title><rect x="28.0000%" y="532" width="22.0000%" height="15" fill="rgb(236,123,15)" fg:x="84" fg:w="66"/><text x="28.2500%" y="542.50">_find_and_load_unlocked (<frozen im..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (66 samples, 22.00%)</title><rect x="28.0000%" y="548" width="22.0000%" height="15" fill="rgb(248,81,50)" fg:x="84" fg:w="66"/><text x="28.2500%" y="558.50">_load_unlocked (<frozen importlib._..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (66 samples, 22.00%)</title><rect x="28.0000%" y="564" width="22.0000%" height="15" fill="rgb(214,120,4)" fg:x="84" fg:w="66"/><text x="28.2500%" y="574.50">exec_module (<frozen importlib._boo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (66 samples, 22.00%)</title><rect x="28.0000%" y="580" width="22.0000%" height="15" fill="rgb(208,179,34)" fg:x="84" fg:w="66"/><text x="28.2500%" y="590.50">_call_with_frames_removed (<frozen ..</text></g><g><title><module> (fastapi/routing.py:1) (66 samples, 22.00%)</title><rect x="28.0000%" y="596" width="22.0000%" height="15" fill="rgb(227,140,7)" fg:x="84" fg:w="66"/><text x="28.2500%" y="606.50"><module> (fastapi/routing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (61 samples, 20.33%)</title><rect x="29.6667%" y="612" width="20.3333%" height="15" fill="rgb(214,22,6)" fg:x="89" fg:w="61"/><text x="29.9167%" y="622.50">_handle_fromlist (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (61 samples, 20.33%)</title><rect x="29.6667%" y="628" width="20.3333%" height="15" fill="rgb(207,137,27)" fg:x="89" fg:w="61"/><text x="29.9167%" y="638.50">_call_with_frames_removed (<froz..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (61 samples, 20.33%)</title><rect x="29.6667%" y="644" width="20.3333%" height="15" fill="rgb(210,8,46)" fg:x="89" fg:w="61"/><text x="29.9167%" y="654.50">_find_and_load (<frozen importli..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (61 samples, 20.33%)</title><rect x="29.6667%" y="660" width="20.3333%" height="15" fill="rgb(240,16,54)" fg:x="89" fg:w="61"/><text x="29.9167%" y="670.50">_find_and_load_unlocked (<frozen..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (61 samples, 20.33%)</title><rect x="29.6667%" y="676" width="20.3333%" height="15" fill="rgb(211,209,29)" fg:x="89" fg:w="61"/><text x="29.9167%" y="686.50">_load_unlocked (<frozen importli..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (61 samples, 20.33%)</title><rect x="29.6667%" y="692" width="20.3333%" height="15" fill="rgb(226,228,24)" fg:x="89" fg:w="61"/><text x="29.9167%" y="702.50">exec_module (<frozen importlib._..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (61 samples, 20.33%)</title><rect x="29.6667%" y="708" width="20.3333%" height="15" fill="rgb(222,84,9)" fg:x="89" fg:w="61"/><text x="29.9167%" y="718.50">_call_with_frames_removed (<froz..</text></g><g><title><module> (fastapi/params.py:1) (61 samples, 20.33%)</title><rect x="29.6667%" y="724" width="20.3333%" height="15" fill="rgb(234,203,30)" fg:x="89" fg:w="61"/><text x="29.9167%" y="734.50"><module> (fastapi/params.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (61 samples, 20.33%)</title><rect x="29.6667%" y="740" width="20.3333%" height="15" fill="rgb(238,109,14)" fg:x="89" fg:w="61"/><text x="29.9167%" y="750.50">_find_and_load (<frozen importli..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (61 samples, 20.33%)</title><rect x="29.6667%" y="756" width="20.3333%" height="15" fill="rgb(233,206,34)" fg:x="89" fg:w="61"/><text x="29.9167%" y="766.50">_find_and_load_unlocked (<frozen..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (61 samples, 20.33%)</title><rect x="29.6667%" y="772" width="20.3333%" height="15" fill="rgb(220,167,47)" fg:x="89" fg:w="61"/><text x="29.9167%" y="782.50">_load_unlocked (<frozen importli..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (61 samples, 20.33%)</title><rect x="29.6667%" y="788" width="20.3333%" height="15" fill="rgb(238,105,10)" fg:x="89" fg:w="61"/><text x="29.9167%" y="798.50">exec_module (<frozen importlib._..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (61 samples, 20.33%)</title><rect x="29.6667%" y="804" width="20.3333%" height="15" fill="rgb(213,227,17)" fg:x="89" fg:w="61"/><text x="29.9167%" y="814.50">_call_with_frames_removed (<froz..</text></g><g><title><module> (fastapi/openapi/models.py:1) (61 samples, 20.33%)</title><rect x="29.6667%" y="820" width="20.3333%" height="15" fill="rgb(217,132,38)" fg:x="89" fg:w="61"/><text x="29.9167%" y="830.50"><module> (fastapi/openapi/models..</text></g><g><title>_model_rebuild (fastapi/_compat.py:171) (7 samples, 2.33%)</title><rect x="47.6667%" y="836" width="2.3333%" height="15" fill="rgb(242,146,4)" fg:x="143" fg:w="7"/><text x="47.9167%" y="846.50">_..</text></g><g><title>model_rebuild (pydantic/main.py:428) (7 samples, 2.33%)</title><rect x="47.6667%" y="852" width="2.3333%" height="15" fill="rgb(212,61,9)" fg:x="143" fg:w="7"/><text x="47.9167%" y="862.50">m..</text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (7 samples, 2.33%)</title><rect x="47.6667%" y="868" width="2.3333%" height="15" fill="rgb(247,126,22)" fg:x="143" fg:w="7"/><text x="47.9167%" y="878.50">c..</text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (2 samples, 0.67%)</title><rect x="49.3333%" y="884" width="0.6667%" height="15" fill="rgb(220,196,2)" fg:x="148" fg:w="2"/><text x="49.5833%" y="894.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (2 samples, 0.67%)</title><rect x="49.3333%" y="900" width="0.6667%" height="15" fill="rgb(208,46,4)" fg:x="148" fg:w="2"/><text x="49.5833%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (2 samples, 0.67%)</title><rect x="49.3333%" y="916" width="0.6667%" height="15" fill="rgb(252,104,46)" fg:x="148" fg:w="2"/><text x="49.5833%" y="926.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="932" width="0.6667%" height="15" fill="rgb(237,152,48)" fg:x="148" fg:w="2"/><text x="49.5833%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="948" width="0.6667%" height="15" fill="rgb(221,59,37)" fg:x="148" fg:w="2"/><text x="49.5833%" y="958.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="964" width="0.6667%" height="15" fill="rgb(209,202,51)" fg:x="148" fg:w="2"/><text x="49.5833%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="980" width="0.6667%" height="15" fill="rgb(228,81,30)" fg:x="148" fg:w="2"/><text x="49.5833%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="996" width="0.6667%" height="15" fill="rgb(227,42,39)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1012" width="0.6667%" height="15" fill="rgb(221,26,2)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1022.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1028" width="0.6667%" height="15" fill="rgb(254,61,31)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1044" width="0.6667%" height="15" fill="rgb(222,173,38)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.67%)</title><rect x="49.3333%" y="1060" width="0.6667%" height="15" fill="rgb(218,50,12)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1076" width="0.6667%" height="15" fill="rgb(223,88,40)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1086.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1092" width="0.6667%" height="15" fill="rgb(237,54,19)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1108" width="0.6667%" height="15" fill="rgb(251,129,25)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1124" width="0.6667%" height="15" fill="rgb(238,97,19)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1140" width="0.6667%" height="15" fill="rgb(240,169,18)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1150.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1156" width="0.6667%" height="15" fill="rgb(230,187,49)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1172" width="0.6667%" height="15" fill="rgb(209,44,26)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1188" width="0.6667%" height="15" fill="rgb(244,0,6)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1204" width="0.6667%" height="15" fill="rgb(248,18,21)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1214.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1220" width="0.6667%" height="15" fill="rgb(245,180,19)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1236" width="0.6667%" height="15" fill="rgb(252,118,36)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1246.50"></text></g><g><title>handle_list_schema (pydantic/_internal/_core_utils.py:256) (2 samples, 0.67%)</title><rect x="49.3333%" y="1252" width="0.6667%" height="15" fill="rgb(210,224,19)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1262.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1268" width="0.6667%" height="15" fill="rgb(218,30,24)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1278.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1284" width="0.6667%" height="15" fill="rgb(219,75,50)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1294.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1300" width="0.6667%" height="15" fill="rgb(234,72,50)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1310.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (2 samples, 0.67%)</title><rect x="49.3333%" y="1316" width="0.6667%" height="15" fill="rgb(219,100,48)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1326.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1332" width="0.6667%" height="15" fill="rgb(253,5,41)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1342.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1348" width="0.6667%" height="15" fill="rgb(247,181,11)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1358.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1364" width="0.6667%" height="15" fill="rgb(222,223,25)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1374.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1380" width="0.6667%" height="15" fill="rgb(214,198,28)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1390.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1396" width="0.6667%" height="15" fill="rgb(230,46,43)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1406.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1412" width="0.6667%" height="15" fill="rgb(233,65,53)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1422.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1428" width="0.6667%" height="15" fill="rgb(221,121,27)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1438.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.67%)</title><rect x="49.3333%" y="1444" width="0.6667%" height="15" fill="rgb(247,70,47)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1454.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1460" width="0.6667%" height="15" fill="rgb(228,85,35)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1470.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1476" width="0.6667%" height="15" fill="rgb(209,50,18)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1486.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1492" width="0.6667%" height="15" fill="rgb(250,19,35)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1502.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1508" width="0.6667%" height="15" fill="rgb(253,107,29)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1518.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1524" width="0.6667%" height="15" fill="rgb(252,179,29)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1534.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1540" width="0.6667%" height="15" fill="rgb(238,194,6)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1550.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1556" width="0.6667%" height="15" fill="rgb(238,164,29)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1566.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1572" width="0.6667%" height="15" fill="rgb(224,25,9)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1582.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1588" width="0.6667%" height="15" fill="rgb(244,153,23)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1598.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1604" width="0.6667%" height="15" fill="rgb(212,203,14)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1614.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1620" width="0.6667%" height="15" fill="rgb(220,164,20)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1630.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (2 samples, 0.67%)</title><rect x="49.3333%" y="1636" width="0.6667%" height="15" fill="rgb(222,203,48)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1646.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1652" width="0.6667%" height="15" fill="rgb(215,159,22)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1662.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1668" width="0.6667%" height="15" fill="rgb(216,183,47)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1678.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1684" width="0.6667%" height="15" fill="rgb(229,195,25)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1694.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1700" width="0.6667%" height="15" fill="rgb(224,132,51)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1710.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1716" width="0.6667%" height="15" fill="rgb(240,63,7)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1726.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1732" width="0.6667%" height="15" fill="rgb(249,182,41)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1742.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1748" width="0.6667%" height="15" fill="rgb(243,47,26)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1758.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.67%)</title><rect x="49.3333%" y="1764" width="0.6667%" height="15" fill="rgb(233,48,2)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1774.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1780" width="0.6667%" height="15" fill="rgb(244,165,34)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1790.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (2 samples, 0.67%)</title><rect x="49.3333%" y="1796" width="0.6667%" height="15" fill="rgb(207,89,7)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1806.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.67%)</title><rect x="49.3333%" y="1812" width="0.6667%" height="15" fill="rgb(244,117,36)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1822.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.67%)</title><rect x="49.3333%" y="1828" width="0.6667%" height="15" fill="rgb(226,144,34)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1838.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.67%)</title><rect x="49.3333%" y="1844" width="0.6667%" height="15" fill="rgb(213,23,19)" fg:x="148" fg:w="2"/><text x="49.5833%" y="1854.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.33%)</title><rect x="49.6667%" y="1860" width="0.3333%" height="15" fill="rgb(217,75,12)" fg:x="149" fg:w="1"/><text x="49.9167%" y="1870.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.33%)</title><rect x="49.6667%" y="1876" width="0.3333%" height="15" fill="rgb(224,159,17)" fg:x="149" fg:w="1"/><text x="49.9167%" y="1886.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.33%)</title><rect x="49.6667%" y="1892" width="0.3333%" height="15" fill="rgb(217,118,1)" fg:x="149" fg:w="1"/><text x="49.9167%" y="1902.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.33%)</title><rect x="49.6667%" y="1908" width="0.3333%" height="15" fill="rgb(232,180,48)" fg:x="149" fg:w="1"/><text x="49.9167%" y="1918.50"></text></g><g><title><module> (uvicorn/config.py:1) (1 samples, 0.33%)</title><rect x="50.0000%" y="468" width="0.3333%" height="15" fill="rgb(230,27,33)" fg:x="150" fg:w="1"/><text x="50.2500%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="50.0000%" y="484" width="0.3333%" height="15" fill="rgb(205,31,21)" fg:x="150" fg:w="1"/><text x="50.2500%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="50.0000%" y="500" width="0.3333%" height="15" fill="rgb(253,59,4)" fg:x="150" fg:w="1"/><text x="50.2500%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="50.0000%" y="516" width="0.3333%" height="15" fill="rgb(224,201,9)" fg:x="150" fg:w="1"/><text x="50.2500%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="50.0000%" y="532" width="0.3333%" height="15" fill="rgb(229,206,30)" fg:x="150" fg:w="1"/><text x="50.2500%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="50.0000%" y="548" width="0.3333%" height="15" fill="rgb(212,67,47)" fg:x="150" fg:w="1"/><text x="50.2500%" y="558.50"></text></g><g><title><module> (uvicorn/_types.py:1) (1 samples, 0.33%)</title><rect x="50.0000%" y="564" width="0.3333%" height="15" fill="rgb(211,96,50)" fg:x="150" fg:w="1"/><text x="50.2500%" y="574.50"></text></g><g><title>__new__ (typing.py:1937) (1 samples, 0.33%)</title><rect x="50.0000%" y="580" width="0.3333%" height="15" fill="rgb(252,114,18)" fg:x="150" fg:w="1"/><text x="50.2500%" y="590.50"></text></g><g><title><dictcomp> (typing.py:1955) (1 samples, 0.33%)</title><rect x="50.0000%" y="596" width="0.3333%" height="15" fill="rgb(223,58,37)" fg:x="150" fg:w="1"/><text x="50.2500%" y="606.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.33%)</title><rect x="50.0000%" y="612" width="0.3333%" height="15" fill="rgb(237,70,4)" fg:x="150" fg:w="1"/><text x="50.2500%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (130 samples, 43.33%)</title><rect x="7.3333%" y="196" width="43.3333%" height="15" fill="rgb(244,85,46)" fg:x="22" fg:w="130"/><text x="7.5833%" y="206.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (130 samples, 43.33%)</title><rect x="7.3333%" y="212" width="43.3333%" height="15" fill="rgb(223,39,52)" fg:x="22" fg:w="130"/><text x="7.5833%" y="222.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (130 samples, 43.33%)</title><rect x="7.3333%" y="228" width="43.3333%" height="15" fill="rgb(218,200,14)" fg:x="22" fg:w="130"/><text x="7.5833%" y="238.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (130 samples, 43.33%)</title><rect x="7.3333%" y="244" width="43.3333%" height="15" fill="rgb(208,171,16)" fg:x="22" fg:w="130"/><text x="7.5833%" y="254.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (130 samples, 43.33%)</title><rect x="7.3333%" y="260" width="43.3333%" height="15" fill="rgb(234,200,18)" fg:x="22" fg:w="130"/><text x="7.5833%" y="270.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (dask_sql/server/app.py:1) (68 samples, 22.67%)</title><rect x="28.0000%" y="276" width="22.6667%" height="15" fill="rgb(228,45,11)" fg:x="84" fg:w="68"/><text x="28.2500%" y="286.50"><module> (dask_sql/server/app.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (68 samples, 22.67%)</title><rect x="28.0000%" y="292" width="22.6667%" height="15" fill="rgb(237,182,11)" fg:x="84" fg:w="68"/><text x="28.2500%" y="302.50">_find_and_load (<frozen importlib._b..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (68 samples, 22.67%)</title><rect x="28.0000%" y="308" width="22.6667%" height="15" fill="rgb(241,175,49)" fg:x="84" fg:w="68"/><text x="28.2500%" y="318.50">_find_and_load_unlocked (<frozen imp..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (68 samples, 22.67%)</title><rect x="28.0000%" y="324" width="22.6667%" height="15" fill="rgb(247,38,35)" fg:x="84" fg:w="68"/><text x="28.2500%" y="334.50">_load_unlocked (<frozen importlib._b..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (68 samples, 22.67%)</title><rect x="28.0000%" y="340" width="22.6667%" height="15" fill="rgb(228,39,49)" fg:x="84" fg:w="68"/><text x="28.2500%" y="350.50">exec_module (<frozen importlib._boot..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (68 samples, 22.67%)</title><rect x="28.0000%" y="356" width="22.6667%" height="15" fill="rgb(226,101,26)" fg:x="84" fg:w="68"/><text x="28.2500%" y="366.50">_call_with_frames_removed (<frozen i..</text></g><g><title><module> (uvicorn/__init__.py:1) (2 samples, 0.67%)</title><rect x="50.0000%" y="372" width="0.6667%" height="15" fill="rgb(206,141,19)" fg:x="150" fg:w="2"/><text x="50.2500%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="50.0000%" y="388" width="0.6667%" height="15" fill="rgb(211,200,13)" fg:x="150" fg:w="2"/><text x="50.2500%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="50.0000%" y="404" width="0.6667%" height="15" fill="rgb(241,121,6)" fg:x="150" fg:w="2"/><text x="50.2500%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="50.0000%" y="420" width="0.6667%" height="15" fill="rgb(234,221,29)" fg:x="150" fg:w="2"/><text x="50.2500%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="50.0000%" y="436" width="0.6667%" height="15" fill="rgb(229,136,5)" fg:x="150" fg:w="2"/><text x="50.2500%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="50.0000%" y="452" width="0.6667%" height="15" fill="rgb(238,36,11)" fg:x="150" fg:w="2"/><text x="50.2500%" y="462.50"></text></g><g><title><module> (uvicorn/main.py:1) (1 samples, 0.33%)</title><rect x="50.3333%" y="468" width="0.3333%" height="15" fill="rgb(251,55,41)" fg:x="151" fg:w="1"/><text x="50.5833%" y="478.50"></text></g><g><title>decorator (click/decorators.py:372) (1 samples, 0.33%)</title><rect x="50.3333%" y="484" width="0.3333%" height="15" fill="rgb(242,34,40)" fg:x="151" fg:w="1"/><text x="50.5833%" y="494.50"></text></g><g><title>__init__ (click/core.py:2512) (1 samples, 0.33%)</title><rect x="50.3333%" y="500" width="0.3333%" height="15" fill="rgb(215,42,17)" fg:x="151" fg:w="1"/><text x="50.5833%" y="510.50"></text></g><g><title><module> (dask_sql/__init__.py:3) (132 samples, 44.00%)</title><rect x="7.3333%" y="180" width="44.0000%" height="15" fill="rgb(207,44,46)" fg:x="22" fg:w="132"/><text x="7.5833%" y="190.50"><module> (dask_sql/__init__.py:3)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="50.6667%" y="196" width="0.6667%" height="15" fill="rgb(211,206,28)" fg:x="152" fg:w="2"/><text x="50.9167%" y="206.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="50.6667%" y="212" width="0.6667%" height="15" fill="rgb(237,167,16)" fg:x="152" fg:w="2"/><text x="50.9167%" y="222.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="50.6667%" y="228" width="0.6667%" height="15" fill="rgb(233,66,6)" fg:x="152" fg:w="2"/><text x="50.9167%" y="238.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="50.6667%" y="244" width="0.6667%" height="15" fill="rgb(246,123,29)" fg:x="152" fg:w="2"/><text x="50.9167%" y="254.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="50.6667%" y="260" width="0.6667%" height="15" fill="rgb(209,62,40)" fg:x="152" fg:w="2"/><text x="50.9167%" y="270.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="50.6667%" y="276" width="0.6667%" height="15" fill="rgb(218,4,25)" fg:x="152" fg:w="2"/><text x="50.9167%" y="286.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="50.6667%" y="292" width="0.6667%" height="15" fill="rgb(253,91,49)" fg:x="152" fg:w="2"/><text x="50.9167%" y="302.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="50.6667%" y="308" width="0.6667%" height="15" fill="rgb(228,155,29)" fg:x="152" fg:w="2"/><text x="50.9167%" y="318.50"></text></g><g><title>BigQuery (sqlglot/dialects/bigquery.py:177) (1 samples, 0.33%)</title><rect x="51.3333%" y="724" width="0.3333%" height="15" fill="rgb(243,57,37)" fg:x="154" fg:w="1"/><text x="51.5833%" y="734.50"></text></g><g><title>Generator (sqlglot/dialects/bigquery.py:422) (1 samples, 0.33%)</title><rect x="51.3333%" y="740" width="0.3333%" height="15" fill="rgb(244,167,17)" fg:x="154" fg:w="1"/><text x="51.5833%" y="750.50"></text></g><g><title><module> (sqlglot/dialects/bigquery.py:1) (3 samples, 1.00%)</title><rect x="51.3333%" y="708" width="1.0000%" height="15" fill="rgb(207,181,38)" fg:x="154" fg:w="3"/><text x="51.5833%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="51.6667%" y="724" width="0.6667%" height="15" fill="rgb(211,8,23)" fg:x="155" fg:w="2"/><text x="51.9167%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="51.6667%" y="740" width="0.6667%" height="15" fill="rgb(235,11,44)" fg:x="155" fg:w="2"/><text x="51.9167%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="51.6667%" y="756" width="0.6667%" height="15" fill="rgb(248,18,52)" fg:x="155" fg:w="2"/><text x="51.9167%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="51.6667%" y="772" width="0.6667%" height="15" fill="rgb(208,4,7)" fg:x="155" fg:w="2"/><text x="51.9167%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="51.6667%" y="788" width="0.6667%" height="15" fill="rgb(240,17,39)" fg:x="155" fg:w="2"/><text x="51.9167%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="51.6667%" y="804" width="0.6667%" height="15" fill="rgb(207,170,3)" fg:x="155" fg:w="2"/><text x="51.9167%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="51.6667%" y="820" width="0.6667%" height="15" fill="rgb(236,100,52)" fg:x="155" fg:w="2"/><text x="51.9167%" y="830.50"></text></g><g><title><module> (sqlglot/parser.py:1) (2 samples, 0.67%)</title><rect x="51.6667%" y="836" width="0.6667%" height="15" fill="rgb(246,78,51)" fg:x="155" fg:w="2"/><text x="51.9167%" y="846.50"></text></g><g><title>Parser (sqlglot/parser.py:59) (2 samples, 0.67%)</title><rect x="51.6667%" y="852" width="0.6667%" height="15" fill="rgb(211,17,15)" fg:x="155" fg:w="2"/><text x="51.9167%" y="862.50"></text></g><g><title><dictcomp> (sqlglot/parser.py:75) (2 samples, 0.67%)</title><rect x="51.6667%" y="868" width="0.6667%" height="15" fill="rgb(209,59,46)" fg:x="155" fg:w="2"/><text x="51.9167%" y="878.50"></text></g><g><title><module> (sqlglot/dialects/clickhouse.py:1) (1 samples, 0.33%)</title><rect x="52.3333%" y="708" width="0.3333%" height="15" fill="rgb(210,92,25)" fg:x="157" fg:w="1"/><text x="52.5833%" y="718.50"></text></g><g><title>ClickHouse (sqlglot/dialects/clickhouse.py:34) (1 samples, 0.33%)</title><rect x="52.3333%" y="724" width="0.3333%" height="15" fill="rgb(238,174,52)" fg:x="157" fg:w="1"/><text x="52.5833%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.33%)</title><rect x="52.3333%" y="740" width="0.3333%" height="15" fill="rgb(230,73,7)" fg:x="157" fg:w="1"/><text x="52.5833%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.33%)</title><rect x="52.3333%" y="756" width="0.3333%" height="15" fill="rgb(243,124,40)" fg:x="157" fg:w="1"/><text x="52.5833%" y="766.50"></text></g><g><title><module> (sqlglot/dialects/databricks.py:1) (1 samples, 0.33%)</title><rect x="52.6667%" y="708" width="0.3333%" height="15" fill="rgb(244,170,11)" fg:x="158" fg:w="1"/><text x="52.9167%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="52.6667%" y="724" width="0.3333%" height="15" fill="rgb(207,114,54)" fg:x="158" fg:w="1"/><text x="52.9167%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="52.6667%" y="740" width="0.3333%" height="15" fill="rgb(205,42,20)" fg:x="158" fg:w="1"/><text x="52.9167%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="52.6667%" y="756" width="0.3333%" height="15" fill="rgb(230,30,28)" fg:x="158" fg:w="1"/><text x="52.9167%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="52.6667%" y="772" width="0.3333%" height="15" fill="rgb(205,73,54)" fg:x="158" fg:w="1"/><text x="52.9167%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="52.6667%" y="788" width="0.3333%" height="15" fill="rgb(254,227,23)" fg:x="158" fg:w="1"/><text x="52.9167%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/tsql.py:1) (1 samples, 0.33%)</title><rect x="52.6667%" y="804" width="0.3333%" height="15" fill="rgb(228,202,34)" fg:x="158" fg:w="1"/><text x="52.9167%" y="814.50"></text></g><g><title>__new__ (sqlglot/dialects/dialect.py:72) (1 samples, 0.33%)</title><rect x="52.6667%" y="820" width="0.3333%" height="15" fill="rgb(222,225,37)" fg:x="158" fg:w="1"/><text x="52.9167%" y="830.50"></text></g><g><title><module> (sqlglot/dialects/doris.py:1) (1 samples, 0.33%)</title><rect x="53.0000%" y="708" width="0.3333%" height="15" fill="rgb(221,14,54)" fg:x="159" fg:w="1"/><text x="53.2500%" y="718.50"></text></g><g><title>__new__ (sqlglot/dialects/dialect.py:72) (1 samples, 0.33%)</title><rect x="53.0000%" y="724" width="0.3333%" height="15" fill="rgb(254,102,2)" fg:x="159" fg:w="1"/><text x="53.2500%" y="734.50"></text></g><g><title><module> (sqlglot/dialects/drill.py:1) (1 samples, 0.33%)</title><rect x="53.3333%" y="708" width="0.3333%" height="15" fill="rgb(232,104,17)" fg:x="160" fg:w="1"/><text x="53.5833%" y="718.50"></text></g><g><title>Drill (sqlglot/dialects/drill.py:36) (1 samples, 0.33%)</title><rect x="53.3333%" y="724" width="0.3333%" height="15" fill="rgb(250,220,14)" fg:x="160" fg:w="1"/><text x="53.5833%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.33%)</title><rect x="53.3333%" y="740" width="0.3333%" height="15" fill="rgb(241,158,9)" fg:x="160" fg:w="1"/><text x="53.5833%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.33%)</title><rect x="53.3333%" y="756" width="0.3333%" height="15" fill="rgb(246,9,43)" fg:x="160" fg:w="1"/><text x="53.5833%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.33%)</title><rect x="53.3333%" y="772" width="0.3333%" height="15" fill="rgb(206,73,33)" fg:x="160" fg:w="1"/><text x="53.5833%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.33%)</title><rect x="53.3333%" y="788" width="0.3333%" height="15" fill="rgb(222,79,8)" fg:x="160" fg:w="1"/><text x="53.5833%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.67%)</title><rect x="51.3333%" y="692" width="2.6667%" height="15" fill="rgb(234,8,54)" fg:x="154" fg:w="8"/><text x="51.5833%" y="702.50">_c..</text></g><g><title><module> (sqlglot/dialects/oracle.py:1) (1 samples, 0.33%)</title><rect x="53.6667%" y="708" width="0.3333%" height="15" fill="rgb(209,134,38)" fg:x="161" fg:w="1"/><text x="53.9167%" y="718.50"></text></g><g><title>Oracle (sqlglot/dialects/oracle.py:33) (1 samples, 0.33%)</title><rect x="53.6667%" y="724" width="0.3333%" height="15" fill="rgb(230,127,29)" fg:x="161" fg:w="1"/><text x="53.9167%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.33%)</title><rect x="53.6667%" y="740" width="0.3333%" height="15" fill="rgb(242,44,41)" fg:x="161" fg:w="1"/><text x="53.9167%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.33%)</title><rect x="53.6667%" y="756" width="0.3333%" height="15" fill="rgb(222,56,43)" fg:x="161" fg:w="1"/><text x="53.9167%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="51.3333%" y="372" width="3.0000%" height="15" fill="rgb(238,39,47)" fg:x="154" fg:w="9"/><text x="51.5833%" y="382.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="51.3333%" y="388" width="3.0000%" height="15" fill="rgb(226,79,43)" fg:x="154" fg:w="9"/><text x="51.5833%" y="398.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="51.3333%" y="404" width="3.0000%" height="15" fill="rgb(242,105,53)" fg:x="154" fg:w="9"/><text x="51.5833%" y="414.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="51.3333%" y="420" width="3.0000%" height="15" fill="rgb(251,132,46)" fg:x="154" fg:w="9"/><text x="51.5833%" y="430.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="51.3333%" y="436" width="3.0000%" height="15" fill="rgb(231,77,14)" fg:x="154" fg:w="9"/><text x="51.5833%" y="446.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="51.3333%" y="452" width="3.0000%" height="15" fill="rgb(240,135,9)" fg:x="154" fg:w="9"/><text x="51.5833%" y="462.50">_ca..</text></g><g><title><module> (sqlglot/__init__.py:1) (9 samples, 3.00%)</title><rect x="51.3333%" y="468" width="3.0000%" height="15" fill="rgb(248,109,14)" fg:x="154" fg:w="9"/><text x="51.5833%" y="478.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="51.3333%" y="484" width="3.0000%" height="15" fill="rgb(227,146,52)" fg:x="154" fg:w="9"/><text x="51.5833%" y="494.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="51.3333%" y="500" width="3.0000%" height="15" fill="rgb(232,54,3)" fg:x="154" fg:w="9"/><text x="51.5833%" y="510.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="51.3333%" y="516" width="3.0000%" height="15" fill="rgb(229,201,43)" fg:x="154" fg:w="9"/><text x="51.5833%" y="526.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="51.3333%" y="532" width="3.0000%" height="15" fill="rgb(252,161,33)" fg:x="154" fg:w="9"/><text x="51.5833%" y="542.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="51.3333%" y="548" width="3.0000%" height="15" fill="rgb(226,146,40)" fg:x="154" fg:w="9"/><text x="51.5833%" y="558.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="51.3333%" y="564" width="3.0000%" height="15" fill="rgb(219,47,25)" fg:x="154" fg:w="9"/><text x="51.5833%" y="574.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="51.3333%" y="580" width="3.0000%" height="15" fill="rgb(250,135,13)" fg:x="154" fg:w="9"/><text x="51.5833%" y="590.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="51.3333%" y="596" width="3.0000%" height="15" fill="rgb(219,229,18)" fg:x="154" fg:w="9"/><text x="51.5833%" y="606.50">_ca..</text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (9 samples, 3.00%)</title><rect x="51.3333%" y="612" width="3.0000%" height="15" fill="rgb(217,152,27)" fg:x="154" fg:w="9"/><text x="51.5833%" y="622.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="51.3333%" y="628" width="3.0000%" height="15" fill="rgb(225,71,47)" fg:x="154" fg:w="9"/><text x="51.5833%" y="638.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="51.3333%" y="644" width="3.0000%" height="15" fill="rgb(220,139,14)" fg:x="154" fg:w="9"/><text x="51.5833%" y="654.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="51.3333%" y="660" width="3.0000%" height="15" fill="rgb(247,54,32)" fg:x="154" fg:w="9"/><text x="51.5833%" y="670.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="51.3333%" y="676" width="3.0000%" height="15" fill="rgb(252,131,39)" fg:x="154" fg:w="9"/><text x="51.5833%" y="686.50">exe..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="54.0000%" y="692" width="0.3333%" height="15" fill="rgb(210,108,39)" fg:x="162" fg:w="1"/><text x="54.2500%" y="702.50"></text></g><g><title>_classify_pyc (<frozen importlib._bootstrap_external>:560) (1 samples, 0.33%)</title><rect x="54.0000%" y="708" width="0.3333%" height="15" fill="rgb(205,23,29)" fg:x="162" fg:w="1"/><text x="54.2500%" y="718.50"></text></g><g><title><module> (qarray/core.py:1) (11 samples, 3.67%)</title><rect x="51.3333%" y="276" width="3.6667%" height="15" fill="rgb(246,139,46)" fg:x="154" fg:w="11"/><text x="51.5833%" y="286.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.67%)</title><rect x="51.3333%" y="292" width="3.6667%" height="15" fill="rgb(250,81,26)" fg:x="154" fg:w="11"/><text x="51.5833%" y="302.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.67%)</title><rect x="51.3333%" y="308" width="3.6667%" height="15" fill="rgb(214,104,7)" fg:x="154" fg:w="11"/><text x="51.5833%" y="318.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="51.3333%" y="324" width="3.6667%" height="15" fill="rgb(233,189,8)" fg:x="154" fg:w="11"/><text x="51.5833%" y="334.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.67%)</title><rect x="51.3333%" y="340" width="3.6667%" height="15" fill="rgb(228,141,17)" fg:x="154" fg:w="11"/><text x="51.5833%" y="350.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.67%)</title><rect x="51.3333%" y="356" width="3.6667%" height="15" fill="rgb(247,157,1)" fg:x="154" fg:w="11"/><text x="51.5833%" y="366.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="54.3333%" y="372" width="0.6667%" height="15" fill="rgb(249,225,5)" fg:x="163" fg:w="2"/><text x="54.5833%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="54.3333%" y="388" width="0.6667%" height="15" fill="rgb(242,55,13)" fg:x="163" fg:w="2"/><text x="54.5833%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="54.3333%" y="404" width="0.6667%" height="15" fill="rgb(230,49,50)" fg:x="163" fg:w="2"/><text x="54.5833%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (2 samples, 0.67%)</title><rect x="54.3333%" y="420" width="0.6667%" height="15" fill="rgb(241,111,38)" fg:x="163" fg:w="2"/><text x="54.5833%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="54.3333%" y="436" width="0.6667%" height="15" fill="rgb(252,155,4)" fg:x="163" fg:w="2"/><text x="54.5833%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="54.3333%" y="452" width="0.6667%" height="15" fill="rgb(212,69,32)" fg:x="163" fg:w="2"/><text x="54.5833%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="54.3333%" y="468" width="0.6667%" height="15" fill="rgb(243,107,47)" fg:x="163" fg:w="2"/><text x="54.5833%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="54.3333%" y="484" width="0.6667%" height="15" fill="rgb(247,130,12)" fg:x="163" fg:w="2"/><text x="54.5833%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="54.3333%" y="500" width="0.6667%" height="15" fill="rgb(233,74,16)" fg:x="163" fg:w="2"/><text x="54.5833%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (2 samples, 0.67%)</title><rect x="54.3333%" y="516" width="0.6667%" height="15" fill="rgb(208,58,18)" fg:x="163" fg:w="2"/><text x="54.5833%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="54.3333%" y="532" width="0.6667%" height="15" fill="rgb(242,225,1)" fg:x="163" fg:w="2"/><text x="54.5833%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="54.3333%" y="548" width="0.6667%" height="15" fill="rgb(249,39,40)" fg:x="163" fg:w="2"/><text x="54.5833%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="54.3333%" y="564" width="0.6667%" height="15" fill="rgb(207,72,44)" fg:x="163" fg:w="2"/><text x="54.5833%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="54.3333%" y="580" width="0.6667%" height="15" fill="rgb(215,193,12)" fg:x="163" fg:w="2"/><text x="54.5833%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="54.3333%" y="596" width="0.6667%" height="15" fill="rgb(248,41,39)" fg:x="163" fg:w="2"/><text x="54.5833%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (2 samples, 0.67%)</title><rect x="54.3333%" y="612" width="0.6667%" height="15" fill="rgb(253,85,4)" fg:x="163" fg:w="2"/><text x="54.5833%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="54.3333%" y="628" width="0.6667%" height="15" fill="rgb(243,70,31)" fg:x="163" fg:w="2"/><text x="54.5833%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="54.3333%" y="644" width="0.6667%" height="15" fill="rgb(253,195,26)" fg:x="163" fg:w="2"/><text x="54.5833%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="54.3333%" y="660" width="0.6667%" height="15" fill="rgb(243,42,11)" fg:x="163" fg:w="2"/><text x="54.5833%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="54.3333%" y="676" width="0.6667%" height="15" fill="rgb(239,66,17)" fg:x="163" fg:w="2"/><text x="54.5833%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="54.3333%" y="692" width="0.6667%" height="15" fill="rgb(217,132,21)" fg:x="163" fg:w="2"/><text x="54.5833%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (2 samples, 0.67%)</title><rect x="54.3333%" y="708" width="0.6667%" height="15" fill="rgb(252,202,21)" fg:x="163" fg:w="2"/><text x="54.5833%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="54.6667%" y="724" width="0.3333%" height="15" fill="rgb(233,98,36)" fg:x="164" fg:w="1"/><text x="54.9167%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="54.6667%" y="740" width="0.3333%" height="15" fill="rgb(216,153,54)" fg:x="164" fg:w="1"/><text x="54.9167%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="54.6667%" y="756" width="0.3333%" height="15" fill="rgb(250,99,7)" fg:x="164" fg:w="1"/><text x="54.9167%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="55.0000%" y="388" width="0.3333%" height="15" fill="rgb(207,56,50)" fg:x="165" fg:w="1"/><text x="55.2500%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="55.0000%" y="404" width="0.3333%" height="15" fill="rgb(244,61,34)" fg:x="165" fg:w="1"/><text x="55.2500%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="55.0000%" y="420" width="0.3333%" height="15" fill="rgb(241,50,38)" fg:x="165" fg:w="1"/><text x="55.2500%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="55.0000%" y="436" width="0.3333%" height="15" fill="rgb(212,166,30)" fg:x="165" fg:w="1"/><text x="55.2500%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="55.0000%" y="452" width="0.3333%" height="15" fill="rgb(249,127,32)" fg:x="165" fg:w="1"/><text x="55.2500%" y="462.50"></text></g><g><title><module> (dask/dataframe/groupby.py:1) (1 samples, 0.33%)</title><rect x="55.0000%" y="468" width="0.3333%" height="15" fill="rgb(209,103,0)" fg:x="165" fg:w="1"/><text x="55.2500%" y="478.50"></text></g><g><title>_GroupBy (dask/dataframe/groupby.py:1390) (1 samples, 0.33%)</title><rect x="55.0000%" y="484" width="0.3333%" height="15" fill="rgb(238,209,51)" fg:x="165" fg:w="1"/><text x="55.2500%" y="494.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.33%)</title><rect x="55.0000%" y="500" width="0.3333%" height="15" fill="rgb(237,56,23)" fg:x="165" fg:w="1"/><text x="55.2500%" y="510.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="55.3333%" y="1252" width="0.3333%" height="15" fill="rgb(215,153,46)" fg:x="166" fg:w="1"/><text x="55.5833%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="55.3333%" y="1268" width="0.3333%" height="15" fill="rgb(224,49,31)" fg:x="166" fg:w="1"/><text x="55.5833%" y="1278.50"></text></g><g><title><module> (scipy/sparse/linalg/_eigen/__init__.py:1) (3 samples, 1.00%)</title><rect x="55.6667%" y="1476" width="1.0000%" height="15" fill="rgb(250,18,42)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="55.6667%" y="1492" width="1.0000%" height="15" fill="rgb(215,176,39)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="55.6667%" y="1508" width="1.0000%" height="15" fill="rgb(223,77,29)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="55.6667%" y="1524" width="1.0000%" height="15" fill="rgb(234,94,52)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="55.6667%" y="1540" width="1.0000%" height="15" fill="rgb(220,154,50)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="55.6667%" y="1556" width="1.0000%" height="15" fill="rgb(212,11,10)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1566.50"></text></g><g><title><module> (scipy/sparse/linalg/_eigen/arpack/__init__.py:1) (3 samples, 1.00%)</title><rect x="55.6667%" y="1572" width="1.0000%" height="15" fill="rgb(205,166,19)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="55.6667%" y="1588" width="1.0000%" height="15" fill="rgb(244,198,16)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="55.6667%" y="1604" width="1.0000%" height="15" fill="rgb(219,69,12)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="55.6667%" y="1620" width="1.0000%" height="15" fill="rgb(245,30,7)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="55.6667%" y="1636" width="1.0000%" height="15" fill="rgb(218,221,48)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="55.6667%" y="1652" width="1.0000%" height="15" fill="rgb(216,66,15)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1662.50"></text></g><g><title><module> (scipy/sparse/linalg/_eigen/arpack/arpack.py:1) (3 samples, 1.00%)</title><rect x="55.6667%" y="1668" width="1.0000%" height="15" fill="rgb(226,122,50)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="55.6667%" y="1684" width="1.0000%" height="15" fill="rgb(239,156,16)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="55.6667%" y="1700" width="1.0000%" height="15" fill="rgb(224,27,38)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="55.6667%" y="1716" width="1.0000%" height="15" fill="rgb(224,39,27)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="55.6667%" y="1732" width="1.0000%" height="15" fill="rgb(215,92,29)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="55.6667%" y="1748" width="1.0000%" height="15" fill="rgb(207,159,16)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1758.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.00%)</title><rect x="55.6667%" y="1764" width="1.0000%" height="15" fill="rgb(238,163,47)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1774.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.00%)</title><rect x="55.6667%" y="1780" width="1.0000%" height="15" fill="rgb(219,91,49)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1790.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="55.6667%" y="1796" width="1.0000%" height="15" fill="rgb(227,167,31)" fg:x="167" fg:w="3"/><text x="55.9167%" y="1806.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (6 samples, 2.00%)</title><rect x="56.6667%" y="1572" width="2.0000%" height="15" fill="rgb(234,80,54)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1582.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.00%)</title><rect x="56.6667%" y="1588" width="2.0000%" height="15" fill="rgb(212,114,2)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.00%)</title><rect x="56.6667%" y="1604" width="2.0000%" height="15" fill="rgb(234,50,24)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1614.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.00%)</title><rect x="56.6667%" y="1620" width="2.0000%" height="15" fill="rgb(221,68,8)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1630.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.00%)</title><rect x="56.6667%" y="1636" width="2.0000%" height="15" fill="rgb(254,180,31)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1646.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (6 samples, 2.00%)</title><rect x="56.6667%" y="1652" width="2.0000%" height="15" fill="rgb(247,130,50)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1662.50">g..</text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (6 samples, 2.00%)</title><rect x="56.6667%" y="1668" width="2.0000%" height="15" fill="rgb(211,109,4)" fg:x="170" fg:w="6"/><text x="56.9167%" y="1678.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.67%)</title><rect x="55.6667%" y="1252" width="3.6667%" height="15" fill="rgb(238,50,21)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1262.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="55.6667%" y="1268" width="3.6667%" height="15" fill="rgb(225,57,45)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1278.50">_cal..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (11 samples, 3.67%)</title><rect x="55.6667%" y="1284" width="3.6667%" height="15" fill="rgb(209,196,50)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1294.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.67%)</title><rect x="55.6667%" y="1300" width="3.6667%" height="15" fill="rgb(242,140,13)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1310.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.67%)</title><rect x="55.6667%" y="1316" width="3.6667%" height="15" fill="rgb(217,111,7)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1326.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.67%)</title><rect x="55.6667%" y="1332" width="3.6667%" height="15" fill="rgb(253,193,51)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1342.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.67%)</title><rect x="55.6667%" y="1348" width="3.6667%" height="15" fill="rgb(252,70,29)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1358.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="55.6667%" y="1364" width="3.6667%" height="15" fill="rgb(232,127,12)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1374.50">_cal..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (11 samples, 3.67%)</title><rect x="55.6667%" y="1380" width="3.6667%" height="15" fill="rgb(211,180,21)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1390.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 3.67%)</title><rect x="55.6667%" y="1396" width="3.6667%" height="15" fill="rgb(229,72,13)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1406.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 3.67%)</title><rect x="55.6667%" y="1412" width="3.6667%" height="15" fill="rgb(240,211,49)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1422.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 3.67%)</title><rect x="55.6667%" y="1428" width="3.6667%" height="15" fill="rgb(219,149,40)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1438.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 3.67%)</title><rect x="55.6667%" y="1444" width="3.6667%" height="15" fill="rgb(210,127,46)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1454.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 3.67%)</title><rect x="55.6667%" y="1460" width="3.6667%" height="15" fill="rgb(220,106,7)" fg:x="167" fg:w="11"/><text x="55.9167%" y="1470.50">_cal..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (8 samples, 2.67%)</title><rect x="56.6667%" y="1476" width="2.6667%" height="15" fill="rgb(249,31,22)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1486.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.67%)</title><rect x="56.6667%" y="1492" width="2.6667%" height="15" fill="rgb(253,1,49)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1502.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.67%)</title><rect x="56.6667%" y="1508" width="2.6667%" height="15" fill="rgb(227,144,33)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1518.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.67%)</title><rect x="56.6667%" y="1524" width="2.6667%" height="15" fill="rgb(249,163,44)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1534.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.67%)</title><rect x="56.6667%" y="1540" width="2.6667%" height="15" fill="rgb(234,15,39)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1550.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.67%)</title><rect x="56.6667%" y="1556" width="2.6667%" height="15" fill="rgb(207,66,16)" fg:x="170" fg:w="8"/><text x="56.9167%" y="1566.50">_c..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (2 samples, 0.67%)</title><rect x="58.6667%" y="1572" width="0.6667%" height="15" fill="rgb(233,112,24)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="58.6667%" y="1588" width="0.6667%" height="15" fill="rgb(230,90,22)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="58.6667%" y="1604" width="0.6667%" height="15" fill="rgb(229,61,13)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="58.6667%" y="1620" width="0.6667%" height="15" fill="rgb(225,57,24)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="58.6667%" y="1636" width="0.6667%" height="15" fill="rgb(208,169,48)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="58.6667%" y="1652" width="0.6667%" height="15" fill="rgb(244,218,51)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1662.50"></text></g><g><title><module> (scipy/linalg/__init__.py:1) (2 samples, 0.67%)</title><rect x="58.6667%" y="1668" width="0.6667%" height="15" fill="rgb(214,148,10)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="58.6667%" y="1684" width="0.6667%" height="15" fill="rgb(225,174,27)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="58.6667%" y="1700" width="0.6667%" height="15" fill="rgb(230,96,26)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="58.6667%" y="1716" width="0.6667%" height="15" fill="rgb(232,10,30)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="58.6667%" y="1732" width="0.6667%" height="15" fill="rgb(222,8,50)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="58.6667%" y="1748" width="0.6667%" height="15" fill="rgb(213,81,27)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_matfuncs.py:4) (2 samples, 0.67%)</title><rect x="58.6667%" y="1764" width="0.6667%" height="15" fill="rgb(245,50,10)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="58.6667%" y="1780" width="0.6667%" height="15" fill="rgb(216,100,18)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="58.6667%" y="1796" width="0.6667%" height="15" fill="rgb(236,147,54)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="58.6667%" y="1812" width="0.6667%" height="15" fill="rgb(205,143,26)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="58.6667%" y="1828" width="0.6667%" height="15" fill="rgb(236,26,9)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="58.6667%" y="1844" width="0.6667%" height="15" fill="rgb(221,165,53)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1854.50"></text></g><g><title><module> (scipy/linalg/_matfuncs_sqrtm.py:1) (2 samples, 0.67%)</title><rect x="58.6667%" y="1860" width="0.6667%" height="15" fill="rgb(214,110,17)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1870.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="58.6667%" y="1876" width="0.6667%" height="15" fill="rgb(237,197,12)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1886.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="58.6667%" y="1892" width="0.6667%" height="15" fill="rgb(205,84,17)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1902.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="58.6667%" y="1908" width="0.6667%" height="15" fill="rgb(237,18,45)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1918.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="58.6667%" y="1924" width="0.6667%" height="15" fill="rgb(221,87,14)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1934.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="58.6667%" y="1940" width="0.6667%" height="15" fill="rgb(238,186,15)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="58.6667%" y="1956" width="0.6667%" height="15" fill="rgb(208,115,11)" fg:x="176" fg:w="2"/><text x="58.9167%" y="1966.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.67%)</title><rect x="55.3333%" y="1172" width="4.6667%" height="15" fill="rgb(254,175,0)" fg:x="166" fg:w="14"/><text x="55.5833%" y="1182.50">_call..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (14 samples, 4.67%)</title><rect x="55.3333%" y="1188" width="4.6667%" height="15" fill="rgb(227,24,42)" fg:x="166" fg:w="14"/><text x="55.5833%" y="1198.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.67%)</title><rect x="55.3333%" y="1204" width="4.6667%" height="15" fill="rgb(223,211,37)" fg:x="166" fg:w="14"/><text x="55.5833%" y="1214.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.67%)</title><rect x="55.3333%" y="1220" width="4.6667%" height="15" fill="rgb(235,49,27)" fg:x="166" fg:w="14"/><text x="55.5833%" y="1230.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.67%)</title><rect x="55.3333%" y="1236" width="4.6667%" height="15" fill="rgb(254,97,51)" fg:x="166" fg:w="14"/><text x="55.5833%" y="1246.50">_load..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="59.3333%" y="1252" width="0.6667%" height="15" fill="rgb(249,51,40)" fg:x="178" fg:w="2"/><text x="59.5833%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="59.3333%" y="1268" width="0.6667%" height="15" fill="rgb(210,128,45)" fg:x="178" fg:w="2"/><text x="59.5833%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="59.3333%" y="1284" width="0.6667%" height="15" fill="rgb(224,137,50)" fg:x="178" fg:w="2"/><text x="59.5833%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="55.3333%" y="852" width="5.0000%" height="15" fill="rgb(242,15,9)" fg:x="166" fg:w="15"/><text x="55.5833%" y="862.50">_call_..</text></g><g><title><module> (dask/array/core.py:1) (15 samples, 5.00%)</title><rect x="55.3333%" y="868" width="5.0000%" height="15" fill="rgb(233,187,41)" fg:x="166" fg:w="15"/><text x="55.5833%" y="878.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.00%)</title><rect x="55.3333%" y="884" width="5.0000%" height="15" fill="rgb(227,2,29)" fg:x="166" fg:w="15"/><text x="55.5833%" y="894.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.00%)</title><rect x="55.3333%" y="900" width="5.0000%" height="15" fill="rgb(222,70,3)" fg:x="166" fg:w="15"/><text x="55.5833%" y="910.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.00%)</title><rect x="55.3333%" y="916" width="5.0000%" height="15" fill="rgb(213,11,42)" fg:x="166" fg:w="15"/><text x="55.5833%" y="926.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.00%)</title><rect x="55.3333%" y="932" width="5.0000%" height="15" fill="rgb(225,150,9)" fg:x="166" fg:w="15"/><text x="55.5833%" y="942.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="55.3333%" y="948" width="5.0000%" height="15" fill="rgb(230,162,45)" fg:x="166" fg:w="15"/><text x="55.5833%" y="958.50">_call_..</text></g><g><title><module> (dask/array/chunk_types.py:1) (15 samples, 5.00%)</title><rect x="55.3333%" y="964" width="5.0000%" height="15" fill="rgb(222,14,52)" fg:x="166" fg:w="15"/><text x="55.5833%" y="974.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.00%)</title><rect x="55.3333%" y="980" width="5.0000%" height="15" fill="rgb(254,198,14)" fg:x="166" fg:w="15"/><text x="55.5833%" y="990.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.00%)</title><rect x="55.3333%" y="996" width="5.0000%" height="15" fill="rgb(220,217,30)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1006.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.00%)</title><rect x="55.3333%" y="1012" width="5.0000%" height="15" fill="rgb(215,146,41)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1022.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.00%)</title><rect x="55.3333%" y="1028" width="5.0000%" height="15" fill="rgb(217,27,36)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1038.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="55.3333%" y="1044" width="5.0000%" height="15" fill="rgb(219,218,39)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1054.50">_call_..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (15 samples, 5.00%)</title><rect x="55.3333%" y="1060" width="5.0000%" height="15" fill="rgb(219,4,42)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1070.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 5.00%)</title><rect x="55.3333%" y="1076" width="5.0000%" height="15" fill="rgb(249,119,36)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1086.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="55.3333%" y="1092" width="5.0000%" height="15" fill="rgb(209,23,33)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1102.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 5.00%)</title><rect x="55.3333%" y="1108" width="5.0000%" height="15" fill="rgb(211,10,0)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1118.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 5.00%)</title><rect x="55.3333%" y="1124" width="5.0000%" height="15" fill="rgb(208,99,37)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1134.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 5.00%)</title><rect x="55.3333%" y="1140" width="5.0000%" height="15" fill="rgb(213,132,31)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1150.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 5.00%)</title><rect x="55.3333%" y="1156" width="5.0000%" height="15" fill="rgb(243,129,40)" fg:x="166" fg:w="15"/><text x="55.5833%" y="1166.50">exec_m..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="60.0000%" y="1172" width="0.3333%" height="15" fill="rgb(210,66,33)" fg:x="180" fg:w="1"/><text x="60.2500%" y="1182.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="60.0000%" y="1188" width="0.3333%" height="15" fill="rgb(209,189,4)" fg:x="180" fg:w="1"/><text x="60.2500%" y="1198.50"></text></g><g><title><module> (dask/array/backends.py:1) (16 samples, 5.33%)</title><rect x="55.3333%" y="772" width="5.3333%" height="15" fill="rgb(214,107,37)" fg:x="166" fg:w="16"/><text x="55.5833%" y="782.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 5.33%)</title><rect x="55.3333%" y="788" width="5.3333%" height="15" fill="rgb(245,88,54)" fg:x="166" fg:w="16"/><text x="55.5833%" y="798.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 5.33%)</title><rect x="55.3333%" y="804" width="5.3333%" height="15" fill="rgb(205,146,20)" fg:x="166" fg:w="16"/><text x="55.5833%" y="814.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 5.33%)</title><rect x="55.3333%" y="820" width="5.3333%" height="15" fill="rgb(220,161,25)" fg:x="166" fg:w="16"/><text x="55.5833%" y="830.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 5.33%)</title><rect x="55.3333%" y="836" width="5.3333%" height="15" fill="rgb(215,152,15)" fg:x="166" fg:w="16"/><text x="55.5833%" y="846.50">exec_mo..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="60.3333%" y="852" width="0.3333%" height="15" fill="rgb(233,192,44)" fg:x="181" fg:w="1"/><text x="60.5833%" y="862.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="60.3333%" y="868" width="0.3333%" height="15" fill="rgb(240,170,46)" fg:x="181" fg:w="1"/><text x="60.5833%" y="878.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (2 samples, 0.67%)</title><rect x="60.6667%" y="980" width="0.6667%" height="15" fill="rgb(207,104,33)" fg:x="182" fg:w="2"/><text x="60.9167%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.67%)</title><rect x="60.6667%" y="996" width="0.6667%" height="15" fill="rgb(219,21,39)" fg:x="182" fg:w="2"/><text x="60.9167%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.33%)</title><rect x="61.0000%" y="1012" width="0.3333%" height="15" fill="rgb(214,133,29)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1022.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.33%)</title><rect x="61.0000%" y="1028" width="0.3333%" height="15" fill="rgb(226,93,6)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.33%)</title><rect x="61.0000%" y="1044" width="0.3333%" height="15" fill="rgb(252,222,34)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.33%)</title><rect x="61.0000%" y="1060" width="0.3333%" height="15" fill="rgb(252,92,48)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.33%)</title><rect x="61.0000%" y="1076" width="0.3333%" height="15" fill="rgb(245,223,24)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1086.50"></text></g><g><title>_signature_is_functionlike (inspect.py:1878) (1 samples, 0.33%)</title><rect x="61.0000%" y="1092" width="0.3333%" height="15" fill="rgb(205,176,3)" fg:x="183" fg:w="1"/><text x="61.2500%" y="1102.50"></text></g><g><title><module> (dask/array/creation.py:1) (3 samples, 1.00%)</title><rect x="60.6667%" y="868" width="1.0000%" height="15" fill="rgb(235,151,15)" fg:x="182" fg:w="3"/><text x="60.9167%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="60.6667%" y="884" width="1.0000%" height="15" fill="rgb(237,209,11)" fg:x="182" fg:w="3"/><text x="60.9167%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="60.6667%" y="900" width="1.0000%" height="15" fill="rgb(243,227,24)" fg:x="182" fg:w="3"/><text x="60.9167%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="60.6667%" y="916" width="1.0000%" height="15" fill="rgb(239,193,16)" fg:x="182" fg:w="3"/><text x="60.9167%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="60.6667%" y="932" width="1.0000%" height="15" fill="rgb(231,27,9)" fg:x="182" fg:w="3"/><text x="60.9167%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="60.6667%" y="948" width="1.0000%" height="15" fill="rgb(219,169,10)" fg:x="182" fg:w="3"/><text x="60.9167%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (3 samples, 1.00%)</title><rect x="60.6667%" y="964" width="1.0000%" height="15" fill="rgb(244,229,43)" fg:x="182" fg:w="3"/><text x="60.9167%" y="974.50"></text></g><g><title>wrap_elemwise (dask/array/ufunc.py:15) (1 samples, 0.33%)</title><rect x="61.3333%" y="980" width="0.3333%" height="15" fill="rgb(254,38,20)" fg:x="184" fg:w="1"/><text x="61.5833%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.33%)</title><rect x="61.3333%" y="996" width="0.3333%" height="15" fill="rgb(250,47,30)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.33%)</title><rect x="61.3333%" y="1012" width="0.3333%" height="15" fill="rgb(224,124,36)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1022.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.33%)</title><rect x="61.3333%" y="1028" width="0.3333%" height="15" fill="rgb(246,68,51)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.33%)</title><rect x="61.3333%" y="1044" width="0.3333%" height="15" fill="rgb(253,43,49)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.33%)</title><rect x="61.3333%" y="1060" width="0.3333%" height="15" fill="rgb(219,54,36)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.33%)</title><rect x="61.3333%" y="1076" width="0.3333%" height="15" fill="rgb(227,133,34)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1086.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.33%)</title><rect x="61.3333%" y="1092" width="0.3333%" height="15" fill="rgb(247,227,15)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1102.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.33%)</title><rect x="61.3333%" y="1108" width="0.3333%" height="15" fill="rgb(229,96,14)" fg:x="184" fg:w="1"/><text x="61.5833%" y="1118.50"></text></g><g><title><module> (dask/array/fft.py:1) (4 samples, 1.33%)</title><rect x="60.6667%" y="772" width="1.3333%" height="15" fill="rgb(220,79,17)" fg:x="182" fg:w="4"/><text x="60.9167%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="60.6667%" y="788" width="1.3333%" height="15" fill="rgb(205,131,53)" fg:x="182" fg:w="4"/><text x="60.9167%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="60.6667%" y="804" width="1.3333%" height="15" fill="rgb(209,50,29)" fg:x="182" fg:w="4"/><text x="60.9167%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="60.6667%" y="820" width="1.3333%" height="15" fill="rgb(245,86,46)" fg:x="182" fg:w="4"/><text x="60.9167%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="60.6667%" y="836" width="1.3333%" height="15" fill="rgb(235,66,46)" fg:x="182" fg:w="4"/><text x="60.9167%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="60.6667%" y="852" width="1.3333%" height="15" fill="rgb(232,148,31)" fg:x="182" fg:w="4"/><text x="60.9167%" y="862.50"></text></g><g><title><module> (scipy/fftpack/__init__.py:1) (1 samples, 0.33%)</title><rect x="61.6667%" y="868" width="0.3333%" height="15" fill="rgb(217,149,8)" fg:x="185" fg:w="1"/><text x="61.9167%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="884" width="0.3333%" height="15" fill="rgb(209,183,11)" fg:x="185" fg:w="1"/><text x="61.9167%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="900" width="0.3333%" height="15" fill="rgb(208,55,20)" fg:x="185" fg:w="1"/><text x="61.9167%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="916" width="0.3333%" height="15" fill="rgb(218,39,14)" fg:x="185" fg:w="1"/><text x="61.9167%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="932" width="0.3333%" height="15" fill="rgb(216,169,33)" fg:x="185" fg:w="1"/><text x="61.9167%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="948" width="0.3333%" height="15" fill="rgb(233,80,24)" fg:x="185" fg:w="1"/><text x="61.9167%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (1 samples, 0.33%)</title><rect x="61.6667%" y="964" width="0.3333%" height="15" fill="rgb(213,179,31)" fg:x="185" fg:w="1"/><text x="61.9167%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="980" width="0.3333%" height="15" fill="rgb(209,19,5)" fg:x="185" fg:w="1"/><text x="61.9167%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="996" width="0.3333%" height="15" fill="rgb(219,18,35)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="1012" width="0.3333%" height="15" fill="rgb(209,169,16)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="1028" width="0.3333%" height="15" fill="rgb(245,90,51)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1044" width="0.3333%" height="15" fill="rgb(220,99,45)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (1 samples, 0.33%)</title><rect x="61.6667%" y="1060" width="0.3333%" height="15" fill="rgb(249,89,25)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="1076" width="0.3333%" height="15" fill="rgb(239,193,0)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="1092" width="0.3333%" height="15" fill="rgb(231,126,1)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="1108" width="0.3333%" height="15" fill="rgb(243,166,3)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="1124" width="0.3333%" height="15" fill="rgb(223,22,34)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1140" width="0.3333%" height="15" fill="rgb(251,52,51)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1150.50"></text></g><g><title><module> (scipy/fft/_fftlog.py:1) (1 samples, 0.33%)</title><rect x="61.6667%" y="1156" width="0.3333%" height="15" fill="rgb(221,165,28)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="1172" width="0.3333%" height="15" fill="rgb(218,121,47)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="1188" width="0.3333%" height="15" fill="rgb(209,120,9)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="1204" width="0.3333%" height="15" fill="rgb(236,68,12)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="1220" width="0.3333%" height="15" fill="rgb(225,194,26)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1236" width="0.3333%" height="15" fill="rgb(231,84,39)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1246.50"></text></g><g><title><module> (scipy/special/__init__.py:1) (1 samples, 0.33%)</title><rect x="61.6667%" y="1252" width="0.3333%" height="15" fill="rgb(210,11,45)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1262.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="61.6667%" y="1268" width="0.3333%" height="15" fill="rgb(224,54,52)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1284" width="0.3333%" height="15" fill="rgb(238,102,14)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="1300" width="0.3333%" height="15" fill="rgb(243,160,52)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="1316" width="0.3333%" height="15" fill="rgb(216,114,19)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="1332" width="0.3333%" height="15" fill="rgb(244,166,37)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="1348" width="0.3333%" height="15" fill="rgb(246,29,44)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1364" width="0.3333%" height="15" fill="rgb(215,56,53)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1374.50"></text></g><g><title><module> (scipy/special/add_newdocs.py:3) (1 samples, 0.33%)</title><rect x="61.6667%" y="1380" width="0.3333%" height="15" fill="rgb(217,60,2)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1390.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="61.6667%" y="1396" width="0.3333%" height="15" fill="rgb(207,26,24)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="61.6667%" y="1412" width="0.3333%" height="15" fill="rgb(252,210,15)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1422.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="61.6667%" y="1428" width="0.3333%" height="15" fill="rgb(253,209,26)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1438.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="61.6667%" y="1444" width="0.3333%" height="15" fill="rgb(238,170,14)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1454.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="61.6667%" y="1460" width="0.3333%" height="15" fill="rgb(216,178,15)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1470.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="61.6667%" y="1476" width="0.3333%" height="15" fill="rgb(250,197,2)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1486.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="61.6667%" y="1492" width="0.3333%" height="15" fill="rgb(212,70,42)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1502.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="61.6667%" y="1508" width="0.3333%" height="15" fill="rgb(227,213,9)" fg:x="185" fg:w="1"/><text x="61.9167%" y="1518.50"></text></g><g><title><module> (dask/array/reductions.py:1) (1 samples, 0.33%)</title><rect x="62.0000%" y="868" width="0.3333%" height="15" fill="rgb(245,99,25)" fg:x="186" fg:w="1"/><text x="62.2500%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.33%)</title><rect x="62.0000%" y="884" width="0.3333%" height="15" fill="rgb(250,82,29)" fg:x="186" fg:w="1"/><text x="62.2500%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.33%)</title><rect x="62.0000%" y="900" width="0.3333%" height="15" fill="rgb(241,226,54)" fg:x="186" fg:w="1"/><text x="62.2500%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.33%)</title><rect x="62.0000%" y="916" width="0.3333%" height="15" fill="rgb(221,99,41)" fg:x="186" fg:w="1"/><text x="62.2500%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.33%)</title><rect x="62.0000%" y="932" width="0.3333%" height="15" fill="rgb(213,90,21)" fg:x="186" fg:w="1"/><text x="62.2500%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.33%)</title><rect x="62.0000%" y="948" width="0.3333%" height="15" fill="rgb(205,208,24)" fg:x="186" fg:w="1"/><text x="62.2500%" y="958.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="62.0000%" y="964" width="0.3333%" height="15" fill="rgb(246,31,12)" fg:x="186" fg:w="1"/><text x="62.2500%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 7.33%)</title><rect x="55.3333%" y="548" width="7.3333%" height="15" fill="rgb(213,154,6)" fg:x="166" fg:w="22"/><text x="55.5833%" y="558.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 7.33%)</title><rect x="55.3333%" y="564" width="7.3333%" height="15" fill="rgb(222,163,29)" fg:x="166" fg:w="22"/><text x="55.5833%" y="574.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (22 samples, 7.33%)</title><rect x="55.3333%" y="580" width="7.3333%" height="15" fill="rgb(227,201,8)" fg:x="166" fg:w="22"/><text x="55.5833%" y="590.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (22 samples, 7.33%)</title><rect x="55.3333%" y="596" width="7.3333%" height="15" fill="rgb(233,9,32)" fg:x="166" fg:w="22"/><text x="55.5833%" y="606.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (22 samples, 7.33%)</title><rect x="55.3333%" y="612" width="7.3333%" height="15" fill="rgb(217,54,24)" fg:x="166" fg:w="22"/><text x="55.5833%" y="622.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 7.33%)</title><rect x="55.3333%" y="628" width="7.3333%" height="15" fill="rgb(235,192,0)" fg:x="166" fg:w="22"/><text x="55.5833%" y="638.50">_call_with..</text></g><g><title><module> (dask/array/__init__.py:1) (22 samples, 7.33%)</title><rect x="55.3333%" y="644" width="7.3333%" height="15" fill="rgb(235,45,9)" fg:x="166" fg:w="22"/><text x="55.5833%" y="654.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (22 samples, 7.33%)</title><rect x="55.3333%" y="660" width="7.3333%" height="15" fill="rgb(246,42,40)" fg:x="166" fg:w="22"/><text x="55.5833%" y="670.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 7.33%)</title><rect x="55.3333%" y="676" width="7.3333%" height="15" fill="rgb(248,111,24)" fg:x="166" fg:w="22"/><text x="55.5833%" y="686.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (22 samples, 7.33%)</title><rect x="55.3333%" y="692" width="7.3333%" height="15" fill="rgb(249,65,22)" fg:x="166" fg:w="22"/><text x="55.5833%" y="702.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (22 samples, 7.33%)</title><rect x="55.3333%" y="708" width="7.3333%" height="15" fill="rgb(238,111,51)" fg:x="166" fg:w="22"/><text x="55.5833%" y="718.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (22 samples, 7.33%)</title><rect x="55.3333%" y="724" width="7.3333%" height="15" fill="rgb(250,118,22)" fg:x="166" fg:w="22"/><text x="55.5833%" y="734.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (22 samples, 7.33%)</title><rect x="55.3333%" y="740" width="7.3333%" height="15" fill="rgb(234,84,26)" fg:x="166" fg:w="22"/><text x="55.5833%" y="750.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (22 samples, 7.33%)</title><rect x="55.3333%" y="756" width="7.3333%" height="15" fill="rgb(243,172,12)" fg:x="166" fg:w="22"/><text x="55.5833%" y="766.50">_call_with..</text></g><g><title><module> (dask/array/ma.py:1) (2 samples, 0.67%)</title><rect x="62.0000%" y="772" width="0.6667%" height="15" fill="rgb(236,150,49)" fg:x="186" fg:w="2"/><text x="62.2500%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="62.0000%" y="788" width="0.6667%" height="15" fill="rgb(225,197,26)" fg:x="186" fg:w="2"/><text x="62.2500%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="62.0000%" y="804" width="0.6667%" height="15" fill="rgb(214,17,42)" fg:x="186" fg:w="2"/><text x="62.2500%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="62.0000%" y="820" width="0.6667%" height="15" fill="rgb(224,165,40)" fg:x="186" fg:w="2"/><text x="62.2500%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="62.0000%" y="836" width="0.6667%" height="15" fill="rgb(246,100,4)" fg:x="186" fg:w="2"/><text x="62.2500%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="62.0000%" y="852" width="0.6667%" height="15" fill="rgb(222,103,0)" fg:x="186" fg:w="2"/><text x="62.2500%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (1 samples, 0.33%)</title><rect x="62.3333%" y="868" width="0.3333%" height="15" fill="rgb(227,189,26)" fg:x="187" fg:w="1"/><text x="62.5833%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="62.3333%" y="884" width="0.3333%" height="15" fill="rgb(214,202,17)" fg:x="187" fg:w="1"/><text x="62.5833%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="62.3333%" y="900" width="0.3333%" height="15" fill="rgb(229,111,3)" fg:x="187" fg:w="1"/><text x="62.5833%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="62.3333%" y="916" width="0.3333%" height="15" fill="rgb(229,172,15)" fg:x="187" fg:w="1"/><text x="62.5833%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="62.3333%" y="932" width="0.3333%" height="15" fill="rgb(230,224,35)" fg:x="187" fg:w="1"/><text x="62.5833%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="62.3333%" y="948" width="0.3333%" height="15" fill="rgb(251,141,6)" fg:x="187" fg:w="1"/><text x="62.5833%" y="958.50"></text></g><g><title><module> (dask/array/einsumfuncs.py:1) (1 samples, 0.33%)</title><rect x="62.3333%" y="964" width="0.3333%" height="15" fill="rgb(225,208,6)" fg:x="187" fg:w="1"/><text x="62.5833%" y="974.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (1 samples, 0.33%)</title><rect x="62.6667%" y="612" width="0.3333%" height="15" fill="rgb(246,181,16)" fg:x="188" fg:w="1"/><text x="62.9167%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.33%)</title><rect x="62.6667%" y="628" width="0.3333%" height="15" fill="rgb(227,129,36)" fg:x="188" fg:w="1"/><text x="62.9167%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.33%)</title><rect x="62.6667%" y="644" width="0.3333%" height="15" fill="rgb(248,117,24)" fg:x="188" fg:w="1"/><text x="62.9167%" y="654.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.33%)</title><rect x="62.6667%" y="660" width="0.3333%" height="15" fill="rgb(214,185,35)" fg:x="188" fg:w="1"/><text x="62.9167%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.33%)</title><rect x="62.6667%" y="676" width="0.3333%" height="15" fill="rgb(236,150,34)" fg:x="188" fg:w="1"/><text x="62.9167%" y="686.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.33%)</title><rect x="62.6667%" y="692" width="0.3333%" height="15" fill="rgb(243,228,27)" fg:x="188" fg:w="1"/><text x="62.9167%" y="702.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (3 samples, 1.00%)</title><rect x="63.0000%" y="612" width="1.0000%" height="15" fill="rgb(245,77,44)" fg:x="189" fg:w="3"/><text x="63.2500%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 1.00%)</title><rect x="63.0000%" y="628" width="1.0000%" height="15" fill="rgb(235,214,42)" fg:x="189" fg:w="3"/><text x="63.2500%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 1.00%)</title><rect x="63.0000%" y="644" width="1.0000%" height="15" fill="rgb(221,74,3)" fg:x="189" fg:w="3"/><text x="63.2500%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (3 samples, 1.00%)</title><rect x="63.0000%" y="660" width="1.0000%" height="15" fill="rgb(206,121,29)" fg:x="189" fg:w="3"/><text x="63.2500%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (3 samples, 1.00%)</title><rect x="63.0000%" y="676" width="1.0000%" height="15" fill="rgb(249,131,53)" fg:x="189" fg:w="3"/><text x="63.2500%" y="686.50"></text></g><g><title>match (re.py:188) (2 samples, 0.67%)</title><rect x="63.3333%" y="692" width="0.6667%" height="15" fill="rgb(236,170,29)" fg:x="190" fg:w="2"/><text x="63.5833%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="63.6667%" y="708" width="0.3333%" height="15" fill="rgb(247,96,15)" fg:x="191" fg:w="1"/><text x="63.9167%" y="718.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.33%)</title><rect x="64.0000%" y="1156" width="0.3333%" height="15" fill="rgb(211,210,7)" fg:x="192" fg:w="1"/><text x="64.2500%" y="1166.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.33%)</title><rect x="64.0000%" y="1172" width="0.3333%" height="15" fill="rgb(240,88,50)" fg:x="192" fg:w="1"/><text x="64.2500%" y="1182.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.33%)</title><rect x="64.0000%" y="1188" width="0.3333%" height="15" fill="rgb(209,229,26)" fg:x="192" fg:w="1"/><text x="64.2500%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="612" width="0.6667%" height="15" fill="rgb(210,68,23)" fg:x="192" fg:w="2"/><text x="64.2500%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="628" width="0.6667%" height="15" fill="rgb(229,180,13)" fg:x="192" fg:w="2"/><text x="64.2500%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="64.0000%" y="644" width="0.6667%" height="15" fill="rgb(236,53,44)" fg:x="192" fg:w="2"/><text x="64.2500%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="64.0000%" y="660" width="0.6667%" height="15" fill="rgb(244,214,29)" fg:x="192" fg:w="2"/><text x="64.2500%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="676" width="0.6667%" height="15" fill="rgb(220,75,29)" fg:x="192" fg:w="2"/><text x="64.2500%" y="686.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (2 samples, 0.67%)</title><rect x="64.0000%" y="692" width="0.6667%" height="15" fill="rgb(214,183,37)" fg:x="192" fg:w="2"/><text x="64.2500%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="708" width="0.6667%" height="15" fill="rgb(239,117,29)" fg:x="192" fg:w="2"/><text x="64.2500%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="724" width="0.6667%" height="15" fill="rgb(237,171,35)" fg:x="192" fg:w="2"/><text x="64.2500%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="64.0000%" y="740" width="0.6667%" height="15" fill="rgb(229,178,53)" fg:x="192" fg:w="2"/><text x="64.2500%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="64.0000%" y="756" width="0.6667%" height="15" fill="rgb(210,102,19)" fg:x="192" fg:w="2"/><text x="64.2500%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="772" width="0.6667%" height="15" fill="rgb(235,127,22)" fg:x="192" fg:w="2"/><text x="64.2500%" y="782.50"></text></g><g><title><module> (dask/bag/avro.py:1) (2 samples, 0.67%)</title><rect x="64.0000%" y="788" width="0.6667%" height="15" fill="rgb(244,31,31)" fg:x="192" fg:w="2"/><text x="64.2500%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="804" width="0.6667%" height="15" fill="rgb(231,43,21)" fg:x="192" fg:w="2"/><text x="64.2500%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="820" width="0.6667%" height="15" fill="rgb(217,131,35)" fg:x="192" fg:w="2"/><text x="64.2500%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="836" width="0.6667%" height="15" fill="rgb(221,149,4)" fg:x="192" fg:w="2"/><text x="64.2500%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="852" width="0.6667%" height="15" fill="rgb(232,170,28)" fg:x="192" fg:w="2"/><text x="64.2500%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="868" width="0.6667%" height="15" fill="rgb(238,56,10)" fg:x="192" fg:w="2"/><text x="64.2500%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="64.0000%" y="884" width="0.6667%" height="15" fill="rgb(235,196,14)" fg:x="192" fg:w="2"/><text x="64.2500%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="64.0000%" y="900" width="0.6667%" height="15" fill="rgb(216,45,48)" fg:x="192" fg:w="2"/><text x="64.2500%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="916" width="0.6667%" height="15" fill="rgb(238,213,17)" fg:x="192" fg:w="2"/><text x="64.2500%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (2 samples, 0.67%)</title><rect x="64.0000%" y="932" width="0.6667%" height="15" fill="rgb(212,13,2)" fg:x="192" fg:w="2"/><text x="64.2500%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="948" width="0.6667%" height="15" fill="rgb(240,114,20)" fg:x="192" fg:w="2"/><text x="64.2500%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="964" width="0.6667%" height="15" fill="rgb(228,41,40)" fg:x="192" fg:w="2"/><text x="64.2500%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="64.0000%" y="980" width="0.6667%" height="15" fill="rgb(244,132,35)" fg:x="192" fg:w="2"/><text x="64.2500%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="64.0000%" y="996" width="0.6667%" height="15" fill="rgb(253,189,4)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="1012" width="0.6667%" height="15" fill="rgb(224,37,19)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1022.50"></text></g><g><title><module> (fsspec/exceptions.py:1) (2 samples, 0.67%)</title><rect x="64.0000%" y="1028" width="0.6667%" height="15" fill="rgb(235,223,18)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="1044" width="0.6667%" height="15" fill="rgb(235,163,25)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="64.0000%" y="1060" width="0.6667%" height="15" fill="rgb(217,145,28)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="64.0000%" y="1076" width="0.6667%" height="15" fill="rgb(223,223,32)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="64.0000%" y="1092" width="0.6667%" height="15" fill="rgb(227,189,39)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="64.0000%" y="1108" width="0.6667%" height="15" fill="rgb(248,10,22)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1118.50"></text></g><g><title><module> (asyncio/__init__.py:1) (2 samples, 0.67%)</title><rect x="64.0000%" y="1124" width="0.6667%" height="15" fill="rgb(248,46,39)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="64.0000%" y="1140" width="0.6667%" height="15" fill="rgb(248,113,48)" fg:x="192" fg:w="2"/><text x="64.2500%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.3333%" y="1156" width="0.3333%" height="15" fill="rgb(245,16,25)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.3333%" y="1172" width="0.3333%" height="15" fill="rgb(249,152,16)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1182.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.3333%" y="1188" width="0.3333%" height="15" fill="rgb(250,16,1)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.3333%" y="1204" width="0.3333%" height="15" fill="rgb(249,138,3)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1214.50"></text></g><g><title><module> (asyncio/runners.py:1) (1 samples, 0.33%)</title><rect x="64.3333%" y="1220" width="0.3333%" height="15" fill="rgb(227,71,41)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1230.50"></text></g><g><title>parent (<frozen importlib._bootstrap>:398) (1 samples, 0.33%)</title><rect x="64.3333%" y="1236" width="0.3333%" height="15" fill="rgb(209,184,23)" fg:x="193" fg:w="1"/><text x="64.5833%" y="1246.50"></text></g><g><title><module> (qarray/__init__.py:1) (41 samples, 13.67%)</title><rect x="51.3333%" y="180" width="13.6667%" height="15" fill="rgb(223,215,31)" fg:x="154" fg:w="41"/><text x="51.5833%" y="190.50"><module> (qarray/__in..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (41 samples, 13.67%)</title><rect x="51.3333%" y="196" width="13.6667%" height="15" fill="rgb(210,146,28)" fg:x="154" fg:w="41"/><text x="51.5833%" y="206.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (41 samples, 13.67%)</title><rect x="51.3333%" y="212" width="13.6667%" height="15" fill="rgb(209,183,41)" fg:x="154" fg:w="41"/><text x="51.5833%" y="222.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (41 samples, 13.67%)</title><rect x="51.3333%" y="228" width="13.6667%" height="15" fill="rgb(209,224,45)" fg:x="154" fg:w="41"/><text x="51.5833%" y="238.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (41 samples, 13.67%)</title><rect x="51.3333%" y="244" width="13.6667%" height="15" fill="rgb(224,209,51)" fg:x="154" fg:w="41"/><text x="51.5833%" y="254.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (41 samples, 13.67%)</title><rect x="51.3333%" y="260" width="13.6667%" height="15" fill="rgb(223,17,39)" fg:x="154" fg:w="41"/><text x="51.5833%" y="270.50">_call_with_frames_rem..</text></g><g><title><module> (qarray/df.py:1) (30 samples, 10.00%)</title><rect x="55.0000%" y="276" width="10.0000%" height="15" fill="rgb(234,204,37)" fg:x="165" fg:w="30"/><text x="55.2500%" y="286.50"><module> (qarr..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (30 samples, 10.00%)</title><rect x="55.0000%" y="292" width="10.0000%" height="15" fill="rgb(236,120,5)" fg:x="165" fg:w="30"/><text x="55.2500%" y="302.50">_find_and_load..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (30 samples, 10.00%)</title><rect x="55.0000%" y="308" width="10.0000%" height="15" fill="rgb(248,97,27)" fg:x="165" fg:w="30"/><text x="55.2500%" y="318.50">_find_and_load..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (30 samples, 10.00%)</title><rect x="55.0000%" y="324" width="10.0000%" height="15" fill="rgb(240,66,17)" fg:x="165" fg:w="30"/><text x="55.2500%" y="334.50">_load_unlocked..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (30 samples, 10.00%)</title><rect x="55.0000%" y="340" width="10.0000%" height="15" fill="rgb(210,79,3)" fg:x="165" fg:w="30"/><text x="55.2500%" y="350.50">exec_module (<..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (30 samples, 10.00%)</title><rect x="55.0000%" y="356" width="10.0000%" height="15" fill="rgb(214,176,27)" fg:x="165" fg:w="30"/><text x="55.2500%" y="366.50">_call_with_fra..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (30 samples, 10.00%)</title><rect x="55.0000%" y="372" width="10.0000%" height="15" fill="rgb(235,185,3)" fg:x="165" fg:w="30"/><text x="55.2500%" y="382.50"><module> (dask..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (29 samples, 9.67%)</title><rect x="55.3333%" y="388" width="9.6667%" height="15" fill="rgb(227,24,12)" fg:x="166" fg:w="29"/><text x="55.5833%" y="398.50">_handle_fromli..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 9.67%)</title><rect x="55.3333%" y="404" width="9.6667%" height="15" fill="rgb(252,169,48)" fg:x="166" fg:w="29"/><text x="55.5833%" y="414.50">_call_with_fra..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 9.67%)</title><rect x="55.3333%" y="420" width="9.6667%" height="15" fill="rgb(212,65,1)" fg:x="166" fg:w="29"/><text x="55.5833%" y="430.50">_find_and_load..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 9.67%)</title><rect x="55.3333%" y="436" width="9.6667%" height="15" fill="rgb(242,39,24)" fg:x="166" fg:w="29"/><text x="55.5833%" y="446.50">_find_and_load..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (29 samples, 9.67%)</title><rect x="55.3333%" y="452" width="9.6667%" height="15" fill="rgb(249,32,23)" fg:x="166" fg:w="29"/><text x="55.5833%" y="462.50">_load_unlocked..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (29 samples, 9.67%)</title><rect x="55.3333%" y="468" width="9.6667%" height="15" fill="rgb(251,195,23)" fg:x="166" fg:w="29"/><text x="55.5833%" y="478.50">exec_module (<..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 9.67%)</title><rect x="55.3333%" y="484" width="9.6667%" height="15" fill="rgb(236,174,8)" fg:x="166" fg:w="29"/><text x="55.5833%" y="494.50">_call_with_fra..</text></g><g><title><module> (dask/dataframe/backends.py:1) (29 samples, 9.67%)</title><rect x="55.3333%" y="500" width="9.6667%" height="15" fill="rgb(220,197,8)" fg:x="166" fg:w="29"/><text x="55.5833%" y="510.50"><module> (dask..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 9.67%)</title><rect x="55.3333%" y="516" width="9.6667%" height="15" fill="rgb(240,108,37)" fg:x="166" fg:w="29"/><text x="55.5833%" y="526.50">_find_and_load..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 9.67%)</title><rect x="55.3333%" y="532" width="9.6667%" height="15" fill="rgb(232,176,24)" fg:x="166" fg:w="29"/><text x="55.5833%" y="542.50">_find_and_load..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 2.33%)</title><rect x="62.6667%" y="548" width="2.3333%" height="15" fill="rgb(243,35,29)" fg:x="188" fg:w="7"/><text x="62.9167%" y="558.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 2.33%)</title><rect x="62.6667%" y="564" width="2.3333%" height="15" fill="rgb(210,37,18)" fg:x="188" fg:w="7"/><text x="62.9167%" y="574.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 2.33%)</title><rect x="62.6667%" y="580" width="2.3333%" height="15" fill="rgb(224,184,40)" fg:x="188" fg:w="7"/><text x="62.9167%" y="590.50">_..</text></g><g><title><module> (dask/dataframe/core.py:1) (7 samples, 2.33%)</title><rect x="62.6667%" y="596" width="2.3333%" height="15" fill="rgb(236,39,29)" fg:x="188" fg:w="7"/><text x="62.9167%" y="606.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="64.6667%" y="612" width="0.3333%" height="15" fill="rgb(232,48,39)" fg:x="194" fg:w="1"/><text x="64.9167%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="628" width="0.3333%" height="15" fill="rgb(236,34,42)" fg:x="194" fg:w="1"/><text x="64.9167%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="64.6667%" y="644" width="0.3333%" height="15" fill="rgb(243,106,37)" fg:x="194" fg:w="1"/><text x="64.9167%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.6667%" y="660" width="0.3333%" height="15" fill="rgb(218,96,6)" fg:x="194" fg:w="1"/><text x="64.9167%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.6667%" y="676" width="0.3333%" height="15" fill="rgb(235,130,12)" fg:x="194" fg:w="1"/><text x="64.9167%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.6667%" y="692" width="0.3333%" height="15" fill="rgb(231,95,0)" fg:x="194" fg:w="1"/><text x="64.9167%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="708" width="0.3333%" height="15" fill="rgb(228,12,23)" fg:x="194" fg:w="1"/><text x="64.9167%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (1 samples, 0.33%)</title><rect x="64.6667%" y="724" width="0.3333%" height="15" fill="rgb(216,12,1)" fg:x="194" fg:w="1"/><text x="64.9167%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="64.6667%" y="740" width="0.3333%" height="15" fill="rgb(219,59,3)" fg:x="194" fg:w="1"/><text x="64.9167%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.6667%" y="756" width="0.3333%" height="15" fill="rgb(215,208,46)" fg:x="194" fg:w="1"/><text x="64.9167%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.6667%" y="772" width="0.3333%" height="15" fill="rgb(254,224,29)" fg:x="194" fg:w="1"/><text x="64.9167%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.6667%" y="788" width="0.3333%" height="15" fill="rgb(232,14,29)" fg:x="194" fg:w="1"/><text x="64.9167%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="804" width="0.3333%" height="15" fill="rgb(208,45,52)" fg:x="194" fg:w="1"/><text x="64.9167%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (1 samples, 0.33%)</title><rect x="64.6667%" y="820" width="0.3333%" height="15" fill="rgb(234,191,28)" fg:x="194" fg:w="1"/><text x="64.9167%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="64.6667%" y="836" width="0.3333%" height="15" fill="rgb(244,67,43)" fg:x="194" fg:w="1"/><text x="64.9167%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="852" width="0.3333%" height="15" fill="rgb(236,189,24)" fg:x="194" fg:w="1"/><text x="64.9167%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="64.6667%" y="868" width="0.3333%" height="15" fill="rgb(239,214,33)" fg:x="194" fg:w="1"/><text x="64.9167%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.6667%" y="884" width="0.3333%" height="15" fill="rgb(226,176,41)" fg:x="194" fg:w="1"/><text x="64.9167%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.6667%" y="900" width="0.3333%" height="15" fill="rgb(248,47,8)" fg:x="194" fg:w="1"/><text x="64.9167%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.6667%" y="916" width="0.3333%" height="15" fill="rgb(218,81,44)" fg:x="194" fg:w="1"/><text x="64.9167%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="932" width="0.3333%" height="15" fill="rgb(213,98,6)" fg:x="194" fg:w="1"/><text x="64.9167%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (1 samples, 0.33%)</title><rect x="64.6667%" y="948" width="0.3333%" height="15" fill="rgb(222,85,22)" fg:x="194" fg:w="1"/><text x="64.9167%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="64.6667%" y="964" width="0.3333%" height="15" fill="rgb(239,46,39)" fg:x="194" fg:w="1"/><text x="64.9167%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.6667%" y="980" width="0.3333%" height="15" fill="rgb(237,12,29)" fg:x="194" fg:w="1"/><text x="64.9167%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.6667%" y="996" width="0.3333%" height="15" fill="rgb(214,77,8)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.6667%" y="1012" width="0.3333%" height="15" fill="rgb(217,168,37)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="1028" width="0.3333%" height="15" fill="rgb(221,217,23)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (1 samples, 0.33%)</title><rect x="64.6667%" y="1044" width="0.3333%" height="15" fill="rgb(243,229,36)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="64.6667%" y="1060" width="0.3333%" height="15" fill="rgb(251,163,40)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="64.6667%" y="1076" width="0.3333%" height="15" fill="rgb(237,222,12)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="64.6667%" y="1092" width="0.3333%" height="15" fill="rgb(248,132,6)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="64.6667%" y="1108" width="0.3333%" height="15" fill="rgb(227,167,50)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="64.6667%" y="1124" width="0.3333%" height="15" fill="rgb(242,84,37)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (1 samples, 0.33%)</title><rect x="64.6667%" y="1140" width="0.3333%" height="15" fill="rgb(212,4,50)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1150.50"></text></g><g><title>StringAccessor (dask/dataframe/accessor.py:198) (1 samples, 0.33%)</title><rect x="64.6667%" y="1156" width="0.3333%" height="15" fill="rgb(230,228,32)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1166.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.33%)</title><rect x="64.6667%" y="1172" width="0.3333%" height="15" fill="rgb(248,217,23)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1182.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.33%)</title><rect x="64.6667%" y="1188" width="0.3333%" height="15" fill="rgb(238,197,32)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1198.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.33%)</title><rect x="64.6667%" y="1204" width="0.3333%" height="15" fill="rgb(236,106,1)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1214.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.33%)</title><rect x="64.6667%" y="1220" width="0.3333%" height="15" fill="rgb(219,228,13)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1230.50"></text></g><g><title>match (re.py:188) (1 samples, 0.33%)</title><rect x="64.6667%" y="1236" width="0.3333%" height="15" fill="rgb(238,30,35)" fg:x="194" fg:w="1"/><text x="64.9167%" y="1246.50"></text></g><g><title><module> (numpy/core/_add_newdocs.py:1) (1 samples, 0.33%)</title><rect x="65.6667%" y="772" width="0.3333%" height="15" fill="rgb(236,70,23)" fg:x="197" fg:w="1"/><text x="65.9167%" y="782.50"></text></g><g><title>add_newdoc (numpy/core/function_base.py:497) (1 samples, 0.33%)</title><rect x="65.6667%" y="788" width="0.3333%" height="15" fill="rgb(249,104,48)" fg:x="197" fg:w="1"/><text x="65.9167%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="65.6667%" y="804" width="0.3333%" height="15" fill="rgb(254,117,50)" fg:x="197" fg:w="1"/><text x="65.9167%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="65.6667%" y="820" width="0.3333%" height="15" fill="rgb(223,152,4)" fg:x="197" fg:w="1"/><text x="65.9167%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="65.6667%" y="836" width="0.3333%" height="15" fill="rgb(245,6,2)" fg:x="197" fg:w="1"/><text x="65.9167%" y="846.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="65.6667%" y="852" width="0.3333%" height="15" fill="rgb(249,150,24)" fg:x="197" fg:w="1"/><text x="65.9167%" y="862.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="65.6667%" y="868" width="0.3333%" height="15" fill="rgb(228,185,42)" fg:x="197" fg:w="1"/><text x="65.9167%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="65.6667%" y="884" width="0.3333%" height="15" fill="rgb(226,39,33)" fg:x="197" fg:w="1"/><text x="65.9167%" y="894.50"></text></g><g><title><module> (ast.py:1) (1 samples, 0.33%)</title><rect x="66.0000%" y="868" width="0.3333%" height="15" fill="rgb(221,166,19)" fg:x="198" fg:w="1"/><text x="66.2500%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="66.0000%" y="884" width="0.3333%" height="15" fill="rgb(209,109,2)" fg:x="198" fg:w="1"/><text x="66.2500%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="66.0000%" y="900" width="0.3333%" height="15" fill="rgb(252,216,26)" fg:x="198" fg:w="1"/><text x="66.2500%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="66.0000%" y="916" width="0.3333%" height="15" fill="rgb(227,173,36)" fg:x="198" fg:w="1"/><text x="66.2500%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap>:765) (1 samples, 0.33%)</title><rect x="66.0000%" y="932" width="0.3333%" height="15" fill="rgb(209,90,7)" fg:x="198" fg:w="1"/><text x="66.2500%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="66.0000%" y="948" width="0.3333%" height="15" fill="rgb(250,194,11)" fg:x="198" fg:w="1"/><text x="66.2500%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="65.6667%" y="420" width="1.0000%" height="15" fill="rgb(220,72,50)" fg:x="197" fg:w="3"/><text x="65.9167%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="65.6667%" y="436" width="1.0000%" height="15" fill="rgb(222,106,48)" fg:x="197" fg:w="3"/><text x="65.9167%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="65.6667%" y="452" width="1.0000%" height="15" fill="rgb(216,220,45)" fg:x="197" fg:w="3"/><text x="65.9167%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="65.6667%" y="468" width="1.0000%" height="15" fill="rgb(234,112,18)" fg:x="197" fg:w="3"/><text x="65.9167%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="65.6667%" y="484" width="1.0000%" height="15" fill="rgb(206,179,9)" fg:x="197" fg:w="3"/><text x="65.9167%" y="494.50"></text></g><g><title><module> (numpy/__config__.py:3) (3 samples, 1.00%)</title><rect x="65.6667%" y="500" width="1.0000%" height="15" fill="rgb(215,115,40)" fg:x="197" fg:w="3"/><text x="65.9167%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="65.6667%" y="516" width="1.0000%" height="15" fill="rgb(222,69,34)" fg:x="197" fg:w="3"/><text x="65.9167%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="65.6667%" y="532" width="1.0000%" height="15" fill="rgb(209,161,10)" fg:x="197" fg:w="3"/><text x="65.9167%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="65.6667%" y="548" width="1.0000%" height="15" fill="rgb(217,6,38)" fg:x="197" fg:w="3"/><text x="65.9167%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="65.6667%" y="564" width="1.0000%" height="15" fill="rgb(229,229,48)" fg:x="197" fg:w="3"/><text x="65.9167%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="65.6667%" y="580" width="1.0000%" height="15" fill="rgb(225,21,28)" fg:x="197" fg:w="3"/><text x="65.9167%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="65.6667%" y="596" width="1.0000%" height="15" fill="rgb(206,33,13)" fg:x="197" fg:w="3"/><text x="65.9167%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="65.6667%" y="612" width="1.0000%" height="15" fill="rgb(242,178,17)" fg:x="197" fg:w="3"/><text x="65.9167%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="65.6667%" y="628" width="1.0000%" height="15" fill="rgb(220,162,5)" fg:x="197" fg:w="3"/><text x="65.9167%" y="638.50"></text></g><g><title><module> (numpy/core/__init__.py:1) (3 samples, 1.00%)</title><rect x="65.6667%" y="644" width="1.0000%" height="15" fill="rgb(210,33,43)" fg:x="197" fg:w="3"/><text x="65.9167%" y="654.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="65.6667%" y="660" width="1.0000%" height="15" fill="rgb(216,116,54)" fg:x="197" fg:w="3"/><text x="65.9167%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="65.6667%" y="676" width="1.0000%" height="15" fill="rgb(249,92,24)" fg:x="197" fg:w="3"/><text x="65.9167%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="65.6667%" y="692" width="1.0000%" height="15" fill="rgb(231,189,14)" fg:x="197" fg:w="3"/><text x="65.9167%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="65.6667%" y="708" width="1.0000%" height="15" fill="rgb(230,8,41)" fg:x="197" fg:w="3"/><text x="65.9167%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="65.6667%" y="724" width="1.0000%" height="15" fill="rgb(249,7,27)" fg:x="197" fg:w="3"/><text x="65.9167%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="65.6667%" y="740" width="1.0000%" height="15" fill="rgb(232,86,5)" fg:x="197" fg:w="3"/><text x="65.9167%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="65.6667%" y="756" width="1.0000%" height="15" fill="rgb(224,175,18)" fg:x="197" fg:w="3"/><text x="65.9167%" y="766.50"></text></g><g><title><module> (numpy/core/_internal.py:1) (2 samples, 0.67%)</title><rect x="66.0000%" y="772" width="0.6667%" height="15" fill="rgb(220,129,12)" fg:x="198" fg:w="2"/><text x="66.2500%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="66.0000%" y="788" width="0.6667%" height="15" fill="rgb(210,19,36)" fg:x="198" fg:w="2"/><text x="66.2500%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="66.0000%" y="804" width="0.6667%" height="15" fill="rgb(219,96,14)" fg:x="198" fg:w="2"/><text x="66.2500%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="66.0000%" y="820" width="0.6667%" height="15" fill="rgb(249,106,1)" fg:x="198" fg:w="2"/><text x="66.2500%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="66.0000%" y="836" width="0.6667%" height="15" fill="rgb(249,155,20)" fg:x="198" fg:w="2"/><text x="66.2500%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="66.0000%" y="852" width="0.6667%" height="15" fill="rgb(244,168,9)" fg:x="198" fg:w="2"/><text x="66.2500%" y="862.50"></text></g><g><title><module> (ctypes/__init__.py:1) (1 samples, 0.33%)</title><rect x="66.3333%" y="868" width="0.3333%" height="15" fill="rgb(216,23,50)" fg:x="199" fg:w="1"/><text x="66.5833%" y="878.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (1 samples, 0.33%)</title><rect x="66.6667%" y="532" width="0.3333%" height="15" fill="rgb(224,219,20)" fg:x="200" fg:w="1"/><text x="66.9167%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="66.6667%" y="548" width="0.3333%" height="15" fill="rgb(222,156,15)" fg:x="200" fg:w="1"/><text x="66.9167%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="66.6667%" y="564" width="0.3333%" height="15" fill="rgb(231,97,17)" fg:x="200" fg:w="1"/><text x="66.9167%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="66.6667%" y="580" width="0.3333%" height="15" fill="rgb(218,70,48)" fg:x="200" fg:w="1"/><text x="66.9167%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="66.6667%" y="596" width="0.3333%" height="15" fill="rgb(212,196,52)" fg:x="200" fg:w="1"/><text x="66.9167%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="66.6667%" y="612" width="0.3333%" height="15" fill="rgb(243,203,18)" fg:x="200" fg:w="1"/><text x="66.9167%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="66.6667%" y="628" width="0.3333%" height="15" fill="rgb(252,125,41)" fg:x="200" fg:w="1"/><text x="66.9167%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="66.6667%" y="644" width="0.3333%" height="15" fill="rgb(223,180,33)" fg:x="200" fg:w="1"/><text x="66.9167%" y="654.50"></text></g><g><title><module> (numpy/lib/utils.py:1) (1 samples, 0.33%)</title><rect x="66.6667%" y="660" width="0.3333%" height="15" fill="rgb(254,159,46)" fg:x="200" fg:w="1"/><text x="66.9167%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="66.6667%" y="676" width="0.3333%" height="15" fill="rgb(254,38,10)" fg:x="200" fg:w="1"/><text x="66.9167%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="66.6667%" y="692" width="0.3333%" height="15" fill="rgb(208,217,32)" fg:x="200" fg:w="1"/><text x="66.9167%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="66.6667%" y="708" width="0.3333%" height="15" fill="rgb(221,120,13)" fg:x="200" fg:w="1"/><text x="66.9167%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="66.6667%" y="724" width="0.3333%" height="15" fill="rgb(246,54,52)" fg:x="200" fg:w="1"/><text x="66.9167%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="66.6667%" y="740" width="0.3333%" height="15" fill="rgb(242,34,25)" fg:x="200" fg:w="1"/><text x="66.9167%" y="750.50"></text></g><g><title><module> (textwrap.py:1) (1 samples, 0.33%)</title><rect x="66.6667%" y="756" width="0.3333%" height="15" fill="rgb(247,209,9)" fg:x="200" fg:w="1"/><text x="66.9167%" y="766.50"></text></g><g><title>TextWrapper (textwrap.py:17) (1 samples, 0.33%)</title><rect x="66.6667%" y="772" width="0.3333%" height="15" fill="rgb(228,71,26)" fg:x="200" fg:w="1"/><text x="66.9167%" y="782.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="66.6667%" y="788" width="0.3333%" height="15" fill="rgb(222,145,49)" fg:x="200" fg:w="1"/><text x="66.9167%" y="798.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="66.6667%" y="804" width="0.3333%" height="15" fill="rgb(218,121,17)" fg:x="200" fg:w="1"/><text x="66.9167%" y="814.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.33%)</title><rect x="66.6667%" y="820" width="0.3333%" height="15" fill="rgb(244,50,7)" fg:x="200" fg:w="1"/><text x="66.9167%" y="830.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.33%)</title><rect x="66.6667%" y="836" width="0.3333%" height="15" fill="rgb(246,229,37)" fg:x="200" fg:w="1"/><text x="66.9167%" y="846.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="66.6667%" y="852" width="0.3333%" height="15" fill="rgb(225,18,5)" fg:x="200" fg:w="1"/><text x="66.9167%" y="862.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="66.6667%" y="868" width="0.3333%" height="15" fill="rgb(213,204,8)" fg:x="200" fg:w="1"/><text x="66.9167%" y="878.50"></text></g><g><title>closegroup (sre_parse.py:97) (1 samples, 0.33%)</title><rect x="66.6667%" y="884" width="0.3333%" height="15" fill="rgb(238,103,6)" fg:x="200" fg:w="1"/><text x="66.9167%" y="894.50"></text></g><g><title>getwidth (sre_parse.py:175) (1 samples, 0.33%)</title><rect x="66.6667%" y="900" width="0.3333%" height="15" fill="rgb(222,25,35)" fg:x="200" fg:w="1"/><text x="66.9167%" y="910.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (1 samples, 0.33%)</title><rect x="67.0000%" y="532" width="0.3333%" height="15" fill="rgb(213,203,35)" fg:x="201" fg:w="1"/><text x="67.2500%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="67.0000%" y="548" width="0.3333%" height="15" fill="rgb(221,79,53)" fg:x="201" fg:w="1"/><text x="67.2500%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.0000%" y="564" width="0.3333%" height="15" fill="rgb(243,200,35)" fg:x="201" fg:w="1"/><text x="67.2500%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="67.0000%" y="580" width="0.3333%" height="15" fill="rgb(248,60,25)" fg:x="201" fg:w="1"/><text x="67.2500%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="67.0000%" y="596" width="0.3333%" height="15" fill="rgb(227,53,46)" fg:x="201" fg:w="1"/><text x="67.2500%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="67.0000%" y="612" width="0.3333%" height="15" fill="rgb(216,120,32)" fg:x="201" fg:w="1"/><text x="67.2500%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="67.0000%" y="628" width="0.3333%" height="15" fill="rgb(220,134,1)" fg:x="201" fg:w="1"/><text x="67.2500%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.0000%" y="644" width="0.3333%" height="15" fill="rgb(237,168,5)" fg:x="201" fg:w="1"/><text x="67.2500%" y="654.50"></text></g><g><title><module> (numpy/ma/extras.py:1) (1 samples, 0.33%)</title><rect x="67.0000%" y="660" width="0.3333%" height="15" fill="rgb(231,100,33)" fg:x="201" fg:w="1"/><text x="67.2500%" y="670.50"></text></g><g><title>__init__ (numpy/ma/extras.py:233) (1 samples, 0.33%)</title><rect x="67.0000%" y="676" width="0.3333%" height="15" fill="rgb(236,177,47)" fg:x="201" fg:w="1"/><text x="67.2500%" y="686.50"></text></g><g><title>getdoc (numpy/ma/extras.py:237) (1 samples, 0.33%)</title><rect x="67.0000%" y="692" width="0.3333%" height="15" fill="rgb(235,7,49)" fg:x="201" fg:w="1"/><text x="67.2500%" y="702.50"></text></g><g><title>doc_note (numpy/ma/core.py:115) (1 samples, 0.33%)</title><rect x="67.0000%" y="708" width="0.3333%" height="15" fill="rgb(232,119,22)" fg:x="201" fg:w="1"/><text x="67.2500%" y="718.50"></text></g><g><title>split (re.py:223) (1 samples, 0.33%)</title><rect x="67.0000%" y="724" width="0.3333%" height="15" fill="rgb(254,73,53)" fg:x="201" fg:w="1"/><text x="67.2500%" y="734.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="66.6667%" y="420" width="1.0000%" height="15" fill="rgb(251,35,20)" fg:x="200" fg:w="3"/><text x="66.9167%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="66.6667%" y="436" width="1.0000%" height="15" fill="rgb(241,119,20)" fg:x="200" fg:w="3"/><text x="66.9167%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="66.6667%" y="452" width="1.0000%" height="15" fill="rgb(207,102,14)" fg:x="200" fg:w="3"/><text x="66.9167%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="66.6667%" y="468" width="1.0000%" height="15" fill="rgb(248,201,50)" fg:x="200" fg:w="3"/><text x="66.9167%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="66.6667%" y="484" width="1.0000%" height="15" fill="rgb(222,185,44)" fg:x="200" fg:w="3"/><text x="66.9167%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="66.6667%" y="500" width="1.0000%" height="15" fill="rgb(218,107,18)" fg:x="200" fg:w="3"/><text x="66.9167%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="66.6667%" y="516" width="1.0000%" height="15" fill="rgb(237,177,39)" fg:x="200" fg:w="3"/><text x="66.9167%" y="526.50"></text></g><g><title><module> (numpy/random/__init__.py:1) (1 samples, 0.33%)</title><rect x="67.3333%" y="532" width="0.3333%" height="15" fill="rgb(246,69,6)" fg:x="202" fg:w="1"/><text x="67.5833%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="67.3333%" y="548" width="0.3333%" height="15" fill="rgb(234,208,37)" fg:x="202" fg:w="1"/><text x="67.5833%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.3333%" y="564" width="0.3333%" height="15" fill="rgb(225,4,6)" fg:x="202" fg:w="1"/><text x="67.5833%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="67.3333%" y="580" width="0.3333%" height="15" fill="rgb(233,45,0)" fg:x="202" fg:w="1"/><text x="67.5833%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="67.3333%" y="596" width="0.3333%" height="15" fill="rgb(226,136,5)" fg:x="202" fg:w="1"/><text x="67.5833%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="67.3333%" y="612" width="0.3333%" height="15" fill="rgb(211,91,47)" fg:x="202" fg:w="1"/><text x="67.5833%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="67.3333%" y="628" width="0.3333%" height="15" fill="rgb(242,88,51)" fg:x="202" fg:w="1"/><text x="67.5833%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.3333%" y="644" width="0.3333%" height="15" fill="rgb(230,91,28)" fg:x="202" fg:w="1"/><text x="67.5833%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (1 samples, 0.33%)</title><rect x="67.3333%" y="660" width="0.3333%" height="15" fill="rgb(254,186,29)" fg:x="202" fg:w="1"/><text x="67.5833%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="67.3333%" y="676" width="0.3333%" height="15" fill="rgb(238,6,4)" fg:x="202" fg:w="1"/><text x="67.5833%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="67.3333%" y="692" width="0.3333%" height="15" fill="rgb(221,151,16)" fg:x="202" fg:w="1"/><text x="67.5833%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="67.3333%" y="708" width="0.3333%" height="15" fill="rgb(251,143,52)" fg:x="202" fg:w="1"/><text x="67.5833%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="67.3333%" y="724" width="0.3333%" height="15" fill="rgb(206,90,15)" fg:x="202" fg:w="1"/><text x="67.5833%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.3333%" y="740" width="0.3333%" height="15" fill="rgb(218,35,8)" fg:x="202" fg:w="1"/><text x="67.5833%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="67.3333%" y="756" width="0.3333%" height="15" fill="rgb(239,215,6)" fg:x="202" fg:w="1"/><text x="67.5833%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="67.3333%" y="772" width="0.3333%" height="15" fill="rgb(245,116,39)" fg:x="202" fg:w="1"/><text x="67.5833%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="67.3333%" y="788" width="0.3333%" height="15" fill="rgb(242,65,28)" fg:x="202" fg:w="1"/><text x="67.5833%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="67.3333%" y="804" width="0.3333%" height="15" fill="rgb(252,132,53)" fg:x="202" fg:w="1"/><text x="67.5833%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.3333%" y="820" width="0.3333%" height="15" fill="rgb(224,159,50)" fg:x="202" fg:w="1"/><text x="67.5833%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="67.3333%" y="836" width="0.3333%" height="15" fill="rgb(224,93,4)" fg:x="202" fg:w="1"/><text x="67.5833%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="67.3333%" y="852" width="0.3333%" height="15" fill="rgb(208,81,34)" fg:x="202" fg:w="1"/><text x="67.5833%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="67.3333%" y="868" width="0.3333%" height="15" fill="rgb(233,92,54)" fg:x="202" fg:w="1"/><text x="67.5833%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="67.3333%" y="884" width="0.3333%" height="15" fill="rgb(237,21,14)" fg:x="202" fg:w="1"/><text x="67.5833%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="67.3333%" y="900" width="0.3333%" height="15" fill="rgb(249,128,51)" fg:x="202" fg:w="1"/><text x="67.5833%" y="910.50"></text></g><g><title><module> (numpy/__init__.py:1) (10 samples, 3.33%)</title><rect x="65.0000%" y="404" width="3.3333%" height="15" fill="rgb(223,129,24)" fg:x="195" fg:w="10"/><text x="65.2500%" y="414.50"><mo..</text></g><g><title>_mac_os_check (numpy/__init__.py:377) (2 samples, 0.67%)</title><rect x="67.6667%" y="420" width="0.6667%" height="15" fill="rgb(231,168,25)" fg:x="203" fg:w="2"/><text x="67.9167%" y="430.50"></text></g><g><title>polyfit (numpy/lib/polynomial.py:453) (2 samples, 0.67%)</title><rect x="67.6667%" y="436" width="0.6667%" height="15" fill="rgb(224,39,20)" fg:x="203" fg:w="2"/><text x="67.9167%" y="446.50"></text></g><g><title>inv (numpy/linalg/linalg.py:492) (1 samples, 0.33%)</title><rect x="68.0000%" y="452" width="0.3333%" height="15" fill="rgb(225,152,53)" fg:x="204" fg:w="1"/><text x="68.2500%" y="462.50"></text></g><g><title><module> (dateutil/__init__.py:2) (1 samples, 0.33%)</title><rect x="68.3333%" y="500" width="0.3333%" height="15" fill="rgb(252,17,24)" fg:x="205" fg:w="1"/><text x="68.5833%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="68.3333%" y="516" width="0.3333%" height="15" fill="rgb(250,114,30)" fg:x="205" fg:w="1"/><text x="68.5833%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="68.3333%" y="532" width="0.3333%" height="15" fill="rgb(229,5,4)" fg:x="205" fg:w="1"/><text x="68.5833%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="68.3333%" y="548" width="0.3333%" height="15" fill="rgb(225,176,49)" fg:x="205" fg:w="1"/><text x="68.5833%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="68.3333%" y="564" width="0.3333%" height="15" fill="rgb(224,221,49)" fg:x="205" fg:w="1"/><text x="68.5833%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="68.3333%" y="580" width="0.3333%" height="15" fill="rgb(253,169,27)" fg:x="205" fg:w="1"/><text x="68.5833%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="68.3333%" y="596" width="0.3333%" height="15" fill="rgb(211,206,16)" fg:x="205" fg:w="1"/><text x="68.5833%" y="606.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="68.6667%" y="548" width="0.3333%" height="15" fill="rgb(244,87,35)" fg:x="206" fg:w="1"/><text x="68.9167%" y="558.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="68.6667%" y="564" width="0.3333%" height="15" fill="rgb(246,28,10)" fg:x="206" fg:w="1"/><text x="68.9167%" y="574.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.33%)</title><rect x="68.6667%" y="580" width="0.3333%" height="15" fill="rgb(229,12,44)" fg:x="206" fg:w="1"/><text x="68.9167%" y="590.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (1 samples, 0.33%)</title><rect x="68.6667%" y="596" width="0.3333%" height="15" fill="rgb(210,145,37)" fg:x="206" fg:w="1"/><text x="68.9167%" y="606.50"></text></g><g><title><module> (pandas/compat/numpy/__init__.py:1) (1 samples, 0.33%)</title><rect x="69.0000%" y="596" width="0.3333%" height="15" fill="rgb(227,112,52)" fg:x="207" fg:w="1"/><text x="69.2500%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="69.0000%" y="612" width="0.3333%" height="15" fill="rgb(238,155,34)" fg:x="207" fg:w="1"/><text x="69.2500%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="69.0000%" y="628" width="0.3333%" height="15" fill="rgb(239,226,36)" fg:x="207" fg:w="1"/><text x="69.2500%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="69.0000%" y="644" width="0.3333%" height="15" fill="rgb(230,16,23)" fg:x="207" fg:w="1"/><text x="69.2500%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="69.0000%" y="660" width="0.3333%" height="15" fill="rgb(236,171,36)" fg:x="207" fg:w="1"/><text x="69.2500%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="69.0000%" y="676" width="0.3333%" height="15" fill="rgb(221,22,14)" fg:x="207" fg:w="1"/><text x="69.2500%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="69.0000%" y="692" width="0.3333%" height="15" fill="rgb(242,43,11)" fg:x="207" fg:w="1"/><text x="69.2500%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.67%)</title><rect x="69.3333%" y="756" width="0.6667%" height="15" fill="rgb(232,69,23)" fg:x="208" fg:w="2"/><text x="69.5833%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="69.3333%" y="772" width="0.6667%" height="15" fill="rgb(216,180,54)" fg:x="208" fg:w="2"/><text x="69.5833%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="69.6667%" y="788" width="0.3333%" height="15" fill="rgb(216,5,24)" fg:x="209" fg:w="1"/><text x="69.9167%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="69.6667%" y="804" width="0.3333%" height="15" fill="rgb(225,89,9)" fg:x="209" fg:w="1"/><text x="69.9167%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="69.6667%" y="820" width="0.3333%" height="15" fill="rgb(243,75,33)" fg:x="209" fg:w="1"/><text x="69.9167%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="69.6667%" y="836" width="0.3333%" height="15" fill="rgb(247,141,45)" fg:x="209" fg:w="1"/><text x="69.9167%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="69.6667%" y="852" width="0.3333%" height="15" fill="rgb(232,177,36)" fg:x="209" fg:w="1"/><text x="69.9167%" y="862.50"></text></g><g><title><module> (cloudpickle/__init__.py:1) (1 samples, 0.33%)</title><rect x="69.6667%" y="868" width="0.3333%" height="15" fill="rgb(219,125,36)" fg:x="209" fg:w="1"/><text x="69.9167%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="69.6667%" y="884" width="0.3333%" height="15" fill="rgb(227,94,9)" fg:x="209" fg:w="1"/><text x="69.9167%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="69.6667%" y="900" width="0.3333%" height="15" fill="rgb(240,34,52)" fg:x="209" fg:w="1"/><text x="69.9167%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="69.6667%" y="916" width="0.3333%" height="15" fill="rgb(216,45,12)" fg:x="209" fg:w="1"/><text x="69.9167%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="69.6667%" y="932" width="0.3333%" height="15" fill="rgb(246,21,19)" fg:x="209" fg:w="1"/><text x="69.9167%" y="942.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="69.6667%" y="948" width="0.3333%" height="15" fill="rgb(213,98,42)" fg:x="209" fg:w="1"/><text x="69.9167%" y="958.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="69.6667%" y="964" width="0.3333%" height="15" fill="rgb(250,136,47)" fg:x="209" fg:w="1"/><text x="69.9167%" y="974.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.33%)</title><rect x="69.6667%" y="980" width="0.3333%" height="15" fill="rgb(251,124,27)" fg:x="209" fg:w="1"/><text x="69.9167%" y="990.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.33%)</title><rect x="69.6667%" y="996" width="0.3333%" height="15" fill="rgb(229,180,14)" fg:x="209" fg:w="1"/><text x="69.9167%" y="1006.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.33%)</title><rect x="69.6667%" y="1012" width="0.3333%" height="15" fill="rgb(245,216,25)" fg:x="209" fg:w="1"/><text x="69.9167%" y="1022.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.33%)</title><rect x="69.6667%" y="1028" width="0.3333%" height="15" fill="rgb(251,43,5)" fg:x="209" fg:w="1"/><text x="69.9167%" y="1038.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.33%)</title><rect x="69.6667%" y="1044" width="0.3333%" height="15" fill="rgb(250,128,24)" fg:x="209" fg:w="1"/><text x="69.9167%" y="1054.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (19 samples, 6.33%)</title><rect x="68.6667%" y="500" width="6.3333%" height="15" fill="rgb(217,117,27)" fg:x="206" fg:w="19"/><text x="68.9167%" y="510.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 6.33%)</title><rect x="68.6667%" y="516" width="6.3333%" height="15" fill="rgb(245,147,4)" fg:x="206" fg:w="19"/><text x="68.9167%" y="526.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 6.33%)</title><rect x="68.6667%" y="532" width="6.3333%" height="15" fill="rgb(242,201,35)" fg:x="206" fg:w="19"/><text x="68.9167%" y="542.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 6.00%)</title><rect x="69.0000%" y="548" width="6.0000%" height="15" fill="rgb(218,181,1)" fg:x="207" fg:w="18"/><text x="69.2500%" y="558.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 6.00%)</title><rect x="69.0000%" y="564" width="6.0000%" height="15" fill="rgb(222,6,29)" fg:x="207" fg:w="18"/><text x="69.2500%" y="574.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 6.00%)</title><rect x="69.0000%" y="580" width="6.0000%" height="15" fill="rgb(208,186,3)" fg:x="207" fg:w="18"/><text x="69.2500%" y="590.50">_call_wi..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (17 samples, 5.67%)</title><rect x="69.3333%" y="596" width="5.6667%" height="15" fill="rgb(216,36,26)" fg:x="208" fg:w="17"/><text x="69.5833%" y="606.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.67%)</title><rect x="69.3333%" y="612" width="5.6667%" height="15" fill="rgb(248,201,23)" fg:x="208" fg:w="17"/><text x="69.5833%" y="622.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.67%)</title><rect x="69.3333%" y="628" width="5.6667%" height="15" fill="rgb(251,170,31)" fg:x="208" fg:w="17"/><text x="69.5833%" y="638.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.67%)</title><rect x="69.3333%" y="644" width="5.6667%" height="15" fill="rgb(207,110,25)" fg:x="208" fg:w="17"/><text x="69.5833%" y="654.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 5.67%)</title><rect x="69.3333%" y="660" width="5.6667%" height="15" fill="rgb(250,54,15)" fg:x="208" fg:w="17"/><text x="69.5833%" y="670.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 5.67%)</title><rect x="69.3333%" y="676" width="5.6667%" height="15" fill="rgb(227,68,33)" fg:x="208" fg:w="17"/><text x="69.5833%" y="686.50">_call_w..</text></g><g><title><module> (pyarrow/__init__.py:20) (17 samples, 5.67%)</title><rect x="69.3333%" y="692" width="5.6667%" height="15" fill="rgb(238,34,41)" fg:x="208" fg:w="17"/><text x="69.5833%" y="702.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 5.67%)</title><rect x="69.3333%" y="708" width="5.6667%" height="15" fill="rgb(220,11,15)" fg:x="208" fg:w="17"/><text x="69.5833%" y="718.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 5.67%)</title><rect x="69.3333%" y="724" width="5.6667%" height="15" fill="rgb(246,111,35)" fg:x="208" fg:w="17"/><text x="69.5833%" y="734.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 5.67%)</title><rect x="69.3333%" y="740" width="5.6667%" height="15" fill="rgb(209,88,53)" fg:x="208" fg:w="17"/><text x="69.5833%" y="750.50">_load_u..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (15 samples, 5.00%)</title><rect x="70.0000%" y="756" width="5.0000%" height="15" fill="rgb(231,185,47)" fg:x="210" fg:w="15"/><text x="70.2500%" y="766.50">module..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (15 samples, 5.00%)</title><rect x="70.0000%" y="772" width="5.0000%" height="15" fill="rgb(233,154,1)" fg:x="210" fg:w="15"/><text x="70.2500%" y="782.50">create..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 5.00%)</title><rect x="70.0000%" y="788" width="5.0000%" height="15" fill="rgb(225,15,46)" fg:x="210" fg:w="15"/><text x="70.2500%" y="798.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="996" width="0.3333%" height="15" fill="rgb(211,135,41)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1012" width="0.3333%" height="15" fill="rgb(208,54,0)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1028" width="0.3333%" height="15" fill="rgb(244,136,14)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="75.0000%" y="1044" width="0.3333%" height="15" fill="rgb(241,56,14)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1060" width="0.3333%" height="15" fill="rgb(205,80,24)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1076" width="0.3333%" height="15" fill="rgb(220,57,4)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1092" width="0.3333%" height="15" fill="rgb(226,193,50)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1108" width="0.3333%" height="15" fill="rgb(231,168,22)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="75.0000%" y="1124" width="0.3333%" height="15" fill="rgb(254,215,14)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1140" width="0.3333%" height="15" fill="rgb(211,115,16)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1156" width="0.3333%" height="15" fill="rgb(236,210,16)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1172" width="0.3333%" height="15" fill="rgb(221,94,12)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1188" width="0.3333%" height="15" fill="rgb(235,218,49)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="75.0000%" y="1204" width="0.3333%" height="15" fill="rgb(217,114,14)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1220" width="0.3333%" height="15" fill="rgb(216,145,22)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1236" width="0.3333%" height="15" fill="rgb(217,112,39)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1252" width="0.3333%" height="15" fill="rgb(225,85,32)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1268" width="0.3333%" height="15" fill="rgb(245,209,47)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="75.0000%" y="1284" width="0.3333%" height="15" fill="rgb(218,220,15)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1300" width="0.3333%" height="15" fill="rgb(222,202,31)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1316" width="0.3333%" height="15" fill="rgb(243,203,4)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1332" width="0.3333%" height="15" fill="rgb(237,92,17)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1348" width="0.3333%" height="15" fill="rgb(231,119,7)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="75.0000%" y="1364" width="0.3333%" height="15" fill="rgb(237,82,41)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1380" width="0.3333%" height="15" fill="rgb(226,81,48)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1396" width="0.3333%" height="15" fill="rgb(234,70,51)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1412" width="0.3333%" height="15" fill="rgb(251,86,4)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1428" width="0.3333%" height="15" fill="rgb(244,144,28)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="75.0000%" y="1444" width="0.3333%" height="15" fill="rgb(232,161,39)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1460" width="0.3333%" height="15" fill="rgb(247,34,51)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1470.50"></text></g><g><title><module> (zoneinfo/__init__.py:1) (1 samples, 0.33%)</title><rect x="75.0000%" y="1476" width="0.3333%" height="15" fill="rgb(225,132,2)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="75.0000%" y="1492" width="0.3333%" height="15" fill="rgb(209,159,44)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="75.0000%" y="1508" width="0.3333%" height="15" fill="rgb(251,214,1)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="75.0000%" y="1524" width="0.3333%" height="15" fill="rgb(247,84,47)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1534.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="75.0000%" y="1540" width="0.3333%" height="15" fill="rgb(240,111,43)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1550.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="75.0000%" y="1556" width="0.3333%" height="15" fill="rgb(215,214,35)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="75.0000%" y="1572" width="0.3333%" height="15" fill="rgb(248,207,23)" fg:x="225" fg:w="1"/><text x="75.2500%" y="1582.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.00%)</title><rect x="75.0000%" y="660" width="1.0000%" height="15" fill="rgb(214,186,4)" fg:x="225" fg:w="3"/><text x="75.2500%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="75.0000%" y="676" width="1.0000%" height="15" fill="rgb(220,133,22)" fg:x="225" fg:w="3"/><text x="75.2500%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="75.0000%" y="692" width="1.0000%" height="15" fill="rgb(239,134,19)" fg:x="225" fg:w="3"/><text x="75.2500%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="75.0000%" y="708" width="1.0000%" height="15" fill="rgb(250,140,9)" fg:x="225" fg:w="3"/><text x="75.2500%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="75.0000%" y="724" width="1.0000%" height="15" fill="rgb(225,59,14)" fg:x="225" fg:w="3"/><text x="75.2500%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.00%)</title><rect x="75.0000%" y="740" width="1.0000%" height="15" fill="rgb(214,152,51)" fg:x="225" fg:w="3"/><text x="75.2500%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="75.0000%" y="756" width="1.0000%" height="15" fill="rgb(251,227,43)" fg:x="225" fg:w="3"/><text x="75.2500%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="75.0000%" y="772" width="1.0000%" height="15" fill="rgb(241,96,17)" fg:x="225" fg:w="3"/><text x="75.2500%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="75.0000%" y="788" width="1.0000%" height="15" fill="rgb(234,198,43)" fg:x="225" fg:w="3"/><text x="75.2500%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="75.0000%" y="804" width="1.0000%" height="15" fill="rgb(220,108,29)" fg:x="225" fg:w="3"/><text x="75.2500%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.00%)</title><rect x="75.0000%" y="820" width="1.0000%" height="15" fill="rgb(226,163,33)" fg:x="225" fg:w="3"/><text x="75.2500%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="75.0000%" y="836" width="1.0000%" height="15" fill="rgb(205,194,45)" fg:x="225" fg:w="3"/><text x="75.2500%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="75.0000%" y="852" width="1.0000%" height="15" fill="rgb(206,143,44)" fg:x="225" fg:w="3"/><text x="75.2500%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="75.0000%" y="868" width="1.0000%" height="15" fill="rgb(236,136,36)" fg:x="225" fg:w="3"/><text x="75.2500%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="75.0000%" y="884" width="1.0000%" height="15" fill="rgb(249,172,42)" fg:x="225" fg:w="3"/><text x="75.2500%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="75.0000%" y="900" width="1.0000%" height="15" fill="rgb(216,139,23)" fg:x="225" fg:w="3"/><text x="75.2500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="75.0000%" y="916" width="1.0000%" height="15" fill="rgb(207,166,20)" fg:x="225" fg:w="3"/><text x="75.2500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="75.0000%" y="932" width="1.0000%" height="15" fill="rgb(210,209,22)" fg:x="225" fg:w="3"/><text x="75.2500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="75.0000%" y="948" width="1.0000%" height="15" fill="rgb(232,118,20)" fg:x="225" fg:w="3"/><text x="75.2500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="75.0000%" y="964" width="1.0000%" height="15" fill="rgb(238,113,42)" fg:x="225" fg:w="3"/><text x="75.2500%" y="974.50"></text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (3 samples, 1.00%)</title><rect x="75.0000%" y="980" width="1.0000%" height="15" fill="rgb(231,42,5)" fg:x="225" fg:w="3"/><text x="75.2500%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="75.3333%" y="996" width="0.6667%" height="15" fill="rgb(243,166,24)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="75.3333%" y="1012" width="0.6667%" height="15" fill="rgb(237,226,12)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="75.3333%" y="1028" width="0.6667%" height="15" fill="rgb(229,133,24)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="75.3333%" y="1044" width="0.6667%" height="15" fill="rgb(238,33,43)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="75.3333%" y="1060" width="0.6667%" height="15" fill="rgb(227,59,38)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="75.3333%" y="1076" width="0.6667%" height="15" fill="rgb(230,97,0)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="75.3333%" y="1092" width="0.6667%" height="15" fill="rgb(250,173,50)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="75.3333%" y="1108" width="0.6667%" height="15" fill="rgb(240,15,50)" fg:x="226" fg:w="2"/><text x="75.5833%" y="1118.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (5 samples, 1.67%)</title><rect x="75.0000%" y="596" width="1.6667%" height="15" fill="rgb(221,93,22)" fg:x="225" fg:w="5"/><text x="75.2500%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="75.0000%" y="612" width="1.6667%" height="15" fill="rgb(245,180,53)" fg:x="225" fg:w="5"/><text x="75.2500%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="75.0000%" y="628" width="1.6667%" height="15" fill="rgb(231,88,51)" fg:x="225" fg:w="5"/><text x="75.2500%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="75.0000%" y="644" width="1.6667%" height="15" fill="rgb(240,58,21)" fg:x="225" fg:w="5"/><text x="75.2500%" y="654.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.67%)</title><rect x="76.0000%" y="660" width="0.6667%" height="15" fill="rgb(237,21,10)" fg:x="228" fg:w="2"/><text x="76.2500%" y="670.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.67%)</title><rect x="76.0000%" y="676" width="0.6667%" height="15" fill="rgb(218,43,11)" fg:x="228" fg:w="2"/><text x="76.2500%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="76.0000%" y="692" width="0.6667%" height="15" fill="rgb(218,221,29)" fg:x="228" fg:w="2"/><text x="76.2500%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="76.6667%" y="708" width="0.3333%" height="15" fill="rgb(214,118,42)" fg:x="230" fg:w="1"/><text x="76.9167%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="76.6667%" y="724" width="0.3333%" height="15" fill="rgb(251,200,26)" fg:x="230" fg:w="1"/><text x="76.9167%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="76.6667%" y="740" width="0.3333%" height="15" fill="rgb(237,101,39)" fg:x="230" fg:w="1"/><text x="76.9167%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="76.6667%" y="756" width="0.3333%" height="15" fill="rgb(251,117,11)" fg:x="230" fg:w="1"/><text x="76.9167%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="76.6667%" y="772" width="0.3333%" height="15" fill="rgb(216,223,23)" fg:x="230" fg:w="1"/><text x="76.9167%" y="782.50"></text></g><g><title><module> (pandas/core/construction.py:1) (1 samples, 0.33%)</title><rect x="76.6667%" y="788" width="0.3333%" height="15" fill="rgb(251,54,12)" fg:x="230" fg:w="1"/><text x="76.9167%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="76.6667%" y="804" width="0.3333%" height="15" fill="rgb(254,176,54)" fg:x="230" fg:w="1"/><text x="76.9167%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="76.6667%" y="820" width="0.3333%" height="15" fill="rgb(210,32,8)" fg:x="230" fg:w="1"/><text x="76.9167%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="76.6667%" y="836" width="0.3333%" height="15" fill="rgb(235,52,38)" fg:x="230" fg:w="1"/><text x="76.9167%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="76.6667%" y="852" width="0.3333%" height="15" fill="rgb(231,4,44)" fg:x="230" fg:w="1"/><text x="76.9167%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="76.6667%" y="868" width="0.3333%" height="15" fill="rgb(249,2,32)" fg:x="230" fg:w="1"/><text x="76.9167%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="76.6667%" y="884" width="0.3333%" height="15" fill="rgb(224,65,26)" fg:x="230" fg:w="1"/><text x="76.9167%" y="894.50"></text></g><g><title><module> (pandas/core/algorithms.py:1) (2 samples, 0.67%)</title><rect x="76.6667%" y="596" width="0.6667%" height="15" fill="rgb(250,73,40)" fg:x="230" fg:w="2"/><text x="76.9167%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="76.6667%" y="612" width="0.6667%" height="15" fill="rgb(253,177,16)" fg:x="230" fg:w="2"/><text x="76.9167%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="76.6667%" y="628" width="0.6667%" height="15" fill="rgb(217,32,34)" fg:x="230" fg:w="2"/><text x="76.9167%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="76.6667%" y="644" width="0.6667%" height="15" fill="rgb(212,7,10)" fg:x="230" fg:w="2"/><text x="76.9167%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="76.6667%" y="660" width="0.6667%" height="15" fill="rgb(245,89,8)" fg:x="230" fg:w="2"/><text x="76.9167%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="76.6667%" y="676" width="0.6667%" height="15" fill="rgb(237,16,53)" fg:x="230" fg:w="2"/><text x="76.9167%" y="686.50"></text></g><g><title><module> (pandas/core/array_algos/take.py:1) (2 samples, 0.67%)</title><rect x="76.6667%" y="692" width="0.6667%" height="15" fill="rgb(250,204,30)" fg:x="230" fg:w="2"/><text x="76.9167%" y="702.50"></text></g><g><title>_view_wrapper (pandas/core/array_algos/take.py:353) (1 samples, 0.33%)</title><rect x="77.0000%" y="708" width="0.3333%" height="15" fill="rgb(208,77,27)" fg:x="231" fg:w="1"/><text x="77.2500%" y="718.50"></text></g><g><title><module> (pandas/core/arraylike.py:1) (1 samples, 0.33%)</title><rect x="77.3333%" y="884" width="0.3333%" height="15" fill="rgb(250,204,28)" fg:x="232" fg:w="1"/><text x="77.5833%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.3333%" y="900" width="0.3333%" height="15" fill="rgb(244,63,21)" fg:x="232" fg:w="1"/><text x="77.5833%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.3333%" y="916" width="0.3333%" height="15" fill="rgb(236,85,44)" fg:x="232" fg:w="1"/><text x="77.5833%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.3333%" y="932" width="0.3333%" height="15" fill="rgb(215,98,4)" fg:x="232" fg:w="1"/><text x="77.5833%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.3333%" y="948" width="0.3333%" height="15" fill="rgb(235,38,11)" fg:x="232" fg:w="1"/><text x="77.5833%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.3333%" y="964" width="0.3333%" height="15" fill="rgb(254,186,25)" fg:x="232" fg:w="1"/><text x="77.5833%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="77.3333%" y="980" width="0.3333%" height="15" fill="rgb(225,55,31)" fg:x="232" fg:w="1"/><text x="77.5833%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="77.3333%" y="996" width="0.3333%" height="15" fill="rgb(211,15,21)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.3333%" y="1012" width="0.3333%" height="15" fill="rgb(215,187,41)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1022.50"></text></g><g><title><module> (pandas/core/ops/__init__.py:1) (1 samples, 0.33%)</title><rect x="77.3333%" y="1028" width="0.3333%" height="15" fill="rgb(248,69,32)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.3333%" y="1044" width="0.3333%" height="15" fill="rgb(252,102,52)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.3333%" y="1060" width="0.3333%" height="15" fill="rgb(253,140,32)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="77.3333%" y="1076" width="0.3333%" height="15" fill="rgb(216,56,42)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="77.3333%" y="1092" width="0.3333%" height="15" fill="rgb(216,184,14)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.3333%" y="1108" width="0.3333%" height="15" fill="rgb(237,187,27)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1118.50"></text></g><g><title><module> (pandas/core/ops/array_ops.py:1) (1 samples, 0.33%)</title><rect x="77.3333%" y="1124" width="0.3333%" height="15" fill="rgb(219,65,3)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1134.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="77.3333%" y="1140" width="0.3333%" height="15" fill="rgb(245,83,25)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.3333%" y="1156" width="0.3333%" height="15" fill="rgb(214,205,45)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.3333%" y="1172" width="0.3333%" height="15" fill="rgb(241,20,18)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.3333%" y="1188" width="0.3333%" height="15" fill="rgb(232,163,23)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="77.3333%" y="1204" width="0.3333%" height="15" fill="rgb(214,5,46)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1214.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="77.3333%" y="1220" width="0.3333%" height="15" fill="rgb(229,78,17)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1230.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="77.3333%" y="1236" width="0.3333%" height="15" fill="rgb(248,89,10)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.3333%" y="1252" width="0.3333%" height="15" fill="rgb(248,54,15)" fg:x="232" fg:w="1"/><text x="77.5833%" y="1262.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="77.6667%" y="996" width="0.3333%" height="15" fill="rgb(223,116,6)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.6667%" y="1012" width="0.3333%" height="15" fill="rgb(205,125,38)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.6667%" y="1028" width="0.3333%" height="15" fill="rgb(251,78,38)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.6667%" y="1044" width="0.3333%" height="15" fill="rgb(253,78,28)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="77.6667%" y="1060" width="0.3333%" height="15" fill="rgb(209,120,3)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="77.6667%" y="1076" width="0.3333%" height="15" fill="rgb(238,229,9)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.6667%" y="1092" width="0.3333%" height="15" fill="rgb(253,159,18)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1102.50"></text></g><g><title><module> (pyarrow/vendored/docscrape.py:7) (1 samples, 0.33%)</title><rect x="77.6667%" y="1108" width="0.3333%" height="15" fill="rgb(244,42,34)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="77.6667%" y="1124" width="0.3333%" height="15" fill="rgb(224,8,7)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="77.6667%" y="1140" width="0.3333%" height="15" fill="rgb(210,201,45)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="77.6667%" y="1156" width="0.3333%" height="15" fill="rgb(252,185,21)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="77.6667%" y="1172" width="0.3333%" height="15" fill="rgb(223,131,1)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="77.6667%" y="1188" width="0.3333%" height="15" fill="rgb(245,141,16)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1198.50"></text></g><g><title><module> (pydoc.py:2) (1 samples, 0.33%)</title><rect x="77.6667%" y="1204" width="0.3333%" height="15" fill="rgb(229,55,45)" fg:x="233" fg:w="1"/><text x="77.9167%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="77.3333%" y="868" width="1.3333%" height="15" fill="rgb(208,92,15)" fg:x="232" fg:w="4"/><text x="77.5833%" y="878.50"></text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (3 samples, 1.00%)</title><rect x="77.6667%" y="884" width="1.0000%" height="15" fill="rgb(234,185,47)" fg:x="233" fg:w="3"/><text x="77.9167%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="77.6667%" y="900" width="1.0000%" height="15" fill="rgb(253,104,50)" fg:x="233" fg:w="3"/><text x="77.9167%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="77.6667%" y="916" width="1.0000%" height="15" fill="rgb(205,70,7)" fg:x="233" fg:w="3"/><text x="77.9167%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="77.6667%" y="932" width="1.0000%" height="15" fill="rgb(240,178,43)" fg:x="233" fg:w="3"/><text x="77.9167%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="77.6667%" y="948" width="1.0000%" height="15" fill="rgb(214,112,2)" fg:x="233" fg:w="3"/><text x="77.9167%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="77.6667%" y="964" width="1.0000%" height="15" fill="rgb(206,46,17)" fg:x="233" fg:w="3"/><text x="77.9167%" y="974.50"></text></g><g><title><module> (pyarrow/compute.py:18) (3 samples, 1.00%)</title><rect x="77.6667%" y="980" width="1.0000%" height="15" fill="rgb(225,220,16)" fg:x="233" fg:w="3"/><text x="77.9167%" y="990.50"></text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (2 samples, 0.67%)</title><rect x="78.0000%" y="996" width="0.6667%" height="15" fill="rgb(238,65,40)" fg:x="234" fg:w="2"/><text x="78.2500%" y="1006.50"></text></g><g><title>_wrap_function (pyarrow/compute.py:290) (2 samples, 0.67%)</title><rect x="78.0000%" y="1012" width="0.6667%" height="15" fill="rgb(230,151,21)" fg:x="234" fg:w="2"/><text x="78.2500%" y="1022.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (2 samples, 0.67%)</title><rect x="78.0000%" y="1028" width="0.6667%" height="15" fill="rgb(218,58,49)" fg:x="234" fg:w="2"/><text x="78.2500%" y="1038.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.33%)</title><rect x="78.3333%" y="1044" width="0.3333%" height="15" fill="rgb(219,179,14)" fg:x="235" fg:w="1"/><text x="78.5833%" y="1054.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.33%)</title><rect x="78.3333%" y="1060" width="0.3333%" height="15" fill="rgb(223,72,1)" fg:x="235" fg:w="1"/><text x="78.5833%" y="1070.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (5 samples, 1.67%)</title><rect x="77.3333%" y="596" width="1.6667%" height="15" fill="rgb(238,126,10)" fg:x="232" fg:w="5"/><text x="77.5833%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="77.3333%" y="612" width="1.6667%" height="15" fill="rgb(224,206,38)" fg:x="232" fg:w="5"/><text x="77.5833%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="77.3333%" y="628" width="1.6667%" height="15" fill="rgb(212,201,54)" fg:x="232" fg:w="5"/><text x="77.5833%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="77.3333%" y="644" width="1.6667%" height="15" fill="rgb(218,154,48)" fg:x="232" fg:w="5"/><text x="77.5833%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="77.3333%" y="660" width="1.6667%" height="15" fill="rgb(232,93,24)" fg:x="232" fg:w="5"/><text x="77.5833%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="77.3333%" y="676" width="1.6667%" height="15" fill="rgb(245,30,21)" fg:x="232" fg:w="5"/><text x="77.5833%" y="686.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (5 samples, 1.67%)</title><rect x="77.3333%" y="692" width="1.6667%" height="15" fill="rgb(242,148,29)" fg:x="232" fg:w="5"/><text x="77.5833%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="77.3333%" y="708" width="1.6667%" height="15" fill="rgb(244,153,54)" fg:x="232" fg:w="5"/><text x="77.5833%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="77.3333%" y="724" width="1.6667%" height="15" fill="rgb(252,87,22)" fg:x="232" fg:w="5"/><text x="77.5833%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="77.3333%" y="740" width="1.6667%" height="15" fill="rgb(210,51,29)" fg:x="232" fg:w="5"/><text x="77.5833%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="77.3333%" y="756" width="1.6667%" height="15" fill="rgb(242,136,47)" fg:x="232" fg:w="5"/><text x="77.5833%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="77.3333%" y="772" width="1.6667%" height="15" fill="rgb(238,68,4)" fg:x="232" fg:w="5"/><text x="77.5833%" y="782.50"></text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (5 samples, 1.67%)</title><rect x="77.3333%" y="788" width="1.6667%" height="15" fill="rgb(242,161,30)" fg:x="232" fg:w="5"/><text x="77.5833%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="77.3333%" y="804" width="1.6667%" height="15" fill="rgb(218,58,44)" fg:x="232" fg:w="5"/><text x="77.5833%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="77.3333%" y="820" width="1.6667%" height="15" fill="rgb(252,125,32)" fg:x="232" fg:w="5"/><text x="77.5833%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="77.3333%" y="836" width="1.6667%" height="15" fill="rgb(219,178,0)" fg:x="232" fg:w="5"/><text x="77.5833%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="77.3333%" y="852" width="1.6667%" height="15" fill="rgb(213,152,7)" fg:x="232" fg:w="5"/><text x="77.5833%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="78.6667%" y="868" width="0.3333%" height="15" fill="rgb(249,109,34)" fg:x="236" fg:w="1"/><text x="78.9167%" y="878.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="78.6667%" y="884" width="0.3333%" height="15" fill="rgb(232,96,21)" fg:x="236" fg:w="1"/><text x="78.9167%" y="894.50"></text></g><g><title>__new__ (typing.py:1866) (1 samples, 0.33%)</title><rect x="79.0000%" y="708" width="0.3333%" height="15" fill="rgb(228,27,39)" fg:x="237" fg:w="1"/><text x="79.2500%" y="718.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (1 samples, 0.33%)</title><rect x="79.0000%" y="724" width="0.3333%" height="15" fill="rgb(211,182,52)" fg:x="237" fg:w="1"/><text x="79.2500%" y="734.50"></text></g><g><title><dictcomp> (typing.py:1848) (1 samples, 0.33%)</title><rect x="79.0000%" y="740" width="0.3333%" height="15" fill="rgb(234,178,38)" fg:x="237" fg:w="1"/><text x="79.2500%" y="750.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (1 samples, 0.33%)</title><rect x="79.3333%" y="804" width="0.3333%" height="15" fill="rgb(221,111,3)" fg:x="238" fg:w="1"/><text x="79.5833%" y="814.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.33%)</title><rect x="79.3333%" y="820" width="0.3333%" height="15" fill="rgb(228,175,21)" fg:x="238" fg:w="1"/><text x="79.5833%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.33%)</title><rect x="79.3333%" y="836" width="0.3333%" height="15" fill="rgb(228,174,43)" fg:x="238" fg:w="1"/><text x="79.5833%" y="846.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (4 samples, 1.33%)</title><rect x="79.6667%" y="900" width="1.3333%" height="15" fill="rgb(211,191,0)" fg:x="239" fg:w="4"/><text x="79.9167%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.33%)</title><rect x="80.6667%" y="916" width="0.3333%" height="15" fill="rgb(253,117,3)" fg:x="242" fg:w="1"/><text x="80.9167%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.33%)</title><rect x="80.6667%" y="932" width="0.3333%" height="15" fill="rgb(241,127,19)" fg:x="242" fg:w="1"/><text x="80.9167%" y="942.50"></text></g><g><title><module> (json/__init__.py:1) (1 samples, 0.33%)</title><rect x="81.0000%" y="980" width="0.3333%" height="15" fill="rgb(218,103,12)" fg:x="243" fg:w="1"/><text x="81.2500%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.0000%" y="996" width="0.3333%" height="15" fill="rgb(236,214,43)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.0000%" y="1012" width="0.3333%" height="15" fill="rgb(244,144,19)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.0000%" y="1028" width="0.3333%" height="15" fill="rgb(246,188,10)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.0000%" y="1044" width="0.3333%" height="15" fill="rgb(212,193,33)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.0000%" y="1060" width="0.3333%" height="15" fill="rgb(241,51,29)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1070.50"></text></g><g><title><module> (json/decoder.py:1) (1 samples, 0.33%)</title><rect x="81.0000%" y="1076" width="0.3333%" height="15" fill="rgb(211,58,19)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="81.0000%" y="1092" width="0.3333%" height="15" fill="rgb(229,111,26)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.0000%" y="1108" width="0.3333%" height="15" fill="rgb(213,115,40)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.0000%" y="1124" width="0.3333%" height="15" fill="rgb(209,56,44)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.0000%" y="1140" width="0.3333%" height="15" fill="rgb(230,108,32)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1150.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="81.0000%" y="1156" width="0.3333%" height="15" fill="rgb(216,165,31)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1166.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="81.0000%" y="1172" width="0.3333%" height="15" fill="rgb(218,122,21)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1182.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.33%)</title><rect x="81.0000%" y="1188" width="0.3333%" height="15" fill="rgb(223,224,47)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1198.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.33%)</title><rect x="81.0000%" y="1204" width="0.3333%" height="15" fill="rgb(238,102,44)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1214.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.33%)</title><rect x="81.0000%" y="1220" width="0.3333%" height="15" fill="rgb(236,46,40)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1230.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.33%)</title><rect x="81.0000%" y="1236" width="0.3333%" height="15" fill="rgb(247,202,50)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1246.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.33%)</title><rect x="81.0000%" y="1252" width="0.3333%" height="15" fill="rgb(209,99,20)" fg:x="243" fg:w="1"/><text x="81.2500%" y="1262.50"></text></g><g><title><module> (pandas/core/internals/__init__.py:1) (1 samples, 0.33%)</title><rect x="81.3333%" y="980" width="0.3333%" height="15" fill="rgb(252,27,34)" fg:x="244" fg:w="1"/><text x="81.5833%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.3333%" y="996" width="0.3333%" height="15" fill="rgb(215,206,23)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.3333%" y="1012" width="0.3333%" height="15" fill="rgb(212,135,36)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.3333%" y="1028" width="0.3333%" height="15" fill="rgb(240,189,1)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.3333%" y="1044" width="0.3333%" height="15" fill="rgb(242,56,20)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.3333%" y="1060" width="0.3333%" height="15" fill="rgb(247,132,33)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1070.50"></text></g><g><title><module> (pandas/core/internals/api.py:1) (1 samples, 0.33%)</title><rect x="81.3333%" y="1076" width="0.3333%" height="15" fill="rgb(208,149,11)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.3333%" y="1092" width="0.3333%" height="15" fill="rgb(211,33,11)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.3333%" y="1108" width="0.3333%" height="15" fill="rgb(221,29,38)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.3333%" y="1124" width="0.3333%" height="15" fill="rgb(206,182,49)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.3333%" y="1140" width="0.3333%" height="15" fill="rgb(216,140,1)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.3333%" y="1156" width="0.3333%" height="15" fill="rgb(232,57,40)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1166.50"></text></g><g><title><module> (pandas/core/internals/blocks.py:1) (1 samples, 0.33%)</title><rect x="81.3333%" y="1172" width="0.3333%" height="15" fill="rgb(224,186,18)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="81.3333%" y="1188" width="0.3333%" height="15" fill="rgb(215,121,11)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.3333%" y="1204" width="0.3333%" height="15" fill="rgb(245,147,10)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.3333%" y="1220" width="0.3333%" height="15" fill="rgb(238,153,13)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.3333%" y="1236" width="0.3333%" height="15" fill="rgb(233,108,0)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.3333%" y="1252" width="0.3333%" height="15" fill="rgb(212,157,17)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1262.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="81.3333%" y="1268" width="0.3333%" height="15" fill="rgb(225,213,38)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1278.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="81.3333%" y="1284" width="0.3333%" height="15" fill="rgb(248,16,11)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.3333%" y="1300" width="0.3333%" height="15" fill="rgb(241,33,4)" fg:x="244" fg:w="1"/><text x="81.5833%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="81.0000%" y="900" width="1.0000%" height="15" fill="rgb(222,26,43)" fg:x="243" fg:w="3"/><text x="81.2500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="81.0000%" y="916" width="1.0000%" height="15" fill="rgb(243,29,36)" fg:x="243" fg:w="3"/><text x="81.2500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="81.0000%" y="932" width="1.0000%" height="15" fill="rgb(241,9,27)" fg:x="243" fg:w="3"/><text x="81.2500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="81.0000%" y="948" width="1.0000%" height="15" fill="rgb(205,117,26)" fg:x="243" fg:w="3"/><text x="81.2500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="81.0000%" y="964" width="1.0000%" height="15" fill="rgb(209,80,39)" fg:x="243" fg:w="3"/><text x="81.2500%" y="974.50"></text></g><g><title><module> (pandas/core/methods/describe.py:1) (1 samples, 0.33%)</title><rect x="81.6667%" y="980" width="0.3333%" height="15" fill="rgb(239,155,6)" fg:x="245" fg:w="1"/><text x="81.9167%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.6667%" y="996" width="0.3333%" height="15" fill="rgb(212,104,12)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.6667%" y="1012" width="0.3333%" height="15" fill="rgb(234,204,3)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.6667%" y="1028" width="0.3333%" height="15" fill="rgb(251,218,7)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.6667%" y="1044" width="0.3333%" height="15" fill="rgb(221,81,32)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.6667%" y="1060" width="0.3333%" height="15" fill="rgb(214,152,26)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1070.50"></text></g><g><title><module> (pandas/io/formats/format.py:1) (1 samples, 0.33%)</title><rect x="81.6667%" y="1076" width="0.3333%" height="15" fill="rgb(223,22,3)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.6667%" y="1092" width="0.3333%" height="15" fill="rgb(207,174,7)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.6667%" y="1108" width="0.3333%" height="15" fill="rgb(224,19,52)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.6667%" y="1124" width="0.3333%" height="15" fill="rgb(228,24,14)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.6667%" y="1140" width="0.3333%" height="15" fill="rgb(230,153,43)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="81.6667%" y="1156" width="0.3333%" height="15" fill="rgb(231,106,12)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1166.50"></text></g><g><title><module> (pandas/io/common.py:1) (1 samples, 0.33%)</title><rect x="81.6667%" y="1172" width="0.3333%" height="15" fill="rgb(215,92,2)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="81.6667%" y="1188" width="0.3333%" height="15" fill="rgb(249,143,25)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="81.6667%" y="1204" width="0.3333%" height="15" fill="rgb(252,7,35)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="81.6667%" y="1220" width="0.3333%" height="15" fill="rgb(216,69,40)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="81.6667%" y="1236" width="0.3333%" height="15" fill="rgb(240,36,33)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1246.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="81.6667%" y="1252" width="0.3333%" height="15" fill="rgb(231,128,14)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1262.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.33%)</title><rect x="81.6667%" y="1268" width="0.3333%" height="15" fill="rgb(245,143,14)" fg:x="245" fg:w="1"/><text x="81.9167%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="82.0000%" y="1092" width="0.3333%" height="15" fill="rgb(222,130,28)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (1 samples, 0.33%)</title><rect x="82.0000%" y="1108" width="0.3333%" height="15" fill="rgb(212,10,48)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="82.0000%" y="1124" width="0.3333%" height="15" fill="rgb(254,118,45)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="82.0000%" y="1140" width="0.3333%" height="15" fill="rgb(228,6,45)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="82.0000%" y="1156" width="0.3333%" height="15" fill="rgb(241,18,35)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="82.0000%" y="1172" width="0.3333%" height="15" fill="rgb(227,214,53)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="82.0000%" y="1188" width="0.3333%" height="15" fill="rgb(224,107,51)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/base.py:1) (1 samples, 0.33%)</title><rect x="82.0000%" y="1204" width="0.3333%" height="15" fill="rgb(248,60,28)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="82.0000%" y="1220" width="0.3333%" height="15" fill="rgb(249,101,23)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="82.0000%" y="1236" width="0.3333%" height="15" fill="rgb(228,51,19)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="82.0000%" y="1252" width="0.3333%" height="15" fill="rgb(213,20,6)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="82.0000%" y="1268" width="0.3333%" height="15" fill="rgb(212,124,10)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="82.0000%" y="1284" width="0.3333%" height="15" fill="rgb(248,3,40)" fg:x="246" fg:w="1"/><text x="82.2500%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.33%)</title><rect x="79.3333%" y="708" width="3.3333%" height="15" fill="rgb(223,178,23)" fg:x="238" fg:w="10"/><text x="79.5833%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.33%)</title><rect x="79.3333%" y="724" width="3.3333%" height="15" fill="rgb(240,132,45)" fg:x="238" fg:w="10"/><text x="79.5833%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.33%)</title><rect x="79.3333%" y="740" width="3.3333%" height="15" fill="rgb(245,164,36)" fg:x="238" fg:w="10"/><text x="79.5833%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.33%)</title><rect x="79.3333%" y="756" width="3.3333%" height="15" fill="rgb(231,188,53)" fg:x="238" fg:w="10"/><text x="79.5833%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="79.3333%" y="772" width="3.3333%" height="15" fill="rgb(237,198,39)" fg:x="238" fg:w="10"/><text x="79.5833%" y="782.50">_ca..</text></g><g><title><module> (pandas/core/frame.py:1) (10 samples, 3.33%)</title><rect x="79.3333%" y="788" width="3.3333%" height="15" fill="rgb(223,120,35)" fg:x="238" fg:w="10"/><text x="79.5833%" y="798.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 3.00%)</title><rect x="79.6667%" y="804" width="3.0000%" height="15" fill="rgb(253,107,49)" fg:x="239" fg:w="9"/><text x="79.9167%" y="814.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 3.00%)</title><rect x="79.6667%" y="820" width="3.0000%" height="15" fill="rgb(216,44,31)" fg:x="239" fg:w="9"/><text x="79.9167%" y="830.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 3.00%)</title><rect x="79.6667%" y="836" width="3.0000%" height="15" fill="rgb(253,87,21)" fg:x="239" fg:w="9"/><text x="79.9167%" y="846.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 3.00%)</title><rect x="79.6667%" y="852" width="3.0000%" height="15" fill="rgb(226,18,2)" fg:x="239" fg:w="9"/><text x="79.9167%" y="862.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 3.00%)</title><rect x="79.6667%" y="868" width="3.0000%" height="15" fill="rgb(216,8,46)" fg:x="239" fg:w="9"/><text x="79.9167%" y="878.50">_ca..</text></g><g><title><module> (pandas/core/generic.py:2) (9 samples, 3.00%)</title><rect x="79.6667%" y="884" width="3.0000%" height="15" fill="rgb(226,140,39)" fg:x="239" fg:w="9"/><text x="79.9167%" y="894.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="82.0000%" y="900" width="0.6667%" height="15" fill="rgb(221,194,54)" fg:x="246" fg:w="2"/><text x="82.2500%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="82.0000%" y="916" width="0.6667%" height="15" fill="rgb(213,92,11)" fg:x="246" fg:w="2"/><text x="82.2500%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="82.0000%" y="932" width="0.6667%" height="15" fill="rgb(229,162,46)" fg:x="246" fg:w="2"/><text x="82.2500%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="82.0000%" y="948" width="0.6667%" height="15" fill="rgb(214,111,36)" fg:x="246" fg:w="2"/><text x="82.2500%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="82.0000%" y="964" width="0.6667%" height="15" fill="rgb(207,6,21)" fg:x="246" fg:w="2"/><text x="82.2500%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="82.0000%" y="980" width="0.6667%" height="15" fill="rgb(213,127,38)" fg:x="246" fg:w="2"/><text x="82.2500%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="82.0000%" y="996" width="0.6667%" height="15" fill="rgb(238,118,32)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (2 samples, 0.67%)</title><rect x="82.0000%" y="1012" width="0.6667%" height="15" fill="rgb(240,139,39)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="82.0000%" y="1028" width="0.6667%" height="15" fill="rgb(235,10,37)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="82.0000%" y="1044" width="0.6667%" height="15" fill="rgb(249,171,38)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="82.0000%" y="1060" width="0.6667%" height="15" fill="rgb(242,144,32)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="82.0000%" y="1076" width="0.6667%" height="15" fill="rgb(217,117,21)" fg:x="246" fg:w="2"/><text x="82.2500%" y="1086.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="82.3333%" y="1092" width="0.3333%" height="15" fill="rgb(249,87,1)" fg:x="247" fg:w="1"/><text x="82.5833%" y="1102.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="82.3333%" y="1108" width="0.3333%" height="15" fill="rgb(248,196,48)" fg:x="247" fg:w="1"/><text x="82.5833%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 8.00%)</title><rect x="75.0000%" y="580" width="8.0000%" height="15" fill="rgb(251,206,33)" fg:x="225" fg:w="24"/><text x="75.2500%" y="590.50">_call_with_..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (12 samples, 4.00%)</title><rect x="79.0000%" y="596" width="4.0000%" height="15" fill="rgb(232,141,28)" fg:x="237" fg:w="12"/><text x="79.2500%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 4.00%)</title><rect x="79.0000%" y="612" width="4.0000%" height="15" fill="rgb(209,167,14)" fg:x="237" fg:w="12"/><text x="79.2500%" y="622.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 4.00%)</title><rect x="79.0000%" y="628" width="4.0000%" height="15" fill="rgb(225,11,50)" fg:x="237" fg:w="12"/><text x="79.2500%" y="638.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 4.00%)</title><rect x="79.0000%" y="644" width="4.0000%" height="15" fill="rgb(209,50,20)" fg:x="237" fg:w="12"/><text x="79.2500%" y="654.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 4.00%)</title><rect x="79.0000%" y="660" width="4.0000%" height="15" fill="rgb(212,17,46)" fg:x="237" fg:w="12"/><text x="79.2500%" y="670.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 4.00%)</title><rect x="79.0000%" y="676" width="4.0000%" height="15" fill="rgb(216,101,39)" fg:x="237" fg:w="12"/><text x="79.2500%" y="686.50">_cal..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (12 samples, 4.00%)</title><rect x="79.0000%" y="692" width="4.0000%" height="15" fill="rgb(212,228,48)" fg:x="237" fg:w="12"/><text x="79.2500%" y="702.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="82.6667%" y="708" width="0.3333%" height="15" fill="rgb(250,6,50)" fg:x="248" fg:w="1"/><text x="82.9167%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="82.6667%" y="724" width="0.3333%" height="15" fill="rgb(250,160,48)" fg:x="248" fg:w="1"/><text x="82.9167%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="82.6667%" y="740" width="0.3333%" height="15" fill="rgb(244,216,33)" fg:x="248" fg:w="1"/><text x="82.9167%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="82.6667%" y="756" width="0.3333%" height="15" fill="rgb(207,157,5)" fg:x="248" fg:w="1"/><text x="82.9167%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="82.6667%" y="772" width="0.3333%" height="15" fill="rgb(228,199,8)" fg:x="248" fg:w="1"/><text x="82.9167%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="82.6667%" y="788" width="0.3333%" height="15" fill="rgb(227,80,20)" fg:x="248" fg:w="1"/><text x="82.9167%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="82.6667%" y="804" width="0.3333%" height="15" fill="rgb(222,9,33)" fg:x="248" fg:w="1"/><text x="82.9167%" y="814.50"></text></g><g><title><module> (pandas/core/groupby/ops.py:1) (1 samples, 0.33%)</title><rect x="82.6667%" y="820" width="0.3333%" height="15" fill="rgb(239,44,28)" fg:x="248" fg:w="1"/><text x="82.9167%" y="830.50"></text></g><g><title>WrappedCythonOp (pandas/core/groupby/ops.py:105) (1 samples, 0.33%)</title><rect x="82.6667%" y="836" width="0.3333%" height="15" fill="rgb(249,187,43)" fg:x="248" fg:w="1"/><text x="82.9167%" y="846.50"></text></g><g><title><module> (pandas/core/api.py:1) (25 samples, 8.33%)</title><rect x="75.0000%" y="500" width="8.3333%" height="15" fill="rgb(216,141,28)" fg:x="225" fg:w="25"/><text x="75.2500%" y="510.50"><module> (pa..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 8.33%)</title><rect x="75.0000%" y="516" width="8.3333%" height="15" fill="rgb(230,154,53)" fg:x="225" fg:w="25"/><text x="75.2500%" y="526.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 8.33%)</title><rect x="75.0000%" y="532" width="8.3333%" height="15" fill="rgb(227,82,4)" fg:x="225" fg:w="25"/><text x="75.2500%" y="542.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 8.33%)</title><rect x="75.0000%" y="548" width="8.3333%" height="15" fill="rgb(220,107,16)" fg:x="225" fg:w="25"/><text x="75.2500%" y="558.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 8.33%)</title><rect x="75.0000%" y="564" width="8.3333%" height="15" fill="rgb(207,187,2)" fg:x="225" fg:w="25"/><text x="75.2500%" y="574.50">exec_module ..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="83.0000%" y="580" width="0.3333%" height="15" fill="rgb(210,162,52)" fg:x="249" fg:w="1"/><text x="83.2500%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="83.0000%" y="596" width="0.3333%" height="15" fill="rgb(217,216,49)" fg:x="249" fg:w="1"/><text x="83.2500%" y="606.50"></text></g><g><title><module> (pandas/core/reshape/api.py:1) (1 samples, 0.33%)</title><rect x="83.3333%" y="500" width="0.3333%" height="15" fill="rgb(218,146,49)" fg:x="250" fg:w="1"/><text x="83.5833%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="83.3333%" y="516" width="0.3333%" height="15" fill="rgb(216,55,40)" fg:x="250" fg:w="1"/><text x="83.5833%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="83.3333%" y="532" width="0.3333%" height="15" fill="rgb(208,196,21)" fg:x="250" fg:w="1"/><text x="83.5833%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="83.3333%" y="548" width="0.3333%" height="15" fill="rgb(242,117,42)" fg:x="250" fg:w="1"/><text x="83.5833%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="83.3333%" y="564" width="0.3333%" height="15" fill="rgb(210,11,23)" fg:x="250" fg:w="1"/><text x="83.5833%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="83.3333%" y="580" width="0.3333%" height="15" fill="rgb(217,110,2)" fg:x="250" fg:w="1"/><text x="83.5833%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="83.3333%" y="596" width="0.3333%" height="15" fill="rgb(229,77,54)" fg:x="250" fg:w="1"/><text x="83.5833%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (47 samples, 15.67%)</title><rect x="68.3333%" y="420" width="15.6667%" height="15" fill="rgb(218,53,16)" fg:x="205" fg:w="47"/><text x="68.5833%" y="430.50">_find_and_load (<frozen ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (47 samples, 15.67%)</title><rect x="68.3333%" y="436" width="15.6667%" height="15" fill="rgb(215,38,13)" fg:x="205" fg:w="47"/><text x="68.5833%" y="446.50">_find_and_load_unlocked ..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (47 samples, 15.67%)</title><rect x="68.3333%" y="452" width="15.6667%" height="15" fill="rgb(235,42,18)" fg:x="205" fg:w="47"/><text x="68.5833%" y="462.50">_load_unlocked (<frozen ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (47 samples, 15.67%)</title><rect x="68.3333%" y="468" width="15.6667%" height="15" fill="rgb(219,66,54)" fg:x="205" fg:w="47"/><text x="68.5833%" y="478.50">exec_module (<frozen imp..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (47 samples, 15.67%)</title><rect x="68.3333%" y="484" width="15.6667%" height="15" fill="rgb(222,205,4)" fg:x="205" fg:w="47"/><text x="68.5833%" y="494.50">_call_with_frames_remove..</text></g><g><title><module> (pytz/__init__.py:1) (1 samples, 0.33%)</title><rect x="83.6667%" y="500" width="0.3333%" height="15" fill="rgb(227,213,46)" fg:x="251" fg:w="1"/><text x="83.9167%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="83.6667%" y="516" width="0.3333%" height="15" fill="rgb(250,145,42)" fg:x="251" fg:w="1"/><text x="83.9167%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="83.6667%" y="532" width="0.3333%" height="15" fill="rgb(219,15,2)" fg:x="251" fg:w="1"/><text x="83.9167%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="83.6667%" y="548" width="0.3333%" height="15" fill="rgb(231,181,52)" fg:x="251" fg:w="1"/><text x="83.9167%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="83.6667%" y="564" width="0.3333%" height="15" fill="rgb(235,1,42)" fg:x="251" fg:w="1"/><text x="83.9167%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="83.6667%" y="580" width="0.3333%" height="15" fill="rgb(249,88,27)" fg:x="251" fg:w="1"/><text x="83.9167%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="83.6667%" y="596" width="0.3333%" height="15" fill="rgb(235,145,16)" fg:x="251" fg:w="1"/><text x="83.9167%" y="606.50"></text></g><g><title><module> (pandas/api/interchange/__init__.py:1) (1 samples, 0.33%)</title><rect x="84.0000%" y="660" width="0.3333%" height="15" fill="rgb(237,114,19)" fg:x="252" fg:w="1"/><text x="84.2500%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.0000%" y="676" width="0.3333%" height="15" fill="rgb(238,51,50)" fg:x="252" fg:w="1"/><text x="84.2500%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.0000%" y="692" width="0.3333%" height="15" fill="rgb(205,194,25)" fg:x="252" fg:w="1"/><text x="84.2500%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.0000%" y="708" width="0.3333%" height="15" fill="rgb(215,203,17)" fg:x="252" fg:w="1"/><text x="84.2500%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.0000%" y="724" width="0.3333%" height="15" fill="rgb(233,112,49)" fg:x="252" fg:w="1"/><text x="84.2500%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.0000%" y="740" width="0.3333%" height="15" fill="rgb(241,130,26)" fg:x="252" fg:w="1"/><text x="84.2500%" y="750.50"></text></g><g><title><module> (pandas/core/interchange/dataframe_protocol.py:1) (1 samples, 0.33%)</title><rect x="84.0000%" y="756" width="0.3333%" height="15" fill="rgb(252,223,19)" fg:x="252" fg:w="1"/><text x="84.2500%" y="766.50"></text></g><g><title>__new__ (typing.py:1937) (1 samples, 0.33%)</title><rect x="84.0000%" y="772" width="0.3333%" height="15" fill="rgb(211,95,25)" fg:x="252" fg:w="1"/><text x="84.2500%" y="782.50"></text></g><g><title><dictcomp> (typing.py:1955) (1 samples, 0.33%)</title><rect x="84.0000%" y="788" width="0.3333%" height="15" fill="rgb(251,182,27)" fg:x="252" fg:w="1"/><text x="84.2500%" y="798.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.33%)</title><rect x="84.0000%" y="804" width="0.3333%" height="15" fill="rgb(238,24,4)" fg:x="252" fg:w="1"/><text x="84.2500%" y="814.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.33%)</title><rect x="84.0000%" y="820" width="0.3333%" height="15" fill="rgb(224,220,25)" fg:x="252" fg:w="1"/><text x="84.2500%" y="830.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.33%)</title><rect x="84.0000%" y="836" width="0.3333%" height="15" fill="rgb(239,133,26)" fg:x="252" fg:w="1"/><text x="84.2500%" y="846.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (2 samples, 0.67%)</title><rect x="84.0000%" y="532" width="0.6667%" height="15" fill="rgb(211,94,48)" fg:x="252" fg:w="2"/><text x="84.2500%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="84.0000%" y="548" width="0.6667%" height="15" fill="rgb(239,87,6)" fg:x="252" fg:w="2"/><text x="84.2500%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="84.0000%" y="564" width="0.6667%" height="15" fill="rgb(227,62,0)" fg:x="252" fg:w="2"/><text x="84.2500%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="84.0000%" y="580" width="0.6667%" height="15" fill="rgb(211,226,4)" fg:x="252" fg:w="2"/><text x="84.2500%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="84.0000%" y="596" width="0.6667%" height="15" fill="rgb(253,38,52)" fg:x="252" fg:w="2"/><text x="84.2500%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="84.0000%" y="612" width="0.6667%" height="15" fill="rgb(229,126,40)" fg:x="252" fg:w="2"/><text x="84.2500%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="84.0000%" y="628" width="0.6667%" height="15" fill="rgb(229,165,44)" fg:x="252" fg:w="2"/><text x="84.2500%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="84.0000%" y="644" width="0.6667%" height="15" fill="rgb(247,95,47)" fg:x="252" fg:w="2"/><text x="84.2500%" y="654.50"></text></g><g><title><module> (pandas/api/typing/__init__.py:1) (1 samples, 0.33%)</title><rect x="84.3333%" y="660" width="0.3333%" height="15" fill="rgb(216,140,30)" fg:x="253" fg:w="1"/><text x="84.5833%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="676" width="0.3333%" height="15" fill="rgb(246,214,8)" fg:x="253" fg:w="1"/><text x="84.5833%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="692" width="0.3333%" height="15" fill="rgb(227,224,15)" fg:x="253" fg:w="1"/><text x="84.5833%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.3333%" y="708" width="0.3333%" height="15" fill="rgb(233,175,4)" fg:x="253" fg:w="1"/><text x="84.5833%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="724" width="0.3333%" height="15" fill="rgb(221,66,45)" fg:x="253" fg:w="1"/><text x="84.5833%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="740" width="0.3333%" height="15" fill="rgb(221,178,18)" fg:x="253" fg:w="1"/><text x="84.5833%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.3333%" y="756" width="0.3333%" height="15" fill="rgb(213,81,29)" fg:x="253" fg:w="1"/><text x="84.5833%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.3333%" y="772" width="0.3333%" height="15" fill="rgb(220,89,49)" fg:x="253" fg:w="1"/><text x="84.5833%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.3333%" y="788" width="0.3333%" height="15" fill="rgb(227,60,33)" fg:x="253" fg:w="1"/><text x="84.5833%" y="798.50"></text></g><g><title><module> (pandas/io/json/__init__.py:1) (1 samples, 0.33%)</title><rect x="84.3333%" y="804" width="0.3333%" height="15" fill="rgb(205,113,12)" fg:x="253" fg:w="1"/><text x="84.5833%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="820" width="0.3333%" height="15" fill="rgb(211,32,1)" fg:x="253" fg:w="1"/><text x="84.5833%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="836" width="0.3333%" height="15" fill="rgb(246,2,12)" fg:x="253" fg:w="1"/><text x="84.5833%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.3333%" y="852" width="0.3333%" height="15" fill="rgb(243,37,27)" fg:x="253" fg:w="1"/><text x="84.5833%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.3333%" y="868" width="0.3333%" height="15" fill="rgb(248,211,31)" fg:x="253" fg:w="1"/><text x="84.5833%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.3333%" y="884" width="0.3333%" height="15" fill="rgb(242,146,47)" fg:x="253" fg:w="1"/><text x="84.5833%" y="894.50"></text></g><g><title><module> (pandas/io/json/_json.py:1) (1 samples, 0.33%)</title><rect x="84.3333%" y="900" width="0.3333%" height="15" fill="rgb(206,70,20)" fg:x="253" fg:w="1"/><text x="84.5833%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="916" width="0.3333%" height="15" fill="rgb(215,10,51)" fg:x="253" fg:w="1"/><text x="84.5833%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="932" width="0.3333%" height="15" fill="rgb(243,178,53)" fg:x="253" fg:w="1"/><text x="84.5833%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.3333%" y="948" width="0.3333%" height="15" fill="rgb(233,221,20)" fg:x="253" fg:w="1"/><text x="84.5833%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="964" width="0.3333%" height="15" fill="rgb(218,95,35)" fg:x="253" fg:w="1"/><text x="84.5833%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="980" width="0.3333%" height="15" fill="rgb(229,13,5)" fg:x="253" fg:w="1"/><text x="84.5833%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.3333%" y="996" width="0.3333%" height="15" fill="rgb(252,164,30)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.3333%" y="1012" width="0.3333%" height="15" fill="rgb(232,68,36)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.3333%" y="1028" width="0.3333%" height="15" fill="rgb(219,59,54)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1038.50"></text></g><g><title><module> (pandas/io/parsers/__init__.py:1) (1 samples, 0.33%)</title><rect x="84.3333%" y="1044" width="0.3333%" height="15" fill="rgb(250,92,33)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.3333%" y="1060" width="0.3333%" height="15" fill="rgb(229,162,54)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.3333%" y="1076" width="0.3333%" height="15" fill="rgb(244,114,52)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.3333%" y="1092" width="0.3333%" height="15" fill="rgb(212,211,43)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.3333%" y="1108" width="0.3333%" height="15" fill="rgb(226,147,8)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1118.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="84.3333%" y="1124" width="0.3333%" height="15" fill="rgb(226,23,13)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1134.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="84.3333%" y="1140" width="0.3333%" height="15" fill="rgb(240,63,4)" fg:x="253" fg:w="1"/><text x="84.5833%" y="1150.50"></text></g><g><title><module> (pandas/__init__.py:1) (50 samples, 16.67%)</title><rect x="68.3333%" y="404" width="16.6667%" height="15" fill="rgb(221,1,32)" fg:x="205" fg:w="50"/><text x="68.5833%" y="414.50"><module> (pandas/__init__...</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="84.0000%" y="420" width="1.0000%" height="15" fill="rgb(242,117,10)" fg:x="252" fg:w="3"/><text x="84.2500%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="84.0000%" y="436" width="1.0000%" height="15" fill="rgb(249,172,44)" fg:x="252" fg:w="3"/><text x="84.2500%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="84.0000%" y="452" width="1.0000%" height="15" fill="rgb(244,46,45)" fg:x="252" fg:w="3"/><text x="84.2500%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="84.0000%" y="468" width="1.0000%" height="15" fill="rgb(206,43,17)" fg:x="252" fg:w="3"/><text x="84.2500%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="84.0000%" y="484" width="1.0000%" height="15" fill="rgb(239,218,39)" fg:x="252" fg:w="3"/><text x="84.2500%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="84.0000%" y="500" width="1.0000%" height="15" fill="rgb(208,169,54)" fg:x="252" fg:w="3"/><text x="84.2500%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="84.0000%" y="516" width="1.0000%" height="15" fill="rgb(247,25,42)" fg:x="252" fg:w="3"/><text x="84.2500%" y="526.50"></text></g><g><title><module> (pandas/testing.py:1) (1 samples, 0.33%)</title><rect x="84.6667%" y="532" width="0.3333%" height="15" fill="rgb(226,23,31)" fg:x="254" fg:w="1"/><text x="84.9167%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.6667%" y="548" width="0.3333%" height="15" fill="rgb(247,16,28)" fg:x="254" fg:w="1"/><text x="84.9167%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.6667%" y="564" width="0.3333%" height="15" fill="rgb(231,147,38)" fg:x="254" fg:w="1"/><text x="84.9167%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.6667%" y="580" width="0.3333%" height="15" fill="rgb(253,81,48)" fg:x="254" fg:w="1"/><text x="84.9167%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.6667%" y="596" width="0.3333%" height="15" fill="rgb(249,222,43)" fg:x="254" fg:w="1"/><text x="84.9167%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.6667%" y="612" width="0.3333%" height="15" fill="rgb(221,3,27)" fg:x="254" fg:w="1"/><text x="84.9167%" y="622.50"></text></g><g><title><module> (pandas/_testing/__init__.py:1) (1 samples, 0.33%)</title><rect x="84.6667%" y="628" width="0.3333%" height="15" fill="rgb(228,180,5)" fg:x="254" fg:w="1"/><text x="84.9167%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.6667%" y="644" width="0.3333%" height="15" fill="rgb(227,131,42)" fg:x="254" fg:w="1"/><text x="84.9167%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.6667%" y="660" width="0.3333%" height="15" fill="rgb(212,3,39)" fg:x="254" fg:w="1"/><text x="84.9167%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.6667%" y="676" width="0.3333%" height="15" fill="rgb(226,45,5)" fg:x="254" fg:w="1"/><text x="84.9167%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="84.6667%" y="692" width="0.3333%" height="15" fill="rgb(215,167,45)" fg:x="254" fg:w="1"/><text x="84.9167%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.6667%" y="708" width="0.3333%" height="15" fill="rgb(250,218,53)" fg:x="254" fg:w="1"/><text x="84.9167%" y="718.50"></text></g><g><title><module> (pandas/_testing/asserters.py:1) (1 samples, 0.33%)</title><rect x="84.6667%" y="724" width="0.3333%" height="15" fill="rgb(207,140,0)" fg:x="254" fg:w="1"/><text x="84.9167%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="84.6667%" y="740" width="0.3333%" height="15" fill="rgb(238,133,51)" fg:x="254" fg:w="1"/><text x="84.9167%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="84.6667%" y="756" width="0.3333%" height="15" fill="rgb(218,203,53)" fg:x="254" fg:w="1"/><text x="84.9167%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="84.6667%" y="772" width="0.3333%" height="15" fill="rgb(226,184,25)" fg:x="254" fg:w="1"/><text x="84.9167%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.33%)</title><rect x="84.6667%" y="788" width="0.3333%" height="15" fill="rgb(231,121,21)" fg:x="254" fg:w="1"/><text x="84.9167%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="84.6667%" y="804" width="0.3333%" height="15" fill="rgb(251,14,34)" fg:x="254" fg:w="1"/><text x="84.9167%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (61 samples, 20.33%)</title><rect x="65.0000%" y="324" width="20.3333%" height="15" fill="rgb(249,193,11)" fg:x="195" fg:w="61"/><text x="65.2500%" y="334.50">_find_and_load (<frozen importli..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (61 samples, 20.33%)</title><rect x="65.0000%" y="340" width="20.3333%" height="15" fill="rgb(220,172,37)" fg:x="195" fg:w="61"/><text x="65.2500%" y="350.50">_find_and_load_unlocked (<frozen..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (61 samples, 20.33%)</title><rect x="65.0000%" y="356" width="20.3333%" height="15" fill="rgb(231,229,43)" fg:x="195" fg:w="61"/><text x="65.2500%" y="366.50">_load_unlocked (<frozen importli..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (61 samples, 20.33%)</title><rect x="65.0000%" y="372" width="20.3333%" height="15" fill="rgb(250,161,5)" fg:x="195" fg:w="61"/><text x="65.2500%" y="382.50">exec_module (<frozen importlib._..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (61 samples, 20.33%)</title><rect x="65.0000%" y="388" width="20.3333%" height="15" fill="rgb(218,225,18)" fg:x="195" fg:w="61"/><text x="65.2500%" y="398.50">_call_with_frames_removed (<froz..</text></g><g><title><module> (xarray/core/dataarray.py:1) (1 samples, 0.33%)</title><rect x="85.0000%" y="404" width="0.3333%" height="15" fill="rgb(245,45,42)" fg:x="255" fg:w="1"/><text x="85.2500%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="85.0000%" y="420" width="0.3333%" height="15" fill="rgb(211,115,1)" fg:x="255" fg:w="1"/><text x="85.2500%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="85.0000%" y="436" width="0.3333%" height="15" fill="rgb(248,133,52)" fg:x="255" fg:w="1"/><text x="85.2500%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="85.0000%" y="452" width="0.3333%" height="15" fill="rgb(238,100,21)" fg:x="255" fg:w="1"/><text x="85.2500%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="85.0000%" y="468" width="0.3333%" height="15" fill="rgb(247,144,11)" fg:x="255" fg:w="1"/><text x="85.2500%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="85.0000%" y="484" width="0.3333%" height="15" fill="rgb(206,164,16)" fg:x="255" fg:w="1"/><text x="85.2500%" y="494.50"></text></g><g><title><module> (xarray/core/dataset.py:1) (1 samples, 0.33%)</title><rect x="85.0000%" y="500" width="0.3333%" height="15" fill="rgb(222,34,3)" fg:x="255" fg:w="1"/><text x="85.2500%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="85.0000%" y="516" width="0.3333%" height="15" fill="rgb(248,82,4)" fg:x="255" fg:w="1"/><text x="85.2500%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="85.0000%" y="532" width="0.3333%" height="15" fill="rgb(228,81,46)" fg:x="255" fg:w="1"/><text x="85.2500%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="85.0000%" y="548" width="0.3333%" height="15" fill="rgb(227,67,47)" fg:x="255" fg:w="1"/><text x="85.2500%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="85.0000%" y="564" width="0.3333%" height="15" fill="rgb(215,93,53)" fg:x="255" fg:w="1"/><text x="85.2500%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="85.0000%" y="580" width="0.3333%" height="15" fill="rgb(248,194,39)" fg:x="255" fg:w="1"/><text x="85.2500%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="85.0000%" y="596" width="0.3333%" height="15" fill="rgb(215,5,19)" fg:x="255" fg:w="1"/><text x="85.2500%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="85.0000%" y="612" width="0.3333%" height="15" fill="rgb(226,215,51)" fg:x="255" fg:w="1"/><text x="85.2500%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="85.0000%" y="628" width="0.3333%" height="15" fill="rgb(225,56,26)" fg:x="255" fg:w="1"/><text x="85.2500%" y="638.50"></text></g><g><title><module> (xarray/plot/__init__.py:1) (1 samples, 0.33%)</title><rect x="85.0000%" y="644" width="0.3333%" height="15" fill="rgb(222,75,29)" fg:x="255" fg:w="1"/><text x="85.2500%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="85.0000%" y="660" width="0.3333%" height="15" fill="rgb(236,139,6)" fg:x="255" fg:w="1"/><text x="85.2500%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="85.0000%" y="676" width="0.3333%" height="15" fill="rgb(223,137,36)" fg:x="255" fg:w="1"/><text x="85.2500%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="85.0000%" y="692" width="0.3333%" height="15" fill="rgb(226,99,2)" fg:x="255" fg:w="1"/><text x="85.2500%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="85.0000%" y="708" width="0.3333%" height="15" fill="rgb(206,133,23)" fg:x="255" fg:w="1"/><text x="85.2500%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="85.0000%" y="724" width="0.3333%" height="15" fill="rgb(243,173,15)" fg:x="255" fg:w="1"/><text x="85.2500%" y="734.50"></text></g><g><title><module> (xarray/plot/dataarray_plot.py:1) (1 samples, 0.33%)</title><rect x="85.0000%" y="740" width="0.3333%" height="15" fill="rgb(228,69,28)" fg:x="255" fg:w="1"/><text x="85.2500%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="85.0000%" y="756" width="0.3333%" height="15" fill="rgb(212,51,22)" fg:x="255" fg:w="1"/><text x="85.2500%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="85.0000%" y="772" width="0.3333%" height="15" fill="rgb(227,113,0)" fg:x="255" fg:w="1"/><text x="85.2500%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="85.0000%" y="788" width="0.3333%" height="15" fill="rgb(252,84,27)" fg:x="255" fg:w="1"/><text x="85.2500%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="85.0000%" y="804" width="0.3333%" height="15" fill="rgb(223,145,39)" fg:x="255" fg:w="1"/><text x="85.2500%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="85.0000%" y="820" width="0.3333%" height="15" fill="rgb(239,219,30)" fg:x="255" fg:w="1"/><text x="85.2500%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="85.0000%" y="836" width="0.3333%" height="15" fill="rgb(224,196,39)" fg:x="255" fg:w="1"/><text x="85.2500%" y="846.50"></text></g><g><title><module> (xarray/testing.py:1) (63 samples, 21.00%)</title><rect x="65.0000%" y="308" width="21.0000%" height="15" fill="rgb(205,35,43)" fg:x="195" fg:w="63"/><text x="65.2500%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="85.3333%" y="324" width="0.6667%" height="15" fill="rgb(228,201,21)" fg:x="256" fg:w="2"/><text x="85.5833%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="85.3333%" y="340" width="0.6667%" height="15" fill="rgb(237,118,16)" fg:x="256" fg:w="2"/><text x="85.5833%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="85.3333%" y="356" width="0.6667%" height="15" fill="rgb(241,17,19)" fg:x="256" fg:w="2"/><text x="85.5833%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="85.3333%" y="372" width="0.6667%" height="15" fill="rgb(214,10,25)" fg:x="256" fg:w="2"/><text x="85.5833%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="85.3333%" y="388" width="0.6667%" height="15" fill="rgb(238,37,29)" fg:x="256" fg:w="2"/><text x="85.5833%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="85.3333%" y="404" width="0.6667%" height="15" fill="rgb(253,83,25)" fg:x="256" fg:w="2"/><text x="85.5833%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="85.3333%" y="420" width="0.6667%" height="15" fill="rgb(234,192,12)" fg:x="256" fg:w="2"/><text x="85.5833%" y="430.50"></text></g><g><title><module> (xarray/core/duck_array_ops.py:1) (2 samples, 0.67%)</title><rect x="85.3333%" y="436" width="0.6667%" height="15" fill="rgb(241,216,45)" fg:x="256" fg:w="2"/><text x="85.5833%" y="446.50"></text></g><g><title>_create_nan_agg_method (xarray/core/duck_array_ops.py:350) (2 samples, 0.67%)</title><rect x="85.3333%" y="452" width="0.6667%" height="15" fill="rgb(242,22,33)" fg:x="256" fg:w="2"/><text x="85.5833%" y="462.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="85.3333%" y="468" width="0.6667%" height="15" fill="rgb(231,105,49)" fg:x="256" fg:w="2"/><text x="85.5833%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="85.3333%" y="484" width="0.6667%" height="15" fill="rgb(218,204,15)" fg:x="256" fg:w="2"/><text x="85.5833%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="85.3333%" y="500" width="0.6667%" height="15" fill="rgb(235,138,41)" fg:x="256" fg:w="2"/><text x="85.5833%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="85.3333%" y="516" width="0.6667%" height="15" fill="rgb(246,0,9)" fg:x="256" fg:w="2"/><text x="85.5833%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="85.3333%" y="532" width="0.6667%" height="15" fill="rgb(210,74,4)" fg:x="256" fg:w="2"/><text x="85.5833%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="85.3333%" y="548" width="0.6667%" height="15" fill="rgb(250,60,41)" fg:x="256" fg:w="2"/><text x="85.5833%" y="558.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.67%)</title><rect x="85.3333%" y="564" width="0.6667%" height="15" fill="rgb(220,115,12)" fg:x="256" fg:w="2"/><text x="85.5833%" y="574.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.67%)</title><rect x="85.3333%" y="580" width="0.6667%" height="15" fill="rgb(237,100,13)" fg:x="256" fg:w="2"/><text x="85.5833%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="86.0000%" y="1092" width="0.3333%" height="15" fill="rgb(213,55,26)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="86.0000%" y="1108" width="0.3333%" height="15" fill="rgb(216,17,4)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="86.0000%" y="1124" width="0.3333%" height="15" fill="rgb(220,153,47)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="86.0000%" y="1140" width="0.3333%" height="15" fill="rgb(215,131,9)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="86.0000%" y="1156" width="0.3333%" height="15" fill="rgb(233,46,42)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1166.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="86.0000%" y="1172" width="0.3333%" height="15" fill="rgb(226,86,7)" fg:x="258" fg:w="1"/><text x="86.2500%" y="1182.50"></text></g><g><title><module> (dask/_compatibility.py:1) (2 samples, 0.67%)</title><rect x="86.0000%" y="980" width="0.6667%" height="15" fill="rgb(239,226,21)" fg:x="258" fg:w="2"/><text x="86.2500%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="86.0000%" y="996" width="0.6667%" height="15" fill="rgb(244,137,22)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="86.0000%" y="1012" width="0.6667%" height="15" fill="rgb(211,139,35)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="86.0000%" y="1028" width="0.6667%" height="15" fill="rgb(214,62,50)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="86.0000%" y="1044" width="0.6667%" height="15" fill="rgb(212,113,44)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="86.0000%" y="1060" width="0.6667%" height="15" fill="rgb(226,150,43)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1070.50"></text></g><g><title><module> (importlib_metadata/__init__.py:1) (2 samples, 0.67%)</title><rect x="86.0000%" y="1076" width="0.6667%" height="15" fill="rgb(250,71,37)" fg:x="258" fg:w="2"/><text x="86.2500%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="86.3333%" y="1092" width="0.3333%" height="15" fill="rgb(219,76,19)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="86.3333%" y="1108" width="0.3333%" height="15" fill="rgb(250,39,11)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="86.3333%" y="1124" width="0.3333%" height="15" fill="rgb(230,64,31)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="86.3333%" y="1140" width="0.3333%" height="15" fill="rgb(208,222,23)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="86.3333%" y="1156" width="0.3333%" height="15" fill="rgb(227,125,18)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="86.3333%" y="1172" width="0.3333%" height="15" fill="rgb(234,210,9)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="86.3333%" y="1188" width="0.3333%" height="15" fill="rgb(217,127,24)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1198.50"></text></g><g><title><module> (importlib_metadata/_adapters.py:1) (1 samples, 0.33%)</title><rect x="86.3333%" y="1204" width="0.3333%" height="15" fill="rgb(239,141,48)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="86.3333%" y="1220" width="0.3333%" height="15" fill="rgb(227,109,8)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="86.3333%" y="1236" width="0.3333%" height="15" fill="rgb(235,184,23)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="86.3333%" y="1252" width="0.3333%" height="15" fill="rgb(227,226,48)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="86.3333%" y="1268" width="0.3333%" height="15" fill="rgb(206,150,11)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="86.3333%" y="1284" width="0.3333%" height="15" fill="rgb(254,2,33)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1294.50"></text></g><g><title><module> (email/message.py:5) (1 samples, 0.33%)</title><rect x="86.3333%" y="1300" width="0.3333%" height="15" fill="rgb(243,160,20)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="86.3333%" y="1316" width="0.3333%" height="15" fill="rgb(218,208,30)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="86.3333%" y="1332" width="0.3333%" height="15" fill="rgb(224,120,49)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="86.3333%" y="1348" width="0.3333%" height="15" fill="rgb(246,12,2)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="86.3333%" y="1364" width="0.3333%" height="15" fill="rgb(236,117,3)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="86.3333%" y="1380" width="0.3333%" height="15" fill="rgb(216,128,52)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1390.50"></text></g><g><title><module> (email/_encoded_words.py:1) (1 samples, 0.33%)</title><rect x="86.3333%" y="1396" width="0.3333%" height="15" fill="rgb(246,145,19)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1406.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="86.3333%" y="1412" width="0.3333%" height="15" fill="rgb(222,11,46)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1422.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="86.3333%" y="1428" width="0.3333%" height="15" fill="rgb(245,82,36)" fg:x="259" fg:w="1"/><text x="86.5833%" y="1438.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.33%)</title><rect x="86.6667%" y="1156" width="0.3333%" height="15" fill="rgb(250,73,51)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1166.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.33%)</title><rect x="86.6667%" y="1172" width="0.3333%" height="15" fill="rgb(221,189,23)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1182.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.33%)</title><rect x="86.6667%" y="1188" width="0.3333%" height="15" fill="rgb(210,33,7)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1198.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (1 samples, 0.33%)</title><rect x="86.6667%" y="1204" width="0.3333%" height="15" fill="rgb(210,107,22)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1214.50"></text></g><g><title>_path_hooks (<frozen importlib._bootstrap_external>:1333) (1 samples, 0.33%)</title><rect x="86.6667%" y="1220" width="0.3333%" height="15" fill="rgb(222,116,37)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1230.50"></text></g><g><title>__init__ (<frozen zipimport>:63) (1 samples, 0.33%)</title><rect x="86.6667%" y="1236" width="0.3333%" height="15" fill="rgb(254,17,48)" fg:x="260" fg:w="1"/><text x="86.9167%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="87.0000%" y="1188" width="0.3333%" height="15" fill="rgb(224,36,32)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1198.50"></text></g><g><title><module> (psutil/_psosx.py:5) (1 samples, 0.33%)</title><rect x="87.0000%" y="1204" width="0.3333%" height="15" fill="rgb(232,90,46)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="87.0000%" y="1220" width="0.3333%" height="15" fill="rgb(241,66,40)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="87.0000%" y="1236" width="0.3333%" height="15" fill="rgb(249,184,29)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="87.0000%" y="1252" width="0.3333%" height="15" fill="rgb(231,181,1)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="87.0000%" y="1268" width="0.3333%" height="15" fill="rgb(224,94,2)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="87.0000%" y="1284" width="0.3333%" height="15" fill="rgb(229,170,15)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1294.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="87.0000%" y="1300" width="0.3333%" height="15" fill="rgb(240,127,35)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1310.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="87.0000%" y="1316" width="0.3333%" height="15" fill="rgb(248,196,34)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="87.0000%" y="1332" width="0.3333%" height="15" fill="rgb(236,137,7)" fg:x="261" fg:w="1"/><text x="87.2500%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="86.0000%" y="900" width="1.6667%" height="15" fill="rgb(235,127,16)" fg:x="258" fg:w="5"/><text x="86.2500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="86.0000%" y="916" width="1.6667%" height="15" fill="rgb(250,192,54)" fg:x="258" fg:w="5"/><text x="86.2500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="86.0000%" y="932" width="1.6667%" height="15" fill="rgb(218,98,20)" fg:x="258" fg:w="5"/><text x="86.2500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="86.0000%" y="948" width="1.6667%" height="15" fill="rgb(230,176,47)" fg:x="258" fg:w="5"/><text x="86.2500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="86.0000%" y="964" width="1.6667%" height="15" fill="rgb(244,2,33)" fg:x="258" fg:w="5"/><text x="86.2500%" y="974.50"></text></g><g><title><module> (dask/system.py:1) (3 samples, 1.00%)</title><rect x="86.6667%" y="980" width="1.0000%" height="15" fill="rgb(231,100,17)" fg:x="260" fg:w="3"/><text x="86.9167%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="86.6667%" y="996" width="1.0000%" height="15" fill="rgb(245,23,12)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="86.6667%" y="1012" width="1.0000%" height="15" fill="rgb(249,55,22)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.00%)</title><rect x="86.6667%" y="1028" width="1.0000%" height="15" fill="rgb(207,134,9)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.00%)</title><rect x="86.6667%" y="1044" width="1.0000%" height="15" fill="rgb(218,134,0)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="86.6667%" y="1060" width="1.0000%" height="15" fill="rgb(213,212,33)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1070.50"></text></g><g><title><module> (psutil/__init__.py:7) (3 samples, 1.00%)</title><rect x="86.6667%" y="1076" width="1.0000%" height="15" fill="rgb(252,106,18)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.00%)</title><rect x="86.6667%" y="1092" width="1.0000%" height="15" fill="rgb(208,126,42)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.00%)</title><rect x="86.6667%" y="1108" width="1.0000%" height="15" fill="rgb(246,175,29)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.00%)</title><rect x="86.6667%" y="1124" width="1.0000%" height="15" fill="rgb(215,13,50)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.00%)</title><rect x="86.6667%" y="1140" width="1.0000%" height="15" fill="rgb(216,172,15)" fg:x="260" fg:w="3"/><text x="86.9167%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="87.0000%" y="1156" width="0.6667%" height="15" fill="rgb(212,103,13)" fg:x="261" fg:w="2"/><text x="87.2500%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="87.0000%" y="1172" width="0.6667%" height="15" fill="rgb(231,171,36)" fg:x="261" fg:w="2"/><text x="87.2500%" y="1182.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="87.3333%" y="1188" width="0.3333%" height="15" fill="rgb(250,123,20)" fg:x="262" fg:w="1"/><text x="87.5833%" y="1198.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="87.3333%" y="1204" width="0.3333%" height="15" fill="rgb(212,53,50)" fg:x="262" fg:w="1"/><text x="87.5833%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="87.6667%" y="996" width="0.3333%" height="15" fill="rgb(243,54,12)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1006.50"></text></g><g><title><module> (dask/local.py:1) (1 samples, 0.33%)</title><rect x="87.6667%" y="1012" width="0.3333%" height="15" fill="rgb(234,101,34)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="87.6667%" y="1028" width="0.3333%" height="15" fill="rgb(254,67,22)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="87.6667%" y="1044" width="0.3333%" height="15" fill="rgb(250,35,47)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="87.6667%" y="1060" width="0.3333%" height="15" fill="rgb(226,126,38)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="87.6667%" y="1076" width="0.3333%" height="15" fill="rgb(216,138,53)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="87.6667%" y="1092" width="0.3333%" height="15" fill="rgb(246,199,43)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1102.50"></text></g><g><title><module> (dask/callbacks.py:1) (1 samples, 0.33%)</title><rect x="87.6667%" y="1108" width="0.3333%" height="15" fill="rgb(232,125,11)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1118.50"></text></g><g><title>contextmanager (contextlib.py:234) (1 samples, 0.33%)</title><rect x="87.6667%" y="1124" width="0.3333%" height="15" fill="rgb(218,219,45)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1134.50"></text></g><g><title>update_wrapper (functools.py:35) (1 samples, 0.33%)</title><rect x="87.6667%" y="1140" width="0.3333%" height="15" fill="rgb(216,102,54)" fg:x="263" fg:w="1"/><text x="87.9167%" y="1150.50"></text></g><g><title><module> (dask/base.py:1) (7 samples, 2.33%)</title><rect x="86.0000%" y="884" width="2.3333%" height="15" fill="rgb(250,228,7)" fg:x="258" fg:w="7"/><text x="86.2500%" y="894.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="87.6667%" y="900" width="0.6667%" height="15" fill="rgb(226,125,25)" fg:x="263" fg:w="2"/><text x="87.9167%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="87.6667%" y="916" width="0.6667%" height="15" fill="rgb(224,165,27)" fg:x="263" fg:w="2"/><text x="87.9167%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="87.6667%" y="932" width="0.6667%" height="15" fill="rgb(233,86,3)" fg:x="263" fg:w="2"/><text x="87.9167%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="87.6667%" y="948" width="0.6667%" height="15" fill="rgb(228,116,20)" fg:x="263" fg:w="2"/><text x="87.9167%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="87.6667%" y="964" width="0.6667%" height="15" fill="rgb(209,192,17)" fg:x="263" fg:w="2"/><text x="87.9167%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="87.6667%" y="980" width="0.6667%" height="15" fill="rgb(224,88,34)" fg:x="263" fg:w="2"/><text x="87.9167%" y="990.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="88.0000%" y="996" width="0.3333%" height="15" fill="rgb(233,38,6)" fg:x="264" fg:w="1"/><text x="88.2500%" y="1006.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="88.0000%" y="1012" width="0.3333%" height="15" fill="rgb(212,59,30)" fg:x="264" fg:w="1"/><text x="88.2500%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 2.67%)</title><rect x="86.0000%" y="804" width="2.6667%" height="15" fill="rgb(213,80,3)" fg:x="258" fg:w="8"/><text x="86.2500%" y="814.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 2.67%)</title><rect x="86.0000%" y="820" width="2.6667%" height="15" fill="rgb(251,178,7)" fg:x="258" fg:w="8"/><text x="86.2500%" y="830.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 2.67%)</title><rect x="86.0000%" y="836" width="2.6667%" height="15" fill="rgb(213,154,26)" fg:x="258" fg:w="8"/><text x="86.2500%" y="846.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 2.67%)</title><rect x="86.0000%" y="852" width="2.6667%" height="15" fill="rgb(238,165,49)" fg:x="258" fg:w="8"/><text x="86.2500%" y="862.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 2.67%)</title><rect x="86.0000%" y="868" width="2.6667%" height="15" fill="rgb(248,91,46)" fg:x="258" fg:w="8"/><text x="86.2500%" y="878.50">_c..</text></g><g><title><module> (dask/delayed.py:1) (1 samples, 0.33%)</title><rect x="88.3333%" y="884" width="0.3333%" height="15" fill="rgb(244,21,52)" fg:x="265" fg:w="1"/><text x="88.5833%" y="894.50"></text></g><g><title>_bind_operator (dask/utils.py:1423) (1 samples, 0.33%)</title><rect x="88.3333%" y="900" width="0.3333%" height="15" fill="rgb(247,122,20)" fg:x="265" fg:w="1"/><text x="88.5833%" y="910.50"></text></g><g><title>_get_binary_operator (dask/delayed.py:654) (1 samples, 0.33%)</title><rect x="88.3333%" y="916" width="0.3333%" height="15" fill="rgb(218,27,9)" fg:x="265" fg:w="1"/><text x="88.5833%" y="926.50"></text></g><g><title>__call__ (toolz/functoolz.py:302) (1 samples, 0.33%)</title><rect x="88.3333%" y="932" width="0.3333%" height="15" fill="rgb(246,7,6)" fg:x="265" fg:w="1"/><text x="88.5833%" y="942.50"></text></g><g><title>delayed (dask/delayed.py:278) (1 samples, 0.33%)</title><rect x="88.3333%" y="948" width="0.3333%" height="15" fill="rgb(227,135,54)" fg:x="265" fg:w="1"/><text x="88.5833%" y="958.50"></text></g><g><title>tokenize (dask/delayed.py:257) (1 samples, 0.33%)</title><rect x="88.3333%" y="964" width="0.3333%" height="15" fill="rgb(247,14,11)" fg:x="265" fg:w="1"/><text x="88.5833%" y="974.50"></text></g><g><title>tokenize (dask/base.py:1026) (1 samples, 0.33%)</title><rect x="88.3333%" y="980" width="0.3333%" height="15" fill="rgb(206,149,34)" fg:x="265" fg:w="1"/><text x="88.5833%" y="990.50"></text></g><g><title>__call__ (dask/utils.py:762) (1 samples, 0.33%)</title><rect x="88.3333%" y="996" width="0.3333%" height="15" fill="rgb(227,228,4)" fg:x="265" fg:w="1"/><text x="88.5833%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="88.6667%" y="932" width="0.6667%" height="15" fill="rgb(238,218,28)" fg:x="266" fg:w="2"/><text x="88.9167%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="88.6667%" y="948" width="0.6667%" height="15" fill="rgb(252,86,40)" fg:x="266" fg:w="2"/><text x="88.9167%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="88.6667%" y="964" width="0.6667%" height="15" fill="rgb(251,225,11)" fg:x="266" fg:w="2"/><text x="88.9167%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="88.6667%" y="980" width="0.6667%" height="15" fill="rgb(206,46,49)" fg:x="266" fg:w="2"/><text x="88.9167%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="88.6667%" y="996" width="0.6667%" height="15" fill="rgb(245,128,24)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (2 samples, 0.67%)</title><rect x="88.6667%" y="1012" width="0.6667%" height="15" fill="rgb(219,177,34)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="88.6667%" y="1028" width="0.6667%" height="15" fill="rgb(218,60,48)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="88.6667%" y="1044" width="0.6667%" height="15" fill="rgb(221,11,5)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="88.6667%" y="1060" width="0.6667%" height="15" fill="rgb(220,148,13)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="88.6667%" y="1076" width="0.6667%" height="15" fill="rgb(210,16,3)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="88.6667%" y="1092" width="0.6667%" height="15" fill="rgb(236,80,2)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (2 samples, 0.67%)</title><rect x="88.6667%" y="1108" width="0.6667%" height="15" fill="rgb(239,129,19)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="88.6667%" y="1124" width="0.6667%" height="15" fill="rgb(220,106,35)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="88.6667%" y="1140" width="0.6667%" height="15" fill="rgb(252,139,45)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="88.6667%" y="1156" width="0.6667%" height="15" fill="rgb(229,8,36)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="88.6667%" y="1172" width="0.6667%" height="15" fill="rgb(230,126,33)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="88.6667%" y="1188" width="0.6667%" height="15" fill="rgb(239,140,21)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1198.50"></text></g><g><title><module> (yaml/reader.py:18) (2 samples, 0.67%)</title><rect x="88.6667%" y="1204" width="0.6667%" height="15" fill="rgb(254,104,9)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1214.50"></text></g><g><title>Reader (yaml/reader.py:45) (2 samples, 0.67%)</title><rect x="88.6667%" y="1220" width="0.6667%" height="15" fill="rgb(239,52,14)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1230.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.67%)</title><rect x="88.6667%" y="1236" width="0.6667%" height="15" fill="rgb(208,227,44)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1246.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.67%)</title><rect x="88.6667%" y="1252" width="0.6667%" height="15" fill="rgb(246,18,19)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1262.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.67%)</title><rect x="88.6667%" y="1268" width="0.6667%" height="15" fill="rgb(235,228,25)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1278.50"></text></g><g><title>_code (sre_compile.py:622) (2 samples, 0.67%)</title><rect x="88.6667%" y="1284" width="0.6667%" height="15" fill="rgb(240,156,20)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1294.50"></text></g><g><title>_compile_info (sre_compile.py:560) (2 samples, 0.67%)</title><rect x="88.6667%" y="1300" width="0.6667%" height="15" fill="rgb(224,8,20)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1310.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (2 samples, 0.67%)</title><rect x="88.6667%" y="1316" width="0.6667%" height="15" fill="rgb(214,12,52)" fg:x="266" fg:w="2"/><text x="88.9167%" y="1326.50"></text></g><g><title>_initialize (dask/config.py:792) (1 samples, 0.33%)</title><rect x="89.3333%" y="932" width="0.3333%" height="15" fill="rgb(211,220,47)" fg:x="268" fg:w="1"/><text x="89.5833%" y="942.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (1 samples, 0.33%)</title><rect x="89.3333%" y="948" width="0.3333%" height="15" fill="rgb(250,173,5)" fg:x="268" fg:w="1"/><text x="89.5833%" y="958.50"></text></g><g><title>load (yaml/__init__.py:74) (1 samples, 0.33%)</title><rect x="89.3333%" y="964" width="0.3333%" height="15" fill="rgb(250,125,52)" fg:x="268" fg:w="1"/><text x="89.5833%" y="974.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (1 samples, 0.33%)</title><rect x="89.3333%" y="980" width="0.3333%" height="15" fill="rgb(209,133,18)" fg:x="268" fg:w="1"/><text x="89.5833%" y="990.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (1 samples, 0.33%)</title><rect x="89.3333%" y="996" width="0.3333%" height="15" fill="rgb(216,173,22)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1006.50"></text></g><g><title>compose_document (yaml/composer.py:50) (1 samples, 0.33%)</title><rect x="89.3333%" y="1012" width="0.3333%" height="15" fill="rgb(205,3,22)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1022.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.33%)</title><rect x="89.3333%" y="1028" width="0.3333%" height="15" fill="rgb(248,22,20)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1038.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.33%)</title><rect x="89.3333%" y="1044" width="0.3333%" height="15" fill="rgb(233,6,29)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1054.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.33%)</title><rect x="89.3333%" y="1060" width="0.3333%" height="15" fill="rgb(240,22,54)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1070.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.33%)</title><rect x="89.3333%" y="1076" width="0.3333%" height="15" fill="rgb(231,133,32)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1086.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.33%)</title><rect x="89.3333%" y="1092" width="0.3333%" height="15" fill="rgb(248,193,4)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1102.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.33%)</title><rect x="89.3333%" y="1108" width="0.3333%" height="15" fill="rgb(211,178,46)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1118.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.33%)</title><rect x="89.3333%" y="1124" width="0.3333%" height="15" fill="rgb(224,5,42)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1134.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.33%)</title><rect x="89.3333%" y="1140" width="0.3333%" height="15" fill="rgb(239,176,25)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1150.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.33%)</title><rect x="89.3333%" y="1156" width="0.3333%" height="15" fill="rgb(245,187,50)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1166.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.33%)</title><rect x="89.3333%" y="1172" width="0.3333%" height="15" fill="rgb(248,24,15)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1182.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.33%)</title><rect x="89.3333%" y="1188" width="0.3333%" height="15" fill="rgb(205,166,13)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1198.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.33%)</title><rect x="89.3333%" y="1204" width="0.3333%" height="15" fill="rgb(208,114,23)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1214.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.33%)</title><rect x="89.3333%" y="1220" width="0.3333%" height="15" fill="rgb(239,127,18)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1230.50"></text></g><g><title>scan_plain_spaces (yaml/scanner.py:1311) (1 samples, 0.33%)</title><rect x="89.3333%" y="1236" width="0.3333%" height="15" fill="rgb(219,154,28)" fg:x="268" fg:w="1"/><text x="89.5833%" y="1246.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.33%)</title><rect x="89.6667%" y="1140" width="0.3333%" height="15" fill="rgb(225,157,23)" fg:x="269" fg:w="1"/><text x="89.9167%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (249 samples, 83.00%)</title><rect x="7.3333%" y="100" width="83.0000%" height="15" fill="rgb(219,8,6)" fg:x="22" fg:w="249"/><text x="7.5833%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (249 samples, 83.00%)</title><rect x="7.3333%" y="116" width="83.0000%" height="15" fill="rgb(212,47,6)" fg:x="22" fg:w="249"/><text x="7.5833%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (249 samples, 83.00%)</title><rect x="7.3333%" y="132" width="83.0000%" height="15" fill="rgb(224,190,4)" fg:x="22" fg:w="249"/><text x="7.5833%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (249 samples, 83.00%)</title><rect x="7.3333%" y="148" width="83.0000%" height="15" fill="rgb(239,183,29)" fg:x="22" fg:w="249"/><text x="7.5833%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (249 samples, 83.00%)</title><rect x="7.3333%" y="164" width="83.0000%" height="15" fill="rgb(213,57,7)" fg:x="22" fg:w="249"/><text x="7.5833%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (76 samples, 25.33%)</title><rect x="65.0000%" y="180" width="25.3333%" height="15" fill="rgb(216,148,1)" fg:x="195" fg:w="76"/><text x="65.2500%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (76 samples, 25.33%)</title><rect x="65.0000%" y="196" width="25.3333%" height="15" fill="rgb(236,182,29)" fg:x="195" fg:w="76"/><text x="65.2500%" y="206.50">_handle_fromlist (<frozen importlib._boo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (76 samples, 25.33%)</title><rect x="65.0000%" y="212" width="25.3333%" height="15" fill="rgb(244,120,48)" fg:x="195" fg:w="76"/><text x="65.2500%" y="222.50">_call_with_frames_removed (<frozen impor..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (76 samples, 25.33%)</title><rect x="65.0000%" y="228" width="25.3333%" height="15" fill="rgb(206,71,34)" fg:x="195" fg:w="76"/><text x="65.2500%" y="238.50">_find_and_load (<frozen importlib._boots..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (76 samples, 25.33%)</title><rect x="65.0000%" y="244" width="25.3333%" height="15" fill="rgb(242,32,6)" fg:x="195" fg:w="76"/><text x="65.2500%" y="254.50">_find_and_load_unlocked (<frozen importl..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (76 samples, 25.33%)</title><rect x="65.0000%" y="260" width="25.3333%" height="15" fill="rgb(241,35,3)" fg:x="195" fg:w="76"/><text x="65.2500%" y="270.50">_load_unlocked (<frozen importlib._boots..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (76 samples, 25.33%)</title><rect x="65.0000%" y="276" width="25.3333%" height="15" fill="rgb(222,62,19)" fg:x="195" fg:w="76"/><text x="65.2500%" y="286.50">exec_module (<frozen importlib._bootstra..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (76 samples, 25.33%)</title><rect x="65.0000%" y="292" width="25.3333%" height="15" fill="rgb(223,110,41)" fg:x="195" fg:w="76"/><text x="65.2500%" y="302.50">_call_with_frames_removed (<frozen impor..</text></g><g><title><module> (xarray/tutorial.py:1) (13 samples, 4.33%)</title><rect x="86.0000%" y="308" width="4.3333%" height="15" fill="rgb(208,224,4)" fg:x="258" fg:w="13"/><text x="86.2500%" y="318.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="324" width="4.3333%" height="15" fill="rgb(241,137,19)" fg:x="258" fg:w="13"/><text x="86.2500%" y="334.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="340" width="4.3333%" height="15" fill="rgb(244,24,17)" fg:x="258" fg:w="13"/><text x="86.2500%" y="350.50">_find..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="356" width="4.3333%" height="15" fill="rgb(245,178,49)" fg:x="258" fg:w="13"/><text x="86.2500%" y="366.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="372" width="4.3333%" height="15" fill="rgb(219,160,38)" fg:x="258" fg:w="13"/><text x="86.2500%" y="382.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="388" width="4.3333%" height="15" fill="rgb(228,137,14)" fg:x="258" fg:w="13"/><text x="86.2500%" y="398.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 4.33%)</title><rect x="86.0000%" y="404" width="4.3333%" height="15" fill="rgb(237,134,11)" fg:x="258" fg:w="13"/><text x="86.2500%" y="414.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 4.33%)</title><rect x="86.0000%" y="420" width="4.3333%" height="15" fill="rgb(211,126,44)" fg:x="258" fg:w="13"/><text x="86.2500%" y="430.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="436" width="4.3333%" height="15" fill="rgb(226,171,33)" fg:x="258" fg:w="13"/><text x="86.2500%" y="446.50">_call..</text></g><g><title><module> (xarray/backends/__init__.py:1) (13 samples, 4.33%)</title><rect x="86.0000%" y="452" width="4.3333%" height="15" fill="rgb(253,99,13)" fg:x="258" fg:w="13"/><text x="86.2500%" y="462.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="468" width="4.3333%" height="15" fill="rgb(244,48,7)" fg:x="258" fg:w="13"/><text x="86.2500%" y="478.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="484" width="4.3333%" height="15" fill="rgb(244,217,54)" fg:x="258" fg:w="13"/><text x="86.2500%" y="494.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 4.33%)</title><rect x="86.0000%" y="500" width="4.3333%" height="15" fill="rgb(224,15,18)" fg:x="258" fg:w="13"/><text x="86.2500%" y="510.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 4.33%)</title><rect x="86.0000%" y="516" width="4.3333%" height="15" fill="rgb(244,99,12)" fg:x="258" fg:w="13"/><text x="86.2500%" y="526.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="532" width="4.3333%" height="15" fill="rgb(233,226,8)" fg:x="258" fg:w="13"/><text x="86.2500%" y="542.50">_call..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (13 samples, 4.33%)</title><rect x="86.0000%" y="548" width="4.3333%" height="15" fill="rgb(229,211,3)" fg:x="258" fg:w="13"/><text x="86.2500%" y="558.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="564" width="4.3333%" height="15" fill="rgb(216,140,21)" fg:x="258" fg:w="13"/><text x="86.2500%" y="574.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="580" width="4.3333%" height="15" fill="rgb(234,122,30)" fg:x="258" fg:w="13"/><text x="86.2500%" y="590.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 4.33%)</title><rect x="86.0000%" y="596" width="4.3333%" height="15" fill="rgb(236,25,46)" fg:x="258" fg:w="13"/><text x="86.2500%" y="606.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 4.33%)</title><rect x="86.0000%" y="612" width="4.3333%" height="15" fill="rgb(217,52,54)" fg:x="258" fg:w="13"/><text x="86.2500%" y="622.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="628" width="4.3333%" height="15" fill="rgb(222,29,26)" fg:x="258" fg:w="13"/><text x="86.2500%" y="638.50">_call..</text></g><g><title><module> (xarray/backends/locks.py:1) (13 samples, 4.33%)</title><rect x="86.0000%" y="644" width="4.3333%" height="15" fill="rgb(216,177,29)" fg:x="258" fg:w="13"/><text x="86.2500%" y="654.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="660" width="4.3333%" height="15" fill="rgb(247,136,51)" fg:x="258" fg:w="13"/><text x="86.2500%" y="670.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="676" width="4.3333%" height="15" fill="rgb(231,47,47)" fg:x="258" fg:w="13"/><text x="86.2500%" y="686.50">_find..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="692" width="4.3333%" height="15" fill="rgb(211,192,36)" fg:x="258" fg:w="13"/><text x="86.2500%" y="702.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 4.33%)</title><rect x="86.0000%" y="708" width="4.3333%" height="15" fill="rgb(229,156,32)" fg:x="258" fg:w="13"/><text x="86.2500%" y="718.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 4.33%)</title><rect x="86.0000%" y="724" width="4.3333%" height="15" fill="rgb(248,213,20)" fg:x="258" fg:w="13"/><text x="86.2500%" y="734.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 4.33%)</title><rect x="86.0000%" y="740" width="4.3333%" height="15" fill="rgb(217,64,7)" fg:x="258" fg:w="13"/><text x="86.2500%" y="750.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 4.33%)</title><rect x="86.0000%" y="756" width="4.3333%" height="15" fill="rgb(232,142,8)" fg:x="258" fg:w="13"/><text x="86.2500%" y="766.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 4.33%)</title><rect x="86.0000%" y="772" width="4.3333%" height="15" fill="rgb(224,92,44)" fg:x="258" fg:w="13"/><text x="86.2500%" y="782.50">_call..</text></g><g><title><module> (dask/__init__.py:1) (13 samples, 4.33%)</title><rect x="86.0000%" y="788" width="4.3333%" height="15" fill="rgb(214,169,17)" fg:x="258" fg:w="13"/><text x="86.2500%" y="798.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.67%)</title><rect x="88.6667%" y="804" width="1.6667%" height="15" fill="rgb(210,59,37)" fg:x="266" fg:w="5"/><text x="88.9167%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="88.6667%" y="820" width="1.6667%" height="15" fill="rgb(214,116,48)" fg:x="266" fg:w="5"/><text x="88.9167%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="88.6667%" y="836" width="1.6667%" height="15" fill="rgb(244,191,6)" fg:x="266" fg:w="5"/><text x="88.9167%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="88.6667%" y="852" width="1.6667%" height="15" fill="rgb(241,50,52)" fg:x="266" fg:w="5"/><text x="88.9167%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="88.6667%" y="868" width="1.6667%" height="15" fill="rgb(236,75,39)" fg:x="266" fg:w="5"/><text x="88.9167%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="88.6667%" y="884" width="1.6667%" height="15" fill="rgb(236,99,0)" fg:x="266" fg:w="5"/><text x="88.9167%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="88.6667%" y="900" width="1.6667%" height="15" fill="rgb(207,202,15)" fg:x="266" fg:w="5"/><text x="88.9167%" y="910.50"></text></g><g><title><module> (dask/config.py:1) (5 samples, 1.67%)</title><rect x="88.6667%" y="916" width="1.6667%" height="15" fill="rgb(233,207,14)" fg:x="266" fg:w="5"/><text x="88.9167%" y="926.50"></text></g><g><title>refresh (dask/config.py:489) (2 samples, 0.67%)</title><rect x="89.6667%" y="932" width="0.6667%" height="15" fill="rgb(226,27,51)" fg:x="269" fg:w="2"/><text x="89.9167%" y="942.50"></text></g><g><title>collect (dask/config.py:460) (2 samples, 0.67%)</title><rect x="89.6667%" y="948" width="0.6667%" height="15" fill="rgb(206,104,42)" fg:x="269" fg:w="2"/><text x="89.9167%" y="958.50"></text></g><g><title>collect_yaml (dask/config.py:197) (2 samples, 0.67%)</title><rect x="89.6667%" y="964" width="0.6667%" height="15" fill="rgb(212,225,4)" fg:x="269" fg:w="2"/><text x="89.9167%" y="974.50"></text></g><g><title>_load_config_file (dask/config.py:175) (2 samples, 0.67%)</title><rect x="89.6667%" y="980" width="0.6667%" height="15" fill="rgb(233,96,42)" fg:x="269" fg:w="2"/><text x="89.9167%" y="990.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (2 samples, 0.67%)</title><rect x="89.6667%" y="996" width="0.6667%" height="15" fill="rgb(229,21,32)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1006.50"></text></g><g><title>load (yaml/__init__.py:74) (2 samples, 0.67%)</title><rect x="89.6667%" y="1012" width="0.6667%" height="15" fill="rgb(226,216,24)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1022.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (2 samples, 0.67%)</title><rect x="89.6667%" y="1028" width="0.6667%" height="15" fill="rgb(221,163,17)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1038.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (2 samples, 0.67%)</title><rect x="89.6667%" y="1044" width="0.6667%" height="15" fill="rgb(216,216,42)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1054.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.67%)</title><rect x="89.6667%" y="1060" width="0.6667%" height="15" fill="rgb(240,118,7)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1070.50"></text></g><g><title>parse_implicit_document_start (yaml/parser.py:139) (2 samples, 0.67%)</title><rect x="89.6667%" y="1076" width="0.6667%" height="15" fill="rgb(221,67,37)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1086.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.67%)</title><rect x="89.6667%" y="1092" width="0.6667%" height="15" fill="rgb(241,32,44)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1102.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.67%)</title><rect x="89.6667%" y="1108" width="0.6667%" height="15" fill="rgb(235,204,43)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1118.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 0.67%)</title><rect x="89.6667%" y="1124" width="0.6667%" height="15" fill="rgb(213,116,10)" fg:x="269" fg:w="2"/><text x="89.9167%" y="1134.50"></text></g><g><title>peek (yaml/reader.py:87) (1 samples, 0.33%)</title><rect x="90.0000%" y="1140" width="0.3333%" height="15" fill="rgb(239,15,48)" fg:x="270" fg:w="1"/><text x="90.2500%" y="1150.50"></text></g><g><title>chunk (xarray/core/dataset.py:2570) (1 samples, 0.33%)</title><rect x="90.3333%" y="100" width="0.3333%" height="15" fill="rgb(207,123,36)" fg:x="271" fg:w="1"/><text x="90.5833%" y="110.50"></text></g><g><title>guess_chunkmanager (xarray/core/parallelcompat.py:71) (1 samples, 0.33%)</title><rect x="90.3333%" y="116" width="0.3333%" height="15" fill="rgb(209,103,30)" fg:x="271" fg:w="1"/><text x="90.5833%" y="126.50"></text></g><g><title>list_chunkmanagers (xarray/core/parallelcompat.py:31) (1 samples, 0.33%)</title><rect x="90.3333%" y="132" width="0.3333%" height="15" fill="rgb(238,100,19)" fg:x="271" fg:w="1"/><text x="90.5833%" y="142.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.33%)</title><rect x="90.3333%" y="148" width="0.3333%" height="15" fill="rgb(244,30,14)" fg:x="271" fg:w="1"/><text x="90.5833%" y="158.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.33%)</title><rect x="90.3333%" y="164" width="0.3333%" height="15" fill="rgb(249,174,6)" fg:x="271" fg:w="1"/><text x="90.5833%" y="174.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.33%)</title><rect x="90.3333%" y="180" width="0.3333%" height="15" fill="rgb(235,213,41)" fg:x="271" fg:w="1"/><text x="90.5833%" y="190.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.33%)</title><rect x="90.3333%" y="196" width="0.3333%" height="15" fill="rgb(213,118,6)" fg:x="271" fg:w="1"/><text x="90.5833%" y="206.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.33%)</title><rect x="90.3333%" y="212" width="0.3333%" height="15" fill="rgb(235,44,51)" fg:x="271" fg:w="1"/><text x="90.5833%" y="222.50"></text></g><g><title>decode (codecs.py:319) (1 samples, 0.33%)</title><rect x="90.3333%" y="228" width="0.3333%" height="15" fill="rgb(217,9,53)" fg:x="271" fg:w="1"/><text x="90.5833%" y="238.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="596" width="0.3333%" height="15" fill="rgb(237,172,34)" fg:x="273" fg:w="1"/><text x="91.2500%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="612" width="0.3333%" height="15" fill="rgb(206,206,11)" fg:x="273" fg:w="1"/><text x="91.2500%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="628" width="0.3333%" height="15" fill="rgb(214,149,29)" fg:x="273" fg:w="1"/><text x="91.2500%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.0000%" y="644" width="0.3333%" height="15" fill="rgb(208,123,3)" fg:x="273" fg:w="1"/><text x="91.2500%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="660" width="0.3333%" height="15" fill="rgb(229,126,4)" fg:x="273" fg:w="1"/><text x="91.2500%" y="670.50"></text></g><g><title><module> (charset_normalizer/__init__.py:2) (1 samples, 0.33%)</title><rect x="91.0000%" y="676" width="0.3333%" height="15" fill="rgb(222,92,36)" fg:x="273" fg:w="1"/><text x="91.2500%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="692" width="0.3333%" height="15" fill="rgb(216,39,41)" fg:x="273" fg:w="1"/><text x="91.2500%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="708" width="0.3333%" height="15" fill="rgb(253,127,28)" fg:x="273" fg:w="1"/><text x="91.2500%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="724" width="0.3333%" height="15" fill="rgb(249,152,51)" fg:x="273" fg:w="1"/><text x="91.2500%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.0000%" y="740" width="0.3333%" height="15" fill="rgb(209,123,42)" fg:x="273" fg:w="1"/><text x="91.2500%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="756" width="0.3333%" height="15" fill="rgb(241,118,22)" fg:x="273" fg:w="1"/><text x="91.2500%" y="766.50"></text></g><g><title><module> (charset_normalizer/api.py:1) (1 samples, 0.33%)</title><rect x="91.0000%" y="772" width="0.3333%" height="15" fill="rgb(208,25,7)" fg:x="273" fg:w="1"/><text x="91.2500%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="788" width="0.3333%" height="15" fill="rgb(243,144,39)" fg:x="273" fg:w="1"/><text x="91.2500%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="804" width="0.3333%" height="15" fill="rgb(250,50,5)" fg:x="273" fg:w="1"/><text x="91.2500%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="820" width="0.3333%" height="15" fill="rgb(207,67,11)" fg:x="273" fg:w="1"/><text x="91.2500%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.0000%" y="836" width="0.3333%" height="15" fill="rgb(245,204,40)" fg:x="273" fg:w="1"/><text x="91.2500%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="852" width="0.3333%" height="15" fill="rgb(238,228,24)" fg:x="273" fg:w="1"/><text x="91.2500%" y="862.50"></text></g><g><title><module> (charset_normalizer/cd.py:1) (1 samples, 0.33%)</title><rect x="91.0000%" y="868" width="0.3333%" height="15" fill="rgb(217,116,22)" fg:x="273" fg:w="1"/><text x="91.2500%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="884" width="0.3333%" height="15" fill="rgb(234,98,12)" fg:x="273" fg:w="1"/><text x="91.2500%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="900" width="0.3333%" height="15" fill="rgb(242,170,50)" fg:x="273" fg:w="1"/><text x="91.2500%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="916" width="0.3333%" height="15" fill="rgb(235,7,5)" fg:x="273" fg:w="1"/><text x="91.2500%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="91.0000%" y="932" width="0.3333%" height="15" fill="rgb(241,114,28)" fg:x="273" fg:w="1"/><text x="91.2500%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="91.0000%" y="948" width="0.3333%" height="15" fill="rgb(246,112,42)" fg:x="273" fg:w="1"/><text x="91.2500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="964" width="0.3333%" height="15" fill="rgb(248,228,14)" fg:x="273" fg:w="1"/><text x="91.2500%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="980" width="0.3333%" height="15" fill="rgb(208,133,18)" fg:x="273" fg:w="1"/><text x="91.2500%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="996" width="0.3333%" height="15" fill="rgb(207,35,49)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="1012" width="0.3333%" height="15" fill="rgb(205,68,36)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.0000%" y="1028" width="0.3333%" height="15" fill="rgb(245,62,40)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="1044" width="0.3333%" height="15" fill="rgb(228,27,24)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1054.50"></text></g><g><title><module> (charset_normalizer/utils.py:1) (1 samples, 0.33%)</title><rect x="91.0000%" y="1060" width="0.3333%" height="15" fill="rgb(253,19,12)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.0000%" y="1076" width="0.3333%" height="15" fill="rgb(232,28,20)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.0000%" y="1092" width="0.3333%" height="15" fill="rgb(218,35,51)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.0000%" y="1108" width="0.3333%" height="15" fill="rgb(212,90,40)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1118.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="91.0000%" y="1124" width="0.3333%" height="15" fill="rgb(220,172,12)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1134.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="91.0000%" y="1140" width="0.3333%" height="15" fill="rgb(226,159,20)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.0000%" y="1156" width="0.3333%" height="15" fill="rgb(234,205,16)" fg:x="273" fg:w="1"/><text x="91.2500%" y="1166.50"></text></g><g><title><module> (requests/exceptions.py:1) (3 samples, 1.00%)</title><rect x="90.6667%" y="484" width="1.0000%" height="15" fill="rgb(207,9,39)" fg:x="272" fg:w="3"/><text x="90.9167%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="91.0000%" y="500" width="0.6667%" height="15" fill="rgb(249,143,15)" fg:x="273" fg:w="2"/><text x="91.2500%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="91.0000%" y="516" width="0.6667%" height="15" fill="rgb(253,133,29)" fg:x="273" fg:w="2"/><text x="91.2500%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="91.0000%" y="532" width="0.6667%" height="15" fill="rgb(221,187,0)" fg:x="273" fg:w="2"/><text x="91.2500%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="91.0000%" y="548" width="0.6667%" height="15" fill="rgb(205,204,26)" fg:x="273" fg:w="2"/><text x="91.2500%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="91.0000%" y="564" width="0.6667%" height="15" fill="rgb(224,68,54)" fg:x="273" fg:w="2"/><text x="91.2500%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (2 samples, 0.67%)</title><rect x="91.0000%" y="580" width="0.6667%" height="15" fill="rgb(209,67,4)" fg:x="273" fg:w="2"/><text x="91.2500%" y="590.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="91.3333%" y="596" width="0.3333%" height="15" fill="rgb(228,229,18)" fg:x="274" fg:w="1"/><text x="91.5833%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.3333%" y="612" width="0.3333%" height="15" fill="rgb(231,89,13)" fg:x="274" fg:w="1"/><text x="91.5833%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.3333%" y="628" width="0.3333%" height="15" fill="rgb(210,182,18)" fg:x="274" fg:w="1"/><text x="91.5833%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.3333%" y="644" width="0.3333%" height="15" fill="rgb(240,105,2)" fg:x="274" fg:w="1"/><text x="91.5833%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.3333%" y="660" width="0.3333%" height="15" fill="rgb(207,170,50)" fg:x="274" fg:w="1"/><text x="91.5833%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.3333%" y="676" width="0.3333%" height="15" fill="rgb(232,133,24)" fg:x="274" fg:w="1"/><text x="91.5833%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.3333%" y="692" width="0.3333%" height="15" fill="rgb(235,166,27)" fg:x="274" fg:w="1"/><text x="91.5833%" y="702.50"></text></g><g><title><module> (http/cookiejar.py:1) (1 samples, 0.33%)</title><rect x="91.3333%" y="708" width="0.3333%" height="15" fill="rgb(209,19,13)" fg:x="274" fg:w="1"/><text x="91.5833%" y="718.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="91.3333%" y="724" width="0.3333%" height="15" fill="rgb(226,79,39)" fg:x="274" fg:w="1"/><text x="91.5833%" y="734.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="91.3333%" y="740" width="0.3333%" height="15" fill="rgb(222,163,10)" fg:x="274" fg:w="1"/><text x="91.5833%" y="750.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.33%)</title><rect x="91.3333%" y="756" width="0.3333%" height="15" fill="rgb(214,44,19)" fg:x="274" fg:w="1"/><text x="91.5833%" y="766.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.33%)</title><rect x="91.3333%" y="772" width="0.3333%" height="15" fill="rgb(210,217,13)" fg:x="274" fg:w="1"/><text x="91.5833%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="90.6667%" y="372" width="1.3333%" height="15" fill="rgb(237,61,54)" fg:x="272" fg:w="4"/><text x="90.9167%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (4 samples, 1.33%)</title><rect x="90.6667%" y="388" width="1.3333%" height="15" fill="rgb(226,184,24)" fg:x="272" fg:w="4"/><text x="90.9167%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="90.6667%" y="404" width="1.3333%" height="15" fill="rgb(223,226,4)" fg:x="272" fg:w="4"/><text x="90.9167%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="90.6667%" y="420" width="1.3333%" height="15" fill="rgb(210,26,41)" fg:x="272" fg:w="4"/><text x="90.9167%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="90.6667%" y="436" width="1.3333%" height="15" fill="rgb(220,221,6)" fg:x="272" fg:w="4"/><text x="90.9167%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="90.6667%" y="452" width="1.3333%" height="15" fill="rgb(225,89,49)" fg:x="272" fg:w="4"/><text x="90.9167%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="90.6667%" y="468" width="1.3333%" height="15" fill="rgb(218,70,45)" fg:x="272" fg:w="4"/><text x="90.9167%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (1 samples, 0.33%)</title><rect x="91.6667%" y="484" width="0.3333%" height="15" fill="rgb(238,166,21)" fg:x="275" fg:w="1"/><text x="91.9167%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.6667%" y="500" width="0.3333%" height="15" fill="rgb(224,141,44)" fg:x="275" fg:w="1"/><text x="91.9167%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.6667%" y="516" width="0.3333%" height="15" fill="rgb(230,12,49)" fg:x="275" fg:w="1"/><text x="91.9167%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.6667%" y="532" width="0.3333%" height="15" fill="rgb(212,174,12)" fg:x="275" fg:w="1"/><text x="91.9167%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.6667%" y="548" width="0.3333%" height="15" fill="rgb(246,67,9)" fg:x="275" fg:w="1"/><text x="91.9167%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.6667%" y="564" width="0.3333%" height="15" fill="rgb(239,35,23)" fg:x="275" fg:w="1"/><text x="91.9167%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (1 samples, 0.33%)</title><rect x="91.6667%" y="580" width="0.3333%" height="15" fill="rgb(211,167,0)" fg:x="275" fg:w="1"/><text x="91.9167%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.6667%" y="596" width="0.3333%" height="15" fill="rgb(225,119,45)" fg:x="275" fg:w="1"/><text x="91.9167%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.6667%" y="612" width="0.3333%" height="15" fill="rgb(210,162,6)" fg:x="275" fg:w="1"/><text x="91.9167%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.6667%" y="628" width="0.3333%" height="15" fill="rgb(208,118,35)" fg:x="275" fg:w="1"/><text x="91.9167%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.6667%" y="644" width="0.3333%" height="15" fill="rgb(239,4,53)" fg:x="275" fg:w="1"/><text x="91.9167%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.6667%" y="660" width="0.3333%" height="15" fill="rgb(213,130,21)" fg:x="275" fg:w="1"/><text x="91.9167%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.6667%" y="676" width="0.3333%" height="15" fill="rgb(235,148,0)" fg:x="275" fg:w="1"/><text x="91.9167%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.6667%" y="692" width="0.3333%" height="15" fill="rgb(244,224,18)" fg:x="275" fg:w="1"/><text x="91.9167%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.6667%" y="708" width="0.3333%" height="15" fill="rgb(211,214,4)" fg:x="275" fg:w="1"/><text x="91.9167%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (1 samples, 0.33%)</title><rect x="91.6667%" y="724" width="0.3333%" height="15" fill="rgb(206,119,25)" fg:x="275" fg:w="1"/><text x="91.9167%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.6667%" y="740" width="0.3333%" height="15" fill="rgb(243,93,47)" fg:x="275" fg:w="1"/><text x="91.9167%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.6667%" y="756" width="0.3333%" height="15" fill="rgb(224,194,6)" fg:x="275" fg:w="1"/><text x="91.9167%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.6667%" y="772" width="0.3333%" height="15" fill="rgb(243,229,6)" fg:x="275" fg:w="1"/><text x="91.9167%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.6667%" y="788" width="0.3333%" height="15" fill="rgb(207,23,50)" fg:x="275" fg:w="1"/><text x="91.9167%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.6667%" y="804" width="0.3333%" height="15" fill="rgb(253,192,32)" fg:x="275" fg:w="1"/><text x="91.9167%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (1 samples, 0.33%)</title><rect x="91.6667%" y="820" width="0.3333%" height="15" fill="rgb(213,21,6)" fg:x="275" fg:w="1"/><text x="91.9167%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="91.6667%" y="836" width="0.3333%" height="15" fill="rgb(243,151,13)" fg:x="275" fg:w="1"/><text x="91.9167%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="91.6667%" y="852" width="0.3333%" height="15" fill="rgb(233,165,41)" fg:x="275" fg:w="1"/><text x="91.9167%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="91.6667%" y="868" width="0.3333%" height="15" fill="rgb(246,176,45)" fg:x="275" fg:w="1"/><text x="91.9167%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="91.6667%" y="884" width="0.3333%" height="15" fill="rgb(217,170,52)" fg:x="275" fg:w="1"/><text x="91.9167%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="91.6667%" y="900" width="0.3333%" height="15" fill="rgb(214,203,54)" fg:x="275" fg:w="1"/><text x="91.9167%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (1 samples, 0.33%)</title><rect x="91.6667%" y="916" width="0.3333%" height="15" fill="rgb(248,215,49)" fg:x="275" fg:w="1"/><text x="91.9167%" y="926.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.33%)</title><rect x="91.6667%" y="932" width="0.3333%" height="15" fill="rgb(208,46,10)" fg:x="275" fg:w="1"/><text x="91.9167%" y="942.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.33%)</title><rect x="91.6667%" y="948" width="0.3333%" height="15" fill="rgb(254,5,31)" fg:x="275" fg:w="1"/><text x="91.9167%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.33%)</title><rect x="91.6667%" y="964" width="0.3333%" height="15" fill="rgb(222,104,33)" fg:x="275" fg:w="1"/><text x="91.9167%" y="974.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.33%)</title><rect x="91.6667%" y="980" width="0.3333%" height="15" fill="rgb(248,49,16)" fg:x="275" fg:w="1"/><text x="91.9167%" y="990.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="91.6667%" y="996" width="0.3333%" height="15" fill="rgb(232,198,41)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1006.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="91.6667%" y="1012" width="0.3333%" height="15" fill="rgb(214,125,3)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="91.6667%" y="1028" width="0.3333%" height="15" fill="rgb(229,220,28)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="91.6667%" y="1044" width="0.3333%" height="15" fill="rgb(222,64,37)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.33%)</title><rect x="91.6667%" y="1060" width="0.3333%" height="15" fill="rgb(249,184,13)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1070.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.33%)</title><rect x="91.6667%" y="1076" width="0.3333%" height="15" fill="rgb(252,176,6)" fg:x="275" fg:w="1"/><text x="91.9167%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="90.6667%" y="116" width="1.6667%" height="15" fill="rgb(228,153,7)" fg:x="272" fg:w="5"/><text x="90.9167%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="90.6667%" y="132" width="1.6667%" height="15" fill="rgb(242,193,5)" fg:x="272" fg:w="5"/><text x="90.9167%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="90.6667%" y="148" width="1.6667%" height="15" fill="rgb(232,140,9)" fg:x="272" fg:w="5"/><text x="90.9167%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="90.6667%" y="164" width="1.6667%" height="15" fill="rgb(213,222,16)" fg:x="272" fg:w="5"/><text x="90.9167%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="90.6667%" y="180" width="1.6667%" height="15" fill="rgb(222,75,50)" fg:x="272" fg:w="5"/><text x="90.9167%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (5 samples, 1.67%)</title><rect x="90.6667%" y="196" width="1.6667%" height="15" fill="rgb(205,180,2)" fg:x="272" fg:w="5"/><text x="90.9167%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="90.6667%" y="212" width="1.6667%" height="15" fill="rgb(216,34,7)" fg:x="272" fg:w="5"/><text x="90.9167%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="90.6667%" y="228" width="1.6667%" height="15" fill="rgb(253,16,32)" fg:x="272" fg:w="5"/><text x="90.9167%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="90.6667%" y="244" width="1.6667%" height="15" fill="rgb(208,97,28)" fg:x="272" fg:w="5"/><text x="90.9167%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="90.6667%" y="260" width="1.6667%" height="15" fill="rgb(225,92,11)" fg:x="272" fg:w="5"/><text x="90.9167%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.67%)</title><rect x="90.6667%" y="276" width="1.6667%" height="15" fill="rgb(243,38,12)" fg:x="272" fg:w="5"/><text x="90.9167%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (5 samples, 1.67%)</title><rect x="90.6667%" y="292" width="1.6667%" height="15" fill="rgb(208,139,16)" fg:x="272" fg:w="5"/><text x="90.9167%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.67%)</title><rect x="90.6667%" y="308" width="1.6667%" height="15" fill="rgb(227,24,9)" fg:x="272" fg:w="5"/><text x="90.9167%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.67%)</title><rect x="90.6667%" y="324" width="1.6667%" height="15" fill="rgb(206,62,11)" fg:x="272" fg:w="5"/><text x="90.9167%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.67%)</title><rect x="90.6667%" y="340" width="1.6667%" height="15" fill="rgb(228,134,27)" fg:x="272" fg:w="5"/><text x="90.9167%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.67%)</title><rect x="90.6667%" y="356" width="1.6667%" height="15" fill="rgb(205,55,33)" fg:x="272" fg:w="5"/><text x="90.9167%" y="366.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="92.0000%" y="372" width="0.3333%" height="15" fill="rgb(243,75,43)" fg:x="276" fg:w="1"/><text x="92.2500%" y="382.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="92.0000%" y="388" width="0.3333%" height="15" fill="rgb(223,27,42)" fg:x="276" fg:w="1"/><text x="92.2500%" y="398.50"></text></g><g><title><module> (pyparsing/actions.py:3) (1 samples, 0.33%)</title><rect x="92.3333%" y="1284" width="0.3333%" height="15" fill="rgb(232,189,33)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1294.50"></text></g><g><title><lambda> (pyparsing/util.py:284) (1 samples, 0.33%)</title><rect x="92.3333%" y="1300" width="0.3333%" height="15" fill="rgb(210,9,39)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1310.50"></text></g><g><title>_make_synonym_function (pyparsing/util.py:240) (1 samples, 0.33%)</title><rect x="92.3333%" y="1316" width="0.3333%" height="15" fill="rgb(242,85,26)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1326.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.33%)</title><rect x="92.3333%" y="1332" width="0.3333%" height="15" fill="rgb(248,44,4)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1342.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.33%)</title><rect x="92.3333%" y="1348" width="0.3333%" height="15" fill="rgb(250,96,46)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1358.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.33%)</title><rect x="92.3333%" y="1364" width="0.3333%" height="15" fill="rgb(229,116,26)" fg:x="277" fg:w="1"/><text x="92.5833%" y="1374.50"></text></g><g><title><module> (pyparsing/common.py:2) (2 samples, 0.67%)</title><rect x="92.6667%" y="1284" width="0.6667%" height="15" fill="rgb(246,94,34)" fg:x="278" fg:w="2"/><text x="92.9167%" y="1294.50"></text></g><g><title>pyparsing_common (pyparsing/common.py:8) (1 samples, 0.33%)</title><rect x="93.0000%" y="1300" width="0.3333%" height="15" fill="rgb(251,73,21)" fg:x="279" fg:w="1"/><text x="93.2500%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:3043) (1 samples, 0.33%)</title><rect x="93.0000%" y="1316" width="0.3333%" height="15" fill="rgb(254,121,25)" fg:x="279" fg:w="1"/><text x="93.2500%" y="1326.50"></text></g><g><title>name (pyparsing/core.py:1899) (1 samples, 0.33%)</title><rect x="93.0000%" y="1332" width="0.3333%" height="15" fill="rgb(215,161,49)" fg:x="279" fg:w="1"/><text x="93.2500%" y="1342.50"></text></g><g><title>default_name (pyparsing/core.py:1872) (1 samples, 0.33%)</title><rect x="93.0000%" y="1348" width="0.3333%" height="15" fill="rgb(221,43,13)" fg:x="279" fg:w="1"/><text x="93.2500%" y="1358.50"></text></g><g><title>_generateDefaultName (pyparsing/core.py:3107) (1 samples, 0.33%)</title><rect x="93.0000%" y="1364" width="0.3333%" height="15" fill="rgb(249,5,37)" fg:x="279" fg:w="1"/><text x="93.2500%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="92.3333%" y="788" width="1.3333%" height="15" fill="rgb(226,25,44)" fg:x="277" fg:w="4"/><text x="92.5833%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="92.3333%" y="804" width="1.3333%" height="15" fill="rgb(238,189,16)" fg:x="277" fg:w="4"/><text x="92.5833%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="92.3333%" y="820" width="1.3333%" height="15" fill="rgb(251,186,8)" fg:x="277" fg:w="4"/><text x="92.5833%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="92.3333%" y="836" width="1.3333%" height="15" fill="rgb(254,34,31)" fg:x="277" fg:w="4"/><text x="92.5833%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="852" width="1.3333%" height="15" fill="rgb(225,215,27)" fg:x="277" fg:w="4"/><text x="92.5833%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (4 samples, 1.33%)</title><rect x="92.3333%" y="868" width="1.3333%" height="15" fill="rgb(221,192,48)" fg:x="277" fg:w="4"/><text x="92.5833%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="92.3333%" y="884" width="1.3333%" height="15" fill="rgb(219,137,20)" fg:x="277" fg:w="4"/><text x="92.5833%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="92.3333%" y="900" width="1.3333%" height="15" fill="rgb(219,84,11)" fg:x="277" fg:w="4"/><text x="92.5833%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="92.3333%" y="916" width="1.3333%" height="15" fill="rgb(224,10,23)" fg:x="277" fg:w="4"/><text x="92.5833%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="92.3333%" y="932" width="1.3333%" height="15" fill="rgb(248,22,39)" fg:x="277" fg:w="4"/><text x="92.5833%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="948" width="1.3333%" height="15" fill="rgb(212,154,20)" fg:x="277" fg:w="4"/><text x="92.5833%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (4 samples, 1.33%)</title><rect x="92.3333%" y="964" width="1.3333%" height="15" fill="rgb(236,199,50)" fg:x="277" fg:w="4"/><text x="92.5833%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="92.3333%" y="980" width="1.3333%" height="15" fill="rgb(211,9,17)" fg:x="277" fg:w="4"/><text x="92.5833%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="996" width="1.3333%" height="15" fill="rgb(243,216,36)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="92.3333%" y="1012" width="1.3333%" height="15" fill="rgb(250,2,10)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="92.3333%" y="1028" width="1.3333%" height="15" fill="rgb(226,50,48)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="92.3333%" y="1044" width="1.3333%" height="15" fill="rgb(243,81,16)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="92.3333%" y="1060" width="1.3333%" height="15" fill="rgb(250,14,2)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="1076" width="1.3333%" height="15" fill="rgb(233,135,29)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (4 samples, 1.33%)</title><rect x="92.3333%" y="1092" width="1.3333%" height="15" fill="rgb(224,64,43)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="92.3333%" y="1108" width="1.3333%" height="15" fill="rgb(238,84,13)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="92.3333%" y="1124" width="1.3333%" height="15" fill="rgb(253,48,26)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="92.3333%" y="1140" width="1.3333%" height="15" fill="rgb(205,223,31)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="92.3333%" y="1156" width="1.3333%" height="15" fill="rgb(221,41,32)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="1172" width="1.3333%" height="15" fill="rgb(213,158,31)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (4 samples, 1.33%)</title><rect x="92.3333%" y="1188" width="1.3333%" height="15" fill="rgb(245,126,43)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="92.3333%" y="1204" width="1.3333%" height="15" fill="rgb(227,7,22)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="92.3333%" y="1220" width="1.3333%" height="15" fill="rgb(252,90,44)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="92.3333%" y="1236" width="1.3333%" height="15" fill="rgb(253,91,0)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="92.3333%" y="1252" width="1.3333%" height="15" fill="rgb(252,175,49)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="92.3333%" y="1268" width="1.3333%" height="15" fill="rgb(246,150,1)" fg:x="277" fg:w="4"/><text x="92.5833%" y="1278.50"></text></g><g><title><module> (pyparsing/core.py:5) (1 samples, 0.33%)</title><rect x="93.3333%" y="1284" width="0.3333%" height="15" fill="rgb(241,192,25)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="93.3333%" y="1300" width="0.3333%" height="15" fill="rgb(239,187,11)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="93.3333%" y="1316" width="0.3333%" height="15" fill="rgb(218,202,51)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="93.3333%" y="1332" width="0.3333%" height="15" fill="rgb(225,176,8)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="93.3333%" y="1348" width="0.3333%" height="15" fill="rgb(219,122,41)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1358.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="93.3333%" y="1364" width="0.3333%" height="15" fill="rgb(248,140,20)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1374.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="93.3333%" y="1380" width="0.3333%" height="15" fill="rgb(245,41,37)" fg:x="280" fg:w="1"/><text x="93.5833%" y="1390.50"></text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (1 samples, 0.33%)</title><rect x="93.6667%" y="1636" width="0.3333%" height="15" fill="rgb(235,82,39)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="93.6667%" y="1652" width="0.3333%" height="15" fill="rgb(230,108,42)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="93.6667%" y="1668" width="0.3333%" height="15" fill="rgb(215,150,50)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="93.6667%" y="1684" width="0.3333%" height="15" fill="rgb(233,212,5)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="93.6667%" y="1700" width="0.3333%" height="15" fill="rgb(245,80,22)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="93.6667%" y="1716" width="0.3333%" height="15" fill="rgb(238,129,16)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="93.6667%" y="1732" width="0.3333%" height="15" fill="rgb(240,19,0)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="93.6667%" y="1748" width="0.3333%" height="15" fill="rgb(232,42,35)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (1 samples, 0.33%)</title><rect x="93.6667%" y="1764" width="0.3333%" height="15" fill="rgb(223,130,24)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1774.50"></text></g><g><title>SearchRequest (pyasn1_modules/rfc2251.py:257) (1 samples, 0.33%)</title><rect x="93.6667%" y="1780" width="0.3333%" height="15" fill="rgb(237,16,22)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1790.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.33%)</title><rect x="93.6667%" y="1796" width="0.3333%" height="15" fill="rgb(248,192,20)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1806.50"></text></g><g><title>__computeTagToPosMap (pyasn1/type/namedtype.py:245) (1 samples, 0.33%)</title><rect x="93.6667%" y="1812" width="0.3333%" height="15" fill="rgb(233,167,2)" fg:x="281" fg:w="1"/><text x="93.9167%" y="1822.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="93.6667%" y="1556" width="0.6667%" height="15" fill="rgb(252,71,44)" fg:x="281" fg:w="2"/><text x="93.9167%" y="1566.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="93.6667%" y="1572" width="0.6667%" height="15" fill="rgb(238,37,47)" fg:x="281" fg:w="2"/><text x="93.9167%" y="1582.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="93.6667%" y="1588" width="0.6667%" height="15" fill="rgb(214,202,54)" fg:x="281" fg:w="2"/><text x="93.9167%" y="1598.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="93.6667%" y="1604" width="0.6667%" height="15" fill="rgb(254,165,40)" fg:x="281" fg:w="2"/><text x="93.9167%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="93.6667%" y="1620" width="0.6667%" height="15" fill="rgb(246,173,38)" fg:x="281" fg:w="2"/><text x="93.9167%" y="1630.50"></text></g><g><title><module> (rsa/__init__.py:14) (1 samples, 0.33%)</title><rect x="94.0000%" y="1636" width="0.3333%" height="15" fill="rgb(215,3,27)" fg:x="282" fg:w="1"/><text x="94.2500%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="94.0000%" y="1652" width="0.3333%" height="15" fill="rgb(239,169,51)" fg:x="282" fg:w="1"/><text x="94.2500%" y="1662.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.33%)</title><rect x="94.0000%" y="1668" width="0.3333%" height="15" fill="rgb(212,5,25)" fg:x="282" fg:w="1"/><text x="94.2500%" y="1678.50"></text></g><g><title>Sequence (pyasn1/type/univ.py:2746) (1 samples, 0.33%)</title><rect x="94.3333%" y="2036" width="0.3333%" height="15" fill="rgb(243,45,17)" fg:x="283" fg:w="1"/><text x="94.5833%" y="2046.50"></text></g><g><title>__init__ (pyasn1/type/constraint.py:22) (1 samples, 0.33%)</title><rect x="94.3333%" y="2052" width="0.3333%" height="15" fill="rgb(242,97,9)" fg:x="283" fg:w="1"/><text x="94.5833%" y="2062.50"></text></g><g><title>_setValues (pyasn1/type/constraint.py:648) (1 samples, 0.33%)</title><rect x="94.3333%" y="2068" width="0.3333%" height="15" fill="rgb(228,71,31)" fg:x="283" fg:w="1"/><text x="94.5833%" y="2078.50"></text></g><g><title><module> (ee/_cloud_api_utils.py:1) (8 samples, 2.67%)</title><rect x="92.3333%" y="772" width="2.6667%" height="15" fill="rgb(252,184,16)" fg:x="277" fg:w="8"/><text x="92.5833%" y="782.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="788" width="1.3333%" height="15" fill="rgb(236,169,46)" fg:x="281" fg:w="4"/><text x="93.9167%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="804" width="1.3333%" height="15" fill="rgb(207,17,47)" fg:x="281" fg:w="4"/><text x="93.9167%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="820" width="1.3333%" height="15" fill="rgb(206,201,28)" fg:x="281" fg:w="4"/><text x="93.9167%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="836" width="1.3333%" height="15" fill="rgb(224,184,23)" fg:x="281" fg:w="4"/><text x="93.9167%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="852" width="1.3333%" height="15" fill="rgb(208,139,48)" fg:x="281" fg:w="4"/><text x="93.9167%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="868" width="1.3333%" height="15" fill="rgb(208,130,10)" fg:x="281" fg:w="4"/><text x="93.9167%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="884" width="1.3333%" height="15" fill="rgb(211,213,45)" fg:x="281" fg:w="4"/><text x="93.9167%" y="894.50"></text></g><g><title><module> (googleapiclient/discovery.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="900" width="1.3333%" height="15" fill="rgb(235,100,30)" fg:x="281" fg:w="4"/><text x="93.9167%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="916" width="1.3333%" height="15" fill="rgb(206,144,31)" fg:x="281" fg:w="4"/><text x="93.9167%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="932" width="1.3333%" height="15" fill="rgb(224,200,26)" fg:x="281" fg:w="4"/><text x="93.9167%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="948" width="1.3333%" height="15" fill="rgb(247,104,53)" fg:x="281" fg:w="4"/><text x="93.9167%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="964" width="1.3333%" height="15" fill="rgb(220,14,17)" fg:x="281" fg:w="4"/><text x="93.9167%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="980" width="1.3333%" height="15" fill="rgb(230,140,40)" fg:x="281" fg:w="4"/><text x="93.9167%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="996" width="1.3333%" height="15" fill="rgb(229,2,41)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1012" width="1.3333%" height="15" fill="rgb(232,89,16)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1022.50"></text></g><g><title><module> (oauth2/service_account.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="1028" width="1.3333%" height="15" fill="rgb(247,59,52)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="1044" width="1.3333%" height="15" fill="rgb(226,110,21)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1060" width="1.3333%" height="15" fill="rgb(224,176,43)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="1076" width="1.3333%" height="15" fill="rgb(221,73,6)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="1092" width="1.3333%" height="15" fill="rgb(232,78,19)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="1108" width="1.3333%" height="15" fill="rgb(233,112,48)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="1124" width="1.3333%" height="15" fill="rgb(243,131,47)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1140" width="1.3333%" height="15" fill="rgb(226,51,1)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1150.50"></text></g><g><title><module> (auth/_service_account_info.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="1156" width="1.3333%" height="15" fill="rgb(247,58,7)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="1172" width="1.3333%" height="15" fill="rgb(209,7,32)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1188" width="1.3333%" height="15" fill="rgb(209,39,41)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="1204" width="1.3333%" height="15" fill="rgb(226,182,46)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="1220" width="1.3333%" height="15" fill="rgb(230,219,10)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="1236" width="1.3333%" height="15" fill="rgb(227,175,30)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="1252" width="1.3333%" height="15" fill="rgb(217,2,50)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1268" width="1.3333%" height="15" fill="rgb(229,160,0)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1278.50"></text></g><g><title><module> (auth/crypt/__init__.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="1284" width="1.3333%" height="15" fill="rgb(207,78,37)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1294.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="1300" width="1.3333%" height="15" fill="rgb(225,57,0)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1316" width="1.3333%" height="15" fill="rgb(232,154,2)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="1332" width="1.3333%" height="15" fill="rgb(241,212,25)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="1348" width="1.3333%" height="15" fill="rgb(226,69,20)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1358.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="1364" width="1.3333%" height="15" fill="rgb(247,184,54)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1374.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="1380" width="1.3333%" height="15" fill="rgb(210,145,0)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1396" width="1.3333%" height="15" fill="rgb(253,82,12)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1406.50"></text></g><g><title><module> (auth/crypt/rsa.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="1412" width="1.3333%" height="15" fill="rgb(245,42,11)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1422.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.33%)</title><rect x="93.6667%" y="1428" width="1.3333%" height="15" fill="rgb(219,147,32)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1444" width="1.3333%" height="15" fill="rgb(246,12,7)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1454.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.33%)</title><rect x="93.6667%" y="1460" width="1.3333%" height="15" fill="rgb(243,50,9)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1470.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.33%)</title><rect x="93.6667%" y="1476" width="1.3333%" height="15" fill="rgb(219,149,6)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1486.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.33%)</title><rect x="93.6667%" y="1492" width="1.3333%" height="15" fill="rgb(241,51,42)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1502.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.33%)</title><rect x="93.6667%" y="1508" width="1.3333%" height="15" fill="rgb(226,128,27)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1518.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.33%)</title><rect x="93.6667%" y="1524" width="1.3333%" height="15" fill="rgb(244,144,4)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1534.50"></text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (4 samples, 1.33%)</title><rect x="93.6667%" y="1540" width="1.3333%" height="15" fill="rgb(221,4,13)" fg:x="281" fg:w="4"/><text x="93.9167%" y="1550.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="94.3333%" y="1556" width="0.6667%" height="15" fill="rgb(208,170,28)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1572" width="0.6667%" height="15" fill="rgb(226,131,13)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="94.3333%" y="1588" width="0.6667%" height="15" fill="rgb(215,72,41)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="94.3333%" y="1604" width="0.6667%" height="15" fill="rgb(243,108,20)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="94.3333%" y="1620" width="0.6667%" height="15" fill="rgb(230,189,17)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="94.3333%" y="1636" width="0.6667%" height="15" fill="rgb(220,50,17)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1652" width="0.6667%" height="15" fill="rgb(248,152,48)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1662.50"></text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (2 samples, 0.67%)</title><rect x="94.3333%" y="1668" width="0.6667%" height="15" fill="rgb(244,91,11)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="94.3333%" y="1684" width="0.6667%" height="15" fill="rgb(220,157,5)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1700" width="0.6667%" height="15" fill="rgb(253,137,8)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="94.3333%" y="1716" width="0.6667%" height="15" fill="rgb(217,137,51)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="94.3333%" y="1732" width="0.6667%" height="15" fill="rgb(218,209,53)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="94.3333%" y="1748" width="0.6667%" height="15" fill="rgb(249,137,25)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="94.3333%" y="1764" width="0.6667%" height="15" fill="rgb(239,155,26)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1780" width="0.6667%" height="15" fill="rgb(227,85,46)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1790.50"></text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (2 samples, 0.67%)</title><rect x="94.3333%" y="1796" width="0.6667%" height="15" fill="rgb(251,107,43)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1806.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="94.3333%" y="1812" width="0.6667%" height="15" fill="rgb(234,170,33)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1822.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="94.3333%" y="1828" width="0.6667%" height="15" fill="rgb(206,29,35)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1838.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="94.3333%" y="1844" width="0.6667%" height="15" fill="rgb(227,138,25)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1854.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="94.3333%" y="1860" width="0.6667%" height="15" fill="rgb(249,131,35)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1870.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1876" width="0.6667%" height="15" fill="rgb(239,6,40)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1886.50"></text></g><g><title><module> (pyasn1/codec/streaming.py:7) (2 samples, 0.67%)</title><rect x="94.3333%" y="1892" width="0.6667%" height="15" fill="rgb(246,136,47)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1902.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.67%)</title><rect x="94.3333%" y="1908" width="0.6667%" height="15" fill="rgb(253,58,26)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1918.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="1924" width="0.6667%" height="15" fill="rgb(237,141,10)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1934.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="94.3333%" y="1940" width="0.6667%" height="15" fill="rgb(234,156,12)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1950.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="94.3333%" y="1956" width="0.6667%" height="15" fill="rgb(243,224,36)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1966.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="94.3333%" y="1972" width="0.6667%" height="15" fill="rgb(205,229,51)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1982.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="94.3333%" y="1988" width="0.6667%" height="15" fill="rgb(223,189,4)" fg:x="283" fg:w="2"/><text x="94.5833%" y="1998.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="94.3333%" y="2004" width="0.6667%" height="15" fill="rgb(249,167,54)" fg:x="283" fg:w="2"/><text x="94.5833%" y="2014.50"></text></g><g><title><module> (pyasn1/type/univ.py:7) (2 samples, 0.67%)</title><rect x="94.3333%" y="2020" width="0.6667%" height="15" fill="rgb(218,34,28)" fg:x="283" fg:w="2"/><text x="94.5833%" y="2030.50"></text></g><g><title>SequenceAndSetBase (pyasn1/type/univ.py:2111) (1 samples, 0.33%)</title><rect x="94.6667%" y="2036" width="0.3333%" height="15" fill="rgb(232,109,42)" fg:x="284" fg:w="1"/><text x="94.9167%" y="2046.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="95.0000%" y="788" width="0.3333%" height="15" fill="rgb(248,214,46)" fg:x="285" fg:w="1"/><text x="95.2500%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="95.0000%" y="804" width="0.3333%" height="15" fill="rgb(244,216,40)" fg:x="285" fg:w="1"/><text x="95.2500%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="95.0000%" y="820" width="0.3333%" height="15" fill="rgb(231,226,31)" fg:x="285" fg:w="1"/><text x="95.2500%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="95.0000%" y="836" width="0.3333%" height="15" fill="rgb(238,38,43)" fg:x="285" fg:w="1"/><text x="95.2500%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="95.0000%" y="852" width="0.3333%" height="15" fill="rgb(208,88,43)" fg:x="285" fg:w="1"/><text x="95.2500%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="95.0000%" y="868" width="0.3333%" height="15" fill="rgb(205,136,37)" fg:x="285" fg:w="1"/><text x="95.2500%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="95.0000%" y="884" width="0.3333%" height="15" fill="rgb(237,34,14)" fg:x="285" fg:w="1"/><text x="95.2500%" y="894.50"></text></g><g><title><module> (ee/computedobject.py:1) (1 samples, 0.33%)</title><rect x="95.0000%" y="900" width="0.3333%" height="15" fill="rgb(236,193,44)" fg:x="285" fg:w="1"/><text x="95.2500%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="95.0000%" y="916" width="0.3333%" height="15" fill="rgb(231,48,10)" fg:x="285" fg:w="1"/><text x="95.2500%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="95.0000%" y="932" width="0.3333%" height="15" fill="rgb(213,141,34)" fg:x="285" fg:w="1"/><text x="95.2500%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="95.0000%" y="948" width="0.3333%" height="15" fill="rgb(249,130,34)" fg:x="285" fg:w="1"/><text x="95.2500%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="95.0000%" y="964" width="0.3333%" height="15" fill="rgb(219,42,41)" fg:x="285" fg:w="1"/><text x="95.2500%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="95.0000%" y="980" width="0.3333%" height="15" fill="rgb(224,100,54)" fg:x="285" fg:w="1"/><text x="95.2500%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="95.0000%" y="996" width="0.3333%" height="15" fill="rgb(229,200,27)" fg:x="285" fg:w="1"/><text x="95.2500%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="95.0000%" y="1012" width="0.3333%" height="15" fill="rgb(217,118,10)" fg:x="285" fg:w="1"/><text x="95.2500%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.33%)</title><rect x="95.0000%" y="1028" width="0.3333%" height="15" fill="rgb(206,22,3)" fg:x="285" fg:w="1"/><text x="95.2500%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 3.33%)</title><rect x="92.3333%" y="532" width="3.3333%" height="15" fill="rgb(232,163,46)" fg:x="277" fg:w="10"/><text x="92.5833%" y="542.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="92.3333%" y="548" width="3.3333%" height="15" fill="rgb(206,95,13)" fg:x="277" fg:w="10"/><text x="92.5833%" y="558.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.33%)</title><rect x="92.3333%" y="564" width="3.3333%" height="15" fill="rgb(253,154,18)" fg:x="277" fg:w="10"/><text x="92.5833%" y="574.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.33%)</title><rect x="92.3333%" y="580" width="3.3333%" height="15" fill="rgb(219,32,23)" fg:x="277" fg:w="10"/><text x="92.5833%" y="590.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.33%)</title><rect x="92.3333%" y="596" width="3.3333%" height="15" fill="rgb(230,191,45)" fg:x="277" fg:w="10"/><text x="92.5833%" y="606.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.33%)</title><rect x="92.3333%" y="612" width="3.3333%" height="15" fill="rgb(229,64,36)" fg:x="277" fg:w="10"/><text x="92.5833%" y="622.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="92.3333%" y="628" width="3.3333%" height="15" fill="rgb(205,129,25)" fg:x="277" fg:w="10"/><text x="92.5833%" y="638.50">_ca..</text></g><g><title><module> (ee/batch.py:1) (10 samples, 3.33%)</title><rect x="92.3333%" y="644" width="3.3333%" height="15" fill="rgb(254,112,7)" fg:x="277" fg:w="10"/><text x="92.5833%" y="654.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 3.33%)</title><rect x="92.3333%" y="660" width="3.3333%" height="15" fill="rgb(226,53,48)" fg:x="277" fg:w="10"/><text x="92.5833%" y="670.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="92.3333%" y="676" width="3.3333%" height="15" fill="rgb(214,153,38)" fg:x="277" fg:w="10"/><text x="92.5833%" y="686.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 3.33%)</title><rect x="92.3333%" y="692" width="3.3333%" height="15" fill="rgb(243,101,7)" fg:x="277" fg:w="10"/><text x="92.5833%" y="702.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 3.33%)</title><rect x="92.3333%" y="708" width="3.3333%" height="15" fill="rgb(240,140,22)" fg:x="277" fg:w="10"/><text x="92.5833%" y="718.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 3.33%)</title><rect x="92.3333%" y="724" width="3.3333%" height="15" fill="rgb(235,114,2)" fg:x="277" fg:w="10"/><text x="92.5833%" y="734.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 3.33%)</title><rect x="92.3333%" y="740" width="3.3333%" height="15" fill="rgb(242,59,12)" fg:x="277" fg:w="10"/><text x="92.5833%" y="750.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 3.33%)</title><rect x="92.3333%" y="756" width="3.3333%" height="15" fill="rgb(252,134,9)" fg:x="277" fg:w="10"/><text x="92.5833%" y="766.50">_ca..</text></g><g><title><module> (ee/data.py:1) (2 samples, 0.67%)</title><rect x="95.0000%" y="772" width="0.6667%" height="15" fill="rgb(236,4,44)" fg:x="285" fg:w="2"/><text x="95.2500%" y="782.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.33%)</title><rect x="95.3333%" y="788" width="0.3333%" height="15" fill="rgb(254,172,41)" fg:x="286" fg:w="1"/><text x="95.5833%" y="798.50"></text></g><g><title>__getitem__ (typing.py:832) (1 samples, 0.33%)</title><rect x="95.3333%" y="804" width="0.3333%" height="15" fill="rgb(244,63,20)" fg:x="286" fg:w="1"/><text x="95.5833%" y="814.50"></text></g><g><title>copy_with (typing.py:841) (1 samples, 0.33%)</title><rect x="95.3333%" y="820" width="0.3333%" height="15" fill="rgb(250,73,31)" fg:x="286" fg:w="1"/><text x="95.5833%" y="830.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.33%)</title><rect x="95.3333%" y="836" width="0.3333%" height="15" fill="rgb(241,38,36)" fg:x="286" fg:w="1"/><text x="95.5833%" y="846.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.33%)</title><rect x="95.3333%" y="852" width="0.3333%" height="15" fill="rgb(245,211,2)" fg:x="286" fg:w="1"/><text x="95.5833%" y="862.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.33%)</title><rect x="95.3333%" y="868" width="0.3333%" height="15" fill="rgb(206,120,28)" fg:x="286" fg:w="1"/><text x="95.5833%" y="878.50"></text></g><g><title><module> (ee/__init__.py:1) (11 samples, 3.67%)</title><rect x="92.3333%" y="516" width="3.6667%" height="15" fill="rgb(211,59,34)" fg:x="277" fg:w="11"/><text x="92.5833%" y="526.50"><mod..</text></g><g><title>parent (<frozen importlib._bootstrap>:398) (1 samples, 0.33%)</title><rect x="95.6667%" y="532" width="0.3333%" height="15" fill="rgb(233,168,5)" fg:x="287" fg:w="1"/><text x="95.9167%" y="542.50"></text></g><g><title>build_engines (xarray/backends/plugins.py:106) (14 samples, 4.67%)</title><rect x="92.3333%" y="164" width="4.6667%" height="15" fill="rgb(234,33,13)" fg:x="277" fg:w="14"/><text x="92.5833%" y="174.50">build..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (14 samples, 4.67%)</title><rect x="92.3333%" y="180" width="4.6667%" height="15" fill="rgb(231,150,26)" fg:x="277" fg:w="14"/><text x="92.5833%" y="190.50">backe..</text></g><g><title>load (importlib_metadata/__init__.py:178) (14 samples, 4.67%)</title><rect x="92.3333%" y="196" width="4.6667%" height="15" fill="rgb(217,191,4)" fg:x="277" fg:w="14"/><text x="92.5833%" y="206.50">load ..</text></g><g><title>import_module (importlib/__init__.py:109) (14 samples, 4.67%)</title><rect x="92.3333%" y="212" width="4.6667%" height="15" fill="rgb(246,198,38)" fg:x="277" fg:w="14"/><text x="92.5833%" y="222.50">impor..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (14 samples, 4.67%)</title><rect x="92.3333%" y="228" width="4.6667%" height="15" fill="rgb(245,64,37)" fg:x="277" fg:w="14"/><text x="92.5833%" y="238.50">_gcd_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.67%)</title><rect x="92.3333%" y="244" width="4.6667%" height="15" fill="rgb(250,30,36)" fg:x="277" fg:w="14"/><text x="92.5833%" y="254.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.67%)</title><rect x="92.3333%" y="260" width="4.6667%" height="15" fill="rgb(217,86,53)" fg:x="277" fg:w="14"/><text x="92.5833%" y="270.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.67%)</title><rect x="92.3333%" y="276" width="4.6667%" height="15" fill="rgb(228,157,16)" fg:x="277" fg:w="14"/><text x="92.5833%" y="286.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.67%)</title><rect x="92.3333%" y="292" width="4.6667%" height="15" fill="rgb(217,59,31)" fg:x="277" fg:w="14"/><text x="92.5833%" y="302.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.67%)</title><rect x="92.3333%" y="308" width="4.6667%" height="15" fill="rgb(237,138,41)" fg:x="277" fg:w="14"/><text x="92.5833%" y="318.50">_call..</text></g><g><title><module> (xee/__init__.py:15) (14 samples, 4.67%)</title><rect x="92.3333%" y="324" width="4.6667%" height="15" fill="rgb(227,91,49)" fg:x="277" fg:w="14"/><text x="92.5833%" y="334.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.67%)</title><rect x="92.3333%" y="340" width="4.6667%" height="15" fill="rgb(247,21,44)" fg:x="277" fg:w="14"/><text x="92.5833%" y="350.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.67%)</title><rect x="92.3333%" y="356" width="4.6667%" height="15" fill="rgb(219,210,51)" fg:x="277" fg:w="14"/><text x="92.5833%" y="366.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.67%)</title><rect x="92.3333%" y="372" width="4.6667%" height="15" fill="rgb(209,140,6)" fg:x="277" fg:w="14"/><text x="92.5833%" y="382.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.67%)</title><rect x="92.3333%" y="388" width="4.6667%" height="15" fill="rgb(221,188,24)" fg:x="277" fg:w="14"/><text x="92.5833%" y="398.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.67%)</title><rect x="92.3333%" y="404" width="4.6667%" height="15" fill="rgb(232,154,20)" fg:x="277" fg:w="14"/><text x="92.5833%" y="414.50">_call..</text></g><g><title><module> (xee/ext.py:15) (14 samples, 4.67%)</title><rect x="92.3333%" y="420" width="4.6667%" height="15" fill="rgb(244,137,50)" fg:x="277" fg:w="14"/><text x="92.5833%" y="430.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 4.67%)</title><rect x="92.3333%" y="436" width="4.6667%" height="15" fill="rgb(225,185,43)" fg:x="277" fg:w="14"/><text x="92.5833%" y="446.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 4.67%)</title><rect x="92.3333%" y="452" width="4.6667%" height="15" fill="rgb(213,205,38)" fg:x="277" fg:w="14"/><text x="92.5833%" y="462.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 4.67%)</title><rect x="92.3333%" y="468" width="4.6667%" height="15" fill="rgb(236,73,12)" fg:x="277" fg:w="14"/><text x="92.5833%" y="478.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 4.67%)</title><rect x="92.3333%" y="484" width="4.6667%" height="15" fill="rgb(235,219,13)" fg:x="277" fg:w="14"/><text x="92.5833%" y="494.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 4.67%)</title><rect x="92.3333%" y="500" width="4.6667%" height="15" fill="rgb(218,59,36)" fg:x="277" fg:w="14"/><text x="92.5833%" y="510.50">_call..</text></g><g><title><module> (pyproj/__init__.py:1) (3 samples, 1.00%)</title><rect x="96.0000%" y="516" width="1.0000%" height="15" fill="rgb(205,110,39)" fg:x="288" fg:w="3"/><text x="96.2500%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="96.6667%" y="532" width="0.3333%" height="15" fill="rgb(218,206,42)" fg:x="290" fg:w="1"/><text x="96.9167%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="96.6667%" y="548" width="0.3333%" height="15" fill="rgb(248,125,24)" fg:x="290" fg:w="1"/><text x="96.9167%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="96.6667%" y="564" width="0.3333%" height="15" fill="rgb(242,28,27)" fg:x="290" fg:w="1"/><text x="96.9167%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="96.6667%" y="580" width="0.3333%" height="15" fill="rgb(216,228,15)" fg:x="290" fg:w="1"/><text x="96.9167%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="96.6667%" y="596" width="0.3333%" height="15" fill="rgb(235,116,46)" fg:x="290" fg:w="1"/><text x="96.9167%" y="606.50"></text></g><g><title><module> (pyproj/network.py:1) (1 samples, 0.33%)</title><rect x="96.6667%" y="612" width="0.3333%" height="15" fill="rgb(224,18,32)" fg:x="290" fg:w="1"/><text x="96.9167%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="96.6667%" y="628" width="0.3333%" height="15" fill="rgb(252,5,12)" fg:x="290" fg:w="1"/><text x="96.9167%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="96.6667%" y="644" width="0.3333%" height="15" fill="rgb(251,36,5)" fg:x="290" fg:w="1"/><text x="96.9167%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="96.6667%" y="660" width="0.3333%" height="15" fill="rgb(217,53,14)" fg:x="290" fg:w="1"/><text x="96.9167%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.33%)</title><rect x="96.6667%" y="676" width="0.3333%" height="15" fill="rgb(215,86,45)" fg:x="290" fg:w="1"/><text x="96.9167%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.33%)</title><rect x="96.6667%" y="692" width="0.3333%" height="15" fill="rgb(242,169,11)" fg:x="290" fg:w="1"/><text x="96.9167%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="96.6667%" y="708" width="0.3333%" height="15" fill="rgb(211,213,45)" fg:x="290" fg:w="1"/><text x="96.9167%" y="718.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (15 samples, 5.00%)</title><rect x="92.3333%" y="132" width="5.0000%" height="15" fill="rgb(205,88,11)" fg:x="277" fg:w="15"/><text x="92.5833%" y="142.50">guess_..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (15 samples, 5.00%)</title><rect x="92.3333%" y="148" width="5.0000%" height="15" fill="rgb(252,69,26)" fg:x="277" fg:w="15"/><text x="92.5833%" y="158.50">list_e..</text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.33%)</title><rect x="97.0000%" y="164" width="0.3333%" height="15" fill="rgb(246,123,37)" fg:x="291" fg:w="1"/><text x="97.2500%" y="174.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.33%)</title><rect x="97.0000%" y="180" width="0.3333%" height="15" fill="rgb(212,205,5)" fg:x="291" fg:w="1"/><text x="97.2500%" y="190.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.33%)</title><rect x="97.0000%" y="196" width="0.3333%" height="15" fill="rgb(253,148,0)" fg:x="291" fg:w="1"/><text x="97.2500%" y="206.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.33%)</title><rect x="97.0000%" y="212" width="0.3333%" height="15" fill="rgb(239,22,4)" fg:x="291" fg:w="1"/><text x="97.2500%" y="222.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.33%)</title><rect x="97.0000%" y="228" width="0.3333%" height="15" fill="rgb(226,26,53)" fg:x="291" fg:w="1"/><text x="97.2500%" y="238.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.33%)</title><rect x="97.0000%" y="244" width="0.3333%" height="15" fill="rgb(225,229,45)" fg:x="291" fg:w="1"/><text x="97.2500%" y="254.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.33%)</title><rect x="97.0000%" y="260" width="0.3333%" height="15" fill="rgb(220,60,37)" fg:x="291" fg:w="1"/><text x="97.2500%" y="270.50"></text></g><g><title>__init__ (xarray/core/dataset.py:666) (1 samples, 0.33%)</title><rect x="97.3333%" y="164" width="0.3333%" height="15" fill="rgb(217,180,35)" fg:x="292" fg:w="1"/><text x="97.5833%" y="174.50"></text></g><g><title>merge_data_and_coords (xarray/core/dataset.py:408) (1 samples, 0.33%)</title><rect x="97.3333%" y="180" width="0.3333%" height="15" fill="rgb(229,7,53)" fg:x="292" fg:w="1"/><text x="97.5833%" y="190.50"></text></g><g><title>merge_core (xarray/core/merge.py:645) (1 samples, 0.33%)</title><rect x="97.3333%" y="196" width="0.3333%" height="15" fill="rgb(254,137,3)" fg:x="292" fg:w="1"/><text x="97.5833%" y="206.50"></text></g><g><title>collect_variables_and_indexes (xarray/core/merge.py:307) (1 samples, 0.33%)</title><rect x="97.3333%" y="212" width="0.3333%" height="15" fill="rgb(215,140,41)" fg:x="292" fg:w="1"/><text x="97.5833%" y="222.50"></text></g><g><title>create_default_index_implicit (xarray/core/indexes.py:1335) (1 samples, 0.33%)</title><rect x="97.3333%" y="228" width="0.3333%" height="15" fill="rgb(250,80,15)" fg:x="292" fg:w="1"/><text x="97.5833%" y="238.50"></text></g><g><title>from_variables (xarray/core/indexes.py:601) (1 samples, 0.33%)</title><rect x="97.3333%" y="244" width="0.3333%" height="15" fill="rgb(252,191,6)" fg:x="292" fg:w="1"/><text x="97.5833%" y="254.50"></text></g><g><title>data (xarray/core/variable.py:422) (1 samples, 0.33%)</title><rect x="97.3333%" y="260" width="0.3333%" height="15" fill="rgb(246,217,18)" fg:x="292" fg:w="1"/><text x="97.5833%" y="270.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:1502) (1 samples, 0.33%)</title><rect x="97.3333%" y="276" width="0.3333%" height="15" fill="rgb(223,93,7)" fg:x="292" fg:w="1"/><text x="97.5833%" y="286.50"></text></g><g><title>__array__ (xarray/core/indexing.py:1492) (1 samples, 0.33%)</title><rect x="97.3333%" y="292" width="0.3333%" height="15" fill="rgb(225,55,52)" fg:x="292" fg:w="1"/><text x="97.5833%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="97.6667%" y="356" width="0.3333%" height="15" fill="rgb(240,31,24)" fg:x="293" fg:w="1"/><text x="97.9167%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="97.6667%" y="372" width="0.3333%" height="15" fill="rgb(205,56,52)" fg:x="293" fg:w="1"/><text x="97.9167%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="97.6667%" y="388" width="0.3333%" height="15" fill="rgb(246,146,12)" fg:x="293" fg:w="1"/><text x="97.9167%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="97.6667%" y="404" width="0.3333%" height="15" fill="rgb(239,84,36)" fg:x="293" fg:w="1"/><text x="97.9167%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="97.6667%" y="420" width="0.3333%" height="15" fill="rgb(207,41,40)" fg:x="293" fg:w="1"/><text x="97.9167%" y="430.50"></text></g><g><title><module> (scipy/io/matlab/__init__.py:1) (1 samples, 0.33%)</title><rect x="97.6667%" y="436" width="0.3333%" height="15" fill="rgb(241,179,25)" fg:x="293" fg:w="1"/><text x="97.9167%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="97.6667%" y="452" width="0.3333%" height="15" fill="rgb(210,0,34)" fg:x="293" fg:w="1"/><text x="97.9167%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="97.6667%" y="468" width="0.3333%" height="15" fill="rgb(225,217,29)" fg:x="293" fg:w="1"/><text x="97.9167%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="97.6667%" y="484" width="0.3333%" height="15" fill="rgb(216,191,38)" fg:x="293" fg:w="1"/><text x="97.9167%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="97.6667%" y="500" width="0.3333%" height="15" fill="rgb(232,140,52)" fg:x="293" fg:w="1"/><text x="97.9167%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="97.6667%" y="516" width="0.3333%" height="15" fill="rgb(223,158,51)" fg:x="293" fg:w="1"/><text x="97.9167%" y="526.50"></text></g><g><title><module> (scipy/io/matlab/_mio.py:1) (1 samples, 0.33%)</title><rect x="97.6667%" y="532" width="0.3333%" height="15" fill="rgb(235,29,51)" fg:x="293" fg:w="1"/><text x="97.9167%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="97.6667%" y="548" width="0.3333%" height="15" fill="rgb(215,181,18)" fg:x="293" fg:w="1"/><text x="97.9167%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="97.6667%" y="564" width="0.3333%" height="15" fill="rgb(227,125,34)" fg:x="293" fg:w="1"/><text x="97.9167%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="97.6667%" y="580" width="0.3333%" height="15" fill="rgb(230,197,49)" fg:x="293" fg:w="1"/><text x="97.9167%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="97.6667%" y="596" width="0.3333%" height="15" fill="rgb(239,141,16)" fg:x="293" fg:w="1"/><text x="97.9167%" y="606.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.33%)</title><rect x="97.6667%" y="612" width="0.3333%" height="15" fill="rgb(225,105,43)" fg:x="293" fg:w="1"/><text x="97.9167%" y="622.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.33%)</title><rect x="97.6667%" y="628" width="0.3333%" height="15" fill="rgb(214,131,14)" fg:x="293" fg:w="1"/><text x="97.9167%" y="638.50"></text></g><g><title>open_dataset (xarray/tutorial.py:81) (23 samples, 7.67%)</title><rect x="90.6667%" y="100" width="7.6667%" height="15" fill="rgb(229,177,11)" fg:x="272" fg:w="23"/><text x="90.9167%" y="110.50">open_datas..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (18 samples, 6.00%)</title><rect x="92.3333%" y="116" width="6.0000%" height="15" fill="rgb(231,180,14)" fg:x="277" fg:w="18"/><text x="92.5833%" y="126.50">open_dat..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (3 samples, 1.00%)</title><rect x="97.3333%" y="132" width="1.0000%" height="15" fill="rgb(232,88,2)" fg:x="292" fg:w="3"/><text x="97.5833%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (3 samples, 1.00%)</title><rect x="97.3333%" y="148" width="1.0000%" height="15" fill="rgb(205,220,8)" fg:x="292" fg:w="3"/><text x="97.5833%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (2 samples, 0.67%)</title><rect x="97.6667%" y="164" width="0.6667%" height="15" fill="rgb(225,23,53)" fg:x="293" fg:w="2"/><text x="97.9167%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (2 samples, 0.67%)</title><rect x="97.6667%" y="180" width="0.6667%" height="15" fill="rgb(213,62,29)" fg:x="293" fg:w="2"/><text x="97.9167%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (2 samples, 0.67%)</title><rect x="97.6667%" y="196" width="0.6667%" height="15" fill="rgb(227,75,7)" fg:x="293" fg:w="2"/><text x="97.9167%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (2 samples, 0.67%)</title><rect x="97.6667%" y="212" width="0.6667%" height="15" fill="rgb(207,105,14)" fg:x="293" fg:w="2"/><text x="97.9167%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (2 samples, 0.67%)</title><rect x="97.6667%" y="228" width="0.6667%" height="15" fill="rgb(245,62,29)" fg:x="293" fg:w="2"/><text x="97.9167%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (2 samples, 0.67%)</title><rect x="97.6667%" y="244" width="0.6667%" height="15" fill="rgb(236,202,4)" fg:x="293" fg:w="2"/><text x="97.9167%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.67%)</title><rect x="97.6667%" y="260" width="0.6667%" height="15" fill="rgb(250,67,1)" fg:x="293" fg:w="2"/><text x="97.9167%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.67%)</title><rect x="97.6667%" y="276" width="0.6667%" height="15" fill="rgb(253,115,44)" fg:x="293" fg:w="2"/><text x="97.9167%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.67%)</title><rect x="97.6667%" y="292" width="0.6667%" height="15" fill="rgb(251,139,18)" fg:x="293" fg:w="2"/><text x="97.9167%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.67%)</title><rect x="97.6667%" y="308" width="0.6667%" height="15" fill="rgb(218,22,32)" fg:x="293" fg:w="2"/><text x="97.9167%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.67%)</title><rect x="97.6667%" y="324" width="0.6667%" height="15" fill="rgb(243,53,5)" fg:x="293" fg:w="2"/><text x="97.9167%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (2 samples, 0.67%)</title><rect x="97.6667%" y="340" width="0.6667%" height="15" fill="rgb(227,56,16)" fg:x="293" fg:w="2"/><text x="97.9167%" y="350.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.33%)</title><rect x="98.0000%" y="356" width="0.3333%" height="15" fill="rgb(245,53,0)" fg:x="294" fg:w="1"/><text x="98.2500%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="98.0000%" y="372" width="0.3333%" height="15" fill="rgb(216,170,35)" fg:x="294" fg:w="1"/><text x="98.2500%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.33%)</title><rect x="98.0000%" y="388" width="0.3333%" height="15" fill="rgb(211,200,8)" fg:x="294" fg:w="1"/><text x="98.2500%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.33%)</title><rect x="98.0000%" y="404" width="0.3333%" height="15" fill="rgb(228,204,44)" fg:x="294" fg:w="1"/><text x="98.2500%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.33%)</title><rect x="98.0000%" y="420" width="0.3333%" height="15" fill="rgb(214,121,17)" fg:x="294" fg:w="1"/><text x="98.2500%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.33%)</title><rect x="98.0000%" y="436" width="0.3333%" height="15" fill="rgb(233,64,38)" fg:x="294" fg:w="1"/><text x="98.2500%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.33%)</title><rect x="98.0000%" y="452" width="0.3333%" height="15" fill="rgb(253,54,19)" fg:x="294" fg:w="1"/><text x="98.2500%" y="462.50"></text></g><g><title><module> (scipy/io/wavfile.py:1) (1 samples, 0.33%)</title><rect x="98.0000%" y="468" width="0.3333%" height="15" fill="rgb(253,94,18)" fg:x="294" fg:w="1"/><text x="98.2500%" y="478.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.33%)</title><rect x="98.0000%" y="484" width="0.3333%" height="15" fill="rgb(227,57,52)" fg:x="294" fg:w="1"/><text x="98.2500%" y="494.50"></text></g><g><title>__setattr__ (dask/dataframe/core.py:5229) (1 samples, 0.33%)</title><rect x="98.3333%" y="260" width="0.3333%" height="15" fill="rgb(230,228,50)" fg:x="295" fg:w="1"/><text x="98.5833%" y="270.50"></text></g><g><title>columns (dask/dataframe/core.py:5096) (1 samples, 0.33%)</title><rect x="98.3333%" y="276" width="0.3333%" height="15" fill="rgb(217,205,27)" fg:x="295" fg:w="1"/><text x="98.5833%" y="286.50"></text></g><g><title>_rename_dask (dask/dataframe/core.py:7447) (1 samples, 0.33%)</title><rect x="98.3333%" y="292" width="0.3333%" height="15" fill="rgb(252,71,50)" fg:x="295" fg:w="1"/><text x="98.5833%" y="302.50"></text></g><g><title>_do_aggregations (dask_sql/physical/rel/logical/aggregate.py:288) (2 samples, 0.67%)</title><rect x="98.3333%" y="228" width="0.6667%" height="15" fill="rgb(209,86,4)" fg:x="295" fg:w="2"/><text x="98.5833%" y="238.50"></text></g><g><title>_perform_aggregation (dask_sql/physical/rel/logical/aggregate.py:522) (2 samples, 0.67%)</title><rect x="98.3333%" y="244" width="0.6667%" height="15" fill="rgb(229,94,0)" fg:x="295" fg:w="2"/><text x="98.5833%" y="254.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.33%)</title><rect x="98.6667%" y="260" width="0.3333%" height="15" fill="rgb(252,223,21)" fg:x="296" fg:w="1"/><text x="98.9167%" y="270.50"></text></g><g><title>wrapper (dask/dataframe/groupby.py:320) (1 samples, 0.33%)</title><rect x="98.6667%" y="276" width="0.3333%" height="15" fill="rgb(230,210,4)" fg:x="296" fg:w="1"/><text x="98.9167%" y="286.50"></text></g><g><title>agg (dask/dataframe/groupby.py:3017) (1 samples, 0.33%)</title><rect x="98.6667%" y="292" width="0.3333%" height="15" fill="rgb(240,149,38)" fg:x="296" fg:w="1"/><text x="98.9167%" y="302.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.33%)</title><rect x="98.6667%" y="308" width="0.3333%" height="15" fill="rgb(254,105,20)" fg:x="296" fg:w="1"/><text x="98.9167%" y="318.50"></text></g><g><title>aggregate (dask/dataframe/groupby.py:3001) (1 samples, 0.33%)</title><rect x="98.6667%" y="324" width="0.3333%" height="15" fill="rgb(253,87,46)" fg:x="296" fg:w="1"/><text x="98.9167%" y="334.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.33%)</title><rect x="98.6667%" y="340" width="0.3333%" height="15" fill="rgb(253,116,33)" fg:x="296" fg:w="1"/><text x="98.9167%" y="350.50"></text></g><g><title>aggregate (dask/dataframe/groupby.py:2281) (1 samples, 0.33%)</title><rect x="98.6667%" y="356" width="0.3333%" height="15" fill="rgb(229,198,5)" fg:x="296" fg:w="1"/><text x="98.9167%" y="366.50"></text></g><g><title>apply_concat_apply (dask/dataframe/core.py:6947) (1 samples, 0.33%)</title><rect x="98.6667%" y="372" width="0.3333%" height="15" fill="rgb(242,38,37)" fg:x="296" fg:w="1"/><text x="98.9167%" y="382.50"></text></g><g><title>map_partitions (dask/bag/core.py:2214) (1 samples, 0.33%)</title><rect x="98.6667%" y="388" width="0.3333%" height="15" fill="rgb(242,69,53)" fg:x="296" fg:w="1"/><text x="98.9167%" y="398.50"></text></g><g><title>blockwise (dask/blockwise.py:232) (1 samples, 0.33%)</title><rect x="98.6667%" y="404" width="0.3333%" height="15" fill="rgb(249,80,16)" fg:x="296" fg:w="1"/><text x="98.9167%" y="414.50"></text></g><g><title>__init__ (dask/blockwise.py:389) (1 samples, 0.33%)</title><rect x="98.6667%" y="420" width="0.3333%" height="15" fill="rgb(206,128,11)" fg:x="296" fg:w="1"/><text x="98.9167%" y="430.50"></text></g><g><title>ensure_dict (dask/utils.py:1379) (1 samples, 0.33%)</title><rect x="98.6667%" y="436" width="0.3333%" height="15" fill="rgb(212,35,20)" fg:x="296" fg:w="1"/><text x="98.9167%" y="446.50"></text></g><g><title>_compute_table_from_rel (dask_sql/context.py:847) (3 samples, 1.00%)</title><rect x="98.3333%" y="116" width="1.0000%" height="15" fill="rgb(236,79,13)" fg:x="295" fg:w="3"/><text x="98.5833%" y="126.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (3 samples, 1.00%)</title><rect x="98.3333%" y="132" width="1.0000%" height="15" fill="rgb(233,123,3)" fg:x="295" fg:w="3"/><text x="98.5833%" y="142.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/project.py:26) (3 samples, 1.00%)</title><rect x="98.3333%" y="148" width="1.0000%" height="15" fill="rgb(214,93,52)" fg:x="295" fg:w="3"/><text x="98.5833%" y="158.50"></text></g><g><title>assert_inputs (dask_sql/physical/rel/base.py:66) (3 samples, 1.00%)</title><rect x="98.3333%" y="164" width="1.0000%" height="15" fill="rgb(251,37,40)" fg:x="295" fg:w="3"/><text x="98.5833%" y="174.50"></text></g><g><title><listcomp> (dask_sql/physical/rel/base.py:86) (3 samples, 1.00%)</title><rect x="98.3333%" y="180" width="1.0000%" height="15" fill="rgb(227,80,54)" fg:x="295" fg:w="3"/><text x="98.5833%" y="190.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (3 samples, 1.00%)</title><rect x="98.3333%" y="196" width="1.0000%" height="15" fill="rgb(254,48,11)" fg:x="295" fg:w="3"/><text x="98.5833%" y="206.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/aggregate.py:233) (3 samples, 1.00%)</title><rect x="98.3333%" y="212" width="1.0000%" height="15" fill="rgb(235,193,26)" fg:x="295" fg:w="3"/><text x="98.5833%" y="222.50"></text></g><g><title>assert_inputs (dask_sql/physical/rel/base.py:66) (1 samples, 0.33%)</title><rect x="99.0000%" y="228" width="0.3333%" height="15" fill="rgb(229,99,21)" fg:x="297" fg:w="1"/><text x="99.2500%" y="238.50"></text></g><g><title><listcomp> (dask_sql/physical/rel/base.py:86) (1 samples, 0.33%)</title><rect x="99.0000%" y="244" width="0.3333%" height="15" fill="rgb(211,140,41)" fg:x="297" fg:w="1"/><text x="99.2500%" y="254.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (1 samples, 0.33%)</title><rect x="99.0000%" y="260" width="0.3333%" height="15" fill="rgb(240,227,30)" fg:x="297" fg:w="1"/><text x="99.2500%" y="270.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/table_scan.py:33) (1 samples, 0.33%)</title><rect x="99.0000%" y="276" width="0.3333%" height="15" fill="rgb(215,224,45)" fg:x="297" fg:w="1"/><text x="99.2500%" y="286.50"></text></g><g><title>_apply_projections (dask_sql/physical/rel/logical/table_scan.py:60) (1 samples, 0.33%)</title><rect x="99.0000%" y="292" width="0.3333%" height="15" fill="rgb(206,123,31)" fg:x="297" fg:w="1"/><text x="99.2500%" y="302.50"></text></g><g><title>__getitem__ (dask/dataframe/core.py:5142) (1 samples, 0.33%)</title><rect x="99.0000%" y="308" width="0.3333%" height="15" fill="rgb(210,138,16)" fg:x="297" fg:w="1"/><text x="99.2500%" y="318.50"></text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (1 samples, 0.33%)</title><rect x="99.0000%" y="324" width="0.3333%" height="15" fill="rgb(228,57,28)" fg:x="297" fg:w="1"/><text x="99.2500%" y="334.50"></text></g><g><title>_get_indexer_strict (pandas/core/indexes/base.py:6100) (1 samples, 0.33%)</title><rect x="99.0000%" y="340" width="0.3333%" height="15" fill="rgb(242,170,10)" fg:x="297" fg:w="1"/><text x="99.2500%" y="350.50"></text></g><g><title>get_indexer_for (pandas/core/indexes/base.py:6076) (1 samples, 0.33%)</title><rect x="99.0000%" y="356" width="0.3333%" height="15" fill="rgb(228,214,39)" fg:x="297" fg:w="1"/><text x="99.2500%" y="366.50"></text></g><g><title>get_indexer (pandas/core/indexes/base.py:3858) (1 samples, 0.33%)</title><rect x="99.0000%" y="372" width="0.3333%" height="15" fill="rgb(218,179,33)" fg:x="297" fg:w="1"/><text x="99.2500%" y="382.50"></text></g><g><title>_get_indexer (pandas/core/indexes/base.py:3944) (1 samples, 0.33%)</title><rect x="99.0000%" y="388" width="0.3333%" height="15" fill="rgb(235,193,39)" fg:x="297" fg:w="1"/><text x="99.2500%" y="398.50"></text></g><g><title>all (300 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(219,221,36)" fg:x="0" fg:w="300"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x20080B240) (300 samples, 100.00%)</title><rect x="0.0000%" y="68" width="100.0000%" height="15" fill="rgb(248,218,19)" fg:x="0" fg:w="300"/><text x="0.2500%" y="78.50">thread (0x20080B240)</text></g><g><title><module> (groupby_air.py:3) (278 samples, 92.67%)</title><rect x="7.3333%" y="84" width="92.6667%" height="15" fill="rgb(205,50,9)" fg:x="22" fg:w="278"/><text x="7.5833%" y="94.50"><module> (groupby_air.py:3)</text></g><g><title>sql (dask_sql/context.py:466) (5 samples, 1.67%)</title><rect x="98.3333%" y="100" width="1.6667%" height="15" fill="rgb(238,81,28)" fg:x="295" fg:w="5"/><text x="98.5833%" y="110.50"></text></g><g><title>_get_ral (dask_sql/context.py:798) (2 samples, 0.67%)</title><rect x="99.3333%" y="116" width="0.6667%" height="15" fill="rgb(235,110,19)" fg:x="298" fg:w="2"/><text x="99.5833%" y="126.50"></text></g><g><title>getLogger (logging/__init__.py:2034) (1 samples, 0.33%)</title><rect x="99.6667%" y="132" width="0.3333%" height="15" fill="rgb(214,7,14)" fg:x="299" fg:w="1"/><text x="99.9167%" y="142.50"></text></g><g><title>getLogger (logging/__init__.py:1284) (1 samples, 0.33%)</title><rect x="99.6667%" y="148" width="0.3333%" height="15" fill="rgb(211,77,3)" fg:x="299" fg:w="1"/><text x="99.9167%" y="158.50"></text></g><g><title>_fixupParents (logging/__init__.py:1335) (1 samples, 0.33%)</title><rect x="99.6667%" y="164" width="0.3333%" height="15" fill="rgb(229,5,9)" fg:x="299" fg:w="1"/><text x="99.9167%" y="174.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/groupby_air_full.py-2024-03-03T07:44:17+05:30.svg b/perf_tests/groupby_air_full.py-2024-03-03T07:44:17+05:30.svg new file mode 100644 index 0000000..ee8a3e1 --- /dev/null +++ b/perf_tests/groupby_air_full.py-2024-03-03T07:44:17+05:30.svg @@ -0,0 +1,415 @@ +<?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="2554" onload="init(evt)" viewBox="0 0 1200 2554" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2554" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./groupby_air_full.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2543.00"> </text><svg id="frames" x="10" width="1180" total_samples="496"><g><title>__new__ (abc.py:105) (1 samples, 0.20%)</title><rect x="6.8548%" y="1204" width="0.2016%" height="15" fill="rgb(227,0,7)" fg:x="34" fg:w="1"/><text x="7.1048%" y="1214.50"></text></g><g><title><module> (prompt_toolkit/auto_suggest.py:1) (2 samples, 0.40%)</title><rect x="6.8548%" y="804" width="0.4032%" height="15" fill="rgb(217,0,24)" fg:x="34" fg:w="2"/><text x="7.1048%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="6.8548%" y="820" width="0.4032%" height="15" fill="rgb(221,193,54)" fg:x="34" fg:w="2"/><text x="7.1048%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="6.8548%" y="836" width="0.4032%" height="15" fill="rgb(248,212,6)" fg:x="34" fg:w="2"/><text x="7.1048%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="6.8548%" y="852" width="0.4032%" height="15" fill="rgb(208,68,35)" fg:x="34" fg:w="2"/><text x="7.1048%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="6.8548%" y="868" width="0.4032%" height="15" fill="rgb(232,128,0)" fg:x="34" fg:w="2"/><text x="7.1048%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="6.8548%" y="884" width="0.4032%" height="15" fill="rgb(207,160,47)" fg:x="34" fg:w="2"/><text x="7.1048%" y="894.50"></text></g><g><title><module> (prompt_toolkit/document.py:1) (2 samples, 0.40%)</title><rect x="6.8548%" y="900" width="0.4032%" height="15" fill="rgb(228,23,34)" fg:x="34" fg:w="2"/><text x="7.1048%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="6.8548%" y="916" width="0.4032%" height="15" fill="rgb(218,30,26)" fg:x="34" fg:w="2"/><text x="7.1048%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="6.8548%" y="932" width="0.4032%" height="15" fill="rgb(220,122,19)" fg:x="34" fg:w="2"/><text x="7.1048%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="6.8548%" y="948" width="0.4032%" height="15" fill="rgb(250,228,42)" fg:x="34" fg:w="2"/><text x="7.1048%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="6.8548%" y="964" width="0.4032%" height="15" fill="rgb(240,193,28)" fg:x="34" fg:w="2"/><text x="7.1048%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="6.8548%" y="980" width="0.4032%" height="15" fill="rgb(216,20,37)" fg:x="34" fg:w="2"/><text x="7.1048%" y="990.50"></text></g><g><title><module> (prompt_toolkit/filters/__init__.py:1) (2 samples, 0.40%)</title><rect x="6.8548%" y="996" width="0.4032%" height="15" fill="rgb(206,188,39)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="6.8548%" y="1012" width="0.4032%" height="15" fill="rgb(217,207,13)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="6.8548%" y="1028" width="0.4032%" height="15" fill="rgb(231,73,38)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="6.8548%" y="1044" width="0.4032%" height="15" fill="rgb(225,20,46)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="6.8548%" y="1060" width="0.4032%" height="15" fill="rgb(210,31,41)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="6.8548%" y="1076" width="0.4032%" height="15" fill="rgb(221,200,47)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/filters/app.py:1) (2 samples, 0.40%)</title><rect x="6.8548%" y="1092" width="0.4032%" height="15" fill="rgb(226,26,5)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="6.8548%" y="1108" width="0.4032%" height="15" fill="rgb(249,33,26)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="6.8548%" y="1124" width="0.4032%" height="15" fill="rgb(235,183,28)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="6.8548%" y="1140" width="0.4032%" height="15" fill="rgb(221,5,38)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="6.8548%" y="1156" width="0.4032%" height="15" fill="rgb(247,18,42)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="6.8548%" y="1172" width="0.4032%" height="15" fill="rgb(241,131,45)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1182.50"></text></g><g><title><module> (prompt_toolkit/filters/base.py:1) (2 samples, 0.40%)</title><rect x="6.8548%" y="1188" width="0.4032%" height="15" fill="rgb(249,31,29)" fg:x="34" fg:w="2"/><text x="7.1048%" y="1198.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="7.0565%" y="1204" width="0.2016%" height="15" fill="rgb(225,111,53)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1214.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.20%)</title><rect x="7.0565%" y="1220" width="0.2016%" height="15" fill="rgb(238,160,17)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1230.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.20%)</title><rect x="7.0565%" y="1236" width="0.2016%" height="15" fill="rgb(214,148,48)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1246.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.20%)</title><rect x="7.0565%" y="1252" width="0.2016%" height="15" fill="rgb(232,36,49)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1262.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.20%)</title><rect x="7.0565%" y="1268" width="0.2016%" height="15" fill="rgb(209,103,24)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1278.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.20%)</title><rect x="7.0565%" y="1284" width="0.2016%" height="15" fill="rgb(229,88,8)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1294.50"></text></g><g><title>_is_dunder (typing.py:665) (1 samples, 0.20%)</title><rect x="7.0565%" y="1300" width="0.2016%" height="15" fill="rgb(213,181,19)" fg:x="35" fg:w="1"/><text x="7.3065%" y="1310.50"></text></g><g><title><module> (prompt_toolkit/application/__init__.py:1) (4 samples, 0.81%)</title><rect x="6.8548%" y="516" width="0.8065%" height="15" fill="rgb(254,191,54)" fg:x="34" fg:w="4"/><text x="7.1048%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="6.8548%" y="532" width="0.8065%" height="15" fill="rgb(241,83,37)" fg:x="34" fg:w="4"/><text x="7.1048%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="6.8548%" y="548" width="0.8065%" height="15" fill="rgb(233,36,39)" fg:x="34" fg:w="4"/><text x="7.1048%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="6.8548%" y="564" width="0.8065%" height="15" fill="rgb(226,3,54)" fg:x="34" fg:w="4"/><text x="7.1048%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="6.8548%" y="580" width="0.8065%" height="15" fill="rgb(245,192,40)" fg:x="34" fg:w="4"/><text x="7.1048%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="6.8548%" y="596" width="0.8065%" height="15" fill="rgb(238,167,29)" fg:x="34" fg:w="4"/><text x="7.1048%" y="606.50"></text></g><g><title><module> (prompt_toolkit/application/application.py:1) (4 samples, 0.81%)</title><rect x="6.8548%" y="612" width="0.8065%" height="15" fill="rgb(232,182,51)" fg:x="34" fg:w="4"/><text x="7.1048%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="6.8548%" y="628" width="0.8065%" height="15" fill="rgb(231,60,39)" fg:x="34" fg:w="4"/><text x="7.1048%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="6.8548%" y="644" width="0.8065%" height="15" fill="rgb(208,69,12)" fg:x="34" fg:w="4"/><text x="7.1048%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="6.8548%" y="660" width="0.8065%" height="15" fill="rgb(235,93,37)" fg:x="34" fg:w="4"/><text x="7.1048%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="6.8548%" y="676" width="0.8065%" height="15" fill="rgb(213,116,39)" fg:x="34" fg:w="4"/><text x="7.1048%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="6.8548%" y="692" width="0.8065%" height="15" fill="rgb(222,207,29)" fg:x="34" fg:w="4"/><text x="7.1048%" y="702.50"></text></g><g><title><module> (prompt_toolkit/buffer.py:1) (4 samples, 0.81%)</title><rect x="6.8548%" y="708" width="0.8065%" height="15" fill="rgb(206,96,30)" fg:x="34" fg:w="4"/><text x="7.1048%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="6.8548%" y="724" width="0.8065%" height="15" fill="rgb(218,138,4)" fg:x="34" fg:w="4"/><text x="7.1048%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="6.8548%" y="740" width="0.8065%" height="15" fill="rgb(250,191,14)" fg:x="34" fg:w="4"/><text x="7.1048%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="6.8548%" y="756" width="0.8065%" height="15" fill="rgb(239,60,40)" fg:x="34" fg:w="4"/><text x="7.1048%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="6.8548%" y="772" width="0.8065%" height="15" fill="rgb(206,27,48)" fg:x="34" fg:w="4"/><text x="7.1048%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="6.8548%" y="788" width="0.8065%" height="15" fill="rgb(225,35,8)" fg:x="34" fg:w="4"/><text x="7.1048%" y="798.50"></text></g><g><title><module> (prompt_toolkit/completion/__init__.py:1) (2 samples, 0.40%)</title><rect x="7.2581%" y="804" width="0.4032%" height="15" fill="rgb(250,213,24)" fg:x="36" fg:w="2"/><text x="7.5081%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="7.2581%" y="820" width="0.4032%" height="15" fill="rgb(247,123,22)" fg:x="36" fg:w="2"/><text x="7.5081%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="7.2581%" y="836" width="0.4032%" height="15" fill="rgb(231,138,38)" fg:x="36" fg:w="2"/><text x="7.5081%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="7.2581%" y="852" width="0.4032%" height="15" fill="rgb(231,145,46)" fg:x="36" fg:w="2"/><text x="7.5081%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="7.2581%" y="868" width="0.4032%" height="15" fill="rgb(251,118,11)" fg:x="36" fg:w="2"/><text x="7.5081%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="7.2581%" y="884" width="0.4032%" height="15" fill="rgb(217,147,25)" fg:x="36" fg:w="2"/><text x="7.5081%" y="894.50"></text></g><g><title><module> (prompt_toolkit/completion/base.py:1) (2 samples, 0.40%)</title><rect x="7.2581%" y="900" width="0.4032%" height="15" fill="rgb(247,81,37)" fg:x="36" fg:w="2"/><text x="7.5081%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="7.2581%" y="916" width="0.4032%" height="15" fill="rgb(209,12,38)" fg:x="36" fg:w="2"/><text x="7.5081%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="7.2581%" y="932" width="0.4032%" height="15" fill="rgb(227,1,9)" fg:x="36" fg:w="2"/><text x="7.5081%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="7.2581%" y="948" width="0.4032%" height="15" fill="rgb(248,47,43)" fg:x="36" fg:w="2"/><text x="7.5081%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="7.2581%" y="964" width="0.4032%" height="15" fill="rgb(221,10,30)" fg:x="36" fg:w="2"/><text x="7.5081%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="7.2581%" y="980" width="0.4032%" height="15" fill="rgb(210,229,1)" fg:x="36" fg:w="2"/><text x="7.5081%" y="990.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/__init__.py:1) (2 samples, 0.40%)</title><rect x="7.2581%" y="996" width="0.4032%" height="15" fill="rgb(222,148,37)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="7.2581%" y="1012" width="0.4032%" height="15" fill="rgb(234,67,33)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="7.2581%" y="1028" width="0.4032%" height="15" fill="rgb(247,98,35)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="7.2581%" y="1044" width="0.4032%" height="15" fill="rgb(247,138,52)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="7.2581%" y="1060" width="0.4032%" height="15" fill="rgb(213,79,30)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="7.2581%" y="1076" width="0.4032%" height="15" fill="rgb(246,177,23)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/ansi.py:1) (2 samples, 0.40%)</title><rect x="7.2581%" y="1092" width="0.4032%" height="15" fill="rgb(230,62,27)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="7.2581%" y="1108" width="0.4032%" height="15" fill="rgb(216,154,8)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="7.2581%" y="1124" width="0.4032%" height="15" fill="rgb(244,35,45)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="7.2581%" y="1140" width="0.4032%" height="15" fill="rgb(251,115,12)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="7.2581%" y="1156" width="0.4032%" height="15" fill="rgb(240,54,50)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1166.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="7.2581%" y="1172" width="0.4032%" height="15" fill="rgb(233,84,52)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1182.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.40%)</title><rect x="7.2581%" y="1188" width="0.4032%" height="15" fill="rgb(207,117,47)" fg:x="36" fg:w="2"/><text x="7.5081%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="6.8548%" y="324" width="2.2177%" height="15" fill="rgb(249,43,39)" fg:x="34" fg:w="11"/><text x="7.1048%" y="334.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="6.8548%" y="340" width="2.2177%" height="15" fill="rgb(209,38,44)" fg:x="34" fg:w="11"/><text x="7.1048%" y="350.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="6.8548%" y="356" width="2.2177%" height="15" fill="rgb(236,212,23)" fg:x="34" fg:w="11"/><text x="7.1048%" y="366.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.22%)</title><rect x="6.8548%" y="372" width="2.2177%" height="15" fill="rgb(242,79,21)" fg:x="34" fg:w="11"/><text x="7.1048%" y="382.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.22%)</title><rect x="6.8548%" y="388" width="2.2177%" height="15" fill="rgb(211,96,35)" fg:x="34" fg:w="11"/><text x="7.1048%" y="398.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="6.8548%" y="404" width="2.2177%" height="15" fill="rgb(253,215,40)" fg:x="34" fg:w="11"/><text x="7.1048%" y="414.50">_..</text></g><g><title><module> (prompt_toolkit/__init__.py:1) (11 samples, 2.22%)</title><rect x="6.8548%" y="420" width="2.2177%" height="15" fill="rgb(211,81,21)" fg:x="34" fg:w="11"/><text x="7.1048%" y="430.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="6.8548%" y="436" width="2.2177%" height="15" fill="rgb(208,190,38)" fg:x="34" fg:w="11"/><text x="7.1048%" y="446.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="6.8548%" y="452" width="2.2177%" height="15" fill="rgb(235,213,38)" fg:x="34" fg:w="11"/><text x="7.1048%" y="462.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.22%)</title><rect x="6.8548%" y="468" width="2.2177%" height="15" fill="rgb(237,122,38)" fg:x="34" fg:w="11"/><text x="7.1048%" y="478.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.22%)</title><rect x="6.8548%" y="484" width="2.2177%" height="15" fill="rgb(244,218,35)" fg:x="34" fg:w="11"/><text x="7.1048%" y="494.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="6.8548%" y="500" width="2.2177%" height="15" fill="rgb(240,68,47)" fg:x="34" fg:w="11"/><text x="7.1048%" y="510.50">_..</text></g><g><title><module> (prompt_toolkit/shortcuts/__init__.py:1) (7 samples, 1.41%)</title><rect x="7.6613%" y="516" width="1.4113%" height="15" fill="rgb(210,16,53)" fg:x="38" fg:w="7"/><text x="7.9113%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="7.6613%" y="532" width="1.4113%" height="15" fill="rgb(235,124,12)" fg:x="38" fg:w="7"/><text x="7.9113%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="7.6613%" y="548" width="1.4113%" height="15" fill="rgb(224,169,11)" fg:x="38" fg:w="7"/><text x="7.9113%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="7.6613%" y="564" width="1.4113%" height="15" fill="rgb(250,166,2)" fg:x="38" fg:w="7"/><text x="7.9113%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="7.6613%" y="580" width="1.4113%" height="15" fill="rgb(242,216,29)" fg:x="38" fg:w="7"/><text x="7.9113%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="7.6613%" y="596" width="1.4113%" height="15" fill="rgb(230,116,27)" fg:x="38" fg:w="7"/><text x="7.9113%" y="606.50"></text></g><g><title><module> (prompt_toolkit/shortcuts/dialogs.py:1) (7 samples, 1.41%)</title><rect x="7.6613%" y="612" width="1.4113%" height="15" fill="rgb(228,99,48)" fg:x="38" fg:w="7"/><text x="7.9113%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="7.6613%" y="628" width="1.4113%" height="15" fill="rgb(253,11,6)" fg:x="38" fg:w="7"/><text x="7.9113%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="7.6613%" y="644" width="1.4113%" height="15" fill="rgb(247,143,39)" fg:x="38" fg:w="7"/><text x="7.9113%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="7.6613%" y="660" width="1.4113%" height="15" fill="rgb(236,97,10)" fg:x="38" fg:w="7"/><text x="7.9113%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="7.6613%" y="676" width="1.4113%" height="15" fill="rgb(233,208,19)" fg:x="38" fg:w="7"/><text x="7.9113%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="7.6613%" y="692" width="1.4113%" height="15" fill="rgb(216,164,2)" fg:x="38" fg:w="7"/><text x="7.9113%" y="702.50"></text></g><g><title><module> (prompt_toolkit/widgets/__init__.py:1) (7 samples, 1.41%)</title><rect x="7.6613%" y="708" width="1.4113%" height="15" fill="rgb(220,129,5)" fg:x="38" fg:w="7"/><text x="7.9113%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="7.6613%" y="724" width="1.4113%" height="15" fill="rgb(242,17,10)" fg:x="38" fg:w="7"/><text x="7.9113%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="7.6613%" y="740" width="1.4113%" height="15" fill="rgb(242,107,0)" fg:x="38" fg:w="7"/><text x="7.9113%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="7.6613%" y="756" width="1.4113%" height="15" fill="rgb(251,28,31)" fg:x="38" fg:w="7"/><text x="7.9113%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="7.6613%" y="772" width="1.4113%" height="15" fill="rgb(233,223,10)" fg:x="38" fg:w="7"/><text x="7.9113%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="7.6613%" y="788" width="1.4113%" height="15" fill="rgb(215,21,27)" fg:x="38" fg:w="7"/><text x="7.9113%" y="798.50"></text></g><g><title><module> (prompt_toolkit/widgets/base.py:1) (7 samples, 1.41%)</title><rect x="7.6613%" y="804" width="1.4113%" height="15" fill="rgb(232,23,21)" fg:x="38" fg:w="7"/><text x="7.9113%" y="814.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="9.0726%" y="612" width="0.2016%" height="15" fill="rgb(244,5,23)" fg:x="45" fg:w="1"/><text x="9.3226%" y="622.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (9 samples, 1.81%)</title><rect x="9.2742%" y="996" width="1.8145%" height="15" fill="rgb(226,81,46)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1006.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 1.81%)</title><rect x="9.2742%" y="1012" width="1.8145%" height="15" fill="rgb(247,70,30)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1022.50">_..</text></g><g><title>__getattr__ (tornado/__init__.py:64) (9 samples, 1.81%)</title><rect x="9.2742%" y="1028" width="1.8145%" height="15" fill="rgb(212,68,19)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1038.50">_..</text></g><g><title>import_module (importlib/__init__.py:109) (9 samples, 1.81%)</title><rect x="9.2742%" y="1044" width="1.8145%" height="15" fill="rgb(240,187,13)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1054.50">i..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (9 samples, 1.81%)</title><rect x="9.2742%" y="1060" width="1.8145%" height="15" fill="rgb(223,113,26)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1070.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="9.2742%" y="1076" width="1.8145%" height="15" fill="rgb(206,192,2)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1086.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="9.2742%" y="1092" width="1.8145%" height="15" fill="rgb(241,108,4)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1102.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="9.2742%" y="1108" width="1.8145%" height="15" fill="rgb(247,173,49)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1118.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="9.2742%" y="1124" width="1.8145%" height="15" fill="rgb(224,114,35)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1134.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="9.2742%" y="1140" width="1.8145%" height="15" fill="rgb(245,159,27)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1150.50">_..</text></g><g><title><module> (tornado/netutil.py:16) (9 samples, 1.81%)</title><rect x="9.2742%" y="1156" width="1.8145%" height="15" fill="rgb(245,172,44)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1166.50"><..</text></g><g><title>create_default_context (ssl.py:724) (9 samples, 1.81%)</title><rect x="9.2742%" y="1172" width="1.8145%" height="15" fill="rgb(236,23,11)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1182.50">c..</text></g><g><title>load_default_certs (ssl.py:570) (9 samples, 1.81%)</title><rect x="9.2742%" y="1188" width="1.8145%" height="15" fill="rgb(205,117,38)" fg:x="46" fg:w="9"/><text x="9.5242%" y="1198.50">l..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="11.0887%" y="1012" width="0.2016%" height="15" fill="rgb(237,72,25)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="11.0887%" y="1028" width="0.2016%" height="15" fill="rgb(244,70,9)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="11.0887%" y="1044" width="0.2016%" height="15" fill="rgb(217,125,39)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="11.0887%" y="1060" width="0.2016%" height="15" fill="rgb(235,36,10)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="11.0887%" y="1076" width="0.2016%" height="15" fill="rgb(251,123,47)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1086.50"></text></g><g><title><module> (tornado/httpclient.py:1) (1 samples, 0.20%)</title><rect x="11.0887%" y="1092" width="0.2016%" height="15" fill="rgb(221,13,13)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1102.50"></text></g><g><title>HTTPRequest (tornado/httpclient.py:339) (1 samples, 0.20%)</title><rect x="11.0887%" y="1108" width="0.2016%" height="15" fill="rgb(238,131,9)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1118.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="11.0887%" y="1124" width="0.2016%" height="15" fill="rgb(211,50,8)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1134.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.20%)</title><rect x="11.0887%" y="1140" width="0.2016%" height="15" fill="rgb(245,182,24)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1150.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.20%)</title><rect x="11.0887%" y="1156" width="0.2016%" height="15" fill="rgb(242,14,37)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1166.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="11.0887%" y="1172" width="0.2016%" height="15" fill="rgb(246,228,12)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1182.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.20%)</title><rect x="11.0887%" y="1188" width="0.2016%" height="15" fill="rgb(213,55,15)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1198.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.20%)</title><rect x="11.0887%" y="1204" width="0.2016%" height="15" fill="rgb(209,9,3)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1214.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.20%)</title><rect x="11.0887%" y="1220" width="0.2016%" height="15" fill="rgb(230,59,30)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1230.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.20%)</title><rect x="11.0887%" y="1236" width="0.2016%" height="15" fill="rgb(209,121,21)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1246.50"></text></g><g><title>__eq__ (typing.py:750) (1 samples, 0.20%)</title><rect x="11.0887%" y="1252" width="0.2016%" height="15" fill="rgb(220,109,13)" fg:x="55" fg:w="1"/><text x="11.3387%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="9.2742%" y="772" width="2.2177%" height="15" fill="rgb(232,18,1)" fg:x="46" fg:w="11"/><text x="9.5242%" y="782.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="9.2742%" y="788" width="2.2177%" height="15" fill="rgb(215,41,42)" fg:x="46" fg:w="11"/><text x="9.5242%" y="798.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.22%)</title><rect x="9.2742%" y="804" width="2.2177%" height="15" fill="rgb(224,123,36)" fg:x="46" fg:w="11"/><text x="9.5242%" y="814.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.22%)</title><rect x="9.2742%" y="820" width="2.2177%" height="15" fill="rgb(240,125,3)" fg:x="46" fg:w="11"/><text x="9.5242%" y="830.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="9.2742%" y="836" width="2.2177%" height="15" fill="rgb(205,98,50)" fg:x="46" fg:w="11"/><text x="9.5242%" y="846.50">_..</text></g><g><title><module> (distributed/comm/__init__.py:1) (11 samples, 2.22%)</title><rect x="9.2742%" y="852" width="2.2177%" height="15" fill="rgb(205,185,37)" fg:x="46" fg:w="11"/><text x="9.5242%" y="862.50"><..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (11 samples, 2.22%)</title><rect x="9.2742%" y="868" width="2.2177%" height="15" fill="rgb(238,207,15)" fg:x="46" fg:w="11"/><text x="9.5242%" y="878.50">_..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 2.22%)</title><rect x="9.2742%" y="884" width="2.2177%" height="15" fill="rgb(213,199,42)" fg:x="46" fg:w="11"/><text x="9.5242%" y="894.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="9.2742%" y="900" width="2.2177%" height="15" fill="rgb(235,201,11)" fg:x="46" fg:w="11"/><text x="9.5242%" y="910.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="9.2742%" y="916" width="2.2177%" height="15" fill="rgb(207,46,11)" fg:x="46" fg:w="11"/><text x="9.5242%" y="926.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="9.2742%" y="932" width="2.2177%" height="15" fill="rgb(241,35,35)" fg:x="46" fg:w="11"/><text x="9.5242%" y="942.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.22%)</title><rect x="9.2742%" y="948" width="2.2177%" height="15" fill="rgb(243,32,47)" fg:x="46" fg:w="11"/><text x="9.5242%" y="958.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.22%)</title><rect x="9.2742%" y="964" width="2.2177%" height="15" fill="rgb(247,202,23)" fg:x="46" fg:w="11"/><text x="9.5242%" y="974.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="9.2742%" y="980" width="2.2177%" height="15" fill="rgb(219,102,11)" fg:x="46" fg:w="11"/><text x="9.5242%" y="990.50">_..</text></g><g><title><module> (distributed/comm/ws.py:1) (2 samples, 0.40%)</title><rect x="11.0887%" y="996" width="0.4032%" height="15" fill="rgb(243,110,44)" fg:x="55" fg:w="2"/><text x="11.3387%" y="1006.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="11.2903%" y="1012" width="0.2016%" height="15" fill="rgb(222,74,54)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (1 samples, 0.20%)</title><rect x="11.2903%" y="1028" width="0.2016%" height="15" fill="rgb(216,99,12)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="11.2903%" y="1044" width="0.2016%" height="15" fill="rgb(226,22,26)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="11.2903%" y="1060" width="0.2016%" height="15" fill="rgb(217,163,10)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="11.2903%" y="1076" width="0.2016%" height="15" fill="rgb(213,25,53)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="11.2903%" y="1092" width="0.2016%" height="15" fill="rgb(252,105,26)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="11.2903%" y="1108" width="0.2016%" height="15" fill="rgb(220,39,43)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="11.2903%" y="1124" width="0.2016%" height="15" fill="rgb(229,68,48)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="11.2903%" y="1140" width="0.2016%" height="15" fill="rgb(252,8,32)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1150.50"></text></g><g><title><module> (tornado/web.py:16) (1 samples, 0.20%)</title><rect x="11.2903%" y="1156" width="0.2016%" height="15" fill="rgb(223,20,43)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="11.2903%" y="1172" width="0.2016%" height="15" fill="rgb(229,81,49)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="11.2903%" y="1188" width="0.2016%" height="15" fill="rgb(236,28,36)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="11.2903%" y="1204" width="0.2016%" height="15" fill="rgb(249,185,26)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="11.2903%" y="1220" width="0.2016%" height="15" fill="rgb(249,174,33)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1230.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="11.2903%" y="1236" width="0.2016%" height="15" fill="rgb(233,201,37)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1246.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.20%)</title><rect x="11.2903%" y="1252" width="0.2016%" height="15" fill="rgb(221,78,26)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1262.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="11.2903%" y="1268" width="0.2016%" height="15" fill="rgb(250,127,30)" fg:x="56" fg:w="1"/><text x="11.5403%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="11.4919%" y="1188" width="0.2016%" height="15" fill="rgb(230,49,44)" fg:x="57" fg:w="1"/><text x="11.7419%" y="1198.50"></text></g><g><title><module> (xml/etree/ElementPath.py:59) (1 samples, 0.20%)</title><rect x="11.4919%" y="1204" width="0.2016%" height="15" fill="rgb(229,67,23)" fg:x="57" fg:w="1"/><text x="11.7419%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="11.4919%" y="1044" width="0.4032%" height="15" fill="rgb(249,83,47)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="11.4919%" y="1060" width="0.4032%" height="15" fill="rgb(215,43,3)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1070.50"></text></g><g><title><module> (xml/etree/ElementTree.py:1) (2 samples, 0.40%)</title><rect x="11.4919%" y="1076" width="0.4032%" height="15" fill="rgb(238,154,13)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="11.4919%" y="1092" width="0.4032%" height="15" fill="rgb(219,56,2)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="11.4919%" y="1108" width="0.4032%" height="15" fill="rgb(233,0,4)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="11.4919%" y="1124" width="0.4032%" height="15" fill="rgb(235,30,7)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="11.4919%" y="1140" width="0.4032%" height="15" fill="rgb(250,79,13)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="11.4919%" y="1156" width="0.4032%" height="15" fill="rgb(211,146,34)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="11.4919%" y="1172" width="0.4032%" height="15" fill="rgb(228,22,38)" fg:x="57" fg:w="2"/><text x="11.7419%" y="1182.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="11.6935%" y="1188" width="0.2016%" height="15" fill="rgb(235,168,5)" fg:x="58" fg:w="1"/><text x="11.9435%" y="1198.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="11.6935%" y="1204" width="0.2016%" height="15" fill="rgb(221,155,16)" fg:x="58" fg:w="1"/><text x="11.9435%" y="1214.50"></text></g><g><title><module> (distributed/profile.py:1) (5 samples, 1.01%)</title><rect x="11.4919%" y="884" width="1.0081%" height="15" fill="rgb(215,215,53)" fg:x="57" fg:w="5"/><text x="11.7419%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="11.4919%" y="900" width="1.0081%" height="15" fill="rgb(223,4,10)" fg:x="57" fg:w="5"/><text x="11.7419%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="11.4919%" y="916" width="1.0081%" height="15" fill="rgb(234,103,6)" fg:x="57" fg:w="5"/><text x="11.7419%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="11.4919%" y="932" width="1.0081%" height="15" fill="rgb(227,97,0)" fg:x="57" fg:w="5"/><text x="11.7419%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="11.4919%" y="948" width="1.0081%" height="15" fill="rgb(234,150,53)" fg:x="57" fg:w="5"/><text x="11.7419%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="11.4919%" y="964" width="1.0081%" height="15" fill="rgb(228,201,54)" fg:x="57" fg:w="5"/><text x="11.7419%" y="974.50"></text></g><g><title><module> (distributed/utils.py:1) (5 samples, 1.01%)</title><rect x="11.4919%" y="980" width="1.0081%" height="15" fill="rgb(222,22,37)" fg:x="57" fg:w="5"/><text x="11.7419%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="11.4919%" y="996" width="1.0081%" height="15" fill="rgb(237,53,32)" fg:x="57" fg:w="5"/><text x="11.7419%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="11.4919%" y="1012" width="1.0081%" height="15" fill="rgb(233,25,53)" fg:x="57" fg:w="5"/><text x="11.7419%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="11.4919%" y="1028" width="1.0081%" height="15" fill="rgb(210,40,34)" fg:x="57" fg:w="5"/><text x="11.7419%" y="1038.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="11.8952%" y="1044" width="0.6048%" height="15" fill="rgb(241,220,44)" fg:x="59" fg:w="3"/><text x="12.1452%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="11.8952%" y="1060" width="0.6048%" height="15" fill="rgb(235,28,35)" fg:x="59" fg:w="3"/><text x="12.1452%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="11.8952%" y="1076" width="0.6048%" height="15" fill="rgb(210,56,17)" fg:x="59" fg:w="3"/><text x="12.1452%" y="1086.50"></text></g><g><title><module> (distributed/core.py:1) (17 samples, 3.43%)</title><rect x="9.2742%" y="756" width="3.4274%" height="15" fill="rgb(224,130,29)" fg:x="46" fg:w="17"/><text x="9.5242%" y="766.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.21%)</title><rect x="11.4919%" y="772" width="1.2097%" height="15" fill="rgb(235,212,8)" fg:x="57" fg:w="6"/><text x="11.7419%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="11.4919%" y="788" width="1.2097%" height="15" fill="rgb(223,33,50)" fg:x="57" fg:w="6"/><text x="11.7419%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="11.4919%" y="804" width="1.2097%" height="15" fill="rgb(219,149,13)" fg:x="57" fg:w="6"/><text x="11.7419%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="11.4919%" y="820" width="1.2097%" height="15" fill="rgb(250,156,29)" fg:x="57" fg:w="6"/><text x="11.7419%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="11.4919%" y="836" width="1.2097%" height="15" fill="rgb(216,193,19)" fg:x="57" fg:w="6"/><text x="11.7419%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="11.4919%" y="852" width="1.2097%" height="15" fill="rgb(216,135,14)" fg:x="57" fg:w="6"/><text x="11.7419%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="11.4919%" y="868" width="1.2097%" height="15" fill="rgb(241,47,5)" fg:x="57" fg:w="6"/><text x="11.7419%" y="878.50"></text></g><g><title><module> (distributed/protocol/__init__.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="884" width="0.2016%" height="15" fill="rgb(233,42,35)" fg:x="62" fg:w="1"/><text x="12.7500%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="900" width="0.2016%" height="15" fill="rgb(231,13,6)" fg:x="62" fg:w="1"/><text x="12.7500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="916" width="0.2016%" height="15" fill="rgb(207,181,40)" fg:x="62" fg:w="1"/><text x="12.7500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="12.5000%" y="932" width="0.2016%" height="15" fill="rgb(254,173,49)" fg:x="62" fg:w="1"/><text x="12.7500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="12.5000%" y="948" width="0.2016%" height="15" fill="rgb(221,1,38)" fg:x="62" fg:w="1"/><text x="12.7500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="964" width="0.2016%" height="15" fill="rgb(206,124,46)" fg:x="62" fg:w="1"/><text x="12.7500%" y="974.50"></text></g><g><title><module> (distributed/protocol/core.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="980" width="0.2016%" height="15" fill="rgb(249,21,11)" fg:x="62" fg:w="1"/><text x="12.7500%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="12.5000%" y="996" width="0.2016%" height="15" fill="rgb(222,201,40)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="1012" width="0.2016%" height="15" fill="rgb(235,61,29)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="1028" width="0.2016%" height="15" fill="rgb(219,207,3)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="1044" width="0.2016%" height="15" fill="rgb(222,56,46)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="12.5000%" y="1060" width="0.2016%" height="15" fill="rgb(239,76,54)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="12.5000%" y="1076" width="0.2016%" height="15" fill="rgb(231,124,27)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="1092" width="0.2016%" height="15" fill="rgb(249,195,6)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1102.50"></text></g><g><title><module> (distributed/protocol/pickle.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="1108" width="0.2016%" height="15" fill="rgb(237,174,47)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="1124" width="0.2016%" height="15" fill="rgb(206,201,31)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="1140" width="0.2016%" height="15" fill="rgb(231,57,52)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="12.5000%" y="1156" width="0.2016%" height="15" fill="rgb(248,177,22)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="12.5000%" y="1172" width="0.2016%" height="15" fill="rgb(215,211,37)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="1188" width="0.2016%" height="15" fill="rgb(241,128,51)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1198.50"></text></g><g><title><module> (distributed/protocol/serialize.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="1204" width="0.2016%" height="15" fill="rgb(227,165,31)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="1220" width="0.2016%" height="15" fill="rgb(228,167,24)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="1236" width="0.2016%" height="15" fill="rgb(228,143,12)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="12.5000%" y="1252" width="0.2016%" height="15" fill="rgb(249,149,8)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="12.5000%" y="1268" width="0.2016%" height="15" fill="rgb(243,35,44)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="1284" width="0.2016%" height="15" fill="rgb(246,89,9)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1294.50"></text></g><g><title><module> (distributed/protocol/compression.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="1300" width="0.2016%" height="15" fill="rgb(233,213,13)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="1316" width="0.2016%" height="15" fill="rgb(233,141,41)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="1332" width="0.2016%" height="15" fill="rgb(239,167,4)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="12.5000%" y="1348" width="0.2016%" height="15" fill="rgb(209,217,16)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="12.5000%" y="1364" width="0.2016%" height="15" fill="rgb(219,88,35)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="12.5000%" y="1380" width="0.2016%" height="15" fill="rgb(220,193,23)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1390.50"></text></g><g><title><module> (lz4/block/__init__.py:1) (1 samples, 0.20%)</title><rect x="12.5000%" y="1396" width="0.2016%" height="15" fill="rgb(230,90,52)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="12.5000%" y="1412" width="0.2016%" height="15" fill="rgb(252,106,19)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1422.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="12.5000%" y="1428" width="0.2016%" height="15" fill="rgb(206,74,20)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1438.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="12.5000%" y="1444" width="0.2016%" height="15" fill="rgb(230,138,44)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1454.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="12.5000%" y="1460" width="0.2016%" height="15" fill="rgb(235,182,43)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1470.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="12.5000%" y="1476" width="0.2016%" height="15" fill="rgb(242,16,51)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1486.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="12.5000%" y="1492" width="0.2016%" height="15" fill="rgb(248,9,4)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1502.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.20%)</title><rect x="12.5000%" y="1508" width="0.2016%" height="15" fill="rgb(210,31,22)" fg:x="62" fg:w="1"/><text x="12.7500%" y="1518.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 3.83%)</title><rect x="9.2742%" y="740" width="3.8306%" height="15" fill="rgb(239,54,39)" fg:x="46" fg:w="19"/><text x="9.5242%" y="750.50">_cal..</text></g><g><title><module> (distributed/worker.py:1) (2 samples, 0.40%)</title><rect x="12.7016%" y="756" width="0.4032%" height="15" fill="rgb(230,99,41)" fg:x="63" fg:w="2"/><text x="12.9516%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="12.7016%" y="772" width="0.4032%" height="15" fill="rgb(253,106,12)" fg:x="63" fg:w="2"/><text x="12.9516%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="12.7016%" y="788" width="0.4032%" height="15" fill="rgb(213,46,41)" fg:x="63" fg:w="2"/><text x="12.9516%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="12.7016%" y="804" width="0.4032%" height="15" fill="rgb(215,133,35)" fg:x="63" fg:w="2"/><text x="12.9516%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="12.7016%" y="820" width="0.4032%" height="15" fill="rgb(213,28,5)" fg:x="63" fg:w="2"/><text x="12.9516%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="12.7016%" y="836" width="0.4032%" height="15" fill="rgb(215,77,49)" fg:x="63" fg:w="2"/><text x="12.9516%" y="846.50"></text></g><g><title><module> (distributed/worker_state_machine.py:1) (2 samples, 0.40%)</title><rect x="12.7016%" y="852" width="0.4032%" height="15" fill="rgb(248,100,22)" fg:x="63" fg:w="2"/><text x="12.9516%" y="862.50"></text></g><g><title>wrap (dataclasses.py:1012) (2 samples, 0.40%)</title><rect x="12.7016%" y="868" width="0.4032%" height="15" fill="rgb(208,67,9)" fg:x="63" fg:w="2"/><text x="12.9516%" y="878.50"></text></g><g><title>_process_class (dataclasses.py:809) (2 samples, 0.40%)</title><rect x="12.7016%" y="884" width="0.4032%" height="15" fill="rgb(219,133,21)" fg:x="63" fg:w="2"/><text x="12.9516%" y="894.50"></text></g><g><title><listcomp> (dataclasses.py:863) (2 samples, 0.40%)</title><rect x="12.7016%" y="900" width="0.4032%" height="15" fill="rgb(246,46,29)" fg:x="63" fg:w="2"/><text x="12.9516%" y="910.50"></text></g><g><title>_get_field (dataclasses.py:671) (2 samples, 0.40%)</title><rect x="12.7016%" y="916" width="0.4032%" height="15" fill="rgb(246,185,52)" fg:x="63" fg:w="2"/><text x="12.9516%" y="926.50"></text></g><g><title>_is_type (dataclasses.py:612) (1 samples, 0.20%)</title><rect x="12.9032%" y="932" width="0.2016%" height="15" fill="rgb(252,136,11)" fg:x="64" fg:w="1"/><text x="13.1532%" y="942.50"></text></g><g><title>_is_initvar (dataclasses.py:605) (1 samples, 0.20%)</title><rect x="12.9032%" y="948" width="0.2016%" height="15" fill="rgb(219,138,53)" fg:x="64" fg:w="1"/><text x="13.1532%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (20 samples, 4.03%)</title><rect x="9.2742%" y="676" width="4.0323%" height="15" fill="rgb(211,51,23)" fg:x="46" fg:w="20"/><text x="9.5242%" y="686.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (20 samples, 4.03%)</title><rect x="9.2742%" y="692" width="4.0323%" height="15" fill="rgb(247,221,28)" fg:x="46" fg:w="20"/><text x="9.5242%" y="702.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (20 samples, 4.03%)</title><rect x="9.2742%" y="708" width="4.0323%" height="15" fill="rgb(251,222,45)" fg:x="46" fg:w="20"/><text x="9.5242%" y="718.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (20 samples, 4.03%)</title><rect x="9.2742%" y="724" width="4.0323%" height="15" fill="rgb(217,162,53)" fg:x="46" fg:w="20"/><text x="9.5242%" y="734.50">exec..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="13.1048%" y="740" width="0.2016%" height="15" fill="rgb(229,93,14)" fg:x="65" fg:w="1"/><text x="13.3548%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="13.1048%" y="756" width="0.2016%" height="15" fill="rgb(209,67,49)" fg:x="65" fg:w="1"/><text x="13.3548%" y="766.50"></text></g><g><title>DumpArtefact (distributed/cluster_dump.py:111) (1 samples, 0.20%)</title><rect x="13.3065%" y="804" width="0.2016%" height="15" fill="rgb(213,87,29)" fg:x="66" fg:w="1"/><text x="13.5565%" y="814.50"></text></g><g><title><module> (distributed/cluster_dump.py:1) (2 samples, 0.40%)</title><rect x="13.3065%" y="788" width="0.4032%" height="15" fill="rgb(205,151,52)" fg:x="66" fg:w="2"/><text x="13.5565%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="13.5081%" y="804" width="0.2016%" height="15" fill="rgb(253,215,39)" fg:x="67" fg:w="1"/><text x="13.7581%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="13.5081%" y="820" width="0.2016%" height="15" fill="rgb(221,220,41)" fg:x="67" fg:w="1"/><text x="13.7581%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="13.5081%" y="836" width="0.2016%" height="15" fill="rgb(218,133,21)" fg:x="67" fg:w="1"/><text x="13.7581%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="13.5081%" y="852" width="0.2016%" height="15" fill="rgb(221,193,43)" fg:x="67" fg:w="1"/><text x="13.7581%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="13.5081%" y="868" width="0.2016%" height="15" fill="rgb(240,128,52)" fg:x="67" fg:w="1"/><text x="13.7581%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="13.5081%" y="884" width="0.2016%" height="15" fill="rgb(253,114,12)" fg:x="67" fg:w="1"/><text x="13.7581%" y="894.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.20%)</title><rect x="13.7097%" y="916" width="0.2016%" height="15" fill="rgb(215,223,47)" fg:x="68" fg:w="1"/><text x="13.9597%" y="926.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.20%)</title><rect x="13.7097%" y="932" width="0.2016%" height="15" fill="rgb(248,225,23)" fg:x="68" fg:w="1"/><text x="13.9597%" y="942.50"></text></g><g><title><module> (distributed/client.py:1) (24 samples, 4.84%)</title><rect x="9.2742%" y="660" width="4.8387%" height="15" fill="rgb(250,108,0)" fg:x="46" fg:w="24"/><text x="9.5242%" y="670.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="13.3065%" y="676" width="0.8065%" height="15" fill="rgb(228,208,7)" fg:x="66" fg:w="4"/><text x="13.5565%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="13.3065%" y="692" width="0.8065%" height="15" fill="rgb(244,45,10)" fg:x="66" fg:w="4"/><text x="13.5565%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="13.3065%" y="708" width="0.8065%" height="15" fill="rgb(207,125,25)" fg:x="66" fg:w="4"/><text x="13.5565%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="13.3065%" y="724" width="0.8065%" height="15" fill="rgb(210,195,18)" fg:x="66" fg:w="4"/><text x="13.5565%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="13.3065%" y="740" width="0.8065%" height="15" fill="rgb(249,80,12)" fg:x="66" fg:w="4"/><text x="13.5565%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="13.3065%" y="756" width="0.8065%" height="15" fill="rgb(221,65,9)" fg:x="66" fg:w="4"/><text x="13.5565%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="13.3065%" y="772" width="0.8065%" height="15" fill="rgb(235,49,36)" fg:x="66" fg:w="4"/><text x="13.5565%" y="782.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 0.40%)</title><rect x="13.7097%" y="788" width="0.4032%" height="15" fill="rgb(225,32,20)" fg:x="68" fg:w="2"/><text x="13.9597%" y="798.50"></text></g><g><title>__init__ (packaging/requirements.py:33) (2 samples, 0.40%)</title><rect x="13.7097%" y="804" width="0.4032%" height="15" fill="rgb(215,141,46)" fg:x="68" fg:w="2"/><text x="13.9597%" y="814.50"></text></g><g><title>parse_requirement (packaging/_parser.py:63) (2 samples, 0.40%)</title><rect x="13.7097%" y="820" width="0.4032%" height="15" fill="rgb(250,160,47)" fg:x="68" fg:w="2"/><text x="13.9597%" y="830.50"></text></g><g><title>__init__ (packaging/_tokenizer.py:95) (2 samples, 0.40%)</title><rect x="13.7097%" y="836" width="0.4032%" height="15" fill="rgb(216,222,40)" fg:x="68" fg:w="2"/><text x="13.9597%" y="846.50"></text></g><g><title><dictcomp> (packaging/_tokenizer.py:102) (2 samples, 0.40%)</title><rect x="13.7097%" y="852" width="0.4032%" height="15" fill="rgb(234,217,39)" fg:x="68" fg:w="2"/><text x="13.9597%" y="862.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.40%)</title><rect x="13.7097%" y="868" width="0.4032%" height="15" fill="rgb(207,178,40)" fg:x="68" fg:w="2"/><text x="13.9597%" y="878.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.40%)</title><rect x="13.7097%" y="884" width="0.4032%" height="15" fill="rgb(221,136,13)" fg:x="68" fg:w="2"/><text x="13.9597%" y="894.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.40%)</title><rect x="13.7097%" y="900" width="0.4032%" height="15" fill="rgb(249,199,10)" fg:x="68" fg:w="2"/><text x="13.9597%" y="910.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.20%)</title><rect x="13.9113%" y="916" width="0.2016%" height="15" fill="rgb(249,222,13)" fg:x="69" fg:w="1"/><text x="14.1613%" y="926.50"></text></g><g><title><module> (distributed/actor.py:1) (27 samples, 5.44%)</title><rect x="9.0726%" y="564" width="5.4435%" height="15" fill="rgb(244,185,38)" fg:x="45" fg:w="27"/><text x="9.3226%" y="574.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (27 samples, 5.44%)</title><rect x="9.0726%" y="580" width="5.4435%" height="15" fill="rgb(236,202,9)" fg:x="45" fg:w="27"/><text x="9.3226%" y="590.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (27 samples, 5.44%)</title><rect x="9.0726%" y="596" width="5.4435%" height="15" fill="rgb(250,229,37)" fg:x="45" fg:w="27"/><text x="9.3226%" y="606.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (26 samples, 5.24%)</title><rect x="9.2742%" y="612" width="5.2419%" height="15" fill="rgb(206,174,23)" fg:x="46" fg:w="26"/><text x="9.5242%" y="622.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (26 samples, 5.24%)</title><rect x="9.2742%" y="628" width="5.2419%" height="15" fill="rgb(211,33,43)" fg:x="46" fg:w="26"/><text x="9.5242%" y="638.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (26 samples, 5.24%)</title><rect x="9.2742%" y="644" width="5.2419%" height="15" fill="rgb(245,58,50)" fg:x="46" fg:w="26"/><text x="9.5242%" y="654.50">_call_..</text></g><g><title><module> (tornado/ioloop.py:16) (2 samples, 0.40%)</title><rect x="14.1129%" y="660" width="0.4032%" height="15" fill="rgb(244,68,36)" fg:x="70" fg:w="2"/><text x="14.3629%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="14.1129%" y="676" width="0.4032%" height="15" fill="rgb(232,229,15)" fg:x="70" fg:w="2"/><text x="14.3629%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="14.1129%" y="692" width="0.4032%" height="15" fill="rgb(254,30,23)" fg:x="70" fg:w="2"/><text x="14.3629%" y="702.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.40%)</title><rect x="14.1129%" y="708" width="0.4032%" height="15" fill="rgb(235,160,14)" fg:x="70" fg:w="2"/><text x="14.3629%" y="718.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.40%)</title><rect x="14.1129%" y="724" width="0.4032%" height="15" fill="rgb(212,155,44)" fg:x="70" fg:w="2"/><text x="14.3629%" y="734.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.40%)</title><rect x="14.1129%" y="740" width="0.4032%" height="15" fill="rgb(226,2,50)" fg:x="70" fg:w="2"/><text x="14.3629%" y="750.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 0.40%)</title><rect x="14.1129%" y="756" width="0.4032%" height="15" fill="rgb(234,177,6)" fg:x="70" fg:w="2"/><text x="14.3629%" y="766.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.20%)</title><rect x="14.3145%" y="772" width="0.2016%" height="15" fill="rgb(217,24,9)" fg:x="71" fg:w="1"/><text x="14.5645%" y="782.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.20%)</title><rect x="14.3145%" y="788" width="0.2016%" height="15" fill="rgb(220,13,46)" fg:x="71" fg:w="1"/><text x="14.5645%" y="798.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="14.3145%" y="804" width="0.2016%" height="15" fill="rgb(239,221,27)" fg:x="71" fg:w="1"/><text x="14.5645%" y="814.50"></text></g><g><title><module> (distributed/active_memory_manager.py:1) (1 samples, 0.20%)</title><rect x="14.5161%" y="948" width="0.2016%" height="15" fill="rgb(222,198,25)" fg:x="72" fg:w="1"/><text x="14.7661%" y="958.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.20%)</title><rect x="14.5161%" y="964" width="0.2016%" height="15" fill="rgb(211,99,13)" fg:x="72" fg:w="1"/><text x="14.7661%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="14.5161%" y="868" width="0.4032%" height="15" fill="rgb(232,111,31)" fg:x="72" fg:w="2"/><text x="14.7661%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="14.5161%" y="884" width="0.4032%" height="15" fill="rgb(245,82,37)" fg:x="72" fg:w="2"/><text x="14.7661%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="14.5161%" y="900" width="0.4032%" height="15" fill="rgb(227,149,46)" fg:x="72" fg:w="2"/><text x="14.7661%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="14.5161%" y="916" width="0.4032%" height="15" fill="rgb(218,36,50)" fg:x="72" fg:w="2"/><text x="14.7661%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="14.5161%" y="932" width="0.4032%" height="15" fill="rgb(226,80,48)" fg:x="72" fg:w="2"/><text x="14.7661%" y="942.50"></text></g><g><title><module> (distributed/shuffle/__init__.py:1) (1 samples, 0.20%)</title><rect x="14.7177%" y="948" width="0.2016%" height="15" fill="rgb(238,224,15)" fg:x="73" fg:w="1"/><text x="14.9677%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="14.7177%" y="964" width="0.2016%" height="15" fill="rgb(241,136,10)" fg:x="73" fg:w="1"/><text x="14.9677%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="14.7177%" y="980" width="0.2016%" height="15" fill="rgb(208,32,45)" fg:x="73" fg:w="1"/><text x="14.9677%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="14.7177%" y="996" width="0.2016%" height="15" fill="rgb(207,135,9)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="14.7177%" y="1012" width="0.2016%" height="15" fill="rgb(206,86,44)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="14.7177%" y="1028" width="0.2016%" height="15" fill="rgb(245,177,15)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1038.50"></text></g><g><title><module> (distributed/shuffle/_merge.py:2) (1 samples, 0.20%)</title><rect x="14.7177%" y="1044" width="0.2016%" height="15" fill="rgb(206,64,50)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="14.7177%" y="1060" width="0.2016%" height="15" fill="rgb(234,36,40)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="14.7177%" y="1076" width="0.2016%" height="15" fill="rgb(213,64,8)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="14.7177%" y="1092" width="0.2016%" height="15" fill="rgb(210,75,36)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="14.7177%" y="1108" width="0.2016%" height="15" fill="rgb(229,88,21)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="14.7177%" y="1124" width="0.2016%" height="15" fill="rgb(252,204,47)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1134.50"></text></g><g><title><module> (distributed/shuffle/_core.py:1) (1 samples, 0.20%)</title><rect x="14.7177%" y="1140" width="0.2016%" height="15" fill="rgb(208,77,27)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1150.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.20%)</title><rect x="14.7177%" y="1156" width="0.2016%" height="15" fill="rgb(221,76,26)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1166.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.20%)</title><rect x="14.7177%" y="1172" width="0.2016%" height="15" fill="rgb(225,139,18)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1182.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.20%)</title><rect x="14.7177%" y="1188" width="0.2016%" height="15" fill="rgb(230,137,11)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1198.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="14.7177%" y="1204" width="0.2016%" height="15" fill="rgb(212,28,1)" fg:x="73" fg:w="1"/><text x="14.9677%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (30 samples, 6.05%)</title><rect x="9.0726%" y="548" width="6.0484%" height="15" fill="rgb(248,164,17)" fg:x="45" fg:w="30"/><text x="9.3226%" y="558.50">_call_wi..</text></g><g><title><module> (distributed/deploy/__init__.py:1) (3 samples, 0.60%)</title><rect x="14.5161%" y="564" width="0.6048%" height="15" fill="rgb(222,171,42)" fg:x="72" fg:w="3"/><text x="14.7661%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="14.5161%" y="580" width="0.6048%" height="15" fill="rgb(243,84,45)" fg:x="72" fg:w="3"/><text x="14.7661%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="14.5161%" y="596" width="0.6048%" height="15" fill="rgb(252,49,23)" fg:x="72" fg:w="3"/><text x="14.7661%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="14.5161%" y="612" width="0.6048%" height="15" fill="rgb(215,19,7)" fg:x="72" fg:w="3"/><text x="14.7661%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="14.5161%" y="628" width="0.6048%" height="15" fill="rgb(238,81,41)" fg:x="72" fg:w="3"/><text x="14.7661%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="14.5161%" y="644" width="0.6048%" height="15" fill="rgb(210,199,37)" fg:x="72" fg:w="3"/><text x="14.7661%" y="654.50"></text></g><g><title><module> (distributed/deploy/local.py:1) (3 samples, 0.60%)</title><rect x="14.5161%" y="660" width="0.6048%" height="15" fill="rgb(244,192,49)" fg:x="72" fg:w="3"/><text x="14.7661%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="14.5161%" y="676" width="0.6048%" height="15" fill="rgb(226,211,11)" fg:x="72" fg:w="3"/><text x="14.7661%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="14.5161%" y="692" width="0.6048%" height="15" fill="rgb(236,162,54)" fg:x="72" fg:w="3"/><text x="14.7661%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="14.5161%" y="708" width="0.6048%" height="15" fill="rgb(220,229,9)" fg:x="72" fg:w="3"/><text x="14.7661%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="14.5161%" y="724" width="0.6048%" height="15" fill="rgb(250,87,22)" fg:x="72" fg:w="3"/><text x="14.7661%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="14.5161%" y="740" width="0.6048%" height="15" fill="rgb(239,43,17)" fg:x="72" fg:w="3"/><text x="14.7661%" y="750.50"></text></g><g><title><module> (distributed/deploy/spec.py:1) (3 samples, 0.60%)</title><rect x="14.5161%" y="756" width="0.6048%" height="15" fill="rgb(231,177,25)" fg:x="72" fg:w="3"/><text x="14.7661%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="14.5161%" y="772" width="0.6048%" height="15" fill="rgb(219,179,1)" fg:x="72" fg:w="3"/><text x="14.7661%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="14.5161%" y="788" width="0.6048%" height="15" fill="rgb(238,219,53)" fg:x="72" fg:w="3"/><text x="14.7661%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="14.5161%" y="804" width="0.6048%" height="15" fill="rgb(232,167,36)" fg:x="72" fg:w="3"/><text x="14.7661%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="14.5161%" y="820" width="0.6048%" height="15" fill="rgb(244,19,51)" fg:x="72" fg:w="3"/><text x="14.7661%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="14.5161%" y="836" width="0.6048%" height="15" fill="rgb(224,6,22)" fg:x="72" fg:w="3"/><text x="14.7661%" y="846.50"></text></g><g><title><module> (distributed/scheduler.py:1) (3 samples, 0.60%)</title><rect x="14.5161%" y="852" width="0.6048%" height="15" fill="rgb(224,145,5)" fg:x="72" fg:w="3"/><text x="14.7661%" y="862.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.20%)</title><rect x="14.9194%" y="868" width="0.2016%" height="15" fill="rgb(234,130,49)" fg:x="74" fg:w="1"/><text x="15.1694%" y="878.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.20%)</title><rect x="14.9194%" y="884" width="0.2016%" height="15" fill="rgb(254,6,2)" fg:x="74" fg:w="1"/><text x="15.1694%" y="894.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.20%)</title><rect x="14.9194%" y="900" width="0.2016%" height="15" fill="rgb(208,96,46)" fg:x="74" fg:w="1"/><text x="15.1694%" y="910.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.20%)</title><rect x="14.9194%" y="916" width="0.2016%" height="15" fill="rgb(239,3,39)" fg:x="74" fg:w="1"/><text x="15.1694%" y="926.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="14.9194%" y="932" width="0.2016%" height="15" fill="rgb(233,210,1)" fg:x="74" fg:w="1"/><text x="15.1694%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (31 samples, 6.25%)</title><rect x="9.0726%" y="484" width="6.2500%" height="15" fill="rgb(244,137,37)" fg:x="45" fg:w="31"/><text x="9.3226%" y="494.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (31 samples, 6.25%)</title><rect x="9.0726%" y="500" width="6.2500%" height="15" fill="rgb(240,136,2)" fg:x="45" fg:w="31"/><text x="9.3226%" y="510.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (31 samples, 6.25%)</title><rect x="9.0726%" y="516" width="6.2500%" height="15" fill="rgb(239,18,37)" fg:x="45" fg:w="31"/><text x="9.3226%" y="526.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (31 samples, 6.25%)</title><rect x="9.0726%" y="532" width="6.2500%" height="15" fill="rgb(218,185,22)" fg:x="45" fg:w="31"/><text x="9.3226%" y="542.50">exec_mod..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="15.1210%" y="548" width="0.2016%" height="15" fill="rgb(225,218,4)" fg:x="75" fg:w="1"/><text x="15.3710%" y="558.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="15.1210%" y="564" width="0.2016%" height="15" fill="rgb(230,182,32)" fg:x="75" fg:w="1"/><text x="15.3710%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="15.3226%" y="612" width="0.4032%" height="15" fill="rgb(242,56,43)" fg:x="76" fg:w="2"/><text x="15.5726%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="15.3226%" y="628" width="0.4032%" height="15" fill="rgb(233,99,24)" fg:x="76" fg:w="2"/><text x="15.5726%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="15.3226%" y="644" width="0.4032%" height="15" fill="rgb(234,209,42)" fg:x="76" fg:w="2"/><text x="15.5726%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="15.3226%" y="660" width="0.4032%" height="15" fill="rgb(227,7,12)" fg:x="76" fg:w="2"/><text x="15.5726%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="15.3226%" y="676" width="0.4032%" height="15" fill="rgb(245,203,43)" fg:x="76" fg:w="2"/><text x="15.5726%" y="686.50"></text></g><g><title><module> (logging/config.py:17) (2 samples, 0.40%)</title><rect x="15.3226%" y="692" width="0.4032%" height="15" fill="rgb(238,205,33)" fg:x="76" fg:w="2"/><text x="15.5726%" y="702.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.40%)</title><rect x="15.3226%" y="708" width="0.4032%" height="15" fill="rgb(231,56,7)" fg:x="76" fg:w="2"/><text x="15.5726%" y="718.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.40%)</title><rect x="15.3226%" y="724" width="0.4032%" height="15" fill="rgb(244,186,29)" fg:x="76" fg:w="2"/><text x="15.5726%" y="734.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.40%)</title><rect x="15.3226%" y="740" width="0.4032%" height="15" fill="rgb(234,111,31)" fg:x="76" fg:w="2"/><text x="15.5726%" y="750.50"></text></g><g><title>_code (sre_compile.py:622) (2 samples, 0.40%)</title><rect x="15.3226%" y="756" width="0.4032%" height="15" fill="rgb(241,149,10)" fg:x="76" fg:w="2"/><text x="15.5726%" y="766.50"></text></g><g><title>_compile (sre_compile.py:87) (2 samples, 0.40%)</title><rect x="15.3226%" y="772" width="0.4032%" height="15" fill="rgb(249,206,44)" fg:x="76" fg:w="2"/><text x="15.5726%" y="782.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (2 samples, 0.40%)</title><rect x="15.3226%" y="788" width="0.4032%" height="15" fill="rgb(251,153,30)" fg:x="76" fg:w="2"/><text x="15.5726%" y="798.50"></text></g><g><title><module> (dask/distributed.py:3) (34 samples, 6.85%)</title><rect x="9.0726%" y="372" width="6.8548%" height="15" fill="rgb(239,152,38)" fg:x="45" fg:w="34"/><text x="9.3226%" y="382.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 6.85%)</title><rect x="9.0726%" y="388" width="6.8548%" height="15" fill="rgb(249,139,47)" fg:x="45" fg:w="34"/><text x="9.3226%" y="398.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 6.85%)</title><rect x="9.0726%" y="404" width="6.8548%" height="15" fill="rgb(244,64,35)" fg:x="45" fg:w="34"/><text x="9.3226%" y="414.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 6.85%)</title><rect x="9.0726%" y="420" width="6.8548%" height="15" fill="rgb(216,46,15)" fg:x="45" fg:w="34"/><text x="9.3226%" y="430.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 6.85%)</title><rect x="9.0726%" y="436" width="6.8548%" height="15" fill="rgb(250,74,19)" fg:x="45" fg:w="34"/><text x="9.3226%" y="446.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 6.85%)</title><rect x="9.0726%" y="452" width="6.8548%" height="15" fill="rgb(249,42,33)" fg:x="45" fg:w="34"/><text x="9.3226%" y="462.50">_call_wit..</text></g><g><title><module> (distributed/__init__.py:1) (34 samples, 6.85%)</title><rect x="9.0726%" y="468" width="6.8548%" height="15" fill="rgb(242,149,17)" fg:x="45" fg:w="34"/><text x="9.3226%" y="478.50"><module> ..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="15.3226%" y="484" width="0.6048%" height="15" fill="rgb(244,29,21)" fg:x="76" fg:w="3"/><text x="15.5726%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="15.3226%" y="500" width="0.6048%" height="15" fill="rgb(220,130,37)" fg:x="76" fg:w="3"/><text x="15.5726%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="15.3226%" y="516" width="0.6048%" height="15" fill="rgb(211,67,2)" fg:x="76" fg:w="3"/><text x="15.5726%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="15.3226%" y="532" width="0.6048%" height="15" fill="rgb(235,68,52)" fg:x="76" fg:w="3"/><text x="15.5726%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="15.3226%" y="548" width="0.6048%" height="15" fill="rgb(246,142,3)" fg:x="76" fg:w="3"/><text x="15.5726%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="15.3226%" y="564" width="0.6048%" height="15" fill="rgb(241,25,7)" fg:x="76" fg:w="3"/><text x="15.5726%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="15.3226%" y="580" width="0.6048%" height="15" fill="rgb(242,119,39)" fg:x="76" fg:w="3"/><text x="15.5726%" y="590.50"></text></g><g><title><module> (distributed/config.py:1) (3 samples, 0.60%)</title><rect x="15.3226%" y="596" width="0.6048%" height="15" fill="rgb(241,98,45)" fg:x="76" fg:w="3"/><text x="15.5726%" y="606.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (1 samples, 0.20%)</title><rect x="15.7258%" y="612" width="0.2016%" height="15" fill="rgb(254,28,30)" fg:x="78" fg:w="1"/><text x="15.9758%" y="622.50"></text></g><g><title>load (yaml/__init__.py:74) (1 samples, 0.20%)</title><rect x="15.7258%" y="628" width="0.2016%" height="15" fill="rgb(241,142,54)" fg:x="78" fg:w="1"/><text x="15.9758%" y="638.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (1 samples, 0.20%)</title><rect x="15.7258%" y="644" width="0.2016%" height="15" fill="rgb(222,85,15)" fg:x="78" fg:w="1"/><text x="15.9758%" y="654.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (1 samples, 0.20%)</title><rect x="15.7258%" y="660" width="0.2016%" height="15" fill="rgb(210,85,47)" fg:x="78" fg:w="1"/><text x="15.9758%" y="670.50"></text></g><g><title>compose_document (yaml/composer.py:50) (1 samples, 0.20%)</title><rect x="15.7258%" y="676" width="0.2016%" height="15" fill="rgb(224,206,25)" fg:x="78" fg:w="1"/><text x="15.9758%" y="686.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.20%)</title><rect x="15.7258%" y="692" width="0.2016%" height="15" fill="rgb(243,201,19)" fg:x="78" fg:w="1"/><text x="15.9758%" y="702.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.20%)</title><rect x="15.7258%" y="708" width="0.2016%" height="15" fill="rgb(236,59,4)" fg:x="78" fg:w="1"/><text x="15.9758%" y="718.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.20%)</title><rect x="15.7258%" y="724" width="0.2016%" height="15" fill="rgb(254,179,45)" fg:x="78" fg:w="1"/><text x="15.9758%" y="734.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.20%)</title><rect x="15.7258%" y="740" width="0.2016%" height="15" fill="rgb(226,14,10)" fg:x="78" fg:w="1"/><text x="15.9758%" y="750.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.20%)</title><rect x="15.7258%" y="756" width="0.2016%" height="15" fill="rgb(244,27,41)" fg:x="78" fg:w="1"/><text x="15.9758%" y="766.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.20%)</title><rect x="15.7258%" y="772" width="0.2016%" height="15" fill="rgb(235,35,32)" fg:x="78" fg:w="1"/><text x="15.9758%" y="782.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.20%)</title><rect x="15.7258%" y="788" width="0.2016%" height="15" fill="rgb(218,68,31)" fg:x="78" fg:w="1"/><text x="15.9758%" y="798.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (1 samples, 0.20%)</title><rect x="15.7258%" y="804" width="0.2016%" height="15" fill="rgb(207,120,37)" fg:x="78" fg:w="1"/><text x="15.9758%" y="814.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.20%)</title><rect x="15.7258%" y="820" width="0.2016%" height="15" fill="rgb(227,98,0)" fg:x="78" fg:w="1"/><text x="15.9758%" y="830.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.20%)</title><rect x="15.7258%" y="836" width="0.2016%" height="15" fill="rgb(207,7,3)" fg:x="78" fg:w="1"/><text x="15.9758%" y="846.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.20%)</title><rect x="15.7258%" y="852" width="0.2016%" height="15" fill="rgb(206,98,19)" fg:x="78" fg:w="1"/><text x="15.9758%" y="862.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.20%)</title><rect x="15.7258%" y="868" width="0.2016%" height="15" fill="rgb(217,5,26)" fg:x="78" fg:w="1"/><text x="15.9758%" y="878.50"></text></g><g><title><module> (dask_sql/integrations/ipython.py:1) (1 samples, 0.20%)</title><rect x="15.9274%" y="468" width="0.2016%" height="15" fill="rgb(235,190,38)" fg:x="79" fg:w="1"/><text x="16.1774%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="15.9274%" y="484" width="0.2016%" height="15" fill="rgb(247,86,24)" fg:x="79" fg:w="1"/><text x="16.1774%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="15.9274%" y="500" width="0.2016%" height="15" fill="rgb(205,101,16)" fg:x="79" fg:w="1"/><text x="16.1774%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="15.9274%" y="516" width="0.2016%" height="15" fill="rgb(246,168,33)" fg:x="79" fg:w="1"/><text x="16.1774%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="15.9274%" y="532" width="0.2016%" height="15" fill="rgb(231,114,1)" fg:x="79" fg:w="1"/><text x="16.1774%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="15.9274%" y="548" width="0.2016%" height="15" fill="rgb(207,184,53)" fg:x="79" fg:w="1"/><text x="16.1774%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="15.9274%" y="564" width="0.2016%" height="15" fill="rgb(224,95,51)" fg:x="79" fg:w="1"/><text x="16.1774%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="15.9274%" y="580" width="0.2016%" height="15" fill="rgb(212,188,45)" fg:x="79" fg:w="1"/><text x="16.1774%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="15.9274%" y="596" width="0.2016%" height="15" fill="rgb(223,154,38)" fg:x="79" fg:w="1"/><text x="16.1774%" y="606.50"></text></g><g><title><module> (dask_sql/physical/rex/__init__.py:1) (1 samples, 0.20%)</title><rect x="15.9274%" y="612" width="0.2016%" height="15" fill="rgb(251,22,52)" fg:x="79" fg:w="1"/><text x="16.1774%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="15.9274%" y="628" width="0.2016%" height="15" fill="rgb(229,209,22)" fg:x="79" fg:w="1"/><text x="16.1774%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="15.9274%" y="644" width="0.2016%" height="15" fill="rgb(234,138,34)" fg:x="79" fg:w="1"/><text x="16.1774%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="15.9274%" y="660" width="0.2016%" height="15" fill="rgb(212,95,11)" fg:x="79" fg:w="1"/><text x="16.1774%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="15.9274%" y="676" width="0.2016%" height="15" fill="rgb(240,179,47)" fg:x="79" fg:w="1"/><text x="16.1774%" y="686.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="15.9274%" y="692" width="0.2016%" height="15" fill="rgb(240,163,11)" fg:x="79" fg:w="1"/><text x="16.1774%" y="702.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="15.9274%" y="708" width="0.2016%" height="15" fill="rgb(236,37,12)" fg:x="79" fg:w="1"/><text x="16.1774%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.60%)</title><rect x="16.1290%" y="836" width="0.6048%" height="15" fill="rgb(232,164,16)" fg:x="80" fg:w="3"/><text x="16.3790%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="16.1290%" y="852" width="0.6048%" height="15" fill="rgb(244,205,15)" fg:x="80" fg:w="3"/><text x="16.3790%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="16.1290%" y="868" width="0.6048%" height="15" fill="rgb(223,117,47)" fg:x="80" fg:w="3"/><text x="16.3790%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="16.1290%" y="884" width="0.6048%" height="15" fill="rgb(244,107,35)" fg:x="80" fg:w="3"/><text x="16.3790%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="16.1290%" y="900" width="0.6048%" height="15" fill="rgb(205,140,8)" fg:x="80" fg:w="3"/><text x="16.3790%" y="910.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="16.1290%" y="916" width="0.6048%" height="15" fill="rgb(228,84,46)" fg:x="80" fg:w="3"/><text x="16.3790%" y="926.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="16.1290%" y="932" width="0.6048%" height="15" fill="rgb(254,188,9)" fg:x="80" fg:w="3"/><text x="16.3790%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="16.1290%" y="948" width="0.6048%" height="15" fill="rgb(206,112,54)" fg:x="80" fg:w="3"/><text x="16.3790%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 0.81%)</title><rect x="16.1290%" y="756" width="0.8065%" height="15" fill="rgb(216,84,49)" fg:x="80" fg:w="4"/><text x="16.3790%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="16.1290%" y="772" width="0.8065%" height="15" fill="rgb(214,194,35)" fg:x="80" fg:w="4"/><text x="16.3790%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="16.1290%" y="788" width="0.8065%" height="15" fill="rgb(249,28,3)" fg:x="80" fg:w="4"/><text x="16.3790%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="16.1290%" y="804" width="0.8065%" height="15" fill="rgb(222,56,52)" fg:x="80" fg:w="4"/><text x="16.3790%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="16.1290%" y="820" width="0.8065%" height="15" fill="rgb(245,217,50)" fg:x="80" fg:w="4"/><text x="16.3790%" y="830.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="16.7339%" y="836" width="0.2016%" height="15" fill="rgb(213,201,24)" fg:x="83" fg:w="1"/><text x="16.9839%" y="846.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="16.7339%" y="852" width="0.2016%" height="15" fill="rgb(248,116,28)" fg:x="83" fg:w="1"/><text x="16.9839%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="16.7339%" y="868" width="0.2016%" height="15" fill="rgb(219,72,43)" fg:x="83" fg:w="1"/><text x="16.9839%" y="878.50"></text></g><g><title><module> (dask/dataframe/io/parquet/arrow.py:1) (7 samples, 1.41%)</title><rect x="16.1290%" y="564" width="1.4113%" height="15" fill="rgb(209,138,14)" fg:x="80" fg:w="7"/><text x="16.3790%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 1.41%)</title><rect x="16.1290%" y="580" width="1.4113%" height="15" fill="rgb(222,18,33)" fg:x="80" fg:w="7"/><text x="16.3790%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="16.1290%" y="596" width="1.4113%" height="15" fill="rgb(213,199,7)" fg:x="80" fg:w="7"/><text x="16.3790%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="16.1290%" y="612" width="1.4113%" height="15" fill="rgb(250,110,10)" fg:x="80" fg:w="7"/><text x="16.3790%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="16.1290%" y="628" width="1.4113%" height="15" fill="rgb(248,123,6)" fg:x="80" fg:w="7"/><text x="16.3790%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="16.1290%" y="644" width="1.4113%" height="15" fill="rgb(206,91,31)" fg:x="80" fg:w="7"/><text x="16.3790%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="16.1290%" y="660" width="1.4113%" height="15" fill="rgb(211,154,13)" fg:x="80" fg:w="7"/><text x="16.3790%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="16.1290%" y="676" width="1.4113%" height="15" fill="rgb(225,148,7)" fg:x="80" fg:w="7"/><text x="16.3790%" y="686.50"></text></g><g><title><module> (pyarrow/dataset.py:18) (7 samples, 1.41%)</title><rect x="16.1290%" y="692" width="1.4113%" height="15" fill="rgb(220,160,43)" fg:x="80" fg:w="7"/><text x="16.3790%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="16.1290%" y="708" width="1.4113%" height="15" fill="rgb(213,52,39)" fg:x="80" fg:w="7"/><text x="16.3790%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="16.1290%" y="724" width="1.4113%" height="15" fill="rgb(243,137,7)" fg:x="80" fg:w="7"/><text x="16.3790%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="16.1290%" y="740" width="1.4113%" height="15" fill="rgb(230,79,13)" fg:x="80" fg:w="7"/><text x="16.3790%" y="750.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="16.9355%" y="756" width="0.6048%" height="15" fill="rgb(247,105,23)" fg:x="84" fg:w="3"/><text x="17.1855%" y="766.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="16.9355%" y="772" width="0.6048%" height="15" fill="rgb(223,179,41)" fg:x="84" fg:w="3"/><text x="17.1855%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="16.9355%" y="788" width="0.6048%" height="15" fill="rgb(218,9,34)" fg:x="84" fg:w="3"/><text x="17.1855%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="15.9274%" y="452" width="2.2177%" height="15" fill="rgb(222,106,8)" fg:x="79" fg:w="11"/><text x="16.1774%" y="462.50">_..</text></g><g><title><module> (dask_sql/physical/utils/statistics.py:1) (10 samples, 2.02%)</title><rect x="16.1290%" y="468" width="2.0161%" height="15" fill="rgb(211,220,0)" fg:x="80" fg:w="10"/><text x="16.3790%" y="478.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.02%)</title><rect x="16.1290%" y="484" width="2.0161%" height="15" fill="rgb(229,52,16)" fg:x="80" fg:w="10"/><text x="16.3790%" y="494.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.02%)</title><rect x="16.1290%" y="500" width="2.0161%" height="15" fill="rgb(212,155,18)" fg:x="80" fg:w="10"/><text x="16.3790%" y="510.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.02%)</title><rect x="16.1290%" y="516" width="2.0161%" height="15" fill="rgb(242,21,14)" fg:x="80" fg:w="10"/><text x="16.3790%" y="526.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.02%)</title><rect x="16.1290%" y="532" width="2.0161%" height="15" fill="rgb(222,19,48)" fg:x="80" fg:w="10"/><text x="16.3790%" y="542.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="16.1290%" y="548" width="2.0161%" height="15" fill="rgb(232,45,27)" fg:x="80" fg:w="10"/><text x="16.3790%" y="558.50">_..</text></g><g><title><module> (pyarrow/parquet/__init__.py:20) (3 samples, 0.60%)</title><rect x="17.5403%" y="564" width="0.6048%" height="15" fill="rgb(249,103,42)" fg:x="87" fg:w="3"/><text x="17.7903%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="17.5403%" y="580" width="0.6048%" height="15" fill="rgb(246,81,33)" fg:x="87" fg:w="3"/><text x="17.7903%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="17.5403%" y="596" width="0.6048%" height="15" fill="rgb(252,33,42)" fg:x="87" fg:w="3"/><text x="17.7903%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="17.5403%" y="612" width="0.6048%" height="15" fill="rgb(209,212,41)" fg:x="87" fg:w="3"/><text x="17.7903%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="17.5403%" y="628" width="0.6048%" height="15" fill="rgb(207,154,6)" fg:x="87" fg:w="3"/><text x="17.7903%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="17.5403%" y="644" width="0.6048%" height="15" fill="rgb(223,64,47)" fg:x="87" fg:w="3"/><text x="17.7903%" y="654.50"></text></g><g><title><module> (pyarrow/parquet/core.py:19) (3 samples, 0.60%)</title><rect x="17.5403%" y="660" width="0.6048%" height="15" fill="rgb(211,161,38)" fg:x="87" fg:w="3"/><text x="17.7903%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="17.5403%" y="676" width="0.6048%" height="15" fill="rgb(219,138,40)" fg:x="87" fg:w="3"/><text x="17.7903%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="17.5403%" y="692" width="0.6048%" height="15" fill="rgb(241,228,46)" fg:x="87" fg:w="3"/><text x="17.7903%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="17.5403%" y="708" width="0.6048%" height="15" fill="rgb(223,209,38)" fg:x="87" fg:w="3"/><text x="17.7903%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="17.5403%" y="724" width="0.6048%" height="15" fill="rgb(236,164,45)" fg:x="87" fg:w="3"/><text x="17.7903%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="17.5403%" y="740" width="0.6048%" height="15" fill="rgb(231,15,5)" fg:x="87" fg:w="3"/><text x="17.7903%" y="750.50"></text></g><g><title><module> (pyarrow/fs.py:18) (3 samples, 0.60%)</title><rect x="17.5403%" y="756" width="0.6048%" height="15" fill="rgb(252,35,15)" fg:x="87" fg:w="3"/><text x="17.7903%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="17.5403%" y="772" width="0.6048%" height="15" fill="rgb(248,181,18)" fg:x="87" fg:w="3"/><text x="17.7903%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="17.5403%" y="788" width="0.6048%" height="15" fill="rgb(233,39,42)" fg:x="87" fg:w="3"/><text x="17.7903%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="17.5403%" y="804" width="0.6048%" height="15" fill="rgb(238,110,33)" fg:x="87" fg:w="3"/><text x="17.7903%" y="814.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="17.5403%" y="820" width="0.6048%" height="15" fill="rgb(233,195,10)" fg:x="87" fg:w="3"/><text x="17.7903%" y="830.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="17.5403%" y="836" width="0.6048%" height="15" fill="rgb(254,105,3)" fg:x="87" fg:w="3"/><text x="17.7903%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="17.5403%" y="852" width="0.6048%" height="15" fill="rgb(221,225,9)" fg:x="87" fg:w="3"/><text x="17.7903%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="15.9274%" y="388" width="2.4194%" height="15" fill="rgb(224,227,45)" fg:x="79" fg:w="12"/><text x="16.1774%" y="398.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="15.9274%" y="404" width="2.4194%" height="15" fill="rgb(229,198,43)" fg:x="79" fg:w="12"/><text x="16.1774%" y="414.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="15.9274%" y="420" width="2.4194%" height="15" fill="rgb(206,209,35)" fg:x="79" fg:w="12"/><text x="16.1774%" y="430.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="15.9274%" y="436" width="2.4194%" height="15" fill="rgb(245,195,53)" fg:x="79" fg:w="12"/><text x="16.1774%" y="446.50">ex..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="18.1452%" y="452" width="0.2016%" height="15" fill="rgb(240,92,26)" fg:x="90" fg:w="1"/><text x="18.3952%" y="462.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="18.1452%" y="468" width="0.2016%" height="15" fill="rgb(207,40,23)" fg:x="90" fg:w="1"/><text x="18.3952%" y="478.50"></text></g><g><title>__new__ (typing_extensions.py:789) (1 samples, 0.20%)</title><rect x="18.3468%" y="1124" width="0.2016%" height="15" fill="rgb(223,111,35)" fg:x="91" fg:w="1"/><text x="18.5968%" y="1134.50"></text></g><g><title><dictcomp> (typing_extensions.py:821) (1 samples, 0.20%)</title><rect x="18.3468%" y="1140" width="0.2016%" height="15" fill="rgb(229,147,28)" fg:x="91" fg:w="1"/><text x="18.5968%" y="1150.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.20%)</title><rect x="18.3468%" y="1156" width="0.2016%" height="15" fill="rgb(211,29,28)" fg:x="91" fg:w="1"/><text x="18.5968%" y="1166.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.20%)</title><rect x="18.3468%" y="1172" width="0.2016%" height="15" fill="rgb(228,72,33)" fg:x="91" fg:w="1"/><text x="18.5968%" y="1182.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.20%)</title><rect x="18.3468%" y="1188" width="0.2016%" height="15" fill="rgb(205,214,31)" fg:x="91" fg:w="1"/><text x="18.5968%" y="1198.50"></text></g><g><title>__go (sqlalchemy/sql/__init__.py:111) (1 samples, 0.20%)</title><rect x="18.5484%" y="1268" width="0.2016%" height="15" fill="rgb(224,111,15)" fg:x="92" fg:w="1"/><text x="18.7984%" y="1278.50"></text></g><g><title>_prepare_annotations (sqlalchemy/sql/annotation.py:589) (1 samples, 0.20%)</title><rect x="18.5484%" y="1284" width="0.2016%" height="15" fill="rgb(253,21,26)" fg:x="92" fg:w="1"/><text x="18.7984%" y="1294.50"></text></g><g><title>_new_annotation_type (sqlalchemy/sql/annotation.py:542) (1 samples, 0.20%)</title><rect x="18.5484%" y="1300" width="0.2016%" height="15" fill="rgb(245,139,43)" fg:x="92" fg:w="1"/><text x="18.7984%" y="1310.50"></text></g><g><title><module> (sqlalchemy/sql/base.py:9) (1 samples, 0.20%)</title><rect x="18.7500%" y="1348" width="0.2016%" height="15" fill="rgb(252,170,7)" fg:x="93" fg:w="1"/><text x="19.0000%" y="1358.50"></text></g><g><title>__init__ (typing.py:628) (1 samples, 0.20%)</title><rect x="18.7500%" y="1364" width="0.2016%" height="15" fill="rgb(231,118,14)" fg:x="93" fg:w="1"/><text x="19.0000%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="18.5484%" y="1156" width="0.6048%" height="15" fill="rgb(238,83,0)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="18.5484%" y="1172" width="0.6048%" height="15" fill="rgb(221,39,39)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="18.5484%" y="1188" width="0.6048%" height="15" fill="rgb(222,119,46)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="18.5484%" y="1204" width="0.6048%" height="15" fill="rgb(222,165,49)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="18.5484%" y="1220" width="0.6048%" height="15" fill="rgb(219,113,52)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="18.5484%" y="1236" width="0.6048%" height="15" fill="rgb(214,7,15)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1246.50"></text></g><g><title><module> (sqlalchemy/sql/__init__.py:7) (3 samples, 0.60%)</title><rect x="18.5484%" y="1252" width="0.6048%" height="15" fill="rgb(235,32,4)" fg:x="92" fg:w="3"/><text x="18.7984%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="18.7500%" y="1268" width="0.4032%" height="15" fill="rgb(238,90,54)" fg:x="93" fg:w="2"/><text x="19.0000%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="18.7500%" y="1284" width="0.4032%" height="15" fill="rgb(213,208,19)" fg:x="93" fg:w="2"/><text x="19.0000%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="18.7500%" y="1300" width="0.4032%" height="15" fill="rgb(233,156,4)" fg:x="93" fg:w="2"/><text x="19.0000%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="18.7500%" y="1316" width="0.4032%" height="15" fill="rgb(207,194,5)" fg:x="93" fg:w="2"/><text x="19.0000%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="18.7500%" y="1332" width="0.4032%" height="15" fill="rgb(206,111,30)" fg:x="93" fg:w="2"/><text x="19.0000%" y="1342.50"></text></g><g><title><module> (sqlalchemy/sql/compiler.py:9) (1 samples, 0.20%)</title><rect x="18.9516%" y="1348" width="0.2016%" height="15" fill="rgb(243,70,54)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="18.9516%" y="1364" width="0.2016%" height="15" fill="rgb(242,28,8)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1380" width="0.2016%" height="15" fill="rgb(219,106,18)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="18.9516%" y="1396" width="0.2016%" height="15" fill="rgb(244,222,10)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="18.9516%" y="1412" width="0.2016%" height="15" fill="rgb(236,179,52)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="18.9516%" y="1428" width="0.2016%" height="15" fill="rgb(213,23,39)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="18.9516%" y="1444" width="0.2016%" height="15" fill="rgb(238,48,10)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1460" width="0.2016%" height="15" fill="rgb(251,196,23)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1470.50"></text></g><g><title><module> (sqlalchemy/sql/crud.py:9) (1 samples, 0.20%)</title><rect x="18.9516%" y="1476" width="0.2016%" height="15" fill="rgb(250,152,24)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="18.9516%" y="1492" width="0.2016%" height="15" fill="rgb(209,150,17)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1508" width="0.2016%" height="15" fill="rgb(234,202,34)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="18.9516%" y="1524" width="0.2016%" height="15" fill="rgb(253,148,53)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="18.9516%" y="1540" width="0.2016%" height="15" fill="rgb(218,129,16)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="18.9516%" y="1556" width="0.2016%" height="15" fill="rgb(216,85,19)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="18.9516%" y="1572" width="0.2016%" height="15" fill="rgb(235,228,7)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1582.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1588" width="0.2016%" height="15" fill="rgb(245,175,0)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1598.50"></text></g><g><title><module> (sqlalchemy/sql/dml.py:7) (1 samples, 0.20%)</title><rect x="18.9516%" y="1604" width="0.2016%" height="15" fill="rgb(208,168,36)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1614.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="18.9516%" y="1620" width="0.2016%" height="15" fill="rgb(246,171,24)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1636" width="0.2016%" height="15" fill="rgb(215,142,24)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="18.9516%" y="1652" width="0.2016%" height="15" fill="rgb(250,187,7)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="18.9516%" y="1668" width="0.2016%" height="15" fill="rgb(228,66,33)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="18.9516%" y="1684" width="0.2016%" height="15" fill="rgb(234,215,21)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="18.9516%" y="1700" width="0.2016%" height="15" fill="rgb(222,191,20)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1716" width="0.2016%" height="15" fill="rgb(245,79,54)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1726.50"></text></g><g><title><module> (sqlalchemy/sql/util.py:9) (1 samples, 0.20%)</title><rect x="18.9516%" y="1732" width="0.2016%" height="15" fill="rgb(240,10,37)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1742.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="18.9516%" y="1748" width="0.2016%" height="15" fill="rgb(214,192,32)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="18.9516%" y="1764" width="0.2016%" height="15" fill="rgb(209,36,54)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1774.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="18.9516%" y="1780" width="0.2016%" height="15" fill="rgb(220,10,11)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1790.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="18.9516%" y="1796" width="0.2016%" height="15" fill="rgb(221,106,17)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="18.9516%" y="1812" width="0.2016%" height="15" fill="rgb(251,142,44)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1822.50"></text></g><g><title><module> (sqlalchemy/sql/schema.py:8) (1 samples, 0.20%)</title><rect x="18.9516%" y="1828" width="0.2016%" height="15" fill="rgb(238,13,15)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="18.9516%" y="1844" width="0.2016%" height="15" fill="rgb(208,107,27)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="18.9516%" y="1860" width="0.2016%" height="15" fill="rgb(205,136,37)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="18.9516%" y="1876" width="0.2016%" height="15" fill="rgb(250,205,27)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="18.9516%" y="1892" width="0.2016%" height="15" fill="rgb(210,80,43)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1902.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="18.9516%" y="1908" width="0.2016%" height="15" fill="rgb(247,160,36)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1918.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="18.9516%" y="1924" width="0.2016%" height="15" fill="rgb(234,13,49)" fg:x="94" fg:w="1"/><text x="19.2016%" y="1934.50"></text></g><g><title>getLogger (logging/__init__.py:2034) (1 samples, 0.20%)</title><rect x="19.1532%" y="1572" width="0.2016%" height="15" fill="rgb(234,122,0)" fg:x="95" fg:w="1"/><text x="19.4032%" y="1582.50"></text></g><g><title>getLogger (logging/__init__.py:1284) (1 samples, 0.20%)</title><rect x="19.1532%" y="1588" width="0.2016%" height="15" fill="rgb(207,146,38)" fg:x="95" fg:w="1"/><text x="19.4032%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="580" width="1.2097%" height="15" fill="rgb(207,177,25)" fg:x="91" fg:w="6"/><text x="18.5968%" y="590.50"></text></g><g><title><module> (dask_sql/input_utils/hive.py:1) (6 samples, 1.21%)</title><rect x="18.3468%" y="596" width="1.2097%" height="15" fill="rgb(211,178,42)" fg:x="91" fg:w="6"/><text x="18.5968%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="18.3468%" y="612" width="1.2097%" height="15" fill="rgb(230,69,54)" fg:x="91" fg:w="6"/><text x="18.5968%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="18.3468%" y="628" width="1.2097%" height="15" fill="rgb(214,135,41)" fg:x="91" fg:w="6"/><text x="18.5968%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="18.3468%" y="644" width="1.2097%" height="15" fill="rgb(237,67,25)" fg:x="91" fg:w="6"/><text x="18.5968%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="18.3468%" y="660" width="1.2097%" height="15" fill="rgb(222,189,50)" fg:x="91" fg:w="6"/><text x="18.5968%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="676" width="1.2097%" height="15" fill="rgb(245,148,34)" fg:x="91" fg:w="6"/><text x="18.5968%" y="686.50"></text></g><g><title><module> (sqlalchemy/__init__.py:8) (6 samples, 1.21%)</title><rect x="18.3468%" y="692" width="1.2097%" height="15" fill="rgb(222,29,6)" fg:x="91" fg:w="6"/><text x="18.5968%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="18.3468%" y="708" width="1.2097%" height="15" fill="rgb(221,189,43)" fg:x="91" fg:w="6"/><text x="18.5968%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="18.3468%" y="724" width="1.2097%" height="15" fill="rgb(207,36,27)" fg:x="91" fg:w="6"/><text x="18.5968%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="18.3468%" y="740" width="1.2097%" height="15" fill="rgb(217,90,24)" fg:x="91" fg:w="6"/><text x="18.5968%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="18.3468%" y="756" width="1.2097%" height="15" fill="rgb(224,66,35)" fg:x="91" fg:w="6"/><text x="18.5968%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="772" width="1.2097%" height="15" fill="rgb(221,13,50)" fg:x="91" fg:w="6"/><text x="18.5968%" y="782.50"></text></g><g><title><module> (sqlalchemy/engine/__init__.py:8) (6 samples, 1.21%)</title><rect x="18.3468%" y="788" width="1.2097%" height="15" fill="rgb(236,68,49)" fg:x="91" fg:w="6"/><text x="18.5968%" y="798.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.21%)</title><rect x="18.3468%" y="804" width="1.2097%" height="15" fill="rgb(229,146,28)" fg:x="91" fg:w="6"/><text x="18.5968%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="820" width="1.2097%" height="15" fill="rgb(225,31,38)" fg:x="91" fg:w="6"/><text x="18.5968%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="18.3468%" y="836" width="1.2097%" height="15" fill="rgb(250,208,3)" fg:x="91" fg:w="6"/><text x="18.5968%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="18.3468%" y="852" width="1.2097%" height="15" fill="rgb(246,54,23)" fg:x="91" fg:w="6"/><text x="18.5968%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="18.3468%" y="868" width="1.2097%" height="15" fill="rgb(243,76,11)" fg:x="91" fg:w="6"/><text x="18.5968%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="18.3468%" y="884" width="1.2097%" height="15" fill="rgb(245,21,50)" fg:x="91" fg:w="6"/><text x="18.5968%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="900" width="1.2097%" height="15" fill="rgb(228,9,43)" fg:x="91" fg:w="6"/><text x="18.5968%" y="910.50"></text></g><g><title><module> (sqlalchemy/engine/events.py:9) (6 samples, 1.21%)</title><rect x="18.3468%" y="916" width="1.2097%" height="15" fill="rgb(208,100,47)" fg:x="91" fg:w="6"/><text x="18.5968%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="18.3468%" y="932" width="1.2097%" height="15" fill="rgb(232,26,8)" fg:x="91" fg:w="6"/><text x="18.5968%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="18.3468%" y="948" width="1.2097%" height="15" fill="rgb(216,166,38)" fg:x="91" fg:w="6"/><text x="18.5968%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="18.3468%" y="964" width="1.2097%" height="15" fill="rgb(251,202,51)" fg:x="91" fg:w="6"/><text x="18.5968%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="18.3468%" y="980" width="1.2097%" height="15" fill="rgb(254,216,34)" fg:x="91" fg:w="6"/><text x="18.5968%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="996" width="1.2097%" height="15" fill="rgb(251,32,27)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1006.50"></text></g><g><title><module> (sqlalchemy/engine/base.py:7) (6 samples, 1.21%)</title><rect x="18.3468%" y="1012" width="1.2097%" height="15" fill="rgb(208,127,28)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="18.3468%" y="1028" width="1.2097%" height="15" fill="rgb(224,137,22)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="18.3468%" y="1044" width="1.2097%" height="15" fill="rgb(254,70,32)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="18.3468%" y="1060" width="1.2097%" height="15" fill="rgb(229,75,37)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="18.3468%" y="1076" width="1.2097%" height="15" fill="rgb(252,64,23)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="18.3468%" y="1092" width="1.2097%" height="15" fill="rgb(232,162,48)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1102.50"></text></g><g><title><module> (sqlalchemy/engine/interfaces.py:8) (6 samples, 1.21%)</title><rect x="18.3468%" y="1108" width="1.2097%" height="15" fill="rgb(246,160,12)" fg:x="91" fg:w="6"/><text x="18.5968%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="18.5484%" y="1124" width="1.0081%" height="15" fill="rgb(247,166,0)" fg:x="92" fg:w="5"/><text x="18.7984%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="18.5484%" y="1140" width="1.0081%" height="15" fill="rgb(249,219,21)" fg:x="92" fg:w="5"/><text x="18.7984%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="19.1532%" y="1156" width="0.4032%" height="15" fill="rgb(205,209,3)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="19.1532%" y="1172" width="0.4032%" height="15" fill="rgb(243,44,1)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1188" width="0.4032%" height="15" fill="rgb(206,159,16)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1198.50"></text></g><g><title><module> (sqlalchemy/pool/__init__.py:9) (2 samples, 0.40%)</title><rect x="19.1532%" y="1204" width="0.4032%" height="15" fill="rgb(244,77,30)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="19.1532%" y="1220" width="0.4032%" height="15" fill="rgb(218,69,12)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1236" width="0.4032%" height="15" fill="rgb(212,87,7)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="19.1532%" y="1252" width="0.4032%" height="15" fill="rgb(245,114,25)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="19.1532%" y="1268" width="0.4032%" height="15" fill="rgb(210,61,42)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="19.1532%" y="1284" width="0.4032%" height="15" fill="rgb(211,52,33)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="19.1532%" y="1300" width="0.4032%" height="15" fill="rgb(234,58,33)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1316" width="0.4032%" height="15" fill="rgb(220,115,36)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1326.50"></text></g><g><title><module> (sqlalchemy/pool/events.py:7) (2 samples, 0.40%)</title><rect x="19.1532%" y="1332" width="0.4032%" height="15" fill="rgb(243,153,54)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="19.1532%" y="1348" width="0.4032%" height="15" fill="rgb(251,47,18)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="19.1532%" y="1364" width="0.4032%" height="15" fill="rgb(242,102,42)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="19.1532%" y="1380" width="0.4032%" height="15" fill="rgb(234,31,38)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="19.1532%" y="1396" width="0.4032%" height="15" fill="rgb(221,117,51)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1412" width="0.4032%" height="15" fill="rgb(212,20,18)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1422.50"></text></g><g><title><module> (sqlalchemy/pool/base.py:9) (2 samples, 0.40%)</title><rect x="19.1532%" y="1428" width="0.4032%" height="15" fill="rgb(245,133,36)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1438.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="19.1532%" y="1444" width="0.4032%" height="15" fill="rgb(212,6,19)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1460" width="0.4032%" height="15" fill="rgb(218,1,36)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="19.1532%" y="1476" width="0.4032%" height="15" fill="rgb(246,84,54)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="19.1532%" y="1492" width="0.4032%" height="15" fill="rgb(242,110,6)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="19.1532%" y="1508" width="0.4032%" height="15" fill="rgb(214,47,5)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1518.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="19.1532%" y="1524" width="0.4032%" height="15" fill="rgb(218,159,25)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1534.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="19.1532%" y="1540" width="0.4032%" height="15" fill="rgb(215,211,28)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1550.50"></text></g><g><title><module> (sqlalchemy/log.py:9) (2 samples, 0.40%)</title><rect x="19.1532%" y="1556" width="0.4032%" height="15" fill="rgb(238,59,32)" fg:x="95" fg:w="2"/><text x="19.4032%" y="1566.50"></text></g><g><title>setLevel (logging/__init__.py:1417) (1 samples, 0.20%)</title><rect x="19.3548%" y="1572" width="0.2016%" height="15" fill="rgb(226,82,3)" fg:x="96" fg:w="1"/><text x="19.6048%" y="1582.50"></text></g><g><title>_clear_cache (logging/__init__.py:1372) (1 samples, 0.20%)</title><rect x="19.3548%" y="1588" width="0.2016%" height="15" fill="rgb(240,164,32)" fg:x="96" fg:w="1"/><text x="19.6048%" y="1598.50"></text></g><g><title><module> (dask_sql/input_utils/__init__.py:1) (7 samples, 1.41%)</title><rect x="18.3468%" y="500" width="1.4113%" height="15" fill="rgb(232,46,7)" fg:x="91" fg:w="7"/><text x="18.5968%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="18.3468%" y="516" width="1.4113%" height="15" fill="rgb(229,129,53)" fg:x="91" fg:w="7"/><text x="18.5968%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="18.3468%" y="532" width="1.4113%" height="15" fill="rgb(234,188,29)" fg:x="91" fg:w="7"/><text x="18.5968%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="18.3468%" y="548" width="1.4113%" height="15" fill="rgb(246,141,4)" fg:x="91" fg:w="7"/><text x="18.5968%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="18.3468%" y="564" width="1.4113%" height="15" fill="rgb(229,23,39)" fg:x="91" fg:w="7"/><text x="18.5968%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="19.5565%" y="580" width="0.2016%" height="15" fill="rgb(206,12,3)" fg:x="97" fg:w="1"/><text x="19.8065%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="19.5565%" y="596" width="0.2016%" height="15" fill="rgb(252,226,20)" fg:x="97" fg:w="1"/><text x="19.8065%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="19.7581%" y="564" width="0.2016%" height="15" fill="rgb(216,123,35)" fg:x="98" fg:w="1"/><text x="20.0081%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="19.7581%" y="580" width="0.2016%" height="15" fill="rgb(212,68,40)" fg:x="98" fg:w="1"/><text x="20.0081%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="19.7581%" y="596" width="0.2016%" height="15" fill="rgb(254,125,32)" fg:x="98" fg:w="1"/><text x="20.0081%" y="606.50"></text></g><g><title><module> (dask_sql/physical/rel/custom/__init__.py:1) (2 samples, 0.40%)</title><rect x="19.7581%" y="500" width="0.4032%" height="15" fill="rgb(253,97,22)" fg:x="98" fg:w="2"/><text x="20.0081%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="19.7581%" y="516" width="0.4032%" height="15" fill="rgb(241,101,14)" fg:x="98" fg:w="2"/><text x="20.0081%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="19.7581%" y="532" width="0.4032%" height="15" fill="rgb(238,103,29)" fg:x="98" fg:w="2"/><text x="20.0081%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="19.7581%" y="548" width="0.4032%" height="15" fill="rgb(233,195,47)" fg:x="98" fg:w="2"/><text x="20.0081%" y="558.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="19.9597%" y="564" width="0.2016%" height="15" fill="rgb(246,218,30)" fg:x="99" fg:w="1"/><text x="20.2097%" y="574.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.20%)</title><rect x="19.9597%" y="580" width="0.2016%" height="15" fill="rgb(219,145,47)" fg:x="99" fg:w="1"/><text x="20.2097%" y="590.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.20%)</title><rect x="19.9597%" y="596" width="0.2016%" height="15" fill="rgb(243,12,26)" fg:x="99" fg:w="1"/><text x="20.2097%" y="606.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.20%)</title><rect x="19.9597%" y="612" width="0.2016%" height="15" fill="rgb(214,87,16)" fg:x="99" fg:w="1"/><text x="20.2097%" y="622.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.20%)</title><rect x="19.9597%" y="628" width="0.2016%" height="15" fill="rgb(208,99,42)" fg:x="99" fg:w="1"/><text x="20.2097%" y="638.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.20%)</title><rect x="19.9597%" y="644" width="0.2016%" height="15" fill="rgb(253,99,2)" fg:x="99" fg:w="1"/><text x="20.2097%" y="654.50"></text></g><g><title><module> (dask_sql/context.py:1) (22 samples, 4.44%)</title><rect x="15.9274%" y="372" width="4.4355%" height="15" fill="rgb(220,168,23)" fg:x="79" fg:w="22"/><text x="16.1774%" y="382.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 2.02%)</title><rect x="18.3468%" y="388" width="2.0161%" height="15" fill="rgb(242,38,24)" fg:x="91" fg:w="10"/><text x="18.5968%" y="398.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="18.3468%" y="404" width="2.0161%" height="15" fill="rgb(225,182,9)" fg:x="91" fg:w="10"/><text x="18.5968%" y="414.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.02%)</title><rect x="18.3468%" y="420" width="2.0161%" height="15" fill="rgb(243,178,37)" fg:x="91" fg:w="10"/><text x="18.5968%" y="430.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.02%)</title><rect x="18.3468%" y="436" width="2.0161%" height="15" fill="rgb(232,139,19)" fg:x="91" fg:w="10"/><text x="18.5968%" y="446.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.02%)</title><rect x="18.3468%" y="452" width="2.0161%" height="15" fill="rgb(225,201,24)" fg:x="91" fg:w="10"/><text x="18.5968%" y="462.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.02%)</title><rect x="18.3468%" y="468" width="2.0161%" height="15" fill="rgb(221,47,46)" fg:x="91" fg:w="10"/><text x="18.5968%" y="478.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="18.3468%" y="484" width="2.0161%" height="15" fill="rgb(249,23,13)" fg:x="91" fg:w="10"/><text x="18.5968%" y="494.50">_..</text></g><g><title><module> (dask_sql/physical/rel/logical/__init__.py:1) (1 samples, 0.20%)</title><rect x="20.1613%" y="500" width="0.2016%" height="15" fill="rgb(219,9,5)" fg:x="100" fg:w="1"/><text x="20.4113%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="20.1613%" y="516" width="0.2016%" height="15" fill="rgb(254,171,16)" fg:x="100" fg:w="1"/><text x="20.4113%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="20.1613%" y="532" width="0.2016%" height="15" fill="rgb(230,171,20)" fg:x="100" fg:w="1"/><text x="20.4113%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="20.3629%" y="452" width="0.2016%" height="15" fill="rgb(210,71,41)" fg:x="101" fg:w="1"/><text x="20.6129%" y="462.50"></text></g><g><title><module> (pygments/lexer.py:1) (1 samples, 0.20%)</title><rect x="20.3629%" y="468" width="0.2016%" height="15" fill="rgb(206,173,20)" fg:x="101" fg:w="1"/><text x="20.6129%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="20.3629%" y="484" width="0.2016%" height="15" fill="rgb(233,88,34)" fg:x="101" fg:w="1"/><text x="20.6129%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="20.3629%" y="500" width="0.2016%" height="15" fill="rgb(223,209,46)" fg:x="101" fg:w="1"/><text x="20.6129%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="20.3629%" y="516" width="0.2016%" height="15" fill="rgb(250,43,18)" fg:x="101" fg:w="1"/><text x="20.6129%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="20.3629%" y="532" width="0.2016%" height="15" fill="rgb(208,13,10)" fg:x="101" fg:w="1"/><text x="20.6129%" y="542.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="20.3629%" y="548" width="0.2016%" height="15" fill="rgb(212,200,36)" fg:x="101" fg:w="1"/><text x="20.6129%" y="558.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="20.3629%" y="564" width="0.2016%" height="15" fill="rgb(225,90,30)" fg:x="101" fg:w="1"/><text x="20.6129%" y="574.50"></text></g><g><title><module> (dask_sql/cmd.py:1) (69 samples, 13.91%)</title><rect x="6.8548%" y="276" width="13.9113%" height="15" fill="rgb(236,182,39)" fg:x="34" fg:w="69"/><text x="7.1048%" y="286.50"><module> (dask_sql/cm..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (69 samples, 13.91%)</title><rect x="6.8548%" y="292" width="13.9113%" height="15" fill="rgb(212,144,35)" fg:x="34" fg:w="69"/><text x="7.1048%" y="302.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (69 samples, 13.91%)</title><rect x="6.8548%" y="308" width="13.9113%" height="15" fill="rgb(228,63,44)" fg:x="34" fg:w="69"/><text x="7.1048%" y="318.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (58 samples, 11.69%)</title><rect x="9.0726%" y="324" width="11.6935%" height="15" fill="rgb(228,109,6)" fg:x="45" fg:w="58"/><text x="9.3226%" y="334.50">_load_unlocked (<..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (58 samples, 11.69%)</title><rect x="9.0726%" y="340" width="11.6935%" height="15" fill="rgb(238,117,24)" fg:x="45" fg:w="58"/><text x="9.3226%" y="350.50">exec_module (<fro..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (58 samples, 11.69%)</title><rect x="9.0726%" y="356" width="11.6935%" height="15" fill="rgb(242,26,26)" fg:x="45" fg:w="58"/><text x="9.3226%" y="366.50">_call_with_frames..</text></g><g><title><module> (pygments/lexers/sql.py:1) (2 samples, 0.40%)</title><rect x="20.3629%" y="372" width="0.4032%" height="15" fill="rgb(221,92,48)" fg:x="101" fg:w="2"/><text x="20.6129%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="20.3629%" y="388" width="0.4032%" height="15" fill="rgb(209,209,32)" fg:x="101" fg:w="2"/><text x="20.6129%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="20.3629%" y="404" width="0.4032%" height="15" fill="rgb(221,70,22)" fg:x="101" fg:w="2"/><text x="20.6129%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="20.3629%" y="420" width="0.4032%" height="15" fill="rgb(248,145,5)" fg:x="101" fg:w="2"/><text x="20.6129%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="20.3629%" y="436" width="0.4032%" height="15" fill="rgb(226,116,26)" fg:x="101" fg:w="2"/><text x="20.6129%" y="446.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="20.5645%" y="452" width="0.2016%" height="15" fill="rgb(244,5,17)" fg:x="102" fg:w="1"/><text x="20.8145%" y="462.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="20.5645%" y="468" width="0.2016%" height="15" fill="rgb(252,159,33)" fg:x="102" fg:w="1"/><text x="20.8145%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="20.7661%" y="612" width="0.2016%" height="15" fill="rgb(206,71,0)" fg:x="103" fg:w="1"/><text x="21.0161%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="20.7661%" y="628" width="0.2016%" height="15" fill="rgb(233,118,54)" fg:x="103" fg:w="1"/><text x="21.0161%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="20.7661%" y="644" width="0.2016%" height="15" fill="rgb(234,83,48)" fg:x="103" fg:w="1"/><text x="21.0161%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="20.7661%" y="660" width="0.2016%" height="15" fill="rgb(228,3,54)" fg:x="103" fg:w="1"/><text x="21.0161%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="20.7661%" y="676" width="0.2016%" height="15" fill="rgb(226,155,13)" fg:x="103" fg:w="1"/><text x="21.0161%" y="686.50"></text></g><g><title><module> (fastapi/dependencies/utils.py:1) (1 samples, 0.20%)</title><rect x="20.7661%" y="692" width="0.2016%" height="15" fill="rgb(241,28,37)" fg:x="103" fg:w="1"/><text x="21.0161%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="20.7661%" y="708" width="0.2016%" height="15" fill="rgb(233,93,10)" fg:x="103" fg:w="1"/><text x="21.0161%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="20.7661%" y="724" width="0.2016%" height="15" fill="rgb(225,113,19)" fg:x="103" fg:w="1"/><text x="21.0161%" y="734.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="20.7661%" y="740" width="0.2016%" height="15" fill="rgb(241,2,18)" fg:x="103" fg:w="1"/><text x="21.0161%" y="750.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="20.7661%" y="756" width="0.2016%" height="15" fill="rgb(228,207,21)" fg:x="103" fg:w="1"/><text x="21.0161%" y="766.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="20.7661%" y="772" width="0.2016%" height="15" fill="rgb(213,211,35)" fg:x="103" fg:w="1"/><text x="21.0161%" y="782.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="20.7661%" y="788" width="0.2016%" height="15" fill="rgb(209,83,10)" fg:x="103" fg:w="1"/><text x="21.0161%" y="798.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="20.7661%" y="804" width="0.2016%" height="15" fill="rgb(209,164,1)" fg:x="103" fg:w="1"/><text x="21.0161%" y="814.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.20%)</title><rect x="21.1694%" y="1012" width="0.2016%" height="15" fill="rgb(213,184,43)" fg:x="105" fg:w="1"/><text x="21.4194%" y="1022.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="21.1694%" y="1028" width="0.2016%" height="15" fill="rgb(231,61,34)" fg:x="105" fg:w="1"/><text x="21.4194%" y="1038.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="21.1694%" y="1044" width="0.2016%" height="15" fill="rgb(235,75,3)" fg:x="105" fg:w="1"/><text x="21.4194%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="21.1694%" y="1060" width="0.2016%" height="15" fill="rgb(220,106,47)" fg:x="105" fg:w="1"/><text x="21.4194%" y="1070.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.20%)</title><rect x="21.1694%" y="1076" width="0.2016%" height="15" fill="rgb(210,196,33)" fg:x="105" fg:w="1"/><text x="21.4194%" y="1086.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.3710%" y="1684" width="0.2016%" height="15" fill="rgb(229,154,42)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1694.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.3710%" y="1700" width="0.2016%" height="15" fill="rgb(228,114,26)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1710.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.20%)</title><rect x="21.3710%" y="1716" width="0.2016%" height="15" fill="rgb(208,144,1)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1726.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.20%)</title><rect x="21.3710%" y="1732" width="0.2016%" height="15" fill="rgb(239,112,37)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1742.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.3710%" y="1748" width="0.2016%" height="15" fill="rgb(210,96,50)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1758.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (1 samples, 0.20%)</title><rect x="21.3710%" y="1764" width="0.2016%" height="15" fill="rgb(222,178,2)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1774.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (1 samples, 0.20%)</title><rect x="21.3710%" y="1780" width="0.2016%" height="15" fill="rgb(226,74,18)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1790.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (1 samples, 0.20%)</title><rect x="21.3710%" y="1796" width="0.2016%" height="15" fill="rgb(225,67,54)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1806.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.20%)</title><rect x="21.3710%" y="1812" width="0.2016%" height="15" fill="rgb(251,92,32)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1822.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.20%)</title><rect x="21.3710%" y="1828" width="0.2016%" height="15" fill="rgb(228,149,22)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1838.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.20%)</title><rect x="21.3710%" y="1844" width="0.2016%" height="15" fill="rgb(243,54,13)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1854.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.3710%" y="1860" width="0.2016%" height="15" fill="rgb(243,180,28)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1870.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.3710%" y="1876" width="0.2016%" height="15" fill="rgb(208,167,24)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1886.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.3710%" y="1892" width="0.2016%" height="15" fill="rgb(245,73,45)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1902.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.20%)</title><rect x="21.3710%" y="1908" width="0.2016%" height="15" fill="rgb(237,203,48)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1918.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.20%)</title><rect x="21.3710%" y="1924" width="0.2016%" height="15" fill="rgb(211,197,16)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1934.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.20%)</title><rect x="21.3710%" y="1940" width="0.2016%" height="15" fill="rgb(243,99,51)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1950.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.20%)</title><rect x="21.3710%" y="1956" width="0.2016%" height="15" fill="rgb(215,123,29)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1966.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.20%)</title><rect x="21.3710%" y="1972" width="0.2016%" height="15" fill="rgb(239,186,37)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1982.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.3710%" y="1988" width="0.2016%" height="15" fill="rgb(252,136,39)" fg:x="106" fg:w="1"/><text x="21.6210%" y="1998.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.20%)</title><rect x="21.3710%" y="2004" width="0.2016%" height="15" fill="rgb(223,213,32)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2014.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.3710%" y="2020" width="0.2016%" height="15" fill="rgb(233,115,5)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2030.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.3710%" y="2036" width="0.2016%" height="15" fill="rgb(207,226,44)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2046.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.20%)</title><rect x="21.3710%" y="2052" width="0.2016%" height="15" fill="rgb(208,126,0)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2062.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.20%)</title><rect x="21.3710%" y="2068" width="0.2016%" height="15" fill="rgb(244,66,21)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2078.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.20%)</title><rect x="21.3710%" y="2084" width="0.2016%" height="15" fill="rgb(222,97,12)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2094.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.20%)</title><rect x="21.3710%" y="2100" width="0.2016%" height="15" fill="rgb(219,213,19)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2110.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.3710%" y="2116" width="0.2016%" height="15" fill="rgb(252,169,30)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2126.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.3710%" y="2132" width="0.2016%" height="15" fill="rgb(206,32,51)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2142.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.20%)</title><rect x="21.3710%" y="2148" width="0.2016%" height="15" fill="rgb(250,172,42)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2158.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.20%)</title><rect x="21.3710%" y="2164" width="0.2016%" height="15" fill="rgb(209,34,43)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2174.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.3710%" y="2180" width="0.2016%" height="15" fill="rgb(223,11,35)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2190.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (1 samples, 0.20%)</title><rect x="21.3710%" y="2196" width="0.2016%" height="15" fill="rgb(251,219,26)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2206.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (1 samples, 0.20%)</title><rect x="21.3710%" y="2212" width="0.2016%" height="15" fill="rgb(231,119,3)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2222.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (1 samples, 0.20%)</title><rect x="21.3710%" y="2228" width="0.2016%" height="15" fill="rgb(216,97,11)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2238.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.20%)</title><rect x="21.3710%" y="2244" width="0.2016%" height="15" fill="rgb(223,59,9)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2254.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.20%)</title><rect x="21.3710%" y="2260" width="0.2016%" height="15" fill="rgb(233,93,31)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2270.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.20%)</title><rect x="21.3710%" y="2276" width="0.2016%" height="15" fill="rgb(239,81,33)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2286.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.3710%" y="2292" width="0.2016%" height="15" fill="rgb(213,120,34)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2302.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.3710%" y="2308" width="0.2016%" height="15" fill="rgb(243,49,53)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2318.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.3710%" y="2324" width="0.2016%" height="15" fill="rgb(247,216,33)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2334.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.20%)</title><rect x="21.3710%" y="2340" width="0.2016%" height="15" fill="rgb(226,26,14)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2350.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.20%)</title><rect x="21.3710%" y="2356" width="0.2016%" height="15" fill="rgb(215,49,53)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2366.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.20%)</title><rect x="21.3710%" y="2372" width="0.2016%" height="15" fill="rgb(245,162,40)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2382.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.20%)</title><rect x="21.3710%" y="2388" width="0.2016%" height="15" fill="rgb(229,68,17)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2398.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.20%)</title><rect x="21.3710%" y="2404" width="0.2016%" height="15" fill="rgb(213,182,10)" fg:x="106" fg:w="1"/><text x="21.6210%" y="2414.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.20%)</title><rect x="21.5726%" y="1700" width="0.2016%" height="15" fill="rgb(245,125,30)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="21.5726%" y="1716" width="0.2016%" height="15" fill="rgb(232,202,2)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="21.5726%" y="1732" width="0.2016%" height="15" fill="rgb(237,140,51)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="21.5726%" y="1748" width="0.2016%" height="15" fill="rgb(236,157,25)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.20%)</title><rect x="21.5726%" y="1764" width="0.2016%" height="15" fill="rgb(219,209,0)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.20%)</title><rect x="21.5726%" y="1780" width="0.2016%" height="15" fill="rgb(240,116,54)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.20%)</title><rect x="21.5726%" y="1796" width="0.2016%" height="15" fill="rgb(216,10,36)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.20%)</title><rect x="21.5726%" y="1812" width="0.2016%" height="15" fill="rgb(222,72,44)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1822.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.20%)</title><rect x="21.5726%" y="1828" width="0.2016%" height="15" fill="rgb(232,159,9)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1838.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="21.5726%" y="1844" width="0.2016%" height="15" fill="rgb(210,39,32)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1854.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="21.5726%" y="1860" width="0.2016%" height="15" fill="rgb(216,194,45)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1870.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="21.5726%" y="1876" width="0.2016%" height="15" fill="rgb(218,18,35)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1886.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.20%)</title><rect x="21.5726%" y="1892" width="0.2016%" height="15" fill="rgb(207,83,51)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1902.50"></text></g><g><title>release (<frozen importlib._bootstrap>:112) (1 samples, 0.20%)</title><rect x="21.5726%" y="1908" width="0.2016%" height="15" fill="rgb(225,63,43)" fg:x="107" fg:w="1"/><text x="21.8226%" y="1918.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (3 samples, 0.60%)</title><rect x="21.3710%" y="1252" width="0.6048%" height="15" fill="rgb(207,57,36)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 0.60%)</title><rect x="21.3710%" y="1268" width="0.6048%" height="15" fill="rgb(216,99,33)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.60%)</title><rect x="21.3710%" y="1284" width="0.6048%" height="15" fill="rgb(225,42,16)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.60%)</title><rect x="21.3710%" y="1300" width="0.6048%" height="15" fill="rgb(220,201,45)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.60%)</title><rect x="21.3710%" y="1316" width="0.6048%" height="15" fill="rgb(225,33,4)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.60%)</title><rect x="21.3710%" y="1332" width="0.6048%" height="15" fill="rgb(224,33,50)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.60%)</title><rect x="21.3710%" y="1348" width="0.6048%" height="15" fill="rgb(246,198,51)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.60%)</title><rect x="21.3710%" y="1364" width="0.6048%" height="15" fill="rgb(205,22,4)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.60%)</title><rect x="21.3710%" y="1380" width="0.6048%" height="15" fill="rgb(206,3,8)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.60%)</title><rect x="21.3710%" y="1396" width="0.6048%" height="15" fill="rgb(251,23,15)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.60%)</title><rect x="21.3710%" y="1412" width="0.6048%" height="15" fill="rgb(252,88,28)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.60%)</title><rect x="21.3710%" y="1428" width="0.6048%" height="15" fill="rgb(212,127,14)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.60%)</title><rect x="21.3710%" y="1444" width="0.6048%" height="15" fill="rgb(247,145,37)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.60%)</title><rect x="21.3710%" y="1460" width="0.6048%" height="15" fill="rgb(209,117,53)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.60%)</title><rect x="21.3710%" y="1476" width="0.6048%" height="15" fill="rgb(212,90,42)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.60%)</title><rect x="21.3710%" y="1492" width="0.6048%" height="15" fill="rgb(218,164,37)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.60%)</title><rect x="21.3710%" y="1508" width="0.6048%" height="15" fill="rgb(246,65,34)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.60%)</title><rect x="21.3710%" y="1524" width="0.6048%" height="15" fill="rgb(231,100,33)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1534.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.60%)</title><rect x="21.3710%" y="1540" width="0.6048%" height="15" fill="rgb(228,126,14)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.60%)</title><rect x="21.3710%" y="1556" width="0.6048%" height="15" fill="rgb(215,173,21)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 0.60%)</title><rect x="21.3710%" y="1572" width="0.6048%" height="15" fill="rgb(210,6,40)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.60%)</title><rect x="21.3710%" y="1588" width="0.6048%" height="15" fill="rgb(212,48,18)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.60%)</title><rect x="21.3710%" y="1604" width="0.6048%" height="15" fill="rgb(230,214,11)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.60%)</title><rect x="21.3710%" y="1620" width="0.6048%" height="15" fill="rgb(254,105,39)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.60%)</title><rect x="21.3710%" y="1636" width="0.6048%" height="15" fill="rgb(245,158,5)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.60%)</title><rect x="21.3710%" y="1652" width="0.6048%" height="15" fill="rgb(249,208,11)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.60%)</title><rect x="21.3710%" y="1668" width="0.6048%" height="15" fill="rgb(210,39,28)" fg:x="106" fg:w="3"/><text x="21.6210%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.40%)</title><rect x="21.5726%" y="1684" width="0.4032%" height="15" fill="rgb(211,56,53)" fg:x="107" fg:w="2"/><text x="21.8226%" y="1694.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.20%)</title><rect x="21.7742%" y="1700" width="0.2016%" height="15" fill="rgb(226,201,30)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1710.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.20%)</title><rect x="21.7742%" y="1716" width="0.2016%" height="15" fill="rgb(239,101,34)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1726.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.20%)</title><rect x="21.7742%" y="1732" width="0.2016%" height="15" fill="rgb(226,209,5)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1742.50"></text></g><g><title>_signature_bound_method (inspect.py:1840) (1 samples, 0.20%)</title><rect x="21.7742%" y="1748" width="0.2016%" height="15" fill="rgb(250,105,47)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1758.50"></text></g><g><title>replace (inspect.py:2873) (1 samples, 0.20%)</title><rect x="21.7742%" y="1764" width="0.2016%" height="15" fill="rgb(230,72,3)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1774.50"></text></g><g><title>__init__ (inspect.py:2781) (1 samples, 0.20%)</title><rect x="21.7742%" y="1780" width="0.2016%" height="15" fill="rgb(232,218,39)" fg:x="108" fg:w="1"/><text x="22.0242%" y="1790.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.01%)</title><rect x="21.3710%" y="1156" width="1.0081%" height="15" fill="rgb(248,166,6)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.01%)</title><rect x="21.3710%" y="1172" width="1.0081%" height="15" fill="rgb(247,89,20)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1182.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.01%)</title><rect x="21.3710%" y="1188" width="1.0081%" height="15" fill="rgb(248,130,54)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1198.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (5 samples, 1.01%)</title><rect x="21.3710%" y="1204" width="1.0081%" height="15" fill="rgb(234,196,4)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1214.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.01%)</title><rect x="21.3710%" y="1220" width="1.0081%" height="15" fill="rgb(250,143,31)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1230.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (5 samples, 1.01%)</title><rect x="21.3710%" y="1236" width="1.0081%" height="15" fill="rgb(211,110,34)" fg:x="106" fg:w="5"/><text x="21.6210%" y="1246.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (2 samples, 0.40%)</title><rect x="21.9758%" y="1252" width="0.4032%" height="15" fill="rgb(215,124,48)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (2 samples, 0.40%)</title><rect x="21.9758%" y="1268" width="0.4032%" height="15" fill="rgb(216,46,13)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.40%)</title><rect x="21.9758%" y="1284" width="0.4032%" height="15" fill="rgb(205,184,25)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.40%)</title><rect x="21.9758%" y="1300" width="0.4032%" height="15" fill="rgb(228,1,10)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.40%)</title><rect x="21.9758%" y="1316" width="0.4032%" height="15" fill="rgb(213,116,27)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.40%)</title><rect x="21.9758%" y="1332" width="0.4032%" height="15" fill="rgb(241,95,50)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.40%)</title><rect x="21.9758%" y="1348" width="0.4032%" height="15" fill="rgb(238,48,32)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.40%)</title><rect x="21.9758%" y="1364" width="0.4032%" height="15" fill="rgb(235,113,49)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.40%)</title><rect x="21.9758%" y="1380" width="0.4032%" height="15" fill="rgb(205,127,43)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.40%)</title><rect x="21.9758%" y="1396" width="0.4032%" height="15" fill="rgb(250,162,2)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.40%)</title><rect x="21.9758%" y="1412" width="0.4032%" height="15" fill="rgb(220,13,41)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.40%)</title><rect x="21.9758%" y="1428" width="0.4032%" height="15" fill="rgb(249,221,25)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.40%)</title><rect x="21.9758%" y="1444" width="0.4032%" height="15" fill="rgb(215,208,19)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.40%)</title><rect x="21.9758%" y="1460" width="0.4032%" height="15" fill="rgb(236,175,2)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.40%)</title><rect x="21.9758%" y="1476" width="0.4032%" height="15" fill="rgb(241,52,2)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.40%)</title><rect x="21.9758%" y="1492" width="0.4032%" height="15" fill="rgb(248,140,14)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.40%)</title><rect x="21.9758%" y="1508" width="0.4032%" height="15" fill="rgb(253,22,42)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.40%)</title><rect x="21.9758%" y="1524" width="0.4032%" height="15" fill="rgb(234,61,47)" fg:x="109" fg:w="2"/><text x="22.2258%" y="1534.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.20%)</title><rect x="22.1774%" y="1540" width="0.2016%" height="15" fill="rgb(208,226,15)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.20%)</title><rect x="22.1774%" y="1556" width="0.2016%" height="15" fill="rgb(217,221,4)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.20%)</title><rect x="22.1774%" y="1572" width="0.2016%" height="15" fill="rgb(212,174,34)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1582.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.20%)</title><rect x="22.1774%" y="1588" width="0.2016%" height="15" fill="rgb(253,83,4)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1598.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.20%)</title><rect x="22.1774%" y="1604" width="0.2016%" height="15" fill="rgb(250,195,49)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1614.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.20%)</title><rect x="22.1774%" y="1620" width="0.2016%" height="15" fill="rgb(241,192,25)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1630.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.20%)</title><rect x="22.1774%" y="1636" width="0.2016%" height="15" fill="rgb(208,124,10)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1646.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.20%)</title><rect x="22.1774%" y="1652" width="0.2016%" height="15" fill="rgb(222,33,0)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1662.50"></text></g><g><title>__repr__ (typing.py:786) (1 samples, 0.20%)</title><rect x="22.1774%" y="1668" width="0.2016%" height="15" fill="rgb(234,209,28)" fg:x="110" fg:w="1"/><text x="22.4274%" y="1678.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.20%)</title><rect x="22.3790%" y="1172" width="0.2016%" height="15" fill="rgb(224,11,23)" fg:x="111" fg:w="1"/><text x="22.6290%" y="1182.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.20%)</title><rect x="22.3790%" y="1188" width="0.2016%" height="15" fill="rgb(232,99,1)" fg:x="111" fg:w="1"/><text x="22.6290%" y="1198.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.20%)</title><rect x="22.3790%" y="1204" width="0.2016%" height="15" fill="rgb(237,95,45)" fg:x="111" fg:w="1"/><text x="22.6290%" y="1214.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.20%)</title><rect x="22.3790%" y="1220" width="0.2016%" height="15" fill="rgb(208,109,11)" fg:x="111" fg:w="1"/><text x="22.6290%" y="1230.50"></text></g><g><title>get_origin (typing_extensions.py:1194) (1 samples, 0.20%)</title><rect x="22.3790%" y="1236" width="0.2016%" height="15" fill="rgb(216,190,48)" fg:x="111" fg:w="1"/><text x="22.6290%" y="1246.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.20%)</title><rect x="22.5806%" y="1396" width="0.2016%" height="15" fill="rgb(251,171,36)" fg:x="112" fg:w="1"/><text x="22.8306%" y="1406.50"></text></g><g><title>path_schema_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:213) (1 samples, 0.20%)</title><rect x="22.5806%" y="1412" width="0.2016%" height="15" fill="rgb(230,62,22)" fg:x="112" fg:w="1"/><text x="22.8306%" y="1422.50"></text></g><g><title>_get_args_resolving_forward_refs (pydantic/_internal/_generate_schema.py:698) (1 samples, 0.20%)</title><rect x="22.7823%" y="1428" width="0.2016%" height="15" fill="rgb(225,114,35)" fg:x="113" fg:w="1"/><text x="23.0323%" y="1438.50"></text></g><g><title><listcomp> (pydantic/_internal/_generate_schema.py:701) (1 samples, 0.20%)</title><rect x="22.7823%" y="1444" width="0.2016%" height="15" fill="rgb(215,118,42)" fg:x="113" fg:w="1"/><text x="23.0323%" y="1454.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (2 samples, 0.40%)</title><rect x="22.9839%" y="1540" width="0.4032%" height="15" fill="rgb(243,119,21)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (2 samples, 0.40%)</title><rect x="22.9839%" y="1556" width="0.4032%" height="15" fill="rgb(252,177,53)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.40%)</title><rect x="22.9839%" y="1572" width="0.4032%" height="15" fill="rgb(237,209,29)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.40%)</title><rect x="22.9839%" y="1588" width="0.4032%" height="15" fill="rgb(212,65,23)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.40%)</title><rect x="22.9839%" y="1604" width="0.4032%" height="15" fill="rgb(230,222,46)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.40%)</title><rect x="22.9839%" y="1620" width="0.4032%" height="15" fill="rgb(215,135,32)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.40%)</title><rect x="22.9839%" y="1636" width="0.4032%" height="15" fill="rgb(246,101,22)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.40%)</title><rect x="22.9839%" y="1652" width="0.4032%" height="15" fill="rgb(206,107,13)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.40%)</title><rect x="22.9839%" y="1668" width="0.4032%" height="15" fill="rgb(250,100,44)" fg:x="114" fg:w="2"/><text x="23.2339%" y="1678.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="23.1855%" y="1684" width="0.2016%" height="15" fill="rgb(231,147,38)" fg:x="115" fg:w="1"/><text x="23.4355%" y="1694.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="23.1855%" y="1700" width="0.2016%" height="15" fill="rgb(229,8,40)" fg:x="115" fg:w="1"/><text x="23.4355%" y="1710.50"></text></g><g><title>wrapper (pydantic/_migration.py:262) (1 samples, 0.20%)</title><rect x="23.1855%" y="1716" width="0.2016%" height="15" fill="rgb(221,135,30)" fg:x="115" fg:w="1"/><text x="23.4355%" y="1726.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.60%)</title><rect x="22.9839%" y="1492" width="0.6048%" height="15" fill="rgb(249,193,18)" fg:x="114" fg:w="3"/><text x="23.2339%" y="1502.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.60%)</title><rect x="22.9839%" y="1508" width="0.6048%" height="15" fill="rgb(209,133,39)" fg:x="114" fg:w="3"/><text x="23.2339%" y="1518.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (3 samples, 0.60%)</title><rect x="22.9839%" y="1524" width="0.6048%" height="15" fill="rgb(232,100,14)" fg:x="114" fg:w="3"/><text x="23.2339%" y="1534.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (1 samples, 0.20%)</title><rect x="23.3871%" y="1540" width="0.2016%" height="15" fill="rgb(224,185,1)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (1 samples, 0.20%)</title><rect x="23.3871%" y="1556" width="0.2016%" height="15" fill="rgb(223,139,8)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.20%)</title><rect x="23.3871%" y="1572" width="0.2016%" height="15" fill="rgb(232,213,38)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.20%)</title><rect x="23.3871%" y="1588" width="0.2016%" height="15" fill="rgb(207,94,22)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.20%)</title><rect x="23.3871%" y="1604" width="0.2016%" height="15" fill="rgb(219,183,54)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.20%)</title><rect x="23.3871%" y="1620" width="0.2016%" height="15" fill="rgb(216,185,54)" fg:x="116" fg:w="1"/><text x="23.6371%" y="1630.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.81%)</title><rect x="22.9839%" y="1444" width="0.8065%" height="15" fill="rgb(254,217,39)" fg:x="114" fg:w="4"/><text x="23.2339%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.81%)</title><rect x="22.9839%" y="1460" width="0.8065%" height="15" fill="rgb(240,178,23)" fg:x="114" fg:w="4"/><text x="23.2339%" y="1470.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 0.81%)</title><rect x="22.9839%" y="1476" width="0.8065%" height="15" fill="rgb(218,11,47)" fg:x="114" fg:w="4"/><text x="23.2339%" y="1486.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.20%)</title><rect x="23.5887%" y="1492" width="0.2016%" height="15" fill="rgb(218,51,51)" fg:x="117" fg:w="1"/><text x="23.8387%" y="1502.50"></text></g><g><title>sequence_like_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:392) (1 samples, 0.20%)</title><rect x="23.5887%" y="1508" width="0.2016%" height="15" fill="rgb(238,126,27)" fg:x="117" fg:w="1"/><text x="23.8387%" y="1518.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (7 samples, 1.41%)</title><rect x="22.5806%" y="1300" width="1.4113%" height="15" fill="rgb(249,202,22)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1310.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (7 samples, 1.41%)</title><rect x="22.5806%" y="1316" width="1.4113%" height="15" fill="rgb(254,195,49)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1326.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (7 samples, 1.41%)</title><rect x="22.5806%" y="1332" width="1.4113%" height="15" fill="rgb(208,123,14)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1342.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (7 samples, 1.41%)</title><rect x="22.5806%" y="1348" width="1.4113%" height="15" fill="rgb(224,200,8)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1358.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (7 samples, 1.41%)</title><rect x="22.5806%" y="1364" width="1.4113%" height="15" fill="rgb(217,61,36)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1374.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (7 samples, 1.41%)</title><rect x="22.5806%" y="1380" width="1.4113%" height="15" fill="rgb(206,35,45)" fg:x="112" fg:w="7"/><text x="22.8306%" y="1390.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (6 samples, 1.21%)</title><rect x="22.7823%" y="1396" width="1.2097%" height="15" fill="rgb(217,65,33)" fg:x="113" fg:w="6"/><text x="23.0323%" y="1406.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (6 samples, 1.21%)</title><rect x="22.7823%" y="1412" width="1.2097%" height="15" fill="rgb(222,158,48)" fg:x="113" fg:w="6"/><text x="23.0323%" y="1422.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.01%)</title><rect x="22.9839%" y="1428" width="1.0081%" height="15" fill="rgb(254,2,54)" fg:x="114" fg:w="5"/><text x="23.2339%" y="1438.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.20%)</title><rect x="23.7903%" y="1444" width="0.2016%" height="15" fill="rgb(250,143,38)" fg:x="118" fg:w="1"/><text x="24.0403%" y="1454.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.20%)</title><rect x="23.7903%" y="1460" width="0.2016%" height="15" fill="rgb(248,25,0)" fg:x="118" fg:w="1"/><text x="24.0403%" y="1470.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.20%)</title><rect x="23.7903%" y="1476" width="0.2016%" height="15" fill="rgb(206,152,27)" fg:x="118" fg:w="1"/><text x="24.0403%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="23.9919%" y="1300" width="0.2016%" height="15" fill="rgb(240,77,30)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1310.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.20%)</title><rect x="23.9919%" y="1316" width="0.2016%" height="15" fill="rgb(231,5,3)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1326.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="23.9919%" y="1332" width="0.2016%" height="15" fill="rgb(207,226,32)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1342.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="23.9919%" y="1348" width="0.2016%" height="15" fill="rgb(222,207,47)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="23.9919%" y="1364" width="0.2016%" height="15" fill="rgb(229,115,45)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1374.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.20%)</title><rect x="23.9919%" y="1380" width="0.2016%" height="15" fill="rgb(224,191,6)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1390.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.20%)</title><rect x="23.9919%" y="1396" width="0.2016%" height="15" fill="rgb(230,227,24)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1406.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.20%)</title><rect x="23.9919%" y="1412" width="0.2016%" height="15" fill="rgb(228,80,19)" fg:x="119" fg:w="1"/><text x="24.2419%" y="1422.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (15 samples, 3.02%)</title><rect x="21.3710%" y="1012" width="3.0242%" height="15" fill="rgb(247,229,0)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1022.50">_ap..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (15 samples, 3.02%)</title><rect x="21.3710%" y="1028" width="3.0242%" height="15" fill="rgb(237,194,15)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1038.50">__c..</text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (15 samples, 3.02%)</title><rect x="21.3710%" y="1044" width="3.0242%" height="15" fill="rgb(219,203,20)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1054.50">inn..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (15 samples, 3.02%)</title><rect x="21.3710%" y="1060" width="3.0242%" height="15" fill="rgb(234,128,8)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1070.50">_ge..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (15 samples, 3.02%)</title><rect x="21.3710%" y="1076" width="3.0242%" height="15" fill="rgb(248,202,8)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1086.50">_ge..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (15 samples, 3.02%)</title><rect x="21.3710%" y="1092" width="3.0242%" height="15" fill="rgb(206,104,37)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1102.50">mat..</text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (15 samples, 3.02%)</title><rect x="21.3710%" y="1108" width="3.0242%" height="15" fill="rgb(223,8,27)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1118.50">_ma..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (15 samples, 3.02%)</title><rect x="21.3710%" y="1124" width="3.0242%" height="15" fill="rgb(216,217,28)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1134.50">_un..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (15 samples, 3.02%)</title><rect x="21.3710%" y="1140" width="3.0242%" height="15" fill="rgb(249,199,1)" fg:x="106" fg:w="15"/><text x="21.6210%" y="1150.50">gen..</text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (10 samples, 2.02%)</title><rect x="22.3790%" y="1156" width="2.0161%" height="15" fill="rgb(240,85,17)" fg:x="111" fg:w="10"/><text x="22.6290%" y="1166.50">_..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (9 samples, 1.81%)</title><rect x="22.5806%" y="1172" width="1.8145%" height="15" fill="rgb(206,108,45)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1182.50">_..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (9 samples, 1.81%)</title><rect x="22.5806%" y="1188" width="1.8145%" height="15" fill="rgb(245,210,41)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1198.50">_..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (9 samples, 1.81%)</title><rect x="22.5806%" y="1204" width="1.8145%" height="15" fill="rgb(206,13,37)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1214.50">_..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (9 samples, 1.81%)</title><rect x="22.5806%" y="1220" width="1.8145%" height="15" fill="rgb(250,61,18)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1230.50">_..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (9 samples, 1.81%)</title><rect x="22.5806%" y="1236" width="1.8145%" height="15" fill="rgb(235,172,48)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1246.50">_..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (9 samples, 1.81%)</title><rect x="22.5806%" y="1252" width="1.8145%" height="15" fill="rgb(249,201,17)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1262.50"><..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (9 samples, 1.81%)</title><rect x="22.5806%" y="1268" width="1.8145%" height="15" fill="rgb(219,208,6)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1278.50">_..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (9 samples, 1.81%)</title><rect x="22.5806%" y="1284" width="1.8145%" height="15" fill="rgb(248,31,23)" fg:x="112" fg:w="9"/><text x="22.8306%" y="1294.50">_..</text></g><g><title>eval_type_lenient (pydantic/_internal/_typing_extra.py:216) (1 samples, 0.20%)</title><rect x="24.1935%" y="1300" width="0.2016%" height="15" fill="rgb(245,15,42)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1310.50"></text></g><g><title>eval_type_backport (pydantic/_internal/_typing_extra.py:230) (1 samples, 0.20%)</title><rect x="24.1935%" y="1316" width="0.2016%" height="15" fill="rgb(222,217,39)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1326.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.20%)</title><rect x="24.1935%" y="1332" width="0.2016%" height="15" fill="rgb(210,219,27)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1342.50"></text></g><g><title><genexpr> (typing.py:294) (1 samples, 0.20%)</title><rect x="24.1935%" y="1348" width="0.2016%" height="15" fill="rgb(252,166,36)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1358.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.20%)</title><rect x="24.1935%" y="1364" width="0.2016%" height="15" fill="rgb(245,132,34)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1374.50"></text></g><g><title>copy_with (typing.py:783) (1 samples, 0.20%)</title><rect x="24.1935%" y="1380" width="0.2016%" height="15" fill="rgb(236,54,3)" fg:x="120" fg:w="1"/><text x="24.4435%" y="1390.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="24.3952%" y="1012" width="0.2016%" height="15" fill="rgb(241,173,43)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1022.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.20%)</title><rect x="24.3952%" y="1028" width="0.2016%" height="15" fill="rgb(215,190,9)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="24.3952%" y="1044" width="0.2016%" height="15" fill="rgb(242,101,16)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="24.3952%" y="1060" width="0.2016%" height="15" fill="rgb(223,190,21)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="24.3952%" y="1076" width="0.2016%" height="15" fill="rgb(215,228,25)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1086.50"></text></g><g><title>cb (<frozen importlib._bootstrap>:185) (1 samples, 0.20%)</title><rect x="24.3952%" y="1092" width="0.2016%" height="15" fill="rgb(225,36,22)" fg:x="121" fg:w="1"/><text x="24.6452%" y="1102.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (19 samples, 3.83%)</title><rect x="20.9677%" y="868" width="3.8306%" height="15" fill="rgb(251,106,46)" fg:x="104" fg:w="19"/><text x="21.2177%" y="878.50">__ge..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (19 samples, 3.83%)</title><rect x="20.9677%" y="884" width="3.8306%" height="15" fill="rgb(208,90,1)" fg:x="104" fg:w="19"/><text x="21.2177%" y="894.50">__ca..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (19 samples, 3.83%)</title><rect x="20.9677%" y="900" width="3.8306%" height="15" fill="rgb(243,10,4)" fg:x="104" fg:w="19"/><text x="21.2177%" y="910.50">gene..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (19 samples, 3.83%)</title><rect x="20.9677%" y="916" width="3.8306%" height="15" fill="rgb(212,137,27)" fg:x="104" fg:w="19"/><text x="21.2177%" y="926.50">_gen..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (19 samples, 3.83%)</title><rect x="20.9677%" y="932" width="3.8306%" height="15" fill="rgb(231,220,49)" fg:x="104" fg:w="19"/><text x="21.2177%" y="942.50">_gen..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (19 samples, 3.83%)</title><rect x="20.9677%" y="948" width="3.8306%" height="15" fill="rgb(237,96,20)" fg:x="104" fg:w="19"/><text x="21.2177%" y="958.50">_mod..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (19 samples, 3.83%)</title><rect x="20.9677%" y="964" width="3.8306%" height="15" fill="rgb(239,229,30)" fg:x="104" fg:w="19"/><text x="21.2177%" y="974.50"><dic..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (19 samples, 3.83%)</title><rect x="20.9677%" y="980" width="3.8306%" height="15" fill="rgb(219,65,33)" fg:x="104" fg:w="19"/><text x="21.2177%" y="990.50">_gen..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (19 samples, 3.83%)</title><rect x="20.9677%" y="996" width="3.8306%" height="15" fill="rgb(243,134,7)" fg:x="104" fg:w="19"/><text x="21.2177%" y="1006.50">_com..</text></g><g><title>apply_each_item_validators (pydantic/_internal/_generate_schema.py:170) (1 samples, 0.20%)</title><rect x="24.5968%" y="1012" width="0.2016%" height="15" fill="rgb(216,177,54)" fg:x="122" fg:w="1"/><text x="24.8468%" y="1022.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="932" width="0.2016%" height="15" fill="rgb(211,160,20)" fg:x="124" fg:w="1"/><text x="25.2500%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="948" width="0.2016%" height="15" fill="rgb(239,85,39)" fg:x="124" fg:w="1"/><text x="25.2500%" y="958.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="964" width="0.2016%" height="15" fill="rgb(232,125,22)" fg:x="124" fg:w="1"/><text x="25.2500%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="980" width="0.2016%" height="15" fill="rgb(244,57,34)" fg:x="124" fg:w="1"/><text x="25.2500%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.0000%" y="996" width="0.2016%" height="15" fill="rgb(214,203,32)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1012" width="0.2016%" height="15" fill="rgb(207,58,43)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1022.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1028" width="0.2016%" height="15" fill="rgb(215,193,15)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1044" width="0.2016%" height="15" fill="rgb(232,15,44)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.0000%" y="1060" width="0.2016%" height="15" fill="rgb(212,3,48)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1076" width="0.2016%" height="15" fill="rgb(218,128,7)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1086.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1092" width="0.2016%" height="15" fill="rgb(226,216,39)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1108" width="0.2016%" height="15" fill="rgb(243,47,51)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.0000%" y="1124" width="0.2016%" height="15" fill="rgb(241,183,40)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1140" width="0.2016%" height="15" fill="rgb(231,217,32)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1150.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1156" width="0.2016%" height="15" fill="rgb(229,61,38)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1172" width="0.2016%" height="15" fill="rgb(225,210,5)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.0000%" y="1188" width="0.2016%" height="15" fill="rgb(231,79,45)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1204" width="0.2016%" height="15" fill="rgb(224,100,7)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1214.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1220" width="0.2016%" height="15" fill="rgb(241,198,18)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1236" width="0.2016%" height="15" fill="rgb(252,97,53)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1246.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.0000%" y="1252" width="0.2016%" height="15" fill="rgb(220,88,7)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1262.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1268" width="0.2016%" height="15" fill="rgb(213,176,14)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1278.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1284" width="0.2016%" height="15" fill="rgb(246,73,7)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1294.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1300" width="0.2016%" height="15" fill="rgb(245,64,36)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1310.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.0000%" y="1316" width="0.2016%" height="15" fill="rgb(245,80,10)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1326.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.0000%" y="1332" width="0.2016%" height="15" fill="rgb(232,107,50)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1342.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.20%)</title><rect x="25.0000%" y="1348" width="0.2016%" height="15" fill="rgb(253,3,0)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1358.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.0000%" y="1364" width="0.2016%" height="15" fill="rgb(212,99,53)" fg:x="124" fg:w="1"/><text x="25.2500%" y="1374.50"></text></g><g><title>apply_discriminators (pydantic/_internal/_discriminated_union.py:39) (2 samples, 0.40%)</title><rect x="25.0000%" y="884" width="0.4032%" height="15" fill="rgb(249,111,54)" fg:x="124" fg:w="2"/><text x="25.2500%" y="894.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (2 samples, 0.40%)</title><rect x="25.0000%" y="900" width="0.4032%" height="15" fill="rgb(249,55,30)" fg:x="124" fg:w="2"/><text x="25.2500%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (2 samples, 0.40%)</title><rect x="25.0000%" y="916" width="0.4032%" height="15" fill="rgb(237,47,42)" fg:x="124" fg:w="2"/><text x="25.2500%" y="926.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="932" width="0.2016%" height="15" fill="rgb(211,20,18)" fg:x="125" fg:w="1"/><text x="25.4516%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="948" width="0.2016%" height="15" fill="rgb(231,203,46)" fg:x="125" fg:w="1"/><text x="25.4516%" y="958.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="964" width="0.2016%" height="15" fill="rgb(237,142,3)" fg:x="125" fg:w="1"/><text x="25.4516%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="980" width="0.2016%" height="15" fill="rgb(241,107,1)" fg:x="125" fg:w="1"/><text x="25.4516%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="996" width="0.2016%" height="15" fill="rgb(229,83,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1012" width="0.2016%" height="15" fill="rgb(241,91,40)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1022.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1028" width="0.2016%" height="15" fill="rgb(225,3,45)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1044" width="0.2016%" height="15" fill="rgb(244,223,14)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.2016%" y="1060" width="0.2016%" height="15" fill="rgb(224,124,37)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1076" width="0.2016%" height="15" fill="rgb(251,171,30)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1086.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1092" width="0.2016%" height="15" fill="rgb(236,46,54)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1108" width="0.2016%" height="15" fill="rgb(245,213,5)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1124" width="0.2016%" height="15" fill="rgb(230,144,27)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1140" width="0.2016%" height="15" fill="rgb(220,86,6)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1150.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1156" width="0.2016%" height="15" fill="rgb(240,20,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1172" width="0.2016%" height="15" fill="rgb(217,89,34)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1188" width="0.2016%" height="15" fill="rgb(229,13,5)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1204" width="0.2016%" height="15" fill="rgb(244,67,35)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1214.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1220" width="0.2016%" height="15" fill="rgb(221,40,2)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1236" width="0.2016%" height="15" fill="rgb(237,157,21)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1246.50"></text></g><g><title>handle_dict_schema (pydantic/_internal/_core_utils.py:284) (1 samples, 0.20%)</title><rect x="25.2016%" y="1252" width="0.2016%" height="15" fill="rgb(222,94,11)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1262.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1268" width="0.2016%" height="15" fill="rgb(249,113,6)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1278.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1284" width="0.2016%" height="15" fill="rgb(238,137,36)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1294.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1300" width="0.2016%" height="15" fill="rgb(210,102,26)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1310.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.20%)</title><rect x="25.2016%" y="1316" width="0.2016%" height="15" fill="rgb(218,30,30)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1326.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1332" width="0.2016%" height="15" fill="rgb(214,67,26)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1342.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1348" width="0.2016%" height="15" fill="rgb(251,9,53)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1358.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1364" width="0.2016%" height="15" fill="rgb(228,204,25)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1374.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1380" width="0.2016%" height="15" fill="rgb(207,153,8)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1390.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1396" width="0.2016%" height="15" fill="rgb(242,9,16)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1406.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1412" width="0.2016%" height="15" fill="rgb(217,211,10)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1422.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1428" width="0.2016%" height="15" fill="rgb(219,228,52)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1438.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.2016%" y="1444" width="0.2016%" height="15" fill="rgb(231,92,29)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1454.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1460" width="0.2016%" height="15" fill="rgb(232,8,23)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1470.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1476" width="0.2016%" height="15" fill="rgb(216,211,34)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1486.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1492" width="0.2016%" height="15" fill="rgb(236,151,0)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1502.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1508" width="0.2016%" height="15" fill="rgb(209,168,3)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1518.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1524" width="0.2016%" height="15" fill="rgb(208,129,28)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1534.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1540" width="0.2016%" height="15" fill="rgb(229,78,22)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1550.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1556" width="0.2016%" height="15" fill="rgb(228,187,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1566.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1572" width="0.2016%" height="15" fill="rgb(240,119,24)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1582.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1588" width="0.2016%" height="15" fill="rgb(209,194,42)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1598.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1604" width="0.2016%" height="15" fill="rgb(247,200,46)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1614.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1620" width="0.2016%" height="15" fill="rgb(218,76,16)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1630.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1636" width="0.2016%" height="15" fill="rgb(225,21,48)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1646.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1652" width="0.2016%" height="15" fill="rgb(239,223,50)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1662.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1668" width="0.2016%" height="15" fill="rgb(244,45,21)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1678.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1684" width="0.2016%" height="15" fill="rgb(232,33,43)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1694.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.2016%" y="1700" width="0.2016%" height="15" fill="rgb(209,8,3)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1710.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1716" width="0.2016%" height="15" fill="rgb(214,25,53)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1726.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1732" width="0.2016%" height="15" fill="rgb(254,186,54)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1742.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1748" width="0.2016%" height="15" fill="rgb(208,174,49)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1758.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1764" width="0.2016%" height="15" fill="rgb(233,191,51)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1774.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1780" width="0.2016%" height="15" fill="rgb(222,134,10)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1790.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1796" width="0.2016%" height="15" fill="rgb(230,226,20)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1806.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1812" width="0.2016%" height="15" fill="rgb(251,111,25)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1822.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="1828" width="0.2016%" height="15" fill="rgb(224,40,46)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1838.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1844" width="0.2016%" height="15" fill="rgb(236,108,47)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1854.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1860" width="0.2016%" height="15" fill="rgb(234,93,0)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1870.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1876" width="0.2016%" height="15" fill="rgb(224,213,32)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1886.50"></text></g><g><title>handle_list_schema (pydantic/_internal/_core_utils.py:256) (1 samples, 0.20%)</title><rect x="25.2016%" y="1892" width="0.2016%" height="15" fill="rgb(251,11,48)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1902.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1908" width="0.2016%" height="15" fill="rgb(236,173,5)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1918.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1924" width="0.2016%" height="15" fill="rgb(230,95,12)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1934.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="1940" width="0.2016%" height="15" fill="rgb(232,209,1)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1950.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.20%)</title><rect x="25.2016%" y="1956" width="0.2016%" height="15" fill="rgb(232,6,1)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1966.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="1972" width="0.2016%" height="15" fill="rgb(210,224,50)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1982.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="1988" width="0.2016%" height="15" fill="rgb(228,127,35)" fg:x="125" fg:w="1"/><text x="25.4516%" y="1998.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2004" width="0.2016%" height="15" fill="rgb(245,102,45)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2014.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="2020" width="0.2016%" height="15" fill="rgb(214,1,49)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2030.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2036" width="0.2016%" height="15" fill="rgb(226,163,40)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2046.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2052" width="0.2016%" height="15" fill="rgb(239,212,28)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2062.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2068" width="0.2016%" height="15" fill="rgb(220,20,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2078.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.2016%" y="2084" width="0.2016%" height="15" fill="rgb(210,164,35)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2094.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2100" width="0.2016%" height="15" fill="rgb(248,109,41)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2110.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2116" width="0.2016%" height="15" fill="rgb(238,23,50)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2126.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2132" width="0.2016%" height="15" fill="rgb(211,48,49)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2142.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="2148" width="0.2016%" height="15" fill="rgb(223,36,21)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2158.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2164" width="0.2016%" height="15" fill="rgb(207,123,46)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2174.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2180" width="0.2016%" height="15" fill="rgb(240,218,32)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2190.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2196" width="0.2016%" height="15" fill="rgb(252,5,43)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2206.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="2212" width="0.2016%" height="15" fill="rgb(252,84,19)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2222.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2228" width="0.2016%" height="15" fill="rgb(243,152,39)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2238.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2244" width="0.2016%" height="15" fill="rgb(234,160,15)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2254.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2260" width="0.2016%" height="15" fill="rgb(237,34,20)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2270.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.20%)</title><rect x="25.2016%" y="2276" width="0.2016%" height="15" fill="rgb(229,97,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2286.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2292" width="0.2016%" height="15" fill="rgb(234,71,50)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2302.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2308" width="0.2016%" height="15" fill="rgb(253,155,4)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2318.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2324" width="0.2016%" height="15" fill="rgb(222,185,37)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2334.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="2340" width="0.2016%" height="15" fill="rgb(251,177,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2350.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2356" width="0.2016%" height="15" fill="rgb(250,179,40)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2366.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2372" width="0.2016%" height="15" fill="rgb(242,44,2)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2382.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2388" width="0.2016%" height="15" fill="rgb(216,177,13)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2398.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.20%)</title><rect x="25.2016%" y="2404" width="0.2016%" height="15" fill="rgb(216,106,43)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2414.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2420" width="0.2016%" height="15" fill="rgb(216,183,2)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2430.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2436" width="0.2016%" height="15" fill="rgb(249,75,3)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2446.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2452" width="0.2016%" height="15" fill="rgb(219,67,39)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2462.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.20%)</title><rect x="25.2016%" y="2468" width="0.2016%" height="15" fill="rgb(253,228,2)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2478.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.20%)</title><rect x="25.2016%" y="2484" width="0.2016%" height="15" fill="rgb(235,138,27)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2494.50"></text></g><g><title>count_refs (pydantic/_internal/_core_utils.py:452) (1 samples, 0.20%)</title><rect x="25.2016%" y="2500" width="0.2016%" height="15" fill="rgb(236,97,51)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2510.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.20%)</title><rect x="25.2016%" y="2516" width="0.2016%" height="15" fill="rgb(240,80,30)" fg:x="125" fg:w="1"/><text x="25.4516%" y="2526.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (3 samples, 0.60%)</title><rect x="25.4032%" y="884" width="0.6048%" height="15" fill="rgb(230,178,19)" fg:x="126" fg:w="3"/><text x="25.6532%" y="894.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (3 samples, 0.60%)</title><rect x="25.4032%" y="900" width="0.6048%" height="15" fill="rgb(210,190,27)" fg:x="126" fg:w="3"/><text x="25.6532%" y="910.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (3 samples, 0.60%)</title><rect x="25.4032%" y="916" width="0.6048%" height="15" fill="rgb(222,107,31)" fg:x="126" fg:w="3"/><text x="25.6532%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (3 samples, 0.60%)</title><rect x="25.4032%" y="932" width="0.6048%" height="15" fill="rgb(216,127,34)" fg:x="126" fg:w="3"/><text x="25.6532%" y="942.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (3 samples, 0.60%)</title><rect x="25.4032%" y="948" width="0.6048%" height="15" fill="rgb(234,116,52)" fg:x="126" fg:w="3"/><text x="25.6532%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (3 samples, 0.60%)</title><rect x="25.4032%" y="964" width="0.6048%" height="15" fill="rgb(222,124,15)" fg:x="126" fg:w="3"/><text x="25.6532%" y="974.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.40%)</title><rect x="25.6048%" y="980" width="0.4032%" height="15" fill="rgb(231,179,28)" fg:x="127" fg:w="2"/><text x="25.8548%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.40%)</title><rect x="25.6048%" y="996" width="0.4032%" height="15" fill="rgb(226,93,45)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1006.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.40%)</title><rect x="25.6048%" y="1012" width="0.4032%" height="15" fill="rgb(215,8,51)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.40%)</title><rect x="25.6048%" y="1028" width="0.4032%" height="15" fill="rgb(223,106,5)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1038.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.40%)</title><rect x="25.6048%" y="1044" width="0.4032%" height="15" fill="rgb(250,191,5)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.40%)</title><rect x="25.6048%" y="1060" width="0.4032%" height="15" fill="rgb(242,132,44)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1070.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.40%)</title><rect x="25.6048%" y="1076" width="0.4032%" height="15" fill="rgb(251,152,29)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.40%)</title><rect x="25.6048%" y="1092" width="0.4032%" height="15" fill="rgb(218,179,5)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1102.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.40%)</title><rect x="25.6048%" y="1108" width="0.4032%" height="15" fill="rgb(227,67,19)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.40%)</title><rect x="25.6048%" y="1124" width="0.4032%" height="15" fill="rgb(233,119,31)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1134.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.40%)</title><rect x="25.6048%" y="1140" width="0.4032%" height="15" fill="rgb(241,120,22)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.40%)</title><rect x="25.6048%" y="1156" width="0.4032%" height="15" fill="rgb(224,102,30)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.40%)</title><rect x="25.6048%" y="1172" width="0.4032%" height="15" fill="rgb(210,164,37)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.40%)</title><rect x="25.6048%" y="1188" width="0.4032%" height="15" fill="rgb(226,191,16)" fg:x="127" fg:w="2"/><text x="25.8548%" y="1198.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (8 samples, 1.61%)</title><rect x="24.7984%" y="868" width="1.6129%" height="15" fill="rgb(214,40,45)" fg:x="123" fg:w="8"/><text x="25.0484%" y="878.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (2 samples, 0.40%)</title><rect x="26.0081%" y="884" width="0.4032%" height="15" fill="rgb(244,29,26)" fg:x="129" fg:w="2"/><text x="26.2581%" y="894.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (28 samples, 5.65%)</title><rect x="20.9677%" y="852" width="5.6452%" height="15" fill="rgb(216,16,5)" fg:x="104" fg:w="28"/><text x="21.2177%" y="862.50">complet..</text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (1 samples, 0.20%)</title><rect x="26.4113%" y="868" width="0.2016%" height="15" fill="rgb(249,76,35)" fg:x="131" fg:w="1"/><text x="26.6613%" y="878.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (29 samples, 5.85%)</title><rect x="20.9677%" y="836" width="5.8468%" height="15" fill="rgb(207,11,44)" fg:x="104" fg:w="29"/><text x="21.2177%" y="846.50">__new__..</text></g><g><title>unpack_lenient_weakvaluedict (pydantic/_internal/_model_construction.py:610) (1 samples, 0.20%)</title><rect x="26.6129%" y="852" width="0.2016%" height="15" fill="rgb(228,190,49)" fg:x="132" fg:w="1"/><text x="26.8629%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="26.8145%" y="1188" width="0.2016%" height="15" fill="rgb(214,173,12)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="26.8145%" y="1204" width="0.2016%" height="15" fill="rgb(218,26,35)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="26.8145%" y="1220" width="0.2016%" height="15" fill="rgb(220,200,19)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="26.8145%" y="1236" width="0.2016%" height="15" fill="rgb(239,95,49)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1246.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="26.8145%" y="1252" width="0.2016%" height="15" fill="rgb(235,85,53)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1262.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="26.8145%" y="1268" width="0.2016%" height="15" fill="rgb(233,133,31)" fg:x="133" fg:w="1"/><text x="27.0645%" y="1278.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="26.8145%" y="1028" width="0.4032%" height="15" fill="rgb(218,25,20)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1038.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (2 samples, 0.40%)</title><rect x="26.8145%" y="1044" width="0.4032%" height="15" fill="rgb(252,210,38)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1054.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.40%)</title><rect x="26.8145%" y="1060" width="0.4032%" height="15" fill="rgb(242,134,21)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1070.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.40%)</title><rect x="26.8145%" y="1076" width="0.4032%" height="15" fill="rgb(213,28,48)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="26.8145%" y="1092" width="0.4032%" height="15" fill="rgb(250,196,2)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="26.8145%" y="1108" width="0.4032%" height="15" fill="rgb(227,5,17)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="26.8145%" y="1124" width="0.4032%" height="15" fill="rgb(221,226,24)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="26.8145%" y="1140" width="0.4032%" height="15" fill="rgb(211,5,48)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="26.8145%" y="1156" width="0.4032%" height="15" fill="rgb(219,150,6)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1166.50"></text></g><g><title><module> (pydantic/main.py:1) (2 samples, 0.40%)</title><rect x="26.8145%" y="1172" width="0.4032%" height="15" fill="rgb(251,46,16)" fg:x="133" fg:w="2"/><text x="27.0645%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="27.0161%" y="1188" width="0.2016%" height="15" fill="rgb(220,204,40)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="27.0161%" y="1204" width="0.2016%" height="15" fill="rgb(211,85,2)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="27.0161%" y="1220" width="0.2016%" height="15" fill="rgb(229,17,7)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="27.0161%" y="1236" width="0.2016%" height="15" fill="rgb(239,72,28)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="27.0161%" y="1252" width="0.2016%" height="15" fill="rgb(230,47,54)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="27.0161%" y="1268" width="0.2016%" height="15" fill="rgb(214,50,8)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="27.0161%" y="1284" width="0.2016%" height="15" fill="rgb(216,198,43)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1294.50"></text></g><g><title><module> (pydantic/_internal/_decorators.py:1) (1 samples, 0.20%)</title><rect x="27.0161%" y="1300" width="0.2016%" height="15" fill="rgb(234,20,35)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1310.50"></text></g><g><title>DecoratorInfos (pydantic/_internal/_decorators.py:397) (1 samples, 0.20%)</title><rect x="27.0161%" y="1316" width="0.2016%" height="15" fill="rgb(254,45,19)" fg:x="134" fg:w="1"/><text x="27.2661%" y="1326.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (6 samples, 1.21%)</title><rect x="27.2177%" y="1076" width="1.2097%" height="15" fill="rgb(219,14,44)" fg:x="135" fg:w="6"/><text x="27.4677%" y="1086.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (6 samples, 1.21%)</title><rect x="27.2177%" y="1092" width="1.2097%" height="15" fill="rgb(217,220,26)" fg:x="135" fg:w="6"/><text x="27.4677%" y="1102.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (7 samples, 1.41%)</title><rect x="27.2177%" y="1060" width="1.4113%" height="15" fill="rgb(213,158,28)" fg:x="135" fg:w="7"/><text x="27.4677%" y="1070.50"></text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (1 samples, 0.20%)</title><rect x="28.4274%" y="1076" width="0.2016%" height="15" fill="rgb(252,51,52)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1086.50"></text></g><g><title>get_plugins (pydantic/plugin/_loader.py:20) (1 samples, 0.20%)</title><rect x="28.4274%" y="1092" width="0.2016%" height="15" fill="rgb(246,89,16)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1102.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.20%)</title><rect x="28.4274%" y="1108" width="0.2016%" height="15" fill="rgb(216,158,49)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1118.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.20%)</title><rect x="28.4274%" y="1124" width="0.2016%" height="15" fill="rgb(236,107,19)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1134.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.20%)</title><rect x="28.4274%" y="1140" width="0.2016%" height="15" fill="rgb(228,185,30)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1150.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.20%)</title><rect x="28.4274%" y="1156" width="0.2016%" height="15" fill="rgb(246,134,8)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1166.50"></text></g><g><title>__fspath__ (pathlib.py:752) (1 samples, 0.20%)</title><rect x="28.4274%" y="1172" width="0.2016%" height="15" fill="rgb(214,143,50)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1182.50"></text></g><g><title>__str__ (pathlib.py:742) (1 samples, 0.20%)</title><rect x="28.4274%" y="1188" width="0.2016%" height="15" fill="rgb(228,75,8)" fg:x="141" fg:w="1"/><text x="28.6774%" y="1198.50"></text></g><g><title>_cmp_fn (dataclasses.py:575) (1 samples, 0.20%)</title><rect x="28.6290%" y="1300" width="0.2016%" height="15" fill="rgb(207,175,4)" fg:x="142" fg:w="1"/><text x="28.8790%" y="1310.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="28.6290%" y="1316" width="0.2016%" height="15" fill="rgb(205,108,24)" fg:x="142" fg:w="1"/><text x="28.8790%" y="1326.50"></text></g><g><title><module> (fastapi/exceptions.py:1) (11 samples, 2.22%)</title><rect x="26.8145%" y="1012" width="2.2177%" height="15" fill="rgb(244,120,49)" fg:x="133" fg:w="11"/><text x="27.0645%" y="1022.50"><..</text></g><g><title>create_model (pydantic/main.py:1397) (9 samples, 1.81%)</title><rect x="27.2177%" y="1028" width="1.8145%" height="15" fill="rgb(223,47,38)" fg:x="135" fg:w="9"/><text x="27.4677%" y="1038.50">c..</text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (9 samples, 1.81%)</title><rect x="27.2177%" y="1044" width="1.8145%" height="15" fill="rgb(229,179,11)" fg:x="135" fg:w="9"/><text x="27.4677%" y="1054.50">_..</text></g><g><title>inspect_namespace (pydantic/_internal/_model_construction.py:294) (2 samples, 0.40%)</title><rect x="28.6290%" y="1060" width="0.4032%" height="15" fill="rgb(231,122,1)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="28.6290%" y="1076" width="0.4032%" height="15" fill="rgb(245,119,9)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="28.6290%" y="1092" width="0.4032%" height="15" fill="rgb(241,163,25)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="28.6290%" y="1108" width="0.4032%" height="15" fill="rgb(217,214,3)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="28.6290%" y="1124" width="0.4032%" height="15" fill="rgb(240,86,28)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="28.6290%" y="1140" width="0.4032%" height="15" fill="rgb(215,47,9)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1150.50"></text></g><g><title><module> (pydantic/fields.py:1) (2 samples, 0.40%)</title><rect x="28.6290%" y="1156" width="0.4032%" height="15" fill="rgb(252,25,45)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="28.6290%" y="1172" width="0.4032%" height="15" fill="rgb(251,164,9)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="28.6290%" y="1188" width="0.4032%" height="15" fill="rgb(233,194,0)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="28.6290%" y="1204" width="0.4032%" height="15" fill="rgb(249,111,24)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="28.6290%" y="1220" width="0.4032%" height="15" fill="rgb(250,223,3)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="28.6290%" y="1236" width="0.4032%" height="15" fill="rgb(236,178,37)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1246.50"></text></g><g><title><module> (annotated_types/__init__.py:1) (2 samples, 0.40%)</title><rect x="28.6290%" y="1252" width="0.4032%" height="15" fill="rgb(241,158,50)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1262.50"></text></g><g><title>wrap (dataclasses.py:1012) (2 samples, 0.40%)</title><rect x="28.6290%" y="1268" width="0.4032%" height="15" fill="rgb(213,121,41)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1278.50"></text></g><g><title>_process_class (dataclasses.py:809) (2 samples, 0.40%)</title><rect x="28.6290%" y="1284" width="0.4032%" height="15" fill="rgb(240,92,3)" fg:x="142" fg:w="2"/><text x="28.8790%" y="1294.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.20%)</title><rect x="28.8306%" y="1300" width="0.2016%" height="15" fill="rgb(205,123,3)" fg:x="143" fg:w="1"/><text x="29.0806%" y="1310.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="28.8306%" y="1316" width="0.2016%" height="15" fill="rgb(205,97,47)" fg:x="143" fg:w="1"/><text x="29.0806%" y="1326.50"></text></g><g><title><module> (anyio/_core/_fileio.py:1) (1 samples, 0.20%)</title><rect x="29.0323%" y="1348" width="0.2016%" height="15" fill="rgb(247,152,14)" fg:x="144" fg:w="1"/><text x="29.2823%" y="1358.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.20%)</title><rect x="29.0323%" y="1364" width="0.2016%" height="15" fill="rgb(248,195,53)" fg:x="144" fg:w="1"/><text x="29.2823%" y="1374.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.20%)</title><rect x="29.0323%" y="1380" width="0.2016%" height="15" fill="rgb(226,201,16)" fg:x="144" fg:w="1"/><text x="29.2823%" y="1390.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.20%)</title><rect x="29.0323%" y="1396" width="0.2016%" height="15" fill="rgb(205,98,0)" fg:x="144" fg:w="1"/><text x="29.2823%" y="1406.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="29.0323%" y="1412" width="0.2016%" height="15" fill="rgb(214,191,48)" fg:x="144" fg:w="1"/><text x="29.2823%" y="1422.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.20%)</title><rect x="29.2339%" y="1460" width="0.2016%" height="15" fill="rgb(237,112,39)" fg:x="145" fg:w="1"/><text x="29.4839%" y="1470.50"></text></g><g><title>__init_subclass__ (typing.py:1007) (1 samples, 0.20%)</title><rect x="29.2339%" y="1476" width="0.2016%" height="15" fill="rgb(247,203,27)" fg:x="145" fg:w="1"/><text x="29.4839%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 2.82%)</title><rect x="26.8145%" y="836" width="2.8226%" height="15" fill="rgb(235,124,28)" fg:x="133" fg:w="14"/><text x="27.0645%" y="846.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 2.82%)</title><rect x="26.8145%" y="852" width="2.8226%" height="15" fill="rgb(208,207,46)" fg:x="133" fg:w="14"/><text x="27.0645%" y="862.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 2.82%)</title><rect x="26.8145%" y="868" width="2.8226%" height="15" fill="rgb(234,176,4)" fg:x="133" fg:w="14"/><text x="27.0645%" y="878.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 2.82%)</title><rect x="26.8145%" y="884" width="2.8226%" height="15" fill="rgb(230,133,28)" fg:x="133" fg:w="14"/><text x="27.0645%" y="894.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="26.8145%" y="900" width="2.8226%" height="15" fill="rgb(211,137,40)" fg:x="133" fg:w="14"/><text x="27.0645%" y="910.50">_c..</text></g><g><title><module> (fastapi/_compat.py:1) (14 samples, 2.82%)</title><rect x="26.8145%" y="916" width="2.8226%" height="15" fill="rgb(254,35,13)" fg:x="133" fg:w="14"/><text x="27.0645%" y="926.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 2.82%)</title><rect x="26.8145%" y="932" width="2.8226%" height="15" fill="rgb(225,49,51)" fg:x="133" fg:w="14"/><text x="27.0645%" y="942.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 2.82%)</title><rect x="26.8145%" y="948" width="2.8226%" height="15" fill="rgb(251,10,15)" fg:x="133" fg:w="14"/><text x="27.0645%" y="958.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 2.82%)</title><rect x="26.8145%" y="964" width="2.8226%" height="15" fill="rgb(228,207,15)" fg:x="133" fg:w="14"/><text x="27.0645%" y="974.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 2.82%)</title><rect x="26.8145%" y="980" width="2.8226%" height="15" fill="rgb(241,99,19)" fg:x="133" fg:w="14"/><text x="27.0645%" y="990.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="26.8145%" y="996" width="2.8226%" height="15" fill="rgb(207,104,49)" fg:x="133" fg:w="14"/><text x="27.0645%" y="1006.50">_c..</text></g><g><title><module> (starlette/datastructures.py:1) (3 samples, 0.60%)</title><rect x="29.0323%" y="1012" width="0.6048%" height="15" fill="rgb(234,99,18)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="29.0323%" y="1028" width="0.6048%" height="15" fill="rgb(213,191,49)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="29.0323%" y="1044" width="0.6048%" height="15" fill="rgb(210,226,19)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="29.0323%" y="1060" width="0.6048%" height="15" fill="rgb(229,97,18)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="29.0323%" y="1076" width="0.6048%" height="15" fill="rgb(211,167,15)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="29.0323%" y="1092" width="0.6048%" height="15" fill="rgb(210,169,34)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1102.50"></text></g><g><title><module> (starlette/concurrency.py:1) (3 samples, 0.60%)</title><rect x="29.0323%" y="1108" width="0.6048%" height="15" fill="rgb(241,121,31)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="29.0323%" y="1124" width="0.6048%" height="15" fill="rgb(232,40,11)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="29.0323%" y="1140" width="0.6048%" height="15" fill="rgb(205,86,26)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="29.0323%" y="1156" width="0.6048%" height="15" fill="rgb(231,126,28)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="29.0323%" y="1172" width="0.6048%" height="15" fill="rgb(219,221,18)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="29.0323%" y="1188" width="0.6048%" height="15" fill="rgb(211,40,0)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="29.0323%" y="1204" width="0.6048%" height="15" fill="rgb(239,85,43)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="29.0323%" y="1220" width="0.6048%" height="15" fill="rgb(231,55,21)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="29.0323%" y="1236" width="0.6048%" height="15" fill="rgb(225,184,43)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1246.50"></text></g><g><title><module> (anyio/__init__.py:1) (3 samples, 0.60%)</title><rect x="29.0323%" y="1252" width="0.6048%" height="15" fill="rgb(251,158,41)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="29.0323%" y="1268" width="0.6048%" height="15" fill="rgb(234,159,37)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="29.0323%" y="1284" width="0.6048%" height="15" fill="rgb(216,204,22)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="29.0323%" y="1300" width="0.6048%" height="15" fill="rgb(214,17,3)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="29.0323%" y="1316" width="0.6048%" height="15" fill="rgb(212,111,17)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="29.0323%" y="1332" width="0.6048%" height="15" fill="rgb(221,157,24)" fg:x="144" fg:w="3"/><text x="29.2823%" y="1342.50"></text></g><g><title><module> (anyio/_core/_streams.py:1) (2 samples, 0.40%)</title><rect x="29.2339%" y="1348" width="0.4032%" height="15" fill="rgb(252,16,13)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="29.2339%" y="1364" width="0.4032%" height="15" fill="rgb(221,62,2)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1374.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="29.2339%" y="1380" width="0.4032%" height="15" fill="rgb(247,87,22)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1390.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="29.2339%" y="1396" width="0.4032%" height="15" fill="rgb(215,73,9)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1406.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="29.2339%" y="1412" width="0.4032%" height="15" fill="rgb(207,175,33)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1422.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="29.2339%" y="1428" width="0.4032%" height="15" fill="rgb(243,129,54)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1438.50"></text></g><g><title><module> (anyio/streams/memory.py:1) (2 samples, 0.40%)</title><rect x="29.2339%" y="1444" width="0.4032%" height="15" fill="rgb(227,119,45)" fg:x="145" fg:w="2"/><text x="29.4839%" y="1454.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="29.4355%" y="1460" width="0.2016%" height="15" fill="rgb(205,109,36)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1470.50"></text></g><g><title>__class_getitem__ (typing.py:985) (1 samples, 0.20%)</title><rect x="29.4355%" y="1476" width="0.2016%" height="15" fill="rgb(205,6,39)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1486.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.20%)</title><rect x="29.4355%" y="1492" width="0.2016%" height="15" fill="rgb(221,32,16)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1502.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.20%)</title><rect x="29.4355%" y="1508" width="0.2016%" height="15" fill="rgb(228,144,50)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1518.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.20%)</title><rect x="29.4355%" y="1524" width="0.2016%" height="15" fill="rgb(229,201,53)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1534.50"></text></g><g><title>_is_dunder (typing.py:665) (1 samples, 0.20%)</title><rect x="29.4355%" y="1540" width="0.2016%" height="15" fill="rgb(249,153,27)" fg:x="146" fg:w="1"/><text x="29.6855%" y="1550.50"></text></g><g><title>_extract_get_pydantic_json_schema (pydantic/_internal/_generate_schema.py:2069) (1 samples, 0.20%)</title><rect x="29.6371%" y="1172" width="0.2016%" height="15" fill="rgb(227,106,25)" fg:x="147" fg:w="1"/><text x="29.8871%" y="1182.50"></text></g><g><title>__getattr__ (typing.py:706) (1 samples, 0.20%)</title><rect x="29.6371%" y="1188" width="0.2016%" height="15" fill="rgb(230,65,29)" fg:x="147" fg:w="1"/><text x="29.8871%" y="1198.50"></text></g><g><title>_is_dunder (typing.py:665) (1 samples, 0.20%)</title><rect x="29.6371%" y="1204" width="0.2016%" height="15" fill="rgb(221,57,46)" fg:x="147" fg:w="1"/><text x="29.8871%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="30.0403%" y="1556" width="0.2016%" height="15" fill="rgb(229,161,17)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1566.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.20%)</title><rect x="30.0403%" y="1572" width="0.2016%" height="15" fill="rgb(222,213,11)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1582.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.20%)</title><rect x="30.0403%" y="1588" width="0.2016%" height="15" fill="rgb(235,35,13)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1598.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.20%)</title><rect x="30.0403%" y="1604" width="0.2016%" height="15" fill="rgb(233,158,34)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1614.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="30.0403%" y="1620" width="0.2016%" height="15" fill="rgb(215,151,48)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1630.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:160) (1 samples, 0.20%)</title><rect x="30.0403%" y="1636" width="0.2016%" height="15" fill="rgb(229,84,14)" fg:x="149" fg:w="1"/><text x="30.2903%" y="1646.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.60%)</title><rect x="29.8387%" y="1220" width="0.6048%" height="15" fill="rgb(229,68,14)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1230.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.60%)</title><rect x="29.8387%" y="1236" width="0.6048%" height="15" fill="rgb(243,106,26)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1246.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (3 samples, 0.60%)</title><rect x="29.8387%" y="1252" width="0.6048%" height="15" fill="rgb(206,45,38)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1262.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (3 samples, 0.60%)</title><rect x="29.8387%" y="1268" width="0.6048%" height="15" fill="rgb(226,6,15)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 0.60%)</title><rect x="29.8387%" y="1284" width="0.6048%" height="15" fill="rgb(232,22,54)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1294.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.60%)</title><rect x="29.8387%" y="1300" width="0.6048%" height="15" fill="rgb(229,222,32)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1310.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.60%)</title><rect x="29.8387%" y="1316" width="0.6048%" height="15" fill="rgb(228,62,29)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1326.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.60%)</title><rect x="29.8387%" y="1332" width="0.6048%" height="15" fill="rgb(251,103,34)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1342.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.60%)</title><rect x="29.8387%" y="1348" width="0.6048%" height="15" fill="rgb(233,12,30)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1358.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.60%)</title><rect x="29.8387%" y="1364" width="0.6048%" height="15" fill="rgb(238,52,0)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1374.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.60%)</title><rect x="29.8387%" y="1380" width="0.6048%" height="15" fill="rgb(223,98,5)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1390.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.60%)</title><rect x="29.8387%" y="1396" width="0.6048%" height="15" fill="rgb(228,75,37)" fg:x="148" fg:w="3"/><text x="30.0887%" y="1406.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (2 samples, 0.40%)</title><rect x="30.0403%" y="1412" width="0.4032%" height="15" fill="rgb(205,115,49)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1422.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.40%)</title><rect x="30.0403%" y="1428" width="0.4032%" height="15" fill="rgb(250,154,43)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1438.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.40%)</title><rect x="30.0403%" y="1444" width="0.4032%" height="15" fill="rgb(226,43,29)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1454.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.40%)</title><rect x="30.0403%" y="1460" width="0.4032%" height="15" fill="rgb(249,228,39)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1470.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.40%)</title><rect x="30.0403%" y="1476" width="0.4032%" height="15" fill="rgb(216,79,43)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1486.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.40%)</title><rect x="30.0403%" y="1492" width="0.4032%" height="15" fill="rgb(228,95,12)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1502.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.40%)</title><rect x="30.0403%" y="1508" width="0.4032%" height="15" fill="rgb(249,221,15)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1518.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.40%)</title><rect x="30.0403%" y="1524" width="0.4032%" height="15" fill="rgb(233,34,13)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1534.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.40%)</title><rect x="30.0403%" y="1540" width="0.4032%" height="15" fill="rgb(214,103,39)" fg:x="149" fg:w="2"/><text x="30.2903%" y="1550.50"></text></g><g><title>build_metadata_dict (pydantic/_internal/_core_metadata.py:67) (1 samples, 0.20%)</title><rect x="30.2419%" y="1556" width="0.2016%" height="15" fill="rgb(251,126,39)" fg:x="150" fg:w="1"/><text x="30.4919%" y="1566.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.01%)</title><rect x="29.6371%" y="1076" width="1.0081%" height="15" fill="rgb(214,216,36)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1086.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.01%)</title><rect x="29.6371%" y="1092" width="1.0081%" height="15" fill="rgb(220,221,8)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1102.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.01%)</title><rect x="29.6371%" y="1108" width="1.0081%" height="15" fill="rgb(240,216,3)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1118.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (5 samples, 1.01%)</title><rect x="29.6371%" y="1124" width="1.0081%" height="15" fill="rgb(232,218,17)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1134.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (5 samples, 1.01%)</title><rect x="29.6371%" y="1140" width="1.0081%" height="15" fill="rgb(229,163,45)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1150.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (5 samples, 1.01%)</title><rect x="29.6371%" y="1156" width="1.0081%" height="15" fill="rgb(231,110,42)" fg:x="147" fg:w="5"/><text x="29.8871%" y="1166.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.81%)</title><rect x="29.8387%" y="1172" width="0.8065%" height="15" fill="rgb(208,170,48)" fg:x="148" fg:w="4"/><text x="30.0887%" y="1182.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.81%)</title><rect x="29.8387%" y="1188" width="0.8065%" height="15" fill="rgb(239,116,25)" fg:x="148" fg:w="4"/><text x="30.0887%" y="1198.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 0.81%)</title><rect x="29.8387%" y="1204" width="0.8065%" height="15" fill="rgb(219,200,50)" fg:x="148" fg:w="4"/><text x="30.0887%" y="1214.50"></text></g><g><title>is_literal_type (pydantic/_internal/_typing_extra.py:79) (1 samples, 0.20%)</title><rect x="30.4435%" y="1220" width="0.2016%" height="15" fill="rgb(245,200,0)" fg:x="151" fg:w="1"/><text x="30.6935%" y="1230.50"></text></g><g><title>get_origin (typing_extensions.py:1194) (1 samples, 0.20%)</title><rect x="30.4435%" y="1236" width="0.2016%" height="15" fill="rgb(245,119,33)" fg:x="151" fg:w="1"/><text x="30.6935%" y="1246.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (6 samples, 1.21%)</title><rect x="29.6371%" y="884" width="1.2097%" height="15" fill="rgb(231,125,12)" fg:x="147" fg:w="6"/><text x="29.8871%" y="894.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (6 samples, 1.21%)</title><rect x="29.6371%" y="900" width="1.2097%" height="15" fill="rgb(216,96,41)" fg:x="147" fg:w="6"/><text x="29.8871%" y="910.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (6 samples, 1.21%)</title><rect x="29.6371%" y="916" width="1.2097%" height="15" fill="rgb(248,43,45)" fg:x="147" fg:w="6"/><text x="29.8871%" y="926.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (6 samples, 1.21%)</title><rect x="29.6371%" y="932" width="1.2097%" height="15" fill="rgb(217,222,7)" fg:x="147" fg:w="6"/><text x="29.8871%" y="942.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (6 samples, 1.21%)</title><rect x="29.6371%" y="948" width="1.2097%" height="15" fill="rgb(233,28,6)" fg:x="147" fg:w="6"/><text x="29.8871%" y="958.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (6 samples, 1.21%)</title><rect x="29.6371%" y="964" width="1.2097%" height="15" fill="rgb(231,218,15)" fg:x="147" fg:w="6"/><text x="29.8871%" y="974.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (6 samples, 1.21%)</title><rect x="29.6371%" y="980" width="1.2097%" height="15" fill="rgb(226,171,48)" fg:x="147" fg:w="6"/><text x="29.8871%" y="990.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (6 samples, 1.21%)</title><rect x="29.6371%" y="996" width="1.2097%" height="15" fill="rgb(235,201,9)" fg:x="147" fg:w="6"/><text x="29.8871%" y="1006.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (6 samples, 1.21%)</title><rect x="29.6371%" y="1012" width="1.2097%" height="15" fill="rgb(217,80,15)" fg:x="147" fg:w="6"/><text x="29.8871%" y="1022.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (6 samples, 1.21%)</title><rect x="29.6371%" y="1028" width="1.2097%" height="15" fill="rgb(219,152,8)" fg:x="147" fg:w="6"/><text x="29.8871%" y="1038.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (6 samples, 1.21%)</title><rect x="29.6371%" y="1044" width="1.2097%" height="15" fill="rgb(243,107,38)" fg:x="147" fg:w="6"/><text x="29.8871%" y="1054.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (6 samples, 1.21%)</title><rect x="29.6371%" y="1060" width="1.2097%" height="15" fill="rgb(231,17,5)" fg:x="147" fg:w="6"/><text x="29.8871%" y="1070.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.20%)</title><rect x="30.6452%" y="1076" width="0.2016%" height="15" fill="rgb(209,25,54)" fg:x="152" fg:w="1"/><text x="30.8952%" y="1086.50"></text></g><g><title>__exit__ (contextlib.py:123) (1 samples, 0.20%)</title><rect x="30.6452%" y="1092" width="0.2016%" height="15" fill="rgb(219,0,2)" fg:x="152" fg:w="1"/><text x="30.8952%" y="1102.50"></text></g><g><title><module> (fastapi/params.py:1) (50 samples, 10.08%)</title><rect x="20.9677%" y="724" width="10.0806%" height="15" fill="rgb(246,9,5)" fg:x="104" fg:w="50"/><text x="21.2177%" y="734.50"><module> (fasta..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (50 samples, 10.08%)</title><rect x="20.9677%" y="740" width="10.0806%" height="15" fill="rgb(226,159,4)" fg:x="104" fg:w="50"/><text x="21.2177%" y="750.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (50 samples, 10.08%)</title><rect x="20.9677%" y="756" width="10.0806%" height="15" fill="rgb(219,175,34)" fg:x="104" fg:w="50"/><text x="21.2177%" y="766.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (50 samples, 10.08%)</title><rect x="20.9677%" y="772" width="10.0806%" height="15" fill="rgb(236,10,46)" fg:x="104" fg:w="50"/><text x="21.2177%" y="782.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (50 samples, 10.08%)</title><rect x="20.9677%" y="788" width="10.0806%" height="15" fill="rgb(240,211,16)" fg:x="104" fg:w="50"/><text x="21.2177%" y="798.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (50 samples, 10.08%)</title><rect x="20.9677%" y="804" width="10.0806%" height="15" fill="rgb(205,3,43)" fg:x="104" fg:w="50"/><text x="21.2177%" y="814.50">_call_with_fram..</text></g><g><title><module> (fastapi/openapi/models.py:1) (50 samples, 10.08%)</title><rect x="20.9677%" y="820" width="10.0806%" height="15" fill="rgb(245,7,22)" fg:x="104" fg:w="50"/><text x="21.2177%" y="830.50"><module> (fasta..</text></g><g><title>_model_rebuild (fastapi/_compat.py:171) (7 samples, 1.41%)</title><rect x="29.6371%" y="836" width="1.4113%" height="15" fill="rgb(239,132,32)" fg:x="147" fg:w="7"/><text x="29.8871%" y="846.50"></text></g><g><title>model_rebuild (pydantic/main.py:428) (7 samples, 1.41%)</title><rect x="29.6371%" y="852" width="1.4113%" height="15" fill="rgb(228,202,34)" fg:x="147" fg:w="7"/><text x="29.8871%" y="862.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (7 samples, 1.41%)</title><rect x="29.6371%" y="868" width="1.4113%" height="15" fill="rgb(254,200,22)" fg:x="147" fg:w="7"/><text x="29.8871%" y="878.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (1 samples, 0.20%)</title><rect x="30.8468%" y="884" width="0.2016%" height="15" fill="rgb(219,10,39)" fg:x="153" fg:w="1"/><text x="31.0968%" y="894.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (1 samples, 0.20%)</title><rect x="30.8468%" y="900" width="0.2016%" height="15" fill="rgb(226,210,39)" fg:x="153" fg:w="1"/><text x="31.0968%" y="910.50"></text></g><g><title><module> (dask_sql/__init__.py:3) (122 samples, 24.60%)</title><rect x="6.8548%" y="180" width="24.5968%" height="15" fill="rgb(208,219,16)" fg:x="34" fg:w="122"/><text x="7.1048%" y="190.50"><module> (dask_sql/__init__.py:3)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (122 samples, 24.60%)</title><rect x="6.8548%" y="196" width="24.5968%" height="15" fill="rgb(216,158,51)" fg:x="34" fg:w="122"/><text x="7.1048%" y="206.50">_find_and_load (<frozen importlib._boot..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (122 samples, 24.60%)</title><rect x="6.8548%" y="212" width="24.5968%" height="15" fill="rgb(233,14,44)" fg:x="34" fg:w="122"/><text x="7.1048%" y="222.50">_find_and_load_unlocked (<frozen import..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (122 samples, 24.60%)</title><rect x="6.8548%" y="228" width="24.5968%" height="15" fill="rgb(237,97,39)" fg:x="34" fg:w="122"/><text x="7.1048%" y="238.50">_load_unlocked (<frozen importlib._boot..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (122 samples, 24.60%)</title><rect x="6.8548%" y="244" width="24.5968%" height="15" fill="rgb(218,198,43)" fg:x="34" fg:w="122"/><text x="7.1048%" y="254.50">exec_module (<frozen importlib._bootstr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (122 samples, 24.60%)</title><rect x="6.8548%" y="260" width="24.5968%" height="15" fill="rgb(231,104,20)" fg:x="34" fg:w="122"/><text x="7.1048%" y="270.50">_call_with_frames_removed (<frozen impo..</text></g><g><title><module> (dask_sql/server/app.py:1) (53 samples, 10.69%)</title><rect x="20.7661%" y="276" width="10.6855%" height="15" fill="rgb(254,36,13)" fg:x="103" fg:w="53"/><text x="21.0161%" y="286.50"><module> (dask_s..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (53 samples, 10.69%)</title><rect x="20.7661%" y="292" width="10.6855%" height="15" fill="rgb(248,14,50)" fg:x="103" fg:w="53"/><text x="21.0161%" y="302.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (53 samples, 10.69%)</title><rect x="20.7661%" y="308" width="10.6855%" height="15" fill="rgb(217,107,29)" fg:x="103" fg:w="53"/><text x="21.0161%" y="318.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (53 samples, 10.69%)</title><rect x="20.7661%" y="324" width="10.6855%" height="15" fill="rgb(251,169,33)" fg:x="103" fg:w="53"/><text x="21.0161%" y="334.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (53 samples, 10.69%)</title><rect x="20.7661%" y="340" width="10.6855%" height="15" fill="rgb(217,108,32)" fg:x="103" fg:w="53"/><text x="21.0161%" y="350.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 10.69%)</title><rect x="20.7661%" y="356" width="10.6855%" height="15" fill="rgb(219,66,42)" fg:x="103" fg:w="53"/><text x="21.0161%" y="366.50">_call_with_frame..</text></g><g><title><module> (fastapi/__init__.py:1) (53 samples, 10.69%)</title><rect x="20.7661%" y="372" width="10.6855%" height="15" fill="rgb(206,180,7)" fg:x="103" fg:w="53"/><text x="21.0161%" y="382.50"><module> (fastap..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (53 samples, 10.69%)</title><rect x="20.7661%" y="388" width="10.6855%" height="15" fill="rgb(208,226,31)" fg:x="103" fg:w="53"/><text x="21.0161%" y="398.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (53 samples, 10.69%)</title><rect x="20.7661%" y="404" width="10.6855%" height="15" fill="rgb(218,26,49)" fg:x="103" fg:w="53"/><text x="21.0161%" y="414.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (53 samples, 10.69%)</title><rect x="20.7661%" y="420" width="10.6855%" height="15" fill="rgb(233,197,48)" fg:x="103" fg:w="53"/><text x="21.0161%" y="430.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (53 samples, 10.69%)</title><rect x="20.7661%" y="436" width="10.6855%" height="15" fill="rgb(252,181,51)" fg:x="103" fg:w="53"/><text x="21.0161%" y="446.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 10.69%)</title><rect x="20.7661%" y="452" width="10.6855%" height="15" fill="rgb(253,90,19)" fg:x="103" fg:w="53"/><text x="21.0161%" y="462.50">_call_with_frame..</text></g><g><title><module> (fastapi/applications.py:1) (53 samples, 10.69%)</title><rect x="20.7661%" y="468" width="10.6855%" height="15" fill="rgb(215,171,30)" fg:x="103" fg:w="53"/><text x="21.0161%" y="478.50"><module> (fastap..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (53 samples, 10.69%)</title><rect x="20.7661%" y="484" width="10.6855%" height="15" fill="rgb(214,222,9)" fg:x="103" fg:w="53"/><text x="21.0161%" y="494.50">_handle_fromlist..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 10.69%)</title><rect x="20.7661%" y="500" width="10.6855%" height="15" fill="rgb(223,3,22)" fg:x="103" fg:w="53"/><text x="21.0161%" y="510.50">_call_with_frame..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (53 samples, 10.69%)</title><rect x="20.7661%" y="516" width="10.6855%" height="15" fill="rgb(225,196,46)" fg:x="103" fg:w="53"/><text x="21.0161%" y="526.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (53 samples, 10.69%)</title><rect x="20.7661%" y="532" width="10.6855%" height="15" fill="rgb(209,110,37)" fg:x="103" fg:w="53"/><text x="21.0161%" y="542.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (53 samples, 10.69%)</title><rect x="20.7661%" y="548" width="10.6855%" height="15" fill="rgb(249,89,12)" fg:x="103" fg:w="53"/><text x="21.0161%" y="558.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (53 samples, 10.69%)</title><rect x="20.7661%" y="564" width="10.6855%" height="15" fill="rgb(226,27,33)" fg:x="103" fg:w="53"/><text x="21.0161%" y="574.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 10.69%)</title><rect x="20.7661%" y="580" width="10.6855%" height="15" fill="rgb(213,82,22)" fg:x="103" fg:w="53"/><text x="21.0161%" y="590.50">_call_with_frame..</text></g><g><title><module> (fastapi/routing.py:1) (53 samples, 10.69%)</title><rect x="20.7661%" y="596" width="10.6855%" height="15" fill="rgb(248,140,0)" fg:x="103" fg:w="53"/><text x="21.0161%" y="606.50"><module> (fastap..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (52 samples, 10.48%)</title><rect x="20.9677%" y="612" width="10.4839%" height="15" fill="rgb(228,106,3)" fg:x="104" fg:w="52"/><text x="21.2177%" y="622.50">_handle_fromlis..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (52 samples, 10.48%)</title><rect x="20.9677%" y="628" width="10.4839%" height="15" fill="rgb(209,23,37)" fg:x="104" fg:w="52"/><text x="21.2177%" y="638.50">_call_with_fram..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (52 samples, 10.48%)</title><rect x="20.9677%" y="644" width="10.4839%" height="15" fill="rgb(241,93,50)" fg:x="104" fg:w="52"/><text x="21.2177%" y="654.50">_find_and_load ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (52 samples, 10.48%)</title><rect x="20.9677%" y="660" width="10.4839%" height="15" fill="rgb(253,46,43)" fg:x="104" fg:w="52"/><text x="21.2177%" y="670.50">_find_and_load_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (52 samples, 10.48%)</title><rect x="20.9677%" y="676" width="10.4839%" height="15" fill="rgb(226,206,43)" fg:x="104" fg:w="52"/><text x="21.2177%" y="686.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (52 samples, 10.48%)</title><rect x="20.9677%" y="692" width="10.4839%" height="15" fill="rgb(217,54,7)" fg:x="104" fg:w="52"/><text x="21.2177%" y="702.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (52 samples, 10.48%)</title><rect x="20.9677%" y="708" width="10.4839%" height="15" fill="rgb(223,5,52)" fg:x="104" fg:w="52"/><text x="21.2177%" y="718.50">_call_with_fram..</text></g><g><title><module> (starlette/routing.py:1) (2 samples, 0.40%)</title><rect x="31.0484%" y="724" width="0.4032%" height="15" fill="rgb(206,52,46)" fg:x="154" fg:w="2"/><text x="31.2984%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="31.0484%" y="740" width="0.4032%" height="15" fill="rgb(253,136,11)" fg:x="154" fg:w="2"/><text x="31.2984%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="31.0484%" y="756" width="0.4032%" height="15" fill="rgb(208,106,33)" fg:x="154" fg:w="2"/><text x="31.2984%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="31.0484%" y="772" width="0.4032%" height="15" fill="rgb(206,54,4)" fg:x="154" fg:w="2"/><text x="31.2984%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="31.0484%" y="788" width="0.4032%" height="15" fill="rgb(213,3,15)" fg:x="154" fg:w="2"/><text x="31.2984%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="31.0484%" y="804" width="0.4032%" height="15" fill="rgb(252,211,39)" fg:x="154" fg:w="2"/><text x="31.2984%" y="814.50"></text></g><g><title><module> (starlette/middleware/__init__.py:1) (2 samples, 0.40%)</title><rect x="31.0484%" y="820" width="0.4032%" height="15" fill="rgb(223,6,36)" fg:x="154" fg:w="2"/><text x="31.2984%" y="830.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="31.2500%" y="836" width="0.2016%" height="15" fill="rgb(252,169,45)" fg:x="155" fg:w="1"/><text x="31.5000%" y="846.50"></text></g><g><title>__class_getitem__ (typing.py:985) (1 samples, 0.20%)</title><rect x="31.2500%" y="852" width="0.2016%" height="15" fill="rgb(212,48,26)" fg:x="155" fg:w="1"/><text x="31.5000%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="31.4516%" y="820" width="0.6048%" height="15" fill="rgb(251,102,48)" fg:x="156" fg:w="3"/><text x="31.7016%" y="830.50"></text></g><g><title><module> (sqlglot/generator.py:1) (3 samples, 0.60%)</title><rect x="31.4516%" y="836" width="0.6048%" height="15" fill="rgb(243,208,16)" fg:x="156" fg:w="3"/><text x="31.7016%" y="846.50"></text></g><g><title>Generator (sqlglot/generator.py:17) (3 samples, 0.60%)</title><rect x="31.4516%" y="852" width="0.6048%" height="15" fill="rgb(219,96,24)" fg:x="156" fg:w="3"/><text x="31.7016%" y="862.50"></text></g><g><title><module> (sqlglot/dialects/bigquery.py:1) (4 samples, 0.81%)</title><rect x="31.4516%" y="708" width="0.8065%" height="15" fill="rgb(219,33,29)" fg:x="156" fg:w="4"/><text x="31.7016%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="31.4516%" y="724" width="0.8065%" height="15" fill="rgb(223,176,5)" fg:x="156" fg:w="4"/><text x="31.7016%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="31.4516%" y="740" width="0.8065%" height="15" fill="rgb(228,140,14)" fg:x="156" fg:w="4"/><text x="31.7016%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="31.4516%" y="756" width="0.8065%" height="15" fill="rgb(217,179,31)" fg:x="156" fg:w="4"/><text x="31.7016%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="31.4516%" y="772" width="0.8065%" height="15" fill="rgb(230,9,30)" fg:x="156" fg:w="4"/><text x="31.7016%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="31.4516%" y="788" width="0.8065%" height="15" fill="rgb(230,136,20)" fg:x="156" fg:w="4"/><text x="31.7016%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="31.4516%" y="804" width="0.8065%" height="15" fill="rgb(215,210,22)" fg:x="156" fg:w="4"/><text x="31.7016%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="32.0565%" y="820" width="0.2016%" height="15" fill="rgb(218,43,5)" fg:x="159" fg:w="1"/><text x="32.3065%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="32.0565%" y="836" width="0.2016%" height="15" fill="rgb(216,11,5)" fg:x="159" fg:w="1"/><text x="32.3065%" y="846.50"></text></g><g><title>Databricks (sqlglot/dialects/databricks.py:10) (1 samples, 0.20%)</title><rect x="32.2581%" y="724" width="0.2016%" height="15" fill="rgb(209,82,29)" fg:x="160" fg:w="1"/><text x="32.5081%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.20%)</title><rect x="32.2581%" y="740" width="0.2016%" height="15" fill="rgb(244,115,12)" fg:x="160" fg:w="1"/><text x="32.5081%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.20%)</title><rect x="32.2581%" y="756" width="0.2016%" height="15" fill="rgb(222,82,18)" fg:x="160" fg:w="1"/><text x="32.5081%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.20%)</title><rect x="32.2581%" y="772" width="0.2016%" height="15" fill="rgb(249,227,8)" fg:x="160" fg:w="1"/><text x="32.5081%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.20%)</title><rect x="32.2581%" y="788" width="0.2016%" height="15" fill="rgb(253,141,45)" fg:x="160" fg:w="1"/><text x="32.5081%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="31.4516%" y="516" width="1.2097%" height="15" fill="rgb(234,184,4)" fg:x="156" fg:w="6"/><text x="31.7016%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="31.4516%" y="532" width="1.2097%" height="15" fill="rgb(218,194,23)" fg:x="156" fg:w="6"/><text x="31.7016%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="31.4516%" y="548" width="1.2097%" height="15" fill="rgb(235,66,41)" fg:x="156" fg:w="6"/><text x="31.7016%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="31.4516%" y="564" width="1.2097%" height="15" fill="rgb(245,217,1)" fg:x="156" fg:w="6"/><text x="31.7016%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="31.4516%" y="580" width="1.2097%" height="15" fill="rgb(229,91,1)" fg:x="156" fg:w="6"/><text x="31.7016%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="31.4516%" y="596" width="1.2097%" height="15" fill="rgb(207,101,30)" fg:x="156" fg:w="6"/><text x="31.7016%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (6 samples, 1.21%)</title><rect x="31.4516%" y="612" width="1.2097%" height="15" fill="rgb(223,82,49)" fg:x="156" fg:w="6"/><text x="31.7016%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="31.4516%" y="628" width="1.2097%" height="15" fill="rgb(218,167,17)" fg:x="156" fg:w="6"/><text x="31.7016%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="31.4516%" y="644" width="1.2097%" height="15" fill="rgb(208,103,14)" fg:x="156" fg:w="6"/><text x="31.7016%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="31.4516%" y="660" width="1.2097%" height="15" fill="rgb(238,20,8)" fg:x="156" fg:w="6"/><text x="31.7016%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="31.4516%" y="676" width="1.2097%" height="15" fill="rgb(218,80,54)" fg:x="156" fg:w="6"/><text x="31.7016%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="31.4516%" y="692" width="1.2097%" height="15" fill="rgb(240,144,17)" fg:x="156" fg:w="6"/><text x="31.7016%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/databricks.py:1) (2 samples, 0.40%)</title><rect x="32.2581%" y="708" width="0.4032%" height="15" fill="rgb(245,27,50)" fg:x="160" fg:w="2"/><text x="32.5081%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="32.4597%" y="724" width="0.2016%" height="15" fill="rgb(251,51,7)" fg:x="161" fg:w="1"/><text x="32.7097%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="32.4597%" y="740" width="0.2016%" height="15" fill="rgb(245,217,29)" fg:x="161" fg:w="1"/><text x="32.7097%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="32.4597%" y="756" width="0.2016%" height="15" fill="rgb(221,176,29)" fg:x="161" fg:w="1"/><text x="32.7097%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="32.4597%" y="772" width="0.2016%" height="15" fill="rgb(212,180,24)" fg:x="161" fg:w="1"/><text x="32.7097%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="32.4597%" y="788" width="0.2016%" height="15" fill="rgb(254,24,2)" fg:x="161" fg:w="1"/><text x="32.7097%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/tsql.py:1) (1 samples, 0.20%)</title><rect x="32.4597%" y="804" width="0.2016%" height="15" fill="rgb(230,100,2)" fg:x="161" fg:w="1"/><text x="32.7097%" y="814.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.20%)</title><rect x="32.4597%" y="820" width="0.2016%" height="15" fill="rgb(219,142,25)" fg:x="161" fg:w="1"/><text x="32.7097%" y="830.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="32.4597%" y="836" width="0.2016%" height="15" fill="rgb(240,73,43)" fg:x="161" fg:w="1"/><text x="32.7097%" y="846.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.20%)</title><rect x="32.4597%" y="852" width="0.2016%" height="15" fill="rgb(214,114,15)" fg:x="161" fg:w="1"/><text x="32.7097%" y="862.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.20%)</title><rect x="32.4597%" y="868" width="0.2016%" height="15" fill="rgb(207,130,4)" fg:x="161" fg:w="1"/><text x="32.7097%" y="878.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.20%)</title><rect x="32.4597%" y="884" width="0.2016%" height="15" fill="rgb(221,25,40)" fg:x="161" fg:w="1"/><text x="32.7097%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="31.4516%" y="484" width="1.4113%" height="15" fill="rgb(241,184,7)" fg:x="156" fg:w="7"/><text x="31.7016%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="31.4516%" y="500" width="1.4113%" height="15" fill="rgb(235,159,4)" fg:x="156" fg:w="7"/><text x="31.7016%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="32.6613%" y="516" width="0.2016%" height="15" fill="rgb(214,87,48)" fg:x="162" fg:w="1"/><text x="32.9113%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="32.6613%" y="532" width="0.2016%" height="15" fill="rgb(246,198,24)" fg:x="162" fg:w="1"/><text x="32.9113%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="32.6613%" y="548" width="0.2016%" height="15" fill="rgb(209,66,40)" fg:x="162" fg:w="1"/><text x="32.9113%" y="558.50"></text></g><g><title><module> (sqlglot/diff.py:1) (1 samples, 0.20%)</title><rect x="32.6613%" y="564" width="0.2016%" height="15" fill="rgb(233,147,39)" fg:x="162" fg:w="1"/><text x="32.9113%" y="574.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.20%)</title><rect x="32.6613%" y="580" width="0.2016%" height="15" fill="rgb(231,145,52)" fg:x="162" fg:w="1"/><text x="32.9113%" y="590.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.20%)</title><rect x="32.6613%" y="596" width="0.2016%" height="15" fill="rgb(206,20,26)" fg:x="162" fg:w="1"/><text x="32.9113%" y="606.50"></text></g><g><title>_frozen_get_del_attr (dataclasses.py:550) (1 samples, 0.20%)</title><rect x="32.6613%" y="612" width="0.2016%" height="15" fill="rgb(238,220,4)" fg:x="162" fg:w="1"/><text x="32.9113%" y="622.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="32.6613%" y="628" width="0.2016%" height="15" fill="rgb(252,195,42)" fg:x="162" fg:w="1"/><text x="32.9113%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="31.4516%" y="372" width="1.8145%" height="15" fill="rgb(209,10,6)" fg:x="156" fg:w="9"/><text x="31.7016%" y="382.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="31.4516%" y="388" width="1.8145%" height="15" fill="rgb(229,3,52)" fg:x="156" fg:w="9"/><text x="31.7016%" y="398.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="31.4516%" y="404" width="1.8145%" height="15" fill="rgb(253,49,37)" fg:x="156" fg:w="9"/><text x="31.7016%" y="414.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="31.4516%" y="420" width="1.8145%" height="15" fill="rgb(240,103,49)" fg:x="156" fg:w="9"/><text x="31.7016%" y="430.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="31.4516%" y="436" width="1.8145%" height="15" fill="rgb(250,182,30)" fg:x="156" fg:w="9"/><text x="31.7016%" y="446.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="31.4516%" y="452" width="1.8145%" height="15" fill="rgb(248,8,30)" fg:x="156" fg:w="9"/><text x="31.7016%" y="462.50">_..</text></g><g><title><module> (sqlglot/__init__.py:1) (9 samples, 1.81%)</title><rect x="31.4516%" y="468" width="1.8145%" height="15" fill="rgb(237,120,30)" fg:x="156" fg:w="9"/><text x="31.7016%" y="478.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="32.8629%" y="484" width="0.4032%" height="15" fill="rgb(221,146,34)" fg:x="163" fg:w="2"/><text x="33.1129%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="32.8629%" y="500" width="0.4032%" height="15" fill="rgb(242,55,13)" fg:x="163" fg:w="2"/><text x="33.1129%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="32.8629%" y="516" width="0.4032%" height="15" fill="rgb(242,112,31)" fg:x="163" fg:w="2"/><text x="33.1129%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="32.8629%" y="532" width="0.4032%" height="15" fill="rgb(249,192,27)" fg:x="163" fg:w="2"/><text x="33.1129%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="32.8629%" y="548" width="0.4032%" height="15" fill="rgb(208,204,44)" fg:x="163" fg:w="2"/><text x="33.1129%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="32.8629%" y="564" width="0.4032%" height="15" fill="rgb(208,93,54)" fg:x="163" fg:w="2"/><text x="33.1129%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="32.8629%" y="580" width="0.4032%" height="15" fill="rgb(242,1,31)" fg:x="163" fg:w="2"/><text x="33.1129%" y="590.50"></text></g><g><title><module> (sqlglot/expressions.py:1) (2 samples, 0.40%)</title><rect x="32.8629%" y="596" width="0.4032%" height="15" fill="rgb(241,83,25)" fg:x="163" fg:w="2"/><text x="33.1129%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="32.8629%" y="612" width="0.4032%" height="15" fill="rgb(205,169,50)" fg:x="163" fg:w="2"/><text x="33.1129%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="32.8629%" y="628" width="0.4032%" height="15" fill="rgb(239,186,37)" fg:x="163" fg:w="2"/><text x="33.1129%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="32.8629%" y="644" width="0.4032%" height="15" fill="rgb(205,221,10)" fg:x="163" fg:w="2"/><text x="33.1129%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="32.8629%" y="660" width="0.4032%" height="15" fill="rgb(218,196,15)" fg:x="163" fg:w="2"/><text x="33.1129%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="32.8629%" y="676" width="0.4032%" height="15" fill="rgb(218,196,35)" fg:x="163" fg:w="2"/><text x="33.1129%" y="686.50"></text></g><g><title><module> (sqlglot/tokens.py:1) (2 samples, 0.40%)</title><rect x="32.8629%" y="692" width="0.4032%" height="15" fill="rgb(233,63,24)" fg:x="163" fg:w="2"/><text x="33.1129%" y="702.50"></text></g><g><title>__new__ (enum.py:179) (2 samples, 0.40%)</title><rect x="32.8629%" y="708" width="0.4032%" height="15" fill="rgb(225,8,4)" fg:x="163" fg:w="2"/><text x="33.1129%" y="718.50"></text></g><g><title><module> (qarray/core.py:1) (11 samples, 2.22%)</title><rect x="31.4516%" y="276" width="2.2177%" height="15" fill="rgb(234,105,35)" fg:x="156" fg:w="11"/><text x="31.7016%" y="286.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="31.4516%" y="292" width="2.2177%" height="15" fill="rgb(236,21,32)" fg:x="156" fg:w="11"/><text x="31.7016%" y="302.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="31.4516%" y="308" width="2.2177%" height="15" fill="rgb(228,109,6)" fg:x="156" fg:w="11"/><text x="31.7016%" y="318.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="31.4516%" y="324" width="2.2177%" height="15" fill="rgb(229,215,31)" fg:x="156" fg:w="11"/><text x="31.7016%" y="334.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.22%)</title><rect x="31.4516%" y="340" width="2.2177%" height="15" fill="rgb(221,52,54)" fg:x="156" fg:w="11"/><text x="31.7016%" y="350.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.22%)</title><rect x="31.4516%" y="356" width="2.2177%" height="15" fill="rgb(252,129,43)" fg:x="156" fg:w="11"/><text x="31.7016%" y="366.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="372" width="0.4032%" height="15" fill="rgb(248,183,27)" fg:x="165" fg:w="2"/><text x="33.5161%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="388" width="0.4032%" height="15" fill="rgb(250,0,22)" fg:x="165" fg:w="2"/><text x="33.5161%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="404" width="0.4032%" height="15" fill="rgb(213,166,10)" fg:x="165" fg:w="2"/><text x="33.5161%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (2 samples, 0.40%)</title><rect x="33.2661%" y="420" width="0.4032%" height="15" fill="rgb(207,163,36)" fg:x="165" fg:w="2"/><text x="33.5161%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.2661%" y="436" width="0.4032%" height="15" fill="rgb(208,122,22)" fg:x="165" fg:w="2"/><text x="33.5161%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.2661%" y="452" width="0.4032%" height="15" fill="rgb(207,104,49)" fg:x="165" fg:w="2"/><text x="33.5161%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="468" width="0.4032%" height="15" fill="rgb(248,211,50)" fg:x="165" fg:w="2"/><text x="33.5161%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="484" width="0.4032%" height="15" fill="rgb(217,13,45)" fg:x="165" fg:w="2"/><text x="33.5161%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="500" width="0.4032%" height="15" fill="rgb(211,216,49)" fg:x="165" fg:w="2"/><text x="33.5161%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (2 samples, 0.40%)</title><rect x="33.2661%" y="516" width="0.4032%" height="15" fill="rgb(221,58,53)" fg:x="165" fg:w="2"/><text x="33.5161%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.2661%" y="532" width="0.4032%" height="15" fill="rgb(220,112,41)" fg:x="165" fg:w="2"/><text x="33.5161%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.2661%" y="548" width="0.4032%" height="15" fill="rgb(236,38,28)" fg:x="165" fg:w="2"/><text x="33.5161%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="564" width="0.4032%" height="15" fill="rgb(227,195,22)" fg:x="165" fg:w="2"/><text x="33.5161%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="580" width="0.4032%" height="15" fill="rgb(214,55,33)" fg:x="165" fg:w="2"/><text x="33.5161%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="596" width="0.4032%" height="15" fill="rgb(248,80,13)" fg:x="165" fg:w="2"/><text x="33.5161%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (2 samples, 0.40%)</title><rect x="33.2661%" y="612" width="0.4032%" height="15" fill="rgb(238,52,6)" fg:x="165" fg:w="2"/><text x="33.5161%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.2661%" y="628" width="0.4032%" height="15" fill="rgb(224,198,47)" fg:x="165" fg:w="2"/><text x="33.5161%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.2661%" y="644" width="0.4032%" height="15" fill="rgb(233,171,20)" fg:x="165" fg:w="2"/><text x="33.5161%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="660" width="0.4032%" height="15" fill="rgb(241,30,25)" fg:x="165" fg:w="2"/><text x="33.5161%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="676" width="0.4032%" height="15" fill="rgb(207,171,38)" fg:x="165" fg:w="2"/><text x="33.5161%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="692" width="0.4032%" height="15" fill="rgb(234,70,1)" fg:x="165" fg:w="2"/><text x="33.5161%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (2 samples, 0.40%)</title><rect x="33.2661%" y="708" width="0.4032%" height="15" fill="rgb(232,178,18)" fg:x="165" fg:w="2"/><text x="33.5161%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.2661%" y="724" width="0.4032%" height="15" fill="rgb(241,78,40)" fg:x="165" fg:w="2"/><text x="33.5161%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.2661%" y="740" width="0.4032%" height="15" fill="rgb(222,35,25)" fg:x="165" fg:w="2"/><text x="33.5161%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="756" width="0.4032%" height="15" fill="rgb(207,92,16)" fg:x="165" fg:w="2"/><text x="33.5161%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="772" width="0.4032%" height="15" fill="rgb(216,59,51)" fg:x="165" fg:w="2"/><text x="33.5161%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="788" width="0.4032%" height="15" fill="rgb(213,80,28)" fg:x="165" fg:w="2"/><text x="33.5161%" y="798.50"></text></g><g><title><module> (statistics.py:1) (2 samples, 0.40%)</title><rect x="33.2661%" y="804" width="0.4032%" height="15" fill="rgb(220,93,7)" fg:x="165" fg:w="2"/><text x="33.5161%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.2661%" y="820" width="0.4032%" height="15" fill="rgb(225,24,44)" fg:x="165" fg:w="2"/><text x="33.5161%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.2661%" y="836" width="0.4032%" height="15" fill="rgb(243,74,40)" fg:x="165" fg:w="2"/><text x="33.5161%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.2661%" y="852" width="0.4032%" height="15" fill="rgb(228,39,7)" fg:x="165" fg:w="2"/><text x="33.5161%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.2661%" y="868" width="0.4032%" height="15" fill="rgb(227,79,8)" fg:x="165" fg:w="2"/><text x="33.5161%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.2661%" y="884" width="0.4032%" height="15" fill="rgb(236,58,11)" fg:x="165" fg:w="2"/><text x="33.5161%" y="894.50"></text></g><g><title><module> (fractions.py:4) (2 samples, 0.40%)</title><rect x="33.2661%" y="900" width="0.4032%" height="15" fill="rgb(249,63,35)" fg:x="165" fg:w="2"/><text x="33.5161%" y="910.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.40%)</title><rect x="33.2661%" y="916" width="0.4032%" height="15" fill="rgb(252,114,16)" fg:x="165" fg:w="2"/><text x="33.5161%" y="926.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.40%)</title><rect x="33.2661%" y="932" width="0.4032%" height="15" fill="rgb(254,151,24)" fg:x="165" fg:w="2"/><text x="33.5161%" y="942.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 0.40%)</title><rect x="33.2661%" y="948" width="0.4032%" height="15" fill="rgb(253,54,39)" fg:x="165" fg:w="2"/><text x="33.5161%" y="958.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.20%)</title><rect x="33.4677%" y="964" width="0.2016%" height="15" fill="rgb(243,25,45)" fg:x="166" fg:w="1"/><text x="33.7177%" y="974.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.20%)</title><rect x="33.4677%" y="980" width="0.2016%" height="15" fill="rgb(234,134,9)" fg:x="166" fg:w="1"/><text x="33.7177%" y="990.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.20%)</title><rect x="33.4677%" y="996" width="0.2016%" height="15" fill="rgb(227,166,31)" fg:x="166" fg:w="1"/><text x="33.7177%" y="1006.50"></text></g><g><title>_deprecated_kwarg (dask/utils.py:218) (1 samples, 0.20%)</title><rect x="33.6694%" y="500" width="0.2016%" height="15" fill="rgb(245,143,41)" fg:x="167" fg:w="1"/><text x="33.9194%" y="510.50"></text></g><g><title>update_wrapper (functools.py:35) (1 samples, 0.20%)</title><rect x="33.6694%" y="516" width="0.2016%" height="15" fill="rgb(238,181,32)" fg:x="167" fg:w="1"/><text x="33.9194%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="33.6694%" y="388" width="0.4032%" height="15" fill="rgb(224,113,18)" fg:x="167" fg:w="2"/><text x="33.9194%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="33.6694%" y="404" width="0.4032%" height="15" fill="rgb(240,229,28)" fg:x="167" fg:w="2"/><text x="33.9194%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="33.6694%" y="420" width="0.4032%" height="15" fill="rgb(250,185,3)" fg:x="167" fg:w="2"/><text x="33.9194%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="33.6694%" y="436" width="0.4032%" height="15" fill="rgb(212,59,25)" fg:x="167" fg:w="2"/><text x="33.9194%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="33.6694%" y="452" width="0.4032%" height="15" fill="rgb(221,87,20)" fg:x="167" fg:w="2"/><text x="33.9194%" y="462.50"></text></g><g><title><module> (dask/dataframe/groupby.py:1) (2 samples, 0.40%)</title><rect x="33.6694%" y="468" width="0.4032%" height="15" fill="rgb(213,74,28)" fg:x="167" fg:w="2"/><text x="33.9194%" y="478.50"></text></g><g><title>_GroupBy (dask/dataframe/groupby.py:1390) (2 samples, 0.40%)</title><rect x="33.6694%" y="484" width="0.4032%" height="15" fill="rgb(224,132,34)" fg:x="167" fg:w="2"/><text x="33.9194%" y="494.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.20%)</title><rect x="33.8710%" y="500" width="0.2016%" height="15" fill="rgb(222,101,24)" fg:x="168" fg:w="1"/><text x="34.1210%" y="510.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.20%)</title><rect x="33.8710%" y="516" width="0.2016%" height="15" fill="rgb(254,142,4)" fg:x="168" fg:w="1"/><text x="34.1210%" y="526.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.20%)</title><rect x="33.8710%" y="532" width="0.2016%" height="15" fill="rgb(230,229,49)" fg:x="168" fg:w="1"/><text x="34.1210%" y="542.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.20%)</title><rect x="33.8710%" y="548" width="0.2016%" height="15" fill="rgb(238,70,47)" fg:x="168" fg:w="1"/><text x="34.1210%" y="558.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.20%)</title><rect x="33.8710%" y="564" width="0.2016%" height="15" fill="rgb(231,160,17)" fg:x="168" fg:w="1"/><text x="34.1210%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.0726%" y="1012" width="0.4032%" height="15" fill="rgb(218,68,53)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="34.0726%" y="1028" width="0.4032%" height="15" fill="rgb(236,111,10)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="34.0726%" y="1044" width="0.4032%" height="15" fill="rgb(224,34,41)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="34.0726%" y="1060" width="0.4032%" height="15" fill="rgb(241,118,19)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="34.0726%" y="1076" width="0.4032%" height="15" fill="rgb(238,129,25)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.0726%" y="1092" width="0.4032%" height="15" fill="rgb(238,22,31)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1102.50"></text></g><g><title><module> (scipy/__init__.py:1) (2 samples, 0.40%)</title><rect x="34.0726%" y="1108" width="0.4032%" height="15" fill="rgb(222,174,48)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="34.0726%" y="1124" width="0.4032%" height="15" fill="rgb(206,152,40)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="34.0726%" y="1140" width="0.4032%" height="15" fill="rgb(218,99,54)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="34.0726%" y="1156" width="0.4032%" height="15" fill="rgb(220,174,26)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="34.0726%" y="1172" width="0.4032%" height="15" fill="rgb(245,116,9)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.0726%" y="1188" width="0.4032%" height="15" fill="rgb(209,72,35)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1198.50"></text></g><g><title><module> (scipy/_lib/_ccallback.py:1) (2 samples, 0.40%)</title><rect x="34.0726%" y="1204" width="0.4032%" height="15" fill="rgb(226,126,21)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="34.0726%" y="1220" width="0.4032%" height="15" fill="rgb(227,192,1)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.0726%" y="1236" width="0.4032%" height="15" fill="rgb(237,180,29)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="34.0726%" y="1252" width="0.4032%" height="15" fill="rgb(230,197,35)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="34.0726%" y="1268" width="0.4032%" height="15" fill="rgb(246,193,31)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="34.0726%" y="1284" width="0.4032%" height="15" fill="rgb(241,36,4)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1294.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="34.0726%" y="1300" width="0.4032%" height="15" fill="rgb(241,130,17)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1310.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="34.0726%" y="1316" width="0.4032%" height="15" fill="rgb(206,137,32)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.0726%" y="1332" width="0.4032%" height="15" fill="rgb(237,228,51)" fg:x="169" fg:w="2"/><text x="34.3226%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="34.4758%" y="1076" width="0.4032%" height="15" fill="rgb(243,6,42)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="34.4758%" y="1092" width="0.4032%" height="15" fill="rgb(251,74,28)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="34.4758%" y="1108" width="0.4032%" height="15" fill="rgb(218,20,49)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="34.4758%" y="1124" width="0.4032%" height="15" fill="rgb(238,28,14)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.4758%" y="1140" width="0.4032%" height="15" fill="rgb(229,40,46)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1150.50"></text></g><g><title><module> (scipy/sparse/_lil.py:1) (2 samples, 0.40%)</title><rect x="34.4758%" y="1156" width="0.4032%" height="15" fill="rgb(244,195,20)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="34.4758%" y="1172" width="0.4032%" height="15" fill="rgb(253,56,35)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.4758%" y="1188" width="0.4032%" height="15" fill="rgb(210,149,44)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="34.4758%" y="1204" width="0.4032%" height="15" fill="rgb(240,135,12)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="34.4758%" y="1220" width="0.4032%" height="15" fill="rgb(251,24,50)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="34.4758%" y="1236" width="0.4032%" height="15" fill="rgb(243,200,47)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1246.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="34.4758%" y="1252" width="0.4032%" height="15" fill="rgb(224,166,26)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="34.4758%" y="1268" width="0.4032%" height="15" fill="rgb(233,0,47)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="34.4758%" y="1284" width="0.4032%" height="15" fill="rgb(253,80,5)" fg:x="171" fg:w="2"/><text x="34.7258%" y="1294.50"></text></g><g><title><module> (scipy/sparse/linalg/_dsolve/__init__.py:1) (1 samples, 0.20%)</title><rect x="34.8790%" y="1476" width="0.2016%" height="15" fill="rgb(214,133,25)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="34.8790%" y="1492" width="0.2016%" height="15" fill="rgb(209,27,14)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="34.8790%" y="1508" width="0.2016%" height="15" fill="rgb(219,102,51)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="34.8790%" y="1524" width="0.2016%" height="15" fill="rgb(237,18,16)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="34.8790%" y="1540" width="0.2016%" height="15" fill="rgb(241,85,17)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="34.8790%" y="1556" width="0.2016%" height="15" fill="rgb(236,90,42)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="34.8790%" y="1572" width="0.2016%" height="15" fill="rgb(249,57,21)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1582.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="34.8790%" y="1588" width="0.2016%" height="15" fill="rgb(243,12,36)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1598.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="34.8790%" y="1604" width="0.2016%" height="15" fill="rgb(253,128,47)" fg:x="173" fg:w="1"/><text x="35.1290%" y="1614.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (1 samples, 0.20%)</title><rect x="35.0806%" y="1572" width="0.2016%" height="15" fill="rgb(207,33,20)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1582.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="35.0806%" y="1588" width="0.2016%" height="15" fill="rgb(233,215,35)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="35.0806%" y="1604" width="0.2016%" height="15" fill="rgb(249,188,52)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1614.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="35.0806%" y="1620" width="0.2016%" height="15" fill="rgb(225,12,32)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1630.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="35.0806%" y="1636" width="0.2016%" height="15" fill="rgb(247,98,14)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1646.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="35.0806%" y="1652" width="0.2016%" height="15" fill="rgb(247,219,48)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1662.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="35.0806%" y="1668" width="0.2016%" height="15" fill="rgb(253,60,48)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1678.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="35.0806%" y="1684" width="0.2016%" height="15" fill="rgb(245,15,52)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="35.0806%" y="1700" width="0.2016%" height="15" fill="rgb(220,133,28)" fg:x="174" fg:w="1"/><text x="35.3306%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="35.2823%" y="1748" width="0.4032%" height="15" fill="rgb(217,180,4)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_misc.py:1) (2 samples, 0.40%)</title><rect x="35.2823%" y="1764" width="0.4032%" height="15" fill="rgb(251,24,1)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="35.2823%" y="1780" width="0.4032%" height="15" fill="rgb(212,185,49)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="35.2823%" y="1796" width="0.4032%" height="15" fill="rgb(215,175,22)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="35.2823%" y="1812" width="0.4032%" height="15" fill="rgb(250,205,14)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="35.2823%" y="1828" width="0.4032%" height="15" fill="rgb(225,211,22)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1838.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="35.2823%" y="1844" width="0.4032%" height="15" fill="rgb(251,179,42)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1854.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.40%)</title><rect x="35.2823%" y="1860" width="0.4032%" height="15" fill="rgb(208,216,51)" fg:x="175" fg:w="2"/><text x="35.5323%" y="1870.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="35.2823%" y="1732" width="0.6048%" height="15" fill="rgb(235,36,11)" fg:x="175" fg:w="3"/><text x="35.5323%" y="1742.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="35.6855%" y="1748" width="0.2016%" height="15" fill="rgb(213,189,28)" fg:x="177" fg:w="1"/><text x="35.9355%" y="1758.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="35.6855%" y="1764" width="0.2016%" height="15" fill="rgb(227,203,42)" fg:x="177" fg:w="1"/><text x="35.9355%" y="1774.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (6 samples, 1.21%)</title><rect x="35.0806%" y="1476" width="1.2097%" height="15" fill="rgb(244,72,36)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="35.0806%" y="1492" width="1.2097%" height="15" fill="rgb(213,53,17)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="35.0806%" y="1508" width="1.2097%" height="15" fill="rgb(207,167,3)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="35.0806%" y="1524" width="1.2097%" height="15" fill="rgb(216,98,30)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="35.0806%" y="1540" width="1.2097%" height="15" fill="rgb(236,123,15)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="35.0806%" y="1556" width="1.2097%" height="15" fill="rgb(248,81,50)" fg:x="174" fg:w="6"/><text x="35.3306%" y="1566.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (5 samples, 1.01%)</title><rect x="35.2823%" y="1572" width="1.0081%" height="15" fill="rgb(214,120,4)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="35.2823%" y="1588" width="1.0081%" height="15" fill="rgb(208,179,34)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="35.2823%" y="1604" width="1.0081%" height="15" fill="rgb(227,140,7)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="35.2823%" y="1620" width="1.0081%" height="15" fill="rgb(214,22,6)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="35.2823%" y="1636" width="1.0081%" height="15" fill="rgb(207,137,27)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="35.2823%" y="1652" width="1.0081%" height="15" fill="rgb(210,8,46)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1662.50"></text></g><g><title><module> (scipy/linalg/__init__.py:1) (5 samples, 1.01%)</title><rect x="35.2823%" y="1668" width="1.0081%" height="15" fill="rgb(240,16,54)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="35.2823%" y="1684" width="1.0081%" height="15" fill="rgb(211,209,29)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="35.2823%" y="1700" width="1.0081%" height="15" fill="rgb(226,228,24)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="35.2823%" y="1716" width="1.0081%" height="15" fill="rgb(222,84,9)" fg:x="175" fg:w="5"/><text x="35.5323%" y="1726.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="35.8871%" y="1732" width="0.4032%" height="15" fill="rgb(234,203,30)" fg:x="178" fg:w="2"/><text x="36.1371%" y="1742.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="35.8871%" y="1748" width="0.4032%" height="15" fill="rgb(238,109,14)" fg:x="178" fg:w="2"/><text x="36.1371%" y="1758.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="35.8871%" y="1764" width="0.4032%" height="15" fill="rgb(233,206,34)" fg:x="178" fg:w="2"/><text x="36.1371%" y="1774.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="34.8790%" y="1252" width="1.6129%" height="15" fill="rgb(220,167,47)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="34.8790%" y="1268" width="1.6129%" height="15" fill="rgb(238,105,10)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1278.50"></text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (8 samples, 1.61%)</title><rect x="34.8790%" y="1284" width="1.6129%" height="15" fill="rgb(213,227,17)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="34.8790%" y="1300" width="1.6129%" height="15" fill="rgb(217,132,38)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="34.8790%" y="1316" width="1.6129%" height="15" fill="rgb(242,146,4)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="34.8790%" y="1332" width="1.6129%" height="15" fill="rgb(212,61,9)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="34.8790%" y="1348" width="1.6129%" height="15" fill="rgb(247,126,22)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="34.8790%" y="1364" width="1.6129%" height="15" fill="rgb(220,196,2)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1374.50"></text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (8 samples, 1.61%)</title><rect x="34.8790%" y="1380" width="1.6129%" height="15" fill="rgb(208,46,4)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="34.8790%" y="1396" width="1.6129%" height="15" fill="rgb(252,104,46)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="34.8790%" y="1412" width="1.6129%" height="15" fill="rgb(237,152,48)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="34.8790%" y="1428" width="1.6129%" height="15" fill="rgb(221,59,37)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="34.8790%" y="1444" width="1.6129%" height="15" fill="rgb(209,202,51)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="34.8790%" y="1460" width="1.6129%" height="15" fill="rgb(228,81,30)" fg:x="173" fg:w="8"/><text x="35.1290%" y="1470.50"></text></g><g><title><module> (scipy/sparse/linalg/_matfuncs.py:1) (1 samples, 0.20%)</title><rect x="36.2903%" y="1476" width="0.2016%" height="15" fill="rgb(227,42,39)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="36.2903%" y="1492" width="0.2016%" height="15" fill="rgb(221,26,2)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="36.2903%" y="1508" width="0.2016%" height="15" fill="rgb(254,61,31)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="36.2903%" y="1524" width="0.2016%" height="15" fill="rgb(222,173,38)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="36.2903%" y="1540" width="0.2016%" height="15" fill="rgb(218,50,12)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1550.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="36.2903%" y="1556" width="0.2016%" height="15" fill="rgb(223,88,40)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1566.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="36.2903%" y="1572" width="0.2016%" height="15" fill="rgb(237,54,19)" fg:x="180" fg:w="1"/><text x="36.5403%" y="1582.50"></text></g><g><title><module> (dask/array/chunk_types.py:1) (13 samples, 2.62%)</title><rect x="34.0726%" y="964" width="2.6210%" height="15" fill="rgb(251,129,25)" fg:x="169" fg:w="13"/><text x="34.3226%" y="974.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 2.62%)</title><rect x="34.0726%" y="980" width="2.6210%" height="15" fill="rgb(238,97,19)" fg:x="169" fg:w="13"/><text x="34.3226%" y="990.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 2.62%)</title><rect x="34.0726%" y="996" width="2.6210%" height="15" fill="rgb(240,169,18)" fg:x="169" fg:w="13"/><text x="34.3226%" y="1006.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.22%)</title><rect x="34.4758%" y="1012" width="2.2177%" height="15" fill="rgb(230,187,49)" fg:x="171" fg:w="11"/><text x="34.7258%" y="1022.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.22%)</title><rect x="34.4758%" y="1028" width="2.2177%" height="15" fill="rgb(209,44,26)" fg:x="171" fg:w="11"/><text x="34.7258%" y="1038.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="34.4758%" y="1044" width="2.2177%" height="15" fill="rgb(244,0,6)" fg:x="171" fg:w="11"/><text x="34.7258%" y="1054.50">_..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (11 samples, 2.22%)</title><rect x="34.4758%" y="1060" width="2.2177%" height="15" fill="rgb(248,18,21)" fg:x="171" fg:w="11"/><text x="34.7258%" y="1070.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 1.81%)</title><rect x="34.8790%" y="1076" width="1.8145%" height="15" fill="rgb(245,180,19)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1086.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="34.8790%" y="1092" width="1.8145%" height="15" fill="rgb(252,118,36)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1102.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="34.8790%" y="1108" width="1.8145%" height="15" fill="rgb(210,224,19)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1118.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="34.8790%" y="1124" width="1.8145%" height="15" fill="rgb(218,30,24)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1134.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="34.8790%" y="1140" width="1.8145%" height="15" fill="rgb(219,75,50)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1150.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="34.8790%" y="1156" width="1.8145%" height="15" fill="rgb(234,72,50)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1166.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="34.8790%" y="1172" width="1.8145%" height="15" fill="rgb(219,100,48)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1182.50">_..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (9 samples, 1.81%)</title><rect x="34.8790%" y="1188" width="1.8145%" height="15" fill="rgb(253,5,41)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1198.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="34.8790%" y="1204" width="1.8145%" height="15" fill="rgb(247,181,11)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1214.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="34.8790%" y="1220" width="1.8145%" height="15" fill="rgb(222,223,25)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1230.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="34.8790%" y="1236" width="1.8145%" height="15" fill="rgb(214,198,28)" fg:x="173" fg:w="9"/><text x="35.1290%" y="1246.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="36.4919%" y="1252" width="0.2016%" height="15" fill="rgb(230,46,43)" fg:x="181" fg:w="1"/><text x="36.7419%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="36.4919%" y="1268" width="0.2016%" height="15" fill="rgb(233,65,53)" fg:x="181" fg:w="1"/><text x="36.7419%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="36.4919%" y="1284" width="0.2016%" height="15" fill="rgb(221,121,27)" fg:x="181" fg:w="1"/><text x="36.7419%" y="1294.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.20%)</title><rect x="36.6935%" y="1028" width="0.2016%" height="15" fill="rgb(247,70,47)" fg:x="182" fg:w="1"/><text x="36.9435%" y="1038.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.20%)</title><rect x="36.6935%" y="1044" width="0.2016%" height="15" fill="rgb(228,85,35)" fg:x="182" fg:w="1"/><text x="36.9435%" y="1054.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.20%)</title><rect x="36.6935%" y="1060" width="0.2016%" height="15" fill="rgb(209,50,18)" fg:x="182" fg:w="1"/><text x="36.9435%" y="1070.50"></text></g><g><title>__str__ (pathlib.py:742) (1 samples, 0.20%)</title><rect x="36.8952%" y="1076" width="0.2016%" height="15" fill="rgb(250,19,35)" fg:x="183" fg:w="1"/><text x="37.1452%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 3.23%)</title><rect x="34.0726%" y="788" width="3.2258%" height="15" fill="rgb(253,107,29)" fg:x="169" fg:w="16"/><text x="34.3226%" y="798.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 3.23%)</title><rect x="34.0726%" y="804" width="3.2258%" height="15" fill="rgb(252,179,29)" fg:x="169" fg:w="16"/><text x="34.3226%" y="814.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 3.23%)</title><rect x="34.0726%" y="820" width="3.2258%" height="15" fill="rgb(238,194,6)" fg:x="169" fg:w="16"/><text x="34.3226%" y="830.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 3.23%)</title><rect x="34.0726%" y="836" width="3.2258%" height="15" fill="rgb(238,164,29)" fg:x="169" fg:w="16"/><text x="34.3226%" y="846.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 3.23%)</title><rect x="34.0726%" y="852" width="3.2258%" height="15" fill="rgb(224,25,9)" fg:x="169" fg:w="16"/><text x="34.3226%" y="862.50">_ca..</text></g><g><title><module> (dask/array/core.py:1) (16 samples, 3.23%)</title><rect x="34.0726%" y="868" width="3.2258%" height="15" fill="rgb(244,153,23)" fg:x="169" fg:w="16"/><text x="34.3226%" y="878.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 3.23%)</title><rect x="34.0726%" y="884" width="3.2258%" height="15" fill="rgb(212,203,14)" fg:x="169" fg:w="16"/><text x="34.3226%" y="894.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 3.23%)</title><rect x="34.0726%" y="900" width="3.2258%" height="15" fill="rgb(220,164,20)" fg:x="169" fg:w="16"/><text x="34.3226%" y="910.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 3.23%)</title><rect x="34.0726%" y="916" width="3.2258%" height="15" fill="rgb(222,203,48)" fg:x="169" fg:w="16"/><text x="34.3226%" y="926.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 3.23%)</title><rect x="34.0726%" y="932" width="3.2258%" height="15" fill="rgb(215,159,22)" fg:x="169" fg:w="16"/><text x="34.3226%" y="942.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 3.23%)</title><rect x="34.0726%" y="948" width="3.2258%" height="15" fill="rgb(216,183,47)" fg:x="169" fg:w="16"/><text x="34.3226%" y="958.50">_ca..</text></g><g><title><module> (dask/sizeof.py:1) (3 samples, 0.60%)</title><rect x="36.6935%" y="964" width="0.6048%" height="15" fill="rgb(229,195,25)" fg:x="182" fg:w="3"/><text x="36.9435%" y="974.50"></text></g><g><title>_register_entry_point_plugins (dask/sizeof.py:261) (3 samples, 0.60%)</title><rect x="36.6935%" y="980" width="0.6048%" height="15" fill="rgb(224,132,51)" fg:x="182" fg:w="3"/><text x="36.9435%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:936) (3 samples, 0.60%)</title><rect x="36.6935%" y="996" width="0.6048%" height="15" fill="rgb(240,63,7)" fg:x="182" fg:w="3"/><text x="36.9435%" y="1006.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:945) (3 samples, 0.60%)</title><rect x="36.6935%" y="1012" width="0.6048%" height="15" fill="rgb(249,182,41)" fg:x="182" fg:w="3"/><text x="36.9435%" y="1022.50"></text></g><g><title>unique_everseen (importlib_metadata/_itertools.py:4) (2 samples, 0.40%)</title><rect x="36.8952%" y="1028" width="0.4032%" height="15" fill="rgb(243,47,26)" fg:x="183" fg:w="2"/><text x="37.1452%" y="1038.50"></text></g><g><title>normalized_name (importlib_metadata/_py39compat.py:13) (2 samples, 0.40%)</title><rect x="36.8952%" y="1044" width="0.4032%" height="15" fill="rgb(233,48,2)" fg:x="183" fg:w="2"/><text x="37.1452%" y="1054.50"></text></g><g><title>_normalized_name (importlib_metadata/__init__.py:861) (2 samples, 0.40%)</title><rect x="36.8952%" y="1060" width="0.4032%" height="15" fill="rgb(244,165,34)" fg:x="183" fg:w="2"/><text x="37.1452%" y="1070.50"></text></g><g><title>basename (posixpath.py:140) (1 samples, 0.20%)</title><rect x="37.0968%" y="1076" width="0.2016%" height="15" fill="rgb(207,89,7)" fg:x="184" fg:w="1"/><text x="37.3468%" y="1086.50"></text></g><g><title><module> (dask/array/backends.py:1) (17 samples, 3.43%)</title><rect x="34.0726%" y="772" width="3.4274%" height="15" fill="rgb(244,117,36)" fg:x="169" fg:w="17"/><text x="34.3226%" y="782.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="37.2984%" y="788" width="0.2016%" height="15" fill="rgb(226,144,34)" fg:x="185" fg:w="1"/><text x="37.5484%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="37.2984%" y="804" width="0.2016%" height="15" fill="rgb(213,23,19)" fg:x="185" fg:w="1"/><text x="37.5484%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="37.2984%" y="820" width="0.2016%" height="15" fill="rgb(217,75,12)" fg:x="185" fg:w="1"/><text x="37.5484%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="37.2984%" y="836" width="0.2016%" height="15" fill="rgb(224,159,17)" fg:x="185" fg:w="1"/><text x="37.5484%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="37.2984%" y="852" width="0.2016%" height="15" fill="rgb(217,118,1)" fg:x="185" fg:w="1"/><text x="37.5484%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="37.2984%" y="868" width="0.2016%" height="15" fill="rgb(232,180,48)" fg:x="185" fg:w="1"/><text x="37.5484%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="37.2984%" y="884" width="0.2016%" height="15" fill="rgb(230,27,33)" fg:x="185" fg:w="1"/><text x="37.5484%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="37.2984%" y="900" width="0.2016%" height="15" fill="rgb(205,31,21)" fg:x="185" fg:w="1"/><text x="37.5484%" y="910.50"></text></g><g><title><module> (dask/array/creation.py:1) (1 samples, 0.20%)</title><rect x="37.5000%" y="868" width="0.2016%" height="15" fill="rgb(253,59,4)" fg:x="186" fg:w="1"/><text x="37.7500%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="37.5000%" y="884" width="0.2016%" height="15" fill="rgb(224,201,9)" fg:x="186" fg:w="1"/><text x="37.7500%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="37.5000%" y="900" width="0.2016%" height="15" fill="rgb(229,206,30)" fg:x="186" fg:w="1"/><text x="37.7500%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="37.5000%" y="916" width="0.2016%" height="15" fill="rgb(212,67,47)" fg:x="186" fg:w="1"/><text x="37.7500%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="37.5000%" y="932" width="0.2016%" height="15" fill="rgb(211,96,50)" fg:x="186" fg:w="1"/><text x="37.7500%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="37.5000%" y="948" width="0.2016%" height="15" fill="rgb(252,114,18)" fg:x="186" fg:w="1"/><text x="37.7500%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (1 samples, 0.20%)</title><rect x="37.5000%" y="964" width="0.2016%" height="15" fill="rgb(223,58,37)" fg:x="186" fg:w="1"/><text x="37.7500%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (1 samples, 0.20%)</title><rect x="37.5000%" y="980" width="0.2016%" height="15" fill="rgb(237,70,4)" fg:x="186" fg:w="1"/><text x="37.7500%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.20%)</title><rect x="37.5000%" y="996" width="0.2016%" height="15" fill="rgb(244,85,46)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.20%)</title><rect x="37.5000%" y="1012" width="0.2016%" height="15" fill="rgb(223,39,52)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1022.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.20%)</title><rect x="37.5000%" y="1028" width="0.2016%" height="15" fill="rgb(218,200,14)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.20%)</title><rect x="37.5000%" y="1044" width="0.2016%" height="15" fill="rgb(208,171,16)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.20%)</title><rect x="37.5000%" y="1060" width="0.2016%" height="15" fill="rgb(234,200,18)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.20%)</title><rect x="37.5000%" y="1076" width="0.2016%" height="15" fill="rgb(228,45,11)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1086.50"></text></g><g><title>_signature_bound_method (inspect.py:1840) (1 samples, 0.20%)</title><rect x="37.5000%" y="1092" width="0.2016%" height="15" fill="rgb(237,182,11)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1102.50"></text></g><g><title>replace (inspect.py:2873) (1 samples, 0.20%)</title><rect x="37.5000%" y="1108" width="0.2016%" height="15" fill="rgb(241,175,49)" fg:x="186" fg:w="1"/><text x="37.7500%" y="1118.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (3 samples, 0.60%)</title><rect x="37.7016%" y="1300" width="0.6048%" height="15" fill="rgb(247,38,35)" fg:x="187" fg:w="3"/><text x="37.9516%" y="1310.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.40%)</title><rect x="37.9032%" y="1316" width="0.4032%" height="15" fill="rgb(228,39,49)" fg:x="188" fg:w="2"/><text x="38.1532%" y="1326.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.40%)</title><rect x="37.9032%" y="1332" width="0.4032%" height="15" fill="rgb(226,101,26)" fg:x="188" fg:w="2"/><text x="38.1532%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 0.40%)</title><rect x="37.9032%" y="1348" width="0.4032%" height="15" fill="rgb(206,141,19)" fg:x="188" fg:w="2"/><text x="38.1532%" y="1358.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (2 samples, 0.40%)</title><rect x="37.9032%" y="1364" width="0.4032%" height="15" fill="rgb(211,200,13)" fg:x="188" fg:w="2"/><text x="38.1532%" y="1374.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (2 samples, 0.40%)</title><rect x="37.9032%" y="1380" width="0.4032%" height="15" fill="rgb(241,121,6)" fg:x="188" fg:w="2"/><text x="38.1532%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="38.3065%" y="1316" width="0.2016%" height="15" fill="rgb(234,221,29)" fg:x="190" fg:w="1"/><text x="38.5565%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="38.3065%" y="1332" width="0.2016%" height="15" fill="rgb(229,136,5)" fg:x="190" fg:w="1"/><text x="38.5565%" y="1342.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="38.3065%" y="1348" width="0.2016%" height="15" fill="rgb(238,36,11)" fg:x="190" fg:w="1"/><text x="38.5565%" y="1358.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (5 samples, 1.01%)</title><rect x="37.7016%" y="964" width="1.0081%" height="15" fill="rgb(251,55,41)" fg:x="187" fg:w="5"/><text x="37.9516%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="37.7016%" y="980" width="1.0081%" height="15" fill="rgb(242,34,40)" fg:x="187" fg:w="5"/><text x="37.9516%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="37.7016%" y="996" width="1.0081%" height="15" fill="rgb(215,42,17)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="37.7016%" y="1012" width="1.0081%" height="15" fill="rgb(207,44,46)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="37.7016%" y="1028" width="1.0081%" height="15" fill="rgb(211,206,28)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="37.7016%" y="1044" width="1.0081%" height="15" fill="rgb(237,167,16)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (5 samples, 1.01%)</title><rect x="37.7016%" y="1060" width="1.0081%" height="15" fill="rgb(233,66,6)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="37.7016%" y="1076" width="1.0081%" height="15" fill="rgb(246,123,29)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="37.7016%" y="1092" width="1.0081%" height="15" fill="rgb(209,62,40)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="37.7016%" y="1108" width="1.0081%" height="15" fill="rgb(218,4,25)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="37.7016%" y="1124" width="1.0081%" height="15" fill="rgb(253,91,49)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="37.7016%" y="1140" width="1.0081%" height="15" fill="rgb(228,155,29)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1150.50"></text></g><g><title><module> (scipy/fft/_basic.py:1) (5 samples, 1.01%)</title><rect x="37.7016%" y="1156" width="1.0081%" height="15" fill="rgb(243,57,37)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="37.7016%" y="1172" width="1.0081%" height="15" fill="rgb(244,167,17)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="37.7016%" y="1188" width="1.0081%" height="15" fill="rgb(207,181,38)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="37.7016%" y="1204" width="1.0081%" height="15" fill="rgb(211,8,23)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="37.7016%" y="1220" width="1.0081%" height="15" fill="rgb(235,11,44)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="37.7016%" y="1236" width="1.0081%" height="15" fill="rgb(248,18,52)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1246.50"></text></g><g><title><module> (scipy/_lib/uarray.py:1) (5 samples, 1.01%)</title><rect x="37.7016%" y="1252" width="1.0081%" height="15" fill="rgb(208,4,7)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="37.7016%" y="1268" width="1.0081%" height="15" fill="rgb(240,17,39)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="37.7016%" y="1284" width="1.0081%" height="15" fill="rgb(207,170,3)" fg:x="187" fg:w="5"/><text x="37.9516%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="38.3065%" y="1300" width="0.4032%" height="15" fill="rgb(236,100,52)" fg:x="190" fg:w="2"/><text x="38.5565%" y="1310.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="38.5081%" y="1316" width="0.2016%" height="15" fill="rgb(246,78,51)" fg:x="191" fg:w="1"/><text x="38.7581%" y="1326.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.20%)</title><rect x="38.5081%" y="1332" width="0.2016%" height="15" fill="rgb(211,17,15)" fg:x="191" fg:w="1"/><text x="38.7581%" y="1342.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.20%)</title><rect x="38.7097%" y="1028" width="0.2016%" height="15" fill="rgb(209,59,46)" fg:x="192" fg:w="1"/><text x="38.9597%" y="1038.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.20%)</title><rect x="38.7097%" y="1044" width="0.2016%" height="15" fill="rgb(210,92,25)" fg:x="192" fg:w="1"/><text x="38.9597%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="37.7016%" y="948" width="1.6129%" height="15" fill="rgb(238,174,52)" fg:x="187" fg:w="8"/><text x="37.9516%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_pseudo_diffs.py:1) (3 samples, 0.60%)</title><rect x="38.7097%" y="964" width="0.6048%" height="15" fill="rgb(230,73,7)" fg:x="192" fg:w="3"/><text x="38.9597%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="38.7097%" y="980" width="0.6048%" height="15" fill="rgb(243,124,40)" fg:x="192" fg:w="3"/><text x="38.9597%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="38.7097%" y="996" width="0.6048%" height="15" fill="rgb(244,170,11)" fg:x="192" fg:w="3"/><text x="38.9597%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="38.7097%" y="1012" width="0.6048%" height="15" fill="rgb(207,114,54)" fg:x="192" fg:w="3"/><text x="38.9597%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="38.9113%" y="1028" width="0.4032%" height="15" fill="rgb(205,42,20)" fg:x="193" fg:w="2"/><text x="39.1613%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="38.9113%" y="1044" width="0.4032%" height="15" fill="rgb(230,30,28)" fg:x="193" fg:w="2"/><text x="39.1613%" y="1054.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="38.9113%" y="1060" width="0.4032%" height="15" fill="rgb(205,73,54)" fg:x="193" fg:w="2"/><text x="39.1613%" y="1070.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="38.9113%" y="1076" width="0.4032%" height="15" fill="rgb(254,227,23)" fg:x="193" fg:w="2"/><text x="39.1613%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="38.9113%" y="1092" width="0.4032%" height="15" fill="rgb(228,202,34)" fg:x="193" fg:w="2"/><text x="39.1613%" y="1102.50"></text></g><g><title><module> (dask/array/fft.py:1) (10 samples, 2.02%)</title><rect x="37.5000%" y="772" width="2.0161%" height="15" fill="rgb(222,225,37)" fg:x="186" fg:w="10"/><text x="37.7500%" y="782.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.02%)</title><rect x="37.5000%" y="788" width="2.0161%" height="15" fill="rgb(221,14,54)" fg:x="186" fg:w="10"/><text x="37.7500%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.02%)</title><rect x="37.5000%" y="804" width="2.0161%" height="15" fill="rgb(254,102,2)" fg:x="186" fg:w="10"/><text x="37.7500%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.02%)</title><rect x="37.5000%" y="820" width="2.0161%" height="15" fill="rgb(232,104,17)" fg:x="186" fg:w="10"/><text x="37.7500%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.02%)</title><rect x="37.5000%" y="836" width="2.0161%" height="15" fill="rgb(250,220,14)" fg:x="186" fg:w="10"/><text x="37.7500%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="37.5000%" y="852" width="2.0161%" height="15" fill="rgb(241,158,9)" fg:x="186" fg:w="10"/><text x="37.7500%" y="862.50">_..</text></g><g><title><module> (scipy/fftpack/__init__.py:1) (9 samples, 1.81%)</title><rect x="37.7016%" y="868" width="1.8145%" height="15" fill="rgb(246,9,43)" fg:x="187" fg:w="9"/><text x="37.9516%" y="878.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="37.7016%" y="884" width="1.8145%" height="15" fill="rgb(206,73,33)" fg:x="187" fg:w="9"/><text x="37.9516%" y="894.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="37.7016%" y="900" width="1.8145%" height="15" fill="rgb(222,79,8)" fg:x="187" fg:w="9"/><text x="37.9516%" y="910.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="37.7016%" y="916" width="1.8145%" height="15" fill="rgb(234,8,54)" fg:x="187" fg:w="9"/><text x="37.9516%" y="926.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="37.7016%" y="932" width="1.8145%" height="15" fill="rgb(209,134,38)" fg:x="187" fg:w="9"/><text x="37.9516%" y="942.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="39.3145%" y="948" width="0.2016%" height="15" fill="rgb(230,127,29)" fg:x="195" fg:w="1"/><text x="39.5645%" y="958.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="39.3145%" y="964" width="0.2016%" height="15" fill="rgb(242,44,41)" fg:x="195" fg:w="1"/><text x="39.5645%" y="974.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.20%)</title><rect x="39.5161%" y="932" width="0.2016%" height="15" fill="rgb(222,56,43)" fg:x="196" fg:w="1"/><text x="39.7661%" y="942.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.20%)</title><rect x="39.5161%" y="948" width="0.2016%" height="15" fill="rgb(238,39,47)" fg:x="196" fg:w="1"/><text x="39.7661%" y="958.50"></text></g><g><title>Generator (dask/array/random.py:29) (2 samples, 0.40%)</title><rect x="39.5161%" y="884" width="0.4032%" height="15" fill="rgb(226,79,43)" fg:x="196" fg:w="2"/><text x="39.7661%" y="894.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.40%)</title><rect x="39.5161%" y="900" width="0.4032%" height="15" fill="rgb(242,105,53)" fg:x="196" fg:w="2"/><text x="39.7661%" y="910.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.40%)</title><rect x="39.5161%" y="916" width="0.4032%" height="15" fill="rgb(251,132,46)" fg:x="196" fg:w="2"/><text x="39.7661%" y="926.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.20%)</title><rect x="39.7177%" y="932" width="0.2016%" height="15" fill="rgb(231,77,14)" fg:x="197" fg:w="1"/><text x="39.9677%" y="942.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.20%)</title><rect x="39.7177%" y="948" width="0.2016%" height="15" fill="rgb(240,135,9)" fg:x="197" fg:w="1"/><text x="39.9677%" y="958.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.20%)</title><rect x="39.7177%" y="964" width="0.2016%" height="15" fill="rgb(248,109,14)" fg:x="197" fg:w="1"/><text x="39.9677%" y="974.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.20%)</title><rect x="39.7177%" y="980" width="0.2016%" height="15" fill="rgb(227,146,52)" fg:x="197" fg:w="1"/><text x="39.9677%" y="990.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.20%)</title><rect x="39.9194%" y="932" width="0.2016%" height="15" fill="rgb(232,54,3)" fg:x="198" fg:w="1"/><text x="40.1694%" y="942.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.20%)</title><rect x="39.9194%" y="948" width="0.2016%" height="15" fill="rgb(229,201,43)" fg:x="198" fg:w="1"/><text x="40.1694%" y="958.50"></text></g><g><title><module> (dask/array/linalg.py:1) (4 samples, 0.81%)</title><rect x="39.5161%" y="772" width="0.8065%" height="15" fill="rgb(252,161,33)" fg:x="196" fg:w="4"/><text x="39.7661%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="39.5161%" y="788" width="0.8065%" height="15" fill="rgb(226,146,40)" fg:x="196" fg:w="4"/><text x="39.7661%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="39.5161%" y="804" width="0.8065%" height="15" fill="rgb(219,47,25)" fg:x="196" fg:w="4"/><text x="39.7661%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="39.5161%" y="820" width="0.8065%" height="15" fill="rgb(250,135,13)" fg:x="196" fg:w="4"/><text x="39.7661%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="39.5161%" y="836" width="0.8065%" height="15" fill="rgb(219,229,18)" fg:x="196" fg:w="4"/><text x="39.7661%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="39.5161%" y="852" width="0.8065%" height="15" fill="rgb(217,152,27)" fg:x="196" fg:w="4"/><text x="39.7661%" y="862.50"></text></g><g><title><module> (dask/array/random.py:1) (4 samples, 0.81%)</title><rect x="39.5161%" y="868" width="0.8065%" height="15" fill="rgb(225,71,47)" fg:x="196" fg:w="4"/><text x="39.7661%" y="878.50"></text></g><g><title>RandomState (dask/array/random.py:490) (2 samples, 0.40%)</title><rect x="39.9194%" y="884" width="0.4032%" height="15" fill="rgb(220,139,14)" fg:x="198" fg:w="2"/><text x="40.1694%" y="894.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.40%)</title><rect x="39.9194%" y="900" width="0.4032%" height="15" fill="rgb(247,54,32)" fg:x="198" fg:w="2"/><text x="40.1694%" y="910.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.40%)</title><rect x="39.9194%" y="916" width="0.4032%" height="15" fill="rgb(252,131,39)" fg:x="198" fg:w="2"/><text x="40.1694%" y="926.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.20%)</title><rect x="40.1210%" y="932" width="0.2016%" height="15" fill="rgb(210,108,39)" fg:x="199" fg:w="1"/><text x="40.3710%" y="942.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.20%)</title><rect x="40.1210%" y="948" width="0.2016%" height="15" fill="rgb(205,23,29)" fg:x="199" fg:w="1"/><text x="40.3710%" y="958.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.20%)</title><rect x="40.1210%" y="964" width="0.2016%" height="15" fill="rgb(246,139,46)" fg:x="199" fg:w="1"/><text x="40.3710%" y="974.50"></text></g><g><title><module> (dask/array/reductions.py:1) (1 samples, 0.20%)</title><rect x="40.3226%" y="868" width="0.2016%" height="15" fill="rgb(250,81,26)" fg:x="200" fg:w="1"/><text x="40.5726%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.20%)</title><rect x="40.3226%" y="884" width="0.2016%" height="15" fill="rgb(214,104,7)" fg:x="200" fg:w="1"/><text x="40.5726%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.20%)</title><rect x="40.3226%" y="900" width="0.2016%" height="15" fill="rgb(233,189,8)" fg:x="200" fg:w="1"/><text x="40.5726%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.20%)</title><rect x="40.3226%" y="916" width="0.2016%" height="15" fill="rgb(228,141,17)" fg:x="200" fg:w="1"/><text x="40.5726%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.20%)</title><rect x="40.3226%" y="932" width="0.2016%" height="15" fill="rgb(247,157,1)" fg:x="200" fg:w="1"/><text x="40.5726%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.20%)</title><rect x="40.3226%" y="948" width="0.2016%" height="15" fill="rgb(249,225,5)" fg:x="200" fg:w="1"/><text x="40.5726%" y="958.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="40.3226%" y="964" width="0.2016%" height="15" fill="rgb(242,55,13)" fg:x="200" fg:w="1"/><text x="40.5726%" y="974.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.20%)</title><rect x="40.3226%" y="980" width="0.2016%" height="15" fill="rgb(230,49,50)" fg:x="200" fg:w="1"/><text x="40.5726%" y="990.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.20%)</title><rect x="40.3226%" y="996" width="0.2016%" height="15" fill="rgb(241,111,38)" fg:x="200" fg:w="1"/><text x="40.5726%" y="1006.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.20%)</title><rect x="40.3226%" y="1012" width="0.2016%" height="15" fill="rgb(252,155,4)" fg:x="200" fg:w="1"/><text x="40.5726%" y="1022.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.20%)</title><rect x="40.3226%" y="1028" width="0.2016%" height="15" fill="rgb(212,69,32)" fg:x="200" fg:w="1"/><text x="40.5726%" y="1038.50"></text></g><g><title>get (sre_parse.py:255) (1 samples, 0.20%)</title><rect x="40.3226%" y="1044" width="0.2016%" height="15" fill="rgb(243,107,47)" fg:x="200" fg:w="1"/><text x="40.5726%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="40.5242%" y="884" width="0.2016%" height="15" fill="rgb(247,130,12)" fg:x="201" fg:w="1"/><text x="40.7742%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="40.5242%" y="900" width="0.2016%" height="15" fill="rgb(233,74,16)" fg:x="201" fg:w="1"/><text x="40.7742%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="40.5242%" y="916" width="0.2016%" height="15" fill="rgb(208,58,18)" fg:x="201" fg:w="1"/><text x="40.7742%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="40.5242%" y="932" width="0.2016%" height="15" fill="rgb(242,225,1)" fg:x="201" fg:w="1"/><text x="40.7742%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="40.5242%" y="948" width="0.2016%" height="15" fill="rgb(249,39,40)" fg:x="201" fg:w="1"/><text x="40.7742%" y="958.50"></text></g><g><title><module> (dask/array/einsumfuncs.py:1) (1 samples, 0.20%)</title><rect x="40.5242%" y="964" width="0.2016%" height="15" fill="rgb(207,72,44)" fg:x="201" fg:w="1"/><text x="40.7742%" y="974.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.20%)</title><rect x="40.5242%" y="980" width="0.2016%" height="15" fill="rgb(215,193,12)" fg:x="201" fg:w="1"/><text x="40.7742%" y="990.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.20%)</title><rect x="40.5242%" y="996" width="0.2016%" height="15" fill="rgb(248,41,39)" fg:x="201" fg:w="1"/><text x="40.7742%" y="1006.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.20%)</title><rect x="40.5242%" y="1012" width="0.2016%" height="15" fill="rgb(253,85,4)" fg:x="201" fg:w="1"/><text x="40.7742%" y="1022.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.20%)</title><rect x="40.5242%" y="1028" width="0.2016%" height="15" fill="rgb(243,70,31)" fg:x="201" fg:w="1"/><text x="40.7742%" y="1038.50"></text></g><g><title>match (re.py:188) (1 samples, 0.20%)</title><rect x="40.5242%" y="1044" width="0.2016%" height="15" fill="rgb(253,195,26)" fg:x="201" fg:w="1"/><text x="40.7742%" y="1054.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="40.5242%" y="1060" width="0.2016%" height="15" fill="rgb(243,42,11)" fg:x="201" fg:w="1"/><text x="40.7742%" y="1070.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.20%)</title><rect x="40.7258%" y="916" width="0.2016%" height="15" fill="rgb(239,66,17)" fg:x="202" fg:w="1"/><text x="40.9758%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.20%)</title><rect x="40.7258%" y="932" width="0.2016%" height="15" fill="rgb(217,132,21)" fg:x="202" fg:w="1"/><text x="40.9758%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (36 samples, 7.26%)</title><rect x="34.0726%" y="548" width="7.2581%" height="15" fill="rgb(252,202,21)" fg:x="169" fg:w="36"/><text x="34.3226%" y="558.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (36 samples, 7.26%)</title><rect x="34.0726%" y="564" width="7.2581%" height="15" fill="rgb(233,98,36)" fg:x="169" fg:w="36"/><text x="34.3226%" y="574.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (36 samples, 7.26%)</title><rect x="34.0726%" y="580" width="7.2581%" height="15" fill="rgb(216,153,54)" fg:x="169" fg:w="36"/><text x="34.3226%" y="590.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (36 samples, 7.26%)</title><rect x="34.0726%" y="596" width="7.2581%" height="15" fill="rgb(250,99,7)" fg:x="169" fg:w="36"/><text x="34.3226%" y="606.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (36 samples, 7.26%)</title><rect x="34.0726%" y="612" width="7.2581%" height="15" fill="rgb(207,56,50)" fg:x="169" fg:w="36"/><text x="34.3226%" y="622.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (36 samples, 7.26%)</title><rect x="34.0726%" y="628" width="7.2581%" height="15" fill="rgb(244,61,34)" fg:x="169" fg:w="36"/><text x="34.3226%" y="638.50">_call_with..</text></g><g><title><module> (dask/array/__init__.py:1) (36 samples, 7.26%)</title><rect x="34.0726%" y="644" width="7.2581%" height="15" fill="rgb(241,50,38)" fg:x="169" fg:w="36"/><text x="34.3226%" y="654.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (36 samples, 7.26%)</title><rect x="34.0726%" y="660" width="7.2581%" height="15" fill="rgb(212,166,30)" fg:x="169" fg:w="36"/><text x="34.3226%" y="670.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (36 samples, 7.26%)</title><rect x="34.0726%" y="676" width="7.2581%" height="15" fill="rgb(249,127,32)" fg:x="169" fg:w="36"/><text x="34.3226%" y="686.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (36 samples, 7.26%)</title><rect x="34.0726%" y="692" width="7.2581%" height="15" fill="rgb(209,103,0)" fg:x="169" fg:w="36"/><text x="34.3226%" y="702.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (36 samples, 7.26%)</title><rect x="34.0726%" y="708" width="7.2581%" height="15" fill="rgb(238,209,51)" fg:x="169" fg:w="36"/><text x="34.3226%" y="718.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (36 samples, 7.26%)</title><rect x="34.0726%" y="724" width="7.2581%" height="15" fill="rgb(237,56,23)" fg:x="169" fg:w="36"/><text x="34.3226%" y="734.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (36 samples, 7.26%)</title><rect x="34.0726%" y="740" width="7.2581%" height="15" fill="rgb(215,153,46)" fg:x="169" fg:w="36"/><text x="34.3226%" y="750.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (36 samples, 7.26%)</title><rect x="34.0726%" y="756" width="7.2581%" height="15" fill="rgb(224,49,31)" fg:x="169" fg:w="36"/><text x="34.3226%" y="766.50">_call_with..</text></g><g><title><module> (dask/array/ma.py:1) (5 samples, 1.01%)</title><rect x="40.3226%" y="772" width="1.0081%" height="15" fill="rgb(250,18,42)" fg:x="200" fg:w="5"/><text x="40.5726%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="40.3226%" y="788" width="1.0081%" height="15" fill="rgb(215,176,39)" fg:x="200" fg:w="5"/><text x="40.5726%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="40.3226%" y="804" width="1.0081%" height="15" fill="rgb(223,77,29)" fg:x="200" fg:w="5"/><text x="40.5726%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="40.3226%" y="820" width="1.0081%" height="15" fill="rgb(234,94,52)" fg:x="200" fg:w="5"/><text x="40.5726%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="40.3226%" y="836" width="1.0081%" height="15" fill="rgb(220,154,50)" fg:x="200" fg:w="5"/><text x="40.5726%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="40.3226%" y="852" width="1.0081%" height="15" fill="rgb(212,11,10)" fg:x="200" fg:w="5"/><text x="40.5726%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (4 samples, 0.81%)</title><rect x="40.5242%" y="868" width="0.8065%" height="15" fill="rgb(205,166,19)" fg:x="201" fg:w="4"/><text x="40.7742%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 0.60%)</title><rect x="40.7258%" y="884" width="0.6048%" height="15" fill="rgb(244,198,16)" fg:x="202" fg:w="3"/><text x="40.9758%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 0.60%)</title><rect x="40.7258%" y="900" width="0.6048%" height="15" fill="rgb(219,69,12)" fg:x="202" fg:w="3"/><text x="40.9758%" y="910.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (2 samples, 0.40%)</title><rect x="40.9274%" y="916" width="0.4032%" height="15" fill="rgb(245,30,7)" fg:x="203" fg:w="2"/><text x="41.1774%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:806) (2 samples, 0.40%)</title><rect x="40.9274%" y="932" width="0.4032%" height="15" fill="rgb(218,221,48)" fg:x="203" fg:w="2"/><text x="41.1774%" y="942.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (2 samples, 0.40%)</title><rect x="40.9274%" y="948" width="0.4032%" height="15" fill="rgb(216,66,15)" fg:x="203" fg:w="2"/><text x="41.1774%" y="958.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (1 samples, 0.20%)</title><rect x="41.3306%" y="612" width="0.2016%" height="15" fill="rgb(226,122,50)" fg:x="205" fg:w="1"/><text x="41.5806%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.20%)</title><rect x="41.3306%" y="628" width="0.2016%" height="15" fill="rgb(239,156,16)" fg:x="205" fg:w="1"/><text x="41.5806%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.20%)</title><rect x="41.3306%" y="644" width="0.2016%" height="15" fill="rgb(224,27,38)" fg:x="205" fg:w="1"/><text x="41.5806%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.20%)</title><rect x="41.3306%" y="660" width="0.2016%" height="15" fill="rgb(224,39,27)" fg:x="205" fg:w="1"/><text x="41.5806%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.20%)</title><rect x="41.3306%" y="676" width="0.2016%" height="15" fill="rgb(215,92,29)" fg:x="205" fg:w="1"/><text x="41.5806%" y="686.50"></text></g><g><title>match (re.py:188) (1 samples, 0.20%)</title><rect x="41.3306%" y="692" width="0.2016%" height="15" fill="rgb(207,159,16)" fg:x="205" fg:w="1"/><text x="41.5806%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="41.3306%" y="708" width="0.2016%" height="15" fill="rgb(238,163,47)" fg:x="205" fg:w="1"/><text x="41.5806%" y="718.50"></text></g><g><title>get_named_args (dask/utils.py:693) (2 samples, 0.40%)</title><rect x="41.5323%" y="660" width="0.4032%" height="15" fill="rgb(219,91,49)" fg:x="206" fg:w="2"/><text x="41.7823%" y="670.50"></text></g><g><title>signature (inspect.py:3111) (2 samples, 0.40%)</title><rect x="41.5323%" y="676" width="0.4032%" height="15" fill="rgb(227,167,31)" fg:x="206" fg:w="2"/><text x="41.7823%" y="686.50"></text></g><g><title>from_callable (inspect.py:2859) (2 samples, 0.40%)</title><rect x="41.5323%" y="692" width="0.4032%" height="15" fill="rgb(234,80,54)" fg:x="206" fg:w="2"/><text x="41.7823%" y="702.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (2 samples, 0.40%)</title><rect x="41.5323%" y="708" width="0.4032%" height="15" fill="rgb(212,114,2)" fg:x="206" fg:w="2"/><text x="41.7823%" y="718.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (2 samples, 0.40%)</title><rect x="41.5323%" y="724" width="0.4032%" height="15" fill="rgb(234,50,24)" fg:x="206" fg:w="2"/><text x="41.7823%" y="734.50"></text></g><g><title>__init__ (inspect.py:2781) (1 samples, 0.20%)</title><rect x="41.7339%" y="740" width="0.2016%" height="15" fill="rgb(221,68,8)" fg:x="207" fg:w="1"/><text x="41.9839%" y="750.50"></text></g><g><title><genexpr> (inspect.py:2830) (1 samples, 0.20%)</title><rect x="41.7339%" y="756" width="0.2016%" height="15" fill="rgb(254,180,31)" fg:x="207" fg:w="1"/><text x="41.9839%" y="766.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (3 samples, 0.60%)</title><rect x="41.5323%" y="612" width="0.6048%" height="15" fill="rgb(247,130,50)" fg:x="206" fg:w="3"/><text x="41.7823%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 0.60%)</title><rect x="41.5323%" y="628" width="0.6048%" height="15" fill="rgb(211,109,4)" fg:x="206" fg:w="3"/><text x="41.7823%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 0.60%)</title><rect x="41.5323%" y="644" width="0.6048%" height="15" fill="rgb(238,50,21)" fg:x="206" fg:w="3"/><text x="41.7823%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.20%)</title><rect x="41.9355%" y="660" width="0.2016%" height="15" fill="rgb(225,57,45)" fg:x="208" fg:w="1"/><text x="42.1855%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.20%)</title><rect x="41.9355%" y="676" width="0.2016%" height="15" fill="rgb(209,196,50)" fg:x="208" fg:w="1"/><text x="42.1855%" y="686.50"></text></g><g><title>match (re.py:188) (1 samples, 0.20%)</title><rect x="41.9355%" y="692" width="0.2016%" height="15" fill="rgb(242,140,13)" fg:x="208" fg:w="1"/><text x="42.1855%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="41.9355%" y="708" width="0.2016%" height="15" fill="rgb(217,111,7)" fg:x="208" fg:w="1"/><text x="42.1855%" y="718.50"></text></g><g><title><module> (fsspec/compression.py:1) (2 samples, 0.40%)</title><rect x="42.1371%" y="1028" width="0.4032%" height="15" fill="rgb(253,193,51)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="42.1371%" y="1044" width="0.4032%" height="15" fill="rgb(252,70,29)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="42.1371%" y="1060" width="0.4032%" height="15" fill="rgb(232,127,12)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="42.1371%" y="1076" width="0.4032%" height="15" fill="rgb(211,180,21)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="42.1371%" y="1092" width="0.4032%" height="15" fill="rgb(229,72,13)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="42.1371%" y="1108" width="0.4032%" height="15" fill="rgb(240,211,49)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1118.50"></text></g><g><title><module> (lz4/frame/__init__.py:1) (2 samples, 0.40%)</title><rect x="42.1371%" y="1124" width="0.4032%" height="15" fill="rgb(219,149,40)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="42.1371%" y="1140" width="0.4032%" height="15" fill="rgb(210,127,46)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="42.1371%" y="1156" width="0.4032%" height="15" fill="rgb(220,106,7)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="42.1371%" y="1172" width="0.4032%" height="15" fill="rgb(249,31,22)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1182.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="42.1371%" y="1188" width="0.4032%" height="15" fill="rgb(253,1,49)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1198.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="42.1371%" y="1204" width="0.4032%" height="15" fill="rgb(227,144,33)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="42.1371%" y="1220" width="0.4032%" height="15" fill="rgb(249,163,44)" fg:x="209" fg:w="2"/><text x="42.3871%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="42.1371%" y="1012" width="1.4113%" height="15" fill="rgb(234,15,39)" fg:x="209" fg:w="7"/><text x="42.3871%" y="1022.50"></text></g><g><title><module> (fsspec/exceptions.py:1) (5 samples, 1.01%)</title><rect x="42.5403%" y="1028" width="1.0081%" height="15" fill="rgb(207,66,16)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="42.5403%" y="1044" width="1.0081%" height="15" fill="rgb(233,112,24)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="42.5403%" y="1060" width="1.0081%" height="15" fill="rgb(230,90,22)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="42.5403%" y="1076" width="1.0081%" height="15" fill="rgb(229,61,13)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="42.5403%" y="1092" width="1.0081%" height="15" fill="rgb(225,57,24)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="42.5403%" y="1108" width="1.0081%" height="15" fill="rgb(208,169,48)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1118.50"></text></g><g><title><module> (asyncio/__init__.py:1) (5 samples, 1.01%)</title><rect x="42.5403%" y="1124" width="1.0081%" height="15" fill="rgb(244,218,51)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="42.5403%" y="1140" width="1.0081%" height="15" fill="rgb(214,148,10)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="42.5403%" y="1156" width="1.0081%" height="15" fill="rgb(225,174,27)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="42.5403%" y="1172" width="1.0081%" height="15" fill="rgb(230,96,26)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1182.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="42.5403%" y="1188" width="1.0081%" height="15" fill="rgb(232,10,30)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="42.5403%" y="1204" width="1.0081%" height="15" fill="rgb(222,8,50)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1214.50"></text></g><g><title><module> (asyncio/base_events.py:1) (5 samples, 1.01%)</title><rect x="42.5403%" y="1220" width="1.0081%" height="15" fill="rgb(213,81,27)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="42.5403%" y="1236" width="1.0081%" height="15" fill="rgb(245,50,10)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="42.5403%" y="1252" width="1.0081%" height="15" fill="rgb(216,100,18)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="42.5403%" y="1268" width="1.0081%" height="15" fill="rgb(236,147,54)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="42.5403%" y="1284" width="1.0081%" height="15" fill="rgb(205,143,26)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="42.5403%" y="1300" width="1.0081%" height="15" fill="rgb(236,26,9)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1310.50"></text></g><g><title><module> (ssl.py:4) (5 samples, 1.01%)</title><rect x="42.5403%" y="1316" width="1.0081%" height="15" fill="rgb(221,165,53)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="42.5403%" y="1332" width="1.0081%" height="15" fill="rgb(214,110,17)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="42.5403%" y="1348" width="1.0081%" height="15" fill="rgb(237,197,12)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1358.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="42.5403%" y="1364" width="1.0081%" height="15" fill="rgb(205,84,17)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1374.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (5 samples, 1.01%)</title><rect x="42.5403%" y="1380" width="1.0081%" height="15" fill="rgb(237,18,45)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1390.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (5 samples, 1.01%)</title><rect x="42.5403%" y="1396" width="1.0081%" height="15" fill="rgb(221,87,14)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="42.5403%" y="1412" width="1.0081%" height="15" fill="rgb(238,186,15)" fg:x="211" fg:w="5"/><text x="42.7903%" y="1422.50"></text></g><g><title><module> (dask/bag/avro.py:1) (8 samples, 1.61%)</title><rect x="42.1371%" y="788" width="1.6129%" height="15" fill="rgb(208,115,11)" fg:x="209" fg:w="8"/><text x="42.3871%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="42.1371%" y="804" width="1.6129%" height="15" fill="rgb(254,175,0)" fg:x="209" fg:w="8"/><text x="42.3871%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="42.1371%" y="820" width="1.6129%" height="15" fill="rgb(227,24,42)" fg:x="209" fg:w="8"/><text x="42.3871%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="42.1371%" y="836" width="1.6129%" height="15" fill="rgb(223,211,37)" fg:x="209" fg:w="8"/><text x="42.3871%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="42.1371%" y="852" width="1.6129%" height="15" fill="rgb(235,49,27)" fg:x="209" fg:w="8"/><text x="42.3871%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="42.1371%" y="868" width="1.6129%" height="15" fill="rgb(254,97,51)" fg:x="209" fg:w="8"/><text x="42.3871%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="42.1371%" y="884" width="1.6129%" height="15" fill="rgb(249,51,40)" fg:x="209" fg:w="8"/><text x="42.3871%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="42.1371%" y="900" width="1.6129%" height="15" fill="rgb(210,128,45)" fg:x="209" fg:w="8"/><text x="42.3871%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="42.1371%" y="916" width="1.6129%" height="15" fill="rgb(224,137,50)" fg:x="209" fg:w="8"/><text x="42.3871%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (8 samples, 1.61%)</title><rect x="42.1371%" y="932" width="1.6129%" height="15" fill="rgb(242,15,9)" fg:x="209" fg:w="8"/><text x="42.3871%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="42.1371%" y="948" width="1.6129%" height="15" fill="rgb(233,187,41)" fg:x="209" fg:w="8"/><text x="42.3871%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="42.1371%" y="964" width="1.6129%" height="15" fill="rgb(227,2,29)" fg:x="209" fg:w="8"/><text x="42.3871%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="42.1371%" y="980" width="1.6129%" height="15" fill="rgb(222,70,3)" fg:x="209" fg:w="8"/><text x="42.3871%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="42.1371%" y="996" width="1.6129%" height="15" fill="rgb(213,11,42)" fg:x="209" fg:w="8"/><text x="42.3871%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="43.5484%" y="1012" width="0.2016%" height="15" fill="rgb(225,150,9)" fg:x="216" fg:w="1"/><text x="43.7984%" y="1022.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="43.5484%" y="1028" width="0.2016%" height="15" fill="rgb(230,162,45)" fg:x="216" fg:w="1"/><text x="43.7984%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="42.1371%" y="612" width="1.8145%" height="15" fill="rgb(222,14,52)" fg:x="209" fg:w="9"/><text x="42.3871%" y="622.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="42.1371%" y="628" width="1.8145%" height="15" fill="rgb(254,198,14)" fg:x="209" fg:w="9"/><text x="42.3871%" y="638.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="42.1371%" y="644" width="1.8145%" height="15" fill="rgb(220,217,30)" fg:x="209" fg:w="9"/><text x="42.3871%" y="654.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="42.1371%" y="660" width="1.8145%" height="15" fill="rgb(215,146,41)" fg:x="209" fg:w="9"/><text x="42.3871%" y="670.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="42.1371%" y="676" width="1.8145%" height="15" fill="rgb(217,27,36)" fg:x="209" fg:w="9"/><text x="42.3871%" y="686.50">_..</text></g><g><title><module> (dask/bag/__init__.py:1) (9 samples, 1.81%)</title><rect x="42.1371%" y="692" width="1.8145%" height="15" fill="rgb(219,218,39)" fg:x="209" fg:w="9"/><text x="42.3871%" y="702.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.81%)</title><rect x="42.1371%" y="708" width="1.8145%" height="15" fill="rgb(219,4,42)" fg:x="209" fg:w="9"/><text x="42.3871%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.81%)</title><rect x="42.1371%" y="724" width="1.8145%" height="15" fill="rgb(249,119,36)" fg:x="209" fg:w="9"/><text x="42.3871%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.81%)</title><rect x="42.1371%" y="740" width="1.8145%" height="15" fill="rgb(209,23,33)" fg:x="209" fg:w="9"/><text x="42.3871%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.81%)</title><rect x="42.1371%" y="756" width="1.8145%" height="15" fill="rgb(211,10,0)" fg:x="209" fg:w="9"/><text x="42.3871%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.81%)</title><rect x="42.1371%" y="772" width="1.8145%" height="15" fill="rgb(208,99,37)" fg:x="209" fg:w="9"/><text x="42.3871%" y="782.50">_..</text></g><g><title><module> (dask/bag/core.py:1) (1 samples, 0.20%)</title><rect x="43.7500%" y="788" width="0.2016%" height="15" fill="rgb(213,132,31)" fg:x="217" fg:w="1"/><text x="44.0000%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="43.7500%" y="804" width="0.2016%" height="15" fill="rgb(243,129,40)" fg:x="217" fg:w="1"/><text x="44.0000%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="43.7500%" y="820" width="0.2016%" height="15" fill="rgb(210,66,33)" fg:x="217" fg:w="1"/><text x="44.0000%" y="830.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="43.7500%" y="836" width="0.2016%" height="15" fill="rgb(209,189,4)" fg:x="217" fg:w="1"/><text x="44.0000%" y="846.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="43.7500%" y="852" width="0.2016%" height="15" fill="rgb(214,107,37)" fg:x="217" fg:w="1"/><text x="44.0000%" y="862.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="43.7500%" y="868" width="0.2016%" height="15" fill="rgb(245,88,54)" fg:x="217" fg:w="1"/><text x="44.0000%" y="878.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="43.7500%" y="884" width="0.2016%" height="15" fill="rgb(205,146,20)" fg:x="217" fg:w="1"/><text x="44.0000%" y="894.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.20%)</title><rect x="43.7500%" y="900" width="0.2016%" height="15" fill="rgb(220,161,25)" fg:x="217" fg:w="1"/><text x="44.0000%" y="910.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.20%)</title><rect x="43.9516%" y="1220" width="0.2016%" height="15" fill="rgb(215,152,15)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1230.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.20%)</title><rect x="43.9516%" y="1236" width="0.2016%" height="15" fill="rgb(233,192,44)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1246.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.20%)</title><rect x="43.9516%" y="1252" width="0.2016%" height="15" fill="rgb(240,170,46)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1262.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.20%)</title><rect x="43.9516%" y="1268" width="0.2016%" height="15" fill="rgb(207,104,33)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1278.50"></text></g><g><title>_signature_is_builtin (inspect.py:1866) (1 samples, 0.20%)</title><rect x="43.9516%" y="1284" width="0.2016%" height="15" fill="rgb(219,21,39)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1294.50"></text></g><g><title>ismethoddescriptor (inspect.py:91) (1 samples, 0.20%)</title><rect x="43.9516%" y="1300" width="0.2016%" height="15" fill="rgb(214,133,29)" fg:x="218" fg:w="1"/><text x="44.2016%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="43.9516%" y="804" width="0.4032%" height="15" fill="rgb(226,93,6)" fg:x="218" fg:w="2"/><text x="44.2016%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (2 samples, 0.40%)</title><rect x="43.9516%" y="820" width="0.4032%" height="15" fill="rgb(252,222,34)" fg:x="218" fg:w="2"/><text x="44.2016%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="43.9516%" y="836" width="0.4032%" height="15" fill="rgb(252,92,48)" fg:x="218" fg:w="2"/><text x="44.2016%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="43.9516%" y="852" width="0.4032%" height="15" fill="rgb(245,223,24)" fg:x="218" fg:w="2"/><text x="44.2016%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="43.9516%" y="868" width="0.4032%" height="15" fill="rgb(205,176,3)" fg:x="218" fg:w="2"/><text x="44.2016%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="43.9516%" y="884" width="0.4032%" height="15" fill="rgb(235,151,15)" fg:x="218" fg:w="2"/><text x="44.2016%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="43.9516%" y="900" width="0.4032%" height="15" fill="rgb(237,209,11)" fg:x="218" fg:w="2"/><text x="44.2016%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="43.9516%" y="916" width="0.4032%" height="15" fill="rgb(243,227,24)" fg:x="218" fg:w="2"/><text x="44.2016%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="43.9516%" y="932" width="0.4032%" height="15" fill="rgb(239,193,16)" fg:x="218" fg:w="2"/><text x="44.2016%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (2 samples, 0.40%)</title><rect x="43.9516%" y="948" width="0.4032%" height="15" fill="rgb(231,27,9)" fg:x="218" fg:w="2"/><text x="44.2016%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="43.9516%" y="964" width="0.4032%" height="15" fill="rgb(219,169,10)" fg:x="218" fg:w="2"/><text x="44.2016%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="43.9516%" y="980" width="0.4032%" height="15" fill="rgb(244,229,43)" fg:x="218" fg:w="2"/><text x="44.2016%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="43.9516%" y="996" width="0.4032%" height="15" fill="rgb(254,38,20)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="43.9516%" y="1012" width="0.4032%" height="15" fill="rgb(250,47,30)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="43.9516%" y="1028" width="0.4032%" height="15" fill="rgb(224,124,36)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (2 samples, 0.40%)</title><rect x="43.9516%" y="1044" width="0.4032%" height="15" fill="rgb(246,68,51)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="43.9516%" y="1060" width="0.4032%" height="15" fill="rgb(253,43,49)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="43.9516%" y="1076" width="0.4032%" height="15" fill="rgb(219,54,36)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="43.9516%" y="1092" width="0.4032%" height="15" fill="rgb(227,133,34)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="43.9516%" y="1108" width="0.4032%" height="15" fill="rgb(247,227,15)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="43.9516%" y="1124" width="0.4032%" height="15" fill="rgb(229,96,14)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (2 samples, 0.40%)</title><rect x="43.9516%" y="1140" width="0.4032%" height="15" fill="rgb(220,79,17)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1150.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (2 samples, 0.40%)</title><rect x="43.9516%" y="1156" width="0.4032%" height="15" fill="rgb(205,131,53)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1166.50"></text></g><g><title>_bind_property (dask/dataframe/accessor.py:25) (2 samples, 0.40%)</title><rect x="43.9516%" y="1172" width="0.4032%" height="15" fill="rgb(209,50,29)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1182.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.40%)</title><rect x="43.9516%" y="1188" width="0.4032%" height="15" fill="rgb(245,86,46)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1198.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.40%)</title><rect x="43.9516%" y="1204" width="0.4032%" height="15" fill="rgb(235,66,46)" fg:x="218" fg:w="2"/><text x="44.2016%" y="1214.50"></text></g><g><title>ignore_warning (dask/utils.py:829) (1 samples, 0.20%)</title><rect x="44.1532%" y="1220" width="0.2016%" height="15" fill="rgb(232,148,31)" fg:x="219" fg:w="1"/><text x="44.4032%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 3.23%)</title><rect x="41.3306%" y="580" width="3.2258%" height="15" fill="rgb(217,149,8)" fg:x="205" fg:w="16"/><text x="41.5806%" y="590.50">_ca..</text></g><g><title><module> (dask/dataframe/core.py:1) (16 samples, 3.23%)</title><rect x="41.3306%" y="596" width="3.2258%" height="15" fill="rgb(209,183,11)" fg:x="205" fg:w="16"/><text x="41.5806%" y="606.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="43.9516%" y="612" width="0.6048%" height="15" fill="rgb(208,55,20)" fg:x="218" fg:w="3"/><text x="44.2016%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="43.9516%" y="628" width="0.6048%" height="15" fill="rgb(218,39,14)" fg:x="218" fg:w="3"/><text x="44.2016%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="43.9516%" y="644" width="0.6048%" height="15" fill="rgb(216,169,33)" fg:x="218" fg:w="3"/><text x="44.2016%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="43.9516%" y="660" width="0.6048%" height="15" fill="rgb(233,80,24)" fg:x="218" fg:w="3"/><text x="44.2016%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="43.9516%" y="676" width="0.6048%" height="15" fill="rgb(213,179,31)" fg:x="218" fg:w="3"/><text x="44.2016%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="43.9516%" y="692" width="0.6048%" height="15" fill="rgb(209,19,5)" fg:x="218" fg:w="3"/><text x="44.2016%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="43.9516%" y="708" width="0.6048%" height="15" fill="rgb(219,18,35)" fg:x="218" fg:w="3"/><text x="44.2016%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (3 samples, 0.60%)</title><rect x="43.9516%" y="724" width="0.6048%" height="15" fill="rgb(209,169,16)" fg:x="218" fg:w="3"/><text x="44.2016%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="43.9516%" y="740" width="0.6048%" height="15" fill="rgb(245,90,51)" fg:x="218" fg:w="3"/><text x="44.2016%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="43.9516%" y="756" width="0.6048%" height="15" fill="rgb(220,99,45)" fg:x="218" fg:w="3"/><text x="44.2016%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="43.9516%" y="772" width="0.6048%" height="15" fill="rgb(249,89,25)" fg:x="218" fg:w="3"/><text x="44.2016%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="43.9516%" y="788" width="0.6048%" height="15" fill="rgb(239,193,0)" fg:x="218" fg:w="3"/><text x="44.2016%" y="798.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="44.3548%" y="804" width="0.2016%" height="15" fill="rgb(231,126,1)" fg:x="220" fg:w="1"/><text x="44.6048%" y="814.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="44.3548%" y="820" width="0.2016%" height="15" fill="rgb(243,166,3)" fg:x="220" fg:w="1"/><text x="44.6048%" y="830.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (54 samples, 10.89%)</title><rect x="34.0726%" y="500" width="10.8871%" height="15" fill="rgb(223,22,34)" fg:x="169" fg:w="54"/><text x="34.3226%" y="510.50"><module> (dask/d..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (54 samples, 10.89%)</title><rect x="34.0726%" y="516" width="10.8871%" height="15" fill="rgb(251,52,51)" fg:x="169" fg:w="54"/><text x="34.3226%" y="526.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (54 samples, 10.89%)</title><rect x="34.0726%" y="532" width="10.8871%" height="15" fill="rgb(221,165,28)" fg:x="169" fg:w="54"/><text x="34.3226%" y="542.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.63%)</title><rect x="41.3306%" y="548" width="3.6290%" height="15" fill="rgb(218,121,47)" fg:x="205" fg:w="18"/><text x="41.5806%" y="558.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.63%)</title><rect x="41.3306%" y="564" width="3.6290%" height="15" fill="rgb(209,120,9)" fg:x="205" fg:w="18"/><text x="41.5806%" y="574.50">exec..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="44.5565%" y="580" width="0.4032%" height="15" fill="rgb(236,68,12)" fg:x="221" fg:w="2"/><text x="44.8065%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.40%)</title><rect x="44.5565%" y="596" width="0.4032%" height="15" fill="rgb(225,194,26)" fg:x="221" fg:w="2"/><text x="44.8065%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="44.9597%" y="612" width="0.2016%" height="15" fill="rgb(231,84,39)" fg:x="223" fg:w="1"/><text x="45.2097%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="44.9597%" y="628" width="0.2016%" height="15" fill="rgb(210,11,45)" fg:x="223" fg:w="1"/><text x="45.2097%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="44.9597%" y="644" width="0.2016%" height="15" fill="rgb(224,54,52)" fg:x="223" fg:w="1"/><text x="45.2097%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="44.9597%" y="660" width="0.2016%" height="15" fill="rgb(238,102,14)" fg:x="223" fg:w="1"/><text x="45.2097%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="44.9597%" y="676" width="0.2016%" height="15" fill="rgb(243,160,52)" fg:x="223" fg:w="1"/><text x="45.2097%" y="686.50"></text></g><g><title><module> (dask/dataframe/io/parquet/__init__.py:1) (1 samples, 0.20%)</title><rect x="44.9597%" y="692" width="0.2016%" height="15" fill="rgb(216,114,19)" fg:x="223" fg:w="1"/><text x="45.2097%" y="702.50"></text></g><g><title><module> (qarray/__init__.py:1) (69 samples, 13.91%)</title><rect x="31.4516%" y="180" width="13.9113%" height="15" fill="rgb(244,166,37)" fg:x="156" fg:w="69"/><text x="31.7016%" y="190.50"><module> (qarray/__in..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (69 samples, 13.91%)</title><rect x="31.4516%" y="196" width="13.9113%" height="15" fill="rgb(246,29,44)" fg:x="156" fg:w="69"/><text x="31.7016%" y="206.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (69 samples, 13.91%)</title><rect x="31.4516%" y="212" width="13.9113%" height="15" fill="rgb(215,56,53)" fg:x="156" fg:w="69"/><text x="31.7016%" y="222.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (69 samples, 13.91%)</title><rect x="31.4516%" y="228" width="13.9113%" height="15" fill="rgb(217,60,2)" fg:x="156" fg:w="69"/><text x="31.7016%" y="238.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (69 samples, 13.91%)</title><rect x="31.4516%" y="244" width="13.9113%" height="15" fill="rgb(207,26,24)" fg:x="156" fg:w="69"/><text x="31.7016%" y="254.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (69 samples, 13.91%)</title><rect x="31.4516%" y="260" width="13.9113%" height="15" fill="rgb(252,210,15)" fg:x="156" fg:w="69"/><text x="31.7016%" y="270.50">_call_with_frames_rem..</text></g><g><title><module> (qarray/df.py:1) (58 samples, 11.69%)</title><rect x="33.6694%" y="276" width="11.6935%" height="15" fill="rgb(253,209,26)" fg:x="167" fg:w="58"/><text x="33.9194%" y="286.50"><module> (qarray/..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (58 samples, 11.69%)</title><rect x="33.6694%" y="292" width="11.6935%" height="15" fill="rgb(238,170,14)" fg:x="167" fg:w="58"/><text x="33.9194%" y="302.50">_find_and_load (<..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (58 samples, 11.69%)</title><rect x="33.6694%" y="308" width="11.6935%" height="15" fill="rgb(216,178,15)" fg:x="167" fg:w="58"/><text x="33.9194%" y="318.50">_find_and_load_un..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (58 samples, 11.69%)</title><rect x="33.6694%" y="324" width="11.6935%" height="15" fill="rgb(250,197,2)" fg:x="167" fg:w="58"/><text x="33.9194%" y="334.50">_load_unlocked (<..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (58 samples, 11.69%)</title><rect x="33.6694%" y="340" width="11.6935%" height="15" fill="rgb(212,70,42)" fg:x="167" fg:w="58"/><text x="33.9194%" y="350.50">exec_module (<fro..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (58 samples, 11.69%)</title><rect x="33.6694%" y="356" width="11.6935%" height="15" fill="rgb(227,213,9)" fg:x="167" fg:w="58"/><text x="33.9194%" y="366.50">_call_with_frames..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (58 samples, 11.69%)</title><rect x="33.6694%" y="372" width="11.6935%" height="15" fill="rgb(245,99,25)" fg:x="167" fg:w="58"/><text x="33.9194%" y="382.50"><module> (dask/da..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (56 samples, 11.29%)</title><rect x="34.0726%" y="388" width="11.2903%" height="15" fill="rgb(250,82,29)" fg:x="169" fg:w="56"/><text x="34.3226%" y="398.50">_handle_fromlist ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 11.29%)</title><rect x="34.0726%" y="404" width="11.2903%" height="15" fill="rgb(241,226,54)" fg:x="169" fg:w="56"/><text x="34.3226%" y="414.50">_call_with_frames..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (56 samples, 11.29%)</title><rect x="34.0726%" y="420" width="11.2903%" height="15" fill="rgb(221,99,41)" fg:x="169" fg:w="56"/><text x="34.3226%" y="430.50">_find_and_load (<..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (56 samples, 11.29%)</title><rect x="34.0726%" y="436" width="11.2903%" height="15" fill="rgb(213,90,21)" fg:x="169" fg:w="56"/><text x="34.3226%" y="446.50">_find_and_load_un..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (56 samples, 11.29%)</title><rect x="34.0726%" y="452" width="11.2903%" height="15" fill="rgb(205,208,24)" fg:x="169" fg:w="56"/><text x="34.3226%" y="462.50">_load_unlocked (<..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (56 samples, 11.29%)</title><rect x="34.0726%" y="468" width="11.2903%" height="15" fill="rgb(246,31,12)" fg:x="169" fg:w="56"/><text x="34.3226%" y="478.50">exec_module (<fro..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 11.29%)</title><rect x="34.0726%" y="484" width="11.2903%" height="15" fill="rgb(213,154,6)" fg:x="169" fg:w="56"/><text x="34.3226%" y="494.50">_call_with_frames..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (2 samples, 0.40%)</title><rect x="44.9597%" y="500" width="0.4032%" height="15" fill="rgb(222,163,29)" fg:x="223" fg:w="2"/><text x="45.2097%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="44.9597%" y="516" width="0.4032%" height="15" fill="rgb(227,201,8)" fg:x="223" fg:w="2"/><text x="45.2097%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="44.9597%" y="532" width="0.4032%" height="15" fill="rgb(233,9,32)" fg:x="223" fg:w="2"/><text x="45.2097%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="44.9597%" y="548" width="0.4032%" height="15" fill="rgb(217,54,24)" fg:x="223" fg:w="2"/><text x="45.2097%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="44.9597%" y="564" width="0.4032%" height="15" fill="rgb(235,192,0)" fg:x="223" fg:w="2"/><text x="45.2097%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="44.9597%" y="580" width="0.4032%" height="15" fill="rgb(235,45,9)" fg:x="223" fg:w="2"/><text x="45.2097%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (2 samples, 0.40%)</title><rect x="44.9597%" y="596" width="0.4032%" height="15" fill="rgb(246,42,40)" fg:x="223" fg:w="2"/><text x="45.2097%" y="606.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="45.1613%" y="612" width="0.2016%" height="15" fill="rgb(248,111,24)" fg:x="224" fg:w="1"/><text x="45.4113%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="45.1613%" y="628" width="0.2016%" height="15" fill="rgb(249,65,22)" fg:x="224" fg:w="1"/><text x="45.4113%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="45.1613%" y="644" width="0.2016%" height="15" fill="rgb(238,111,51)" fg:x="224" fg:w="1"/><text x="45.4113%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="45.1613%" y="660" width="0.2016%" height="15" fill="rgb(250,118,22)" fg:x="224" fg:w="1"/><text x="45.4113%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="45.1613%" y="676" width="0.2016%" height="15" fill="rgb(234,84,26)" fg:x="224" fg:w="1"/><text x="45.4113%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="45.1613%" y="692" width="0.2016%" height="15" fill="rgb(243,172,12)" fg:x="224" fg:w="1"/><text x="45.4113%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="45.1613%" y="708" width="0.2016%" height="15" fill="rgb(236,150,49)" fg:x="224" fg:w="1"/><text x="45.4113%" y="718.50"></text></g><g><title><module> (dask/dataframe/io/demo.py:1) (1 samples, 0.20%)</title><rect x="45.1613%" y="724" width="0.2016%" height="15" fill="rgb(225,197,26)" fg:x="224" fg:w="1"/><text x="45.4113%" y="734.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.20%)</title><rect x="45.1613%" y="740" width="0.2016%" height="15" fill="rgb(214,17,42)" fg:x="224" fg:w="1"/><text x="45.4113%" y="750.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.20%)</title><rect x="45.1613%" y="756" width="0.2016%" height="15" fill="rgb(224,165,40)" fg:x="224" fg:w="1"/><text x="45.4113%" y="766.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.20%)</title><rect x="45.1613%" y="772" width="0.2016%" height="15" fill="rgb(246,100,4)" fg:x="224" fg:w="1"/><text x="45.4113%" y="782.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.20%)</title><rect x="45.1613%" y="788" width="0.2016%" height="15" fill="rgb(222,103,0)" fg:x="224" fg:w="1"/><text x="45.4113%" y="798.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.20%)</title><rect x="45.1613%" y="804" width="0.2016%" height="15" fill="rgb(227,189,26)" fg:x="224" fg:w="1"/><text x="45.4113%" y="814.50"></text></g><g><title><module> (numpy/core/numeric.py:1) (1 samples, 0.20%)</title><rect x="45.3629%" y="772" width="0.2016%" height="15" fill="rgb(214,202,17)" fg:x="225" fg:w="1"/><text x="45.6129%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="45.3629%" y="788" width="0.2016%" height="15" fill="rgb(229,111,3)" fg:x="225" fg:w="1"/><text x="45.6129%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="45.3629%" y="804" width="0.2016%" height="15" fill="rgb(229,172,15)" fg:x="225" fg:w="1"/><text x="45.6129%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="45.3629%" y="820" width="0.2016%" height="15" fill="rgb(230,224,35)" fg:x="225" fg:w="1"/><text x="45.6129%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="45.3629%" y="836" width="0.2016%" height="15" fill="rgb(251,141,6)" fg:x="225" fg:w="1"/><text x="45.6129%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="45.3629%" y="852" width="0.2016%" height="15" fill="rgb(225,208,6)" fg:x="225" fg:w="1"/><text x="45.6129%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="45.3629%" y="868" width="0.2016%" height="15" fill="rgb(246,181,16)" fg:x="225" fg:w="1"/><text x="45.6129%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="45.3629%" y="884" width="0.2016%" height="15" fill="rgb(227,129,36)" fg:x="225" fg:w="1"/><text x="45.6129%" y="894.50"></text></g><g><title><module> (numpy/core/shape_base.py:1) (1 samples, 0.20%)</title><rect x="45.3629%" y="900" width="0.2016%" height="15" fill="rgb(248,117,24)" fg:x="225" fg:w="1"/><text x="45.6129%" y="910.50"></text></g><g><title>decorator (numpy/core/overrides.py:142) (1 samples, 0.20%)</title><rect x="45.3629%" y="916" width="0.2016%" height="15" fill="rgb(214,185,35)" fg:x="225" fg:w="1"/><text x="45.6129%" y="926.50"></text></g><g><title>verify_matching_signatures (numpy/core/overrides.py:83) (1 samples, 0.20%)</title><rect x="45.3629%" y="932" width="0.2016%" height="15" fill="rgb(236,150,34)" fg:x="225" fg:w="1"/><text x="45.6129%" y="942.50"></text></g><g><title>getargspec (numpy/_utils/_inspect.py:96) (1 samples, 0.20%)</title><rect x="45.3629%" y="948" width="0.2016%" height="15" fill="rgb(243,228,27)" fg:x="225" fg:w="1"/><text x="45.6129%" y="958.50"></text></g><g><title>getargs (numpy/_utils/_inspect.py:65) (1 samples, 0.20%)</title><rect x="45.3629%" y="964" width="0.2016%" height="15" fill="rgb(245,77,44)" fg:x="225" fg:w="1"/><text x="45.6129%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="45.5645%" y="948" width="0.8065%" height="15" fill="rgb(235,214,42)" fg:x="226" fg:w="4"/><text x="45.8145%" y="958.50"></text></g><g><title><module> (numpy/compat/__init__.py:1) (4 samples, 0.81%)</title><rect x="45.5645%" y="964" width="0.8065%" height="15" fill="rgb(221,74,3)" fg:x="226" fg:w="4"/><text x="45.8145%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="45.5645%" y="980" width="0.8065%" height="15" fill="rgb(206,121,29)" fg:x="226" fg:w="4"/><text x="45.8145%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="45.5645%" y="996" width="0.8065%" height="15" fill="rgb(249,131,53)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="45.5645%" y="1012" width="0.8065%" height="15" fill="rgb(236,170,29)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="45.5645%" y="1028" width="0.8065%" height="15" fill="rgb(247,96,15)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="45.5645%" y="1044" width="0.8065%" height="15" fill="rgb(211,210,7)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="45.5645%" y="1060" width="0.8065%" height="15" fill="rgb(240,88,50)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="45.5645%" y="1076" width="0.8065%" height="15" fill="rgb(209,229,26)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1086.50"></text></g><g><title><module> (numpy/compat/py3k.py:1) (4 samples, 0.81%)</title><rect x="45.5645%" y="1092" width="0.8065%" height="15" fill="rgb(210,68,23)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="45.5645%" y="1108" width="0.8065%" height="15" fill="rgb(229,180,13)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="45.5645%" y="1124" width="0.8065%" height="15" fill="rgb(236,53,44)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="45.5645%" y="1140" width="0.8065%" height="15" fill="rgb(244,214,29)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="45.5645%" y="1156" width="0.8065%" height="15" fill="rgb(220,75,29)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="45.5645%" y="1172" width="0.8065%" height="15" fill="rgb(214,183,37)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1182.50"></text></g><g><title><module> (pickle.py:1) (4 samples, 0.81%)</title><rect x="45.5645%" y="1188" width="0.8065%" height="15" fill="rgb(239,117,29)" fg:x="226" fg:w="4"/><text x="45.8145%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="46.1694%" y="1204" width="0.2016%" height="15" fill="rgb(237,171,35)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="46.1694%" y="1220" width="0.2016%" height="15" fill="rgb(229,178,53)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="46.1694%" y="1236" width="0.2016%" height="15" fill="rgb(210,102,19)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1246.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="46.1694%" y="1252" width="0.2016%" height="15" fill="rgb(235,127,22)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="46.1694%" y="1268" width="0.2016%" height="15" fill="rgb(244,31,31)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.1694%" y="1284" width="0.2016%" height="15" fill="rgb(231,43,21)" fg:x="229" fg:w="1"/><text x="46.4194%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="45.3629%" y="756" width="1.4113%" height="15" fill="rgb(217,131,35)" fg:x="225" fg:w="7"/><text x="45.6129%" y="766.50"></text></g><g><title><module> (numpy/core/numerictypes.py:1) (6 samples, 1.21%)</title><rect x="45.5645%" y="772" width="1.2097%" height="15" fill="rgb(221,149,4)" fg:x="226" fg:w="6"/><text x="45.8145%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="45.5645%" y="788" width="1.2097%" height="15" fill="rgb(232,170,28)" fg:x="226" fg:w="6"/><text x="45.8145%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="45.5645%" y="804" width="1.2097%" height="15" fill="rgb(238,56,10)" fg:x="226" fg:w="6"/><text x="45.8145%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="45.5645%" y="820" width="1.2097%" height="15" fill="rgb(235,196,14)" fg:x="226" fg:w="6"/><text x="45.8145%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="45.5645%" y="836" width="1.2097%" height="15" fill="rgb(216,45,48)" fg:x="226" fg:w="6"/><text x="45.8145%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="45.5645%" y="852" width="1.2097%" height="15" fill="rgb(238,213,17)" fg:x="226" fg:w="6"/><text x="45.8145%" y="862.50"></text></g><g><title><module> (numpy/core/_type_aliases.py:1) (6 samples, 1.21%)</title><rect x="45.5645%" y="868" width="1.2097%" height="15" fill="rgb(212,13,2)" fg:x="226" fg:w="6"/><text x="45.8145%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="45.5645%" y="884" width="1.2097%" height="15" fill="rgb(240,114,20)" fg:x="226" fg:w="6"/><text x="45.8145%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="45.5645%" y="900" width="1.2097%" height="15" fill="rgb(228,41,40)" fg:x="226" fg:w="6"/><text x="45.8145%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="45.5645%" y="916" width="1.2097%" height="15" fill="rgb(244,132,35)" fg:x="226" fg:w="6"/><text x="45.8145%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="45.5645%" y="932" width="1.2097%" height="15" fill="rgb(253,189,4)" fg:x="226" fg:w="6"/><text x="45.8145%" y="942.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="46.3710%" y="948" width="0.4032%" height="15" fill="rgb(224,37,19)" fg:x="230" fg:w="2"/><text x="46.6210%" y="958.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.40%)</title><rect x="46.3710%" y="964" width="0.4032%" height="15" fill="rgb(235,223,18)" fg:x="230" fg:w="2"/><text x="46.6210%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="45.3629%" y="420" width="1.6129%" height="15" fill="rgb(235,163,25)" fg:x="225" fg:w="8"/><text x="45.6129%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="45.3629%" y="436" width="1.6129%" height="15" fill="rgb(217,145,28)" fg:x="225" fg:w="8"/><text x="45.6129%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="45.3629%" y="452" width="1.6129%" height="15" fill="rgb(223,223,32)" fg:x="225" fg:w="8"/><text x="45.6129%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="45.3629%" y="468" width="1.6129%" height="15" fill="rgb(227,189,39)" fg:x="225" fg:w="8"/><text x="45.6129%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="45.3629%" y="484" width="1.6129%" height="15" fill="rgb(248,10,22)" fg:x="225" fg:w="8"/><text x="45.6129%" y="494.50"></text></g><g><title><module> (numpy/__config__.py:3) (8 samples, 1.61%)</title><rect x="45.3629%" y="500" width="1.6129%" height="15" fill="rgb(248,46,39)" fg:x="225" fg:w="8"/><text x="45.6129%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="45.3629%" y="516" width="1.6129%" height="15" fill="rgb(248,113,48)" fg:x="225" fg:w="8"/><text x="45.6129%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="45.3629%" y="532" width="1.6129%" height="15" fill="rgb(245,16,25)" fg:x="225" fg:w="8"/><text x="45.6129%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="45.3629%" y="548" width="1.6129%" height="15" fill="rgb(249,152,16)" fg:x="225" fg:w="8"/><text x="45.6129%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="45.3629%" y="564" width="1.6129%" height="15" fill="rgb(250,16,1)" fg:x="225" fg:w="8"/><text x="45.6129%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="45.3629%" y="580" width="1.6129%" height="15" fill="rgb(249,138,3)" fg:x="225" fg:w="8"/><text x="45.6129%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="45.3629%" y="596" width="1.6129%" height="15" fill="rgb(227,71,41)" fg:x="225" fg:w="8"/><text x="45.6129%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="45.3629%" y="612" width="1.6129%" height="15" fill="rgb(209,184,23)" fg:x="225" fg:w="8"/><text x="45.6129%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="45.3629%" y="628" width="1.6129%" height="15" fill="rgb(223,215,31)" fg:x="225" fg:w="8"/><text x="45.6129%" y="638.50"></text></g><g><title><module> (numpy/core/__init__.py:1) (8 samples, 1.61%)</title><rect x="45.3629%" y="644" width="1.6129%" height="15" fill="rgb(210,146,28)" fg:x="225" fg:w="8"/><text x="45.6129%" y="654.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.61%)</title><rect x="45.3629%" y="660" width="1.6129%" height="15" fill="rgb(209,183,41)" fg:x="225" fg:w="8"/><text x="45.6129%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="45.3629%" y="676" width="1.6129%" height="15" fill="rgb(209,224,45)" fg:x="225" fg:w="8"/><text x="45.6129%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="45.3629%" y="692" width="1.6129%" height="15" fill="rgb(224,209,51)" fg:x="225" fg:w="8"/><text x="45.6129%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="45.3629%" y="708" width="1.6129%" height="15" fill="rgb(223,17,39)" fg:x="225" fg:w="8"/><text x="45.6129%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="45.3629%" y="724" width="1.6129%" height="15" fill="rgb(234,204,37)" fg:x="225" fg:w="8"/><text x="45.6129%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="45.3629%" y="740" width="1.6129%" height="15" fill="rgb(236,120,5)" fg:x="225" fg:w="8"/><text x="45.6129%" y="750.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="46.7742%" y="756" width="0.2016%" height="15" fill="rgb(248,97,27)" fg:x="232" fg:w="1"/><text x="47.0242%" y="766.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="46.7742%" y="772" width="0.2016%" height="15" fill="rgb(240,66,17)" fg:x="232" fg:w="1"/><text x="47.0242%" y="782.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (1 samples, 0.20%)</title><rect x="46.9758%" y="660" width="0.2016%" height="15" fill="rgb(210,79,3)" fg:x="233" fg:w="1"/><text x="47.2258%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="46.9758%" y="676" width="0.2016%" height="15" fill="rgb(214,176,27)" fg:x="233" fg:w="1"/><text x="47.2258%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="46.9758%" y="692" width="0.2016%" height="15" fill="rgb(235,185,3)" fg:x="233" fg:w="1"/><text x="47.2258%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="46.9758%" y="708" width="0.2016%" height="15" fill="rgb(227,24,12)" fg:x="233" fg:w="1"/><text x="47.2258%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="46.9758%" y="724" width="0.2016%" height="15" fill="rgb(252,169,48)" fg:x="233" fg:w="1"/><text x="47.2258%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.9758%" y="740" width="0.2016%" height="15" fill="rgb(212,65,1)" fg:x="233" fg:w="1"/><text x="47.2258%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (1 samples, 0.20%)</title><rect x="46.9758%" y="756" width="0.2016%" height="15" fill="rgb(242,39,24)" fg:x="233" fg:w="1"/><text x="47.2258%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="46.9758%" y="772" width="0.2016%" height="15" fill="rgb(249,32,23)" fg:x="233" fg:w="1"/><text x="47.2258%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.9758%" y="788" width="0.2016%" height="15" fill="rgb(251,195,23)" fg:x="233" fg:w="1"/><text x="47.2258%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="46.9758%" y="804" width="0.2016%" height="15" fill="rgb(236,174,8)" fg:x="233" fg:w="1"/><text x="47.2258%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="46.9758%" y="820" width="0.2016%" height="15" fill="rgb(220,197,8)" fg:x="233" fg:w="1"/><text x="47.2258%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="46.9758%" y="836" width="0.2016%" height="15" fill="rgb(240,108,37)" fg:x="233" fg:w="1"/><text x="47.2258%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="46.9758%" y="852" width="0.2016%" height="15" fill="rgb(232,176,24)" fg:x="233" fg:w="1"/><text x="47.2258%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.9758%" y="868" width="0.2016%" height="15" fill="rgb(243,35,29)" fg:x="233" fg:w="1"/><text x="47.2258%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (1 samples, 0.20%)</title><rect x="46.9758%" y="884" width="0.2016%" height="15" fill="rgb(210,37,18)" fg:x="233" fg:w="1"/><text x="47.2258%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="46.9758%" y="900" width="0.2016%" height="15" fill="rgb(224,184,40)" fg:x="233" fg:w="1"/><text x="47.2258%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="46.9758%" y="916" width="0.2016%" height="15" fill="rgb(236,39,29)" fg:x="233" fg:w="1"/><text x="47.2258%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="46.9758%" y="932" width="0.2016%" height="15" fill="rgb(232,48,39)" fg:x="233" fg:w="1"/><text x="47.2258%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="46.9758%" y="948" width="0.2016%" height="15" fill="rgb(236,34,42)" fg:x="233" fg:w="1"/><text x="47.2258%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.9758%" y="964" width="0.2016%" height="15" fill="rgb(243,106,37)" fg:x="233" fg:w="1"/><text x="47.2258%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (1 samples, 0.20%)</title><rect x="46.9758%" y="980" width="0.2016%" height="15" fill="rgb(218,96,6)" fg:x="233" fg:w="1"/><text x="47.2258%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="46.9758%" y="996" width="0.2016%" height="15" fill="rgb(235,130,12)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="46.9758%" y="1012" width="0.2016%" height="15" fill="rgb(231,95,0)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="46.9758%" y="1028" width="0.2016%" height="15" fill="rgb(228,12,23)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="46.9758%" y="1044" width="0.2016%" height="15" fill="rgb(216,12,1)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="46.9758%" y="1060" width="0.2016%" height="15" fill="rgb(219,59,3)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="46.9758%" y="1076" width="0.2016%" height="15" fill="rgb(215,208,46)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1086.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="46.9758%" y="1092" width="0.2016%" height="15" fill="rgb(254,224,29)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1102.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="46.9758%" y="1108" width="0.2016%" height="15" fill="rgb(232,14,29)" fg:x="233" fg:w="1"/><text x="47.2258%" y="1118.50"></text></g><g><title>__getitem__ (sre_parse.py:165) (1 samples, 0.20%)</title><rect x="47.1774%" y="900" width="0.2016%" height="15" fill="rgb(208,45,52)" fg:x="234" fg:w="1"/><text x="47.4274%" y="910.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.20%)</title><rect x="47.3790%" y="900" width="0.2016%" height="15" fill="rgb(234,191,28)" fg:x="235" fg:w="1"/><text x="47.6290%" y="910.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.20%)</title><rect x="47.3790%" y="916" width="0.2016%" height="15" fill="rgb(244,67,43)" fg:x="235" fg:w="1"/><text x="47.6290%" y="926.50"></text></g><g><title>append (sre_parse.py:173) (1 samples, 0.20%)</title><rect x="47.5806%" y="900" width="0.2016%" height="15" fill="rgb(236,189,24)" fg:x="236" fg:w="1"/><text x="47.8306%" y="910.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (5 samples, 1.01%)</title><rect x="46.9758%" y="532" width="1.0081%" height="15" fill="rgb(239,214,33)" fg:x="233" fg:w="5"/><text x="47.2258%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.01%)</title><rect x="46.9758%" y="548" width="1.0081%" height="15" fill="rgb(226,176,41)" fg:x="233" fg:w="5"/><text x="47.2258%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="46.9758%" y="564" width="1.0081%" height="15" fill="rgb(248,47,8)" fg:x="233" fg:w="5"/><text x="47.2258%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="46.9758%" y="580" width="1.0081%" height="15" fill="rgb(218,81,44)" fg:x="233" fg:w="5"/><text x="47.2258%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="46.9758%" y="596" width="1.0081%" height="15" fill="rgb(213,98,6)" fg:x="233" fg:w="5"/><text x="47.2258%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="46.9758%" y="612" width="1.0081%" height="15" fill="rgb(222,85,22)" fg:x="233" fg:w="5"/><text x="47.2258%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="46.9758%" y="628" width="1.0081%" height="15" fill="rgb(239,46,39)" fg:x="233" fg:w="5"/><text x="47.2258%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="46.9758%" y="644" width="1.0081%" height="15" fill="rgb(237,12,29)" fg:x="233" fg:w="5"/><text x="47.2258%" y="654.50"></text></g><g><title><module> (numpy/lib/utils.py:1) (4 samples, 0.81%)</title><rect x="47.1774%" y="660" width="0.8065%" height="15" fill="rgb(214,77,8)" fg:x="234" fg:w="4"/><text x="47.4274%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="47.1774%" y="676" width="0.8065%" height="15" fill="rgb(217,168,37)" fg:x="234" fg:w="4"/><text x="47.4274%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="47.1774%" y="692" width="0.8065%" height="15" fill="rgb(221,217,23)" fg:x="234" fg:w="4"/><text x="47.4274%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="47.1774%" y="708" width="0.8065%" height="15" fill="rgb(243,229,36)" fg:x="234" fg:w="4"/><text x="47.4274%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="47.1774%" y="724" width="0.8065%" height="15" fill="rgb(251,163,40)" fg:x="234" fg:w="4"/><text x="47.4274%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="47.1774%" y="740" width="0.8065%" height="15" fill="rgb(237,222,12)" fg:x="234" fg:w="4"/><text x="47.4274%" y="750.50"></text></g><g><title><module> (platform.py:3) (4 samples, 0.81%)</title><rect x="47.1774%" y="756" width="0.8065%" height="15" fill="rgb(248,132,6)" fg:x="234" fg:w="4"/><text x="47.4274%" y="766.50"></text></g><g><title>compile (re.py:250) (4 samples, 0.81%)</title><rect x="47.1774%" y="772" width="0.8065%" height="15" fill="rgb(227,167,50)" fg:x="234" fg:w="4"/><text x="47.4274%" y="782.50"></text></g><g><title>_compile (re.py:289) (4 samples, 0.81%)</title><rect x="47.1774%" y="788" width="0.8065%" height="15" fill="rgb(242,84,37)" fg:x="234" fg:w="4"/><text x="47.4274%" y="798.50"></text></g><g><title>compile (sre_compile.py:783) (4 samples, 0.81%)</title><rect x="47.1774%" y="804" width="0.8065%" height="15" fill="rgb(212,4,50)" fg:x="234" fg:w="4"/><text x="47.4274%" y="814.50"></text></g><g><title>parse (sre_parse.py:944) (4 samples, 0.81%)</title><rect x="47.1774%" y="820" width="0.8065%" height="15" fill="rgb(230,228,32)" fg:x="234" fg:w="4"/><text x="47.4274%" y="830.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (4 samples, 0.81%)</title><rect x="47.1774%" y="836" width="0.8065%" height="15" fill="rgb(248,217,23)" fg:x="234" fg:w="4"/><text x="47.4274%" y="846.50"></text></g><g><title>_parse (sre_parse.py:494) (4 samples, 0.81%)</title><rect x="47.1774%" y="852" width="0.8065%" height="15" fill="rgb(238,197,32)" fg:x="234" fg:w="4"/><text x="47.4274%" y="862.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (4 samples, 0.81%)</title><rect x="47.1774%" y="868" width="0.8065%" height="15" fill="rgb(236,106,1)" fg:x="234" fg:w="4"/><text x="47.4274%" y="878.50"></text></g><g><title>_parse (sre_parse.py:494) (4 samples, 0.81%)</title><rect x="47.1774%" y="884" width="0.8065%" height="15" fill="rgb(219,228,13)" fg:x="234" fg:w="4"/><text x="47.4274%" y="894.50"></text></g><g><title>match (sre_parse.py:250) (1 samples, 0.20%)</title><rect x="47.7823%" y="900" width="0.2016%" height="15" fill="rgb(238,30,35)" fg:x="237" fg:w="1"/><text x="48.0323%" y="910.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (1 samples, 0.20%)</title><rect x="47.9839%" y="532" width="0.2016%" height="15" fill="rgb(236,70,23)" fg:x="238" fg:w="1"/><text x="48.2339%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="47.9839%" y="548" width="0.2016%" height="15" fill="rgb(249,104,48)" fg:x="238" fg:w="1"/><text x="48.2339%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="47.9839%" y="564" width="0.2016%" height="15" fill="rgb(254,117,50)" fg:x="238" fg:w="1"/><text x="48.2339%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="47.9839%" y="580" width="0.2016%" height="15" fill="rgb(223,152,4)" fg:x="238" fg:w="1"/><text x="48.2339%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="47.9839%" y="596" width="0.2016%" height="15" fill="rgb(245,6,2)" fg:x="238" fg:w="1"/><text x="48.2339%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="47.9839%" y="612" width="0.2016%" height="15" fill="rgb(249,150,24)" fg:x="238" fg:w="1"/><text x="48.2339%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="47.9839%" y="628" width="0.2016%" height="15" fill="rgb(228,185,42)" fg:x="238" fg:w="1"/><text x="48.2339%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="47.9839%" y="644" width="0.2016%" height="15" fill="rgb(226,39,33)" fg:x="238" fg:w="1"/><text x="48.2339%" y="654.50"></text></g><g><title><module> (numpy/ma/core.py:1) (1 samples, 0.20%)</title><rect x="47.9839%" y="660" width="0.2016%" height="15" fill="rgb(221,166,19)" fg:x="238" fg:w="1"/><text x="48.2339%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="47.9839%" y="676" width="0.2016%" height="15" fill="rgb(209,109,2)" fg:x="238" fg:w="1"/><text x="48.2339%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="47.9839%" y="692" width="0.2016%" height="15" fill="rgb(252,216,26)" fg:x="238" fg:w="1"/><text x="48.2339%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="47.9839%" y="708" width="0.2016%" height="15" fill="rgb(227,173,36)" fg:x="238" fg:w="1"/><text x="48.2339%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="47.9839%" y="724" width="0.2016%" height="15" fill="rgb(209,90,7)" fg:x="238" fg:w="1"/><text x="48.2339%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="47.9839%" y="740" width="0.2016%" height="15" fill="rgb(250,194,11)" fg:x="238" fg:w="1"/><text x="48.2339%" y="750.50"></text></g><g><title><module> (inspect.py:1) (1 samples, 0.20%)</title><rect x="47.9839%" y="756" width="0.2016%" height="15" fill="rgb(220,72,50)" fg:x="238" fg:w="1"/><text x="48.2339%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="47.9839%" y="772" width="0.2016%" height="15" fill="rgb(222,106,48)" fg:x="238" fg:w="1"/><text x="48.2339%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="47.9839%" y="788" width="0.2016%" height="15" fill="rgb(216,220,45)" fg:x="238" fg:w="1"/><text x="48.2339%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="47.9839%" y="804" width="0.2016%" height="15" fill="rgb(234,112,18)" fg:x="238" fg:w="1"/><text x="48.2339%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="47.9839%" y="820" width="0.2016%" height="15" fill="rgb(206,179,9)" fg:x="238" fg:w="1"/><text x="48.2339%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="47.9839%" y="836" width="0.2016%" height="15" fill="rgb(215,115,40)" fg:x="238" fg:w="1"/><text x="48.2339%" y="846.50"></text></g><g><title><module> (dis.py:1) (1 samples, 0.20%)</title><rect x="47.9839%" y="852" width="0.2016%" height="15" fill="rgb(222,69,34)" fg:x="238" fg:w="1"/><text x="48.2339%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="47.9839%" y="868" width="0.2016%" height="15" fill="rgb(209,161,10)" fg:x="238" fg:w="1"/><text x="48.2339%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="47.9839%" y="884" width="0.2016%" height="15" fill="rgb(217,6,38)" fg:x="238" fg:w="1"/><text x="48.2339%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="47.9839%" y="900" width="0.2016%" height="15" fill="rgb(229,229,48)" fg:x="238" fg:w="1"/><text x="48.2339%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="47.9839%" y="916" width="0.2016%" height="15" fill="rgb(225,21,28)" fg:x="238" fg:w="1"/><text x="48.2339%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="47.9839%" y="932" width="0.2016%" height="15" fill="rgb(206,33,13)" fg:x="238" fg:w="1"/><text x="48.2339%" y="942.50"></text></g><g><title><module> (opcode.py:2) (1 samples, 0.20%)</title><rect x="47.9839%" y="948" width="0.2016%" height="15" fill="rgb(242,178,17)" fg:x="238" fg:w="1"/><text x="48.2339%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="47.9839%" y="964" width="0.2016%" height="15" fill="rgb(220,162,5)" fg:x="238" fg:w="1"/><text x="48.2339%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="47.9839%" y="980" width="0.2016%" height="15" fill="rgb(210,33,43)" fg:x="238" fg:w="1"/><text x="48.2339%" y="990.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="47.9839%" y="996" width="0.2016%" height="15" fill="rgb(216,116,54)" fg:x="238" fg:w="1"/><text x="48.2339%" y="1006.50"></text></g><g><title>find_spec (_distutils_hack/__init__.py:89) (1 samples, 0.20%)</title><rect x="47.9839%" y="1012" width="0.2016%" height="15" fill="rgb(249,92,24)" fg:x="238" fg:w="1"/><text x="48.2339%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.60%)</title><rect x="48.1855%" y="804" width="0.6048%" height="15" fill="rgb(231,189,14)" fg:x="239" fg:w="3"/><text x="48.4355%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="48.1855%" y="820" width="0.6048%" height="15" fill="rgb(230,8,41)" fg:x="239" fg:w="3"/><text x="48.4355%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="48.1855%" y="836" width="0.6048%" height="15" fill="rgb(249,7,27)" fg:x="239" fg:w="3"/><text x="48.4355%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="48.1855%" y="852" width="0.6048%" height="15" fill="rgb(232,86,5)" fg:x="239" fg:w="3"/><text x="48.4355%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="48.1855%" y="868" width="0.6048%" height="15" fill="rgb(224,175,18)" fg:x="239" fg:w="3"/><text x="48.4355%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="48.1855%" y="884" width="0.6048%" height="15" fill="rgb(220,129,12)" fg:x="239" fg:w="3"/><text x="48.4355%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="48.1855%" y="900" width="0.6048%" height="15" fill="rgb(210,19,36)" fg:x="239" fg:w="3"/><text x="48.4355%" y="910.50"></text></g><g><title><module> (secrets.py:1) (3 samples, 0.60%)</title><rect x="48.1855%" y="916" width="0.6048%" height="15" fill="rgb(219,96,14)" fg:x="239" fg:w="3"/><text x="48.4355%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="48.1855%" y="932" width="0.6048%" height="15" fill="rgb(249,106,1)" fg:x="239" fg:w="3"/><text x="48.4355%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="48.1855%" y="948" width="0.6048%" height="15" fill="rgb(249,155,20)" fg:x="239" fg:w="3"/><text x="48.4355%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="48.1855%" y="964" width="0.6048%" height="15" fill="rgb(244,168,9)" fg:x="239" fg:w="3"/><text x="48.4355%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="48.1855%" y="980" width="0.6048%" height="15" fill="rgb(216,23,50)" fg:x="239" fg:w="3"/><text x="48.4355%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="48.1855%" y="996" width="0.6048%" height="15" fill="rgb(224,219,20)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1006.50"></text></g><g><title><module> (hmac.py:1) (3 samples, 0.60%)</title><rect x="48.1855%" y="1012" width="0.6048%" height="15" fill="rgb(222,156,15)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="48.1855%" y="1028" width="0.6048%" height="15" fill="rgb(231,97,17)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="48.1855%" y="1044" width="0.6048%" height="15" fill="rgb(218,70,48)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="48.1855%" y="1060" width="0.6048%" height="15" fill="rgb(212,196,52)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="48.1855%" y="1076" width="0.6048%" height="15" fill="rgb(243,203,18)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="48.1855%" y="1092" width="0.6048%" height="15" fill="rgb(252,125,41)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="48.1855%" y="1108" width="0.6048%" height="15" fill="rgb(223,180,33)" fg:x="239" fg:w="3"/><text x="48.4355%" y="1118.50"></text></g><g><title><module> (numpy/__init__.py:1) (18 samples, 3.63%)</title><rect x="45.3629%" y="404" width="3.6290%" height="15" fill="rgb(254,159,46)" fg:x="225" fg:w="18"/><text x="45.6129%" y="414.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 2.02%)</title><rect x="46.9758%" y="420" width="2.0161%" height="15" fill="rgb(254,38,10)" fg:x="233" fg:w="10"/><text x="47.2258%" y="430.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="46.9758%" y="436" width="2.0161%" height="15" fill="rgb(208,217,32)" fg:x="233" fg:w="10"/><text x="47.2258%" y="446.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.02%)</title><rect x="46.9758%" y="452" width="2.0161%" height="15" fill="rgb(221,120,13)" fg:x="233" fg:w="10"/><text x="47.2258%" y="462.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.02%)</title><rect x="46.9758%" y="468" width="2.0161%" height="15" fill="rgb(246,54,52)" fg:x="233" fg:w="10"/><text x="47.2258%" y="478.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.02%)</title><rect x="46.9758%" y="484" width="2.0161%" height="15" fill="rgb(242,34,25)" fg:x="233" fg:w="10"/><text x="47.2258%" y="494.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.02%)</title><rect x="46.9758%" y="500" width="2.0161%" height="15" fill="rgb(247,209,9)" fg:x="233" fg:w="10"/><text x="47.2258%" y="510.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.02%)</title><rect x="46.9758%" y="516" width="2.0161%" height="15" fill="rgb(228,71,26)" fg:x="233" fg:w="10"/><text x="47.2258%" y="526.50">_..</text></g><g><title><module> (numpy/random/__init__.py:1) (4 samples, 0.81%)</title><rect x="48.1855%" y="532" width="0.8065%" height="15" fill="rgb(222,145,49)" fg:x="239" fg:w="4"/><text x="48.4355%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="48.1855%" y="548" width="0.8065%" height="15" fill="rgb(218,121,17)" fg:x="239" fg:w="4"/><text x="48.4355%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="48.1855%" y="564" width="0.8065%" height="15" fill="rgb(244,50,7)" fg:x="239" fg:w="4"/><text x="48.4355%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="48.1855%" y="580" width="0.8065%" height="15" fill="rgb(246,229,37)" fg:x="239" fg:w="4"/><text x="48.4355%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="48.1855%" y="596" width="0.8065%" height="15" fill="rgb(225,18,5)" fg:x="239" fg:w="4"/><text x="48.4355%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="48.1855%" y="612" width="0.8065%" height="15" fill="rgb(213,204,8)" fg:x="239" fg:w="4"/><text x="48.4355%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="48.1855%" y="628" width="0.8065%" height="15" fill="rgb(238,103,6)" fg:x="239" fg:w="4"/><text x="48.4355%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="48.1855%" y="644" width="0.8065%" height="15" fill="rgb(222,25,35)" fg:x="239" fg:w="4"/><text x="48.4355%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (4 samples, 0.81%)</title><rect x="48.1855%" y="660" width="0.8065%" height="15" fill="rgb(213,203,35)" fg:x="239" fg:w="4"/><text x="48.4355%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="48.1855%" y="676" width="0.8065%" height="15" fill="rgb(221,79,53)" fg:x="239" fg:w="4"/><text x="48.4355%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="48.1855%" y="692" width="0.8065%" height="15" fill="rgb(243,200,35)" fg:x="239" fg:w="4"/><text x="48.4355%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="48.1855%" y="708" width="0.8065%" height="15" fill="rgb(248,60,25)" fg:x="239" fg:w="4"/><text x="48.4355%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 0.81%)</title><rect x="48.1855%" y="724" width="0.8065%" height="15" fill="rgb(227,53,46)" fg:x="239" fg:w="4"/><text x="48.4355%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="48.1855%" y="740" width="0.8065%" height="15" fill="rgb(216,120,32)" fg:x="239" fg:w="4"/><text x="48.4355%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="48.1855%" y="756" width="0.8065%" height="15" fill="rgb(220,134,1)" fg:x="239" fg:w="4"/><text x="48.4355%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="48.1855%" y="772" width="0.8065%" height="15" fill="rgb(237,168,5)" fg:x="239" fg:w="4"/><text x="48.4355%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="48.1855%" y="788" width="0.8065%" height="15" fill="rgb(231,100,33)" fg:x="239" fg:w="4"/><text x="48.4355%" y="798.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="48.7903%" y="804" width="0.2016%" height="15" fill="rgb(236,177,47)" fg:x="242" fg:w="1"/><text x="49.0403%" y="814.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="48.7903%" y="820" width="0.2016%" height="15" fill="rgb(235,7,49)" fg:x="242" fg:w="1"/><text x="49.0403%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="48.7903%" y="836" width="0.2016%" height="15" fill="rgb(232,119,22)" fg:x="242" fg:w="1"/><text x="49.0403%" y="846.50"></text></g><g><title>__init__ (typing.py:628) (1 samples, 0.20%)</title><rect x="49.1935%" y="740" width="0.2016%" height="15" fill="rgb(254,73,53)" fg:x="244" fg:w="1"/><text x="49.4435%" y="750.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.20%)</title><rect x="49.1935%" y="756" width="0.2016%" height="15" fill="rgb(251,35,20)" fg:x="244" fg:w="1"/><text x="49.4435%" y="766.50"></text></g><g><title><module> (pandas/_config/config.py:1) (3 samples, 0.60%)</title><rect x="48.9919%" y="628" width="0.6048%" height="15" fill="rgb(241,119,20)" fg:x="243" fg:w="3"/><text x="49.2419%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="48.9919%" y="644" width="0.6048%" height="15" fill="rgb(207,102,14)" fg:x="243" fg:w="3"/><text x="49.2419%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="48.9919%" y="660" width="0.6048%" height="15" fill="rgb(248,201,50)" fg:x="243" fg:w="3"/><text x="49.2419%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="48.9919%" y="676" width="0.6048%" height="15" fill="rgb(222,185,44)" fg:x="243" fg:w="3"/><text x="49.2419%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="48.9919%" y="692" width="0.6048%" height="15" fill="rgb(218,107,18)" fg:x="243" fg:w="3"/><text x="49.2419%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="48.9919%" y="708" width="0.6048%" height="15" fill="rgb(237,177,39)" fg:x="243" fg:w="3"/><text x="49.2419%" y="718.50"></text></g><g><title><module> (pandas/_typing.py:1) (3 samples, 0.60%)</title><rect x="48.9919%" y="724" width="0.6048%" height="15" fill="rgb(246,69,6)" fg:x="243" fg:w="3"/><text x="49.2419%" y="734.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="49.3952%" y="740" width="0.2016%" height="15" fill="rgb(234,208,37)" fg:x="245" fg:w="1"/><text x="49.6452%" y="750.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.20%)</title><rect x="49.3952%" y="756" width="0.2016%" height="15" fill="rgb(225,4,6)" fg:x="245" fg:w="1"/><text x="49.6452%" y="766.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.20%)</title><rect x="49.3952%" y="772" width="0.2016%" height="15" fill="rgb(233,45,0)" fg:x="245" fg:w="1"/><text x="49.6452%" y="782.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.20%)</title><rect x="49.3952%" y="788" width="0.2016%" height="15" fill="rgb(226,136,5)" fg:x="245" fg:w="1"/><text x="49.6452%" y="798.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.20%)</title><rect x="49.3952%" y="804" width="0.2016%" height="15" fill="rgb(211,91,47)" fg:x="245" fg:w="1"/><text x="49.6452%" y="814.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.20%)</title><rect x="49.3952%" y="820" width="0.2016%" height="15" fill="rgb(242,88,51)" fg:x="245" fg:w="1"/><text x="49.6452%" y="830.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.20%)</title><rect x="49.3952%" y="836" width="0.2016%" height="15" fill="rgb(230,91,28)" fg:x="245" fg:w="1"/><text x="49.6452%" y="846.50"></text></g><g><title><module> (pandas/_config/__init__.py:1) (4 samples, 0.81%)</title><rect x="48.9919%" y="500" width="0.8065%" height="15" fill="rgb(254,186,29)" fg:x="243" fg:w="4"/><text x="49.2419%" y="510.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="48.9919%" y="516" width="0.8065%" height="15" fill="rgb(238,6,4)" fg:x="243" fg:w="4"/><text x="49.2419%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="48.9919%" y="532" width="0.8065%" height="15" fill="rgb(221,151,16)" fg:x="243" fg:w="4"/><text x="49.2419%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="48.9919%" y="548" width="0.8065%" height="15" fill="rgb(251,143,52)" fg:x="243" fg:w="4"/><text x="49.2419%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="48.9919%" y="564" width="0.8065%" height="15" fill="rgb(206,90,15)" fg:x="243" fg:w="4"/><text x="49.2419%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="48.9919%" y="580" width="0.8065%" height="15" fill="rgb(218,35,8)" fg:x="243" fg:w="4"/><text x="49.2419%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="48.9919%" y="596" width="0.8065%" height="15" fill="rgb(239,215,6)" fg:x="243" fg:w="4"/><text x="49.2419%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="48.9919%" y="612" width="0.8065%" height="15" fill="rgb(245,116,39)" fg:x="243" fg:w="4"/><text x="49.2419%" y="622.50"></text></g><g><title><module> (pandas/_config/dates.py:1) (1 samples, 0.20%)</title><rect x="49.5968%" y="628" width="0.2016%" height="15" fill="rgb(242,65,28)" fg:x="246" fg:w="1"/><text x="49.8468%" y="638.50"></text></g><g><title>inner (pandas/_config/config.py:809) (1 samples, 0.20%)</title><rect x="49.5968%" y="644" width="0.2016%" height="15" fill="rgb(252,132,53)" fg:x="246" fg:w="1"/><text x="49.8468%" y="654.50"></text></g><g><title>register_option (pandas/_config/config.py:489) (1 samples, 0.20%)</title><rect x="49.5968%" y="660" width="0.2016%" height="15" fill="rgb(224,159,50)" fg:x="246" fg:w="1"/><text x="49.8468%" y="670.50"></text></g><g><title>match (re.py:188) (1 samples, 0.20%)</title><rect x="49.5968%" y="676" width="0.2016%" height="15" fill="rgb(224,93,4)" fg:x="246" fg:w="1"/><text x="49.8468%" y="686.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="49.5968%" y="692" width="0.2016%" height="15" fill="rgb(208,81,34)" fg:x="246" fg:w="1"/><text x="49.8468%" y="702.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.20%)</title><rect x="49.5968%" y="708" width="0.2016%" height="15" fill="rgb(233,92,54)" fg:x="246" fg:w="1"/><text x="49.8468%" y="718.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.20%)</title><rect x="49.5968%" y="724" width="0.2016%" height="15" fill="rgb(237,21,14)" fg:x="246" fg:w="1"/><text x="49.8468%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.20%)</title><rect x="49.7984%" y="756" width="0.2016%" height="15" fill="rgb(249,128,51)" fg:x="247" fg:w="1"/><text x="50.0484%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="49.7984%" y="772" width="0.2016%" height="15" fill="rgb(223,129,24)" fg:x="247" fg:w="1"/><text x="50.0484%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="49.7984%" y="788" width="0.2016%" height="15" fill="rgb(231,168,25)" fg:x="247" fg:w="1"/><text x="50.0484%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="49.7984%" y="804" width="0.2016%" height="15" fill="rgb(224,39,20)" fg:x="247" fg:w="1"/><text x="50.0484%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="49.7984%" y="820" width="0.2016%" height="15" fill="rgb(225,152,53)" fg:x="247" fg:w="1"/><text x="50.0484%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="49.7984%" y="836" width="0.2016%" height="15" fill="rgb(252,17,24)" fg:x="247" fg:w="1"/><text x="50.0484%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="49.7984%" y="852" width="0.2016%" height="15" fill="rgb(250,114,30)" fg:x="247" fg:w="1"/><text x="50.0484%" y="862.50"></text></g><g><title><module> (decimal.py:2) (1 samples, 0.20%)</title><rect x="49.7984%" y="868" width="0.2016%" height="15" fill="rgb(229,5,4)" fg:x="247" fg:w="1"/><text x="50.0484%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="49.7984%" y="884" width="0.2016%" height="15" fill="rgb(225,176,49)" fg:x="247" fg:w="1"/><text x="50.0484%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="49.7984%" y="900" width="0.2016%" height="15" fill="rgb(224,221,49)" fg:x="247" fg:w="1"/><text x="50.0484%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="49.7984%" y="916" width="0.2016%" height="15" fill="rgb(253,169,27)" fg:x="247" fg:w="1"/><text x="50.0484%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="49.7984%" y="932" width="0.2016%" height="15" fill="rgb(211,206,16)" fg:x="247" fg:w="1"/><text x="50.0484%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="49.7984%" y="948" width="0.2016%" height="15" fill="rgb(244,87,35)" fg:x="247" fg:w="1"/><text x="50.0484%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="49.7984%" y="964" width="0.2016%" height="15" fill="rgb(246,28,10)" fg:x="247" fg:w="1"/><text x="50.0484%" y="974.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (12 samples, 2.42%)</title><rect x="49.7984%" y="500" width="2.4194%" height="15" fill="rgb(229,12,44)" fg:x="247" fg:w="12"/><text x="50.0484%" y="510.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="49.7984%" y="516" width="2.4194%" height="15" fill="rgb(210,145,37)" fg:x="247" fg:w="12"/><text x="50.0484%" y="526.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="49.7984%" y="532" width="2.4194%" height="15" fill="rgb(227,112,52)" fg:x="247" fg:w="12"/><text x="50.0484%" y="542.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="49.7984%" y="548" width="2.4194%" height="15" fill="rgb(238,155,34)" fg:x="247" fg:w="12"/><text x="50.0484%" y="558.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="49.7984%" y="564" width="2.4194%" height="15" fill="rgb(239,226,36)" fg:x="247" fg:w="12"/><text x="50.0484%" y="574.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="49.7984%" y="580" width="2.4194%" height="15" fill="rgb(230,16,23)" fg:x="247" fg:w="12"/><text x="50.0484%" y="590.50">_c..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (12 samples, 2.42%)</title><rect x="49.7984%" y="596" width="2.4194%" height="15" fill="rgb(236,171,36)" fg:x="247" fg:w="12"/><text x="50.0484%" y="606.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="49.7984%" y="612" width="2.4194%" height="15" fill="rgb(221,22,14)" fg:x="247" fg:w="12"/><text x="50.0484%" y="622.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="49.7984%" y="628" width="2.4194%" height="15" fill="rgb(242,43,11)" fg:x="247" fg:w="12"/><text x="50.0484%" y="638.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="49.7984%" y="644" width="2.4194%" height="15" fill="rgb(232,69,23)" fg:x="247" fg:w="12"/><text x="50.0484%" y="654.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="49.7984%" y="660" width="2.4194%" height="15" fill="rgb(216,180,54)" fg:x="247" fg:w="12"/><text x="50.0484%" y="670.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="49.7984%" y="676" width="2.4194%" height="15" fill="rgb(216,5,24)" fg:x="247" fg:w="12"/><text x="50.0484%" y="686.50">_c..</text></g><g><title><module> (pyarrow/__init__.py:20) (12 samples, 2.42%)</title><rect x="49.7984%" y="692" width="2.4194%" height="15" fill="rgb(225,89,9)" fg:x="247" fg:w="12"/><text x="50.0484%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="49.7984%" y="708" width="2.4194%" height="15" fill="rgb(243,75,33)" fg:x="247" fg:w="12"/><text x="50.0484%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="49.7984%" y="724" width="2.4194%" height="15" fill="rgb(247,141,45)" fg:x="247" fg:w="12"/><text x="50.0484%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="49.7984%" y="740" width="2.4194%" height="15" fill="rgb(232,177,36)" fg:x="247" fg:w="12"/><text x="50.0484%" y="750.50">_l..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (11 samples, 2.22%)</title><rect x="50.0000%" y="756" width="2.2177%" height="15" fill="rgb(219,125,36)" fg:x="248" fg:w="11"/><text x="50.2500%" y="766.50">m..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (11 samples, 2.22%)</title><rect x="50.0000%" y="772" width="2.2177%" height="15" fill="rgb(227,94,9)" fg:x="248" fg:w="11"/><text x="50.2500%" y="782.50">c..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.22%)</title><rect x="50.0000%" y="788" width="2.2177%" height="15" fill="rgb(240,34,52)" fg:x="248" fg:w="11"/><text x="50.2500%" y="798.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.20%)</title><rect x="52.2177%" y="1364" width="0.2016%" height="15" fill="rgb(216,45,12)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="52.2177%" y="1380" width="0.2016%" height="15" fill="rgb(246,21,19)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="52.2177%" y="1396" width="0.2016%" height="15" fill="rgb(213,98,42)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="52.2177%" y="1412" width="0.2016%" height="15" fill="rgb(250,136,47)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="52.2177%" y="1428" width="0.2016%" height="15" fill="rgb(251,124,27)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1438.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="52.2177%" y="1444" width="0.2016%" height="15" fill="rgb(229,180,14)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1454.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="52.2177%" y="1460" width="0.2016%" height="15" fill="rgb(245,216,25)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="52.2177%" y="1476" width="0.2016%" height="15" fill="rgb(251,43,5)" fg:x="259" fg:w="1"/><text x="52.4677%" y="1486.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.40%)</title><rect x="52.2177%" y="1044" width="0.4032%" height="15" fill="rgb(250,128,24)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="52.2177%" y="1060" width="0.4032%" height="15" fill="rgb(217,117,27)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="52.2177%" y="1076" width="0.4032%" height="15" fill="rgb(245,147,4)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="52.2177%" y="1092" width="0.4032%" height="15" fill="rgb(242,201,35)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="52.2177%" y="1108" width="0.4032%" height="15" fill="rgb(218,181,1)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.40%)</title><rect x="52.2177%" y="1124" width="0.4032%" height="15" fill="rgb(222,6,29)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="52.2177%" y="1140" width="0.4032%" height="15" fill="rgb(208,186,3)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="52.2177%" y="1156" width="0.4032%" height="15" fill="rgb(216,36,26)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="52.2177%" y="1172" width="0.4032%" height="15" fill="rgb(248,201,23)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="52.2177%" y="1188" width="0.4032%" height="15" fill="rgb(251,170,31)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.40%)</title><rect x="52.2177%" y="1204" width="0.4032%" height="15" fill="rgb(207,110,25)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="52.2177%" y="1220" width="0.4032%" height="15" fill="rgb(250,54,15)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="52.2177%" y="1236" width="0.4032%" height="15" fill="rgb(227,68,33)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="52.2177%" y="1252" width="0.4032%" height="15" fill="rgb(238,34,41)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="52.2177%" y="1268" width="0.4032%" height="15" fill="rgb(220,11,15)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.40%)</title><rect x="52.2177%" y="1284" width="0.4032%" height="15" fill="rgb(246,111,35)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="52.2177%" y="1300" width="0.4032%" height="15" fill="rgb(209,88,53)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="52.2177%" y="1316" width="0.4032%" height="15" fill="rgb(231,185,47)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="52.2177%" y="1332" width="0.4032%" height="15" fill="rgb(233,154,1)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="52.2177%" y="1348" width="0.4032%" height="15" fill="rgb(225,15,46)" fg:x="259" fg:w="2"/><text x="52.4677%" y="1358.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="52.4194%" y="1364" width="0.2016%" height="15" fill="rgb(211,135,41)" fg:x="260" fg:w="1"/><text x="52.6694%" y="1374.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="52.4194%" y="1380" width="0.2016%" height="15" fill="rgb(208,54,0)" fg:x="260" fg:w="1"/><text x="52.6694%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="52.4194%" y="1396" width="0.2016%" height="15" fill="rgb(244,136,14)" fg:x="260" fg:w="1"/><text x="52.6694%" y="1406.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (4 samples, 0.81%)</title><rect x="52.2177%" y="596" width="0.8065%" height="15" fill="rgb(241,56,14)" fg:x="259" fg:w="4"/><text x="52.4677%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="612" width="0.8065%" height="15" fill="rgb(205,80,24)" fg:x="259" fg:w="4"/><text x="52.4677%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="628" width="0.8065%" height="15" fill="rgb(220,57,4)" fg:x="259" fg:w="4"/><text x="52.4677%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="52.2177%" y="644" width="0.8065%" height="15" fill="rgb(226,193,50)" fg:x="259" fg:w="4"/><text x="52.4677%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 0.81%)</title><rect x="52.2177%" y="660" width="0.8065%" height="15" fill="rgb(231,168,22)" fg:x="259" fg:w="4"/><text x="52.4677%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="52.2177%" y="676" width="0.8065%" height="15" fill="rgb(254,215,14)" fg:x="259" fg:w="4"/><text x="52.4677%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="692" width="0.8065%" height="15" fill="rgb(211,115,16)" fg:x="259" fg:w="4"/><text x="52.4677%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="708" width="0.8065%" height="15" fill="rgb(236,210,16)" fg:x="259" fg:w="4"/><text x="52.4677%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="52.2177%" y="724" width="0.8065%" height="15" fill="rgb(221,94,12)" fg:x="259" fg:w="4"/><text x="52.4677%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 0.81%)</title><rect x="52.2177%" y="740" width="0.8065%" height="15" fill="rgb(235,218,49)" fg:x="259" fg:w="4"/><text x="52.4677%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="52.2177%" y="756" width="0.8065%" height="15" fill="rgb(217,114,14)" fg:x="259" fg:w="4"/><text x="52.4677%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="772" width="0.8065%" height="15" fill="rgb(216,145,22)" fg:x="259" fg:w="4"/><text x="52.4677%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="788" width="0.8065%" height="15" fill="rgb(217,112,39)" fg:x="259" fg:w="4"/><text x="52.4677%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="52.2177%" y="804" width="0.8065%" height="15" fill="rgb(225,85,32)" fg:x="259" fg:w="4"/><text x="52.4677%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (4 samples, 0.81%)</title><rect x="52.2177%" y="820" width="0.8065%" height="15" fill="rgb(245,209,47)" fg:x="259" fg:w="4"/><text x="52.4677%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="52.2177%" y="836" width="0.8065%" height="15" fill="rgb(218,220,15)" fg:x="259" fg:w="4"/><text x="52.4677%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="852" width="0.8065%" height="15" fill="rgb(222,202,31)" fg:x="259" fg:w="4"/><text x="52.4677%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="868" width="0.8065%" height="15" fill="rgb(243,203,4)" fg:x="259" fg:w="4"/><text x="52.4677%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="52.2177%" y="884" width="0.8065%" height="15" fill="rgb(237,92,17)" fg:x="259" fg:w="4"/><text x="52.4677%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="900" width="0.8065%" height="15" fill="rgb(231,119,7)" fg:x="259" fg:w="4"/><text x="52.4677%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="916" width="0.8065%" height="15" fill="rgb(237,82,41)" fg:x="259" fg:w="4"/><text x="52.4677%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="52.2177%" y="932" width="0.8065%" height="15" fill="rgb(226,81,48)" fg:x="259" fg:w="4"/><text x="52.4677%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="52.2177%" y="948" width="0.8065%" height="15" fill="rgb(234,70,51)" fg:x="259" fg:w="4"/><text x="52.4677%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="52.2177%" y="964" width="0.8065%" height="15" fill="rgb(251,86,4)" fg:x="259" fg:w="4"/><text x="52.4677%" y="974.50"></text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (4 samples, 0.81%)</title><rect x="52.2177%" y="980" width="0.8065%" height="15" fill="rgb(244,144,28)" fg:x="259" fg:w="4"/><text x="52.4677%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="52.2177%" y="996" width="0.8065%" height="15" fill="rgb(232,161,39)" fg:x="259" fg:w="4"/><text x="52.4677%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="52.2177%" y="1012" width="0.8065%" height="15" fill="rgb(247,34,51)" fg:x="259" fg:w="4"/><text x="52.4677%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="52.2177%" y="1028" width="0.8065%" height="15" fill="rgb(225,132,2)" fg:x="259" fg:w="4"/><text x="52.4677%" y="1038.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="52.6210%" y="1044" width="0.4032%" height="15" fill="rgb(209,159,44)" fg:x="261" fg:w="2"/><text x="52.8710%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="52.6210%" y="1060" width="0.4032%" height="15" fill="rgb(251,214,1)" fg:x="261" fg:w="2"/><text x="52.8710%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="52.6210%" y="1076" width="0.4032%" height="15" fill="rgb(247,84,47)" fg:x="261" fg:w="2"/><text x="52.8710%" y="1086.50"></text></g><g><title><module> (pandas/core/algorithms.py:1) (1 samples, 0.20%)</title><rect x="53.0242%" y="596" width="0.2016%" height="15" fill="rgb(240,111,43)" fg:x="263" fg:w="1"/><text x="53.2742%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="53.0242%" y="612" width="0.2016%" height="15" fill="rgb(215,214,35)" fg:x="263" fg:w="1"/><text x="53.2742%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="53.0242%" y="628" width="0.2016%" height="15" fill="rgb(248,207,23)" fg:x="263" fg:w="1"/><text x="53.2742%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="53.0242%" y="644" width="0.2016%" height="15" fill="rgb(214,186,4)" fg:x="263" fg:w="1"/><text x="53.2742%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="53.0242%" y="660" width="0.2016%" height="15" fill="rgb(220,133,22)" fg:x="263" fg:w="1"/><text x="53.2742%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="53.0242%" y="676" width="0.2016%" height="15" fill="rgb(239,134,19)" fg:x="263" fg:w="1"/><text x="53.2742%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="53.0242%" y="692" width="0.2016%" height="15" fill="rgb(250,140,9)" fg:x="263" fg:w="1"/><text x="53.2742%" y="702.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="596" width="0.4032%" height="15" fill="rgb(225,59,14)" fg:x="264" fg:w="2"/><text x="53.4758%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="612" width="0.4032%" height="15" fill="rgb(214,152,51)" fg:x="264" fg:w="2"/><text x="53.4758%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="628" width="0.4032%" height="15" fill="rgb(251,227,43)" fg:x="264" fg:w="2"/><text x="53.4758%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="644" width="0.4032%" height="15" fill="rgb(241,96,17)" fg:x="264" fg:w="2"/><text x="53.4758%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="53.2258%" y="660" width="0.4032%" height="15" fill="rgb(234,198,43)" fg:x="264" fg:w="2"/><text x="53.4758%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="676" width="0.4032%" height="15" fill="rgb(220,108,29)" fg:x="264" fg:w="2"/><text x="53.4758%" y="686.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="692" width="0.4032%" height="15" fill="rgb(226,163,33)" fg:x="264" fg:w="2"/><text x="53.4758%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="708" width="0.4032%" height="15" fill="rgb(205,194,45)" fg:x="264" fg:w="2"/><text x="53.4758%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="724" width="0.4032%" height="15" fill="rgb(206,143,44)" fg:x="264" fg:w="2"/><text x="53.4758%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="740" width="0.4032%" height="15" fill="rgb(236,136,36)" fg:x="264" fg:w="2"/><text x="53.4758%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="53.2258%" y="756" width="0.4032%" height="15" fill="rgb(249,172,42)" fg:x="264" fg:w="2"/><text x="53.4758%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="772" width="0.4032%" height="15" fill="rgb(216,139,23)" fg:x="264" fg:w="2"/><text x="53.4758%" y="782.50"></text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="788" width="0.4032%" height="15" fill="rgb(207,166,20)" fg:x="264" fg:w="2"/><text x="53.4758%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="804" width="0.4032%" height="15" fill="rgb(210,209,22)" fg:x="264" fg:w="2"/><text x="53.4758%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="820" width="0.4032%" height="15" fill="rgb(232,118,20)" fg:x="264" fg:w="2"/><text x="53.4758%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="836" width="0.4032%" height="15" fill="rgb(238,113,42)" fg:x="264" fg:w="2"/><text x="53.4758%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="53.2258%" y="852" width="0.4032%" height="15" fill="rgb(231,42,5)" fg:x="264" fg:w="2"/><text x="53.4758%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="868" width="0.4032%" height="15" fill="rgb(243,166,24)" fg:x="264" fg:w="2"/><text x="53.4758%" y="878.50"></text></g><g><title><module> (pandas/core/arraylike.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="884" width="0.4032%" height="15" fill="rgb(237,226,12)" fg:x="264" fg:w="2"/><text x="53.4758%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="900" width="0.4032%" height="15" fill="rgb(229,133,24)" fg:x="264" fg:w="2"/><text x="53.4758%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="916" width="0.4032%" height="15" fill="rgb(238,33,43)" fg:x="264" fg:w="2"/><text x="53.4758%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="932" width="0.4032%" height="15" fill="rgb(227,59,38)" fg:x="264" fg:w="2"/><text x="53.4758%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="948" width="0.4032%" height="15" fill="rgb(230,97,0)" fg:x="264" fg:w="2"/><text x="53.4758%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="964" width="0.4032%" height="15" fill="rgb(250,173,50)" fg:x="264" fg:w="2"/><text x="53.4758%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="980" width="0.4032%" height="15" fill="rgb(240,15,50)" fg:x="264" fg:w="2"/><text x="53.4758%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="53.2258%" y="996" width="0.4032%" height="15" fill="rgb(221,93,22)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="1012" width="0.4032%" height="15" fill="rgb(245,180,53)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1022.50"></text></g><g><title><module> (pandas/core/ops/__init__.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="1028" width="0.4032%" height="15" fill="rgb(231,88,51)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="1044" width="0.4032%" height="15" fill="rgb(240,58,21)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="1060" width="0.4032%" height="15" fill="rgb(237,21,10)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="1076" width="0.4032%" height="15" fill="rgb(218,43,11)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="53.2258%" y="1092" width="0.4032%" height="15" fill="rgb(218,221,29)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="1108" width="0.4032%" height="15" fill="rgb(214,118,42)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1118.50"></text></g><g><title><module> (pandas/core/ops/array_ops.py:1) (2 samples, 0.40%)</title><rect x="53.2258%" y="1124" width="0.4032%" height="15" fill="rgb(251,200,26)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1134.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="53.2258%" y="1140" width="0.4032%" height="15" fill="rgb(237,101,39)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="1156" width="0.4032%" height="15" fill="rgb(251,117,11)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="53.2258%" y="1172" width="0.4032%" height="15" fill="rgb(216,223,23)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="53.2258%" y="1188" width="0.4032%" height="15" fill="rgb(251,54,12)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="53.2258%" y="1204" width="0.4032%" height="15" fill="rgb(254,176,54)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1214.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="53.2258%" y="1220" width="0.4032%" height="15" fill="rgb(210,32,8)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1230.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="53.2258%" y="1236" width="0.4032%" height="15" fill="rgb(235,52,38)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="53.2258%" y="1252" width="0.4032%" height="15" fill="rgb(231,4,44)" fg:x="264" fg:w="2"/><text x="53.4758%" y="1262.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (2 samples, 0.40%)</title><rect x="53.6290%" y="804" width="0.4032%" height="15" fill="rgb(249,2,32)" fg:x="266" fg:w="2"/><text x="53.8790%" y="814.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (2 samples, 0.40%)</title><rect x="53.6290%" y="820" width="0.4032%" height="15" fill="rgb(224,65,26)" fg:x="266" fg:w="2"/><text x="53.8790%" y="830.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.40%)</title><rect x="53.6290%" y="836" width="0.4032%" height="15" fill="rgb(250,73,40)" fg:x="266" fg:w="2"/><text x="53.8790%" y="846.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (1 samples, 0.20%)</title><rect x="54.0323%" y="900" width="0.2016%" height="15" fill="rgb(253,177,16)" fg:x="268" fg:w="1"/><text x="54.2823%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.20%)</title><rect x="54.0323%" y="916" width="0.2016%" height="15" fill="rgb(217,32,34)" fg:x="268" fg:w="1"/><text x="54.2823%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.20%)</title><rect x="54.0323%" y="932" width="0.2016%" height="15" fill="rgb(212,7,10)" fg:x="268" fg:w="1"/><text x="54.2823%" y="942.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.20%)</title><rect x="54.0323%" y="948" width="0.2016%" height="15" fill="rgb(245,89,8)" fg:x="268" fg:w="1"/><text x="54.2823%" y="958.50"></text></g><g><title><module> (pandas/core/internals/__init__.py:1) (1 samples, 0.20%)</title><rect x="54.2339%" y="980" width="0.2016%" height="15" fill="rgb(237,16,53)" fg:x="269" fg:w="1"/><text x="54.4839%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="54.2339%" y="996" width="0.2016%" height="15" fill="rgb(250,204,30)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="54.2339%" y="1012" width="0.2016%" height="15" fill="rgb(208,77,27)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="54.2339%" y="1028" width="0.2016%" height="15" fill="rgb(250,204,28)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="54.2339%" y="1044" width="0.2016%" height="15" fill="rgb(244,63,21)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1054.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="54.2339%" y="1060" width="0.2016%" height="15" fill="rgb(236,85,44)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1070.50"></text></g><g><title>_classify_pyc (<frozen importlib._bootstrap_external>:560) (1 samples, 0.20%)</title><rect x="54.2339%" y="1076" width="0.2016%" height="15" fill="rgb(215,98,4)" fg:x="269" fg:w="1"/><text x="54.4839%" y="1086.50"></text></g><g><title><module> (pandas/core/window/ewm.py:1) (3 samples, 0.60%)</title><rect x="54.4355%" y="1076" width="0.6048%" height="15" fill="rgb(235,38,11)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="54.4355%" y="1092" width="0.6048%" height="15" fill="rgb(254,186,25)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="54.4355%" y="1108" width="0.6048%" height="15" fill="rgb(225,55,31)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="54.4355%" y="1124" width="0.6048%" height="15" fill="rgb(211,15,21)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1134.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="54.4355%" y="1140" width="0.6048%" height="15" fill="rgb(215,187,41)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1150.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="54.4355%" y="1156" width="0.6048%" height="15" fill="rgb(248,69,32)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="54.4355%" y="1172" width="0.6048%" height="15" fill="rgb(252,102,52)" fg:x="270" fg:w="3"/><text x="54.6855%" y="1182.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.20%)</title><rect x="55.0403%" y="1108" width="0.2016%" height="15" fill="rgb(253,140,32)" fg:x="273" fg:w="1"/><text x="55.2903%" y="1118.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.20%)</title><rect x="55.0403%" y="1124" width="0.2016%" height="15" fill="rgb(216,56,42)" fg:x="273" fg:w="1"/><text x="55.2903%" y="1134.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.20%)</title><rect x="55.0403%" y="1140" width="0.2016%" height="15" fill="rgb(216,184,14)" fg:x="273" fg:w="1"/><text x="55.2903%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="54.2339%" y="900" width="1.2097%" height="15" fill="rgb(237,187,27)" fg:x="269" fg:w="6"/><text x="54.4839%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="54.2339%" y="916" width="1.2097%" height="15" fill="rgb(219,65,3)" fg:x="269" fg:w="6"/><text x="54.4839%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="54.2339%" y="932" width="1.2097%" height="15" fill="rgb(245,83,25)" fg:x="269" fg:w="6"/><text x="54.4839%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="54.2339%" y="948" width="1.2097%" height="15" fill="rgb(214,205,45)" fg:x="269" fg:w="6"/><text x="54.4839%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="54.2339%" y="964" width="1.2097%" height="15" fill="rgb(241,20,18)" fg:x="269" fg:w="6"/><text x="54.4839%" y="974.50"></text></g><g><title><module> (pandas/core/window/__init__.py:1) (5 samples, 1.01%)</title><rect x="54.4355%" y="980" width="1.0081%" height="15" fill="rgb(232,163,23)" fg:x="270" fg:w="5"/><text x="54.6855%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="54.4355%" y="996" width="1.0081%" height="15" fill="rgb(214,5,46)" fg:x="270" fg:w="5"/><text x="54.6855%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="54.4355%" y="1012" width="1.0081%" height="15" fill="rgb(229,78,17)" fg:x="270" fg:w="5"/><text x="54.6855%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="54.4355%" y="1028" width="1.0081%" height="15" fill="rgb(248,89,10)" fg:x="270" fg:w="5"/><text x="54.6855%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="54.4355%" y="1044" width="1.0081%" height="15" fill="rgb(248,54,15)" fg:x="270" fg:w="5"/><text x="54.6855%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="54.4355%" y="1060" width="1.0081%" height="15" fill="rgb(223,116,6)" fg:x="270" fg:w="5"/><text x="54.6855%" y="1070.50"></text></g><g><title><module> (pandas/core/window/expanding.py:1) (2 samples, 0.40%)</title><rect x="55.0403%" y="1076" width="0.4032%" height="15" fill="rgb(205,125,38)" fg:x="273" fg:w="2"/><text x="55.2903%" y="1086.50"></text></g><g><title>Expanding (pandas/core/window/expanding.py:51) (2 samples, 0.40%)</title><rect x="55.0403%" y="1092" width="0.4032%" height="15" fill="rgb(251,78,38)" fg:x="273" fg:w="2"/><text x="55.2903%" y="1102.50"></text></g><g><title>window_agg_numba_parameters (pandas/core/window/doc.py:93) (1 samples, 0.20%)</title><rect x="55.2419%" y="1108" width="0.2016%" height="15" fill="rgb(253,78,28)" fg:x="274" fg:w="1"/><text x="55.4919%" y="1118.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.20%)</title><rect x="55.2419%" y="1124" width="0.2016%" height="15" fill="rgb(209,120,3)" fg:x="274" fg:w="1"/><text x="55.4919%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="55.4435%" y="1188" width="0.2016%" height="15" fill="rgb(238,229,9)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/datetimes.py:1) (1 samples, 0.20%)</title><rect x="55.4435%" y="1204" width="0.2016%" height="15" fill="rgb(253,159,18)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="55.4435%" y="1220" width="0.2016%" height="15" fill="rgb(244,42,34)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="55.4435%" y="1236" width="0.2016%" height="15" fill="rgb(224,8,7)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="55.4435%" y="1252" width="0.2016%" height="15" fill="rgb(210,201,45)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="55.4435%" y="1268" width="0.2016%" height="15" fill="rgb(252,185,21)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="55.4435%" y="1284" width="0.2016%" height="15" fill="rgb(223,131,1)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1294.50"></text></g><g><title><module> (pandas/core/indexes/datetimelike.py:1) (1 samples, 0.20%)</title><rect x="55.4435%" y="1300" width="0.2016%" height="15" fill="rgb(245,141,16)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="55.4435%" y="1316" width="0.2016%" height="15" fill="rgb(229,55,45)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="55.4435%" y="1332" width="0.2016%" height="15" fill="rgb(208,92,15)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="55.4435%" y="1348" width="0.2016%" height="15" fill="rgb(234,185,47)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="55.4435%" y="1364" width="0.2016%" height="15" fill="rgb(253,104,50)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="55.4435%" y="1380" width="0.2016%" height="15" fill="rgb(205,70,7)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1390.50"></text></g><g><title><module> (pandas/core/indexes/range.py:1) (1 samples, 0.20%)</title><rect x="55.4435%" y="1396" width="0.2016%" height="15" fill="rgb(240,178,43)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1406.50"></text></g><g><title>RangeIndex (pandas/core/indexes/range.py:63) (1 samples, 0.20%)</title><rect x="55.4435%" y="1412" width="0.2016%" height="15" fill="rgb(214,112,2)" fg:x="275" fg:w="1"/><text x="55.6935%" y="1422.50"></text></g><g><title><module> (pandas/core/generic.py:2) (10 samples, 2.02%)</title><rect x="54.0323%" y="884" width="2.0161%" height="15" fill="rgb(206,46,17)" fg:x="268" fg:w="10"/><text x="54.2823%" y="894.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="55.4435%" y="900" width="0.6048%" height="15" fill="rgb(225,220,16)" fg:x="275" fg:w="3"/><text x="55.6935%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="55.4435%" y="916" width="0.6048%" height="15" fill="rgb(238,65,40)" fg:x="275" fg:w="3"/><text x="55.6935%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="55.4435%" y="932" width="0.6048%" height="15" fill="rgb(230,151,21)" fg:x="275" fg:w="3"/><text x="55.6935%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="55.4435%" y="948" width="0.6048%" height="15" fill="rgb(218,58,49)" fg:x="275" fg:w="3"/><text x="55.6935%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="55.4435%" y="964" width="0.6048%" height="15" fill="rgb(219,179,14)" fg:x="275" fg:w="3"/><text x="55.6935%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="55.4435%" y="980" width="0.6048%" height="15" fill="rgb(223,72,1)" fg:x="275" fg:w="3"/><text x="55.6935%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="55.4435%" y="996" width="0.6048%" height="15" fill="rgb(238,126,10)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (3 samples, 0.60%)</title><rect x="55.4435%" y="1012" width="0.6048%" height="15" fill="rgb(224,206,38)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="55.4435%" y="1028" width="0.6048%" height="15" fill="rgb(212,201,54)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="55.4435%" y="1044" width="0.6048%" height="15" fill="rgb(218,154,48)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="55.4435%" y="1060" width="0.6048%" height="15" fill="rgb(232,93,24)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="55.4435%" y="1076" width="0.6048%" height="15" fill="rgb(245,30,21)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="55.4435%" y="1092" width="0.6048%" height="15" fill="rgb(242,148,29)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (3 samples, 0.60%)</title><rect x="55.4435%" y="1108" width="0.6048%" height="15" fill="rgb(244,153,54)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="55.4435%" y="1124" width="0.6048%" height="15" fill="rgb(252,87,22)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="55.4435%" y="1140" width="0.6048%" height="15" fill="rgb(210,51,29)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="55.4435%" y="1156" width="0.6048%" height="15" fill="rgb(242,136,47)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="55.4435%" y="1172" width="0.6048%" height="15" fill="rgb(238,68,4)" fg:x="275" fg:w="3"/><text x="55.6935%" y="1182.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="55.6452%" y="1188" width="0.4032%" height="15" fill="rgb(242,161,30)" fg:x="276" fg:w="2"/><text x="55.8952%" y="1198.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.40%)</title><rect x="55.6452%" y="1204" width="0.4032%" height="15" fill="rgb(218,58,44)" fg:x="276" fg:w="2"/><text x="55.8952%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="54.0323%" y="804" width="2.4194%" height="15" fill="rgb(252,125,32)" fg:x="268" fg:w="12"/><text x="54.2823%" y="814.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="54.0323%" y="820" width="2.4194%" height="15" fill="rgb(219,178,0)" fg:x="268" fg:w="12"/><text x="54.2823%" y="830.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="54.0323%" y="836" width="2.4194%" height="15" fill="rgb(213,152,7)" fg:x="268" fg:w="12"/><text x="54.2823%" y="846.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="54.0323%" y="852" width="2.4194%" height="15" fill="rgb(249,109,34)" fg:x="268" fg:w="12"/><text x="54.2823%" y="862.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="54.0323%" y="868" width="2.4194%" height="15" fill="rgb(232,96,21)" fg:x="268" fg:w="12"/><text x="54.2823%" y="878.50">_c..</text></g><g><title><module> (pandas/core/series.py:1) (2 samples, 0.40%)</title><rect x="56.0484%" y="884" width="0.4032%" height="15" fill="rgb(228,27,39)" fg:x="278" fg:w="2"/><text x="56.2984%" y="894.50"></text></g><g><title>Series (pandas/core/series.py:245) (2 samples, 0.40%)</title><rect x="56.0484%" y="900" width="0.4032%" height="15" fill="rgb(211,182,52)" fg:x="278" fg:w="2"/><text x="56.2984%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.02%)</title><rect x="53.6290%" y="708" width="3.0242%" height="15" fill="rgb(234,178,38)" fg:x="266" fg:w="15"/><text x="53.8790%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.02%)</title><rect x="53.6290%" y="724" width="3.0242%" height="15" fill="rgb(221,111,3)" fg:x="266" fg:w="15"/><text x="53.8790%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.02%)</title><rect x="53.6290%" y="740" width="3.0242%" height="15" fill="rgb(228,175,21)" fg:x="266" fg:w="15"/><text x="53.8790%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.02%)</title><rect x="53.6290%" y="756" width="3.0242%" height="15" fill="rgb(228,174,43)" fg:x="266" fg:w="15"/><text x="53.8790%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.02%)</title><rect x="53.6290%" y="772" width="3.0242%" height="15" fill="rgb(211,191,0)" fg:x="266" fg:w="15"/><text x="53.8790%" y="782.50">_ca..</text></g><g><title><module> (pandas/core/frame.py:1) (15 samples, 3.02%)</title><rect x="53.6290%" y="788" width="3.0242%" height="15" fill="rgb(253,117,3)" fg:x="266" fg:w="15"/><text x="53.8790%" y="798.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="56.4516%" y="804" width="0.2016%" height="15" fill="rgb(241,127,19)" fg:x="280" fg:w="1"/><text x="56.7016%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="56.4516%" y="820" width="0.2016%" height="15" fill="rgb(218,103,12)" fg:x="280" fg:w="1"/><text x="56.7016%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="56.4516%" y="836" width="0.2016%" height="15" fill="rgb(236,214,43)" fg:x="280" fg:w="1"/><text x="56.7016%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="56.4516%" y="852" width="0.2016%" height="15" fill="rgb(244,144,19)" fg:x="280" fg:w="1"/><text x="56.7016%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="56.4516%" y="868" width="0.2016%" height="15" fill="rgb(246,188,10)" fg:x="280" fg:w="1"/><text x="56.7016%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="56.4516%" y="884" width="0.2016%" height="15" fill="rgb(212,193,33)" fg:x="280" fg:w="1"/><text x="56.7016%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="56.4516%" y="900" width="0.2016%" height="15" fill="rgb(241,51,29)" fg:x="280" fg:w="1"/><text x="56.7016%" y="910.50"></text></g><g><title><module> (pandas/core/methods/selectn.py:1) (1 samples, 0.20%)</title><rect x="56.4516%" y="916" width="0.2016%" height="15" fill="rgb(211,58,19)" fg:x="280" fg:w="1"/><text x="56.7016%" y="926.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="56.4516%" y="932" width="0.2016%" height="15" fill="rgb(229,111,26)" fg:x="280" fg:w="1"/><text x="56.7016%" y="942.50"></text></g><g><title><module> (pandas/core/api.py:1) (23 samples, 4.64%)</title><rect x="52.2177%" y="500" width="4.6371%" height="15" fill="rgb(213,115,40)" fg:x="259" fg:w="23"/><text x="52.4677%" y="510.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (23 samples, 4.64%)</title><rect x="52.2177%" y="516" width="4.6371%" height="15" fill="rgb(209,56,44)" fg:x="259" fg:w="23"/><text x="52.4677%" y="526.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (23 samples, 4.64%)</title><rect x="52.2177%" y="532" width="4.6371%" height="15" fill="rgb(230,108,32)" fg:x="259" fg:w="23"/><text x="52.4677%" y="542.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (23 samples, 4.64%)</title><rect x="52.2177%" y="548" width="4.6371%" height="15" fill="rgb(216,165,31)" fg:x="259" fg:w="23"/><text x="52.4677%" y="558.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (23 samples, 4.64%)</title><rect x="52.2177%" y="564" width="4.6371%" height="15" fill="rgb(218,122,21)" fg:x="259" fg:w="23"/><text x="52.4677%" y="574.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (23 samples, 4.64%)</title><rect x="52.2177%" y="580" width="4.6371%" height="15" fill="rgb(223,224,47)" fg:x="259" fg:w="23"/><text x="52.4677%" y="590.50">_call..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (16 samples, 3.23%)</title><rect x="53.6290%" y="596" width="3.2258%" height="15" fill="rgb(238,102,44)" fg:x="266" fg:w="16"/><text x="53.8790%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 3.23%)</title><rect x="53.6290%" y="612" width="3.2258%" height="15" fill="rgb(236,46,40)" fg:x="266" fg:w="16"/><text x="53.8790%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 3.23%)</title><rect x="53.6290%" y="628" width="3.2258%" height="15" fill="rgb(247,202,50)" fg:x="266" fg:w="16"/><text x="53.8790%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 3.23%)</title><rect x="53.6290%" y="644" width="3.2258%" height="15" fill="rgb(209,99,20)" fg:x="266" fg:w="16"/><text x="53.8790%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 3.23%)</title><rect x="53.6290%" y="660" width="3.2258%" height="15" fill="rgb(252,27,34)" fg:x="266" fg:w="16"/><text x="53.8790%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 3.23%)</title><rect x="53.6290%" y="676" width="3.2258%" height="15" fill="rgb(215,206,23)" fg:x="266" fg:w="16"/><text x="53.8790%" y="686.50">_ca..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (16 samples, 3.23%)</title><rect x="53.6290%" y="692" width="3.2258%" height="15" fill="rgb(212,135,36)" fg:x="266" fg:w="16"/><text x="53.8790%" y="702.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="56.6532%" y="708" width="0.2016%" height="15" fill="rgb(240,189,1)" fg:x="281" fg:w="1"/><text x="56.9032%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="56.6532%" y="724" width="0.2016%" height="15" fill="rgb(242,56,20)" fg:x="281" fg:w="1"/><text x="56.9032%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="56.6532%" y="740" width="0.2016%" height="15" fill="rgb(247,132,33)" fg:x="281" fg:w="1"/><text x="56.9032%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="56.6532%" y="756" width="0.2016%" height="15" fill="rgb(208,149,11)" fg:x="281" fg:w="1"/><text x="56.9032%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="56.6532%" y="772" width="0.2016%" height="15" fill="rgb(211,33,11)" fg:x="281" fg:w="1"/><text x="56.9032%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="56.6532%" y="788" width="0.2016%" height="15" fill="rgb(221,29,38)" fg:x="281" fg:w="1"/><text x="56.9032%" y="798.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="56.6532%" y="804" width="0.2016%" height="15" fill="rgb(206,182,49)" fg:x="281" fg:w="1"/><text x="56.9032%" y="814.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="56.6532%" y="820" width="0.2016%" height="15" fill="rgb(216,140,1)" fg:x="281" fg:w="1"/><text x="56.9032%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="56.8548%" y="980" width="0.2016%" height="15" fill="rgb(232,57,40)" fg:x="282" fg:w="1"/><text x="57.1048%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="56.8548%" y="676" width="0.4032%" height="15" fill="rgb(224,186,18)" fg:x="282" fg:w="2"/><text x="57.1048%" y="686.50"></text></g><g><title><module> (pandas/core/computation/engines.py:1) (2 samples, 0.40%)</title><rect x="56.8548%" y="692" width="0.4032%" height="15" fill="rgb(215,121,11)" fg:x="282" fg:w="2"/><text x="57.1048%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="56.8548%" y="708" width="0.4032%" height="15" fill="rgb(245,147,10)" fg:x="282" fg:w="2"/><text x="57.1048%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="56.8548%" y="724" width="0.4032%" height="15" fill="rgb(238,153,13)" fg:x="282" fg:w="2"/><text x="57.1048%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="56.8548%" y="740" width="0.4032%" height="15" fill="rgb(233,108,0)" fg:x="282" fg:w="2"/><text x="57.1048%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="56.8548%" y="756" width="0.4032%" height="15" fill="rgb(212,157,17)" fg:x="282" fg:w="2"/><text x="57.1048%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="56.8548%" y="772" width="0.4032%" height="15" fill="rgb(225,213,38)" fg:x="282" fg:w="2"/><text x="57.1048%" y="782.50"></text></g><g><title><module> (pandas/core/computation/ops.py:1) (2 samples, 0.40%)</title><rect x="56.8548%" y="788" width="0.4032%" height="15" fill="rgb(248,16,11)" fg:x="282" fg:w="2"/><text x="57.1048%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="56.8548%" y="804" width="0.4032%" height="15" fill="rgb(241,33,4)" fg:x="282" fg:w="2"/><text x="57.1048%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="56.8548%" y="820" width="0.4032%" height="15" fill="rgb(222,26,43)" fg:x="282" fg:w="2"/><text x="57.1048%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="56.8548%" y="836" width="0.4032%" height="15" fill="rgb(243,29,36)" fg:x="282" fg:w="2"/><text x="57.1048%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="56.8548%" y="852" width="0.4032%" height="15" fill="rgb(241,9,27)" fg:x="282" fg:w="2"/><text x="57.1048%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="56.8548%" y="868" width="0.4032%" height="15" fill="rgb(205,117,26)" fg:x="282" fg:w="2"/><text x="57.1048%" y="878.50"></text></g><g><title><module> (pandas/core/computation/scope.py:1) (2 samples, 0.40%)</title><rect x="56.8548%" y="884" width="0.4032%" height="15" fill="rgb(209,80,39)" fg:x="282" fg:w="2"/><text x="57.1048%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="56.8548%" y="900" width="0.4032%" height="15" fill="rgb(239,155,6)" fg:x="282" fg:w="2"/><text x="57.1048%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="56.8548%" y="916" width="0.4032%" height="15" fill="rgb(212,104,12)" fg:x="282" fg:w="2"/><text x="57.1048%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="56.8548%" y="932" width="0.4032%" height="15" fill="rgb(234,204,3)" fg:x="282" fg:w="2"/><text x="57.1048%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="56.8548%" y="948" width="0.4032%" height="15" fill="rgb(251,218,7)" fg:x="282" fg:w="2"/><text x="57.1048%" y="958.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="56.8548%" y="964" width="0.4032%" height="15" fill="rgb(221,81,32)" fg:x="282" fg:w="2"/><text x="57.1048%" y="974.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="57.0565%" y="980" width="0.2016%" height="15" fill="rgb(214,152,26)" fg:x="283" fg:w="1"/><text x="57.3065%" y="990.50"></text></g><g><title><module> (pandas/core/computation/api.py:1) (3 samples, 0.60%)</title><rect x="56.8548%" y="500" width="0.6048%" height="15" fill="rgb(223,22,3)" fg:x="282" fg:w="3"/><text x="57.1048%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="56.8548%" y="516" width="0.6048%" height="15" fill="rgb(207,174,7)" fg:x="282" fg:w="3"/><text x="57.1048%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="56.8548%" y="532" width="0.6048%" height="15" fill="rgb(224,19,52)" fg:x="282" fg:w="3"/><text x="57.1048%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="56.8548%" y="548" width="0.6048%" height="15" fill="rgb(228,24,14)" fg:x="282" fg:w="3"/><text x="57.1048%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="56.8548%" y="564" width="0.6048%" height="15" fill="rgb(230,153,43)" fg:x="282" fg:w="3"/><text x="57.1048%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="56.8548%" y="580" width="0.6048%" height="15" fill="rgb(231,106,12)" fg:x="282" fg:w="3"/><text x="57.1048%" y="590.50"></text></g><g><title><module> (pandas/core/computation/eval.py:1) (3 samples, 0.60%)</title><rect x="56.8548%" y="596" width="0.6048%" height="15" fill="rgb(215,92,2)" fg:x="282" fg:w="3"/><text x="57.1048%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="56.8548%" y="612" width="0.6048%" height="15" fill="rgb(249,143,25)" fg:x="282" fg:w="3"/><text x="57.1048%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="56.8548%" y="628" width="0.6048%" height="15" fill="rgb(252,7,35)" fg:x="282" fg:w="3"/><text x="57.1048%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="56.8548%" y="644" width="0.6048%" height="15" fill="rgb(216,69,40)" fg:x="282" fg:w="3"/><text x="57.1048%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="56.8548%" y="660" width="0.6048%" height="15" fill="rgb(240,36,33)" fg:x="282" fg:w="3"/><text x="57.1048%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="57.2581%" y="676" width="0.2016%" height="15" fill="rgb(231,128,14)" fg:x="284" fg:w="1"/><text x="57.5081%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="57.2581%" y="692" width="0.2016%" height="15" fill="rgb(245,143,14)" fg:x="284" fg:w="1"/><text x="57.5081%" y="702.50"></text></g><g><title><module> (pandas/core/reshape/api.py:1) (1 samples, 0.20%)</title><rect x="57.4597%" y="500" width="0.2016%" height="15" fill="rgb(222,130,28)" fg:x="285" fg:w="1"/><text x="57.7097%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="57.4597%" y="516" width="0.2016%" height="15" fill="rgb(212,10,48)" fg:x="285" fg:w="1"/><text x="57.7097%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="57.4597%" y="532" width="0.2016%" height="15" fill="rgb(254,118,45)" fg:x="285" fg:w="1"/><text x="57.7097%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="57.4597%" y="548" width="0.2016%" height="15" fill="rgb(228,6,45)" fg:x="285" fg:w="1"/><text x="57.7097%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="57.4597%" y="564" width="0.2016%" height="15" fill="rgb(241,18,35)" fg:x="285" fg:w="1"/><text x="57.7097%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="57.4597%" y="580" width="0.2016%" height="15" fill="rgb(227,214,53)" fg:x="285" fg:w="1"/><text x="57.7097%" y="590.50"></text></g><g><title><module> (pandas/core/reshape/pivot.py:1) (1 samples, 0.20%)</title><rect x="57.4597%" y="596" width="0.2016%" height="15" fill="rgb(224,107,51)" fg:x="285" fg:w="1"/><text x="57.7097%" y="606.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.20%)</title><rect x="57.4597%" y="612" width="0.2016%" height="15" fill="rgb(248,60,28)" fg:x="285" fg:w="1"/><text x="57.7097%" y="622.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.20%)</title><rect x="57.4597%" y="628" width="0.2016%" height="15" fill="rgb(249,101,23)" fg:x="285" fg:w="1"/><text x="57.7097%" y="638.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.20%)</title><rect x="57.4597%" y="644" width="0.2016%" height="15" fill="rgb(228,51,19)" fg:x="285" fg:w="1"/><text x="57.7097%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (44 samples, 8.87%)</title><rect x="48.9919%" y="420" width="8.8710%" height="15" fill="rgb(213,20,6)" fg:x="243" fg:w="44"/><text x="49.2419%" y="430.50">_find_and_loa..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (44 samples, 8.87%)</title><rect x="48.9919%" y="436" width="8.8710%" height="15" fill="rgb(212,124,10)" fg:x="243" fg:w="44"/><text x="49.2419%" y="446.50">_find_and_loa..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (44 samples, 8.87%)</title><rect x="48.9919%" y="452" width="8.8710%" height="15" fill="rgb(248,3,40)" fg:x="243" fg:w="44"/><text x="49.2419%" y="462.50">_load_unlocke..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (44 samples, 8.87%)</title><rect x="48.9919%" y="468" width="8.8710%" height="15" fill="rgb(223,178,23)" fg:x="243" fg:w="44"/><text x="49.2419%" y="478.50">exec_module (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (44 samples, 8.87%)</title><rect x="48.9919%" y="484" width="8.8710%" height="15" fill="rgb(240,132,45)" fg:x="243" fg:w="44"/><text x="49.2419%" y="494.50">_call_with_fr..</text></g><g><title><module> (pandas/io/api.py:1) (1 samples, 0.20%)</title><rect x="57.6613%" y="500" width="0.2016%" height="15" fill="rgb(245,164,36)" fg:x="286" fg:w="1"/><text x="57.9113%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="57.6613%" y="516" width="0.2016%" height="15" fill="rgb(231,188,53)" fg:x="286" fg:w="1"/><text x="57.9113%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="57.6613%" y="532" width="0.2016%" height="15" fill="rgb(237,198,39)" fg:x="286" fg:w="1"/><text x="57.9113%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="57.6613%" y="548" width="0.2016%" height="15" fill="rgb(223,120,35)" fg:x="286" fg:w="1"/><text x="57.9113%" y="558.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="57.6613%" y="564" width="0.2016%" height="15" fill="rgb(253,107,49)" fg:x="286" fg:w="1"/><text x="57.9113%" y="574.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.20%)</title><rect x="57.6613%" y="580" width="0.2016%" height="15" fill="rgb(216,44,31)" fg:x="286" fg:w="1"/><text x="57.9113%" y="590.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.20%)</title><rect x="57.6613%" y="596" width="0.2016%" height="15" fill="rgb(253,87,21)" fg:x="286" fg:w="1"/><text x="57.9113%" y="606.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.20%)</title><rect x="57.6613%" y="612" width="0.2016%" height="15" fill="rgb(226,18,2)" fg:x="286" fg:w="1"/><text x="57.9113%" y="622.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.20%)</title><rect x="57.6613%" y="628" width="0.2016%" height="15" fill="rgb(216,8,46)" fg:x="286" fg:w="1"/><text x="57.9113%" y="638.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.20%)</title><rect x="57.6613%" y="644" width="0.2016%" height="15" fill="rgb(226,140,39)" fg:x="286" fg:w="1"/><text x="57.9113%" y="654.50"></text></g><g><title><genexpr> (<frozen importlib._bootstrap_external>:129) (1 samples, 0.20%)</title><rect x="57.6613%" y="660" width="0.2016%" height="15" fill="rgb(221,194,54)" fg:x="286" fg:w="1"/><text x="57.9113%" y="670.50"></text></g><g><title><module> (pandas/__init__.py:1) (46 samples, 9.27%)</title><rect x="48.9919%" y="404" width="9.2742%" height="15" fill="rgb(213,92,11)" fg:x="243" fg:w="46"/><text x="49.2419%" y="414.50"><module> (pan..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="57.8629%" y="420" width="0.4032%" height="15" fill="rgb(229,162,46)" fg:x="287" fg:w="2"/><text x="58.1129%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="436" width="0.4032%" height="15" fill="rgb(214,111,36)" fg:x="287" fg:w="2"/><text x="58.1129%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="57.8629%" y="452" width="0.4032%" height="15" fill="rgb(207,6,21)" fg:x="287" fg:w="2"/><text x="58.1129%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="57.8629%" y="468" width="0.4032%" height="15" fill="rgb(213,127,38)" fg:x="287" fg:w="2"/><text x="58.1129%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="57.8629%" y="484" width="0.4032%" height="15" fill="rgb(238,118,32)" fg:x="287" fg:w="2"/><text x="58.1129%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="57.8629%" y="500" width="0.4032%" height="15" fill="rgb(240,139,39)" fg:x="287" fg:w="2"/><text x="58.1129%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="516" width="0.4032%" height="15" fill="rgb(235,10,37)" fg:x="287" fg:w="2"/><text x="58.1129%" y="526.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (2 samples, 0.40%)</title><rect x="57.8629%" y="532" width="0.4032%" height="15" fill="rgb(249,171,38)" fg:x="287" fg:w="2"/><text x="58.1129%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="57.8629%" y="548" width="0.4032%" height="15" fill="rgb(242,144,32)" fg:x="287" fg:w="2"/><text x="58.1129%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="564" width="0.4032%" height="15" fill="rgb(217,117,21)" fg:x="287" fg:w="2"/><text x="58.1129%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="57.8629%" y="580" width="0.4032%" height="15" fill="rgb(249,87,1)" fg:x="287" fg:w="2"/><text x="58.1129%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="57.8629%" y="596" width="0.4032%" height="15" fill="rgb(248,196,48)" fg:x="287" fg:w="2"/><text x="58.1129%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="57.8629%" y="612" width="0.4032%" height="15" fill="rgb(251,206,33)" fg:x="287" fg:w="2"/><text x="58.1129%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="57.8629%" y="628" width="0.4032%" height="15" fill="rgb(232,141,28)" fg:x="287" fg:w="2"/><text x="58.1129%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="644" width="0.4032%" height="15" fill="rgb(209,167,14)" fg:x="287" fg:w="2"/><text x="58.1129%" y="654.50"></text></g><g><title><module> (pandas/api/typing/__init__.py:1) (2 samples, 0.40%)</title><rect x="57.8629%" y="660" width="0.4032%" height="15" fill="rgb(225,11,50)" fg:x="287" fg:w="2"/><text x="58.1129%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="57.8629%" y="676" width="0.4032%" height="15" fill="rgb(209,50,20)" fg:x="287" fg:w="2"/><text x="58.1129%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="57.8629%" y="692" width="0.4032%" height="15" fill="rgb(212,17,46)" fg:x="287" fg:w="2"/><text x="58.1129%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="708" width="0.4032%" height="15" fill="rgb(216,101,39)" fg:x="287" fg:w="2"/><text x="58.1129%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="57.8629%" y="724" width="0.4032%" height="15" fill="rgb(212,228,48)" fg:x="287" fg:w="2"/><text x="58.1129%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="57.8629%" y="740" width="0.4032%" height="15" fill="rgb(250,6,50)" fg:x="287" fg:w="2"/><text x="58.1129%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="57.8629%" y="756" width="0.4032%" height="15" fill="rgb(250,160,48)" fg:x="287" fg:w="2"/><text x="58.1129%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="57.8629%" y="772" width="0.4032%" height="15" fill="rgb(244,216,33)" fg:x="287" fg:w="2"/><text x="58.1129%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="788" width="0.4032%" height="15" fill="rgb(207,157,5)" fg:x="287" fg:w="2"/><text x="58.1129%" y="798.50"></text></g><g><title><module> (pandas/io/json/__init__.py:1) (2 samples, 0.40%)</title><rect x="57.8629%" y="804" width="0.4032%" height="15" fill="rgb(228,199,8)" fg:x="287" fg:w="2"/><text x="58.1129%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="57.8629%" y="820" width="0.4032%" height="15" fill="rgb(227,80,20)" fg:x="287" fg:w="2"/><text x="58.1129%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="57.8629%" y="836" width="0.4032%" height="15" fill="rgb(222,9,33)" fg:x="287" fg:w="2"/><text x="58.1129%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="57.8629%" y="852" width="0.4032%" height="15" fill="rgb(239,44,28)" fg:x="287" fg:w="2"/><text x="58.1129%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="57.8629%" y="868" width="0.4032%" height="15" fill="rgb(249,187,43)" fg:x="287" fg:w="2"/><text x="58.1129%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="57.8629%" y="884" width="0.4032%" height="15" fill="rgb(216,141,28)" fg:x="287" fg:w="2"/><text x="58.1129%" y="894.50"></text></g><g><title><module> (pandas/io/json/_json.py:1) (2 samples, 0.40%)</title><rect x="57.8629%" y="900" width="0.4032%" height="15" fill="rgb(230,154,53)" fg:x="287" fg:w="2"/><text x="58.1129%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (2 samples, 0.40%)</title><rect x="57.8629%" y="916" width="0.4032%" height="15" fill="rgb(227,82,4)" fg:x="287" fg:w="2"/><text x="58.1129%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.40%)</title><rect x="57.8629%" y="932" width="0.4032%" height="15" fill="rgb(220,107,16)" fg:x="287" fg:w="2"/><text x="58.1129%" y="942.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.20%)</title><rect x="58.0645%" y="948" width="0.2016%" height="15" fill="rgb(207,187,2)" fg:x="288" fg:w="1"/><text x="58.3145%" y="958.50"></text></g><g><title><module> (xarray/coding/calendar_ops.py:1) (2 samples, 0.40%)</title><rect x="58.2661%" y="500" width="0.4032%" height="15" fill="rgb(210,162,52)" fg:x="289" fg:w="2"/><text x="58.5161%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="58.2661%" y="516" width="0.4032%" height="15" fill="rgb(217,216,49)" fg:x="289" fg:w="2"/><text x="58.5161%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="58.2661%" y="532" width="0.4032%" height="15" fill="rgb(218,146,49)" fg:x="289" fg:w="2"/><text x="58.5161%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="58.2661%" y="548" width="0.4032%" height="15" fill="rgb(216,55,40)" fg:x="289" fg:w="2"/><text x="58.5161%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="58.2661%" y="564" width="0.4032%" height="15" fill="rgb(208,196,21)" fg:x="289" fg:w="2"/><text x="58.5161%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="58.2661%" y="580" width="0.4032%" height="15" fill="rgb(242,117,42)" fg:x="289" fg:w="2"/><text x="58.5161%" y="590.50"></text></g><g><title><module> (xarray/coding/cftime_offsets.py:1) (2 samples, 0.40%)</title><rect x="58.2661%" y="596" width="0.4032%" height="15" fill="rgb(210,11,23)" fg:x="289" fg:w="2"/><text x="58.5161%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="58.2661%" y="612" width="0.4032%" height="15" fill="rgb(217,110,2)" fg:x="289" fg:w="2"/><text x="58.5161%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="58.2661%" y="628" width="0.4032%" height="15" fill="rgb(229,77,54)" fg:x="289" fg:w="2"/><text x="58.5161%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="58.2661%" y="644" width="0.4032%" height="15" fill="rgb(218,53,16)" fg:x="289" fg:w="2"/><text x="58.5161%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="58.2661%" y="660" width="0.4032%" height="15" fill="rgb(215,38,13)" fg:x="289" fg:w="2"/><text x="58.5161%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="58.2661%" y="676" width="0.4032%" height="15" fill="rgb(235,42,18)" fg:x="289" fg:w="2"/><text x="58.5161%" y="686.50"></text></g><g><title><module> (xarray/coding/cftimeindex.py:1) (2 samples, 0.40%)</title><rect x="58.2661%" y="692" width="0.4032%" height="15" fill="rgb(219,66,54)" fg:x="289" fg:w="2"/><text x="58.5161%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="58.2661%" y="708" width="0.4032%" height="15" fill="rgb(222,205,4)" fg:x="289" fg:w="2"/><text x="58.5161%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="58.2661%" y="724" width="0.4032%" height="15" fill="rgb(227,213,46)" fg:x="289" fg:w="2"/><text x="58.5161%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="58.2661%" y="740" width="0.4032%" height="15" fill="rgb(250,145,42)" fg:x="289" fg:w="2"/><text x="58.5161%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="58.2661%" y="756" width="0.4032%" height="15" fill="rgb(219,15,2)" fg:x="289" fg:w="2"/><text x="58.5161%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="58.2661%" y="772" width="0.4032%" height="15" fill="rgb(231,181,52)" fg:x="289" fg:w="2"/><text x="58.5161%" y="782.50"></text></g><g><title><module> (xarray/coding/times.py:1) (2 samples, 0.40%)</title><rect x="58.2661%" y="788" width="0.4032%" height="15" fill="rgb(235,1,42)" fg:x="289" fg:w="2"/><text x="58.5161%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="58.4677%" y="804" width="0.2016%" height="15" fill="rgb(249,88,27)" fg:x="290" fg:w="1"/><text x="58.7177%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="58.4677%" y="820" width="0.2016%" height="15" fill="rgb(235,145,16)" fg:x="290" fg:w="1"/><text x="58.7177%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="58.4677%" y="836" width="0.2016%" height="15" fill="rgb(237,114,19)" fg:x="290" fg:w="1"/><text x="58.7177%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="58.4677%" y="852" width="0.2016%" height="15" fill="rgb(238,51,50)" fg:x="290" fg:w="1"/><text x="58.7177%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="58.4677%" y="868" width="0.2016%" height="15" fill="rgb(205,194,25)" fg:x="290" fg:w="1"/><text x="58.7177%" y="878.50"></text></g><g><title><module> (xarray/core/pdcompat.py:36) (1 samples, 0.20%)</title><rect x="58.4677%" y="884" width="0.2016%" height="15" fill="rgb(215,203,17)" fg:x="290" fg:w="1"/><text x="58.7177%" y="894.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="58.4677%" y="900" width="0.2016%" height="15" fill="rgb(233,112,49)" fg:x="290" fg:w="1"/><text x="58.7177%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="58.4677%" y="916" width="0.2016%" height="15" fill="rgb(241,130,26)" fg:x="290" fg:w="1"/><text x="58.7177%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="58.6694%" y="548" width="0.2016%" height="15" fill="rgb(252,223,19)" fg:x="291" fg:w="1"/><text x="58.9194%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="58.6694%" y="564" width="0.2016%" height="15" fill="rgb(211,95,25)" fg:x="291" fg:w="1"/><text x="58.9194%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="58.6694%" y="580" width="0.2016%" height="15" fill="rgb(251,182,27)" fg:x="291" fg:w="1"/><text x="58.9194%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="58.6694%" y="596" width="0.2016%" height="15" fill="rgb(238,24,4)" fg:x="291" fg:w="1"/><text x="58.9194%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="58.6694%" y="612" width="0.2016%" height="15" fill="rgb(224,220,25)" fg:x="291" fg:w="1"/><text x="58.9194%" y="622.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="58.6694%" y="628" width="0.2016%" height="15" fill="rgb(239,133,26)" fg:x="291" fg:w="1"/><text x="58.9194%" y="638.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="58.6694%" y="644" width="0.2016%" height="15" fill="rgb(211,94,48)" fg:x="291" fg:w="1"/><text x="58.9194%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (68 samples, 13.71%)</title><rect x="45.3629%" y="388" width="13.7097%" height="15" fill="rgb(239,87,6)" fg:x="225" fg:w="68"/><text x="45.6129%" y="398.50">_call_with_frames_rem..</text></g><g><title><module> (xarray/core/dataarray.py:1) (4 samples, 0.81%)</title><rect x="58.2661%" y="404" width="0.8065%" height="15" fill="rgb(227,62,0)" fg:x="289" fg:w="4"/><text x="58.5161%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="58.2661%" y="420" width="0.8065%" height="15" fill="rgb(211,226,4)" fg:x="289" fg:w="4"/><text x="58.5161%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="58.2661%" y="436" width="0.8065%" height="15" fill="rgb(253,38,52)" fg:x="289" fg:w="4"/><text x="58.5161%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="58.2661%" y="452" width="0.8065%" height="15" fill="rgb(229,126,40)" fg:x="289" fg:w="4"/><text x="58.5161%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="58.2661%" y="468" width="0.8065%" height="15" fill="rgb(229,165,44)" fg:x="289" fg:w="4"/><text x="58.5161%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="58.2661%" y="484" width="0.8065%" height="15" fill="rgb(247,95,47)" fg:x="289" fg:w="4"/><text x="58.5161%" y="494.50"></text></g><g><title><module> (xarray/core/dataset.py:1) (2 samples, 0.40%)</title><rect x="58.6694%" y="500" width="0.4032%" height="15" fill="rgb(216,140,30)" fg:x="291" fg:w="2"/><text x="58.9194%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="58.6694%" y="516" width="0.4032%" height="15" fill="rgb(246,214,8)" fg:x="291" fg:w="2"/><text x="58.9194%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="58.6694%" y="532" width="0.4032%" height="15" fill="rgb(227,224,15)" fg:x="291" fg:w="2"/><text x="58.9194%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="58.8710%" y="548" width="0.2016%" height="15" fill="rgb(233,175,4)" fg:x="292" fg:w="1"/><text x="59.1210%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="58.8710%" y="564" width="0.2016%" height="15" fill="rgb(221,66,45)" fg:x="292" fg:w="1"/><text x="59.1210%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="58.8710%" y="580" width="0.2016%" height="15" fill="rgb(221,178,18)" fg:x="292" fg:w="1"/><text x="59.1210%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="58.8710%" y="596" width="0.2016%" height="15" fill="rgb(213,81,29)" fg:x="292" fg:w="1"/><text x="59.1210%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (69 samples, 13.91%)</title><rect x="45.3629%" y="324" width="13.9113%" height="15" fill="rgb(220,89,49)" fg:x="225" fg:w="69"/><text x="45.6129%" y="334.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (69 samples, 13.91%)</title><rect x="45.3629%" y="340" width="13.9113%" height="15" fill="rgb(227,60,33)" fg:x="225" fg:w="69"/><text x="45.6129%" y="350.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (69 samples, 13.91%)</title><rect x="45.3629%" y="356" width="13.9113%" height="15" fill="rgb(205,113,12)" fg:x="225" fg:w="69"/><text x="45.6129%" y="366.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (69 samples, 13.91%)</title><rect x="45.3629%" y="372" width="13.9113%" height="15" fill="rgb(211,32,1)" fg:x="225" fg:w="69"/><text x="45.6129%" y="382.50">exec_module (<frozen ..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="59.0726%" y="388" width="0.2016%" height="15" fill="rgb(246,2,12)" fg:x="293" fg:w="1"/><text x="59.3226%" y="398.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="59.0726%" y="404" width="0.2016%" height="15" fill="rgb(243,37,27)" fg:x="293" fg:w="1"/><text x="59.3226%" y="414.50"></text></g><g><title><module> (xarray/core/dtypes.py:1) (2 samples, 0.40%)</title><rect x="59.2742%" y="692" width="0.4032%" height="15" fill="rgb(248,211,31)" fg:x="294" fg:w="2"/><text x="59.5242%" y="702.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="59.2742%" y="708" width="0.4032%" height="15" fill="rgb(242,146,47)" fg:x="294" fg:w="2"/><text x="59.5242%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="59.2742%" y="724" width="0.4032%" height="15" fill="rgb(206,70,20)" fg:x="294" fg:w="2"/><text x="59.5242%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="59.2742%" y="740" width="0.4032%" height="15" fill="rgb(215,10,51)" fg:x="294" fg:w="2"/><text x="59.5242%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="59.2742%" y="756" width="0.4032%" height="15" fill="rgb(243,178,53)" fg:x="294" fg:w="2"/><text x="59.5242%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="59.2742%" y="772" width="0.4032%" height="15" fill="rgb(233,221,20)" fg:x="294" fg:w="2"/><text x="59.5242%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="59.2742%" y="788" width="0.4032%" height="15" fill="rgb(218,95,35)" fg:x="294" fg:w="2"/><text x="59.5242%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="59.2742%" y="804" width="0.4032%" height="15" fill="rgb(229,13,5)" fg:x="294" fg:w="2"/><text x="59.5242%" y="814.50"></text></g><g><title><module> (xarray/core/utils.py:1) (2 samples, 0.40%)</title><rect x="59.2742%" y="820" width="0.4032%" height="15" fill="rgb(252,164,30)" fg:x="294" fg:w="2"/><text x="59.5242%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="59.4758%" y="836" width="0.2016%" height="15" fill="rgb(232,68,36)" fg:x="295" fg:w="1"/><text x="59.7258%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="59.4758%" y="852" width="0.2016%" height="15" fill="rgb(219,59,54)" fg:x="295" fg:w="1"/><text x="59.7258%" y="862.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="59.4758%" y="868" width="0.2016%" height="15" fill="rgb(250,92,33)" fg:x="295" fg:w="1"/><text x="59.7258%" y="878.50"></text></g><g><title><module> (xarray/core/duck_array_ops.py:1) (3 samples, 0.60%)</title><rect x="59.2742%" y="436" width="0.6048%" height="15" fill="rgb(229,162,54)" fg:x="294" fg:w="3"/><text x="59.5242%" y="446.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="59.2742%" y="452" width="0.6048%" height="15" fill="rgb(244,114,52)" fg:x="294" fg:w="3"/><text x="59.5242%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="59.2742%" y="468" width="0.6048%" height="15" fill="rgb(212,211,43)" fg:x="294" fg:w="3"/><text x="59.5242%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="59.2742%" y="484" width="0.6048%" height="15" fill="rgb(226,147,8)" fg:x="294" fg:w="3"/><text x="59.5242%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="59.2742%" y="500" width="0.6048%" height="15" fill="rgb(226,23,13)" fg:x="294" fg:w="3"/><text x="59.5242%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="59.2742%" y="516" width="0.6048%" height="15" fill="rgb(240,63,4)" fg:x="294" fg:w="3"/><text x="59.5242%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="59.2742%" y="532" width="0.6048%" height="15" fill="rgb(221,1,32)" fg:x="294" fg:w="3"/><text x="59.5242%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="59.2742%" y="548" width="0.6048%" height="15" fill="rgb(242,117,10)" fg:x="294" fg:w="3"/><text x="59.5242%" y="558.50"></text></g><g><title><module> (xarray/core/dask_array_ops.py:1) (3 samples, 0.60%)</title><rect x="59.2742%" y="564" width="0.6048%" height="15" fill="rgb(249,172,44)" fg:x="294" fg:w="3"/><text x="59.5242%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="59.2742%" y="580" width="0.6048%" height="15" fill="rgb(244,46,45)" fg:x="294" fg:w="3"/><text x="59.5242%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="59.2742%" y="596" width="0.6048%" height="15" fill="rgb(206,43,17)" fg:x="294" fg:w="3"/><text x="59.5242%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="59.2742%" y="612" width="0.6048%" height="15" fill="rgb(239,218,39)" fg:x="294" fg:w="3"/><text x="59.5242%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="59.2742%" y="628" width="0.6048%" height="15" fill="rgb(208,169,54)" fg:x="294" fg:w="3"/><text x="59.5242%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="59.2742%" y="644" width="0.6048%" height="15" fill="rgb(247,25,42)" fg:x="294" fg:w="3"/><text x="59.5242%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="59.2742%" y="660" width="0.6048%" height="15" fill="rgb(226,23,31)" fg:x="294" fg:w="3"/><text x="59.5242%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="59.2742%" y="676" width="0.6048%" height="15" fill="rgb(247,16,28)" fg:x="294" fg:w="3"/><text x="59.5242%" y="686.50"></text></g><g><title><module> (xarray/core/nputils.py:1) (1 samples, 0.20%)</title><rect x="59.6774%" y="692" width="0.2016%" height="15" fill="rgb(231,147,38)" fg:x="296" fg:w="1"/><text x="59.9274%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="59.6774%" y="708" width="0.2016%" height="15" fill="rgb(253,81,48)" fg:x="296" fg:w="1"/><text x="59.9274%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="59.6774%" y="724" width="0.2016%" height="15" fill="rgb(249,222,43)" fg:x="296" fg:w="1"/><text x="59.9274%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="59.6774%" y="740" width="0.2016%" height="15" fill="rgb(221,3,27)" fg:x="296" fg:w="1"/><text x="59.9274%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="59.6774%" y="756" width="0.2016%" height="15" fill="rgb(228,180,5)" fg:x="296" fg:w="1"/><text x="59.9274%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="59.6774%" y="772" width="0.2016%" height="15" fill="rgb(227,131,42)" fg:x="296" fg:w="1"/><text x="59.9274%" y="782.50"></text></g><g><title><module> (xarray/core/pycompat.py:1) (1 samples, 0.20%)</title><rect x="59.6774%" y="788" width="0.2016%" height="15" fill="rgb(212,3,39)" fg:x="296" fg:w="1"/><text x="59.9274%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="59.6774%" y="804" width="0.2016%" height="15" fill="rgb(226,45,5)" fg:x="296" fg:w="1"/><text x="59.9274%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="59.6774%" y="820" width="0.2016%" height="15" fill="rgb(215,167,45)" fg:x="296" fg:w="1"/><text x="59.9274%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="59.6774%" y="836" width="0.2016%" height="15" fill="rgb(250,218,53)" fg:x="296" fg:w="1"/><text x="59.9274%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="59.6774%" y="852" width="0.2016%" height="15" fill="rgb(207,140,0)" fg:x="296" fg:w="1"/><text x="59.9274%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="59.6774%" y="868" width="0.2016%" height="15" fill="rgb(238,133,51)" fg:x="296" fg:w="1"/><text x="59.9274%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="59.6774%" y="884" width="0.2016%" height="15" fill="rgb(218,203,53)" fg:x="296" fg:w="1"/><text x="59.9274%" y="894.50"></text></g><g><title><module> (xarray/testing.py:1) (73 samples, 14.72%)</title><rect x="45.3629%" y="308" width="14.7177%" height="15" fill="rgb(226,184,25)" fg:x="225" fg:w="73"/><text x="45.6129%" y="318.50"><module> (xarray/testi..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.81%)</title><rect x="59.2742%" y="324" width="0.8065%" height="15" fill="rgb(231,121,21)" fg:x="294" fg:w="4"/><text x="59.5242%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="59.2742%" y="340" width="0.8065%" height="15" fill="rgb(251,14,34)" fg:x="294" fg:w="4"/><text x="59.5242%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="59.2742%" y="356" width="0.8065%" height="15" fill="rgb(249,193,11)" fg:x="294" fg:w="4"/><text x="59.5242%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="59.2742%" y="372" width="0.8065%" height="15" fill="rgb(220,172,37)" fg:x="294" fg:w="4"/><text x="59.5242%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="59.2742%" y="388" width="0.8065%" height="15" fill="rgb(231,229,43)" fg:x="294" fg:w="4"/><text x="59.5242%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="59.2742%" y="404" width="0.8065%" height="15" fill="rgb(250,161,5)" fg:x="294" fg:w="4"/><text x="59.5242%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="59.2742%" y="420" width="0.8065%" height="15" fill="rgb(218,225,18)" fg:x="294" fg:w="4"/><text x="59.5242%" y="430.50"></text></g><g><title><module> (xarray/core/formatting.py:1) (1 samples, 0.20%)</title><rect x="59.8790%" y="436" width="0.2016%" height="15" fill="rgb(245,45,42)" fg:x="297" fg:w="1"/><text x="60.1290%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="59.8790%" y="452" width="0.2016%" height="15" fill="rgb(211,115,1)" fg:x="297" fg:w="1"/><text x="60.1290%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="59.8790%" y="468" width="0.2016%" height="15" fill="rgb(248,133,52)" fg:x="297" fg:w="1"/><text x="60.1290%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="59.8790%" y="484" width="0.2016%" height="15" fill="rgb(238,100,21)" fg:x="297" fg:w="1"/><text x="60.1290%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="59.8790%" y="500" width="0.2016%" height="15" fill="rgb(247,144,11)" fg:x="297" fg:w="1"/><text x="60.1290%" y="510.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="59.8790%" y="516" width="0.2016%" height="15" fill="rgb(206,164,16)" fg:x="297" fg:w="1"/><text x="60.1290%" y="526.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="59.8790%" y="532" width="0.2016%" height="15" fill="rgb(222,34,3)" fg:x="297" fg:w="1"/><text x="60.1290%" y="542.50"></text></g><g><title><module> (dask/base.py:1) (2 samples, 0.40%)</title><rect x="60.0806%" y="884" width="0.4032%" height="15" fill="rgb(248,82,4)" fg:x="298" fg:w="2"/><text x="60.3306%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="60.0806%" y="900" width="0.4032%" height="15" fill="rgb(228,81,46)" fg:x="298" fg:w="2"/><text x="60.3306%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="60.0806%" y="916" width="0.4032%" height="15" fill="rgb(227,67,47)" fg:x="298" fg:w="2"/><text x="60.3306%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="60.0806%" y="932" width="0.4032%" height="15" fill="rgb(215,93,53)" fg:x="298" fg:w="2"/><text x="60.3306%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="60.0806%" y="948" width="0.4032%" height="15" fill="rgb(248,194,39)" fg:x="298" fg:w="2"/><text x="60.3306%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="964" width="0.4032%" height="15" fill="rgb(215,5,19)" fg:x="298" fg:w="2"/><text x="60.3306%" y="974.50"></text></g><g><title><module> (dask/system.py:1) (2 samples, 0.40%)</title><rect x="60.0806%" y="980" width="0.4032%" height="15" fill="rgb(226,215,51)" fg:x="298" fg:w="2"/><text x="60.3306%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="60.0806%" y="996" width="0.4032%" height="15" fill="rgb(225,56,26)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="60.0806%" y="1012" width="0.4032%" height="15" fill="rgb(222,75,29)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="60.0806%" y="1028" width="0.4032%" height="15" fill="rgb(236,139,6)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="60.0806%" y="1044" width="0.4032%" height="15" fill="rgb(223,137,36)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="1060" width="0.4032%" height="15" fill="rgb(226,99,2)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1070.50"></text></g><g><title><module> (psutil/__init__.py:7) (2 samples, 0.40%)</title><rect x="60.0806%" y="1076" width="0.4032%" height="15" fill="rgb(206,133,23)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="60.0806%" y="1092" width="0.4032%" height="15" fill="rgb(243,173,15)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="1108" width="0.4032%" height="15" fill="rgb(228,69,28)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="60.0806%" y="1124" width="0.4032%" height="15" fill="rgb(212,51,22)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="60.0806%" y="1140" width="0.4032%" height="15" fill="rgb(227,113,0)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="60.0806%" y="1156" width="0.4032%" height="15" fill="rgb(252,84,27)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="60.0806%" y="1172" width="0.4032%" height="15" fill="rgb(223,145,39)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="1188" width="0.4032%" height="15" fill="rgb(239,219,30)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1198.50"></text></g><g><title><module> (psutil/_psosx.py:5) (2 samples, 0.40%)</title><rect x="60.0806%" y="1204" width="0.4032%" height="15" fill="rgb(224,196,39)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="60.0806%" y="1220" width="0.4032%" height="15" fill="rgb(205,35,43)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="1236" width="0.4032%" height="15" fill="rgb(228,201,21)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="60.0806%" y="1252" width="0.4032%" height="15" fill="rgb(237,118,16)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="60.0806%" y="1268" width="0.4032%" height="15" fill="rgb(241,17,19)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="60.0806%" y="1284" width="0.4032%" height="15" fill="rgb(214,10,25)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1294.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.40%)</title><rect x="60.0806%" y="1300" width="0.4032%" height="15" fill="rgb(238,37,29)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1310.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.40%)</title><rect x="60.0806%" y="1316" width="0.4032%" height="15" fill="rgb(253,83,25)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.0806%" y="1332" width="0.4032%" height="15" fill="rgb(234,192,12)" fg:x="298" fg:w="2"/><text x="60.3306%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="60.4839%" y="1380" width="0.2016%" height="15" fill="rgb(241,216,45)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="60.4839%" y="1396" width="0.2016%" height="15" fill="rgb(242,22,33)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="60.4839%" y="1412" width="0.2016%" height="15" fill="rgb(231,105,49)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="60.4839%" y="1428" width="0.2016%" height="15" fill="rgb(218,204,15)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="60.4839%" y="1444" width="0.2016%" height="15" fill="rgb(235,138,41)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1454.50"></text></g><g><title><module> (markupsafe/__init__.py:1) (1 samples, 0.20%)</title><rect x="60.4839%" y="1460" width="0.2016%" height="15" fill="rgb(246,0,9)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="60.4839%" y="1476" width="0.2016%" height="15" fill="rgb(210,74,4)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="60.4839%" y="1492" width="0.2016%" height="15" fill="rgb(250,60,41)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="60.4839%" y="1508" width="0.2016%" height="15" fill="rgb(220,115,12)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1518.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="60.4839%" y="1524" width="0.2016%" height="15" fill="rgb(237,100,13)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1534.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.20%)</title><rect x="60.4839%" y="1540" width="0.2016%" height="15" fill="rgb(213,55,26)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="60.4839%" y="1556" width="0.2016%" height="15" fill="rgb(216,17,4)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1566.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.20%)</title><rect x="60.4839%" y="1572" width="0.2016%" height="15" fill="rgb(220,153,47)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1582.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.20%)</title><rect x="60.4839%" y="1588" width="0.2016%" height="15" fill="rgb(215,131,9)" fg:x="300" fg:w="1"/><text x="60.7339%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="60.6855%" y="1476" width="0.2016%" height="15" fill="rgb(233,46,42)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1486.50"></text></g><g><title><module> (jinja2/nodes.py:1) (1 samples, 0.20%)</title><rect x="60.6855%" y="1492" width="0.2016%" height="15" fill="rgb(226,86,7)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1502.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="60.6855%" y="1508" width="0.2016%" height="15" fill="rgb(239,226,21)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1518.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="60.6855%" y="1524" width="0.2016%" height="15" fill="rgb(244,137,22)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1534.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="60.6855%" y="1540" width="0.2016%" height="15" fill="rgb(211,139,35)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1550.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="60.6855%" y="1556" width="0.2016%" height="15" fill="rgb(214,62,50)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="60.6855%" y="1572" width="0.2016%" height="15" fill="rgb(212,113,44)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1582.50"></text></g><g><title><module> (jinja2/utils.py:1) (1 samples, 0.20%)</title><rect x="60.6855%" y="1588" width="0.2016%" height="15" fill="rgb(226,150,43)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1598.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.20%)</title><rect x="60.6855%" y="1604" width="0.2016%" height="15" fill="rgb(250,71,37)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1614.50"></text></g><g><title>__setitem__ (enum.py:88) (1 samples, 0.20%)</title><rect x="60.6855%" y="1620" width="0.2016%" height="15" fill="rgb(219,76,19)" fg:x="301" fg:w="1"/><text x="60.9355%" y="1630.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="60.0806%" y="804" width="1.0081%" height="15" fill="rgb(250,39,11)" fg:x="298" fg:w="5"/><text x="60.3306%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="60.0806%" y="820" width="1.0081%" height="15" fill="rgb(230,64,31)" fg:x="298" fg:w="5"/><text x="60.3306%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="60.0806%" y="836" width="1.0081%" height="15" fill="rgb(208,222,23)" fg:x="298" fg:w="5"/><text x="60.3306%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="60.0806%" y="852" width="1.0081%" height="15" fill="rgb(227,125,18)" fg:x="298" fg:w="5"/><text x="60.3306%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="60.0806%" y="868" width="1.0081%" height="15" fill="rgb(234,210,9)" fg:x="298" fg:w="5"/><text x="60.3306%" y="878.50"></text></g><g><title><module> (dask/delayed.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="884" width="0.6048%" height="15" fill="rgb(217,127,24)" fg:x="300" fg:w="3"/><text x="60.7339%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="60.4839%" y="900" width="0.6048%" height="15" fill="rgb(239,141,48)" fg:x="300" fg:w="3"/><text x="60.7339%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="60.4839%" y="916" width="0.6048%" height="15" fill="rgb(227,109,8)" fg:x="300" fg:w="3"/><text x="60.7339%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="60.4839%" y="932" width="0.6048%" height="15" fill="rgb(235,184,23)" fg:x="300" fg:w="3"/><text x="60.7339%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="60.4839%" y="948" width="0.6048%" height="15" fill="rgb(227,226,48)" fg:x="300" fg:w="3"/><text x="60.7339%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="60.4839%" y="964" width="0.6048%" height="15" fill="rgb(206,150,11)" fg:x="300" fg:w="3"/><text x="60.7339%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="980" width="0.6048%" height="15" fill="rgb(254,2,33)" fg:x="300" fg:w="3"/><text x="60.7339%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="60.4839%" y="996" width="0.6048%" height="15" fill="rgb(243,160,20)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="60.4839%" y="1012" width="0.6048%" height="15" fill="rgb(218,208,30)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="60.4839%" y="1028" width="0.6048%" height="15" fill="rgb(224,120,49)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="60.4839%" y="1044" width="0.6048%" height="15" fill="rgb(246,12,2)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="60.4839%" y="1060" width="0.6048%" height="15" fill="rgb(236,117,3)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="1076" width="0.6048%" height="15" fill="rgb(216,128,52)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="60.4839%" y="1092" width="0.6048%" height="15" fill="rgb(246,145,19)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="60.4839%" y="1108" width="0.6048%" height="15" fill="rgb(222,11,46)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="60.4839%" y="1124" width="0.6048%" height="15" fill="rgb(245,82,36)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="60.4839%" y="1140" width="0.6048%" height="15" fill="rgb(250,73,51)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="60.4839%" y="1156" width="0.6048%" height="15" fill="rgb(221,189,23)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="1172" width="0.6048%" height="15" fill="rgb(210,33,7)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="60.4839%" y="1188" width="0.6048%" height="15" fill="rgb(210,107,22)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="60.4839%" y="1204" width="0.6048%" height="15" fill="rgb(222,116,37)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="60.4839%" y="1220" width="0.6048%" height="15" fill="rgb(254,17,48)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="60.4839%" y="1236" width="0.6048%" height="15" fill="rgb(224,36,32)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="60.4839%" y="1252" width="0.6048%" height="15" fill="rgb(232,90,46)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="1268" width="0.6048%" height="15" fill="rgb(241,66,40)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="60.4839%" y="1284" width="0.6048%" height="15" fill="rgb(249,184,29)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="60.4839%" y="1300" width="0.6048%" height="15" fill="rgb(231,181,1)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="60.4839%" y="1316" width="0.6048%" height="15" fill="rgb(224,94,2)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="60.4839%" y="1332" width="0.6048%" height="15" fill="rgb(229,170,15)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="60.4839%" y="1348" width="0.6048%" height="15" fill="rgb(240,127,35)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1358.50"></text></g><g><title><module> (jinja2/environment.py:1) (3 samples, 0.60%)</title><rect x="60.4839%" y="1364" width="0.6048%" height="15" fill="rgb(248,196,34)" fg:x="300" fg:w="3"/><text x="60.7339%" y="1374.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="60.6855%" y="1380" width="0.4032%" height="15" fill="rgb(236,137,7)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="60.6855%" y="1396" width="0.4032%" height="15" fill="rgb(235,127,16)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="60.6855%" y="1412" width="0.4032%" height="15" fill="rgb(250,192,54)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1422.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="60.6855%" y="1428" width="0.4032%" height="15" fill="rgb(218,98,20)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1438.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="60.6855%" y="1444" width="0.4032%" height="15" fill="rgb(230,176,47)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1454.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="60.6855%" y="1460" width="0.4032%" height="15" fill="rgb(244,2,33)" fg:x="301" fg:w="2"/><text x="60.9355%" y="1470.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="60.8871%" y="1476" width="0.2016%" height="15" fill="rgb(231,100,17)" fg:x="302" fg:w="1"/><text x="61.1371%" y="1486.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="60.8871%" y="1492" width="0.2016%" height="15" fill="rgb(245,23,12)" fg:x="302" fg:w="1"/><text x="61.1371%" y="1502.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="61.0887%" y="964" width="0.2016%" height="15" fill="rgb(249,55,22)" fg:x="303" fg:w="1"/><text x="61.3387%" y="974.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="61.0887%" y="980" width="0.2016%" height="15" fill="rgb(207,134,9)" fg:x="303" fg:w="1"/><text x="61.3387%" y="990.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="61.0887%" y="996" width="0.2016%" height="15" fill="rgb(218,134,0)" fg:x="303" fg:w="1"/><text x="61.3387%" y="1006.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="61.0887%" y="1012" width="0.2016%" height="15" fill="rgb(213,212,33)" fg:x="303" fg:w="1"/><text x="61.3387%" y="1022.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.20%)</title><rect x="61.0887%" y="1028" width="0.2016%" height="15" fill="rgb(252,106,18)" fg:x="303" fg:w="1"/><text x="61.3387%" y="1038.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.20%)</title><rect x="61.0887%" y="1044" width="0.2016%" height="15" fill="rgb(208,126,42)" fg:x="303" fg:w="1"/><text x="61.3387%" y="1054.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="61.0887%" y="1060" width="0.2016%" height="15" fill="rgb(246,175,29)" fg:x="303" fg:w="1"/><text x="61.3387%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="61.0887%" y="932" width="0.8065%" height="15" fill="rgb(215,13,50)" fg:x="303" fg:w="4"/><text x="61.3387%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="61.0887%" y="948" width="0.8065%" height="15" fill="rgb(216,172,15)" fg:x="303" fg:w="4"/><text x="61.3387%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="61.2903%" y="964" width="0.6048%" height="15" fill="rgb(212,103,13)" fg:x="304" fg:w="3"/><text x="61.5403%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="61.2903%" y="980" width="0.6048%" height="15" fill="rgb(231,171,36)" fg:x="304" fg:w="3"/><text x="61.5403%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="61.2903%" y="996" width="0.6048%" height="15" fill="rgb(250,123,20)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (3 samples, 0.60%)</title><rect x="61.2903%" y="1012" width="0.6048%" height="15" fill="rgb(212,53,50)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="61.2903%" y="1028" width="0.6048%" height="15" fill="rgb(243,54,12)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="61.2903%" y="1044" width="0.6048%" height="15" fill="rgb(234,101,34)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="61.2903%" y="1060" width="0.6048%" height="15" fill="rgb(254,67,22)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="61.2903%" y="1076" width="0.6048%" height="15" fill="rgb(250,35,47)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="61.2903%" y="1092" width="0.6048%" height="15" fill="rgb(226,126,38)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (3 samples, 0.60%)</title><rect x="61.2903%" y="1108" width="0.6048%" height="15" fill="rgb(216,138,53)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="61.2903%" y="1124" width="0.6048%" height="15" fill="rgb(246,199,43)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="61.2903%" y="1140" width="0.6048%" height="15" fill="rgb(232,125,11)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="61.2903%" y="1156" width="0.6048%" height="15" fill="rgb(218,219,45)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="61.2903%" y="1172" width="0.6048%" height="15" fill="rgb(216,102,54)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="61.2903%" y="1188" width="0.6048%" height="15" fill="rgb(250,228,7)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1198.50"></text></g><g><title><module> (yaml/reader.py:18) (3 samples, 0.60%)</title><rect x="61.2903%" y="1204" width="0.6048%" height="15" fill="rgb(226,125,25)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1214.50"></text></g><g><title>Reader (yaml/reader.py:45) (3 samples, 0.60%)</title><rect x="61.2903%" y="1220" width="0.6048%" height="15" fill="rgb(224,165,27)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1230.50"></text></g><g><title>compile (re.py:250) (3 samples, 0.60%)</title><rect x="61.2903%" y="1236" width="0.6048%" height="15" fill="rgb(233,86,3)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1246.50"></text></g><g><title>_compile (re.py:289) (3 samples, 0.60%)</title><rect x="61.2903%" y="1252" width="0.6048%" height="15" fill="rgb(228,116,20)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1262.50"></text></g><g><title>compile (sre_compile.py:783) (3 samples, 0.60%)</title><rect x="61.2903%" y="1268" width="0.6048%" height="15" fill="rgb(209,192,17)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1278.50"></text></g><g><title>_code (sre_compile.py:622) (3 samples, 0.60%)</title><rect x="61.2903%" y="1284" width="0.6048%" height="15" fill="rgb(224,88,34)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1294.50"></text></g><g><title>_compile (sre_compile.py:87) (3 samples, 0.60%)</title><rect x="61.2903%" y="1300" width="0.6048%" height="15" fill="rgb(233,38,6)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1310.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (3 samples, 0.60%)</title><rect x="61.2903%" y="1316" width="0.6048%" height="15" fill="rgb(212,59,30)" fg:x="304" fg:w="3"/><text x="61.5403%" y="1326.50"></text></g><g><title><module> (dask/config.py:1) (6 samples, 1.21%)</title><rect x="61.0887%" y="916" width="1.2097%" height="15" fill="rgb(213,80,3)" fg:x="303" fg:w="6"/><text x="61.3387%" y="926.50"></text></g><g><title>_initialize (dask/config.py:792) (2 samples, 0.40%)</title><rect x="61.8952%" y="932" width="0.4032%" height="15" fill="rgb(251,178,7)" fg:x="307" fg:w="2"/><text x="62.1452%" y="942.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (2 samples, 0.40%)</title><rect x="61.8952%" y="948" width="0.4032%" height="15" fill="rgb(213,154,26)" fg:x="307" fg:w="2"/><text x="62.1452%" y="958.50"></text></g><g><title>load (yaml/__init__.py:74) (2 samples, 0.40%)</title><rect x="61.8952%" y="964" width="0.4032%" height="15" fill="rgb(238,165,49)" fg:x="307" fg:w="2"/><text x="62.1452%" y="974.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (2 samples, 0.40%)</title><rect x="61.8952%" y="980" width="0.4032%" height="15" fill="rgb(248,91,46)" fg:x="307" fg:w="2"/><text x="62.1452%" y="990.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (2 samples, 0.40%)</title><rect x="61.8952%" y="996" width="0.4032%" height="15" fill="rgb(244,21,52)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1006.50"></text></g><g><title>compose_document (yaml/composer.py:50) (2 samples, 0.40%)</title><rect x="61.8952%" y="1012" width="0.4032%" height="15" fill="rgb(247,122,20)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1022.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.40%)</title><rect x="61.8952%" y="1028" width="0.4032%" height="15" fill="rgb(218,27,9)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1038.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.40%)</title><rect x="61.8952%" y="1044" width="0.4032%" height="15" fill="rgb(246,7,6)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1054.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.40%)</title><rect x="61.8952%" y="1060" width="0.4032%" height="15" fill="rgb(227,135,54)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1070.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.40%)</title><rect x="61.8952%" y="1076" width="0.4032%" height="15" fill="rgb(247,14,11)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1086.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.40%)</title><rect x="61.8952%" y="1092" width="0.4032%" height="15" fill="rgb(206,149,34)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1102.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.40%)</title><rect x="61.8952%" y="1108" width="0.4032%" height="15" fill="rgb(227,228,4)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1118.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.40%)</title><rect x="61.8952%" y="1124" width="0.4032%" height="15" fill="rgb(238,218,28)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1134.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (2 samples, 0.40%)</title><rect x="61.8952%" y="1140" width="0.4032%" height="15" fill="rgb(252,86,40)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1150.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.40%)</title><rect x="61.8952%" y="1156" width="0.4032%" height="15" fill="rgb(251,225,11)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1166.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.40%)</title><rect x="61.8952%" y="1172" width="0.4032%" height="15" fill="rgb(206,46,49)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1182.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 0.40%)</title><rect x="61.8952%" y="1188" width="0.4032%" height="15" fill="rgb(245,128,24)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1198.50"></text></g><g><title>peek (yaml/reader.py:87) (2 samples, 0.40%)</title><rect x="61.8952%" y="1204" width="0.4032%" height="15" fill="rgb(219,177,34)" fg:x="307" fg:w="2"/><text x="62.1452%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (276 samples, 55.65%)</title><rect x="6.8548%" y="100" width="55.6452%" height="15" fill="rgb(218,60,48)" fg:x="34" fg:w="276"/><text x="7.1048%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (276 samples, 55.65%)</title><rect x="6.8548%" y="116" width="55.6452%" height="15" fill="rgb(221,11,5)" fg:x="34" fg:w="276"/><text x="7.1048%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (276 samples, 55.65%)</title><rect x="6.8548%" y="132" width="55.6452%" height="15" fill="rgb(220,148,13)" fg:x="34" fg:w="276"/><text x="7.1048%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (276 samples, 55.65%)</title><rect x="6.8548%" y="148" width="55.6452%" height="15" fill="rgb(210,16,3)" fg:x="34" fg:w="276"/><text x="7.1048%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (276 samples, 55.65%)</title><rect x="6.8548%" y="164" width="55.6452%" height="15" fill="rgb(236,80,2)" fg:x="34" fg:w="276"/><text x="7.1048%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (85 samples, 17.14%)</title><rect x="45.3629%" y="180" width="17.1371%" height="15" fill="rgb(239,129,19)" fg:x="225" fg:w="85"/><text x="45.6129%" y="190.50"><module> (xarray/__init__.p..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (85 samples, 17.14%)</title><rect x="45.3629%" y="196" width="17.1371%" height="15" fill="rgb(220,106,35)" fg:x="225" fg:w="85"/><text x="45.6129%" y="206.50">_handle_fromlist (<frozen i..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (85 samples, 17.14%)</title><rect x="45.3629%" y="212" width="17.1371%" height="15" fill="rgb(252,139,45)" fg:x="225" fg:w="85"/><text x="45.6129%" y="222.50">_call_with_frames_removed (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (85 samples, 17.14%)</title><rect x="45.3629%" y="228" width="17.1371%" height="15" fill="rgb(229,8,36)" fg:x="225" fg:w="85"/><text x="45.6129%" y="238.50">_find_and_load (<frozen imp..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (85 samples, 17.14%)</title><rect x="45.3629%" y="244" width="17.1371%" height="15" fill="rgb(230,126,33)" fg:x="225" fg:w="85"/><text x="45.6129%" y="254.50">_find_and_load_unlocked (<f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (85 samples, 17.14%)</title><rect x="45.3629%" y="260" width="17.1371%" height="15" fill="rgb(239,140,21)" fg:x="225" fg:w="85"/><text x="45.6129%" y="270.50">_load_unlocked (<frozen imp..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (85 samples, 17.14%)</title><rect x="45.3629%" y="276" width="17.1371%" height="15" fill="rgb(254,104,9)" fg:x="225" fg:w="85"/><text x="45.6129%" y="286.50">exec_module (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (85 samples, 17.14%)</title><rect x="45.3629%" y="292" width="17.1371%" height="15" fill="rgb(239,52,14)" fg:x="225" fg:w="85"/><text x="45.6129%" y="302.50">_call_with_frames_removed (..</text></g><g><title><module> (xarray/tutorial.py:1) (12 samples, 2.42%)</title><rect x="60.0806%" y="308" width="2.4194%" height="15" fill="rgb(208,227,44)" fg:x="298" fg:w="12"/><text x="60.3306%" y="318.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="324" width="2.4194%" height="15" fill="rgb(246,18,19)" fg:x="298" fg:w="12"/><text x="60.3306%" y="334.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="340" width="2.4194%" height="15" fill="rgb(235,228,25)" fg:x="298" fg:w="12"/><text x="60.3306%" y="350.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="356" width="2.4194%" height="15" fill="rgb(240,156,20)" fg:x="298" fg:w="12"/><text x="60.3306%" y="366.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="372" width="2.4194%" height="15" fill="rgb(224,8,20)" fg:x="298" fg:w="12"/><text x="60.3306%" y="382.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="388" width="2.4194%" height="15" fill="rgb(214,12,52)" fg:x="298" fg:w="12"/><text x="60.3306%" y="398.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="60.0806%" y="404" width="2.4194%" height="15" fill="rgb(211,220,47)" fg:x="298" fg:w="12"/><text x="60.3306%" y="414.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="60.0806%" y="420" width="2.4194%" height="15" fill="rgb(250,173,5)" fg:x="298" fg:w="12"/><text x="60.3306%" y="430.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="436" width="2.4194%" height="15" fill="rgb(250,125,52)" fg:x="298" fg:w="12"/><text x="60.3306%" y="446.50">_c..</text></g><g><title><module> (xarray/backends/__init__.py:1) (12 samples, 2.42%)</title><rect x="60.0806%" y="452" width="2.4194%" height="15" fill="rgb(209,133,18)" fg:x="298" fg:w="12"/><text x="60.3306%" y="462.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="468" width="2.4194%" height="15" fill="rgb(216,173,22)" fg:x="298" fg:w="12"/><text x="60.3306%" y="478.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="484" width="2.4194%" height="15" fill="rgb(205,3,22)" fg:x="298" fg:w="12"/><text x="60.3306%" y="494.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="60.0806%" y="500" width="2.4194%" height="15" fill="rgb(248,22,20)" fg:x="298" fg:w="12"/><text x="60.3306%" y="510.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="60.0806%" y="516" width="2.4194%" height="15" fill="rgb(233,6,29)" fg:x="298" fg:w="12"/><text x="60.3306%" y="526.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="532" width="2.4194%" height="15" fill="rgb(240,22,54)" fg:x="298" fg:w="12"/><text x="60.3306%" y="542.50">_c..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (12 samples, 2.42%)</title><rect x="60.0806%" y="548" width="2.4194%" height="15" fill="rgb(231,133,32)" fg:x="298" fg:w="12"/><text x="60.3306%" y="558.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="564" width="2.4194%" height="15" fill="rgb(248,193,4)" fg:x="298" fg:w="12"/><text x="60.3306%" y="574.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="580" width="2.4194%" height="15" fill="rgb(211,178,46)" fg:x="298" fg:w="12"/><text x="60.3306%" y="590.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="60.0806%" y="596" width="2.4194%" height="15" fill="rgb(224,5,42)" fg:x="298" fg:w="12"/><text x="60.3306%" y="606.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="60.0806%" y="612" width="2.4194%" height="15" fill="rgb(239,176,25)" fg:x="298" fg:w="12"/><text x="60.3306%" y="622.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="628" width="2.4194%" height="15" fill="rgb(245,187,50)" fg:x="298" fg:w="12"/><text x="60.3306%" y="638.50">_c..</text></g><g><title><module> (xarray/backends/locks.py:1) (12 samples, 2.42%)</title><rect x="60.0806%" y="644" width="2.4194%" height="15" fill="rgb(248,24,15)" fg:x="298" fg:w="12"/><text x="60.3306%" y="654.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="660" width="2.4194%" height="15" fill="rgb(205,166,13)" fg:x="298" fg:w="12"/><text x="60.3306%" y="670.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="676" width="2.4194%" height="15" fill="rgb(208,114,23)" fg:x="298" fg:w="12"/><text x="60.3306%" y="686.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="692" width="2.4194%" height="15" fill="rgb(239,127,18)" fg:x="298" fg:w="12"/><text x="60.3306%" y="702.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.42%)</title><rect x="60.0806%" y="708" width="2.4194%" height="15" fill="rgb(219,154,28)" fg:x="298" fg:w="12"/><text x="60.3306%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.42%)</title><rect x="60.0806%" y="724" width="2.4194%" height="15" fill="rgb(225,157,23)" fg:x="298" fg:w="12"/><text x="60.3306%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.42%)</title><rect x="60.0806%" y="740" width="2.4194%" height="15" fill="rgb(219,8,6)" fg:x="298" fg:w="12"/><text x="60.3306%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.42%)</title><rect x="60.0806%" y="756" width="2.4194%" height="15" fill="rgb(212,47,6)" fg:x="298" fg:w="12"/><text x="60.3306%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.42%)</title><rect x="60.0806%" y="772" width="2.4194%" height="15" fill="rgb(224,190,4)" fg:x="298" fg:w="12"/><text x="60.3306%" y="782.50">_c..</text></g><g><title><module> (dask/__init__.py:1) (12 samples, 2.42%)</title><rect x="60.0806%" y="788" width="2.4194%" height="15" fill="rgb(239,183,29)" fg:x="298" fg:w="12"/><text x="60.3306%" y="798.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 1.41%)</title><rect x="61.0887%" y="804" width="1.4113%" height="15" fill="rgb(213,57,7)" fg:x="303" fg:w="7"/><text x="61.3387%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="61.0887%" y="820" width="1.4113%" height="15" fill="rgb(216,148,1)" fg:x="303" fg:w="7"/><text x="61.3387%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.41%)</title><rect x="61.0887%" y="836" width="1.4113%" height="15" fill="rgb(236,182,29)" fg:x="303" fg:w="7"/><text x="61.3387%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.41%)</title><rect x="61.0887%" y="852" width="1.4113%" height="15" fill="rgb(244,120,48)" fg:x="303" fg:w="7"/><text x="61.3387%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.41%)</title><rect x="61.0887%" y="868" width="1.4113%" height="15" fill="rgb(206,71,34)" fg:x="303" fg:w="7"/><text x="61.3387%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.41%)</title><rect x="61.0887%" y="884" width="1.4113%" height="15" fill="rgb(242,32,6)" fg:x="303" fg:w="7"/><text x="61.3387%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="61.0887%" y="900" width="1.4113%" height="15" fill="rgb(241,35,3)" fg:x="303" fg:w="7"/><text x="61.3387%" y="910.50"></text></g><g><title><module> (dask/datasets.py:1) (1 samples, 0.20%)</title><rect x="62.2984%" y="916" width="0.2016%" height="15" fill="rgb(222,62,19)" fg:x="309" fg:w="1"/><text x="62.5484%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.2984%" y="932" width="0.2016%" height="15" fill="rgb(223,110,41)" fg:x="309" fg:w="1"/><text x="62.5484%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.2984%" y="948" width="0.2016%" height="15" fill="rgb(208,224,4)" fg:x="309" fg:w="1"/><text x="62.5484%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.2984%" y="964" width="0.2016%" height="15" fill="rgb(241,137,19)" fg:x="309" fg:w="1"/><text x="62.5484%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="62.2984%" y="980" width="0.2016%" height="15" fill="rgb(244,24,17)" fg:x="309" fg:w="1"/><text x="62.5484%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="62.2984%" y="996" width="0.2016%" height="15" fill="rgb(245,178,49)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (1 samples, 0.20%)</title><rect x="62.2984%" y="1012" width="0.2016%" height="15" fill="rgb(219,160,38)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.2984%" y="1028" width="0.2016%" height="15" fill="rgb(228,137,14)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.2984%" y="1044" width="0.2016%" height="15" fill="rgb(237,134,11)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.2984%" y="1060" width="0.2016%" height="15" fill="rgb(211,126,44)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="62.2984%" y="1076" width="0.2016%" height="15" fill="rgb(226,171,33)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="62.2984%" y="1092" width="0.2016%" height="15" fill="rgb(253,99,13)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (1 samples, 0.20%)</title><rect x="62.2984%" y="1108" width="0.2016%" height="15" fill="rgb(244,48,7)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="62.2984%" y="1124" width="0.2016%" height="15" fill="rgb(244,217,54)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="62.2984%" y="1140" width="0.2016%" height="15" fill="rgb(224,15,18)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.2984%" y="1156" width="0.2016%" height="15" fill="rgb(244,99,12)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.2984%" y="1172" width="0.2016%" height="15" fill="rgb(233,226,8)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.2984%" y="1188" width="0.2016%" height="15" fill="rgb(229,211,3)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="62.2984%" y="1204" width="0.2016%" height="15" fill="rgb(216,140,21)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="62.2984%" y="1220" width="0.2016%" height="15" fill="rgb(234,122,30)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1230.50"></text></g><g><title><module> (tlz/_build_tlz.py:1) (1 samples, 0.20%)</title><rect x="62.2984%" y="1236" width="0.2016%" height="15" fill="rgb(236,25,46)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.2984%" y="1252" width="0.2016%" height="15" fill="rgb(217,52,54)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.2984%" y="1268" width="0.2016%" height="15" fill="rgb(222,29,26)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.2984%" y="1284" width="0.2016%" height="15" fill="rgb(216,177,29)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="62.2984%" y="1300" width="0.2016%" height="15" fill="rgb(247,136,51)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="62.2984%" y="1316" width="0.2016%" height="15" fill="rgb(231,47,47)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1326.50"></text></g><g><title><module> (toolz/__init__.py:1) (1 samples, 0.20%)</title><rect x="62.2984%" y="1332" width="0.2016%" height="15" fill="rgb(211,192,36)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.2984%" y="1348" width="0.2016%" height="15" fill="rgb(229,156,32)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.2984%" y="1364" width="0.2016%" height="15" fill="rgb(248,213,20)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.2984%" y="1380" width="0.2016%" height="15" fill="rgb(217,64,7)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="62.2984%" y="1396" width="0.2016%" height="15" fill="rgb(232,142,8)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1406.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="62.2984%" y="1412" width="0.2016%" height="15" fill="rgb(224,92,44)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1422.50"></text></g><g><title>_classify_pyc (<frozen importlib._bootstrap_external>:560) (1 samples, 0.20%)</title><rect x="62.2984%" y="1428" width="0.2016%" height="15" fill="rgb(214,169,17)" fg:x="309" fg:w="1"/><text x="62.5484%" y="1438.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="62.5000%" y="724" width="0.2016%" height="15" fill="rgb(210,59,37)" fg:x="310" fg:w="1"/><text x="62.7500%" y="734.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="62.5000%" y="740" width="0.2016%" height="15" fill="rgb(214,116,48)" fg:x="310" fg:w="1"/><text x="62.7500%" y="750.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="62.5000%" y="756" width="0.2016%" height="15" fill="rgb(244,191,6)" fg:x="310" fg:w="1"/><text x="62.7500%" y="766.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="62.5000%" y="772" width="0.2016%" height="15" fill="rgb(241,50,52)" fg:x="310" fg:w="1"/><text x="62.7500%" y="782.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.20%)</title><rect x="62.5000%" y="788" width="0.2016%" height="15" fill="rgb(236,75,39)" fg:x="310" fg:w="1"/><text x="62.7500%" y="798.50"></text></g><g><title><module> (requests/exceptions.py:1) (2 samples, 0.40%)</title><rect x="62.5000%" y="484" width="0.4032%" height="15" fill="rgb(236,99,0)" fg:x="310" fg:w="2"/><text x="62.7500%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="62.5000%" y="500" width="0.4032%" height="15" fill="rgb(207,202,15)" fg:x="310" fg:w="2"/><text x="62.7500%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="62.5000%" y="516" width="0.4032%" height="15" fill="rgb(233,207,14)" fg:x="310" fg:w="2"/><text x="62.7500%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="62.5000%" y="532" width="0.4032%" height="15" fill="rgb(226,27,51)" fg:x="310" fg:w="2"/><text x="62.7500%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="62.5000%" y="548" width="0.4032%" height="15" fill="rgb(206,104,42)" fg:x="310" fg:w="2"/><text x="62.7500%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="62.5000%" y="564" width="0.4032%" height="15" fill="rgb(212,225,4)" fg:x="310" fg:w="2"/><text x="62.7500%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (2 samples, 0.40%)</title><rect x="62.5000%" y="580" width="0.4032%" height="15" fill="rgb(233,96,42)" fg:x="310" fg:w="2"/><text x="62.7500%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="62.5000%" y="596" width="0.4032%" height="15" fill="rgb(229,21,32)" fg:x="310" fg:w="2"/><text x="62.7500%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="62.5000%" y="612" width="0.4032%" height="15" fill="rgb(226,216,24)" fg:x="310" fg:w="2"/><text x="62.7500%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="62.5000%" y="628" width="0.4032%" height="15" fill="rgb(221,163,17)" fg:x="310" fg:w="2"/><text x="62.7500%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="62.5000%" y="644" width="0.4032%" height="15" fill="rgb(216,216,42)" fg:x="310" fg:w="2"/><text x="62.7500%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="62.5000%" y="660" width="0.4032%" height="15" fill="rgb(240,118,7)" fg:x="310" fg:w="2"/><text x="62.7500%" y="670.50"></text></g><g><title><module> (simplejson/__init__.py:1) (2 samples, 0.40%)</title><rect x="62.5000%" y="676" width="0.4032%" height="15" fill="rgb(221,67,37)" fg:x="310" fg:w="2"/><text x="62.7500%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="62.5000%" y="692" width="0.4032%" height="15" fill="rgb(241,32,44)" fg:x="310" fg:w="2"/><text x="62.7500%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="62.5000%" y="708" width="0.4032%" height="15" fill="rgb(235,204,43)" fg:x="310" fg:w="2"/><text x="62.7500%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="62.7016%" y="724" width="0.2016%" height="15" fill="rgb(213,116,10)" fg:x="311" fg:w="1"/><text x="62.9516%" y="734.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.20%)</title><rect x="62.7016%" y="740" width="0.2016%" height="15" fill="rgb(239,15,48)" fg:x="311" fg:w="1"/><text x="62.9516%" y="750.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.20%)</title><rect x="62.7016%" y="756" width="0.2016%" height="15" fill="rgb(207,123,36)" fg:x="311" fg:w="1"/><text x="62.9516%" y="766.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.20%)</title><rect x="62.7016%" y="772" width="0.2016%" height="15" fill="rgb(209,103,30)" fg:x="311" fg:w="1"/><text x="62.9516%" y="782.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.20%)</title><rect x="62.7016%" y="788" width="0.2016%" height="15" fill="rgb(238,100,19)" fg:x="311" fg:w="1"/><text x="62.9516%" y="798.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.20%)</title><rect x="62.7016%" y="804" width="0.2016%" height="15" fill="rgb(244,30,14)" fg:x="311" fg:w="1"/><text x="62.9516%" y="814.50"></text></g><g><title><module> (urllib3/util/request.py:1) (1 samples, 0.20%)</title><rect x="62.9032%" y="820" width="0.2016%" height="15" fill="rgb(249,174,6)" fg:x="312" fg:w="1"/><text x="63.1532%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="62.9032%" y="836" width="0.2016%" height="15" fill="rgb(235,213,41)" fg:x="312" fg:w="1"/><text x="63.1532%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="62.9032%" y="852" width="0.2016%" height="15" fill="rgb(213,118,6)" fg:x="312" fg:w="1"/><text x="63.1532%" y="862.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="62.9032%" y="868" width="0.2016%" height="15" fill="rgb(235,44,51)" fg:x="312" fg:w="1"/><text x="63.1532%" y="878.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="62.9032%" y="884" width="0.2016%" height="15" fill="rgb(217,9,53)" fg:x="312" fg:w="1"/><text x="63.1532%" y="894.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="62.9032%" y="900" width="0.2016%" height="15" fill="rgb(237,172,34)" fg:x="312" fg:w="1"/><text x="63.1532%" y="910.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="62.9032%" y="916" width="0.2016%" height="15" fill="rgb(206,206,11)" fg:x="312" fg:w="1"/><text x="63.1532%" y="926.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="62.9032%" y="932" width="0.2016%" height="15" fill="rgb(214,149,29)" fg:x="312" fg:w="1"/><text x="63.1532%" y="942.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.20%)</title><rect x="63.3065%" y="1092" width="0.2016%" height="15" fill="rgb(208,123,3)" fg:x="314" fg:w="1"/><text x="63.5565%" y="1102.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.20%)</title><rect x="63.3065%" y="1108" width="0.2016%" height="15" fill="rgb(229,126,4)" fg:x="314" fg:w="1"/><text x="63.5565%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="62.5000%" y="404" width="1.2097%" height="15" fill="rgb(222,92,36)" fg:x="310" fg:w="6"/><text x="62.7500%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="62.5000%" y="420" width="1.2097%" height="15" fill="rgb(216,39,41)" fg:x="310" fg:w="6"/><text x="62.7500%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="62.5000%" y="436" width="1.2097%" height="15" fill="rgb(253,127,28)" fg:x="310" fg:w="6"/><text x="62.7500%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="62.5000%" y="452" width="1.2097%" height="15" fill="rgb(249,152,51)" fg:x="310" fg:w="6"/><text x="62.7500%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="62.5000%" y="468" width="1.2097%" height="15" fill="rgb(209,123,42)" fg:x="310" fg:w="6"/><text x="62.7500%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (4 samples, 0.81%)</title><rect x="62.9032%" y="484" width="0.8065%" height="15" fill="rgb(241,118,22)" fg:x="312" fg:w="4"/><text x="63.1532%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="62.9032%" y="500" width="0.8065%" height="15" fill="rgb(208,25,7)" fg:x="312" fg:w="4"/><text x="63.1532%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="62.9032%" y="516" width="0.8065%" height="15" fill="rgb(243,144,39)" fg:x="312" fg:w="4"/><text x="63.1532%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="62.9032%" y="532" width="0.8065%" height="15" fill="rgb(250,50,5)" fg:x="312" fg:w="4"/><text x="63.1532%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="62.9032%" y="548" width="0.8065%" height="15" fill="rgb(207,67,11)" fg:x="312" fg:w="4"/><text x="63.1532%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="62.9032%" y="564" width="0.8065%" height="15" fill="rgb(245,204,40)" fg:x="312" fg:w="4"/><text x="63.1532%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (4 samples, 0.81%)</title><rect x="62.9032%" y="580" width="0.8065%" height="15" fill="rgb(238,228,24)" fg:x="312" fg:w="4"/><text x="63.1532%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="62.9032%" y="596" width="0.8065%" height="15" fill="rgb(217,116,22)" fg:x="312" fg:w="4"/><text x="63.1532%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="62.9032%" y="612" width="0.8065%" height="15" fill="rgb(234,98,12)" fg:x="312" fg:w="4"/><text x="63.1532%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="62.9032%" y="628" width="0.8065%" height="15" fill="rgb(242,170,50)" fg:x="312" fg:w="4"/><text x="63.1532%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="62.9032%" y="644" width="0.8065%" height="15" fill="rgb(235,7,5)" fg:x="312" fg:w="4"/><text x="63.1532%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="62.9032%" y="660" width="0.8065%" height="15" fill="rgb(241,114,28)" fg:x="312" fg:w="4"/><text x="63.1532%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="62.9032%" y="676" width="0.8065%" height="15" fill="rgb(246,112,42)" fg:x="312" fg:w="4"/><text x="63.1532%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="62.9032%" y="692" width="0.8065%" height="15" fill="rgb(248,228,14)" fg:x="312" fg:w="4"/><text x="63.1532%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="62.9032%" y="708" width="0.8065%" height="15" fill="rgb(208,133,18)" fg:x="312" fg:w="4"/><text x="63.1532%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (4 samples, 0.81%)</title><rect x="62.9032%" y="724" width="0.8065%" height="15" fill="rgb(207,35,49)" fg:x="312" fg:w="4"/><text x="63.1532%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="62.9032%" y="740" width="0.8065%" height="15" fill="rgb(205,68,36)" fg:x="312" fg:w="4"/><text x="63.1532%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="62.9032%" y="756" width="0.8065%" height="15" fill="rgb(245,62,40)" fg:x="312" fg:w="4"/><text x="63.1532%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="62.9032%" y="772" width="0.8065%" height="15" fill="rgb(228,27,24)" fg:x="312" fg:w="4"/><text x="63.1532%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="62.9032%" y="788" width="0.8065%" height="15" fill="rgb(253,19,12)" fg:x="312" fg:w="4"/><text x="63.1532%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="62.9032%" y="804" width="0.8065%" height="15" fill="rgb(232,28,20)" fg:x="312" fg:w="4"/><text x="63.1532%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (3 samples, 0.60%)</title><rect x="63.1048%" y="820" width="0.6048%" height="15" fill="rgb(218,35,51)" fg:x="313" fg:w="3"/><text x="63.3548%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="63.1048%" y="836" width="0.6048%" height="15" fill="rgb(212,90,40)" fg:x="313" fg:w="3"/><text x="63.3548%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="63.1048%" y="852" width="0.6048%" height="15" fill="rgb(220,172,12)" fg:x="313" fg:w="3"/><text x="63.3548%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="63.1048%" y="868" width="0.6048%" height="15" fill="rgb(226,159,20)" fg:x="313" fg:w="3"/><text x="63.3548%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="63.1048%" y="884" width="0.6048%" height="15" fill="rgb(234,205,16)" fg:x="313" fg:w="3"/><text x="63.3548%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="63.1048%" y="900" width="0.6048%" height="15" fill="rgb(207,9,39)" fg:x="313" fg:w="3"/><text x="63.3548%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (3 samples, 0.60%)</title><rect x="63.1048%" y="916" width="0.6048%" height="15" fill="rgb(249,143,15)" fg:x="313" fg:w="3"/><text x="63.3548%" y="926.50"></text></g><g><title>compile (re.py:250) (3 samples, 0.60%)</title><rect x="63.1048%" y="932" width="0.6048%" height="15" fill="rgb(253,133,29)" fg:x="313" fg:w="3"/><text x="63.3548%" y="942.50"></text></g><g><title>_compile (re.py:289) (3 samples, 0.60%)</title><rect x="63.1048%" y="948" width="0.6048%" height="15" fill="rgb(221,187,0)" fg:x="313" fg:w="3"/><text x="63.3548%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (3 samples, 0.60%)</title><rect x="63.1048%" y="964" width="0.6048%" height="15" fill="rgb(205,204,26)" fg:x="313" fg:w="3"/><text x="63.3548%" y="974.50"></text></g><g><title>parse (sre_parse.py:944) (3 samples, 0.60%)</title><rect x="63.1048%" y="980" width="0.6048%" height="15" fill="rgb(224,68,54)" fg:x="313" fg:w="3"/><text x="63.3548%" y="990.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (3 samples, 0.60%)</title><rect x="63.1048%" y="996" width="0.6048%" height="15" fill="rgb(209,67,4)" fg:x="313" fg:w="3"/><text x="63.3548%" y="1006.50"></text></g><g><title>_parse (sre_parse.py:494) (3 samples, 0.60%)</title><rect x="63.1048%" y="1012" width="0.6048%" height="15" fill="rgb(228,229,18)" fg:x="313" fg:w="3"/><text x="63.3548%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (3 samples, 0.60%)</title><rect x="63.1048%" y="1028" width="0.6048%" height="15" fill="rgb(231,89,13)" fg:x="313" fg:w="3"/><text x="63.3548%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.40%)</title><rect x="63.3065%" y="1044" width="0.4032%" height="15" fill="rgb(210,182,18)" fg:x="314" fg:w="2"/><text x="63.5565%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (2 samples, 0.40%)</title><rect x="63.3065%" y="1060" width="0.4032%" height="15" fill="rgb(240,105,2)" fg:x="314" fg:w="2"/><text x="63.5565%" y="1070.50"></text></g><g><title>_parse (sre_parse.py:494) (2 samples, 0.40%)</title><rect x="63.3065%" y="1076" width="0.4032%" height="15" fill="rgb(207,170,50)" fg:x="314" fg:w="2"/><text x="63.5565%" y="1086.50"></text></g><g><title>match (sre_parse.py:250) (1 samples, 0.20%)</title><rect x="63.5081%" y="1092" width="0.2016%" height="15" fill="rgb(232,133,24)" fg:x="315" fg:w="1"/><text x="63.7581%" y="1102.50"></text></g><g><title>__next (sre_parse.py:234) (1 samples, 0.20%)</title><rect x="63.5081%" y="1108" width="0.2016%" height="15" fill="rgb(235,166,27)" fg:x="315" fg:w="1"/><text x="63.7581%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.41%)</title><rect x="62.5000%" y="372" width="1.4113%" height="15" fill="rgb(209,19,13)" fg:x="310" fg:w="7"/><text x="62.7500%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (7 samples, 1.41%)</title><rect x="62.5000%" y="388" width="1.4113%" height="15" fill="rgb(226,79,39)" fg:x="310" fg:w="7"/><text x="62.7500%" y="398.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="63.7097%" y="404" width="0.2016%" height="15" fill="rgb(222,163,10)" fg:x="316" fg:w="1"/><text x="63.9597%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="63.7097%" y="420" width="0.2016%" height="15" fill="rgb(214,44,19)" fg:x="316" fg:w="1"/><text x="63.9597%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="63.7097%" y="436" width="0.2016%" height="15" fill="rgb(210,217,13)" fg:x="316" fg:w="1"/><text x="63.9597%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="63.7097%" y="452" width="0.2016%" height="15" fill="rgb(237,61,54)" fg:x="316" fg:w="1"/><text x="63.9597%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="63.7097%" y="468" width="0.2016%" height="15" fill="rgb(226,184,24)" fg:x="316" fg:w="1"/><text x="63.9597%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="63.7097%" y="484" width="0.2016%" height="15" fill="rgb(223,226,4)" fg:x="316" fg:w="1"/><text x="63.9597%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="63.7097%" y="500" width="0.2016%" height="15" fill="rgb(210,26,41)" fg:x="316" fg:w="1"/><text x="63.9597%" y="510.50"></text></g><g><title><module> (requests/packages.py:1) (1 samples, 0.20%)</title><rect x="63.7097%" y="516" width="0.2016%" height="15" fill="rgb(220,221,6)" fg:x="316" fg:w="1"/><text x="63.9597%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="63.7097%" y="532" width="0.2016%" height="15" fill="rgb(225,89,49)" fg:x="316" fg:w="1"/><text x="63.9597%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="63.7097%" y="548" width="0.2016%" height="15" fill="rgb(218,70,45)" fg:x="316" fg:w="1"/><text x="63.9597%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="63.7097%" y="564" width="0.2016%" height="15" fill="rgb(238,166,21)" fg:x="316" fg:w="1"/><text x="63.9597%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="63.7097%" y="580" width="0.2016%" height="15" fill="rgb(224,141,44)" fg:x="316" fg:w="1"/><text x="63.9597%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="63.7097%" y="596" width="0.2016%" height="15" fill="rgb(230,12,49)" fg:x="316" fg:w="1"/><text x="63.9597%" y="606.50"></text></g><g><title><module> (idna/__init__.py:1) (1 samples, 0.20%)</title><rect x="63.7097%" y="612" width="0.2016%" height="15" fill="rgb(212,174,12)" fg:x="316" fg:w="1"/><text x="63.9597%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="63.7097%" y="628" width="0.2016%" height="15" fill="rgb(246,67,9)" fg:x="316" fg:w="1"/><text x="63.9597%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="63.7097%" y="644" width="0.2016%" height="15" fill="rgb(239,35,23)" fg:x="316" fg:w="1"/><text x="63.9597%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="63.7097%" y="660" width="0.2016%" height="15" fill="rgb(211,167,0)" fg:x="316" fg:w="1"/><text x="63.9597%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="63.7097%" y="676" width="0.2016%" height="15" fill="rgb(225,119,45)" fg:x="316" fg:w="1"/><text x="63.9597%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="63.7097%" y="692" width="0.2016%" height="15" fill="rgb(210,162,6)" fg:x="316" fg:w="1"/><text x="63.9597%" y="702.50"></text></g><g><title><module> (idna/core.py:1) (1 samples, 0.20%)</title><rect x="63.7097%" y="708" width="0.2016%" height="15" fill="rgb(208,118,35)" fg:x="316" fg:w="1"/><text x="63.9597%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="63.7097%" y="724" width="0.2016%" height="15" fill="rgb(239,4,53)" fg:x="316" fg:w="1"/><text x="63.9597%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="63.7097%" y="740" width="0.2016%" height="15" fill="rgb(213,130,21)" fg:x="316" fg:w="1"/><text x="63.9597%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="63.7097%" y="756" width="0.2016%" height="15" fill="rgb(235,148,0)" fg:x="316" fg:w="1"/><text x="63.9597%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="63.7097%" y="772" width="0.2016%" height="15" fill="rgb(244,224,18)" fg:x="316" fg:w="1"/><text x="63.9597%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="63.7097%" y="788" width="0.2016%" height="15" fill="rgb(211,214,4)" fg:x="316" fg:w="1"/><text x="63.9597%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="63.7097%" y="804" width="0.2016%" height="15" fill="rgb(206,119,25)" fg:x="316" fg:w="1"/><text x="63.9597%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="63.7097%" y="820" width="0.2016%" height="15" fill="rgb(243,93,47)" fg:x="316" fg:w="1"/><text x="63.9597%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="63.7097%" y="836" width="0.2016%" height="15" fill="rgb(224,194,6)" fg:x="316" fg:w="1"/><text x="63.9597%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="62.5000%" y="116" width="1.6129%" height="15" fill="rgb(243,229,6)" fg:x="310" fg:w="8"/><text x="62.7500%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="62.5000%" y="132" width="1.6129%" height="15" fill="rgb(207,23,50)" fg:x="310" fg:w="8"/><text x="62.7500%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="62.5000%" y="148" width="1.6129%" height="15" fill="rgb(253,192,32)" fg:x="310" fg:w="8"/><text x="62.7500%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="62.5000%" y="164" width="1.6129%" height="15" fill="rgb(213,21,6)" fg:x="310" fg:w="8"/><text x="62.7500%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="62.5000%" y="180" width="1.6129%" height="15" fill="rgb(243,151,13)" fg:x="310" fg:w="8"/><text x="62.7500%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (8 samples, 1.61%)</title><rect x="62.5000%" y="196" width="1.6129%" height="15" fill="rgb(233,165,41)" fg:x="310" fg:w="8"/><text x="62.7500%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="62.5000%" y="212" width="1.6129%" height="15" fill="rgb(246,176,45)" fg:x="310" fg:w="8"/><text x="62.7500%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="62.5000%" y="228" width="1.6129%" height="15" fill="rgb(217,170,52)" fg:x="310" fg:w="8"/><text x="62.7500%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="62.5000%" y="244" width="1.6129%" height="15" fill="rgb(214,203,54)" fg:x="310" fg:w="8"/><text x="62.7500%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="62.5000%" y="260" width="1.6129%" height="15" fill="rgb(248,215,49)" fg:x="310" fg:w="8"/><text x="62.7500%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="62.5000%" y="276" width="1.6129%" height="15" fill="rgb(208,46,10)" fg:x="310" fg:w="8"/><text x="62.7500%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (8 samples, 1.61%)</title><rect x="62.5000%" y="292" width="1.6129%" height="15" fill="rgb(254,5,31)" fg:x="310" fg:w="8"/><text x="62.7500%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="62.5000%" y="308" width="1.6129%" height="15" fill="rgb(222,104,33)" fg:x="310" fg:w="8"/><text x="62.7500%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="62.5000%" y="324" width="1.6129%" height="15" fill="rgb(248,49,16)" fg:x="310" fg:w="8"/><text x="62.7500%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="62.5000%" y="340" width="1.6129%" height="15" fill="rgb(232,198,41)" fg:x="310" fg:w="8"/><text x="62.7500%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="62.5000%" y="356" width="1.6129%" height="15" fill="rgb(214,125,3)" fg:x="310" fg:w="8"/><text x="62.7500%" y="366.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="63.9113%" y="372" width="0.2016%" height="15" fill="rgb(229,220,28)" fg:x="317" fg:w="1"/><text x="64.1613%" y="382.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="63.9113%" y="388" width="0.2016%" height="15" fill="rgb(222,64,37)" fg:x="317" fg:w="1"/><text x="64.1613%" y="398.50"></text></g><g><title><module> (pyparsing/core.py:5) (2 samples, 0.40%)</title><rect x="64.1129%" y="1284" width="0.4032%" height="15" fill="rgb(249,184,13)" fg:x="318" fg:w="2"/><text x="64.3629%" y="1294.50"></text></g><g><title>__add__ (pyparsing/core.py:1410) (2 samples, 0.40%)</title><rect x="64.1129%" y="1300" width="0.4032%" height="15" fill="rgb(252,176,6)" fg:x="318" fg:w="2"/><text x="64.3629%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:3948) (1 samples, 0.20%)</title><rect x="64.3145%" y="1316" width="0.2016%" height="15" fill="rgb(228,153,7)" fg:x="319" fg:w="1"/><text x="64.5645%" y="1326.50"></text></g><g><title>__init__ (pyparsing/core.py:3754) (1 samples, 0.20%)</title><rect x="64.3145%" y="1332" width="0.2016%" height="15" fill="rgb(242,193,5)" fg:x="319" fg:w="1"/><text x="64.5645%" y="1342.50"></text></g><g><title>__init__ (pyparsing/core.py:461) (1 samples, 0.20%)</title><rect x="64.3145%" y="1348" width="0.2016%" height="15" fill="rgb(232,140,9)" fg:x="319" fg:w="1"/><text x="64.5645%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="64.1129%" y="1268" width="0.6048%" height="15" fill="rgb(213,222,16)" fg:x="318" fg:w="3"/><text x="64.3629%" y="1278.50"></text></g><g><title><module> (pyparsing/util.py:2) (1 samples, 0.20%)</title><rect x="64.5161%" y="1284" width="0.2016%" height="15" fill="rgb(222,75,50)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1294.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.20%)</title><rect x="64.5161%" y="1300" width="0.2016%" height="15" fill="rgb(205,180,2)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1310.50"></text></g><g><title>__getitem__ (typing.py:832) (1 samples, 0.20%)</title><rect x="64.5161%" y="1316" width="0.2016%" height="15" fill="rgb(216,34,7)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1326.50"></text></g><g><title>copy_with (typing.py:841) (1 samples, 0.20%)</title><rect x="64.5161%" y="1332" width="0.2016%" height="15" fill="rgb(253,16,32)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1342.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.20%)</title><rect x="64.5161%" y="1348" width="0.2016%" height="15" fill="rgb(208,97,28)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1358.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.20%)</title><rect x="64.5161%" y="1364" width="0.2016%" height="15" fill="rgb(225,92,11)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1374.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.20%)</title><rect x="64.5161%" y="1380" width="0.2016%" height="15" fill="rgb(243,38,12)" fg:x="320" fg:w="1"/><text x="64.7661%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="64.1129%" y="948" width="1.0081%" height="15" fill="rgb(208,139,16)" fg:x="318" fg:w="5"/><text x="64.3629%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (5 samples, 1.01%)</title><rect x="64.1129%" y="964" width="1.0081%" height="15" fill="rgb(227,24,9)" fg:x="318" fg:w="5"/><text x="64.3629%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.01%)</title><rect x="64.1129%" y="980" width="1.0081%" height="15" fill="rgb(206,62,11)" fg:x="318" fg:w="5"/><text x="64.3629%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="64.1129%" y="996" width="1.0081%" height="15" fill="rgb(228,134,27)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="64.1129%" y="1012" width="1.0081%" height="15" fill="rgb(205,55,33)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="64.1129%" y="1028" width="1.0081%" height="15" fill="rgb(243,75,43)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="64.1129%" y="1044" width="1.0081%" height="15" fill="rgb(223,27,42)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="64.1129%" y="1060" width="1.0081%" height="15" fill="rgb(232,189,33)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="64.1129%" y="1076" width="1.0081%" height="15" fill="rgb(210,9,39)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (5 samples, 1.01%)</title><rect x="64.1129%" y="1092" width="1.0081%" height="15" fill="rgb(242,85,26)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="64.1129%" y="1108" width="1.0081%" height="15" fill="rgb(248,44,4)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="64.1129%" y="1124" width="1.0081%" height="15" fill="rgb(250,96,46)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="64.1129%" y="1140" width="1.0081%" height="15" fill="rgb(229,116,26)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="64.1129%" y="1156" width="1.0081%" height="15" fill="rgb(246,94,34)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="64.1129%" y="1172" width="1.0081%" height="15" fill="rgb(251,73,21)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (5 samples, 1.01%)</title><rect x="64.1129%" y="1188" width="1.0081%" height="15" fill="rgb(254,121,25)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="64.1129%" y="1204" width="1.0081%" height="15" fill="rgb(215,161,49)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="64.1129%" y="1220" width="1.0081%" height="15" fill="rgb(221,43,13)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="64.1129%" y="1236" width="1.0081%" height="15" fill="rgb(249,5,37)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="64.1129%" y="1252" width="1.0081%" height="15" fill="rgb(226,25,44)" fg:x="318" fg:w="5"/><text x="64.3629%" y="1262.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="64.7177%" y="1268" width="0.4032%" height="15" fill="rgb(238,189,16)" fg:x="321" fg:w="2"/><text x="64.9677%" y="1278.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.40%)</title><rect x="64.7177%" y="1284" width="0.4032%" height="15" fill="rgb(251,186,8)" fg:x="321" fg:w="2"/><text x="64.9677%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="64.1129%" y="788" width="1.2097%" height="15" fill="rgb(254,34,31)" fg:x="318" fg:w="6"/><text x="64.3629%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="64.1129%" y="804" width="1.2097%" height="15" fill="rgb(225,215,27)" fg:x="318" fg:w="6"/><text x="64.3629%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="64.1129%" y="820" width="1.2097%" height="15" fill="rgb(221,192,48)" fg:x="318" fg:w="6"/><text x="64.3629%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="64.1129%" y="836" width="1.2097%" height="15" fill="rgb(219,137,20)" fg:x="318" fg:w="6"/><text x="64.3629%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.21%)</title><rect x="64.1129%" y="852" width="1.2097%" height="15" fill="rgb(219,84,11)" fg:x="318" fg:w="6"/><text x="64.3629%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (6 samples, 1.21%)</title><rect x="64.1129%" y="868" width="1.2097%" height="15" fill="rgb(224,10,23)" fg:x="318" fg:w="6"/><text x="64.3629%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.21%)</title><rect x="64.1129%" y="884" width="1.2097%" height="15" fill="rgb(248,22,39)" fg:x="318" fg:w="6"/><text x="64.3629%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.21%)</title><rect x="64.1129%" y="900" width="1.2097%" height="15" fill="rgb(212,154,20)" fg:x="318" fg:w="6"/><text x="64.3629%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.21%)</title><rect x="64.1129%" y="916" width="1.2097%" height="15" fill="rgb(236,199,50)" fg:x="318" fg:w="6"/><text x="64.3629%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.21%)</title><rect x="64.1129%" y="932" width="1.2097%" height="15" fill="rgb(211,9,17)" fg:x="318" fg:w="6"/><text x="64.3629%" y="942.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="65.1210%" y="948" width="0.2016%" height="15" fill="rgb(243,216,36)" fg:x="323" fg:w="1"/><text x="65.3710%" y="958.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="65.1210%" y="964" width="0.2016%" height="15" fill="rgb(250,2,10)" fg:x="323" fg:w="1"/><text x="65.3710%" y="974.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.20%)</title><rect x="65.3226%" y="1492" width="0.2016%" height="15" fill="rgb(226,50,48)" fg:x="324" fg:w="1"/><text x="65.5726%" y="1502.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.20%)</title><rect x="65.3226%" y="1508" width="0.2016%" height="15" fill="rgb(243,81,16)" fg:x="324" fg:w="1"/><text x="65.5726%" y="1518.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.20%)</title><rect x="65.3226%" y="1524" width="0.2016%" height="15" fill="rgb(250,14,2)" fg:x="324" fg:w="1"/><text x="65.5726%" y="1534.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.20%)</title><rect x="65.3226%" y="1540" width="0.2016%" height="15" fill="rgb(233,135,29)" fg:x="324" fg:w="1"/><text x="65.5726%" y="1550.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.20%)</title><rect x="65.3226%" y="1556" width="0.2016%" height="15" fill="rgb(224,64,43)" fg:x="324" fg:w="1"/><text x="65.5726%" y="1566.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (1 samples, 0.20%)</title><rect x="65.5242%" y="1636" width="0.2016%" height="15" fill="rgb(238,84,13)" fg:x="325" fg:w="1"/><text x="65.7742%" y="1646.50"></text></g><g><title>DisplayText (pyasn1_modules/rfc2459.py:876) (1 samples, 0.20%)</title><rect x="65.5242%" y="1652" width="0.2016%" height="15" fill="rgb(253,48,26)" fg:x="325" fg:w="1"/><text x="65.7742%" y="1662.50"></text></g><g><title>subtype (pyasn1/type/base.py:377) (1 samples, 0.20%)</title><rect x="65.5242%" y="1668" width="0.2016%" height="15" fill="rgb(205,223,31)" fg:x="325" fg:w="1"/><text x="65.7742%" y="1678.50"></text></g><g><title>__add__ (pyasn1/type/constraint.py:637) (1 samples, 0.20%)</title><rect x="65.5242%" y="1684" width="0.2016%" height="15" fill="rgb(221,41,32)" fg:x="325" fg:w="1"/><text x="65.7742%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/constraint.py:22) (1 samples, 0.20%)</title><rect x="65.5242%" y="1700" width="0.2016%" height="15" fill="rgb(213,158,31)" fg:x="325" fg:w="1"/><text x="65.7742%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="65.5242%" y="1524" width="0.4032%" height="15" fill="rgb(245,126,43)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1534.50"></text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (2 samples, 0.40%)</title><rect x="65.5242%" y="1540" width="0.4032%" height="15" fill="rgb(227,7,22)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1550.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.40%)</title><rect x="65.5242%" y="1556" width="0.4032%" height="15" fill="rgb(252,90,44)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1566.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.40%)</title><rect x="65.5242%" y="1572" width="0.4032%" height="15" fill="rgb(253,91,0)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1582.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.40%)</title><rect x="65.5242%" y="1588" width="0.4032%" height="15" fill="rgb(252,175,49)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1598.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.40%)</title><rect x="65.5242%" y="1604" width="0.4032%" height="15" fill="rgb(246,150,1)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="65.5242%" y="1620" width="0.4032%" height="15" fill="rgb(241,192,25)" fg:x="325" fg:w="2"/><text x="65.7742%" y="1630.50"></text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (1 samples, 0.20%)</title><rect x="65.7258%" y="1636" width="0.2016%" height="15" fill="rgb(239,187,11)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.20%)</title><rect x="65.7258%" y="1652" width="0.2016%" height="15" fill="rgb(218,202,51)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="65.7258%" y="1668" width="0.2016%" height="15" fill="rgb(225,176,8)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="65.7258%" y="1684" width="0.2016%" height="15" fill="rgb(219,122,41)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="65.7258%" y="1700" width="0.2016%" height="15" fill="rgb(248,140,20)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="65.7258%" y="1716" width="0.2016%" height="15" fill="rgb(245,41,37)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="65.7258%" y="1732" width="0.2016%" height="15" fill="rgb(235,82,39)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1742.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="65.7258%" y="1748" width="0.2016%" height="15" fill="rgb(230,108,42)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1758.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.20%)</title><rect x="65.7258%" y="1764" width="0.2016%" height="15" fill="rgb(215,150,50)" fg:x="326" fg:w="1"/><text x="65.9758%" y="1774.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.20%)</title><rect x="65.9274%" y="1540" width="0.2016%" height="15" fill="rgb(233,212,5)" fg:x="327" fg:w="1"/><text x="66.1774%" y="1550.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.20%)</title><rect x="65.9274%" y="1556" width="0.2016%" height="15" fill="rgb(245,80,22)" fg:x="327" fg:w="1"/><text x="66.1774%" y="1566.50"></text></g><g><title><module> (auth/_service_account_info.py:15) (5 samples, 1.01%)</title><rect x="65.3226%" y="1156" width="1.0081%" height="15" fill="rgb(238,129,16)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.01%)</title><rect x="65.3226%" y="1172" width="1.0081%" height="15" fill="rgb(240,19,0)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="65.3226%" y="1188" width="1.0081%" height="15" fill="rgb(232,42,35)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="65.3226%" y="1204" width="1.0081%" height="15" fill="rgb(223,130,24)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="65.3226%" y="1220" width="1.0081%" height="15" fill="rgb(237,16,22)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="65.3226%" y="1236" width="1.0081%" height="15" fill="rgb(248,192,20)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="65.3226%" y="1252" width="1.0081%" height="15" fill="rgb(233,167,2)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="65.3226%" y="1268" width="1.0081%" height="15" fill="rgb(252,71,44)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1278.50"></text></g><g><title><module> (auth/crypt/__init__.py:15) (5 samples, 1.01%)</title><rect x="65.3226%" y="1284" width="1.0081%" height="15" fill="rgb(238,37,47)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1294.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.01%)</title><rect x="65.3226%" y="1300" width="1.0081%" height="15" fill="rgb(214,202,54)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="65.3226%" y="1316" width="1.0081%" height="15" fill="rgb(254,165,40)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="65.3226%" y="1332" width="1.0081%" height="15" fill="rgb(246,173,38)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="65.3226%" y="1348" width="1.0081%" height="15" fill="rgb(215,3,27)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1358.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.01%)</title><rect x="65.3226%" y="1364" width="1.0081%" height="15" fill="rgb(239,169,51)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1374.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.01%)</title><rect x="65.3226%" y="1380" width="1.0081%" height="15" fill="rgb(212,5,25)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="65.3226%" y="1396" width="1.0081%" height="15" fill="rgb(243,45,17)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1406.50"></text></g><g><title><module> (auth/crypt/rsa.py:15) (5 samples, 1.01%)</title><rect x="65.3226%" y="1412" width="1.0081%" height="15" fill="rgb(242,97,9)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1422.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.01%)</title><rect x="65.3226%" y="1428" width="1.0081%" height="15" fill="rgb(228,71,31)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.01%)</title><rect x="65.3226%" y="1444" width="1.0081%" height="15" fill="rgb(252,184,16)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1454.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.01%)</title><rect x="65.3226%" y="1460" width="1.0081%" height="15" fill="rgb(236,169,46)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1470.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.01%)</title><rect x="65.3226%" y="1476" width="1.0081%" height="15" fill="rgb(207,17,47)" fg:x="324" fg:w="5"/><text x="65.5726%" y="1486.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="65.5242%" y="1492" width="0.8065%" height="15" fill="rgb(206,201,28)" fg:x="325" fg:w="4"/><text x="65.7742%" y="1502.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="65.5242%" y="1508" width="0.8065%" height="15" fill="rgb(224,184,23)" fg:x="325" fg:w="4"/><text x="65.7742%" y="1518.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.40%)</title><rect x="65.9274%" y="1524" width="0.4032%" height="15" fill="rgb(208,139,48)" fg:x="327" fg:w="2"/><text x="66.1774%" y="1534.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="66.1290%" y="1540" width="0.2016%" height="15" fill="rgb(208,130,10)" fg:x="328" fg:w="1"/><text x="66.3790%" y="1550.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="66.3306%" y="1300" width="0.2016%" height="15" fill="rgb(211,213,45)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="66.3306%" y="1316" width="0.2016%" height="15" fill="rgb(235,100,30)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="66.3306%" y="1332" width="0.2016%" height="15" fill="rgb(206,144,31)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="66.3306%" y="1348" width="0.2016%" height="15" fill="rgb(224,200,26)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="66.3306%" y="1364" width="0.2016%" height="15" fill="rgb(247,104,53)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1374.50"></text></g><g><title><module> (cachetools/keys.py:1) (1 samples, 0.20%)</title><rect x="66.3306%" y="1380" width="0.2016%" height="15" fill="rgb(220,14,17)" fg:x="329" fg:w="1"/><text x="66.5806%" y="1390.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.40%)</title><rect x="66.3306%" y="1268" width="0.4032%" height="15" fill="rgb(230,140,40)" fg:x="329" fg:w="2"/><text x="66.5806%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.40%)</title><rect x="66.3306%" y="1284" width="0.4032%" height="15" fill="rgb(229,2,41)" fg:x="329" fg:w="2"/><text x="66.5806%" y="1294.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.20%)</title><rect x="66.5323%" y="1300" width="0.2016%" height="15" fill="rgb(232,89,16)" fg:x="330" fg:w="1"/><text x="66.7823%" y="1310.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.20%)</title><rect x="66.5323%" y="1316" width="0.2016%" height="15" fill="rgb(247,59,52)" fg:x="330" fg:w="1"/><text x="66.7823%" y="1326.50"></text></g><g><title><module> (ee/__init__.py:1) (14 samples, 2.82%)</title><rect x="64.1129%" y="516" width="2.8226%" height="15" fill="rgb(226,110,21)" fg:x="318" fg:w="14"/><text x="64.3629%" y="526.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (14 samples, 2.82%)</title><rect x="64.1129%" y="532" width="2.8226%" height="15" fill="rgb(224,176,43)" fg:x="318" fg:w="14"/><text x="64.3629%" y="542.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="64.1129%" y="548" width="2.8226%" height="15" fill="rgb(221,73,6)" fg:x="318" fg:w="14"/><text x="64.3629%" y="558.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 2.82%)</title><rect x="64.1129%" y="564" width="2.8226%" height="15" fill="rgb(232,78,19)" fg:x="318" fg:w="14"/><text x="64.3629%" y="574.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 2.82%)</title><rect x="64.1129%" y="580" width="2.8226%" height="15" fill="rgb(233,112,48)" fg:x="318" fg:w="14"/><text x="64.3629%" y="590.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 2.82%)</title><rect x="64.1129%" y="596" width="2.8226%" height="15" fill="rgb(243,131,47)" fg:x="318" fg:w="14"/><text x="64.3629%" y="606.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 2.82%)</title><rect x="64.1129%" y="612" width="2.8226%" height="15" fill="rgb(226,51,1)" fg:x="318" fg:w="14"/><text x="64.3629%" y="622.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="64.1129%" y="628" width="2.8226%" height="15" fill="rgb(247,58,7)" fg:x="318" fg:w="14"/><text x="64.3629%" y="638.50">_c..</text></g><g><title><module> (ee/batch.py:1) (14 samples, 2.82%)</title><rect x="64.1129%" y="644" width="2.8226%" height="15" fill="rgb(209,7,32)" fg:x="318" fg:w="14"/><text x="64.3629%" y="654.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (14 samples, 2.82%)</title><rect x="64.1129%" y="660" width="2.8226%" height="15" fill="rgb(209,39,41)" fg:x="318" fg:w="14"/><text x="64.3629%" y="670.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="64.1129%" y="676" width="2.8226%" height="15" fill="rgb(226,182,46)" fg:x="318" fg:w="14"/><text x="64.3629%" y="686.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 2.82%)</title><rect x="64.1129%" y="692" width="2.8226%" height="15" fill="rgb(230,219,10)" fg:x="318" fg:w="14"/><text x="64.3629%" y="702.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 2.82%)</title><rect x="64.1129%" y="708" width="2.8226%" height="15" fill="rgb(227,175,30)" fg:x="318" fg:w="14"/><text x="64.3629%" y="718.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 2.82%)</title><rect x="64.1129%" y="724" width="2.8226%" height="15" fill="rgb(217,2,50)" fg:x="318" fg:w="14"/><text x="64.3629%" y="734.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 2.82%)</title><rect x="64.1129%" y="740" width="2.8226%" height="15" fill="rgb(229,160,0)" fg:x="318" fg:w="14"/><text x="64.3629%" y="750.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 2.82%)</title><rect x="64.1129%" y="756" width="2.8226%" height="15" fill="rgb(207,78,37)" fg:x="318" fg:w="14"/><text x="64.3629%" y="766.50">_c..</text></g><g><title><module> (ee/_cloud_api_utils.py:1) (14 samples, 2.82%)</title><rect x="64.1129%" y="772" width="2.8226%" height="15" fill="rgb(225,57,0)" fg:x="318" fg:w="14"/><text x="64.3629%" y="782.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.61%)</title><rect x="65.3226%" y="788" width="1.6129%" height="15" fill="rgb(232,154,2)" fg:x="324" fg:w="8"/><text x="65.5726%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="804" width="1.6129%" height="15" fill="rgb(241,212,25)" fg:x="324" fg:w="8"/><text x="65.5726%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="65.3226%" y="820" width="1.6129%" height="15" fill="rgb(226,69,20)" fg:x="324" fg:w="8"/><text x="65.5726%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="65.3226%" y="836" width="1.6129%" height="15" fill="rgb(247,184,54)" fg:x="324" fg:w="8"/><text x="65.5726%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="65.3226%" y="852" width="1.6129%" height="15" fill="rgb(210,145,0)" fg:x="324" fg:w="8"/><text x="65.5726%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="65.3226%" y="868" width="1.6129%" height="15" fill="rgb(253,82,12)" fg:x="324" fg:w="8"/><text x="65.5726%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="884" width="1.6129%" height="15" fill="rgb(245,42,11)" fg:x="324" fg:w="8"/><text x="65.5726%" y="894.50"></text></g><g><title><module> (googleapiclient/discovery.py:15) (8 samples, 1.61%)</title><rect x="65.3226%" y="900" width="1.6129%" height="15" fill="rgb(219,147,32)" fg:x="324" fg:w="8"/><text x="65.5726%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.61%)</title><rect x="65.3226%" y="916" width="1.6129%" height="15" fill="rgb(246,12,7)" fg:x="324" fg:w="8"/><text x="65.5726%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="932" width="1.6129%" height="15" fill="rgb(243,50,9)" fg:x="324" fg:w="8"/><text x="65.5726%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="65.3226%" y="948" width="1.6129%" height="15" fill="rgb(219,149,6)" fg:x="324" fg:w="8"/><text x="65.5726%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="65.3226%" y="964" width="1.6129%" height="15" fill="rgb(241,51,42)" fg:x="324" fg:w="8"/><text x="65.5726%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="65.3226%" y="980" width="1.6129%" height="15" fill="rgb(226,128,27)" fg:x="324" fg:w="8"/><text x="65.5726%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="65.3226%" y="996" width="1.6129%" height="15" fill="rgb(244,144,4)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="1012" width="1.6129%" height="15" fill="rgb(221,4,13)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1022.50"></text></g><g><title><module> (oauth2/service_account.py:15) (8 samples, 1.61%)</title><rect x="65.3226%" y="1028" width="1.6129%" height="15" fill="rgb(208,170,28)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.61%)</title><rect x="65.3226%" y="1044" width="1.6129%" height="15" fill="rgb(226,131,13)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="1060" width="1.6129%" height="15" fill="rgb(215,72,41)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.61%)</title><rect x="65.3226%" y="1076" width="1.6129%" height="15" fill="rgb(243,108,20)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.61%)</title><rect x="65.3226%" y="1092" width="1.6129%" height="15" fill="rgb(230,189,17)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.61%)</title><rect x="65.3226%" y="1108" width="1.6129%" height="15" fill="rgb(220,50,17)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.61%)</title><rect x="65.3226%" y="1124" width="1.6129%" height="15" fill="rgb(248,152,48)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.61%)</title><rect x="65.3226%" y="1140" width="1.6129%" height="15" fill="rgb(244,91,11)" fg:x="324" fg:w="8"/><text x="65.5726%" y="1150.50"></text></g><g><title><module> (auth/jwt.py:15) (3 samples, 0.60%)</title><rect x="66.3306%" y="1156" width="0.6048%" height="15" fill="rgb(220,157,5)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="66.3306%" y="1172" width="0.6048%" height="15" fill="rgb(253,137,8)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="66.3306%" y="1188" width="0.6048%" height="15" fill="rgb(217,137,51)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="66.3306%" y="1204" width="0.6048%" height="15" fill="rgb(218,209,53)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="66.3306%" y="1220" width="0.6048%" height="15" fill="rgb(249,137,25)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="66.3306%" y="1236" width="0.6048%" height="15" fill="rgb(239,155,26)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1246.50"></text></g><g><title><module> (cachetools/__init__.py:1) (3 samples, 0.60%)</title><rect x="66.3306%" y="1252" width="0.6048%" height="15" fill="rgb(227,85,46)" fg:x="329" fg:w="3"/><text x="66.5806%" y="1262.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.20%)</title><rect x="66.7339%" y="1268" width="0.2016%" height="15" fill="rgb(251,107,43)" fg:x="331" fg:w="1"/><text x="66.9839%" y="1278.50"></text></g><g><title><module> (pyproj/crs/__init__.py:1) (1 samples, 0.20%)</title><rect x="66.9355%" y="612" width="0.2016%" height="15" fill="rgb(234,170,33)" fg:x="332" fg:w="1"/><text x="67.1855%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="66.9355%" y="628" width="0.2016%" height="15" fill="rgb(206,29,35)" fg:x="332" fg:w="1"/><text x="67.1855%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="66.9355%" y="644" width="0.2016%" height="15" fill="rgb(227,138,25)" fg:x="332" fg:w="1"/><text x="67.1855%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="66.9355%" y="660" width="0.2016%" height="15" fill="rgb(249,131,35)" fg:x="332" fg:w="1"/><text x="67.1855%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.20%)</title><rect x="66.9355%" y="676" width="0.2016%" height="15" fill="rgb(239,6,40)" fg:x="332" fg:w="1"/><text x="67.1855%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="66.9355%" y="692" width="0.2016%" height="15" fill="rgb(246,136,47)" fg:x="332" fg:w="1"/><text x="67.1855%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="66.9355%" y="708" width="0.2016%" height="15" fill="rgb(253,58,26)" fg:x="332" fg:w="1"/><text x="67.1855%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="66.9355%" y="724" width="0.2016%" height="15" fill="rgb(237,141,10)" fg:x="332" fg:w="1"/><text x="67.1855%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="66.9355%" y="740" width="0.2016%" height="15" fill="rgb(234,156,12)" fg:x="332" fg:w="1"/><text x="67.1855%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="66.9355%" y="756" width="0.2016%" height="15" fill="rgb(243,224,36)" fg:x="332" fg:w="1"/><text x="67.1855%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.20%)</title><rect x="66.9355%" y="772" width="0.2016%" height="15" fill="rgb(205,229,51)" fg:x="332" fg:w="1"/><text x="67.1855%" y="782.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.20%)</title><rect x="66.9355%" y="788" width="0.2016%" height="15" fill="rgb(223,189,4)" fg:x="332" fg:w="1"/><text x="67.1855%" y="798.50"></text></g><g><title>build_engines (xarray/backends/plugins.py:106) (18 samples, 3.63%)</title><rect x="64.1129%" y="164" width="3.6290%" height="15" fill="rgb(249,167,54)" fg:x="318" fg:w="18"/><text x="64.3629%" y="174.50">buil..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (18 samples, 3.63%)</title><rect x="64.1129%" y="180" width="3.6290%" height="15" fill="rgb(218,34,28)" fg:x="318" fg:w="18"/><text x="64.3629%" y="190.50">back..</text></g><g><title>load (importlib_metadata/__init__.py:178) (18 samples, 3.63%)</title><rect x="64.1129%" y="196" width="3.6290%" height="15" fill="rgb(232,109,42)" fg:x="318" fg:w="18"/><text x="64.3629%" y="206.50">load..</text></g><g><title>import_module (importlib/__init__.py:109) (18 samples, 3.63%)</title><rect x="64.1129%" y="212" width="3.6290%" height="15" fill="rgb(248,214,46)" fg:x="318" fg:w="18"/><text x="64.3629%" y="222.50">impo..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (18 samples, 3.63%)</title><rect x="64.1129%" y="228" width="3.6290%" height="15" fill="rgb(244,216,40)" fg:x="318" fg:w="18"/><text x="64.3629%" y="238.50">_gcd..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.63%)</title><rect x="64.1129%" y="244" width="3.6290%" height="15" fill="rgb(231,226,31)" fg:x="318" fg:w="18"/><text x="64.3629%" y="254.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.63%)</title><rect x="64.1129%" y="260" width="3.6290%" height="15" fill="rgb(238,38,43)" fg:x="318" fg:w="18"/><text x="64.3629%" y="270.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.63%)</title><rect x="64.1129%" y="276" width="3.6290%" height="15" fill="rgb(208,88,43)" fg:x="318" fg:w="18"/><text x="64.3629%" y="286.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.63%)</title><rect x="64.1129%" y="292" width="3.6290%" height="15" fill="rgb(205,136,37)" fg:x="318" fg:w="18"/><text x="64.3629%" y="302.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 3.63%)</title><rect x="64.1129%" y="308" width="3.6290%" height="15" fill="rgb(237,34,14)" fg:x="318" fg:w="18"/><text x="64.3629%" y="318.50">_cal..</text></g><g><title><module> (xee/__init__.py:15) (18 samples, 3.63%)</title><rect x="64.1129%" y="324" width="3.6290%" height="15" fill="rgb(236,193,44)" fg:x="318" fg:w="18"/><text x="64.3629%" y="334.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.63%)</title><rect x="64.1129%" y="340" width="3.6290%" height="15" fill="rgb(231,48,10)" fg:x="318" fg:w="18"/><text x="64.3629%" y="350.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.63%)</title><rect x="64.1129%" y="356" width="3.6290%" height="15" fill="rgb(213,141,34)" fg:x="318" fg:w="18"/><text x="64.3629%" y="366.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.63%)</title><rect x="64.1129%" y="372" width="3.6290%" height="15" fill="rgb(249,130,34)" fg:x="318" fg:w="18"/><text x="64.3629%" y="382.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.63%)</title><rect x="64.1129%" y="388" width="3.6290%" height="15" fill="rgb(219,42,41)" fg:x="318" fg:w="18"/><text x="64.3629%" y="398.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 3.63%)</title><rect x="64.1129%" y="404" width="3.6290%" height="15" fill="rgb(224,100,54)" fg:x="318" fg:w="18"/><text x="64.3629%" y="414.50">_cal..</text></g><g><title><module> (xee/ext.py:15) (18 samples, 3.63%)</title><rect x="64.1129%" y="420" width="3.6290%" height="15" fill="rgb(229,200,27)" fg:x="318" fg:w="18"/><text x="64.3629%" y="430.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.63%)</title><rect x="64.1129%" y="436" width="3.6290%" height="15" fill="rgb(217,118,10)" fg:x="318" fg:w="18"/><text x="64.3629%" y="446.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.63%)</title><rect x="64.1129%" y="452" width="3.6290%" height="15" fill="rgb(206,22,3)" fg:x="318" fg:w="18"/><text x="64.3629%" y="462.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.63%)</title><rect x="64.1129%" y="468" width="3.6290%" height="15" fill="rgb(232,163,46)" fg:x="318" fg:w="18"/><text x="64.3629%" y="478.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.63%)</title><rect x="64.1129%" y="484" width="3.6290%" height="15" fill="rgb(206,95,13)" fg:x="318" fg:w="18"/><text x="64.3629%" y="494.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 3.63%)</title><rect x="64.1129%" y="500" width="3.6290%" height="15" fill="rgb(253,154,18)" fg:x="318" fg:w="18"/><text x="64.3629%" y="510.50">_cal..</text></g><g><title><module> (pyproj/__init__.py:1) (4 samples, 0.81%)</title><rect x="66.9355%" y="516" width="0.8065%" height="15" fill="rgb(219,32,23)" fg:x="332" fg:w="4"/><text x="67.1855%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="66.9355%" y="532" width="0.8065%" height="15" fill="rgb(230,191,45)" fg:x="332" fg:w="4"/><text x="67.1855%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="66.9355%" y="548" width="0.8065%" height="15" fill="rgb(229,64,36)" fg:x="332" fg:w="4"/><text x="67.1855%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="66.9355%" y="564" width="0.8065%" height="15" fill="rgb(205,129,25)" fg:x="332" fg:w="4"/><text x="67.1855%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="66.9355%" y="580" width="0.8065%" height="15" fill="rgb(254,112,7)" fg:x="332" fg:w="4"/><text x="67.1855%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="66.9355%" y="596" width="0.8065%" height="15" fill="rgb(226,53,48)" fg:x="332" fg:w="4"/><text x="67.1855%" y="606.50"></text></g><g><title><module> (pyproj/network.py:1) (3 samples, 0.60%)</title><rect x="67.1371%" y="612" width="0.6048%" height="15" fill="rgb(214,153,38)" fg:x="333" fg:w="3"/><text x="67.3871%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="67.1371%" y="628" width="0.6048%" height="15" fill="rgb(243,101,7)" fg:x="333" fg:w="3"/><text x="67.3871%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="67.1371%" y="644" width="0.6048%" height="15" fill="rgb(240,140,22)" fg:x="333" fg:w="3"/><text x="67.3871%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="67.1371%" y="660" width="0.6048%" height="15" fill="rgb(235,114,2)" fg:x="333" fg:w="3"/><text x="67.3871%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.60%)</title><rect x="67.1371%" y="676" width="0.6048%" height="15" fill="rgb(242,59,12)" fg:x="333" fg:w="3"/><text x="67.3871%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.60%)</title><rect x="67.1371%" y="692" width="0.6048%" height="15" fill="rgb(252,134,9)" fg:x="333" fg:w="3"/><text x="67.3871%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="67.1371%" y="708" width="0.6048%" height="15" fill="rgb(236,4,44)" fg:x="333" fg:w="3"/><text x="67.3871%" y="718.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (19 samples, 3.83%)</title><rect x="64.1129%" y="132" width="3.8306%" height="15" fill="rgb(254,172,41)" fg:x="318" fg:w="19"/><text x="64.3629%" y="142.50">gues..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (19 samples, 3.83%)</title><rect x="64.1129%" y="148" width="3.8306%" height="15" fill="rgb(244,63,20)" fg:x="318" fg:w="19"/><text x="64.3629%" y="158.50">list..</text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.20%)</title><rect x="67.7419%" y="164" width="0.2016%" height="15" fill="rgb(250,73,31)" fg:x="336" fg:w="1"/><text x="67.9919%" y="174.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.20%)</title><rect x="67.7419%" y="180" width="0.2016%" height="15" fill="rgb(241,38,36)" fg:x="336" fg:w="1"/><text x="67.9919%" y="190.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.20%)</title><rect x="67.7419%" y="196" width="0.2016%" height="15" fill="rgb(245,211,2)" fg:x="336" fg:w="1"/><text x="67.9919%" y="206.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:343) (1 samples, 0.20%)</title><rect x="67.7419%" y="212" width="0.2016%" height="15" fill="rgb(206,120,28)" fg:x="336" fg:w="1"/><text x="67.9919%" y="222.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.20%)</title><rect x="67.9435%" y="356" width="0.2016%" height="15" fill="rgb(211,59,34)" fg:x="337" fg:w="1"/><text x="68.1935%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.20%)</title><rect x="67.9435%" y="372" width="0.2016%" height="15" fill="rgb(233,168,5)" fg:x="337" fg:w="1"/><text x="68.1935%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.20%)</title><rect x="67.9435%" y="388" width="0.2016%" height="15" fill="rgb(234,33,13)" fg:x="337" fg:w="1"/><text x="68.1935%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.20%)</title><rect x="67.9435%" y="404" width="0.2016%" height="15" fill="rgb(231,150,26)" fg:x="337" fg:w="1"/><text x="68.1935%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.20%)</title><rect x="67.9435%" y="420" width="0.2016%" height="15" fill="rgb(217,191,4)" fg:x="337" fg:w="1"/><text x="68.1935%" y="430.50"></text></g><g><title><module> (scipy/io/_mmio.py:1) (1 samples, 0.20%)</title><rect x="67.9435%" y="436" width="0.2016%" height="15" fill="rgb(246,198,38)" fg:x="337" fg:w="1"/><text x="68.1935%" y="446.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.40%)</title><rect x="68.1452%" y="468" width="0.4032%" height="15" fill="rgb(245,64,37)" fg:x="338" fg:w="2"/><text x="68.3952%" y="478.50"></text></g><g><title>open_dataset (xarray/tutorial.py:81) (31 samples, 6.25%)</title><rect x="62.5000%" y="100" width="6.2500%" height="15" fill="rgb(250,30,36)" fg:x="310" fg:w="31"/><text x="62.7500%" y="110.50">open_dat..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (23 samples, 4.64%)</title><rect x="64.1129%" y="116" width="4.6371%" height="15" fill="rgb(217,86,53)" fg:x="318" fg:w="23"/><text x="64.3629%" y="126.50">open_..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (4 samples, 0.81%)</title><rect x="67.9435%" y="132" width="0.8065%" height="15" fill="rgb(228,157,16)" fg:x="337" fg:w="4"/><text x="68.1935%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (4 samples, 0.81%)</title><rect x="67.9435%" y="148" width="0.8065%" height="15" fill="rgb(217,59,31)" fg:x="337" fg:w="4"/><text x="68.1935%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (4 samples, 0.81%)</title><rect x="67.9435%" y="164" width="0.8065%" height="15" fill="rgb(237,138,41)" fg:x="337" fg:w="4"/><text x="68.1935%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (4 samples, 0.81%)</title><rect x="67.9435%" y="180" width="0.8065%" height="15" fill="rgb(227,91,49)" fg:x="337" fg:w="4"/><text x="68.1935%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (4 samples, 0.81%)</title><rect x="67.9435%" y="196" width="0.8065%" height="15" fill="rgb(247,21,44)" fg:x="337" fg:w="4"/><text x="68.1935%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (4 samples, 0.81%)</title><rect x="67.9435%" y="212" width="0.8065%" height="15" fill="rgb(219,210,51)" fg:x="337" fg:w="4"/><text x="68.1935%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (4 samples, 0.81%)</title><rect x="67.9435%" y="228" width="0.8065%" height="15" fill="rgb(209,140,6)" fg:x="337" fg:w="4"/><text x="68.1935%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (4 samples, 0.81%)</title><rect x="67.9435%" y="244" width="0.8065%" height="15" fill="rgb(221,188,24)" fg:x="337" fg:w="4"/><text x="68.1935%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.81%)</title><rect x="67.9435%" y="260" width="0.8065%" height="15" fill="rgb(232,154,20)" fg:x="337" fg:w="4"/><text x="68.1935%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.81%)</title><rect x="67.9435%" y="276" width="0.8065%" height="15" fill="rgb(244,137,50)" fg:x="337" fg:w="4"/><text x="68.1935%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.81%)</title><rect x="67.9435%" y="292" width="0.8065%" height="15" fill="rgb(225,185,43)" fg:x="337" fg:w="4"/><text x="68.1935%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.81%)</title><rect x="67.9435%" y="308" width="0.8065%" height="15" fill="rgb(213,205,38)" fg:x="337" fg:w="4"/><text x="68.1935%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.81%)</title><rect x="67.9435%" y="324" width="0.8065%" height="15" fill="rgb(236,73,12)" fg:x="337" fg:w="4"/><text x="68.1935%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (4 samples, 0.81%)</title><rect x="67.9435%" y="340" width="0.8065%" height="15" fill="rgb(235,219,13)" fg:x="337" fg:w="4"/><text x="68.1935%" y="350.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.60%)</title><rect x="68.1452%" y="356" width="0.6048%" height="15" fill="rgb(218,59,36)" fg:x="338" fg:w="3"/><text x="68.3952%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.60%)</title><rect x="68.1452%" y="372" width="0.6048%" height="15" fill="rgb(205,110,39)" fg:x="338" fg:w="3"/><text x="68.3952%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.60%)</title><rect x="68.1452%" y="388" width="0.6048%" height="15" fill="rgb(218,206,42)" fg:x="338" fg:w="3"/><text x="68.3952%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.60%)</title><rect x="68.1452%" y="404" width="0.6048%" height="15" fill="rgb(248,125,24)" fg:x="338" fg:w="3"/><text x="68.3952%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.60%)</title><rect x="68.1452%" y="420" width="0.6048%" height="15" fill="rgb(242,28,27)" fg:x="338" fg:w="3"/><text x="68.3952%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.60%)</title><rect x="68.1452%" y="436" width="0.6048%" height="15" fill="rgb(216,228,15)" fg:x="338" fg:w="3"/><text x="68.3952%" y="446.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (3 samples, 0.60%)</title><rect x="68.1452%" y="452" width="0.6048%" height="15" fill="rgb(235,116,46)" fg:x="338" fg:w="3"/><text x="68.3952%" y="462.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.20%)</title><rect x="68.5484%" y="468" width="0.2016%" height="15" fill="rgb(224,18,32)" fg:x="340" fg:w="1"/><text x="68.7984%" y="478.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.20%)</title><rect x="68.5484%" y="484" width="0.2016%" height="15" fill="rgb(252,5,12)" fg:x="340" fg:w="1"/><text x="68.7984%" y="494.50"></text></g><g><title>thread (0x2029C1240) (343 samples, 69.15%)</title><rect x="0.0000%" y="68" width="69.1532%" height="15" fill="rgb(251,36,5)" fg:x="0" fg:w="343"/><text x="0.2500%" y="78.50">thread (0x2029C1240)</text></g><g><title><module> (groupby_air_full.py:3) (309 samples, 62.30%)</title><rect x="6.8548%" y="84" width="62.2984%" height="15" fill="rgb(217,53,14)" fg:x="34" fg:w="309"/><text x="7.1048%" y="94.50"><module> (groupby_air_full.py:3)</text></g><g><title>to_dd (qarray/df.py:88) (2 samples, 0.40%)</title><rect x="68.7500%" y="100" width="0.4032%" height="15" fill="rgb(215,86,45)" fg:x="341" fg:w="2"/><text x="69.0000%" y="110.50"></text></g><g><title>from_map (dask/dataframe/io/io.py:849) (2 samples, 0.40%)</title><rect x="68.7500%" y="116" width="0.4032%" height="15" fill="rgb(242,169,11)" fg:x="341" fg:w="2"/><text x="69.0000%" y="126.50"></text></g><g><title>make_meta (dask/dataframe/dispatch.py:95) (2 samples, 0.40%)</title><rect x="68.7500%" y="132" width="0.4032%" height="15" fill="rgb(211,213,45)" fg:x="341" fg:w="2"/><text x="69.0000%" y="142.50"></text></g><g><title>make_meta_object (dask/dataframe/backends.py:259) (2 samples, 0.40%)</title><rect x="68.7500%" y="148" width="0.4032%" height="15" fill="rgb(205,88,11)" fg:x="341" fg:w="2"/><text x="69.0000%" y="158.50"></text></g><g><title>__init__ (pandas/core/frame.py:668) (2 samples, 0.40%)</title><rect x="68.7500%" y="164" width="0.4032%" height="15" fill="rgb(252,69,26)" fg:x="341" fg:w="2"/><text x="69.0000%" y="174.50"></text></g><g><title>dict_to_mgr (pandas/core/internals/construction.py:423) (2 samples, 0.40%)</title><rect x="68.7500%" y="180" width="0.4032%" height="15" fill="rgb(246,123,37)" fg:x="341" fg:w="2"/><text x="69.0000%" y="190.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (2 samples, 0.40%)</title><rect x="68.7500%" y="196" width="0.4032%" height="15" fill="rgb(212,205,5)" fg:x="341" fg:w="2"/><text x="69.0000%" y="206.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (2 samples, 0.40%)</title><rect x="68.7500%" y="212" width="0.4032%" height="15" fill="rgb(253,148,0)" fg:x="341" fg:w="2"/><text x="69.0000%" y="222.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (2 samples, 0.40%)</title><rect x="68.7500%" y="228" width="0.4032%" height="15" fill="rgb(239,22,4)" fg:x="341" fg:w="2"/><text x="69.0000%" y="238.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (2 samples, 0.40%)</title><rect x="68.7500%" y="244" width="0.4032%" height="15" fill="rgb(226,26,53)" fg:x="341" fg:w="2"/><text x="69.0000%" y="254.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (2 samples, 0.40%)</title><rect x="68.7500%" y="260" width="0.4032%" height="15" fill="rgb(225,229,45)" fg:x="341" fg:w="2"/><text x="69.0000%" y="270.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (1 samples, 0.20%)</title><rect x="68.9516%" y="276" width="0.2016%" height="15" fill="rgb(220,60,37)" fg:x="342" fg:w="1"/><text x="69.2016%" y="286.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.20%)</title><rect x="69.1532%" y="500" width="0.2016%" height="15" fill="rgb(217,180,35)" fg:x="343" fg:w="1"/><text x="69.4032%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.20%)</title><rect x="69.1532%" y="516" width="0.2016%" height="15" fill="rgb(229,7,53)" fg:x="343" fg:w="1"/><text x="69.4032%" y="526.50"></text></g><g><title>_extract_index (pandas/core/internals/construction.py:638) (1 samples, 0.20%)</title><rect x="69.1532%" y="532" width="0.2016%" height="15" fill="rgb(254,137,3)" fg:x="343" fg:w="1"/><text x="69.4032%" y="542.50"></text></g><g><title><genexpr> (dask/core.py:127) (11 samples, 2.22%)</title><rect x="69.1532%" y="372" width="2.2177%" height="15" fill="rgb(215,140,41)" fg:x="343" fg:w="11"/><text x="69.4032%" y="382.50"><..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 2.22%)</title><rect x="69.1532%" y="388" width="2.2177%" height="15" fill="rgb(250,80,15)" fg:x="343" fg:w="11"/><text x="69.4032%" y="398.50">_..</text></g><g><title><genexpr> (dask/core.py:127) (11 samples, 2.22%)</title><rect x="69.1532%" y="404" width="2.2177%" height="15" fill="rgb(252,191,6)" fg:x="343" fg:w="11"/><text x="69.4032%" y="414.50"><..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 2.22%)</title><rect x="69.1532%" y="420" width="2.2177%" height="15" fill="rgb(246,217,18)" fg:x="343" fg:w="11"/><text x="69.4032%" y="430.50">_..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (11 samples, 2.22%)</title><rect x="69.1532%" y="436" width="2.2177%" height="15" fill="rgb(223,93,7)" fg:x="343" fg:w="11"/><text x="69.4032%" y="446.50">_..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (11 samples, 2.22%)</title><rect x="69.1532%" y="452" width="2.2177%" height="15" fill="rgb(225,55,52)" fg:x="343" fg:w="11"/><text x="69.4032%" y="462.50">a..</text></g><g><title>f (qarray/df.py:105) (11 samples, 2.22%)</title><rect x="69.1532%" y="468" width="2.2177%" height="15" fill="rgb(240,31,24)" fg:x="343" fg:w="11"/><text x="69.4032%" y="478.50">f..</text></g><g><title>to_pd (qarray/df.py:72) (11 samples, 2.22%)</title><rect x="69.1532%" y="484" width="2.2177%" height="15" fill="rgb(205,56,52)" fg:x="343" fg:w="11"/><text x="69.4032%" y="494.50">t..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (10 samples, 2.02%)</title><rect x="69.3548%" y="500" width="2.0161%" height="15" fill="rgb(246,146,12)" fg:x="344" fg:w="10"/><text x="69.6048%" y="510.50">u..</text></g><g><title>values (xarray/core/dataarray.py:750) (1 samples, 0.20%)</title><rect x="71.1694%" y="516" width="0.2016%" height="15" fill="rgb(239,84,36)" fg:x="353" fg:w="1"/><text x="71.4194%" y="526.50"></text></g><g><title>values (xarray/core/variable.py:613) (1 samples, 0.20%)</title><rect x="71.1694%" y="532" width="0.2016%" height="15" fill="rgb(207,41,40)" fg:x="353" fg:w="1"/><text x="71.4194%" y="542.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (1 samples, 0.20%)</title><rect x="71.1694%" y="548" width="0.2016%" height="15" fill="rgb(241,179,25)" fg:x="353" fg:w="1"/><text x="71.4194%" y="558.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (1 samples, 0.20%)</title><rect x="71.1694%" y="564" width="0.2016%" height="15" fill="rgb(210,0,34)" fg:x="353" fg:w="1"/><text x="71.4194%" y="574.50"></text></g><g><title>compute (dask/base.py:355) (1 samples, 0.20%)</title><rect x="71.1694%" y="580" width="0.2016%" height="15" fill="rgb(225,217,29)" fg:x="353" fg:w="1"/><text x="71.4194%" y="590.50"></text></g><g><title>compute (dask/base.py:603) (1 samples, 0.20%)</title><rect x="71.1694%" y="596" width="0.2016%" height="15" fill="rgb(216,191,38)" fg:x="353" fg:w="1"/><text x="71.4194%" y="606.50"></text></g><g><title>get (dask/threaded.py:37) (1 samples, 0.20%)</title><rect x="71.1694%" y="612" width="0.2016%" height="15" fill="rgb(232,140,52)" fg:x="353" fg:w="1"/><text x="71.4194%" y="622.50"></text></g><g><title>get_async (dask/local.py:351) (1 samples, 0.20%)</title><rect x="71.1694%" y="628" width="0.2016%" height="15" fill="rgb(223,158,51)" fg:x="353" fg:w="1"/><text x="71.4194%" y="638.50"></text></g><g><title>order (dask/order.py:83) (1 samples, 0.20%)</title><rect x="71.1694%" y="644" width="0.2016%" height="15" fill="rgb(235,29,51)" fg:x="353" fg:w="1"/><text x="71.4194%" y="654.50"></text></g><g><title>reverse_dict (dask/core.py:356) (1 samples, 0.20%)</title><rect x="71.1694%" y="660" width="0.2016%" height="15" fill="rgb(215,181,18)" fg:x="353" fg:w="1"/><text x="71.4194%" y="670.50"></text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="69.1532%" y="276" width="2.4194%" height="15" fill="rgb(227,125,34)" fg:x="343" fg:w="12"/><text x="69.4032%" y="286.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="69.1532%" y="292" width="2.4194%" height="15" fill="rgb(230,197,49)" fg:x="343" fg:w="12"/><text x="69.4032%" y="302.50">_e..</text></g><g><title><listcomp> (dask/core.py:121) (12 samples, 2.42%)</title><rect x="69.1532%" y="308" width="2.4194%" height="15" fill="rgb(239,141,16)" fg:x="343" fg:w="12"/><text x="69.4032%" y="318.50"><l..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="69.1532%" y="324" width="2.4194%" height="15" fill="rgb(225,105,43)" fg:x="343" fg:w="12"/><text x="69.4032%" y="334.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="69.1532%" y="340" width="2.4194%" height="15" fill="rgb(214,131,14)" fg:x="343" fg:w="12"/><text x="69.4032%" y="350.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="69.1532%" y="356" width="2.4194%" height="15" fill="rgb(229,177,11)" fg:x="343" fg:w="12"/><text x="69.4032%" y="366.50">_e..</text></g><g><title>assign (dask/dataframe/methods.py:352) (1 samples, 0.20%)</title><rect x="71.3710%" y="372" width="0.2016%" height="15" fill="rgb(231,180,14)" fg:x="354" fg:w="1"/><text x="71.6210%" y="382.50"></text></g><g><title>__setitem__ (pandas/core/frame.py:4065) (1 samples, 0.20%)</title><rect x="71.3710%" y="388" width="0.2016%" height="15" fill="rgb(232,88,2)" fg:x="354" fg:w="1"/><text x="71.6210%" y="398.50"></text></g><g><title>_set_item (pandas/core/frame.py:4293) (1 samples, 0.20%)</title><rect x="71.3710%" y="404" width="0.2016%" height="15" fill="rgb(205,220,8)" fg:x="354" fg:w="1"/><text x="71.6210%" y="414.50"></text></g><g><title>_sanitize_column (pandas/core/frame.py:5018) (1 samples, 0.20%)</title><rect x="71.3710%" y="420" width="0.2016%" height="15" fill="rgb(225,23,53)" fg:x="354" fg:w="1"/><text x="71.6210%" y="430.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.20%)</title><rect x="71.3710%" y="436" width="0.2016%" height="15" fill="rgb(213,62,29)" fg:x="354" fg:w="1"/><text x="71.6210%" y="446.50"></text></g><g><title>construct_1d_arraylike_from_scalar (pandas/core/dtypes/cast.py:1483) (1 samples, 0.20%)</title><rect x="71.3710%" y="452" width="0.2016%" height="15" fill="rgb(227,75,7)" fg:x="354" fg:w="1"/><text x="71.6210%" y="462.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (2 samples, 0.40%)</title><rect x="71.5726%" y="436" width="0.4032%" height="15" fill="rgb(207,105,14)" fg:x="355" fg:w="2"/><text x="71.8226%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (2 samples, 0.40%)</title><rect x="71.5726%" y="452" width="0.4032%" height="15" fill="rgb(245,62,29)" fg:x="355" fg:w="2"/><text x="71.8226%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (2 samples, 0.40%)</title><rect x="71.5726%" y="468" width="0.4032%" height="15" fill="rgb(236,202,4)" fg:x="355" fg:w="2"/><text x="71.8226%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.20%)</title><rect x="72.1774%" y="484" width="0.2016%" height="15" fill="rgb(250,67,1)" fg:x="358" fg:w="1"/><text x="72.4274%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.20%)</title><rect x="72.1774%" y="500" width="0.2016%" height="15" fill="rgb(253,115,44)" fg:x="358" fg:w="1"/><text x="72.4274%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.20%)</title><rect x="72.1774%" y="516" width="0.2016%" height="15" fill="rgb(251,139,18)" fg:x="358" fg:w="1"/><text x="72.4274%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.20%)</title><rect x="72.1774%" y="532" width="0.2016%" height="15" fill="rgb(218,22,32)" fg:x="358" fg:w="1"/><text x="72.4274%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.20%)</title><rect x="72.1774%" y="548" width="0.2016%" height="15" fill="rgb(243,53,5)" fg:x="358" fg:w="1"/><text x="72.4274%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.20%)</title><rect x="72.1774%" y="564" width="0.2016%" height="15" fill="rgb(227,56,16)" fg:x="358" fg:w="1"/><text x="72.4274%" y="574.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (4 samples, 0.81%)</title><rect x="72.3790%" y="484" width="0.8065%" height="15" fill="rgb(245,53,0)" fg:x="359" fg:w="4"/><text x="72.6290%" y="494.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (9 samples, 1.81%)</title><rect x="71.5726%" y="308" width="1.8145%" height="15" fill="rgb(216,170,35)" fg:x="355" fg:w="9"/><text x="71.8226%" y="318.50">_..</text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (9 samples, 1.81%)</title><rect x="71.5726%" y="324" width="1.8145%" height="15" fill="rgb(211,200,8)" fg:x="355" fg:w="9"/><text x="71.8226%" y="334.50"><..</text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (9 samples, 1.81%)</title><rect x="71.5726%" y="340" width="1.8145%" height="15" fill="rgb(228,204,44)" fg:x="355" fg:w="9"/><text x="71.8226%" y="350.50">s..</text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (9 samples, 1.81%)</title><rect x="71.5726%" y="356" width="1.8145%" height="15" fill="rgb(214,121,17)" fg:x="355" fg:w="9"/><text x="71.8226%" y="366.50">_..</text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (9 samples, 1.81%)</title><rect x="71.5726%" y="372" width="1.8145%" height="15" fill="rgb(233,64,38)" fg:x="355" fg:w="9"/><text x="71.8226%" y="382.50">_..</text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (9 samples, 1.81%)</title><rect x="71.5726%" y="388" width="1.8145%" height="15" fill="rgb(253,54,19)" fg:x="355" fg:w="9"/><text x="71.8226%" y="398.50">g..</text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (9 samples, 1.81%)</title><rect x="71.5726%" y="404" width="1.8145%" height="15" fill="rgb(253,94,18)" fg:x="355" fg:w="9"/><text x="71.8226%" y="414.50">a..</text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (9 samples, 1.81%)</title><rect x="71.5726%" y="420" width="1.8145%" height="15" fill="rgb(227,57,52)" fg:x="355" fg:w="9"/><text x="71.8226%" y="430.50">_..</text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (7 samples, 1.41%)</title><rect x="71.9758%" y="436" width="1.4113%" height="15" fill="rgb(230,228,50)" fg:x="357" fg:w="7"/><text x="72.2258%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (6 samples, 1.21%)</title><rect x="72.1774%" y="452" width="1.2097%" height="15" fill="rgb(217,205,27)" fg:x="358" fg:w="6"/><text x="72.4274%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (6 samples, 1.21%)</title><rect x="72.1774%" y="468" width="1.2097%" height="15" fill="rgb(252,71,50)" fg:x="358" fg:w="6"/><text x="72.4274%" y="478.50"></text></g><g><title>get_group_index (pandas/core/sorting.py:122) (1 samples, 0.20%)</title><rect x="73.1855%" y="484" width="0.2016%" height="15" fill="rgb(209,86,4)" fg:x="363" fg:w="1"/><text x="73.4355%" y="494.50"></text></g><g><title>thread (0x3074C1000) (22 samples, 4.44%)</title><rect x="69.1532%" y="68" width="4.4355%" height="15" fill="rgb(229,94,0)" fg:x="343" fg:w="22"/><text x="69.4032%" y="78.50">threa..</text></g><g><title>_bootstrap (threading.py:923) (22 samples, 4.44%)</title><rect x="69.1532%" y="84" width="4.4355%" height="15" fill="rgb(252,223,21)" fg:x="343" fg:w="22"/><text x="69.4032%" y="94.50">_boot..</text></g><g><title>_bootstrap_inner (threading.py:963) (22 samples, 4.44%)</title><rect x="69.1532%" y="100" width="4.4355%" height="15" fill="rgb(230,210,4)" fg:x="343" fg:w="22"/><text x="69.4032%" y="110.50">_boot..</text></g><g><title>run (threading.py:906) (22 samples, 4.44%)</title><rect x="69.1532%" y="116" width="4.4355%" height="15" fill="rgb(240,149,38)" fg:x="343" fg:w="22"/><text x="69.4032%" y="126.50">run (..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (22 samples, 4.44%)</title><rect x="69.1532%" y="132" width="4.4355%" height="15" fill="rgb(254,105,20)" fg:x="343" fg:w="22"/><text x="69.4032%" y="142.50">_work..</text></g><g><title>run (concurrent/futures/thread.py:53) (22 samples, 4.44%)</title><rect x="69.1532%" y="148" width="4.4355%" height="15" fill="rgb(253,87,46)" fg:x="343" fg:w="22"/><text x="69.4032%" y="158.50">run (..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (22 samples, 4.44%)</title><rect x="69.1532%" y="164" width="4.4355%" height="15" fill="rgb(253,116,33)" fg:x="343" fg:w="22"/><text x="69.4032%" y="174.50">batch..</text></g><g><title><listcomp> (dask/local.py:239) (22 samples, 4.44%)</title><rect x="69.1532%" y="180" width="4.4355%" height="15" fill="rgb(229,198,5)" fg:x="343" fg:w="22"/><text x="69.4032%" y="190.50"><list..</text></g><g><title>execute_task (dask/local.py:215) (22 samples, 4.44%)</title><rect x="69.1532%" y="196" width="4.4355%" height="15" fill="rgb(242,38,37)" fg:x="343" fg:w="22"/><text x="69.4032%" y="206.50">execu..</text></g><g><title>_execute_task (dask/core.py:90) (22 samples, 4.44%)</title><rect x="69.1532%" y="212" width="4.4355%" height="15" fill="rgb(242,69,53)" fg:x="343" fg:w="22"/><text x="69.4032%" y="222.50">_exec..</text></g><g><title>__call__ (dask/optimization.py:992) (22 samples, 4.44%)</title><rect x="69.1532%" y="228" width="4.4355%" height="15" fill="rgb(249,80,16)" fg:x="343" fg:w="22"/><text x="69.4032%" y="238.50">__cal..</text></g><g><title>get (dask/core.py:136) (22 samples, 4.44%)</title><rect x="69.1532%" y="244" width="4.4355%" height="15" fill="rgb(206,128,11)" fg:x="343" fg:w="22"/><text x="69.4032%" y="254.50">get (..</text></g><g><title>_execute_task (dask/core.py:90) (22 samples, 4.44%)</title><rect x="69.1532%" y="260" width="4.4355%" height="15" fill="rgb(212,35,20)" fg:x="343" fg:w="22"/><text x="69.4032%" y="270.50">_exec..</text></g><g><title>apply (dask/utils.py:46) (10 samples, 2.02%)</title><rect x="71.5726%" y="276" width="2.0161%" height="15" fill="rgb(236,79,13)" fg:x="355" fg:w="10"/><text x="71.8226%" y="286.50">a..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (10 samples, 2.02%)</title><rect x="71.5726%" y="292" width="2.0161%" height="15" fill="rgb(233,123,3)" fg:x="355" fg:w="10"/><text x="71.8226%" y="302.50">_..</text></g><g><title>_groupby_raise_unaligned (dask/dataframe/groupby.py:156) (1 samples, 0.20%)</title><rect x="73.3871%" y="308" width="0.2016%" height="15" fill="rgb(214,93,52)" fg:x="364" fg:w="1"/><text x="73.6371%" y="318.50"></text></g><g><title>groupby (pandas/core/frame.py:8730) (1 samples, 0.20%)</title><rect x="73.3871%" y="324" width="0.2016%" height="15" fill="rgb(251,37,40)" fg:x="364" fg:w="1"/><text x="73.6371%" y="334.50"></text></g><g><title>__init__ (pandas/core/groupby/groupby.py:1241) (1 samples, 0.20%)</title><rect x="73.3871%" y="340" width="0.2016%" height="15" fill="rgb(227,80,54)" fg:x="364" fg:w="1"/><text x="73.6371%" y="350.50"></text></g><g><title>get_grouper (pandas/core/groupby/grouper.py:812) (1 samples, 0.20%)</title><rect x="73.3871%" y="356" width="0.2016%" height="15" fill="rgb(254,48,11)" fg:x="364" fg:w="1"/><text x="73.6371%" y="366.50"></text></g><g><title>__init__ (pandas/core/groupby/grouper.py:527) (1 samples, 0.20%)</title><rect x="73.3871%" y="372" width="0.2016%" height="15" fill="rgb(235,193,26)" fg:x="364" fg:w="1"/><text x="73.6371%" y="382.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (4 samples, 0.81%)</title><rect x="73.5887%" y="500" width="0.8065%" height="15" fill="rgb(229,99,21)" fg:x="365" fg:w="4"/><text x="73.8387%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (4 samples, 0.81%)</title><rect x="73.5887%" y="516" width="0.8065%" height="15" fill="rgb(211,140,41)" fg:x="365" fg:w="4"/><text x="73.8387%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (4 samples, 0.81%)</title><rect x="73.5887%" y="532" width="0.8065%" height="15" fill="rgb(240,227,30)" fg:x="365" fg:w="4"/><text x="73.8387%" y="542.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (4 samples, 0.81%)</title><rect x="73.5887%" y="548" width="0.8065%" height="15" fill="rgb(215,224,45)" fg:x="365" fg:w="4"/><text x="73.8387%" y="558.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (4 samples, 0.81%)</title><rect x="73.5887%" y="564" width="0.8065%" height="15" fill="rgb(206,123,31)" fg:x="365" fg:w="4"/><text x="73.8387%" y="574.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (4 samples, 0.81%)</title><rect x="73.5887%" y="580" width="0.8065%" height="15" fill="rgb(210,138,16)" fg:x="365" fg:w="4"/><text x="73.8387%" y="590.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (3 samples, 0.60%)</title><rect x="73.7903%" y="596" width="0.6048%" height="15" fill="rgb(228,57,28)" fg:x="366" fg:w="3"/><text x="74.0403%" y="606.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.41%)</title><rect x="73.5887%" y="372" width="1.4113%" height="15" fill="rgb(242,170,10)" fg:x="365" fg:w="7"/><text x="73.8387%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.41%)</title><rect x="73.5887%" y="388" width="1.4113%" height="15" fill="rgb(228,214,39)" fg:x="365" fg:w="7"/><text x="73.8387%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.41%)</title><rect x="73.5887%" y="404" width="1.4113%" height="15" fill="rgb(218,179,33)" fg:x="365" fg:w="7"/><text x="73.8387%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.41%)</title><rect x="73.5887%" y="420" width="1.4113%" height="15" fill="rgb(235,193,39)" fg:x="365" fg:w="7"/><text x="73.8387%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (7 samples, 1.41%)</title><rect x="73.5887%" y="436" width="1.4113%" height="15" fill="rgb(219,221,36)" fg:x="365" fg:w="7"/><text x="73.8387%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (7 samples, 1.41%)</title><rect x="73.5887%" y="452" width="1.4113%" height="15" fill="rgb(248,218,19)" fg:x="365" fg:w="7"/><text x="73.8387%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (7 samples, 1.41%)</title><rect x="73.5887%" y="468" width="1.4113%" height="15" fill="rgb(205,50,9)" fg:x="365" fg:w="7"/><text x="73.8387%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (7 samples, 1.41%)</title><rect x="73.5887%" y="484" width="1.4113%" height="15" fill="rgb(238,81,28)" fg:x="365" fg:w="7"/><text x="73.8387%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (3 samples, 0.60%)</title><rect x="74.3952%" y="500" width="0.6048%" height="15" fill="rgb(235,110,19)" fg:x="369" fg:w="3"/><text x="74.6452%" y="510.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="73.5887%" y="276" width="1.6129%" height="15" fill="rgb(214,7,14)" fg:x="365" fg:w="8"/><text x="73.8387%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="73.5887%" y="292" width="1.6129%" height="15" fill="rgb(211,77,3)" fg:x="365" fg:w="8"/><text x="73.8387%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.61%)</title><rect x="73.5887%" y="308" width="1.6129%" height="15" fill="rgb(229,5,9)" fg:x="365" fg:w="8"/><text x="73.8387%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="73.5887%" y="324" width="1.6129%" height="15" fill="rgb(225,90,11)" fg:x="365" fg:w="8"/><text x="73.8387%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="73.5887%" y="340" width="1.6129%" height="15" fill="rgb(242,56,8)" fg:x="365" fg:w="8"/><text x="73.8387%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="73.5887%" y="356" width="1.6129%" height="15" fill="rgb(249,212,39)" fg:x="365" fg:w="8"/><text x="73.8387%" y="366.50"></text></g><g><title>assign (dask/dataframe/methods.py:352) (1 samples, 0.20%)</title><rect x="75.0000%" y="372" width="0.2016%" height="15" fill="rgb(236,90,9)" fg:x="372" fg:w="1"/><text x="75.2500%" y="382.50"></text></g><g><title>__setitem__ (pandas/core/frame.py:4065) (1 samples, 0.20%)</title><rect x="75.0000%" y="388" width="0.2016%" height="15" fill="rgb(206,88,35)" fg:x="372" fg:w="1"/><text x="75.2500%" y="398.50"></text></g><g><title>_set_item (pandas/core/frame.py:4293) (1 samples, 0.20%)</title><rect x="75.0000%" y="404" width="0.2016%" height="15" fill="rgb(205,126,30)" fg:x="372" fg:w="1"/><text x="75.2500%" y="414.50"></text></g><g><title>_sanitize_column (pandas/core/frame.py:5018) (1 samples, 0.20%)</title><rect x="75.0000%" y="420" width="0.2016%" height="15" fill="rgb(230,176,12)" fg:x="372" fg:w="1"/><text x="75.2500%" y="430.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.20%)</title><rect x="75.0000%" y="436" width="0.2016%" height="15" fill="rgb(243,19,9)" fg:x="372" fg:w="1"/><text x="75.2500%" y="446.50"></text></g><g><title>construct_1d_arraylike_from_scalar (pandas/core/dtypes/cast.py:1483) (1 samples, 0.20%)</title><rect x="75.0000%" y="452" width="0.2016%" height="15" fill="rgb(245,171,17)" fg:x="372" fg:w="1"/><text x="75.2500%" y="462.50"></text></g><g><title>_any (numpy/core/_methods.py:55) (2 samples, 0.40%)</title><rect x="75.2016%" y="452" width="0.4032%" height="15" fill="rgb(227,52,21)" fg:x="373" fg:w="2"/><text x="75.4516%" y="462.50"></text></g><g><title>thread (0x3084C4000) (13 samples, 2.62%)</title><rect x="73.5887%" y="68" width="2.6210%" height="15" fill="rgb(238,69,14)" fg:x="365" fg:w="13"/><text x="73.8387%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (13 samples, 2.62%)</title><rect x="73.5887%" y="84" width="2.6210%" height="15" fill="rgb(241,156,39)" fg:x="365" fg:w="13"/><text x="73.8387%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (13 samples, 2.62%)</title><rect x="73.5887%" y="100" width="2.6210%" height="15" fill="rgb(212,227,28)" fg:x="365" fg:w="13"/><text x="73.8387%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (13 samples, 2.62%)</title><rect x="73.5887%" y="116" width="2.6210%" height="15" fill="rgb(209,118,27)" fg:x="365" fg:w="13"/><text x="73.8387%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (13 samples, 2.62%)</title><rect x="73.5887%" y="132" width="2.6210%" height="15" fill="rgb(226,102,5)" fg:x="365" fg:w="13"/><text x="73.8387%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 2.62%)</title><rect x="73.5887%" y="148" width="2.6210%" height="15" fill="rgb(223,34,3)" fg:x="365" fg:w="13"/><text x="73.8387%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 2.62%)</title><rect x="73.5887%" y="164" width="2.6210%" height="15" fill="rgb(221,81,38)" fg:x="365" fg:w="13"/><text x="73.8387%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 2.62%)</title><rect x="73.5887%" y="180" width="2.6210%" height="15" fill="rgb(236,219,28)" fg:x="365" fg:w="13"/><text x="73.8387%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 2.62%)</title><rect x="73.5887%" y="196" width="2.6210%" height="15" fill="rgb(213,200,14)" fg:x="365" fg:w="13"/><text x="73.8387%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="73.5887%" y="212" width="2.6210%" height="15" fill="rgb(240,33,19)" fg:x="365" fg:w="13"/><text x="73.8387%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (13 samples, 2.62%)</title><rect x="73.5887%" y="228" width="2.6210%" height="15" fill="rgb(233,113,27)" fg:x="365" fg:w="13"/><text x="73.8387%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (13 samples, 2.62%)</title><rect x="73.5887%" y="244" width="2.6210%" height="15" fill="rgb(220,221,18)" fg:x="365" fg:w="13"/><text x="73.8387%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="73.5887%" y="260" width="2.6210%" height="15" fill="rgb(238,92,8)" fg:x="365" fg:w="13"/><text x="73.8387%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (5 samples, 1.01%)</title><rect x="75.2016%" y="276" width="1.0081%" height="15" fill="rgb(222,164,16)" fg:x="373" fg:w="5"/><text x="75.4516%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (5 samples, 1.01%)</title><rect x="75.2016%" y="292" width="1.0081%" height="15" fill="rgb(241,119,3)" fg:x="373" fg:w="5"/><text x="75.4516%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (5 samples, 1.01%)</title><rect x="75.2016%" y="308" width="1.0081%" height="15" fill="rgb(241,44,8)" fg:x="373" fg:w="5"/><text x="75.4516%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (5 samples, 1.01%)</title><rect x="75.2016%" y="324" width="1.0081%" height="15" fill="rgb(230,36,40)" fg:x="373" fg:w="5"/><text x="75.4516%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (5 samples, 1.01%)</title><rect x="75.2016%" y="340" width="1.0081%" height="15" fill="rgb(243,16,36)" fg:x="373" fg:w="5"/><text x="75.4516%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (5 samples, 1.01%)</title><rect x="75.2016%" y="356" width="1.0081%" height="15" fill="rgb(231,4,26)" fg:x="373" fg:w="5"/><text x="75.4516%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (5 samples, 1.01%)</title><rect x="75.2016%" y="372" width="1.0081%" height="15" fill="rgb(240,9,31)" fg:x="373" fg:w="5"/><text x="75.4516%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (5 samples, 1.01%)</title><rect x="75.2016%" y="388" width="1.0081%" height="15" fill="rgb(207,173,15)" fg:x="373" fg:w="5"/><text x="75.4516%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (5 samples, 1.01%)</title><rect x="75.2016%" y="404" width="1.0081%" height="15" fill="rgb(224,192,53)" fg:x="373" fg:w="5"/><text x="75.4516%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (5 samples, 1.01%)</title><rect x="75.2016%" y="420" width="1.0081%" height="15" fill="rgb(223,67,28)" fg:x="373" fg:w="5"/><text x="75.4516%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (5 samples, 1.01%)</title><rect x="75.2016%" y="436" width="1.0081%" height="15" fill="rgb(211,20,47)" fg:x="373" fg:w="5"/><text x="75.4516%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (3 samples, 0.60%)</title><rect x="75.6048%" y="452" width="0.6048%" height="15" fill="rgb(240,228,2)" fg:x="375" fg:w="3"/><text x="75.8548%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (3 samples, 0.60%)</title><rect x="75.6048%" y="468" width="0.6048%" height="15" fill="rgb(248,151,12)" fg:x="375" fg:w="3"/><text x="75.8548%" y="478.50"></text></g><g><title>get_group_index (pandas/core/sorting.py:122) (3 samples, 0.60%)</title><rect x="75.6048%" y="484" width="0.6048%" height="15" fill="rgb(244,8,39)" fg:x="375" fg:w="3"/><text x="75.8548%" y="494.50"></text></g><g><title>check_matching_columns (dask/dataframe/utils.py:430) (1 samples, 0.20%)</title><rect x="76.2097%" y="468" width="0.2016%" height="15" fill="rgb(222,26,8)" fg:x="378" fg:w="1"/><text x="76.4597%" y="478.50"></text></g><g><title>array_equal (numpy/core/numeric.py:2378) (1 samples, 0.20%)</title><rect x="76.2097%" y="484" width="0.2016%" height="15" fill="rgb(213,106,44)" fg:x="378" fg:w="1"/><text x="76.4597%" y="494.50"></text></g><g><title>__getattribute__ (numpy/core/records.py:441) (1 samples, 0.20%)</title><rect x="76.4113%" y="516" width="0.2016%" height="15" fill="rgb(214,129,20)" fg:x="379" fg:w="1"/><text x="76.6613%" y="526.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.20%)</title><rect x="76.6129%" y="516" width="0.2016%" height="15" fill="rgb(212,32,13)" fg:x="380" fg:w="1"/><text x="76.8629%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.20%)</title><rect x="76.6129%" y="532" width="0.2016%" height="15" fill="rgb(208,168,33)" fg:x="380" fg:w="1"/><text x="76.8629%" y="542.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.20%)</title><rect x="76.6129%" y="548" width="0.2016%" height="15" fill="rgb(231,207,8)" fg:x="380" fg:w="1"/><text x="76.8629%" y="558.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.20%)</title><rect x="76.6129%" y="564" width="0.2016%" height="15" fill="rgb(235,219,23)" fg:x="380" fg:w="1"/><text x="76.8629%" y="574.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (3 samples, 0.60%)</title><rect x="76.4113%" y="500" width="0.6048%" height="15" fill="rgb(226,216,26)" fg:x="379" fg:w="3"/><text x="76.6613%" y="510.50"></text></g><g><title>to_arrays (pandas/core/internals/construction.py:793) (1 samples, 0.20%)</title><rect x="76.8145%" y="516" width="0.2016%" height="15" fill="rgb(239,137,16)" fg:x="381" fg:w="1"/><text x="77.0645%" y="526.50"></text></g><g><title>__new__ (pandas/core/indexes/base.py:477) (1 samples, 0.20%)</title><rect x="76.8145%" y="532" width="0.2016%" height="15" fill="rgb(207,12,36)" fg:x="381" fg:w="1"/><text x="77.0645%" y="542.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.20%)</title><rect x="76.8145%" y="548" width="0.2016%" height="15" fill="rgb(210,214,24)" fg:x="381" fg:w="1"/><text x="77.0645%" y="558.50"></text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="76.2097%" y="276" width="2.4194%" height="15" fill="rgb(206,56,30)" fg:x="378" fg:w="12"/><text x="76.4597%" y="286.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="76.2097%" y="292" width="2.4194%" height="15" fill="rgb(228,143,26)" fg:x="378" fg:w="12"/><text x="76.4597%" y="302.50">_e..</text></g><g><title><listcomp> (dask/core.py:121) (12 samples, 2.42%)</title><rect x="76.2097%" y="308" width="2.4194%" height="15" fill="rgb(216,218,46)" fg:x="378" fg:w="12"/><text x="76.4597%" y="318.50"><l..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="76.2097%" y="324" width="2.4194%" height="15" fill="rgb(206,6,19)" fg:x="378" fg:w="12"/><text x="76.4597%" y="334.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="76.2097%" y="340" width="2.4194%" height="15" fill="rgb(239,177,51)" fg:x="378" fg:w="12"/><text x="76.4597%" y="350.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="76.2097%" y="356" width="2.4194%" height="15" fill="rgb(216,55,25)" fg:x="378" fg:w="12"/><text x="76.4597%" y="366.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="76.2097%" y="372" width="2.4194%" height="15" fill="rgb(231,163,29)" fg:x="378" fg:w="12"/><text x="76.4597%" y="382.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="76.2097%" y="388" width="2.4194%" height="15" fill="rgb(232,149,50)" fg:x="378" fg:w="12"/><text x="76.4597%" y="398.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (12 samples, 2.42%)</title><rect x="76.2097%" y="404" width="2.4194%" height="15" fill="rgb(223,142,48)" fg:x="378" fg:w="12"/><text x="76.4597%" y="414.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.42%)</title><rect x="76.2097%" y="420" width="2.4194%" height="15" fill="rgb(245,83,23)" fg:x="378" fg:w="12"/><text x="76.4597%" y="430.50">_e..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (12 samples, 2.42%)</title><rect x="76.2097%" y="436" width="2.4194%" height="15" fill="rgb(224,63,2)" fg:x="378" fg:w="12"/><text x="76.4597%" y="446.50">__..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (12 samples, 2.42%)</title><rect x="76.2097%" y="452" width="2.4194%" height="15" fill="rgb(218,65,53)" fg:x="378" fg:w="12"/><text x="76.4597%" y="462.50">ap..</text></g><g><title>f (qarray/df.py:105) (11 samples, 2.22%)</title><rect x="76.4113%" y="468" width="2.2177%" height="15" fill="rgb(221,84,29)" fg:x="379" fg:w="11"/><text x="76.6613%" y="478.50">f..</text></g><g><title>to_pd (qarray/df.py:72) (11 samples, 2.22%)</title><rect x="76.4113%" y="484" width="2.2177%" height="15" fill="rgb(234,0,32)" fg:x="379" fg:w="11"/><text x="76.6613%" y="494.50">t..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.61%)</title><rect x="77.0161%" y="500" width="1.6129%" height="15" fill="rgb(206,20,16)" fg:x="382" fg:w="8"/><text x="77.2661%" y="510.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (2 samples, 0.40%)</title><rect x="78.6290%" y="436" width="0.4032%" height="15" fill="rgb(244,172,18)" fg:x="390" fg:w="2"/><text x="78.8790%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (2 samples, 0.40%)</title><rect x="78.6290%" y="452" width="0.4032%" height="15" fill="rgb(254,133,1)" fg:x="390" fg:w="2"/><text x="78.8790%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (2 samples, 0.40%)</title><rect x="78.6290%" y="468" width="0.4032%" height="15" fill="rgb(222,206,41)" fg:x="390" fg:w="2"/><text x="78.8790%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.20%)</title><rect x="79.0323%" y="484" width="0.2016%" height="15" fill="rgb(212,3,42)" fg:x="392" fg:w="1"/><text x="79.2823%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.20%)</title><rect x="79.0323%" y="500" width="0.2016%" height="15" fill="rgb(241,11,4)" fg:x="392" fg:w="1"/><text x="79.2823%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.20%)</title><rect x="79.0323%" y="516" width="0.2016%" height="15" fill="rgb(205,19,26)" fg:x="392" fg:w="1"/><text x="79.2823%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.20%)</title><rect x="79.0323%" y="532" width="0.2016%" height="15" fill="rgb(210,179,32)" fg:x="392" fg:w="1"/><text x="79.2823%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.20%)</title><rect x="79.0323%" y="548" width="0.2016%" height="15" fill="rgb(227,116,49)" fg:x="392" fg:w="1"/><text x="79.2823%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.20%)</title><rect x="79.0323%" y="564" width="0.2016%" height="15" fill="rgb(211,146,6)" fg:x="392" fg:w="1"/><text x="79.2823%" y="574.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (3 samples, 0.60%)</title><rect x="79.2339%" y="484" width="0.6048%" height="15" fill="rgb(219,44,39)" fg:x="393" fg:w="3"/><text x="79.4839%" y="494.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (5 samples, 1.01%)</title><rect x="79.0323%" y="436" width="1.0081%" height="15" fill="rgb(234,128,11)" fg:x="392" fg:w="5"/><text x="79.2823%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (5 samples, 1.01%)</title><rect x="79.0323%" y="452" width="1.0081%" height="15" fill="rgb(220,183,53)" fg:x="392" fg:w="5"/><text x="79.2823%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (5 samples, 1.01%)</title><rect x="79.0323%" y="468" width="1.0081%" height="15" fill="rgb(213,219,32)" fg:x="392" fg:w="5"/><text x="79.2823%" y="478.50"></text></g><g><title>shape (pandas/core/groupby/ops.py:580) (1 samples, 0.20%)</title><rect x="79.8387%" y="484" width="0.2016%" height="15" fill="rgb(232,156,16)" fg:x="396" fg:w="1"/><text x="80.0887%" y="494.50"></text></g><g><title><genexpr> (pandas/core/groupby/ops.py:582) (1 samples, 0.20%)</title><rect x="79.8387%" y="500" width="0.2016%" height="15" fill="rgb(246,135,34)" fg:x="396" fg:w="1"/><text x="80.0887%" y="510.50"></text></g><g><title>ngroups (pandas/core/groupby/grouper.py:676) (1 samples, 0.20%)</title><rect x="79.8387%" y="516" width="0.2016%" height="15" fill="rgb(241,99,0)" fg:x="396" fg:w="1"/><text x="80.0887%" y="526.50"></text></g><g><title>group_index (pandas/core/groupby/grouper.py:720) (1 samples, 0.20%)</title><rect x="79.8387%" y="532" width="0.2016%" height="15" fill="rgb(222,103,45)" fg:x="396" fg:w="1"/><text x="80.0887%" y="542.50"></text></g><g><title>_with_infer (pandas/core/indexes/base.py:673) (1 samples, 0.20%)</title><rect x="79.8387%" y="548" width="0.2016%" height="15" fill="rgb(212,57,4)" fg:x="396" fg:w="1"/><text x="80.0887%" y="558.50"></text></g><g><title>__new__ (pandas/core/indexes/base.py:477) (1 samples, 0.20%)</title><rect x="79.8387%" y="564" width="0.2016%" height="15" fill="rgb(215,68,47)" fg:x="396" fg:w="1"/><text x="80.0887%" y="574.50"></text></g><g><title>_set_codes (pandas/core/indexes/multi.py:1035) (1 samples, 0.20%)</title><rect x="80.0403%" y="484" width="0.2016%" height="15" fill="rgb(230,84,2)" fg:x="397" fg:w="1"/><text x="80.2903%" y="494.50"></text></g><g><title><genexpr> (pandas/core/indexes/multi.py:1052) (1 samples, 0.20%)</title><rect x="80.0403%" y="500" width="0.2016%" height="15" fill="rgb(220,102,14)" fg:x="397" fg:w="1"/><text x="80.2903%" y="510.50"></text></g><g><title>_coerce_indexer_frozen (pandas/core/indexes/multi.py:3999) (1 samples, 0.20%)</title><rect x="80.0403%" y="516" width="0.2016%" height="15" fill="rgb(240,10,32)" fg:x="397" fg:w="1"/><text x="80.2903%" y="526.50"></text></g><g><title>coerce_indexer_dtype (pandas/core/dtypes/cast.py:972) (1 samples, 0.20%)</title><rect x="80.0403%" y="532" width="0.2016%" height="15" fill="rgb(215,47,27)" fg:x="397" fg:w="1"/><text x="80.2903%" y="542.50"></text></g><g><title>thread (0x3094C7000) (21 samples, 4.23%)</title><rect x="76.2097%" y="68" width="4.2339%" height="15" fill="rgb(233,188,43)" fg:x="378" fg:w="21"/><text x="76.4597%" y="78.50">threa..</text></g><g><title>_bootstrap (threading.py:923) (21 samples, 4.23%)</title><rect x="76.2097%" y="84" width="4.2339%" height="15" fill="rgb(253,190,1)" fg:x="378" fg:w="21"/><text x="76.4597%" y="94.50">_boot..</text></g><g><title>_bootstrap_inner (threading.py:963) (21 samples, 4.23%)</title><rect x="76.2097%" y="100" width="4.2339%" height="15" fill="rgb(206,114,52)" fg:x="378" fg:w="21"/><text x="76.4597%" y="110.50">_boot..</text></g><g><title>run (threading.py:906) (21 samples, 4.23%)</title><rect x="76.2097%" y="116" width="4.2339%" height="15" fill="rgb(233,120,37)" fg:x="378" fg:w="21"/><text x="76.4597%" y="126.50">run (..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (21 samples, 4.23%)</title><rect x="76.2097%" y="132" width="4.2339%" height="15" fill="rgb(214,52,39)" fg:x="378" fg:w="21"/><text x="76.4597%" y="142.50">_work..</text></g><g><title>run (concurrent/futures/thread.py:53) (21 samples, 4.23%)</title><rect x="76.2097%" y="148" width="4.2339%" height="15" fill="rgb(223,80,29)" fg:x="378" fg:w="21"/><text x="76.4597%" y="158.50">run (..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (21 samples, 4.23%)</title><rect x="76.2097%" y="164" width="4.2339%" height="15" fill="rgb(230,101,40)" fg:x="378" fg:w="21"/><text x="76.4597%" y="174.50">batch..</text></g><g><title><listcomp> (dask/local.py:239) (21 samples, 4.23%)</title><rect x="76.2097%" y="180" width="4.2339%" height="15" fill="rgb(219,211,8)" fg:x="378" fg:w="21"/><text x="76.4597%" y="190.50"><list..</text></g><g><title>execute_task (dask/local.py:215) (21 samples, 4.23%)</title><rect x="76.2097%" y="196" width="4.2339%" height="15" fill="rgb(252,126,28)" fg:x="378" fg:w="21"/><text x="76.4597%" y="206.50">execu..</text></g><g><title>_execute_task (dask/core.py:90) (21 samples, 4.23%)</title><rect x="76.2097%" y="212" width="4.2339%" height="15" fill="rgb(215,56,38)" fg:x="378" fg:w="21"/><text x="76.4597%" y="222.50">_exec..</text></g><g><title>__call__ (dask/optimization.py:992) (21 samples, 4.23%)</title><rect x="76.2097%" y="228" width="4.2339%" height="15" fill="rgb(249,55,44)" fg:x="378" fg:w="21"/><text x="76.4597%" y="238.50">__cal..</text></g><g><title>get (dask/core.py:136) (21 samples, 4.23%)</title><rect x="76.2097%" y="244" width="4.2339%" height="15" fill="rgb(220,221,32)" fg:x="378" fg:w="21"/><text x="76.4597%" y="254.50">get (..</text></g><g><title>_execute_task (dask/core.py:90) (21 samples, 4.23%)</title><rect x="76.2097%" y="260" width="4.2339%" height="15" fill="rgb(212,216,41)" fg:x="378" fg:w="21"/><text x="76.4597%" y="270.50">_exec..</text></g><g><title>apply (dask/utils.py:46) (9 samples, 1.81%)</title><rect x="78.6290%" y="276" width="1.8145%" height="15" fill="rgb(228,213,43)" fg:x="390" fg:w="9"/><text x="78.8790%" y="286.50">a..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (9 samples, 1.81%)</title><rect x="78.6290%" y="292" width="1.8145%" height="15" fill="rgb(211,31,26)" fg:x="390" fg:w="9"/><text x="78.8790%" y="302.50">_..</text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (9 samples, 1.81%)</title><rect x="78.6290%" y="308" width="1.8145%" height="15" fill="rgb(229,202,19)" fg:x="390" fg:w="9"/><text x="78.8790%" y="318.50">_..</text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (9 samples, 1.81%)</title><rect x="78.6290%" y="324" width="1.8145%" height="15" fill="rgb(229,105,46)" fg:x="390" fg:w="9"/><text x="78.8790%" y="334.50"><..</text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (9 samples, 1.81%)</title><rect x="78.6290%" y="340" width="1.8145%" height="15" fill="rgb(235,108,1)" fg:x="390" fg:w="9"/><text x="78.8790%" y="350.50">s..</text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (9 samples, 1.81%)</title><rect x="78.6290%" y="356" width="1.8145%" height="15" fill="rgb(245,111,35)" fg:x="390" fg:w="9"/><text x="78.8790%" y="366.50">_..</text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (9 samples, 1.81%)</title><rect x="78.6290%" y="372" width="1.8145%" height="15" fill="rgb(219,185,31)" fg:x="390" fg:w="9"/><text x="78.8790%" y="382.50">_..</text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (9 samples, 1.81%)</title><rect x="78.6290%" y="388" width="1.8145%" height="15" fill="rgb(214,4,43)" fg:x="390" fg:w="9"/><text x="78.8790%" y="398.50">g..</text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (9 samples, 1.81%)</title><rect x="78.6290%" y="404" width="1.8145%" height="15" fill="rgb(235,227,40)" fg:x="390" fg:w="9"/><text x="78.8790%" y="414.50">a..</text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (9 samples, 1.81%)</title><rect x="78.6290%" y="420" width="1.8145%" height="15" fill="rgb(230,88,30)" fg:x="390" fg:w="9"/><text x="78.8790%" y="430.50">_..</text></g><g><title>ngroups (pandas/core/groupby/ops.py:755) (2 samples, 0.40%)</title><rect x="80.0403%" y="436" width="0.4032%" height="15" fill="rgb(216,217,1)" fg:x="397" fg:w="2"/><text x="80.2903%" y="446.50"></text></g><g><title>result_index (pandas/core/groupby/ops.py:766) (2 samples, 0.40%)</title><rect x="80.0403%" y="452" width="0.4032%" height="15" fill="rgb(248,139,50)" fg:x="397" fg:w="2"/><text x="80.2903%" y="462.50"></text></g><g><title>__new__ (pandas/core/indexes/multi.py:323) (2 samples, 0.40%)</title><rect x="80.0403%" y="468" width="0.4032%" height="15" fill="rgb(233,1,21)" fg:x="397" fg:w="2"/><text x="80.2903%" y="478.50"></text></g><g><title>_set_levels (pandas/core/indexes/multi.py:853) (1 samples, 0.20%)</title><rect x="80.2419%" y="484" width="0.2016%" height="15" fill="rgb(215,183,12)" fg:x="398" fg:w="1"/><text x="80.4919%" y="494.50"></text></g><g><title><genexpr> (pandas/core/indexes/multi.py:874) (1 samples, 0.20%)</title><rect x="80.2419%" y="500" width="0.2016%" height="15" fill="rgb(229,104,42)" fg:x="398" fg:w="1"/><text x="80.4919%" y="510.50"></text></g><g><title>_view (pandas/core/indexes/base.py:772) (1 samples, 0.20%)</title><rect x="80.2419%" y="516" width="0.2016%" height="15" fill="rgb(243,34,48)" fg:x="398" fg:w="1"/><text x="80.4919%" y="526.50"></text></g><g><title>_simple_new (pandas/core/indexes/base.py:648) (1 samples, 0.20%)</title><rect x="80.2419%" y="532" width="0.2016%" height="15" fill="rgb(239,11,44)" fg:x="398" fg:w="1"/><text x="80.4919%" y="542.50"></text></g><g><title><lambda> (pandas/core/internals/managers.py:2212) (1 samples, 0.20%)</title><rect x="80.4435%" y="580" width="0.2016%" height="15" fill="rgb(231,98,35)" fg:x="399" fg:w="1"/><text x="80.6935%" y="590.50"></text></g><g><title>_consolidate_key (pandas/core/internals/blocks.py:198) (1 samples, 0.20%)</title><rect x="80.4435%" y="596" width="0.2016%" height="15" fill="rgb(233,28,25)" fg:x="399" fg:w="1"/><text x="80.6935%" y="606.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (5 samples, 1.01%)</title><rect x="80.4435%" y="548" width="1.0081%" height="15" fill="rgb(234,123,11)" fg:x="399" fg:w="5"/><text x="80.6935%" y="558.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (5 samples, 1.01%)</title><rect x="80.4435%" y="564" width="1.0081%" height="15" fill="rgb(220,69,3)" fg:x="399" fg:w="5"/><text x="80.6935%" y="574.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (4 samples, 0.81%)</title><rect x="80.6452%" y="580" width="0.8065%" height="15" fill="rgb(214,64,36)" fg:x="400" fg:w="4"/><text x="80.8952%" y="590.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (2 samples, 0.40%)</title><rect x="81.0484%" y="596" width="0.4032%" height="15" fill="rgb(211,138,32)" fg:x="402" fg:w="2"/><text x="81.2984%" y="606.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (6 samples, 1.21%)</title><rect x="80.4435%" y="500" width="1.2097%" height="15" fill="rgb(213,118,47)" fg:x="399" fg:w="6"/><text x="80.6935%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (6 samples, 1.21%)</title><rect x="80.4435%" y="516" width="1.2097%" height="15" fill="rgb(243,124,49)" fg:x="399" fg:w="6"/><text x="80.6935%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (6 samples, 1.21%)</title><rect x="80.4435%" y="532" width="1.2097%" height="15" fill="rgb(221,30,28)" fg:x="399" fg:w="6"/><text x="80.6935%" y="542.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (1 samples, 0.20%)</title><rect x="81.4516%" y="548" width="0.2016%" height="15" fill="rgb(246,37,13)" fg:x="404" fg:w="1"/><text x="81.7016%" y="558.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (1 samples, 0.20%)</title><rect x="81.4516%" y="564" width="0.2016%" height="15" fill="rgb(249,66,14)" fg:x="404" fg:w="1"/><text x="81.7016%" y="574.50"></text></g><g><title><genexpr> (dask/core.py:127) (13 samples, 2.62%)</title><rect x="80.4435%" y="404" width="2.6210%" height="15" fill="rgb(213,166,5)" fg:x="399" fg:w="13"/><text x="80.6935%" y="414.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="80.4435%" y="420" width="2.6210%" height="15" fill="rgb(221,66,24)" fg:x="399" fg:w="13"/><text x="80.6935%" y="430.50">_e..</text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (13 samples, 2.62%)</title><rect x="80.4435%" y="436" width="2.6210%" height="15" fill="rgb(210,132,17)" fg:x="399" fg:w="13"/><text x="80.6935%" y="446.50">__..</text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (13 samples, 2.62%)</title><rect x="80.4435%" y="452" width="2.6210%" height="15" fill="rgb(243,202,5)" fg:x="399" fg:w="13"/><text x="80.6935%" y="462.50">ap..</text></g><g><title>f (qarray/df.py:105) (13 samples, 2.62%)</title><rect x="80.4435%" y="468" width="2.6210%" height="15" fill="rgb(233,70,48)" fg:x="399" fg:w="13"/><text x="80.6935%" y="478.50">f ..</text></g><g><title>to_pd (qarray/df.py:72) (13 samples, 2.62%)</title><rect x="80.4435%" y="484" width="2.6210%" height="15" fill="rgb(238,41,26)" fg:x="399" fg:w="13"/><text x="80.6935%" y="494.50">to..</text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 1.41%)</title><rect x="81.6532%" y="500" width="1.4113%" height="15" fill="rgb(241,19,31)" fg:x="405" fg:w="7"/><text x="81.9032%" y="510.50"></text></g><g><title>values (xarray/core/dataarray.py:750) (1 samples, 0.20%)</title><rect x="82.8629%" y="516" width="0.2016%" height="15" fill="rgb(214,76,10)" fg:x="411" fg:w="1"/><text x="83.1129%" y="526.50"></text></g><g><title>values (xarray/core/variable.py:613) (1 samples, 0.20%)</title><rect x="82.8629%" y="532" width="0.2016%" height="15" fill="rgb(254,202,22)" fg:x="411" fg:w="1"/><text x="83.1129%" y="542.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (1 samples, 0.20%)</title><rect x="82.8629%" y="548" width="0.2016%" height="15" fill="rgb(214,72,24)" fg:x="411" fg:w="1"/><text x="83.1129%" y="558.50"></text></g><g><title><genexpr> (dask/core.py:127) (14 samples, 2.82%)</title><rect x="80.4435%" y="276" width="2.8226%" height="15" fill="rgb(221,92,46)" fg:x="399" fg:w="14"/><text x="80.6935%" y="286.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 2.82%)</title><rect x="80.4435%" y="292" width="2.8226%" height="15" fill="rgb(246,13,50)" fg:x="399" fg:w="14"/><text x="80.6935%" y="302.50">_e..</text></g><g><title><listcomp> (dask/core.py:121) (14 samples, 2.82%)</title><rect x="80.4435%" y="308" width="2.8226%" height="15" fill="rgb(240,165,38)" fg:x="399" fg:w="14"/><text x="80.6935%" y="318.50"><l..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 2.82%)</title><rect x="80.4435%" y="324" width="2.8226%" height="15" fill="rgb(241,24,51)" fg:x="399" fg:w="14"/><text x="80.6935%" y="334.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (14 samples, 2.82%)</title><rect x="80.4435%" y="340" width="2.8226%" height="15" fill="rgb(227,51,44)" fg:x="399" fg:w="14"/><text x="80.6935%" y="350.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 2.82%)</title><rect x="80.4435%" y="356" width="2.8226%" height="15" fill="rgb(231,121,3)" fg:x="399" fg:w="14"/><text x="80.6935%" y="366.50">_e..</text></g><g><title><genexpr> (dask/core.py:127) (14 samples, 2.82%)</title><rect x="80.4435%" y="372" width="2.8226%" height="15" fill="rgb(245,3,41)" fg:x="399" fg:w="14"/><text x="80.6935%" y="382.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (14 samples, 2.82%)</title><rect x="80.4435%" y="388" width="2.8226%" height="15" fill="rgb(214,13,26)" fg:x="399" fg:w="14"/><text x="80.6935%" y="398.50">_e..</text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (1 samples, 0.20%)</title><rect x="83.0645%" y="404" width="0.2016%" height="15" fill="rgb(252,75,11)" fg:x="412" fg:w="1"/><text x="83.3145%" y="414.50"></text></g><g><title>_take_with_is_copy (pandas/core/generic.py:4077) (1 samples, 0.20%)</title><rect x="83.0645%" y="420" width="0.2016%" height="15" fill="rgb(218,226,17)" fg:x="412" fg:w="1"/><text x="83.3145%" y="430.50"></text></g><g><title>take (pandas/core/generic.py:3962) (1 samples, 0.20%)</title><rect x="83.0645%" y="436" width="0.2016%" height="15" fill="rgb(248,89,38)" fg:x="412" fg:w="1"/><text x="83.3145%" y="446.50"></text></g><g><title>take (pandas/core/internals/managers.py:852) (1 samples, 0.20%)</title><rect x="83.0645%" y="452" width="0.2016%" height="15" fill="rgb(237,73,46)" fg:x="412" fg:w="1"/><text x="83.3145%" y="462.50"></text></g><g><title>reindex_indexer (pandas/core/internals/managers.py:606) (1 samples, 0.20%)</title><rect x="83.0645%" y="468" width="0.2016%" height="15" fill="rgb(242,78,33)" fg:x="412" fg:w="1"/><text x="83.3145%" y="478.50"></text></g><g><title>_slice_take_blocks_ax0 (pandas/core/internals/managers.py:691) (1 samples, 0.20%)</title><rect x="83.0645%" y="484" width="0.2016%" height="15" fill="rgb(235,60,3)" fg:x="412" fg:w="1"/><text x="83.3145%" y="494.50"></text></g><g><title>take_nd (pandas/core/internals/blocks.py:1041) (1 samples, 0.20%)</title><rect x="83.0645%" y="500" width="0.2016%" height="15" fill="rgb(216,172,19)" fg:x="412" fg:w="1"/><text x="83.3145%" y="510.50"></text></g><g><title>take_nd (pandas/core/array_algos/take.py:59) (1 samples, 0.20%)</title><rect x="83.0645%" y="516" width="0.2016%" height="15" fill="rgb(227,6,42)" fg:x="412" fg:w="1"/><text x="83.3145%" y="526.50"></text></g><g><title>_take_nd_ndarray (pandas/core/array_algos/take.py:121) (1 samples, 0.20%)</title><rect x="83.0645%" y="532" width="0.2016%" height="15" fill="rgb(223,207,42)" fg:x="412" fg:w="1"/><text x="83.3145%" y="542.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (7 samples, 1.41%)</title><rect x="83.4677%" y="436" width="1.4113%" height="15" fill="rgb(246,138,30)" fg:x="414" fg:w="7"/><text x="83.7177%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (7 samples, 1.41%)</title><rect x="83.4677%" y="452" width="1.4113%" height="15" fill="rgb(251,199,47)" fg:x="414" fg:w="7"/><text x="83.7177%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (7 samples, 1.41%)</title><rect x="83.4677%" y="468" width="1.4113%" height="15" fill="rgb(228,218,44)" fg:x="414" fg:w="7"/><text x="83.7177%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.20%)</title><rect x="84.8790%" y="484" width="0.2016%" height="15" fill="rgb(220,68,6)" fg:x="421" fg:w="1"/><text x="85.1290%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.20%)</title><rect x="84.8790%" y="500" width="0.2016%" height="15" fill="rgb(240,60,26)" fg:x="421" fg:w="1"/><text x="85.1290%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.20%)</title><rect x="84.8790%" y="516" width="0.2016%" height="15" fill="rgb(211,200,19)" fg:x="421" fg:w="1"/><text x="85.1290%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.20%)</title><rect x="84.8790%" y="532" width="0.2016%" height="15" fill="rgb(242,145,30)" fg:x="421" fg:w="1"/><text x="85.1290%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.20%)</title><rect x="84.8790%" y="548" width="0.2016%" height="15" fill="rgb(225,64,13)" fg:x="421" fg:w="1"/><text x="85.1290%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.20%)</title><rect x="84.8790%" y="564" width="0.2016%" height="15" fill="rgb(218,103,35)" fg:x="421" fg:w="1"/><text x="85.1290%" y="574.50"></text></g><g><title>thread (0x30A4CA000) (24 samples, 4.84%)</title><rect x="80.4435%" y="68" width="4.8387%" height="15" fill="rgb(216,93,46)" fg:x="399" fg:w="24"/><text x="80.6935%" y="78.50">thread..</text></g><g><title>_bootstrap (threading.py:923) (24 samples, 4.84%)</title><rect x="80.4435%" y="84" width="4.8387%" height="15" fill="rgb(225,159,27)" fg:x="399" fg:w="24"/><text x="80.6935%" y="94.50">_boots..</text></g><g><title>_bootstrap_inner (threading.py:963) (24 samples, 4.84%)</title><rect x="80.4435%" y="100" width="4.8387%" height="15" fill="rgb(225,204,11)" fg:x="399" fg:w="24"/><text x="80.6935%" y="110.50">_boots..</text></g><g><title>run (threading.py:906) (24 samples, 4.84%)</title><rect x="80.4435%" y="116" width="4.8387%" height="15" fill="rgb(205,56,4)" fg:x="399" fg:w="24"/><text x="80.6935%" y="126.50">run (t..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (24 samples, 4.84%)</title><rect x="80.4435%" y="132" width="4.8387%" height="15" fill="rgb(206,6,35)" fg:x="399" fg:w="24"/><text x="80.6935%" y="142.50">_worke..</text></g><g><title>run (concurrent/futures/thread.py:53) (24 samples, 4.84%)</title><rect x="80.4435%" y="148" width="4.8387%" height="15" fill="rgb(247,73,52)" fg:x="399" fg:w="24"/><text x="80.6935%" y="158.50">run (c..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (24 samples, 4.84%)</title><rect x="80.4435%" y="164" width="4.8387%" height="15" fill="rgb(246,97,4)" fg:x="399" fg:w="24"/><text x="80.6935%" y="174.50">batch_..</text></g><g><title><listcomp> (dask/local.py:239) (24 samples, 4.84%)</title><rect x="80.4435%" y="180" width="4.8387%" height="15" fill="rgb(212,37,15)" fg:x="399" fg:w="24"/><text x="80.6935%" y="190.50"><listc..</text></g><g><title>execute_task (dask/local.py:215) (24 samples, 4.84%)</title><rect x="80.4435%" y="196" width="4.8387%" height="15" fill="rgb(208,130,40)" fg:x="399" fg:w="24"/><text x="80.6935%" y="206.50">execut..</text></g><g><title>_execute_task (dask/core.py:90) (24 samples, 4.84%)</title><rect x="80.4435%" y="212" width="4.8387%" height="15" fill="rgb(236,55,29)" fg:x="399" fg:w="24"/><text x="80.6935%" y="222.50">_execu..</text></g><g><title>__call__ (dask/optimization.py:992) (24 samples, 4.84%)</title><rect x="80.4435%" y="228" width="4.8387%" height="15" fill="rgb(209,156,45)" fg:x="399" fg:w="24"/><text x="80.6935%" y="238.50">__call..</text></g><g><title>get (dask/core.py:136) (24 samples, 4.84%)</title><rect x="80.4435%" y="244" width="4.8387%" height="15" fill="rgb(249,107,4)" fg:x="399" fg:w="24"/><text x="80.6935%" y="254.50">get (d..</text></g><g><title>_execute_task (dask/core.py:90) (24 samples, 4.84%)</title><rect x="80.4435%" y="260" width="4.8387%" height="15" fill="rgb(227,7,13)" fg:x="399" fg:w="24"/><text x="80.6935%" y="270.50">_execu..</text></g><g><title>apply (dask/utils.py:46) (10 samples, 2.02%)</title><rect x="83.2661%" y="276" width="2.0161%" height="15" fill="rgb(250,129,14)" fg:x="413" fg:w="10"/><text x="83.5161%" y="286.50">a..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (10 samples, 2.02%)</title><rect x="83.2661%" y="292" width="2.0161%" height="15" fill="rgb(229,92,13)" fg:x="413" fg:w="10"/><text x="83.5161%" y="302.50">_..</text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (10 samples, 2.02%)</title><rect x="83.2661%" y="308" width="2.0161%" height="15" fill="rgb(245,98,39)" fg:x="413" fg:w="10"/><text x="83.5161%" y="318.50">_..</text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (10 samples, 2.02%)</title><rect x="83.2661%" y="324" width="2.0161%" height="15" fill="rgb(234,135,48)" fg:x="413" fg:w="10"/><text x="83.5161%" y="334.50"><..</text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (10 samples, 2.02%)</title><rect x="83.2661%" y="340" width="2.0161%" height="15" fill="rgb(230,98,28)" fg:x="413" fg:w="10"/><text x="83.5161%" y="350.50">s..</text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (10 samples, 2.02%)</title><rect x="83.2661%" y="356" width="2.0161%" height="15" fill="rgb(223,121,0)" fg:x="413" fg:w="10"/><text x="83.5161%" y="366.50">_..</text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (9 samples, 1.81%)</title><rect x="83.4677%" y="372" width="1.8145%" height="15" fill="rgb(234,173,33)" fg:x="414" fg:w="9"/><text x="83.7177%" y="382.50">_..</text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (9 samples, 1.81%)</title><rect x="83.4677%" y="388" width="1.8145%" height="15" fill="rgb(245,47,8)" fg:x="414" fg:w="9"/><text x="83.7177%" y="398.50">g..</text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (9 samples, 1.81%)</title><rect x="83.4677%" y="404" width="1.8145%" height="15" fill="rgb(205,17,20)" fg:x="414" fg:w="9"/><text x="83.7177%" y="414.50">a..</text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (9 samples, 1.81%)</title><rect x="83.4677%" y="420" width="1.8145%" height="15" fill="rgb(232,151,16)" fg:x="414" fg:w="9"/><text x="83.7177%" y="430.50">_..</text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (2 samples, 0.40%)</title><rect x="84.8790%" y="436" width="0.4032%" height="15" fill="rgb(208,30,32)" fg:x="421" fg:w="2"/><text x="85.1290%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.40%)</title><rect x="84.8790%" y="452" width="0.4032%" height="15" fill="rgb(254,26,3)" fg:x="421" fg:w="2"/><text x="85.1290%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.40%)</title><rect x="84.8790%" y="468" width="0.4032%" height="15" fill="rgb(240,177,30)" fg:x="421" fg:w="2"/><text x="85.1290%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.20%)</title><rect x="85.0806%" y="484" width="0.2016%" height="15" fill="rgb(248,76,44)" fg:x="422" fg:w="1"/><text x="85.3306%" y="494.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="85.2823%" y="276" width="1.6129%" height="15" fill="rgb(241,186,54)" fg:x="423" fg:w="8"/><text x="85.5323%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="85.2823%" y="292" width="1.6129%" height="15" fill="rgb(249,171,29)" fg:x="423" fg:w="8"/><text x="85.5323%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.61%)</title><rect x="85.2823%" y="308" width="1.6129%" height="15" fill="rgb(237,151,44)" fg:x="423" fg:w="8"/><text x="85.5323%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="85.2823%" y="324" width="1.6129%" height="15" fill="rgb(228,174,30)" fg:x="423" fg:w="8"/><text x="85.5323%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="85.2823%" y="340" width="1.6129%" height="15" fill="rgb(252,14,37)" fg:x="423" fg:w="8"/><text x="85.5323%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="85.2823%" y="356" width="1.6129%" height="15" fill="rgb(207,111,40)" fg:x="423" fg:w="8"/><text x="85.5323%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="85.2823%" y="372" width="1.6129%" height="15" fill="rgb(248,171,54)" fg:x="423" fg:w="8"/><text x="85.5323%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="85.2823%" y="388" width="1.6129%" height="15" fill="rgb(211,127,2)" fg:x="423" fg:w="8"/><text x="85.5323%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="85.2823%" y="404" width="1.6129%" height="15" fill="rgb(236,87,47)" fg:x="423" fg:w="8"/><text x="85.5323%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="85.2823%" y="420" width="1.6129%" height="15" fill="rgb(223,190,45)" fg:x="423" fg:w="8"/><text x="85.5323%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.61%)</title><rect x="85.2823%" y="436" width="1.6129%" height="15" fill="rgb(215,5,16)" fg:x="423" fg:w="8"/><text x="85.5323%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.61%)</title><rect x="85.2823%" y="452" width="1.6129%" height="15" fill="rgb(252,82,33)" fg:x="423" fg:w="8"/><text x="85.5323%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.61%)</title><rect x="85.2823%" y="468" width="1.6129%" height="15" fill="rgb(247,213,44)" fg:x="423" fg:w="8"/><text x="85.5323%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.61%)</title><rect x="85.2823%" y="484" width="1.6129%" height="15" fill="rgb(205,196,44)" fg:x="423" fg:w="8"/><text x="85.5323%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.61%)</title><rect x="85.2823%" y="500" width="1.6129%" height="15" fill="rgb(237,96,54)" fg:x="423" fg:w="8"/><text x="85.5323%" y="510.50"></text></g><g><title>__call__ (dask/optimization.py:992) (11 samples, 2.22%)</title><rect x="85.2823%" y="228" width="2.2177%" height="15" fill="rgb(230,113,34)" fg:x="423" fg:w="11"/><text x="85.5323%" y="238.50">_..</text></g><g><title>get (dask/core.py:136) (11 samples, 2.22%)</title><rect x="85.2823%" y="244" width="2.2177%" height="15" fill="rgb(221,224,12)" fg:x="423" fg:w="11"/><text x="85.5323%" y="254.50">g..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 2.22%)</title><rect x="85.2823%" y="260" width="2.2177%" height="15" fill="rgb(219,112,44)" fg:x="423" fg:w="11"/><text x="85.5323%" y="270.50">_..</text></g><g><title>apply (dask/utils.py:46) (3 samples, 0.60%)</title><rect x="86.8952%" y="276" width="0.6048%" height="15" fill="rgb(210,31,13)" fg:x="431" fg:w="3"/><text x="87.1452%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (3 samples, 0.60%)</title><rect x="86.8952%" y="292" width="0.6048%" height="15" fill="rgb(230,25,16)" fg:x="431" fg:w="3"/><text x="87.1452%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (3 samples, 0.60%)</title><rect x="86.8952%" y="308" width="0.6048%" height="15" fill="rgb(246,108,53)" fg:x="431" fg:w="3"/><text x="87.1452%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (3 samples, 0.60%)</title><rect x="86.8952%" y="324" width="0.6048%" height="15" fill="rgb(241,172,50)" fg:x="431" fg:w="3"/><text x="87.1452%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (3 samples, 0.60%)</title><rect x="86.8952%" y="340" width="0.6048%" height="15" fill="rgb(235,141,10)" fg:x="431" fg:w="3"/><text x="87.1452%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (3 samples, 0.60%)</title><rect x="86.8952%" y="356" width="0.6048%" height="15" fill="rgb(220,174,43)" fg:x="431" fg:w="3"/><text x="87.1452%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (3 samples, 0.60%)</title><rect x="86.8952%" y="372" width="0.6048%" height="15" fill="rgb(215,181,40)" fg:x="431" fg:w="3"/><text x="87.1452%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (3 samples, 0.60%)</title><rect x="86.8952%" y="388" width="0.6048%" height="15" fill="rgb(230,97,2)" fg:x="431" fg:w="3"/><text x="87.1452%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (3 samples, 0.60%)</title><rect x="86.8952%" y="404" width="0.6048%" height="15" fill="rgb(211,25,27)" fg:x="431" fg:w="3"/><text x="87.1452%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (3 samples, 0.60%)</title><rect x="86.8952%" y="420" width="0.6048%" height="15" fill="rgb(230,87,26)" fg:x="431" fg:w="3"/><text x="87.1452%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (3 samples, 0.60%)</title><rect x="86.8952%" y="436" width="0.6048%" height="15" fill="rgb(227,160,17)" fg:x="431" fg:w="3"/><text x="87.1452%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (3 samples, 0.60%)</title><rect x="86.8952%" y="452" width="0.6048%" height="15" fill="rgb(244,85,34)" fg:x="431" fg:w="3"/><text x="87.1452%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (3 samples, 0.60%)</title><rect x="86.8952%" y="468" width="0.6048%" height="15" fill="rgb(207,70,0)" fg:x="431" fg:w="3"/><text x="87.1452%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (3 samples, 0.60%)</title><rect x="86.8952%" y="484" width="0.6048%" height="15" fill="rgb(223,129,7)" fg:x="431" fg:w="3"/><text x="87.1452%" y="494.50"></text></g><g><title>_agg_finalize (dask/dataframe/groupby.py:1235) (1 samples, 0.20%)</title><rect x="87.5000%" y="244" width="0.2016%" height="15" fill="rgb(246,105,7)" fg:x="434" fg:w="1"/><text x="87.7500%" y="254.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (1 samples, 0.20%)</title><rect x="87.5000%" y="260" width="0.2016%" height="15" fill="rgb(215,154,42)" fg:x="434" fg:w="1"/><text x="87.7500%" y="270.50"></text></g><g><title>_apply_func_to_columns (dask/dataframe/groupby.py:1279) (1 samples, 0.20%)</title><rect x="87.5000%" y="276" width="0.2016%" height="15" fill="rgb(220,215,30)" fg:x="434" fg:w="1"/><text x="87.7500%" y="286.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:491) (1 samples, 0.20%)</title><rect x="87.5000%" y="292" width="0.2016%" height="15" fill="rgb(228,81,51)" fg:x="434" fg:w="1"/><text x="87.7500%" y="302.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (1 samples, 0.20%)</title><rect x="87.5000%" y="308" width="0.2016%" height="15" fill="rgb(247,71,54)" fg:x="434" fg:w="1"/><text x="87.7500%" y="318.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (1 samples, 0.20%)</title><rect x="87.5000%" y="324" width="0.2016%" height="15" fill="rgb(234,176,34)" fg:x="434" fg:w="1"/><text x="87.7500%" y="334.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (1 samples, 0.20%)</title><rect x="87.5000%" y="340" width="0.2016%" height="15" fill="rgb(241,103,54)" fg:x="434" fg:w="1"/><text x="87.7500%" y="350.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (1 samples, 0.20%)</title><rect x="87.5000%" y="356" width="0.2016%" height="15" fill="rgb(228,22,34)" fg:x="434" fg:w="1"/><text x="87.7500%" y="366.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (1 samples, 0.20%)</title><rect x="87.5000%" y="372" width="0.2016%" height="15" fill="rgb(241,179,48)" fg:x="434" fg:w="1"/><text x="87.7500%" y="382.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (1 samples, 0.20%)</title><rect x="87.5000%" y="388" width="0.2016%" height="15" fill="rgb(235,167,37)" fg:x="434" fg:w="1"/><text x="87.7500%" y="398.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (1 samples, 0.20%)</title><rect x="87.5000%" y="404" width="0.2016%" height="15" fill="rgb(213,109,30)" fg:x="434" fg:w="1"/><text x="87.7500%" y="414.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (1 samples, 0.20%)</title><rect x="87.5000%" y="420" width="0.2016%" height="15" fill="rgb(222,172,16)" fg:x="434" fg:w="1"/><text x="87.7500%" y="430.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (1 samples, 0.20%)</title><rect x="87.5000%" y="436" width="0.2016%" height="15" fill="rgb(233,192,5)" fg:x="434" fg:w="1"/><text x="87.7500%" y="446.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.20%)</title><rect x="87.5000%" y="452" width="0.2016%" height="15" fill="rgb(247,189,41)" fg:x="434" fg:w="1"/><text x="87.7500%" y="462.50"></text></g><g><title>thread (0x30B4CD000) (17 samples, 3.43%)</title><rect x="85.2823%" y="68" width="3.4274%" height="15" fill="rgb(218,134,47)" fg:x="423" fg:w="17"/><text x="85.5323%" y="78.50">thr..</text></g><g><title>_bootstrap (threading.py:923) (17 samples, 3.43%)</title><rect x="85.2823%" y="84" width="3.4274%" height="15" fill="rgb(216,29,3)" fg:x="423" fg:w="17"/><text x="85.5323%" y="94.50">_bo..</text></g><g><title>_bootstrap_inner (threading.py:963) (17 samples, 3.43%)</title><rect x="85.2823%" y="100" width="3.4274%" height="15" fill="rgb(246,140,12)" fg:x="423" fg:w="17"/><text x="85.5323%" y="110.50">_bo..</text></g><g><title>run (threading.py:906) (17 samples, 3.43%)</title><rect x="85.2823%" y="116" width="3.4274%" height="15" fill="rgb(230,136,11)" fg:x="423" fg:w="17"/><text x="85.5323%" y="126.50">run..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (17 samples, 3.43%)</title><rect x="85.2823%" y="132" width="3.4274%" height="15" fill="rgb(247,22,47)" fg:x="423" fg:w="17"/><text x="85.5323%" y="142.50">_wo..</text></g><g><title>run (concurrent/futures/thread.py:53) (17 samples, 3.43%)</title><rect x="85.2823%" y="148" width="3.4274%" height="15" fill="rgb(218,84,22)" fg:x="423" fg:w="17"/><text x="85.5323%" y="158.50">run..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (17 samples, 3.43%)</title><rect x="85.2823%" y="164" width="3.4274%" height="15" fill="rgb(216,87,39)" fg:x="423" fg:w="17"/><text x="85.5323%" y="174.50">bat..</text></g><g><title><listcomp> (dask/local.py:239) (17 samples, 3.43%)</title><rect x="85.2823%" y="180" width="3.4274%" height="15" fill="rgb(221,178,8)" fg:x="423" fg:w="17"/><text x="85.5323%" y="190.50"><li..</text></g><g><title>execute_task (dask/local.py:215) (17 samples, 3.43%)</title><rect x="85.2823%" y="196" width="3.4274%" height="15" fill="rgb(230,42,11)" fg:x="423" fg:w="17"/><text x="85.5323%" y="206.50">exe..</text></g><g><title>_execute_task (dask/core.py:90) (17 samples, 3.43%)</title><rect x="85.2823%" y="212" width="3.4274%" height="15" fill="rgb(237,229,4)" fg:x="423" fg:w="17"/><text x="85.5323%" y="222.50">_ex..</text></g><g><title>pipe (toolz/functoolz.py:607) (6 samples, 1.21%)</title><rect x="87.5000%" y="228" width="1.2097%" height="15" fill="rgb(222,31,33)" fg:x="434" fg:w="6"/><text x="87.7500%" y="238.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (5 samples, 1.01%)</title><rect x="87.7016%" y="244" width="1.0081%" height="15" fill="rgb(210,17,39)" fg:x="435" fg:w="5"/><text x="87.9516%" y="254.50"></text></g><g><title>_groupby_raise_unaligned (dask/dataframe/groupby.py:156) (4 samples, 0.81%)</title><rect x="87.9032%" y="260" width="0.8065%" height="15" fill="rgb(244,93,20)" fg:x="436" fg:w="4"/><text x="88.1532%" y="270.50"></text></g><g><title>groupby (pandas/core/frame.py:8730) (4 samples, 0.81%)</title><rect x="87.9032%" y="276" width="0.8065%" height="15" fill="rgb(210,40,47)" fg:x="436" fg:w="4"/><text x="88.1532%" y="286.50"></text></g><g><title>__init__ (pandas/core/groupby/groupby.py:1241) (4 samples, 0.81%)</title><rect x="87.9032%" y="292" width="0.8065%" height="15" fill="rgb(239,211,47)" fg:x="436" fg:w="4"/><text x="88.1532%" y="302.50"></text></g><g><title>get_grouper (pandas/core/groupby/grouper.py:812) (3 samples, 0.60%)</title><rect x="88.1048%" y="308" width="0.6048%" height="15" fill="rgb(251,223,49)" fg:x="437" fg:w="3"/><text x="88.3548%" y="318.50"></text></g><g><title>__init__ (pandas/core/groupby/grouper.py:527) (3 samples, 0.60%)</title><rect x="88.1048%" y="324" width="0.6048%" height="15" fill="rgb(221,149,5)" fg:x="437" fg:w="3"/><text x="88.3548%" y="334.50"></text></g><g><title>get_level_values (pandas/core/indexes/multi.py:1661) (3 samples, 0.60%)</title><rect x="88.1048%" y="340" width="0.6048%" height="15" fill="rgb(219,224,51)" fg:x="437" fg:w="3"/><text x="88.3548%" y="350.50"></text></g><g><title>_get_level_values (pandas/core/indexes/multi.py:1636) (3 samples, 0.60%)</title><rect x="88.1048%" y="356" width="0.6048%" height="15" fill="rgb(223,7,8)" fg:x="437" fg:w="3"/><text x="88.3548%" y="366.50"></text></g><g><title>take_nd (pandas/core/array_algos/take.py:59) (2 samples, 0.40%)</title><rect x="88.3065%" y="372" width="0.4032%" height="15" fill="rgb(241,217,22)" fg:x="438" fg:w="2"/><text x="88.5565%" y="382.50"></text></g><g><title>_take_nd_ndarray (pandas/core/array_algos/take.py:121) (2 samples, 0.40%)</title><rect x="88.3065%" y="388" width="0.4032%" height="15" fill="rgb(248,209,0)" fg:x="438" fg:w="2"/><text x="88.5565%" y="398.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (3 samples, 0.60%)</title><rect x="88.7097%" y="500" width="0.6048%" height="15" fill="rgb(217,205,4)" fg:x="440" fg:w="3"/><text x="88.9597%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (3 samples, 0.60%)</title><rect x="88.7097%" y="516" width="0.6048%" height="15" fill="rgb(228,124,39)" fg:x="440" fg:w="3"/><text x="88.9597%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (3 samples, 0.60%)</title><rect x="88.7097%" y="532" width="0.6048%" height="15" fill="rgb(250,116,42)" fg:x="440" fg:w="3"/><text x="88.9597%" y="542.50"></text></g><g><title>_form_blocks (pandas/core/internals/managers.py:2137) (3 samples, 0.60%)</title><rect x="88.7097%" y="548" width="0.6048%" height="15" fill="rgb(223,202,9)" fg:x="440" fg:w="3"/><text x="88.9597%" y="558.50"></text></g><g><title>_stack_arrays (pandas/core/internals/managers.py:2194) (3 samples, 0.60%)</title><rect x="88.7097%" y="564" width="0.6048%" height="15" fill="rgb(242,222,40)" fg:x="440" fg:w="3"/><text x="88.9597%" y="574.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="88.7097%" y="404" width="1.6129%" height="15" fill="rgb(229,99,46)" fg:x="440" fg:w="8"/><text x="88.9597%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="88.7097%" y="420" width="1.6129%" height="15" fill="rgb(225,56,46)" fg:x="440" fg:w="8"/><text x="88.9597%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.61%)</title><rect x="88.7097%" y="436" width="1.6129%" height="15" fill="rgb(227,94,5)" fg:x="440" fg:w="8"/><text x="88.9597%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.61%)</title><rect x="88.7097%" y="452" width="1.6129%" height="15" fill="rgb(205,112,38)" fg:x="440" fg:w="8"/><text x="88.9597%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.61%)</title><rect x="88.7097%" y="468" width="1.6129%" height="15" fill="rgb(231,133,46)" fg:x="440" fg:w="8"/><text x="88.9597%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.61%)</title><rect x="88.7097%" y="484" width="1.6129%" height="15" fill="rgb(217,16,9)" fg:x="440" fg:w="8"/><text x="88.9597%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (5 samples, 1.01%)</title><rect x="89.3145%" y="500" width="1.0081%" height="15" fill="rgb(249,173,9)" fg:x="443" fg:w="5"/><text x="89.5645%" y="510.50"></text></g><g><title>_get_indexer_strict (pandas/core/indexes/base.py:6100) (1 samples, 0.20%)</title><rect x="90.3226%" y="420" width="0.2016%" height="15" fill="rgb(205,163,53)" fg:x="448" fg:w="1"/><text x="90.5726%" y="430.50"></text></g><g><title>reindex (pandas/core/indexes/base.py:4327) (1 samples, 0.20%)</title><rect x="90.3226%" y="436" width="0.2016%" height="15" fill="rgb(217,54,41)" fg:x="448" fg:w="1"/><text x="90.5726%" y="446.50"></text></g><g><title>get_indexer (pandas/core/indexes/base.py:3858) (1 samples, 0.20%)</title><rect x="90.3226%" y="452" width="0.2016%" height="15" fill="rgb(228,216,12)" fg:x="448" fg:w="1"/><text x="90.5726%" y="462.50"></text></g><g><title>_should_compare (pandas/core/indexes/base.py:6320) (1 samples, 0.20%)</title><rect x="90.3226%" y="468" width="0.2016%" height="15" fill="rgb(244,228,15)" fg:x="448" fg:w="1"/><text x="90.5726%" y="478.50"></text></g><g><title>_is_comparable_dtype (pandas/core/indexes/base.py:6342) (1 samples, 0.20%)</title><rect x="90.3226%" y="484" width="0.2016%" height="15" fill="rgb(221,176,53)" fg:x="448" fg:w="1"/><text x="90.5726%" y="494.50"></text></g><g><title><genexpr> (dask/core.py:127) (18 samples, 3.63%)</title><rect x="88.7097%" y="340" width="3.6290%" height="15" fill="rgb(205,94,34)" fg:x="440" fg:w="18"/><text x="88.9597%" y="350.50"><gen..</text></g><g><title>_execute_task (dask/core.py:90) (18 samples, 3.63%)</title><rect x="88.7097%" y="356" width="3.6290%" height="15" fill="rgb(213,110,48)" fg:x="440" fg:w="18"/><text x="88.9597%" y="366.50">_exe..</text></g><g><title><genexpr> (dask/core.py:127) (18 samples, 3.63%)</title><rect x="88.7097%" y="372" width="3.6290%" height="15" fill="rgb(236,142,28)" fg:x="440" fg:w="18"/><text x="88.9597%" y="382.50"><gen..</text></g><g><title>_execute_task (dask/core.py:90) (18 samples, 3.63%)</title><rect x="88.7097%" y="388" width="3.6290%" height="15" fill="rgb(225,135,29)" fg:x="440" fg:w="18"/><text x="88.9597%" y="398.50">_exe..</text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (10 samples, 2.02%)</title><rect x="90.3226%" y="404" width="2.0161%" height="15" fill="rgb(252,45,31)" fg:x="448" fg:w="10"/><text x="90.5726%" y="414.50">_..</text></g><g><title>_take_with_is_copy (pandas/core/generic.py:4077) (9 samples, 1.81%)</title><rect x="90.5242%" y="420" width="1.8145%" height="15" fill="rgb(211,187,50)" fg:x="449" fg:w="9"/><text x="90.7742%" y="430.50">_..</text></g><g><title>take (pandas/core/generic.py:3962) (9 samples, 1.81%)</title><rect x="90.5242%" y="436" width="1.8145%" height="15" fill="rgb(229,109,7)" fg:x="449" fg:w="9"/><text x="90.7742%" y="446.50">t..</text></g><g><title>take (pandas/core/internals/managers.py:852) (9 samples, 1.81%)</title><rect x="90.5242%" y="452" width="1.8145%" height="15" fill="rgb(251,131,51)" fg:x="449" fg:w="9"/><text x="90.7742%" y="462.50">t..</text></g><g><title>reindex_indexer (pandas/core/internals/managers.py:606) (9 samples, 1.81%)</title><rect x="90.5242%" y="468" width="1.8145%" height="15" fill="rgb(251,180,35)" fg:x="449" fg:w="9"/><text x="90.7742%" y="478.50">r..</text></g><g><title>_slice_take_blocks_ax0 (pandas/core/internals/managers.py:691) (9 samples, 1.81%)</title><rect x="90.5242%" y="484" width="1.8145%" height="15" fill="rgb(211,46,32)" fg:x="449" fg:w="9"/><text x="90.7742%" y="494.50">_..</text></g><g><title>take_nd (pandas/core/internals/blocks.py:1041) (9 samples, 1.81%)</title><rect x="90.5242%" y="500" width="1.8145%" height="15" fill="rgb(248,123,17)" fg:x="449" fg:w="9"/><text x="90.7742%" y="510.50">t..</text></g><g><title>take_nd (pandas/core/array_algos/take.py:59) (9 samples, 1.81%)</title><rect x="90.5242%" y="516" width="1.8145%" height="15" fill="rgb(227,141,18)" fg:x="449" fg:w="9"/><text x="90.7742%" y="526.50">t..</text></g><g><title>_take_nd_ndarray (pandas/core/array_algos/take.py:121) (9 samples, 1.81%)</title><rect x="90.5242%" y="532" width="1.8145%" height="15" fill="rgb(216,102,9)" fg:x="449" fg:w="9"/><text x="90.7742%" y="542.50">_..</text></g><g><title>take_nd (pandas/core/array_algos/take.py:59) (1 samples, 0.20%)</title><rect x="92.3387%" y="436" width="0.2016%" height="15" fill="rgb(253,47,13)" fg:x="458" fg:w="1"/><text x="92.5887%" y="446.50"></text></g><g><title>_take_nd_ndarray (pandas/core/array_algos/take.py:121) (1 samples, 0.20%)</title><rect x="92.3387%" y="452" width="0.2016%" height="15" fill="rgb(226,93,23)" fg:x="458" fg:w="1"/><text x="92.5887%" y="462.50"></text></g><g><title><genexpr> (dask/core.py:127) (20 samples, 4.03%)</title><rect x="88.7097%" y="276" width="4.0323%" height="15" fill="rgb(247,104,17)" fg:x="440" fg:w="20"/><text x="88.9597%" y="286.50"><gen..</text></g><g><title>_execute_task (dask/core.py:90) (20 samples, 4.03%)</title><rect x="88.7097%" y="292" width="4.0323%" height="15" fill="rgb(233,203,26)" fg:x="440" fg:w="20"/><text x="88.9597%" y="302.50">_exe..</text></g><g><title><listcomp> (dask/core.py:121) (20 samples, 4.03%)</title><rect x="88.7097%" y="308" width="4.0323%" height="15" fill="rgb(244,98,49)" fg:x="440" fg:w="20"/><text x="88.9597%" y="318.50"><lis..</text></g><g><title>_execute_task (dask/core.py:90) (20 samples, 4.03%)</title><rect x="88.7097%" y="324" width="4.0323%" height="15" fill="rgb(235,134,22)" fg:x="440" fg:w="20"/><text x="88.9597%" y="334.50">_exe..</text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (2 samples, 0.40%)</title><rect x="92.3387%" y="340" width="0.4032%" height="15" fill="rgb(221,70,32)" fg:x="458" fg:w="2"/><text x="92.5887%" y="350.50"></text></g><g><title>_take_with_is_copy (pandas/core/generic.py:4077) (2 samples, 0.40%)</title><rect x="92.3387%" y="356" width="0.4032%" height="15" fill="rgb(238,15,50)" fg:x="458" fg:w="2"/><text x="92.5887%" y="366.50"></text></g><g><title>take (pandas/core/generic.py:3962) (2 samples, 0.40%)</title><rect x="92.3387%" y="372" width="0.4032%" height="15" fill="rgb(215,221,48)" fg:x="458" fg:w="2"/><text x="92.5887%" y="382.50"></text></g><g><title>take (pandas/core/internals/managers.py:852) (2 samples, 0.40%)</title><rect x="92.3387%" y="388" width="0.4032%" height="15" fill="rgb(236,73,3)" fg:x="458" fg:w="2"/><text x="92.5887%" y="398.50"></text></g><g><title>reindex_indexer (pandas/core/internals/managers.py:606) (2 samples, 0.40%)</title><rect x="92.3387%" y="404" width="0.4032%" height="15" fill="rgb(250,107,11)" fg:x="458" fg:w="2"/><text x="92.5887%" y="414.50"></text></g><g><title>_slice_take_blocks_ax0 (pandas/core/internals/managers.py:691) (2 samples, 0.40%)</title><rect x="92.3387%" y="420" width="0.4032%" height="15" fill="rgb(242,39,14)" fg:x="458" fg:w="2"/><text x="92.5887%" y="430.50"></text></g><g><title>take_nd (pandas/core/internals/blocks.py:1041) (1 samples, 0.20%)</title><rect x="92.5403%" y="436" width="0.2016%" height="15" fill="rgb(248,164,37)" fg:x="459" fg:w="1"/><text x="92.7903%" y="446.50"></text></g><g><title>fill_value (pandas/core/internals/blocks.py:226) (1 samples, 0.20%)</title><rect x="92.5403%" y="452" width="0.2016%" height="15" fill="rgb(217,60,12)" fg:x="459" fg:w="1"/><text x="92.7903%" y="462.50"></text></g><g><title>na_value_for_dtype (pandas/core/dtypes/missing.py:639) (1 samples, 0.20%)</title><rect x="92.5403%" y="468" width="0.2016%" height="15" fill="rgb(240,125,29)" fg:x="459" fg:w="1"/><text x="92.7903%" y="478.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (4 samples, 0.81%)</title><rect x="92.7419%" y="436" width="0.8065%" height="15" fill="rgb(208,207,28)" fg:x="460" fg:w="4"/><text x="92.9919%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (4 samples, 0.81%)</title><rect x="92.7419%" y="452" width="0.8065%" height="15" fill="rgb(209,159,27)" fg:x="460" fg:w="4"/><text x="92.9919%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (4 samples, 0.81%)</title><rect x="92.7419%" y="468" width="0.8065%" height="15" fill="rgb(251,176,53)" fg:x="460" fg:w="4"/><text x="92.9919%" y="478.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (6 samples, 1.21%)</title><rect x="92.7419%" y="308" width="1.2097%" height="15" fill="rgb(211,85,7)" fg:x="460" fg:w="6"/><text x="92.9919%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (6 samples, 1.21%)</title><rect x="92.7419%" y="324" width="1.2097%" height="15" fill="rgb(216,64,54)" fg:x="460" fg:w="6"/><text x="92.9919%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (6 samples, 1.21%)</title><rect x="92.7419%" y="340" width="1.2097%" height="15" fill="rgb(217,54,24)" fg:x="460" fg:w="6"/><text x="92.9919%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (6 samples, 1.21%)</title><rect x="92.7419%" y="356" width="1.2097%" height="15" fill="rgb(208,206,53)" fg:x="460" fg:w="6"/><text x="92.9919%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (6 samples, 1.21%)</title><rect x="92.7419%" y="372" width="1.2097%" height="15" fill="rgb(251,74,39)" fg:x="460" fg:w="6"/><text x="92.9919%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (6 samples, 1.21%)</title><rect x="92.7419%" y="388" width="1.2097%" height="15" fill="rgb(226,47,5)" fg:x="460" fg:w="6"/><text x="92.9919%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (6 samples, 1.21%)</title><rect x="92.7419%" y="404" width="1.2097%" height="15" fill="rgb(234,111,33)" fg:x="460" fg:w="6"/><text x="92.9919%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (6 samples, 1.21%)</title><rect x="92.7419%" y="420" width="1.2097%" height="15" fill="rgb(251,14,10)" fg:x="460" fg:w="6"/><text x="92.9919%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (2 samples, 0.40%)</title><rect x="93.5484%" y="436" width="0.4032%" height="15" fill="rgb(232,43,0)" fg:x="464" fg:w="2"/><text x="93.7984%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.40%)</title><rect x="93.5484%" y="452" width="0.4032%" height="15" fill="rgb(222,68,43)" fg:x="464" fg:w="2"/><text x="93.7984%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.40%)</title><rect x="93.5484%" y="468" width="0.4032%" height="15" fill="rgb(217,24,23)" fg:x="464" fg:w="2"/><text x="93.7984%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (2 samples, 0.40%)</title><rect x="93.5484%" y="484" width="0.4032%" height="15" fill="rgb(229,209,14)" fg:x="464" fg:w="2"/><text x="93.7984%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (2 samples, 0.40%)</title><rect x="93.5484%" y="500" width="0.4032%" height="15" fill="rgb(250,149,48)" fg:x="464" fg:w="2"/><text x="93.7984%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (2 samples, 0.40%)</title><rect x="93.5484%" y="516" width="0.4032%" height="15" fill="rgb(210,120,37)" fg:x="464" fg:w="2"/><text x="93.7984%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (2 samples, 0.40%)</title><rect x="93.5484%" y="532" width="0.4032%" height="15" fill="rgb(210,21,8)" fg:x="464" fg:w="2"/><text x="93.7984%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (2 samples, 0.40%)</title><rect x="93.5484%" y="548" width="0.4032%" height="15" fill="rgb(243,145,7)" fg:x="464" fg:w="2"/><text x="93.7984%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (2 samples, 0.40%)</title><rect x="93.5484%" y="564" width="0.4032%" height="15" fill="rgb(238,178,32)" fg:x="464" fg:w="2"/><text x="93.7984%" y="574.50"></text></g><g><title>thread (0x30C4D0000) (29 samples, 5.85%)</title><rect x="88.7097%" y="68" width="5.8468%" height="15" fill="rgb(222,4,10)" fg:x="440" fg:w="29"/><text x="88.9597%" y="78.50">thread ..</text></g><g><title>_bootstrap (threading.py:923) (29 samples, 5.85%)</title><rect x="88.7097%" y="84" width="5.8468%" height="15" fill="rgb(239,7,37)" fg:x="440" fg:w="29"/><text x="88.9597%" y="94.50">_bootst..</text></g><g><title>_bootstrap_inner (threading.py:963) (29 samples, 5.85%)</title><rect x="88.7097%" y="100" width="5.8468%" height="15" fill="rgb(215,31,37)" fg:x="440" fg:w="29"/><text x="88.9597%" y="110.50">_bootst..</text></g><g><title>run (threading.py:906) (29 samples, 5.85%)</title><rect x="88.7097%" y="116" width="5.8468%" height="15" fill="rgb(224,83,33)" fg:x="440" fg:w="29"/><text x="88.9597%" y="126.50">run (th..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (29 samples, 5.85%)</title><rect x="88.7097%" y="132" width="5.8468%" height="15" fill="rgb(239,55,3)" fg:x="440" fg:w="29"/><text x="88.9597%" y="142.50">_worker..</text></g><g><title>run (concurrent/futures/thread.py:53) (29 samples, 5.85%)</title><rect x="88.7097%" y="148" width="5.8468%" height="15" fill="rgb(247,92,11)" fg:x="440" fg:w="29"/><text x="88.9597%" y="158.50">run (co..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (29 samples, 5.85%)</title><rect x="88.7097%" y="164" width="5.8468%" height="15" fill="rgb(239,200,7)" fg:x="440" fg:w="29"/><text x="88.9597%" y="174.50">batch_e..</text></g><g><title><listcomp> (dask/local.py:239) (29 samples, 5.85%)</title><rect x="88.7097%" y="180" width="5.8468%" height="15" fill="rgb(227,115,8)" fg:x="440" fg:w="29"/><text x="88.9597%" y="190.50"><listco..</text></g><g><title>execute_task (dask/local.py:215) (29 samples, 5.85%)</title><rect x="88.7097%" y="196" width="5.8468%" height="15" fill="rgb(215,189,27)" fg:x="440" fg:w="29"/><text x="88.9597%" y="206.50">execute..</text></g><g><title>_execute_task (dask/core.py:90) (29 samples, 5.85%)</title><rect x="88.7097%" y="212" width="5.8468%" height="15" fill="rgb(251,216,39)" fg:x="440" fg:w="29"/><text x="88.9597%" y="222.50">_execut..</text></g><g><title>__call__ (dask/optimization.py:992) (29 samples, 5.85%)</title><rect x="88.7097%" y="228" width="5.8468%" height="15" fill="rgb(207,29,47)" fg:x="440" fg:w="29"/><text x="88.9597%" y="238.50">__call_..</text></g><g><title>get (dask/core.py:136) (29 samples, 5.85%)</title><rect x="88.7097%" y="244" width="5.8468%" height="15" fill="rgb(210,71,34)" fg:x="440" fg:w="29"/><text x="88.9597%" y="254.50">get (da..</text></g><g><title>_execute_task (dask/core.py:90) (29 samples, 5.85%)</title><rect x="88.7097%" y="260" width="5.8468%" height="15" fill="rgb(253,217,51)" fg:x="440" fg:w="29"/><text x="88.9597%" y="270.50">_execut..</text></g><g><title>apply (dask/utils.py:46) (9 samples, 1.81%)</title><rect x="92.7419%" y="276" width="1.8145%" height="15" fill="rgb(222,117,46)" fg:x="460" fg:w="9"/><text x="92.9919%" y="286.50">a..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (9 samples, 1.81%)</title><rect x="92.7419%" y="292" width="1.8145%" height="15" fill="rgb(226,132,6)" fg:x="460" fg:w="9"/><text x="92.9919%" y="302.50">_..</text></g><g><title>_groupby_raise_unaligned (dask/dataframe/groupby.py:156) (3 samples, 0.60%)</title><rect x="93.9516%" y="308" width="0.6048%" height="15" fill="rgb(254,145,51)" fg:x="466" fg:w="3"/><text x="94.2016%" y="318.50"></text></g><g><title>groupby (pandas/core/frame.py:8730) (3 samples, 0.60%)</title><rect x="93.9516%" y="324" width="0.6048%" height="15" fill="rgb(231,199,27)" fg:x="466" fg:w="3"/><text x="94.2016%" y="334.50"></text></g><g><title>__init__ (pandas/core/groupby/groupby.py:1241) (3 samples, 0.60%)</title><rect x="93.9516%" y="340" width="0.6048%" height="15" fill="rgb(245,158,14)" fg:x="466" fg:w="3"/><text x="94.2016%" y="350.50"></text></g><g><title>get_grouper (pandas/core/groupby/grouper.py:812) (3 samples, 0.60%)</title><rect x="93.9516%" y="356" width="0.6048%" height="15" fill="rgb(240,113,14)" fg:x="466" fg:w="3"/><text x="94.2016%" y="366.50"></text></g><g><title>_check_label_or_level_ambiguity (pandas/core/generic.py:1759) (1 samples, 0.20%)</title><rect x="94.3548%" y="372" width="0.2016%" height="15" fill="rgb(210,20,13)" fg:x="468" fg:w="1"/><text x="94.6048%" y="382.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="94.7581%" y="276" width="1.6129%" height="15" fill="rgb(241,144,13)" fg:x="470" fg:w="8"/><text x="95.0081%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="94.7581%" y="292" width="1.6129%" height="15" fill="rgb(235,43,34)" fg:x="470" fg:w="8"/><text x="95.0081%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.61%)</title><rect x="94.7581%" y="308" width="1.6129%" height="15" fill="rgb(208,36,20)" fg:x="470" fg:w="8"/><text x="95.0081%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="94.7581%" y="324" width="1.6129%" height="15" fill="rgb(239,204,10)" fg:x="470" fg:w="8"/><text x="95.0081%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="94.7581%" y="340" width="1.6129%" height="15" fill="rgb(217,84,43)" fg:x="470" fg:w="8"/><text x="95.0081%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="94.7581%" y="356" width="1.6129%" height="15" fill="rgb(241,170,50)" fg:x="470" fg:w="8"/><text x="95.0081%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="94.7581%" y="372" width="1.6129%" height="15" fill="rgb(226,205,29)" fg:x="470" fg:w="8"/><text x="95.0081%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="94.7581%" y="388" width="1.6129%" height="15" fill="rgb(233,113,1)" fg:x="470" fg:w="8"/><text x="95.0081%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="94.7581%" y="404" width="1.6129%" height="15" fill="rgb(253,98,13)" fg:x="470" fg:w="8"/><text x="95.0081%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="94.7581%" y="420" width="1.6129%" height="15" fill="rgb(211,115,12)" fg:x="470" fg:w="8"/><text x="95.0081%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.61%)</title><rect x="94.7581%" y="436" width="1.6129%" height="15" fill="rgb(208,12,16)" fg:x="470" fg:w="8"/><text x="95.0081%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.61%)</title><rect x="94.7581%" y="452" width="1.6129%" height="15" fill="rgb(237,193,54)" fg:x="470" fg:w="8"/><text x="95.0081%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.61%)</title><rect x="94.7581%" y="468" width="1.6129%" height="15" fill="rgb(243,22,42)" fg:x="470" fg:w="8"/><text x="95.0081%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.61%)</title><rect x="94.7581%" y="484" width="1.6129%" height="15" fill="rgb(233,151,36)" fg:x="470" fg:w="8"/><text x="95.0081%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.61%)</title><rect x="94.7581%" y="500" width="1.6129%" height="15" fill="rgb(237,57,45)" fg:x="470" fg:w="8"/><text x="95.0081%" y="510.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (1 samples, 0.20%)</title><rect x="96.3710%" y="436" width="0.2016%" height="15" fill="rgb(221,88,17)" fg:x="478" fg:w="1"/><text x="96.6210%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (1 samples, 0.20%)</title><rect x="96.3710%" y="452" width="0.2016%" height="15" fill="rgb(230,79,15)" fg:x="478" fg:w="1"/><text x="96.6210%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (1 samples, 0.20%)</title><rect x="96.3710%" y="468" width="0.2016%" height="15" fill="rgb(213,57,13)" fg:x="478" fg:w="1"/><text x="96.6210%" y="478.50"></text></g><g><title>maybe_downcast_to_dtype (pandas/core/dtypes/cast.py:254) (1 samples, 0.20%)</title><rect x="96.3710%" y="484" width="0.2016%" height="15" fill="rgb(222,116,39)" fg:x="478" fg:w="1"/><text x="96.6210%" y="494.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (4 samples, 0.81%)</title><rect x="96.3710%" y="404" width="0.8065%" height="15" fill="rgb(245,107,2)" fg:x="478" fg:w="4"/><text x="96.6210%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (4 samples, 0.81%)</title><rect x="96.3710%" y="420" width="0.8065%" height="15" fill="rgb(238,1,10)" fg:x="478" fg:w="4"/><text x="96.6210%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (3 samples, 0.60%)</title><rect x="96.5726%" y="436" width="0.6048%" height="15" fill="rgb(249,4,48)" fg:x="479" fg:w="3"/><text x="96.8226%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (3 samples, 0.60%)</title><rect x="96.5726%" y="452" width="0.6048%" height="15" fill="rgb(223,151,18)" fg:x="479" fg:w="3"/><text x="96.8226%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (3 samples, 0.60%)</title><rect x="96.5726%" y="468" width="0.6048%" height="15" fill="rgb(227,65,43)" fg:x="479" fg:w="3"/><text x="96.8226%" y="478.50"></text></g><g><title>get_group_index (pandas/core/sorting.py:122) (3 samples, 0.60%)</title><rect x="96.5726%" y="484" width="0.6048%" height="15" fill="rgb(218,40,45)" fg:x="479" fg:w="3"/><text x="96.8226%" y="494.50"></text></g><g><title>thread (0x30D4D3000) (14 samples, 2.82%)</title><rect x="94.5565%" y="68" width="2.8226%" height="15" fill="rgb(252,121,31)" fg:x="469" fg:w="14"/><text x="94.8065%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (14 samples, 2.82%)</title><rect x="94.5565%" y="84" width="2.8226%" height="15" fill="rgb(219,158,43)" fg:x="469" fg:w="14"/><text x="94.8065%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (14 samples, 2.82%)</title><rect x="94.5565%" y="100" width="2.8226%" height="15" fill="rgb(231,162,42)" fg:x="469" fg:w="14"/><text x="94.8065%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (14 samples, 2.82%)</title><rect x="94.5565%" y="116" width="2.8226%" height="15" fill="rgb(217,179,25)" fg:x="469" fg:w="14"/><text x="94.8065%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (14 samples, 2.82%)</title><rect x="94.5565%" y="132" width="2.8226%" height="15" fill="rgb(206,212,31)" fg:x="469" fg:w="14"/><text x="94.8065%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 2.62%)</title><rect x="94.7581%" y="148" width="2.6210%" height="15" fill="rgb(235,144,12)" fg:x="470" fg:w="13"/><text x="95.0081%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 2.62%)</title><rect x="94.7581%" y="164" width="2.6210%" height="15" fill="rgb(213,51,10)" fg:x="470" fg:w="13"/><text x="95.0081%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 2.62%)</title><rect x="94.7581%" y="180" width="2.6210%" height="15" fill="rgb(231,145,14)" fg:x="470" fg:w="13"/><text x="95.0081%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 2.62%)</title><rect x="94.7581%" y="196" width="2.6210%" height="15" fill="rgb(235,15,28)" fg:x="470" fg:w="13"/><text x="95.0081%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="94.7581%" y="212" width="2.6210%" height="15" fill="rgb(237,206,10)" fg:x="470" fg:w="13"/><text x="95.0081%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (13 samples, 2.62%)</title><rect x="94.7581%" y="228" width="2.6210%" height="15" fill="rgb(236,227,27)" fg:x="470" fg:w="13"/><text x="95.0081%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (13 samples, 2.62%)</title><rect x="94.7581%" y="244" width="2.6210%" height="15" fill="rgb(246,83,35)" fg:x="470" fg:w="13"/><text x="95.0081%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="94.7581%" y="260" width="2.6210%" height="15" fill="rgb(220,136,24)" fg:x="470" fg:w="13"/><text x="95.0081%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (5 samples, 1.01%)</title><rect x="96.3710%" y="276" width="1.0081%" height="15" fill="rgb(217,3,25)" fg:x="478" fg:w="5"/><text x="96.6210%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (5 samples, 1.01%)</title><rect x="96.3710%" y="292" width="1.0081%" height="15" fill="rgb(239,24,14)" fg:x="478" fg:w="5"/><text x="96.6210%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (5 samples, 1.01%)</title><rect x="96.3710%" y="308" width="1.0081%" height="15" fill="rgb(244,16,53)" fg:x="478" fg:w="5"/><text x="96.6210%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (5 samples, 1.01%)</title><rect x="96.3710%" y="324" width="1.0081%" height="15" fill="rgb(208,175,44)" fg:x="478" fg:w="5"/><text x="96.6210%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (5 samples, 1.01%)</title><rect x="96.3710%" y="340" width="1.0081%" height="15" fill="rgb(252,18,48)" fg:x="478" fg:w="5"/><text x="96.6210%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (5 samples, 1.01%)</title><rect x="96.3710%" y="356" width="1.0081%" height="15" fill="rgb(234,199,32)" fg:x="478" fg:w="5"/><text x="96.6210%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (5 samples, 1.01%)</title><rect x="96.3710%" y="372" width="1.0081%" height="15" fill="rgb(225,77,54)" fg:x="478" fg:w="5"/><text x="96.6210%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (5 samples, 1.01%)</title><rect x="96.3710%" y="388" width="1.0081%" height="15" fill="rgb(225,42,25)" fg:x="478" fg:w="5"/><text x="96.6210%" y="398.50"></text></g><g><title>from_array (pandas/core/internals/managers.py:1825) (1 samples, 0.20%)</title><rect x="97.1774%" y="404" width="0.2016%" height="15" fill="rgb(242,227,46)" fg:x="482" fg:w="1"/><text x="97.4274%" y="414.50"></text></g><g><title>new_block (pandas/core/internals/blocks.py:2388) (1 samples, 0.20%)</title><rect x="97.1774%" y="420" width="0.2016%" height="15" fill="rgb(246,197,35)" fg:x="482" fg:w="1"/><text x="97.4274%" y="430.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="97.3790%" y="276" width="1.6129%" height="15" fill="rgb(215,159,26)" fg:x="483" fg:w="8"/><text x="97.6290%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="97.3790%" y="292" width="1.6129%" height="15" fill="rgb(212,194,50)" fg:x="483" fg:w="8"/><text x="97.6290%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.61%)</title><rect x="97.3790%" y="308" width="1.6129%" height="15" fill="rgb(246,132,1)" fg:x="483" fg:w="8"/><text x="97.6290%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="97.3790%" y="324" width="1.6129%" height="15" fill="rgb(217,71,7)" fg:x="483" fg:w="8"/><text x="97.6290%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="97.3790%" y="340" width="1.6129%" height="15" fill="rgb(252,59,32)" fg:x="483" fg:w="8"/><text x="97.6290%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="97.3790%" y="356" width="1.6129%" height="15" fill="rgb(253,204,25)" fg:x="483" fg:w="8"/><text x="97.6290%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="97.3790%" y="372" width="1.6129%" height="15" fill="rgb(232,21,16)" fg:x="483" fg:w="8"/><text x="97.6290%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="97.3790%" y="388" width="1.6129%" height="15" fill="rgb(248,90,29)" fg:x="483" fg:w="8"/><text x="97.6290%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.61%)</title><rect x="97.3790%" y="404" width="1.6129%" height="15" fill="rgb(249,223,7)" fg:x="483" fg:w="8"/><text x="97.6290%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.61%)</title><rect x="97.3790%" y="420" width="1.6129%" height="15" fill="rgb(231,119,42)" fg:x="483" fg:w="8"/><text x="97.6290%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.61%)</title><rect x="97.3790%" y="436" width="1.6129%" height="15" fill="rgb(215,41,35)" fg:x="483" fg:w="8"/><text x="97.6290%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.61%)</title><rect x="97.3790%" y="452" width="1.6129%" height="15" fill="rgb(220,44,45)" fg:x="483" fg:w="8"/><text x="97.6290%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.61%)</title><rect x="97.3790%" y="468" width="1.6129%" height="15" fill="rgb(253,197,36)" fg:x="483" fg:w="8"/><text x="97.6290%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.61%)</title><rect x="97.3790%" y="484" width="1.6129%" height="15" fill="rgb(245,225,54)" fg:x="483" fg:w="8"/><text x="97.6290%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.61%)</title><rect x="97.3790%" y="500" width="1.6129%" height="15" fill="rgb(239,94,37)" fg:x="483" fg:w="8"/><text x="97.6290%" y="510.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (2 samples, 0.40%)</title><rect x="98.9919%" y="436" width="0.4032%" height="15" fill="rgb(242,217,10)" fg:x="491" fg:w="2"/><text x="99.2419%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (2 samples, 0.40%)</title><rect x="98.9919%" y="452" width="0.4032%" height="15" fill="rgb(250,193,7)" fg:x="491" fg:w="2"/><text x="99.2419%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (2 samples, 0.40%)</title><rect x="98.9919%" y="468" width="0.4032%" height="15" fill="rgb(230,104,19)" fg:x="491" fg:w="2"/><text x="99.2419%" y="478.50"></text></g><g><title>all (496 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(230,181,4)" fg:x="0" fg:w="496"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x30E4D6000) (13 samples, 2.62%)</title><rect x="97.3790%" y="68" width="2.6210%" height="15" fill="rgb(216,219,49)" fg:x="483" fg:w="13"/><text x="97.6290%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (13 samples, 2.62%)</title><rect x="97.3790%" y="84" width="2.6210%" height="15" fill="rgb(254,144,0)" fg:x="483" fg:w="13"/><text x="97.6290%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (13 samples, 2.62%)</title><rect x="97.3790%" y="100" width="2.6210%" height="15" fill="rgb(205,209,38)" fg:x="483" fg:w="13"/><text x="97.6290%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (13 samples, 2.62%)</title><rect x="97.3790%" y="116" width="2.6210%" height="15" fill="rgb(240,21,42)" fg:x="483" fg:w="13"/><text x="97.6290%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (13 samples, 2.62%)</title><rect x="97.3790%" y="132" width="2.6210%" height="15" fill="rgb(241,132,3)" fg:x="483" fg:w="13"/><text x="97.6290%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 2.62%)</title><rect x="97.3790%" y="148" width="2.6210%" height="15" fill="rgb(225,14,2)" fg:x="483" fg:w="13"/><text x="97.6290%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 2.62%)</title><rect x="97.3790%" y="164" width="2.6210%" height="15" fill="rgb(210,141,35)" fg:x="483" fg:w="13"/><text x="97.6290%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 2.62%)</title><rect x="97.3790%" y="180" width="2.6210%" height="15" fill="rgb(251,14,44)" fg:x="483" fg:w="13"/><text x="97.6290%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 2.62%)</title><rect x="97.3790%" y="196" width="2.6210%" height="15" fill="rgb(247,48,18)" fg:x="483" fg:w="13"/><text x="97.6290%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="97.3790%" y="212" width="2.6210%" height="15" fill="rgb(225,0,40)" fg:x="483" fg:w="13"/><text x="97.6290%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (13 samples, 2.62%)</title><rect x="97.3790%" y="228" width="2.6210%" height="15" fill="rgb(221,31,33)" fg:x="483" fg:w="13"/><text x="97.6290%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (13 samples, 2.62%)</title><rect x="97.3790%" y="244" width="2.6210%" height="15" fill="rgb(237,42,40)" fg:x="483" fg:w="13"/><text x="97.6290%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.62%)</title><rect x="97.3790%" y="260" width="2.6210%" height="15" fill="rgb(233,51,29)" fg:x="483" fg:w="13"/><text x="97.6290%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (5 samples, 1.01%)</title><rect x="98.9919%" y="276" width="1.0081%" height="15" fill="rgb(226,58,20)" fg:x="491" fg:w="5"/><text x="99.2419%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (5 samples, 1.01%)</title><rect x="98.9919%" y="292" width="1.0081%" height="15" fill="rgb(208,98,7)" fg:x="491" fg:w="5"/><text x="99.2419%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (5 samples, 1.01%)</title><rect x="98.9919%" y="308" width="1.0081%" height="15" fill="rgb(228,143,44)" fg:x="491" fg:w="5"/><text x="99.2419%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (5 samples, 1.01%)</title><rect x="98.9919%" y="324" width="1.0081%" height="15" fill="rgb(246,55,38)" fg:x="491" fg:w="5"/><text x="99.2419%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (5 samples, 1.01%)</title><rect x="98.9919%" y="340" width="1.0081%" height="15" fill="rgb(247,87,16)" fg:x="491" fg:w="5"/><text x="99.2419%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (5 samples, 1.01%)</title><rect x="98.9919%" y="356" width="1.0081%" height="15" fill="rgb(234,129,42)" fg:x="491" fg:w="5"/><text x="99.2419%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (5 samples, 1.01%)</title><rect x="98.9919%" y="372" width="1.0081%" height="15" fill="rgb(220,82,16)" fg:x="491" fg:w="5"/><text x="99.2419%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (5 samples, 1.01%)</title><rect x="98.9919%" y="388" width="1.0081%" height="15" fill="rgb(211,88,4)" fg:x="491" fg:w="5"/><text x="99.2419%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (5 samples, 1.01%)</title><rect x="98.9919%" y="404" width="1.0081%" height="15" fill="rgb(248,151,21)" fg:x="491" fg:w="5"/><text x="99.2419%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (5 samples, 1.01%)</title><rect x="98.9919%" y="420" width="1.0081%" height="15" fill="rgb(238,163,6)" fg:x="491" fg:w="5"/><text x="99.2419%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (3 samples, 0.60%)</title><rect x="99.3952%" y="436" width="0.6048%" height="15" fill="rgb(209,183,11)" fg:x="493" fg:w="3"/><text x="99.6452%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (3 samples, 0.60%)</title><rect x="99.3952%" y="452" width="0.6048%" height="15" fill="rgb(219,37,20)" fg:x="493" fg:w="3"/><text x="99.6452%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (3 samples, 0.60%)</title><rect x="99.3952%" y="468" width="0.6048%" height="15" fill="rgb(210,158,4)" fg:x="493" fg:w="3"/><text x="99.6452%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (3 samples, 0.60%)</title><rect x="99.3952%" y="484" width="0.6048%" height="15" fill="rgb(221,167,53)" fg:x="493" fg:w="3"/><text x="99.6452%" y="494.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/groupby_air_full.py-2024-03-03T07:49:53+05:30.svg b/perf_tests/groupby_air_full.py-2024-03-03T07:49:53+05:30.svg new file mode 100644 index 0000000..ad305a6 --- /dev/null +++ b/perf_tests/groupby_air_full.py-2024-03-03T07:49:53+05:30.svg @@ -0,0 +1,415 @@ +<?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="2154" onload="init(evt)" viewBox="0 0 1200 2154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2154" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./groupby_air_full.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2143.00"> </text><svg id="frames" x="10" width="1180" total_samples="452"><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.3009%" y="228" width="0.2212%" height="15" fill="rgb(227,0,7)" fg:x="33" fg:w="1"/><text x="7.5509%" y="238.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.3009%" y="244" width="0.2212%" height="15" fill="rgb(217,0,24)" fg:x="33" fg:w="1"/><text x="7.5509%" y="254.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.3009%" y="260" width="0.2212%" height="15" fill="rgb(221,193,54)" fg:x="33" fg:w="1"/><text x="7.5509%" y="270.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.3009%" y="276" width="0.2212%" height="15" fill="rgb(248,212,6)" fg:x="33" fg:w="1"/><text x="7.5509%" y="286.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.3009%" y="292" width="0.2212%" height="15" fill="rgb(208,68,35)" fg:x="33" fg:w="1"/><text x="7.5509%" y="302.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="7.3009%" y="308" width="0.2212%" height="15" fill="rgb(232,128,0)" fg:x="33" fg:w="1"/><text x="7.5509%" y="318.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="7.3009%" y="324" width="0.2212%" height="15" fill="rgb(207,160,47)" fg:x="33" fg:w="1"/><text x="7.5509%" y="334.50"></text></g><g><title><module> (prompt_toolkit/auto_suggest.py:1) (1 samples, 0.22%)</title><rect x="7.5221%" y="804" width="0.2212%" height="15" fill="rgb(228,23,34)" fg:x="34" fg:w="1"/><text x="7.7721%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.5221%" y="820" width="0.2212%" height="15" fill="rgb(218,30,26)" fg:x="34" fg:w="1"/><text x="7.7721%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.5221%" y="836" width="0.2212%" height="15" fill="rgb(220,122,19)" fg:x="34" fg:w="1"/><text x="7.7721%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.5221%" y="852" width="0.2212%" height="15" fill="rgb(250,228,42)" fg:x="34" fg:w="1"/><text x="7.7721%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.5221%" y="868" width="0.2212%" height="15" fill="rgb(240,193,28)" fg:x="34" fg:w="1"/><text x="7.7721%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.5221%" y="884" width="0.2212%" height="15" fill="rgb(216,20,37)" fg:x="34" fg:w="1"/><text x="7.7721%" y="894.50"></text></g><g><title><module> (prompt_toolkit/document.py:1) (1 samples, 0.22%)</title><rect x="7.5221%" y="900" width="0.2212%" height="15" fill="rgb(206,188,39)" fg:x="34" fg:w="1"/><text x="7.7721%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.5221%" y="916" width="0.2212%" height="15" fill="rgb(217,207,13)" fg:x="34" fg:w="1"/><text x="7.7721%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.5221%" y="932" width="0.2212%" height="15" fill="rgb(231,73,38)" fg:x="34" fg:w="1"/><text x="7.7721%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.5221%" y="948" width="0.2212%" height="15" fill="rgb(225,20,46)" fg:x="34" fg:w="1"/><text x="7.7721%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.5221%" y="964" width="0.2212%" height="15" fill="rgb(210,31,41)" fg:x="34" fg:w="1"/><text x="7.7721%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.5221%" y="980" width="0.2212%" height="15" fill="rgb(221,200,47)" fg:x="34" fg:w="1"/><text x="7.7721%" y="990.50"></text></g><g><title><module> (prompt_toolkit/clipboard/__init__.py:1) (1 samples, 0.22%)</title><rect x="7.5221%" y="996" width="0.2212%" height="15" fill="rgb(226,26,5)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.5221%" y="1012" width="0.2212%" height="15" fill="rgb(249,33,26)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.5221%" y="1028" width="0.2212%" height="15" fill="rgb(235,183,28)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.5221%" y="1044" width="0.2212%" height="15" fill="rgb(221,5,38)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.5221%" y="1060" width="0.2212%" height="15" fill="rgb(247,18,42)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1070.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="7.5221%" y="1076" width="0.2212%" height="15" fill="rgb(241,131,45)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1086.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.22%)</title><rect x="7.5221%" y="1092" width="0.2212%" height="15" fill="rgb(249,31,29)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1102.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.22%)</title><rect x="7.5221%" y="1108" width="0.2212%" height="15" fill="rgb(225,111,53)" fg:x="34" fg:w="1"/><text x="7.7721%" y="1118.50"></text></g><g><title>ConditionalCompleter (prompt_toolkit/completion/base.py:332) (1 samples, 0.22%)</title><rect x="7.7434%" y="916" width="0.2212%" height="15" fill="rgb(238,160,17)" fg:x="35" fg:w="1"/><text x="7.9934%" y="926.50"></text></g><g><title><module> (prompt_toolkit/buffer.py:1) (3 samples, 0.66%)</title><rect x="7.5221%" y="708" width="0.6637%" height="15" fill="rgb(214,148,48)" fg:x="34" fg:w="3"/><text x="7.7721%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="7.5221%" y="724" width="0.6637%" height="15" fill="rgb(232,36,49)" fg:x="34" fg:w="3"/><text x="7.7721%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="7.5221%" y="740" width="0.6637%" height="15" fill="rgb(209,103,24)" fg:x="34" fg:w="3"/><text x="7.7721%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="7.5221%" y="756" width="0.6637%" height="15" fill="rgb(229,88,8)" fg:x="34" fg:w="3"/><text x="7.7721%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="7.5221%" y="772" width="0.6637%" height="15" fill="rgb(213,181,19)" fg:x="34" fg:w="3"/><text x="7.7721%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="7.5221%" y="788" width="0.6637%" height="15" fill="rgb(254,191,54)" fg:x="34" fg:w="3"/><text x="7.7721%" y="798.50"></text></g><g><title><module> (prompt_toolkit/completion/__init__.py:1) (2 samples, 0.44%)</title><rect x="7.7434%" y="804" width="0.4425%" height="15" fill="rgb(241,83,37)" fg:x="35" fg:w="2"/><text x="7.9934%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="7.7434%" y="820" width="0.4425%" height="15" fill="rgb(233,36,39)" fg:x="35" fg:w="2"/><text x="7.9934%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="7.7434%" y="836" width="0.4425%" height="15" fill="rgb(226,3,54)" fg:x="35" fg:w="2"/><text x="7.9934%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="7.7434%" y="852" width="0.4425%" height="15" fill="rgb(245,192,40)" fg:x="35" fg:w="2"/><text x="7.9934%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="7.7434%" y="868" width="0.4425%" height="15" fill="rgb(238,167,29)" fg:x="35" fg:w="2"/><text x="7.9934%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="7.7434%" y="884" width="0.4425%" height="15" fill="rgb(232,182,51)" fg:x="35" fg:w="2"/><text x="7.9934%" y="894.50"></text></g><g><title><module> (prompt_toolkit/completion/base.py:1) (2 samples, 0.44%)</title><rect x="7.7434%" y="900" width="0.4425%" height="15" fill="rgb(231,60,39)" fg:x="35" fg:w="2"/><text x="7.9934%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.9646%" y="916" width="0.2212%" height="15" fill="rgb(208,69,12)" fg:x="36" fg:w="1"/><text x="8.2146%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.9646%" y="932" width="0.2212%" height="15" fill="rgb(235,93,37)" fg:x="36" fg:w="1"/><text x="8.2146%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.9646%" y="948" width="0.2212%" height="15" fill="rgb(213,116,39)" fg:x="36" fg:w="1"/><text x="8.2146%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.9646%" y="964" width="0.2212%" height="15" fill="rgb(222,207,29)" fg:x="36" fg:w="1"/><text x="8.2146%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.9646%" y="980" width="0.2212%" height="15" fill="rgb(206,96,30)" fg:x="36" fg:w="1"/><text x="8.2146%" y="990.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/__init__.py:1) (1 samples, 0.22%)</title><rect x="7.9646%" y="996" width="0.2212%" height="15" fill="rgb(218,138,4)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.9646%" y="1012" width="0.2212%" height="15" fill="rgb(250,191,14)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.9646%" y="1028" width="0.2212%" height="15" fill="rgb(239,60,40)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="7.9646%" y="1044" width="0.2212%" height="15" fill="rgb(206,27,48)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="7.9646%" y="1060" width="0.2212%" height="15" fill="rgb(225,35,8)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.9646%" y="1076" width="0.2212%" height="15" fill="rgb(250,213,24)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1086.50"></text></g><g><title><module> (prompt_toolkit/formatted_text/html.py:1) (1 samples, 0.22%)</title><rect x="7.9646%" y="1092" width="0.2212%" height="15" fill="rgb(247,123,22)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.9646%" y="1108" width="0.2212%" height="15" fill="rgb(231,138,38)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="7.9646%" y="1124" width="0.2212%" height="15" fill="rgb(231,145,46)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="7.9646%" y="1140" width="0.2212%" height="15" fill="rgb(251,118,11)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="7.9646%" y="1156" width="0.2212%" height="15" fill="rgb(217,147,25)" fg:x="36" fg:w="1"/><text x="8.2146%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="8.1858%" y="1236" width="0.2212%" height="15" fill="rgb(247,81,37)" fg:x="37" fg:w="1"/><text x="8.4358%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="8.1858%" y="916" width="0.4425%" height="15" fill="rgb(209,12,38)" fg:x="37" fg:w="2"/><text x="8.4358%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="8.1858%" y="932" width="0.4425%" height="15" fill="rgb(227,1,9)" fg:x="37" fg:w="2"/><text x="8.4358%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="8.1858%" y="948" width="0.4425%" height="15" fill="rgb(248,47,43)" fg:x="37" fg:w="2"/><text x="8.4358%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="8.1858%" y="964" width="0.4425%" height="15" fill="rgb(221,10,30)" fg:x="37" fg:w="2"/><text x="8.4358%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="8.1858%" y="980" width="0.4425%" height="15" fill="rgb(210,229,1)" fg:x="37" fg:w="2"/><text x="8.4358%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="8.1858%" y="996" width="0.4425%" height="15" fill="rgb(222,148,37)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="8.1858%" y="1012" width="0.4425%" height="15" fill="rgb(234,67,33)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="8.1858%" y="1028" width="0.4425%" height="15" fill="rgb(247,98,35)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1038.50"></text></g><g><title><module> (prompt_toolkit/layout/__init__.py:1) (2 samples, 0.44%)</title><rect x="8.1858%" y="1044" width="0.4425%" height="15" fill="rgb(247,138,52)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="8.1858%" y="1060" width="0.4425%" height="15" fill="rgb(213,79,30)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="8.1858%" y="1076" width="0.4425%" height="15" fill="rgb(246,177,23)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="8.1858%" y="1092" width="0.4425%" height="15" fill="rgb(230,62,27)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="8.1858%" y="1108" width="0.4425%" height="15" fill="rgb(216,154,8)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="8.1858%" y="1124" width="0.4425%" height="15" fill="rgb(244,35,45)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1134.50"></text></g><g><title><module> (prompt_toolkit/layout/containers.py:1) (2 samples, 0.44%)</title><rect x="8.1858%" y="1140" width="0.4425%" height="15" fill="rgb(251,115,12)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="8.1858%" y="1156" width="0.4425%" height="15" fill="rgb(240,54,50)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="8.1858%" y="1172" width="0.4425%" height="15" fill="rgb(233,84,52)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="8.1858%" y="1188" width="0.4425%" height="15" fill="rgb(207,117,47)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="8.1858%" y="1204" width="0.4425%" height="15" fill="rgb(249,43,39)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1214.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.44%)</title><rect x="8.1858%" y="1220" width="0.4425%" height="15" fill="rgb(209,38,44)" fg:x="37" fg:w="2"/><text x="8.4358%" y="1230.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="8.4071%" y="1236" width="0.2212%" height="15" fill="rgb(236,212,23)" fg:x="38" fg:w="1"/><text x="8.6571%" y="1246.50"></text></g><g><title><module> (prompt_toolkit/key_binding/bindings/basic.py:2) (3 samples, 0.66%)</title><rect x="8.1858%" y="804" width="0.6637%" height="15" fill="rgb(242,79,21)" fg:x="37" fg:w="3"/><text x="8.4358%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="8.1858%" y="820" width="0.6637%" height="15" fill="rgb(211,96,35)" fg:x="37" fg:w="3"/><text x="8.4358%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="8.1858%" y="836" width="0.6637%" height="15" fill="rgb(253,215,40)" fg:x="37" fg:w="3"/><text x="8.4358%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="8.1858%" y="852" width="0.6637%" height="15" fill="rgb(211,81,21)" fg:x="37" fg:w="3"/><text x="8.4358%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="8.1858%" y="868" width="0.6637%" height="15" fill="rgb(208,190,38)" fg:x="37" fg:w="3"/><text x="8.4358%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="8.1858%" y="884" width="0.6637%" height="15" fill="rgb(235,213,38)" fg:x="37" fg:w="3"/><text x="8.4358%" y="894.50"></text></g><g><title><module> (prompt_toolkit/key_binding/bindings/named_commands.py:1) (3 samples, 0.66%)</title><rect x="8.1858%" y="900" width="0.6637%" height="15" fill="rgb(237,122,38)" fg:x="37" fg:w="3"/><text x="8.4358%" y="910.50"></text></g><g><title>decorator (prompt_toolkit/key_binding/bindings/named_commands.py:42) (1 samples, 0.22%)</title><rect x="8.6283%" y="916" width="0.2212%" height="15" fill="rgb(244,218,35)" fg:x="39" fg:w="1"/><text x="8.8783%" y="926.50"></text></g><g><title>decorator (prompt_toolkit/key_binding/key_bindings.py:479) (1 samples, 0.22%)</title><rect x="8.6283%" y="932" width="0.2212%" height="15" fill="rgb(240,68,47)" fg:x="39" fg:w="1"/><text x="8.8783%" y="942.50"></text></g><g><title><module> (prompt_toolkit/application/__init__.py:1) (9 samples, 1.99%)</title><rect x="7.5221%" y="516" width="1.9912%" height="15" fill="rgb(210,16,53)" fg:x="34" fg:w="9"/><text x="7.7721%" y="526.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="7.5221%" y="532" width="1.9912%" height="15" fill="rgb(235,124,12)" fg:x="34" fg:w="9"/><text x="7.7721%" y="542.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="7.5221%" y="548" width="1.9912%" height="15" fill="rgb(224,169,11)" fg:x="34" fg:w="9"/><text x="7.7721%" y="558.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="7.5221%" y="564" width="1.9912%" height="15" fill="rgb(250,166,2)" fg:x="34" fg:w="9"/><text x="7.7721%" y="574.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.99%)</title><rect x="7.5221%" y="580" width="1.9912%" height="15" fill="rgb(242,216,29)" fg:x="34" fg:w="9"/><text x="7.7721%" y="590.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="7.5221%" y="596" width="1.9912%" height="15" fill="rgb(230,116,27)" fg:x="34" fg:w="9"/><text x="7.7721%" y="606.50">_..</text></g><g><title><module> (prompt_toolkit/application/application.py:1) (9 samples, 1.99%)</title><rect x="7.5221%" y="612" width="1.9912%" height="15" fill="rgb(228,99,48)" fg:x="34" fg:w="9"/><text x="7.7721%" y="622.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="7.5221%" y="628" width="1.9912%" height="15" fill="rgb(253,11,6)" fg:x="34" fg:w="9"/><text x="7.7721%" y="638.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="7.5221%" y="644" width="1.9912%" height="15" fill="rgb(247,143,39)" fg:x="34" fg:w="9"/><text x="7.7721%" y="654.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="7.5221%" y="660" width="1.9912%" height="15" fill="rgb(236,97,10)" fg:x="34" fg:w="9"/><text x="7.7721%" y="670.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.99%)</title><rect x="7.5221%" y="676" width="1.9912%" height="15" fill="rgb(233,208,19)" fg:x="34" fg:w="9"/><text x="7.7721%" y="686.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="7.5221%" y="692" width="1.9912%" height="15" fill="rgb(216,164,2)" fg:x="34" fg:w="9"/><text x="7.7721%" y="702.50">_..</text></g><g><title><module> (prompt_toolkit/key_binding/defaults.py:1) (6 samples, 1.33%)</title><rect x="8.1858%" y="708" width="1.3274%" height="15" fill="rgb(220,129,5)" fg:x="37" fg:w="6"/><text x="8.4358%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="8.1858%" y="724" width="1.3274%" height="15" fill="rgb(242,17,10)" fg:x="37" fg:w="6"/><text x="8.4358%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="8.1858%" y="740" width="1.3274%" height="15" fill="rgb(242,107,0)" fg:x="37" fg:w="6"/><text x="8.4358%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="8.1858%" y="756" width="1.3274%" height="15" fill="rgb(251,28,31)" fg:x="37" fg:w="6"/><text x="8.4358%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="8.1858%" y="772" width="1.3274%" height="15" fill="rgb(233,223,10)" fg:x="37" fg:w="6"/><text x="8.4358%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="8.1858%" y="788" width="1.3274%" height="15" fill="rgb(215,21,27)" fg:x="37" fg:w="6"/><text x="8.4358%" y="798.50"></text></g><g><title><module> (prompt_toolkit/key_binding/bindings/vi.py:2) (3 samples, 0.66%)</title><rect x="8.8496%" y="804" width="0.6637%" height="15" fill="rgb(232,23,21)" fg:x="40" fg:w="3"/><text x="9.0996%" y="814.50"></text></g><g><title>__init__ (typing.py:628) (1 samples, 0.22%)</title><rect x="9.2920%" y="820" width="0.2212%" height="15" fill="rgb(244,5,23)" fg:x="42" fg:w="1"/><text x="9.5420%" y="830.50"></text></g><g><title><module> (prompt_toolkit/__init__.py:1) (14 samples, 3.10%)</title><rect x="7.5221%" y="420" width="3.0973%" height="15" fill="rgb(226,81,46)" fg:x="34" fg:w="14"/><text x="7.7721%" y="430.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 3.10%)</title><rect x="7.5221%" y="436" width="3.0973%" height="15" fill="rgb(247,70,30)" fg:x="34" fg:w="14"/><text x="7.7721%" y="446.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 3.10%)</title><rect x="7.5221%" y="452" width="3.0973%" height="15" fill="rgb(212,68,19)" fg:x="34" fg:w="14"/><text x="7.7721%" y="462.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 3.10%)</title><rect x="7.5221%" y="468" width="3.0973%" height="15" fill="rgb(240,187,13)" fg:x="34" fg:w="14"/><text x="7.7721%" y="478.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 3.10%)</title><rect x="7.5221%" y="484" width="3.0973%" height="15" fill="rgb(223,113,26)" fg:x="34" fg:w="14"/><text x="7.7721%" y="494.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 3.10%)</title><rect x="7.5221%" y="500" width="3.0973%" height="15" fill="rgb(206,192,2)" fg:x="34" fg:w="14"/><text x="7.7721%" y="510.50">_ca..</text></g><g><title><module> (prompt_toolkit/shortcuts/__init__.py:1) (5 samples, 1.11%)</title><rect x="9.5133%" y="516" width="1.1062%" height="15" fill="rgb(241,108,4)" fg:x="43" fg:w="5"/><text x="9.7633%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="9.5133%" y="532" width="1.1062%" height="15" fill="rgb(247,173,49)" fg:x="43" fg:w="5"/><text x="9.7633%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="9.5133%" y="548" width="1.1062%" height="15" fill="rgb(224,114,35)" fg:x="43" fg:w="5"/><text x="9.7633%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="9.5133%" y="564" width="1.1062%" height="15" fill="rgb(245,159,27)" fg:x="43" fg:w="5"/><text x="9.7633%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="9.5133%" y="580" width="1.1062%" height="15" fill="rgb(245,172,44)" fg:x="43" fg:w="5"/><text x="9.7633%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="9.5133%" y="596" width="1.1062%" height="15" fill="rgb(236,23,11)" fg:x="43" fg:w="5"/><text x="9.7633%" y="606.50"></text></g><g><title><module> (prompt_toolkit/shortcuts/dialogs.py:1) (5 samples, 1.11%)</title><rect x="9.5133%" y="612" width="1.1062%" height="15" fill="rgb(205,117,38)" fg:x="43" fg:w="5"/><text x="9.7633%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="9.5133%" y="628" width="1.1062%" height="15" fill="rgb(237,72,25)" fg:x="43" fg:w="5"/><text x="9.7633%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="9.5133%" y="644" width="1.1062%" height="15" fill="rgb(244,70,9)" fg:x="43" fg:w="5"/><text x="9.7633%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="9.5133%" y="660" width="1.1062%" height="15" fill="rgb(217,125,39)" fg:x="43" fg:w="5"/><text x="9.7633%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="9.5133%" y="676" width="1.1062%" height="15" fill="rgb(235,36,10)" fg:x="43" fg:w="5"/><text x="9.7633%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="9.5133%" y="692" width="1.1062%" height="15" fill="rgb(251,123,47)" fg:x="43" fg:w="5"/><text x="9.7633%" y="702.50"></text></g><g><title><module> (prompt_toolkit/widgets/__init__.py:1) (5 samples, 1.11%)</title><rect x="9.5133%" y="708" width="1.1062%" height="15" fill="rgb(221,13,13)" fg:x="43" fg:w="5"/><text x="9.7633%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="9.5133%" y="724" width="1.1062%" height="15" fill="rgb(238,131,9)" fg:x="43" fg:w="5"/><text x="9.7633%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="9.5133%" y="740" width="1.1062%" height="15" fill="rgb(211,50,8)" fg:x="43" fg:w="5"/><text x="9.7633%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="9.5133%" y="756" width="1.1062%" height="15" fill="rgb(245,182,24)" fg:x="43" fg:w="5"/><text x="9.7633%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="9.5133%" y="772" width="1.1062%" height="15" fill="rgb(242,14,37)" fg:x="43" fg:w="5"/><text x="9.7633%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="9.5133%" y="788" width="1.1062%" height="15" fill="rgb(246,228,12)" fg:x="43" fg:w="5"/><text x="9.7633%" y="798.50"></text></g><g><title><module> (prompt_toolkit/widgets/base.py:1) (5 samples, 1.11%)</title><rect x="9.5133%" y="804" width="1.1062%" height="15" fill="rgb(213,55,15)" fg:x="43" fg:w="5"/><text x="9.7633%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="7.5221%" y="324" width="3.3186%" height="15" fill="rgb(209,9,3)" fg:x="34" fg:w="15"/><text x="7.7721%" y="334.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="7.5221%" y="340" width="3.3186%" height="15" fill="rgb(230,59,30)" fg:x="34" fg:w="15"/><text x="7.7721%" y="350.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="7.5221%" y="356" width="3.3186%" height="15" fill="rgb(209,121,21)" fg:x="34" fg:w="15"/><text x="7.7721%" y="366.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="7.5221%" y="372" width="3.3186%" height="15" fill="rgb(220,109,13)" fg:x="34" fg:w="15"/><text x="7.7721%" y="382.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="7.5221%" y="388" width="3.3186%" height="15" fill="rgb(232,18,1)" fg:x="34" fg:w="15"/><text x="7.7721%" y="398.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="7.5221%" y="404" width="3.3186%" height="15" fill="rgb(215,41,42)" fg:x="34" fg:w="15"/><text x="7.7721%" y="414.50">_ca..</text></g><g><title><module> (pygments/lexers/__init__.py:1) (1 samples, 0.22%)</title><rect x="10.6195%" y="420" width="0.2212%" height="15" fill="rgb(224,123,36)" fg:x="48" fg:w="1"/><text x="10.8695%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="10.6195%" y="436" width="0.2212%" height="15" fill="rgb(240,125,3)" fg:x="48" fg:w="1"/><text x="10.8695%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="10.6195%" y="452" width="0.2212%" height="15" fill="rgb(205,98,50)" fg:x="48" fg:w="1"/><text x="10.8695%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="10.6195%" y="468" width="0.2212%" height="15" fill="rgb(205,185,37)" fg:x="48" fg:w="1"/><text x="10.8695%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="10.6195%" y="484" width="0.2212%" height="15" fill="rgb(238,207,15)" fg:x="48" fg:w="1"/><text x="10.8695%" y="494.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="10.6195%" y="500" width="0.2212%" height="15" fill="rgb(213,199,42)" fg:x="48" fg:w="1"/><text x="10.8695%" y="510.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="10.6195%" y="516" width="0.2212%" height="15" fill="rgb(235,201,11)" fg:x="48" fg:w="1"/><text x="10.8695%" y="526.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="10.8407%" y="516" width="0.2212%" height="15" fill="rgb(207,46,11)" fg:x="49" fg:w="1"/><text x="11.0907%" y="526.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="10.8407%" y="532" width="0.2212%" height="15" fill="rgb(241,35,35)" fg:x="49" fg:w="1"/><text x="11.0907%" y="542.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="10.8407%" y="548" width="0.2212%" height="15" fill="rgb(243,32,47)" fg:x="49" fg:w="1"/><text x="11.0907%" y="558.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="11.0619%" y="708" width="0.2212%" height="15" fill="rgb(247,202,23)" fg:x="50" fg:w="1"/><text x="11.3119%" y="718.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="11.0619%" y="724" width="0.2212%" height="15" fill="rgb(219,102,11)" fg:x="50" fg:w="1"/><text x="11.3119%" y="734.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="11.0619%" y="740" width="0.2212%" height="15" fill="rgb(243,110,44)" fg:x="50" fg:w="1"/><text x="11.3119%" y="750.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="11.0619%" y="756" width="0.2212%" height="15" fill="rgb(222,74,54)" fg:x="50" fg:w="1"/><text x="11.3119%" y="766.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.22%)</title><rect x="11.0619%" y="772" width="0.2212%" height="15" fill="rgb(216,99,12)" fg:x="50" fg:w="1"/><text x="11.3119%" y="782.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (4 samples, 0.88%)</title><rect x="11.2832%" y="996" width="0.8850%" height="15" fill="rgb(226,22,26)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1006.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.88%)</title><rect x="11.2832%" y="1012" width="0.8850%" height="15" fill="rgb(217,163,10)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (4 samples, 0.88%)</title><rect x="11.2832%" y="1028" width="0.8850%" height="15" fill="rgb(213,25,53)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (4 samples, 0.88%)</title><rect x="11.2832%" y="1044" width="0.8850%" height="15" fill="rgb(252,105,26)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (4 samples, 0.88%)</title><rect x="11.2832%" y="1060" width="0.8850%" height="15" fill="rgb(220,39,43)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="11.2832%" y="1076" width="0.8850%" height="15" fill="rgb(229,68,48)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="11.2832%" y="1092" width="0.8850%" height="15" fill="rgb(252,8,32)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="11.2832%" y="1108" width="0.8850%" height="15" fill="rgb(223,20,43)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="11.2832%" y="1124" width="0.8850%" height="15" fill="rgb(229,81,49)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="11.2832%" y="1140" width="0.8850%" height="15" fill="rgb(236,28,36)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1150.50"></text></g><g><title><module> (tornado/netutil.py:16) (4 samples, 0.88%)</title><rect x="11.2832%" y="1156" width="0.8850%" height="15" fill="rgb(249,185,26)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1166.50"></text></g><g><title>create_default_context (ssl.py:724) (4 samples, 0.88%)</title><rect x="11.2832%" y="1172" width="0.8850%" height="15" fill="rgb(249,174,33)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1182.50"></text></g><g><title>load_default_certs (ssl.py:570) (4 samples, 0.88%)</title><rect x="11.2832%" y="1188" width="0.8850%" height="15" fill="rgb(233,201,37)" fg:x="51" fg:w="4"/><text x="11.5332%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="12.1681%" y="1012" width="0.2212%" height="15" fill="rgb(221,78,26)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="12.1681%" y="1028" width="0.2212%" height="15" fill="rgb(250,127,30)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="12.1681%" y="1044" width="0.2212%" height="15" fill="rgb(230,49,44)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="12.1681%" y="1060" width="0.2212%" height="15" fill="rgb(229,67,23)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1070.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="12.1681%" y="1076" width="0.2212%" height="15" fill="rgb(249,83,47)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1086.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="12.1681%" y="1092" width="0.2212%" height="15" fill="rgb(215,43,3)" fg:x="55" fg:w="1"/><text x="12.4181%" y="1102.50"></text></g><g><title>__exit__ (<frozen importlib._bootstrap>:878) (1 samples, 0.22%)</title><rect x="12.3894%" y="1476" width="0.2212%" height="15" fill="rgb(238,154,13)" fg:x="56" fg:w="1"/><text x="12.6394%" y="1486.50"></text></g><g><title><module> (distributed/comm/__init__.py:1) (7 samples, 1.55%)</title><rect x="11.2832%" y="852" width="1.5487%" height="15" fill="rgb(219,56,2)" fg:x="51" fg:w="7"/><text x="11.5332%" y="862.50"></text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (7 samples, 1.55%)</title><rect x="11.2832%" y="868" width="1.5487%" height="15" fill="rgb(233,0,4)" fg:x="51" fg:w="7"/><text x="11.5332%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 1.55%)</title><rect x="11.2832%" y="884" width="1.5487%" height="15" fill="rgb(235,30,7)" fg:x="51" fg:w="7"/><text x="11.5332%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="11.2832%" y="900" width="1.5487%" height="15" fill="rgb(250,79,13)" fg:x="51" fg:w="7"/><text x="11.5332%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="11.2832%" y="916" width="1.5487%" height="15" fill="rgb(211,146,34)" fg:x="51" fg:w="7"/><text x="11.5332%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="11.2832%" y="932" width="1.5487%" height="15" fill="rgb(228,22,38)" fg:x="51" fg:w="7"/><text x="11.5332%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="11.2832%" y="948" width="1.5487%" height="15" fill="rgb(235,168,5)" fg:x="51" fg:w="7"/><text x="11.5332%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="11.2832%" y="964" width="1.5487%" height="15" fill="rgb(221,155,16)" fg:x="51" fg:w="7"/><text x="11.5332%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="11.2832%" y="980" width="1.5487%" height="15" fill="rgb(215,215,53)" fg:x="51" fg:w="7"/><text x="11.5332%" y="990.50"></text></g><g><title><module> (distributed/comm/ws.py:1) (3 samples, 0.66%)</title><rect x="12.1681%" y="996" width="0.6637%" height="15" fill="rgb(223,4,10)" fg:x="55" fg:w="3"/><text x="12.4181%" y="1006.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="12.3894%" y="1012" width="0.4425%" height="15" fill="rgb(234,103,6)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1022.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (2 samples, 0.44%)</title><rect x="12.3894%" y="1028" width="0.4425%" height="15" fill="rgb(227,97,0)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1038.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.44%)</title><rect x="12.3894%" y="1044" width="0.4425%" height="15" fill="rgb(234,150,53)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1054.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.44%)</title><rect x="12.3894%" y="1060" width="0.4425%" height="15" fill="rgb(228,201,54)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="12.3894%" y="1076" width="0.4425%" height="15" fill="rgb(222,22,37)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="12.3894%" y="1092" width="0.4425%" height="15" fill="rgb(237,53,32)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="12.3894%" y="1108" width="0.4425%" height="15" fill="rgb(233,25,53)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="12.3894%" y="1124" width="0.4425%" height="15" fill="rgb(210,40,34)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="12.3894%" y="1140" width="0.4425%" height="15" fill="rgb(241,220,44)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1150.50"></text></g><g><title><module> (tornado/web.py:16) (2 samples, 0.44%)</title><rect x="12.3894%" y="1156" width="0.4425%" height="15" fill="rgb(235,28,35)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="12.3894%" y="1172" width="0.4425%" height="15" fill="rgb(210,56,17)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="12.3894%" y="1188" width="0.4425%" height="15" fill="rgb(224,130,29)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="12.3894%" y="1204" width="0.4425%" height="15" fill="rgb(235,212,8)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="12.3894%" y="1220" width="0.4425%" height="15" fill="rgb(223,33,50)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="12.3894%" y="1236" width="0.4425%" height="15" fill="rgb(219,149,13)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1246.50"></text></g><g><title><module> (tornado/httpserver.py:16) (2 samples, 0.44%)</title><rect x="12.3894%" y="1252" width="0.4425%" height="15" fill="rgb(250,156,29)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="12.3894%" y="1268" width="0.4425%" height="15" fill="rgb(216,193,19)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="12.3894%" y="1284" width="0.4425%" height="15" fill="rgb(216,135,14)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="12.3894%" y="1300" width="0.4425%" height="15" fill="rgb(241,47,5)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="12.3894%" y="1316" width="0.4425%" height="15" fill="rgb(233,42,35)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="12.3894%" y="1332" width="0.4425%" height="15" fill="rgb(231,13,6)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1342.50"></text></g><g><title><module> (tornado/http1connection.py:16) (2 samples, 0.44%)</title><rect x="12.3894%" y="1348" width="0.4425%" height="15" fill="rgb(207,181,40)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="12.3894%" y="1364" width="0.4425%" height="15" fill="rgb(254,173,49)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1374.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (2 samples, 0.44%)</title><rect x="12.3894%" y="1380" width="0.4425%" height="15" fill="rgb(221,1,38)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1390.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.44%)</title><rect x="12.3894%" y="1396" width="0.4425%" height="15" fill="rgb(206,124,46)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1406.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 0.44%)</title><rect x="12.3894%" y="1412" width="0.4425%" height="15" fill="rgb(249,21,11)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1422.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="12.3894%" y="1428" width="0.4425%" height="15" fill="rgb(222,201,40)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1438.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="12.3894%" y="1444" width="0.4425%" height="15" fill="rgb(235,61,29)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1454.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.44%)</title><rect x="12.3894%" y="1460" width="0.4425%" height="15" fill="rgb(219,207,3)" fg:x="56" fg:w="2"/><text x="12.6394%" y="1470.50"></text></g><g><title>find_spec (_distutils_hack/__init__.py:89) (1 samples, 0.22%)</title><rect x="12.6106%" y="1476" width="0.2212%" height="15" fill="rgb(222,56,46)" fg:x="57" fg:w="1"/><text x="12.8606%" y="1486.50"></text></g><g><title><module> (distributed/core.py:1) (8 samples, 1.77%)</title><rect x="11.2832%" y="756" width="1.7699%" height="15" fill="rgb(239,76,54)" fg:x="51" fg:w="8"/><text x="11.5332%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="11.2832%" y="772" width="1.7699%" height="15" fill="rgb(231,124,27)" fg:x="51" fg:w="8"/><text x="11.5332%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="11.2832%" y="788" width="1.7699%" height="15" fill="rgb(249,195,6)" fg:x="51" fg:w="8"/><text x="11.5332%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="11.2832%" y="804" width="1.7699%" height="15" fill="rgb(237,174,47)" fg:x="51" fg:w="8"/><text x="11.5332%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="11.2832%" y="820" width="1.7699%" height="15" fill="rgb(206,201,31)" fg:x="51" fg:w="8"/><text x="11.5332%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="11.2832%" y="836" width="1.7699%" height="15" fill="rgb(231,57,52)" fg:x="51" fg:w="8"/><text x="11.5332%" y="846.50"></text></g><g><title><module> (distributed/diskutils.py:1) (1 samples, 0.22%)</title><rect x="12.8319%" y="852" width="0.2212%" height="15" fill="rgb(248,177,22)" fg:x="58" fg:w="1"/><text x="13.0819%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="12.8319%" y="868" width="0.2212%" height="15" fill="rgb(215,211,37)" fg:x="58" fg:w="1"/><text x="13.0819%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="12.8319%" y="884" width="0.2212%" height="15" fill="rgb(241,128,51)" fg:x="58" fg:w="1"/><text x="13.0819%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="12.8319%" y="900" width="0.2212%" height="15" fill="rgb(227,165,31)" fg:x="58" fg:w="1"/><text x="13.0819%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="12.8319%" y="916" width="0.2212%" height="15" fill="rgb(228,167,24)" fg:x="58" fg:w="1"/><text x="13.0819%" y="926.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="12.8319%" y="932" width="0.2212%" height="15" fill="rgb(228,143,12)" fg:x="58" fg:w="1"/><text x="13.0819%" y="942.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="12.8319%" y="948" width="0.2212%" height="15" fill="rgb(249,149,8)" fg:x="58" fg:w="1"/><text x="13.0819%" y="958.50"></text></g><g><title><module> (distributed/worker_memory.py:1) (1 samples, 0.22%)</title><rect x="13.0531%" y="852" width="0.2212%" height="15" fill="rgb(243,35,44)" fg:x="59" fg:w="1"/><text x="13.3031%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="13.0531%" y="868" width="0.2212%" height="15" fill="rgb(246,89,9)" fg:x="59" fg:w="1"/><text x="13.3031%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="13.0531%" y="884" width="0.2212%" height="15" fill="rgb(233,213,13)" fg:x="59" fg:w="1"/><text x="13.3031%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="13.0531%" y="900" width="0.2212%" height="15" fill="rgb(233,141,41)" fg:x="59" fg:w="1"/><text x="13.3031%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="13.0531%" y="916" width="0.2212%" height="15" fill="rgb(239,167,4)" fg:x="59" fg:w="1"/><text x="13.3031%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="13.0531%" y="932" width="0.2212%" height="15" fill="rgb(209,217,16)" fg:x="59" fg:w="1"/><text x="13.3031%" y="942.50"></text></g><g><title><module> (distributed/spill.py:1) (1 samples, 0.22%)</title><rect x="13.0531%" y="948" width="0.2212%" height="15" fill="rgb(219,88,35)" fg:x="59" fg:w="1"/><text x="13.3031%" y="958.50"></text></g><g><title>__new__ (typing.py:1866) (1 samples, 0.22%)</title><rect x="13.0531%" y="964" width="0.2212%" height="15" fill="rgb(220,193,23)" fg:x="59" fg:w="1"/><text x="13.3031%" y="974.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (1 samples, 0.22%)</title><rect x="13.0531%" y="980" width="0.2212%" height="15" fill="rgb(230,90,52)" fg:x="59" fg:w="1"/><text x="13.3031%" y="990.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.22%)</title><rect x="13.0531%" y="996" width="0.2212%" height="15" fill="rgb(252,106,19)" fg:x="59" fg:w="1"/><text x="13.3031%" y="1006.50"></text></g><g><title>__str__ (inspect.py:3065) (1 samples, 0.22%)</title><rect x="13.2743%" y="916" width="0.2212%" height="15" fill="rgb(206,74,20)" fg:x="60" fg:w="1"/><text x="13.5243%" y="926.50"></text></g><g><title>__str__ (inspect.py:2582) (1 samples, 0.22%)</title><rect x="13.2743%" y="932" width="0.2212%" height="15" fill="rgb(230,138,44)" fg:x="60" fg:w="1"/><text x="13.5243%" y="942.50"></text></g><g><title>formatannotation (inspect.py:1233) (1 samples, 0.22%)</title><rect x="13.2743%" y="948" width="0.2212%" height="15" fill="rgb(235,182,43)" fg:x="60" fg:w="1"/><text x="13.5243%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="11.2832%" y="740" width="2.4336%" height="15" fill="rgb(242,16,51)" fg:x="51" fg:w="11"/><text x="11.5332%" y="750.50">_c..</text></g><g><title><module> (distributed/worker.py:1) (3 samples, 0.66%)</title><rect x="13.0531%" y="756" width="0.6637%" height="15" fill="rgb(248,9,4)" fg:x="59" fg:w="3"/><text x="13.3031%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="13.0531%" y="772" width="0.6637%" height="15" fill="rgb(210,31,22)" fg:x="59" fg:w="3"/><text x="13.3031%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="13.0531%" y="788" width="0.6637%" height="15" fill="rgb(239,54,39)" fg:x="59" fg:w="3"/><text x="13.3031%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="13.0531%" y="804" width="0.6637%" height="15" fill="rgb(230,99,41)" fg:x="59" fg:w="3"/><text x="13.3031%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="13.0531%" y="820" width="0.6637%" height="15" fill="rgb(253,106,12)" fg:x="59" fg:w="3"/><text x="13.3031%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="13.0531%" y="836" width="0.6637%" height="15" fill="rgb(213,46,41)" fg:x="59" fg:w="3"/><text x="13.3031%" y="846.50"></text></g><g><title><module> (distributed/worker_state_machine.py:1) (2 samples, 0.44%)</title><rect x="13.2743%" y="852" width="0.4425%" height="15" fill="rgb(215,133,35)" fg:x="60" fg:w="2"/><text x="13.5243%" y="862.50"></text></g><g><title>dataclass (dataclasses.py:998) (2 samples, 0.44%)</title><rect x="13.2743%" y="868" width="0.4425%" height="15" fill="rgb(213,28,5)" fg:x="60" fg:w="2"/><text x="13.5243%" y="878.50"></text></g><g><title>wrap (dataclasses.py:1012) (2 samples, 0.44%)</title><rect x="13.2743%" y="884" width="0.4425%" height="15" fill="rgb(215,77,49)" fg:x="60" fg:w="2"/><text x="13.5243%" y="894.50"></text></g><g><title>_process_class (dataclasses.py:809) (2 samples, 0.44%)</title><rect x="13.2743%" y="900" width="0.4425%" height="15" fill="rgb(248,100,22)" fg:x="60" fg:w="2"/><text x="13.5243%" y="910.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.22%)</title><rect x="13.4956%" y="916" width="0.2212%" height="15" fill="rgb(208,67,9)" fg:x="61" fg:w="1"/><text x="13.7456%" y="926.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.22%)</title><rect x="13.4956%" y="932" width="0.2212%" height="15" fill="rgb(219,133,21)" fg:x="61" fg:w="1"/><text x="13.7456%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 2.88%)</title><rect x="11.0619%" y="676" width="2.8761%" height="15" fill="rgb(246,46,29)" fg:x="50" fg:w="13"/><text x="11.3119%" y="686.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 2.88%)</title><rect x="11.0619%" y="692" width="2.8761%" height="15" fill="rgb(246,185,52)" fg:x="50" fg:w="13"/><text x="11.3119%" y="702.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.65%)</title><rect x="11.2832%" y="708" width="2.6549%" height="15" fill="rgb(252,136,11)" fg:x="51" fg:w="12"/><text x="11.5332%" y="718.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.65%)</title><rect x="11.2832%" y="724" width="2.6549%" height="15" fill="rgb(219,138,53)" fg:x="51" fg:w="12"/><text x="11.5332%" y="734.50">ex..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="13.7168%" y="740" width="0.2212%" height="15" fill="rgb(211,51,23)" fg:x="62" fg:w="1"/><text x="13.9668%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="13.7168%" y="756" width="0.2212%" height="15" fill="rgb(247,221,28)" fg:x="62" fg:w="1"/><text x="13.9668%" y="766.50"></text></g><g><title><module> (distributed/client.py:1) (15 samples, 3.32%)</title><rect x="11.0619%" y="660" width="3.3186%" height="15" fill="rgb(251,222,45)" fg:x="50" fg:w="15"/><text x="11.3119%" y="670.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="13.9381%" y="676" width="0.4425%" height="15" fill="rgb(217,162,53)" fg:x="63" fg:w="2"/><text x="14.1881%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="692" width="0.4425%" height="15" fill="rgb(229,93,14)" fg:x="63" fg:w="2"/><text x="14.1881%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="13.9381%" y="708" width="0.4425%" height="15" fill="rgb(209,67,49)" fg:x="63" fg:w="2"/><text x="14.1881%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="13.9381%" y="724" width="0.4425%" height="15" fill="rgb(213,87,29)" fg:x="63" fg:w="2"/><text x="14.1881%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="13.9381%" y="740" width="0.4425%" height="15" fill="rgb(205,151,52)" fg:x="63" fg:w="2"/><text x="14.1881%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="13.9381%" y="756" width="0.4425%" height="15" fill="rgb(253,215,39)" fg:x="63" fg:w="2"/><text x="14.1881%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="772" width="0.4425%" height="15" fill="rgb(221,220,41)" fg:x="63" fg:w="2"/><text x="14.1881%" y="782.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 0.44%)</title><rect x="13.9381%" y="788" width="0.4425%" height="15" fill="rgb(218,133,21)" fg:x="63" fg:w="2"/><text x="14.1881%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="13.9381%" y="804" width="0.4425%" height="15" fill="rgb(221,193,43)" fg:x="63" fg:w="2"/><text x="14.1881%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="13.9381%" y="820" width="0.4425%" height="15" fill="rgb(240,128,52)" fg:x="63" fg:w="2"/><text x="14.1881%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="13.9381%" y="836" width="0.4425%" height="15" fill="rgb(253,114,12)" fg:x="63" fg:w="2"/><text x="14.1881%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="13.9381%" y="852" width="0.4425%" height="15" fill="rgb(215,223,47)" fg:x="63" fg:w="2"/><text x="14.1881%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="868" width="0.4425%" height="15" fill="rgb(248,225,23)" fg:x="63" fg:w="2"/><text x="14.1881%" y="878.50"></text></g><g><title><module> (packaging/requirements.py:5) (2 samples, 0.44%)</title><rect x="13.9381%" y="884" width="0.4425%" height="15" fill="rgb(250,108,0)" fg:x="63" fg:w="2"/><text x="14.1881%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="13.9381%" y="900" width="0.4425%" height="15" fill="rgb(228,208,7)" fg:x="63" fg:w="2"/><text x="14.1881%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="13.9381%" y="916" width="0.4425%" height="15" fill="rgb(244,45,10)" fg:x="63" fg:w="2"/><text x="14.1881%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="13.9381%" y="932" width="0.4425%" height="15" fill="rgb(207,125,25)" fg:x="63" fg:w="2"/><text x="14.1881%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="13.9381%" y="948" width="0.4425%" height="15" fill="rgb(210,195,18)" fg:x="63" fg:w="2"/><text x="14.1881%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="964" width="0.4425%" height="15" fill="rgb(249,80,12)" fg:x="63" fg:w="2"/><text x="14.1881%" y="974.50"></text></g><g><title><module> (packaging/_parser.py:1) (2 samples, 0.44%)</title><rect x="13.9381%" y="980" width="0.4425%" height="15" fill="rgb(221,65,9)" fg:x="63" fg:w="2"/><text x="14.1881%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="13.9381%" y="996" width="0.4425%" height="15" fill="rgb(235,49,36)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="13.9381%" y="1012" width="0.4425%" height="15" fill="rgb(225,32,20)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="13.9381%" y="1028" width="0.4425%" height="15" fill="rgb(215,141,46)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="13.9381%" y="1044" width="0.4425%" height="15" fill="rgb(250,160,47)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="1060" width="0.4425%" height="15" fill="rgb(216,222,40)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1070.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (2 samples, 0.44%)</title><rect x="13.9381%" y="1076" width="0.4425%" height="15" fill="rgb(234,217,39)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="13.9381%" y="1092" width="0.4425%" height="15" fill="rgb(207,178,40)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="13.9381%" y="1108" width="0.4425%" height="15" fill="rgb(221,136,13)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="13.9381%" y="1124" width="0.4425%" height="15" fill="rgb(249,199,10)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="13.9381%" y="1140" width="0.4425%" height="15" fill="rgb(249,222,13)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="13.9381%" y="1156" width="0.4425%" height="15" fill="rgb(244,185,38)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1166.50"></text></g><g><title><module> (packaging/specifiers.py:4) (2 samples, 0.44%)</title><rect x="13.9381%" y="1172" width="0.4425%" height="15" fill="rgb(236,202,9)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1182.50"></text></g><g><title>Specifier (packaging/specifiers.py:107) (2 samples, 0.44%)</title><rect x="13.9381%" y="1188" width="0.4425%" height="15" fill="rgb(250,229,37)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1198.50"></text></g><g><title>compile (re.py:250) (2 samples, 0.44%)</title><rect x="13.9381%" y="1204" width="0.4425%" height="15" fill="rgb(206,174,23)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1214.50"></text></g><g><title>_compile (re.py:289) (2 samples, 0.44%)</title><rect x="13.9381%" y="1220" width="0.4425%" height="15" fill="rgb(211,33,43)" fg:x="63" fg:w="2"/><text x="14.1881%" y="1230.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="14.1593%" y="1236" width="0.2212%" height="15" fill="rgb(245,58,50)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1246.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.22%)</title><rect x="14.1593%" y="1252" width="0.2212%" height="15" fill="rgb(244,68,36)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1262.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="14.1593%" y="1268" width="0.2212%" height="15" fill="rgb(232,229,15)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1278.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="14.1593%" y="1284" width="0.2212%" height="15" fill="rgb(254,30,23)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1294.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="14.1593%" y="1300" width="0.2212%" height="15" fill="rgb(235,160,14)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1310.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="14.1593%" y="1316" width="0.2212%" height="15" fill="rgb(212,155,44)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1326.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="14.1593%" y="1332" width="0.2212%" height="15" fill="rgb(226,2,50)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1342.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.22%)</title><rect x="14.1593%" y="1348" width="0.2212%" height="15" fill="rgb(234,177,6)" fg:x="64" fg:w="1"/><text x="14.4093%" y="1358.50"></text></g><g><title><module> (curses/__init__.py:1) (1 samples, 0.22%)</title><rect x="14.3805%" y="948" width="0.2212%" height="15" fill="rgb(217,24,9)" fg:x="65" fg:w="1"/><text x="14.6305%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="14.3805%" y="964" width="0.2212%" height="15" fill="rgb(220,13,46)" fg:x="65" fg:w="1"/><text x="14.6305%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="14.3805%" y="980" width="0.2212%" height="15" fill="rgb(239,221,27)" fg:x="65" fg:w="1"/><text x="14.6305%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="14.3805%" y="996" width="0.2212%" height="15" fill="rgb(222,198,25)" fg:x="65" fg:w="1"/><text x="14.6305%" y="1006.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="14.3805%" y="1012" width="0.2212%" height="15" fill="rgb(211,99,13)" fg:x="65" fg:w="1"/><text x="14.6305%" y="1022.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="14.3805%" y="1028" width="0.2212%" height="15" fill="rgb(232,111,31)" fg:x="65" fg:w="1"/><text x="14.6305%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="14.3805%" y="1044" width="0.2212%" height="15" fill="rgb(245,82,37)" fg:x="65" fg:w="1"/><text x="14.6305%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 3.76%)</title><rect x="11.0619%" y="580" width="3.7611%" height="15" fill="rgb(227,149,46)" fg:x="50" fg:w="17"/><text x="11.3119%" y="590.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 3.76%)</title><rect x="11.0619%" y="596" width="3.7611%" height="15" fill="rgb(218,36,50)" fg:x="50" fg:w="17"/><text x="11.3119%" y="606.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 3.76%)</title><rect x="11.0619%" y="612" width="3.7611%" height="15" fill="rgb(226,80,48)" fg:x="50" fg:w="17"/><text x="11.3119%" y="622.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 3.76%)</title><rect x="11.0619%" y="628" width="3.7611%" height="15" fill="rgb(238,224,15)" fg:x="50" fg:w="17"/><text x="11.3119%" y="638.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 3.76%)</title><rect x="11.0619%" y="644" width="3.7611%" height="15" fill="rgb(241,136,10)" fg:x="50" fg:w="17"/><text x="11.3119%" y="654.50">_cal..</text></g><g><title><module> (tornado/ioloop.py:16) (2 samples, 0.44%)</title><rect x="14.3805%" y="660" width="0.4425%" height="15" fill="rgb(208,32,45)" fg:x="65" fg:w="2"/><text x="14.6305%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="14.3805%" y="676" width="0.4425%" height="15" fill="rgb(207,135,9)" fg:x="65" fg:w="2"/><text x="14.6305%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="14.3805%" y="692" width="0.4425%" height="15" fill="rgb(206,86,44)" fg:x="65" fg:w="2"/><text x="14.6305%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="14.3805%" y="708" width="0.4425%" height="15" fill="rgb(245,177,15)" fg:x="65" fg:w="2"/><text x="14.6305%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="14.3805%" y="724" width="0.4425%" height="15" fill="rgb(206,64,50)" fg:x="65" fg:w="2"/><text x="14.6305%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="14.3805%" y="740" width="0.4425%" height="15" fill="rgb(234,36,40)" fg:x="65" fg:w="2"/><text x="14.6305%" y="750.50"></text></g><g><title><module> (tornado/concurrent.py:15) (2 samples, 0.44%)</title><rect x="14.3805%" y="756" width="0.4425%" height="15" fill="rgb(213,64,8)" fg:x="65" fg:w="2"/><text x="14.6305%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="14.3805%" y="772" width="0.4425%" height="15" fill="rgb(210,75,36)" fg:x="65" fg:w="2"/><text x="14.6305%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="14.3805%" y="788" width="0.4425%" height="15" fill="rgb(229,88,21)" fg:x="65" fg:w="2"/><text x="14.6305%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="14.3805%" y="804" width="0.4425%" height="15" fill="rgb(252,204,47)" fg:x="65" fg:w="2"/><text x="14.6305%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="14.3805%" y="820" width="0.4425%" height="15" fill="rgb(208,77,27)" fg:x="65" fg:w="2"/><text x="14.6305%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="14.3805%" y="836" width="0.4425%" height="15" fill="rgb(221,76,26)" fg:x="65" fg:w="2"/><text x="14.6305%" y="846.50"></text></g><g><title><module> (tornado/log.py:15) (2 samples, 0.44%)</title><rect x="14.3805%" y="852" width="0.4425%" height="15" fill="rgb(225,139,18)" fg:x="65" fg:w="2"/><text x="14.6305%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="14.3805%" y="868" width="0.4425%" height="15" fill="rgb(230,137,11)" fg:x="65" fg:w="2"/><text x="14.6305%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="14.3805%" y="884" width="0.4425%" height="15" fill="rgb(212,28,1)" fg:x="65" fg:w="2"/><text x="14.6305%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="14.3805%" y="900" width="0.4425%" height="15" fill="rgb(248,164,17)" fg:x="65" fg:w="2"/><text x="14.6305%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="14.3805%" y="916" width="0.4425%" height="15" fill="rgb(222,171,42)" fg:x="65" fg:w="2"/><text x="14.6305%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="14.3805%" y="932" width="0.4425%" height="15" fill="rgb(243,84,45)" fg:x="65" fg:w="2"/><text x="14.6305%" y="942.50"></text></g><g><title><module> (tornado/escape.py:16) (1 samples, 0.22%)</title><rect x="14.6018%" y="948" width="0.2212%" height="15" fill="rgb(252,49,23)" fg:x="66" fg:w="1"/><text x="14.8518%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="14.6018%" y="964" width="0.2212%" height="15" fill="rgb(215,19,7)" fg:x="66" fg:w="1"/><text x="14.8518%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="14.6018%" y="980" width="0.2212%" height="15" fill="rgb(238,81,41)" fg:x="66" fg:w="1"/><text x="14.8518%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="14.6018%" y="996" width="0.2212%" height="15" fill="rgb(210,199,37)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="14.6018%" y="1012" width="0.2212%" height="15" fill="rgb(244,192,49)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="14.6018%" y="1028" width="0.2212%" height="15" fill="rgb(226,211,11)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1038.50"></text></g><g><title><module> (tornado/util.py:1) (1 samples, 0.22%)</title><rect x="14.6018%" y="1044" width="0.2212%" height="15" fill="rgb(236,162,54)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="14.6018%" y="1060" width="0.2212%" height="15" fill="rgb(220,229,9)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="14.6018%" y="1076" width="0.2212%" height="15" fill="rgb(250,87,22)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="14.6018%" y="1092" width="0.2212%" height="15" fill="rgb(239,43,17)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1102.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="14.6018%" y="1108" width="0.2212%" height="15" fill="rgb(231,177,25)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1118.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="14.6018%" y="1124" width="0.2212%" height="15" fill="rgb(219,179,1)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="14.6018%" y="1140" width="0.2212%" height="15" fill="rgb(238,219,53)" fg:x="66" fg:w="1"/><text x="14.8518%" y="1150.50"></text></g><g><title><module> (distributed/actor.py:1) (18 samples, 3.98%)</title><rect x="11.0619%" y="564" width="3.9823%" height="15" fill="rgb(232,167,36)" fg:x="50" fg:w="18"/><text x="11.3119%" y="574.50"><mod..</text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.22%)</title><rect x="14.8230%" y="580" width="0.2212%" height="15" fill="rgb(244,19,51)" fg:x="67" fg:w="1"/><text x="15.0730%" y="590.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.22%)</title><rect x="14.8230%" y="596" width="0.2212%" height="15" fill="rgb(224,6,22)" fg:x="67" fg:w="1"/><text x="15.0730%" y="606.50"></text></g><g><title>_frozen_get_del_attr (dataclasses.py:550) (1 samples, 0.22%)</title><rect x="14.8230%" y="612" width="0.2212%" height="15" fill="rgb(224,145,5)" fg:x="67" fg:w="1"/><text x="15.0730%" y="622.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.22%)</title><rect x="14.8230%" y="628" width="0.2212%" height="15" fill="rgb(234,130,49)" fg:x="67" fg:w="1"/><text x="15.0730%" y="638.50"></text></g><g><title><module> (distributed/deploy/adaptive.py:1) (1 samples, 0.22%)</title><rect x="15.0442%" y="660" width="0.2212%" height="15" fill="rgb(254,6,2)" fg:x="68" fg:w="1"/><text x="15.2942%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.0442%" y="676" width="0.2212%" height="15" fill="rgb(208,96,46)" fg:x="68" fg:w="1"/><text x="15.2942%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.0442%" y="692" width="0.2212%" height="15" fill="rgb(239,3,39)" fg:x="68" fg:w="1"/><text x="15.2942%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.0442%" y="708" width="0.2212%" height="15" fill="rgb(233,210,1)" fg:x="68" fg:w="1"/><text x="15.2942%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.0442%" y="724" width="0.2212%" height="15" fill="rgb(244,137,37)" fg:x="68" fg:w="1"/><text x="15.2942%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.0442%" y="740" width="0.2212%" height="15" fill="rgb(240,136,2)" fg:x="68" fg:w="1"/><text x="15.2942%" y="750.50"></text></g><g><title><module> (distributed/deploy/adaptive_core.py:1) (1 samples, 0.22%)</title><rect x="15.0442%" y="756" width="0.2212%" height="15" fill="rgb(239,18,37)" fg:x="68" fg:w="1"/><text x="15.2942%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="15.0442%" y="772" width="0.2212%" height="15" fill="rgb(218,185,22)" fg:x="68" fg:w="1"/><text x="15.2942%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 4.65%)</title><rect x="10.8407%" y="484" width="4.6460%" height="15" fill="rgb(225,218,4)" fg:x="49" fg:w="21"/><text x="11.0907%" y="494.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 4.65%)</title><rect x="10.8407%" y="500" width="4.6460%" height="15" fill="rgb(230,182,32)" fg:x="49" fg:w="21"/><text x="11.0907%" y="510.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (20 samples, 4.42%)</title><rect x="11.0619%" y="516" width="4.4248%" height="15" fill="rgb(242,56,43)" fg:x="50" fg:w="20"/><text x="11.3119%" y="526.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (20 samples, 4.42%)</title><rect x="11.0619%" y="532" width="4.4248%" height="15" fill="rgb(233,99,24)" fg:x="50" fg:w="20"/><text x="11.3119%" y="542.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (20 samples, 4.42%)</title><rect x="11.0619%" y="548" width="4.4248%" height="15" fill="rgb(234,209,42)" fg:x="50" fg:w="20"/><text x="11.3119%" y="558.50">_call..</text></g><g><title><module> (distributed/deploy/__init__.py:1) (2 samples, 0.44%)</title><rect x="15.0442%" y="564" width="0.4425%" height="15" fill="rgb(227,7,12)" fg:x="68" fg:w="2"/><text x="15.2942%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="15.0442%" y="580" width="0.4425%" height="15" fill="rgb(245,203,43)" fg:x="68" fg:w="2"/><text x="15.2942%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="15.0442%" y="596" width="0.4425%" height="15" fill="rgb(238,205,33)" fg:x="68" fg:w="2"/><text x="15.2942%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="15.0442%" y="612" width="0.4425%" height="15" fill="rgb(231,56,7)" fg:x="68" fg:w="2"/><text x="15.2942%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="15.0442%" y="628" width="0.4425%" height="15" fill="rgb(244,186,29)" fg:x="68" fg:w="2"/><text x="15.2942%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="15.0442%" y="644" width="0.4425%" height="15" fill="rgb(234,111,31)" fg:x="68" fg:w="2"/><text x="15.2942%" y="654.50"></text></g><g><title><module> (distributed/deploy/local.py:1) (1 samples, 0.22%)</title><rect x="15.2655%" y="660" width="0.2212%" height="15" fill="rgb(241,149,10)" fg:x="69" fg:w="1"/><text x="15.5155%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.2655%" y="676" width="0.2212%" height="15" fill="rgb(249,206,44)" fg:x="69" fg:w="1"/><text x="15.5155%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.2655%" y="692" width="0.2212%" height="15" fill="rgb(251,153,30)" fg:x="69" fg:w="1"/><text x="15.5155%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.2655%" y="708" width="0.2212%" height="15" fill="rgb(239,152,38)" fg:x="69" fg:w="1"/><text x="15.5155%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.2655%" y="724" width="0.2212%" height="15" fill="rgb(249,139,47)" fg:x="69" fg:w="1"/><text x="15.5155%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.2655%" y="740" width="0.2212%" height="15" fill="rgb(244,64,35)" fg:x="69" fg:w="1"/><text x="15.5155%" y="750.50"></text></g><g><title><module> (distributed/deploy/spec.py:1) (1 samples, 0.22%)</title><rect x="15.2655%" y="756" width="0.2212%" height="15" fill="rgb(216,46,15)" fg:x="69" fg:w="1"/><text x="15.5155%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.2655%" y="772" width="0.2212%" height="15" fill="rgb(250,74,19)" fg:x="69" fg:w="1"/><text x="15.5155%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.2655%" y="788" width="0.2212%" height="15" fill="rgb(249,42,33)" fg:x="69" fg:w="1"/><text x="15.5155%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.2655%" y="804" width="0.2212%" height="15" fill="rgb(242,149,17)" fg:x="69" fg:w="1"/><text x="15.5155%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.2655%" y="820" width="0.2212%" height="15" fill="rgb(244,29,21)" fg:x="69" fg:w="1"/><text x="15.5155%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.2655%" y="836" width="0.2212%" height="15" fill="rgb(220,130,37)" fg:x="69" fg:w="1"/><text x="15.5155%" y="846.50"></text></g><g><title><module> (distributed/scheduler.py:1) (1 samples, 0.22%)</title><rect x="15.2655%" y="852" width="0.2212%" height="15" fill="rgb(211,67,2)" fg:x="69" fg:w="1"/><text x="15.5155%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.2655%" y="868" width="0.2212%" height="15" fill="rgb(235,68,52)" fg:x="69" fg:w="1"/><text x="15.5155%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.2655%" y="884" width="0.2212%" height="15" fill="rgb(246,142,3)" fg:x="69" fg:w="1"/><text x="15.5155%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.2655%" y="900" width="0.2212%" height="15" fill="rgb(241,25,7)" fg:x="69" fg:w="1"/><text x="15.5155%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.2655%" y="916" width="0.2212%" height="15" fill="rgb(242,119,39)" fg:x="69" fg:w="1"/><text x="15.5155%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.2655%" y="932" width="0.2212%" height="15" fill="rgb(241,98,45)" fg:x="69" fg:w="1"/><text x="15.5155%" y="942.50"></text></g><g><title><module> (distributed/shuffle/__init__.py:1) (1 samples, 0.22%)</title><rect x="15.2655%" y="948" width="0.2212%" height="15" fill="rgb(254,28,30)" fg:x="69" fg:w="1"/><text x="15.5155%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.2655%" y="964" width="0.2212%" height="15" fill="rgb(241,142,54)" fg:x="69" fg:w="1"/><text x="15.5155%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.2655%" y="980" width="0.2212%" height="15" fill="rgb(222,85,15)" fg:x="69" fg:w="1"/><text x="15.5155%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.2655%" y="996" width="0.2212%" height="15" fill="rgb(210,85,47)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.2655%" y="1012" width="0.2212%" height="15" fill="rgb(224,206,25)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.2655%" y="1028" width="0.2212%" height="15" fill="rgb(243,201,19)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1038.50"></text></g><g><title><module> (distributed/shuffle/_merge.py:2) (1 samples, 0.22%)</title><rect x="15.2655%" y="1044" width="0.2212%" height="15" fill="rgb(236,59,4)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="15.2655%" y="1060" width="0.2212%" height="15" fill="rgb(254,179,45)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="15.2655%" y="1076" width="0.2212%" height="15" fill="rgb(226,14,10)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="15.2655%" y="1092" width="0.2212%" height="15" fill="rgb(244,27,41)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="15.2655%" y="1108" width="0.2212%" height="15" fill="rgb(235,35,32)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="15.2655%" y="1124" width="0.2212%" height="15" fill="rgb(218,68,31)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1134.50"></text></g><g><title><module> (distributed/shuffle/_core.py:1) (1 samples, 0.22%)</title><rect x="15.2655%" y="1140" width="0.2212%" height="15" fill="rgb(207,120,37)" fg:x="69" fg:w="1"/><text x="15.5155%" y="1150.50"></text></g><g><title><module> (dask/distributed.py:3) (24 samples, 5.31%)</title><rect x="10.8407%" y="372" width="5.3097%" height="15" fill="rgb(227,98,0)" fg:x="49" fg:w="24"/><text x="11.0907%" y="382.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 5.31%)</title><rect x="10.8407%" y="388" width="5.3097%" height="15" fill="rgb(207,7,3)" fg:x="49" fg:w="24"/><text x="11.0907%" y="398.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 5.31%)</title><rect x="10.8407%" y="404" width="5.3097%" height="15" fill="rgb(206,98,19)" fg:x="49" fg:w="24"/><text x="11.0907%" y="414.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 5.31%)</title><rect x="10.8407%" y="420" width="5.3097%" height="15" fill="rgb(217,5,26)" fg:x="49" fg:w="24"/><text x="11.0907%" y="430.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 5.31%)</title><rect x="10.8407%" y="436" width="5.3097%" height="15" fill="rgb(235,190,38)" fg:x="49" fg:w="24"/><text x="11.0907%" y="446.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 5.31%)</title><rect x="10.8407%" y="452" width="5.3097%" height="15" fill="rgb(247,86,24)" fg:x="49" fg:w="24"/><text x="11.0907%" y="462.50">_call_..</text></g><g><title><module> (distributed/__init__.py:1) (24 samples, 5.31%)</title><rect x="10.8407%" y="468" width="5.3097%" height="15" fill="rgb(205,101,16)" fg:x="49" fg:w="24"/><text x="11.0907%" y="478.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="15.4867%" y="484" width="0.6637%" height="15" fill="rgb(246,168,33)" fg:x="70" fg:w="3"/><text x="15.7367%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="15.4867%" y="500" width="0.6637%" height="15" fill="rgb(231,114,1)" fg:x="70" fg:w="3"/><text x="15.7367%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="15.4867%" y="516" width="0.6637%" height="15" fill="rgb(207,184,53)" fg:x="70" fg:w="3"/><text x="15.7367%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="15.4867%" y="532" width="0.6637%" height="15" fill="rgb(224,95,51)" fg:x="70" fg:w="3"/><text x="15.7367%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="15.4867%" y="548" width="0.6637%" height="15" fill="rgb(212,188,45)" fg:x="70" fg:w="3"/><text x="15.7367%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="15.4867%" y="564" width="0.6637%" height="15" fill="rgb(223,154,38)" fg:x="70" fg:w="3"/><text x="15.7367%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="15.4867%" y="580" width="0.6637%" height="15" fill="rgb(251,22,52)" fg:x="70" fg:w="3"/><text x="15.7367%" y="590.50"></text></g><g><title><module> (distributed/config.py:1) (3 samples, 0.66%)</title><rect x="15.4867%" y="596" width="0.6637%" height="15" fill="rgb(229,209,22)" fg:x="70" fg:w="3"/><text x="15.7367%" y="606.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (3 samples, 0.66%)</title><rect x="15.4867%" y="612" width="0.6637%" height="15" fill="rgb(234,138,34)" fg:x="70" fg:w="3"/><text x="15.7367%" y="622.50"></text></g><g><title>load (yaml/__init__.py:74) (3 samples, 0.66%)</title><rect x="15.4867%" y="628" width="0.6637%" height="15" fill="rgb(212,95,11)" fg:x="70" fg:w="3"/><text x="15.7367%" y="638.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (3 samples, 0.66%)</title><rect x="15.4867%" y="644" width="0.6637%" height="15" fill="rgb(240,179,47)" fg:x="70" fg:w="3"/><text x="15.7367%" y="654.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (3 samples, 0.66%)</title><rect x="15.4867%" y="660" width="0.6637%" height="15" fill="rgb(240,163,11)" fg:x="70" fg:w="3"/><text x="15.7367%" y="670.50"></text></g><g><title>compose_document (yaml/composer.py:50) (3 samples, 0.66%)</title><rect x="15.4867%" y="676" width="0.6637%" height="15" fill="rgb(236,37,12)" fg:x="70" fg:w="3"/><text x="15.7367%" y="686.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.66%)</title><rect x="15.4867%" y="692" width="0.6637%" height="15" fill="rgb(232,164,16)" fg:x="70" fg:w="3"/><text x="15.7367%" y="702.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.66%)</title><rect x="15.4867%" y="708" width="0.6637%" height="15" fill="rgb(244,205,15)" fg:x="70" fg:w="3"/><text x="15.7367%" y="718.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.66%)</title><rect x="15.4867%" y="724" width="0.6637%" height="15" fill="rgb(223,117,47)" fg:x="70" fg:w="3"/><text x="15.7367%" y="734.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.66%)</title><rect x="15.4867%" y="740" width="0.6637%" height="15" fill="rgb(244,107,35)" fg:x="70" fg:w="3"/><text x="15.7367%" y="750.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.66%)</title><rect x="15.4867%" y="756" width="0.6637%" height="15" fill="rgb(205,140,8)" fg:x="70" fg:w="3"/><text x="15.7367%" y="766.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.66%)</title><rect x="15.4867%" y="772" width="0.6637%" height="15" fill="rgb(228,84,46)" fg:x="70" fg:w="3"/><text x="15.7367%" y="782.50"></text></g><g><title>compose_node (yaml/composer.py:63) (3 samples, 0.66%)</title><rect x="15.4867%" y="788" width="0.6637%" height="15" fill="rgb(254,188,9)" fg:x="70" fg:w="3"/><text x="15.7367%" y="798.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 0.66%)</title><rect x="15.4867%" y="804" width="0.6637%" height="15" fill="rgb(206,112,54)" fg:x="70" fg:w="3"/><text x="15.7367%" y="814.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.44%)</title><rect x="15.7080%" y="820" width="0.4425%" height="15" fill="rgb(216,84,49)" fg:x="71" fg:w="2"/><text x="15.9580%" y="830.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (2 samples, 0.44%)</title><rect x="15.7080%" y="836" width="0.4425%" height="15" fill="rgb(214,194,35)" fg:x="71" fg:w="2"/><text x="15.9580%" y="846.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.44%)</title><rect x="15.7080%" y="852" width="0.4425%" height="15" fill="rgb(249,28,3)" fg:x="71" fg:w="2"/><text x="15.9580%" y="862.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.44%)</title><rect x="15.7080%" y="868" width="0.4425%" height="15" fill="rgb(222,56,52)" fg:x="71" fg:w="2"/><text x="15.9580%" y="878.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.22%)</title><rect x="15.9292%" y="884" width="0.2212%" height="15" fill="rgb(245,217,50)" fg:x="72" fg:w="1"/><text x="16.1792%" y="894.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.22%)</title><rect x="15.9292%" y="900" width="0.2212%" height="15" fill="rgb(213,201,24)" fg:x="72" fg:w="1"/><text x="16.1792%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.66%)</title><rect x="16.1504%" y="756" width="0.6637%" height="15" fill="rgb(248,116,28)" fg:x="73" fg:w="3"/><text x="16.4004%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="16.1504%" y="772" width="0.6637%" height="15" fill="rgb(219,72,43)" fg:x="73" fg:w="3"/><text x="16.4004%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="16.3717%" y="788" width="0.4425%" height="15" fill="rgb(209,138,14)" fg:x="74" fg:w="2"/><text x="16.6217%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="16.3717%" y="804" width="0.4425%" height="15" fill="rgb(222,18,33)" fg:x="74" fg:w="2"/><text x="16.6217%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="16.3717%" y="820" width="0.4425%" height="15" fill="rgb(213,199,7)" fg:x="74" fg:w="2"/><text x="16.6217%" y="830.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.44%)</title><rect x="16.3717%" y="836" width="0.4425%" height="15" fill="rgb(250,110,10)" fg:x="74" fg:w="2"/><text x="16.6217%" y="846.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.44%)</title><rect x="16.3717%" y="852" width="0.4425%" height="15" fill="rgb(248,123,6)" fg:x="74" fg:w="2"/><text x="16.6217%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="16.3717%" y="868" width="0.4425%" height="15" fill="rgb(206,91,31)" fg:x="74" fg:w="2"/><text x="16.6217%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="16.1504%" y="388" width="1.3274%" height="15" fill="rgb(211,154,13)" fg:x="73" fg:w="6"/><text x="16.4004%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="16.1504%" y="404" width="1.3274%" height="15" fill="rgb(225,148,7)" fg:x="73" fg:w="6"/><text x="16.4004%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="16.1504%" y="420" width="1.3274%" height="15" fill="rgb(220,160,43)" fg:x="73" fg:w="6"/><text x="16.4004%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="16.1504%" y="436" width="1.3274%" height="15" fill="rgb(213,52,39)" fg:x="73" fg:w="6"/><text x="16.4004%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="16.1504%" y="452" width="1.3274%" height="15" fill="rgb(243,137,7)" fg:x="73" fg:w="6"/><text x="16.4004%" y="462.50"></text></g><g><title><module> (dask_sql/physical/utils/statistics.py:1) (6 samples, 1.33%)</title><rect x="16.1504%" y="468" width="1.3274%" height="15" fill="rgb(230,79,13)" fg:x="73" fg:w="6"/><text x="16.4004%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="16.1504%" y="484" width="1.3274%" height="15" fill="rgb(247,105,23)" fg:x="73" fg:w="6"/><text x="16.4004%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="16.1504%" y="500" width="1.3274%" height="15" fill="rgb(223,179,41)" fg:x="73" fg:w="6"/><text x="16.4004%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="16.1504%" y="516" width="1.3274%" height="15" fill="rgb(218,9,34)" fg:x="73" fg:w="6"/><text x="16.4004%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="16.1504%" y="532" width="1.3274%" height="15" fill="rgb(222,106,8)" fg:x="73" fg:w="6"/><text x="16.4004%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="16.1504%" y="548" width="1.3274%" height="15" fill="rgb(211,220,0)" fg:x="73" fg:w="6"/><text x="16.4004%" y="558.50"></text></g><g><title><module> (dask/dataframe/io/parquet/arrow.py:1) (6 samples, 1.33%)</title><rect x="16.1504%" y="564" width="1.3274%" height="15" fill="rgb(229,52,16)" fg:x="73" fg:w="6"/><text x="16.4004%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 1.33%)</title><rect x="16.1504%" y="580" width="1.3274%" height="15" fill="rgb(212,155,18)" fg:x="73" fg:w="6"/><text x="16.4004%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="16.1504%" y="596" width="1.3274%" height="15" fill="rgb(242,21,14)" fg:x="73" fg:w="6"/><text x="16.4004%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="16.1504%" y="612" width="1.3274%" height="15" fill="rgb(222,19,48)" fg:x="73" fg:w="6"/><text x="16.4004%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="16.1504%" y="628" width="1.3274%" height="15" fill="rgb(232,45,27)" fg:x="73" fg:w="6"/><text x="16.4004%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="16.1504%" y="644" width="1.3274%" height="15" fill="rgb(249,103,42)" fg:x="73" fg:w="6"/><text x="16.4004%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="16.1504%" y="660" width="1.3274%" height="15" fill="rgb(246,81,33)" fg:x="73" fg:w="6"/><text x="16.4004%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="16.1504%" y="676" width="1.3274%" height="15" fill="rgb(252,33,42)" fg:x="73" fg:w="6"/><text x="16.4004%" y="686.50"></text></g><g><title><module> (pyarrow/dataset.py:18) (6 samples, 1.33%)</title><rect x="16.1504%" y="692" width="1.3274%" height="15" fill="rgb(209,212,41)" fg:x="73" fg:w="6"/><text x="16.4004%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="16.1504%" y="708" width="1.3274%" height="15" fill="rgb(207,154,6)" fg:x="73" fg:w="6"/><text x="16.4004%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="16.1504%" y="724" width="1.3274%" height="15" fill="rgb(223,64,47)" fg:x="73" fg:w="6"/><text x="16.4004%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="16.1504%" y="740" width="1.3274%" height="15" fill="rgb(211,161,38)" fg:x="73" fg:w="6"/><text x="16.4004%" y="750.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.66%)</title><rect x="16.8142%" y="756" width="0.6637%" height="15" fill="rgb(219,138,40)" fg:x="76" fg:w="3"/><text x="17.0642%" y="766.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.66%)</title><rect x="16.8142%" y="772" width="0.6637%" height="15" fill="rgb(241,228,46)" fg:x="76" fg:w="3"/><text x="17.0642%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="16.8142%" y="788" width="0.6637%" height="15" fill="rgb(223,209,38)" fg:x="76" fg:w="3"/><text x="17.0642%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="17.4779%" y="804" width="0.4425%" height="15" fill="rgb(236,164,45)" fg:x="79" fg:w="2"/><text x="17.7279%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="17.4779%" y="820" width="0.4425%" height="15" fill="rgb(231,15,5)" fg:x="79" fg:w="2"/><text x="17.7279%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="17.4779%" y="836" width="0.4425%" height="15" fill="rgb(252,35,15)" fg:x="79" fg:w="2"/><text x="17.7279%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="17.4779%" y="852" width="0.4425%" height="15" fill="rgb(248,181,18)" fg:x="79" fg:w="2"/><text x="17.7279%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="17.4779%" y="868" width="0.4425%" height="15" fill="rgb(233,39,42)" fg:x="79" fg:w="2"/><text x="17.7279%" y="878.50"></text></g><g><title><module> (sqlalchemy/engine/cursor.py:9) (2 samples, 0.44%)</title><rect x="17.4779%" y="884" width="0.4425%" height="15" fill="rgb(238,110,33)" fg:x="79" fg:w="2"/><text x="17.7279%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="17.4779%" y="900" width="0.4425%" height="15" fill="rgb(233,195,10)" fg:x="79" fg:w="2"/><text x="17.7279%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="17.4779%" y="916" width="0.4425%" height="15" fill="rgb(254,105,3)" fg:x="79" fg:w="2"/><text x="17.7279%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="17.4779%" y="932" width="0.4425%" height="15" fill="rgb(221,225,9)" fg:x="79" fg:w="2"/><text x="17.7279%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="17.4779%" y="948" width="0.4425%" height="15" fill="rgb(224,227,45)" fg:x="79" fg:w="2"/><text x="17.7279%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="17.4779%" y="964" width="0.4425%" height="15" fill="rgb(229,198,43)" fg:x="79" fg:w="2"/><text x="17.7279%" y="974.50"></text></g><g><title><module> (sqlalchemy/engine/result.py:8) (2 samples, 0.44%)</title><rect x="17.4779%" y="980" width="0.4425%" height="15" fill="rgb(206,209,35)" fg:x="79" fg:w="2"/><text x="17.7279%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="17.4779%" y="996" width="0.4425%" height="15" fill="rgb(245,195,53)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="17.4779%" y="1012" width="0.4425%" height="15" fill="rgb(240,92,26)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="17.4779%" y="1028" width="0.4425%" height="15" fill="rgb(207,40,23)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="17.4779%" y="1044" width="0.4425%" height="15" fill="rgb(223,111,35)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="17.4779%" y="1060" width="0.4425%" height="15" fill="rgb(229,147,28)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1070.50"></text></g><g><title><module> (sqlalchemy/engine/row.py:8) (2 samples, 0.44%)</title><rect x="17.4779%" y="1076" width="0.4425%" height="15" fill="rgb(211,29,28)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1086.50"></text></g><g><title>Row (sqlalchemy/engine/row.py:50) (2 samples, 0.44%)</title><rect x="17.4779%" y="1092" width="0.4425%" height="15" fill="rgb(228,72,33)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1102.50"></text></g><g><title>decorate (sqlalchemy/util/deprecations.py:138) (2 samples, 0.44%)</title><rect x="17.4779%" y="1108" width="0.4425%" height="15" fill="rgb(205,214,31)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1118.50"></text></g><g><title>_decorate_with_warning (sqlalchemy/util/deprecations.py:359) (2 samples, 0.44%)</title><rect x="17.4779%" y="1124" width="0.4425%" height="15" fill="rgb(224,111,15)" fg:x="79" fg:w="2"/><text x="17.7279%" y="1134.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (1 samples, 0.22%)</title><rect x="17.6991%" y="1140" width="0.2212%" height="15" fill="rgb(253,21,26)" fg:x="80" fg:w="1"/><text x="17.9491%" y="1150.50"></text></g><g><title>_exec_code_in_env (sqlalchemy/util/langhelpers.py:330) (1 samples, 0.22%)</title><rect x="17.6991%" y="1156" width="0.2212%" height="15" fill="rgb(245,139,43)" fg:x="80" fg:w="1"/><text x="17.9491%" y="1166.50"></text></g><g><title>__go (sqlalchemy/sql/__init__.py:111) (1 samples, 0.22%)</title><rect x="17.9204%" y="1268" width="0.2212%" height="15" fill="rgb(252,170,7)" fg:x="81" fg:w="1"/><text x="18.1704%" y="1278.50"></text></g><g><title>_prepare_annotations (sqlalchemy/sql/annotation.py:589) (1 samples, 0.22%)</title><rect x="17.9204%" y="1284" width="0.2212%" height="15" fill="rgb(231,118,14)" fg:x="81" fg:w="1"/><text x="18.1704%" y="1294.50"></text></g><g><title>_new_annotation_type (sqlalchemy/sql/annotation.py:542) (1 samples, 0.22%)</title><rect x="17.9204%" y="1300" width="0.2212%" height="15" fill="rgb(238,83,0)" fg:x="81" fg:w="1"/><text x="18.1704%" y="1310.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1509) (1 samples, 0.22%)</title><rect x="18.1416%" y="1364" width="0.2212%" height="15" fill="rgb(221,39,39)" fg:x="82" fg:w="1"/><text x="18.3916%" y="1374.50"></text></g><g><title>spec_from_file_location (<frozen importlib._bootstrap_external>:696) (1 samples, 0.22%)</title><rect x="18.1416%" y="1380" width="0.2212%" height="15" fill="rgb(222,119,46)" fg:x="82" fg:w="1"/><text x="18.3916%" y="1390.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.44%)</title><rect x="18.1416%" y="1300" width="0.4425%" height="15" fill="rgb(222,165,49)" fg:x="82" fg:w="2"/><text x="18.3916%" y="1310.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 0.44%)</title><rect x="18.1416%" y="1316" width="0.4425%" height="15" fill="rgb(219,113,52)" fg:x="82" fg:w="2"/><text x="18.3916%" y="1326.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 0.44%)</title><rect x="18.1416%" y="1332" width="0.4425%" height="15" fill="rgb(214,7,15)" fg:x="82" fg:w="2"/><text x="18.3916%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 0.44%)</title><rect x="18.1416%" y="1348" width="0.4425%" height="15" fill="rgb(235,32,4)" fg:x="82" fg:w="2"/><text x="18.3916%" y="1358.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="18.3628%" y="1364" width="0.2212%" height="15" fill="rgb(238,90,54)" fg:x="83" fg:w="1"/><text x="18.6128%" y="1374.50"></text></g><g><title>GenerativeSelect (sqlalchemy/sql/selectable.py:3740) (2 samples, 0.44%)</title><rect x="18.5841%" y="1940" width="0.4425%" height="15" fill="rgb(213,208,19)" fg:x="84" fg:w="2"/><text x="18.8341%" y="1950.50"></text></g><g><title>_generative (sqlalchemy/sql/base.py:268) (2 samples, 0.44%)</title><rect x="18.5841%" y="1956" width="0.4425%" height="15" fill="rgb(233,156,4)" fg:x="84" fg:w="2"/><text x="18.8341%" y="1966.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (2 samples, 0.44%)</title><rect x="18.5841%" y="1972" width="0.4425%" height="15" fill="rgb(207,194,5)" fg:x="84" fg:w="2"/><text x="18.8341%" y="1982.50"></text></g><g><title>_exec_code_in_env (sqlalchemy/util/langhelpers.py:330) (1 samples, 0.22%)</title><rect x="18.8053%" y="1988" width="0.2212%" height="15" fill="rgb(206,111,30)" fg:x="85" fg:w="1"/><text x="19.0553%" y="1998.50"></text></g><g><title><module> (sqlalchemy/sql/crud.py:9) (3 samples, 0.66%)</title><rect x="18.5841%" y="1476" width="0.6637%" height="15" fill="rgb(243,70,54)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1486.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="18.5841%" y="1492" width="0.6637%" height="15" fill="rgb(242,28,8)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1502.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1508" width="0.6637%" height="15" fill="rgb(219,106,18)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="18.5841%" y="1524" width="0.6637%" height="15" fill="rgb(244,222,10)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="18.5841%" y="1540" width="0.6637%" height="15" fill="rgb(236,179,52)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1550.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="18.5841%" y="1556" width="0.6637%" height="15" fill="rgb(213,23,39)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="18.5841%" y="1572" width="0.6637%" height="15" fill="rgb(238,48,10)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1582.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1588" width="0.6637%" height="15" fill="rgb(251,196,23)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1598.50"></text></g><g><title><module> (sqlalchemy/sql/dml.py:7) (3 samples, 0.66%)</title><rect x="18.5841%" y="1604" width="0.6637%" height="15" fill="rgb(250,152,24)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1614.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="18.5841%" y="1620" width="0.6637%" height="15" fill="rgb(209,150,17)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1636" width="0.6637%" height="15" fill="rgb(234,202,34)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="18.5841%" y="1652" width="0.6637%" height="15" fill="rgb(253,148,53)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="18.5841%" y="1668" width="0.6637%" height="15" fill="rgb(218,129,16)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="18.5841%" y="1684" width="0.6637%" height="15" fill="rgb(216,85,19)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="18.5841%" y="1700" width="0.6637%" height="15" fill="rgb(235,228,7)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1710.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1716" width="0.6637%" height="15" fill="rgb(245,175,0)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1726.50"></text></g><g><title><module> (sqlalchemy/sql/util.py:9) (3 samples, 0.66%)</title><rect x="18.5841%" y="1732" width="0.6637%" height="15" fill="rgb(208,168,36)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1742.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="18.5841%" y="1748" width="0.6637%" height="15" fill="rgb(246,171,24)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1758.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="18.5841%" y="1764" width="0.6637%" height="15" fill="rgb(215,142,24)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1774.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="18.5841%" y="1780" width="0.6637%" height="15" fill="rgb(250,187,7)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1790.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="18.5841%" y="1796" width="0.6637%" height="15" fill="rgb(228,66,33)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1806.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1812" width="0.6637%" height="15" fill="rgb(234,215,21)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1822.50"></text></g><g><title><module> (sqlalchemy/sql/schema.py:8) (3 samples, 0.66%)</title><rect x="18.5841%" y="1828" width="0.6637%" height="15" fill="rgb(222,191,20)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="18.5841%" y="1844" width="0.6637%" height="15" fill="rgb(245,79,54)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="18.5841%" y="1860" width="0.6637%" height="15" fill="rgb(240,10,37)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="18.5841%" y="1876" width="0.6637%" height="15" fill="rgb(214,192,32)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="18.5841%" y="1892" width="0.6637%" height="15" fill="rgb(209,36,54)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="18.5841%" y="1908" width="0.6637%" height="15" fill="rgb(220,10,11)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1918.50"></text></g><g><title><module> (sqlalchemy/sql/selectable.py:8) (3 samples, 0.66%)</title><rect x="18.5841%" y="1924" width="0.6637%" height="15" fill="rgb(221,106,17)" fg:x="84" fg:w="3"/><text x="18.8341%" y="1934.50"></text></g><g><title>Select (sqlalchemy/sql/selectable.py:5036) (1 samples, 0.22%)</title><rect x="19.0265%" y="1940" width="0.2212%" height="15" fill="rgb(251,142,44)" fg:x="86" fg:w="1"/><text x="19.2765%" y="1950.50"></text></g><g><title>_generative (sqlalchemy/sql/base.py:268) (1 samples, 0.22%)</title><rect x="19.0265%" y="1956" width="0.2212%" height="15" fill="rgb(238,13,15)" fg:x="86" fg:w="1"/><text x="19.2765%" y="1966.50"></text></g><g><title>decorate (sqlalchemy/util/langhelpers.py:248) (1 samples, 0.22%)</title><rect x="19.0265%" y="1972" width="0.2212%" height="15" fill="rgb(208,107,27)" fg:x="86" fg:w="1"/><text x="19.2765%" y="1982.50"></text></g><g><title>inspect_getfullargspec (sqlalchemy/util/compat.py:67) (1 samples, 0.22%)</title><rect x="19.0265%" y="1988" width="0.2212%" height="15" fill="rgb(205,136,37)" fg:x="86" fg:w="1"/><text x="19.2765%" y="1998.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="18.5841%" y="1316" width="0.8850%" height="15" fill="rgb(250,205,27)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="18.5841%" y="1332" width="0.8850%" height="15" fill="rgb(210,80,43)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1342.50"></text></g><g><title><module> (sqlalchemy/sql/compiler.py:9) (4 samples, 0.88%)</title><rect x="18.5841%" y="1348" width="0.8850%" height="15" fill="rgb(247,160,36)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.88%)</title><rect x="18.5841%" y="1364" width="0.8850%" height="15" fill="rgb(234,13,49)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="18.5841%" y="1380" width="0.8850%" height="15" fill="rgb(234,122,0)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="18.5841%" y="1396" width="0.8850%" height="15" fill="rgb(207,146,38)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="18.5841%" y="1412" width="0.8850%" height="15" fill="rgb(207,177,25)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="18.5841%" y="1428" width="0.8850%" height="15" fill="rgb(211,178,42)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1438.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="18.5841%" y="1444" width="0.8850%" height="15" fill="rgb(230,69,54)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="18.5841%" y="1460" width="0.8850%" height="15" fill="rgb(214,135,41)" fg:x="84" fg:w="4"/><text x="18.8341%" y="1470.50"></text></g><g><title><module> (sqlalchemy/sql/functions.py:9) (1 samples, 0.22%)</title><rect x="19.2478%" y="1476" width="0.2212%" height="15" fill="rgb(237,67,25)" fg:x="87" fg:w="1"/><text x="19.4978%" y="1486.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="17.9204%" y="1156" width="1.7699%" height="15" fill="rgb(222,189,50)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="17.9204%" y="1172" width="1.7699%" height="15" fill="rgb(245,148,34)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="17.9204%" y="1188" width="1.7699%" height="15" fill="rgb(222,29,6)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="17.9204%" y="1204" width="1.7699%" height="15" fill="rgb(221,189,43)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="17.9204%" y="1220" width="1.7699%" height="15" fill="rgb(207,36,27)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="17.9204%" y="1236" width="1.7699%" height="15" fill="rgb(217,90,24)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1246.50"></text></g><g><title><module> (sqlalchemy/sql/__init__.py:7) (8 samples, 1.77%)</title><rect x="17.9204%" y="1252" width="1.7699%" height="15" fill="rgb(224,66,35)" fg:x="81" fg:w="8"/><text x="18.1704%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="18.1416%" y="1268" width="1.5487%" height="15" fill="rgb(221,13,50)" fg:x="82" fg:w="7"/><text x="18.3916%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="18.1416%" y="1284" width="1.5487%" height="15" fill="rgb(236,68,49)" fg:x="82" fg:w="7"/><text x="18.3916%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="18.5841%" y="1300" width="1.1062%" height="15" fill="rgb(229,146,28)" fg:x="84" fg:w="5"/><text x="18.8341%" y="1310.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="19.4690%" y="1316" width="0.2212%" height="15" fill="rgb(225,31,38)" fg:x="88" fg:w="1"/><text x="19.7190%" y="1326.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.22%)</title><rect x="19.4690%" y="1332" width="0.2212%" height="15" fill="rgb(250,208,3)" fg:x="88" fg:w="1"/><text x="19.7190%" y="1342.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.22%)</title><rect x="19.4690%" y="1348" width="0.2212%" height="15" fill="rgb(246,54,23)" fg:x="88" fg:w="1"/><text x="19.7190%" y="1358.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.22%)</title><rect x="19.4690%" y="1364" width="0.2212%" height="15" fill="rgb(243,76,11)" fg:x="88" fg:w="1"/><text x="19.7190%" y="1374.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.22%)</title><rect x="19.4690%" y="1380" width="0.2212%" height="15" fill="rgb(245,21,50)" fg:x="88" fg:w="1"/><text x="19.7190%" y="1390.50"></text></g><g><title>_ConnectionFairy (sqlalchemy/pool/base.py:1189) (1 samples, 0.22%)</title><rect x="19.6903%" y="1444" width="0.2212%" height="15" fill="rgb(228,9,43)" fg:x="89" fg:w="1"/><text x="19.9403%" y="1454.50"></text></g><g><title>decorate (sqlalchemy/util/deprecations.py:138) (1 samples, 0.22%)</title><rect x="19.6903%" y="1460" width="0.2212%" height="15" fill="rgb(208,100,47)" fg:x="89" fg:w="1"/><text x="19.9403%" y="1470.50"></text></g><g><title>_decorate_with_warning (sqlalchemy/util/deprecations.py:359) (1 samples, 0.22%)</title><rect x="19.6903%" y="1476" width="0.2212%" height="15" fill="rgb(232,26,8)" fg:x="89" fg:w="1"/><text x="19.9403%" y="1486.50"></text></g><g><title>inject_docstring_text (sqlalchemy/util/langhelpers.py:2121) (1 samples, 0.22%)</title><rect x="19.6903%" y="1492" width="0.2212%" height="15" fill="rgb(216,166,38)" fg:x="89" fg:w="1"/><text x="19.9403%" y="1502.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.22%)</title><rect x="19.6903%" y="1508" width="0.2212%" height="15" fill="rgb(251,202,51)" fg:x="89" fg:w="1"/><text x="19.9403%" y="1518.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 2.88%)</title><rect x="17.4779%" y="708" width="2.8761%" height="15" fill="rgb(254,216,34)" fg:x="79" fg:w="13"/><text x="17.7279%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 2.88%)</title><rect x="17.4779%" y="724" width="2.8761%" height="15" fill="rgb(251,32,27)" fg:x="79" fg:w="13"/><text x="17.7279%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 2.88%)</title><rect x="17.4779%" y="740" width="2.8761%" height="15" fill="rgb(208,127,28)" fg:x="79" fg:w="13"/><text x="17.7279%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 2.88%)</title><rect x="17.4779%" y="756" width="2.8761%" height="15" fill="rgb(224,137,22)" fg:x="79" fg:w="13"/><text x="17.7279%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 2.88%)</title><rect x="17.4779%" y="772" width="2.8761%" height="15" fill="rgb(254,70,32)" fg:x="79" fg:w="13"/><text x="17.7279%" y="782.50">_c..</text></g><g><title><module> (sqlalchemy/engine/__init__.py:8) (13 samples, 2.88%)</title><rect x="17.4779%" y="788" width="2.8761%" height="15" fill="rgb(229,75,37)" fg:x="79" fg:w="13"/><text x="17.7279%" y="798.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 2.43%)</title><rect x="17.9204%" y="804" width="2.4336%" height="15" fill="rgb(252,64,23)" fg:x="81" fg:w="11"/><text x="18.1704%" y="814.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="17.9204%" y="820" width="2.4336%" height="15" fill="rgb(232,162,48)" fg:x="81" fg:w="11"/><text x="18.1704%" y="830.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="17.9204%" y="836" width="2.4336%" height="15" fill="rgb(246,160,12)" fg:x="81" fg:w="11"/><text x="18.1704%" y="846.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="17.9204%" y="852" width="2.4336%" height="15" fill="rgb(247,166,0)" fg:x="81" fg:w="11"/><text x="18.1704%" y="862.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.43%)</title><rect x="17.9204%" y="868" width="2.4336%" height="15" fill="rgb(249,219,21)" fg:x="81" fg:w="11"/><text x="18.1704%" y="878.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.43%)</title><rect x="17.9204%" y="884" width="2.4336%" height="15" fill="rgb(205,209,3)" fg:x="81" fg:w="11"/><text x="18.1704%" y="894.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="17.9204%" y="900" width="2.4336%" height="15" fill="rgb(243,44,1)" fg:x="81" fg:w="11"/><text x="18.1704%" y="910.50">_c..</text></g><g><title><module> (sqlalchemy/engine/events.py:9) (11 samples, 2.43%)</title><rect x="17.9204%" y="916" width="2.4336%" height="15" fill="rgb(206,159,16)" fg:x="81" fg:w="11"/><text x="18.1704%" y="926.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="17.9204%" y="932" width="2.4336%" height="15" fill="rgb(244,77,30)" fg:x="81" fg:w="11"/><text x="18.1704%" y="942.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="17.9204%" y="948" width="2.4336%" height="15" fill="rgb(218,69,12)" fg:x="81" fg:w="11"/><text x="18.1704%" y="958.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.43%)</title><rect x="17.9204%" y="964" width="2.4336%" height="15" fill="rgb(212,87,7)" fg:x="81" fg:w="11"/><text x="18.1704%" y="974.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.43%)</title><rect x="17.9204%" y="980" width="2.4336%" height="15" fill="rgb(245,114,25)" fg:x="81" fg:w="11"/><text x="18.1704%" y="990.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="17.9204%" y="996" width="2.4336%" height="15" fill="rgb(210,61,42)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1006.50">_c..</text></g><g><title><module> (sqlalchemy/engine/base.py:7) (11 samples, 2.43%)</title><rect x="17.9204%" y="1012" width="2.4336%" height="15" fill="rgb(211,52,33)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1022.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="17.9204%" y="1028" width="2.4336%" height="15" fill="rgb(234,58,33)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1038.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="17.9204%" y="1044" width="2.4336%" height="15" fill="rgb(220,115,36)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1054.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.43%)</title><rect x="17.9204%" y="1060" width="2.4336%" height="15" fill="rgb(243,153,54)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1070.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.43%)</title><rect x="17.9204%" y="1076" width="2.4336%" height="15" fill="rgb(251,47,18)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1086.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="17.9204%" y="1092" width="2.4336%" height="15" fill="rgb(242,102,42)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1102.50">_c..</text></g><g><title><module> (sqlalchemy/engine/interfaces.py:8) (11 samples, 2.43%)</title><rect x="17.9204%" y="1108" width="2.4336%" height="15" fill="rgb(234,31,38)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1118.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="17.9204%" y="1124" width="2.4336%" height="15" fill="rgb(221,117,51)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1134.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="17.9204%" y="1140" width="2.4336%" height="15" fill="rgb(212,20,18)" fg:x="81" fg:w="11"/><text x="18.1704%" y="1150.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="19.6903%" y="1156" width="0.6637%" height="15" fill="rgb(245,133,36)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="19.6903%" y="1172" width="0.6637%" height="15" fill="rgb(212,6,19)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="19.6903%" y="1188" width="0.6637%" height="15" fill="rgb(218,1,36)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1198.50"></text></g><g><title><module> (sqlalchemy/pool/__init__.py:9) (3 samples, 0.66%)</title><rect x="19.6903%" y="1204" width="0.6637%" height="15" fill="rgb(246,84,54)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="19.6903%" y="1220" width="0.6637%" height="15" fill="rgb(242,110,6)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="19.6903%" y="1236" width="0.6637%" height="15" fill="rgb(214,47,5)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="19.6903%" y="1252" width="0.6637%" height="15" fill="rgb(218,159,25)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="19.6903%" y="1268" width="0.6637%" height="15" fill="rgb(215,211,28)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="19.6903%" y="1284" width="0.6637%" height="15" fill="rgb(238,59,32)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="19.6903%" y="1300" width="0.6637%" height="15" fill="rgb(226,82,3)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="19.6903%" y="1316" width="0.6637%" height="15" fill="rgb(240,164,32)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1326.50"></text></g><g><title><module> (sqlalchemy/pool/events.py:7) (3 samples, 0.66%)</title><rect x="19.6903%" y="1332" width="0.6637%" height="15" fill="rgb(232,46,7)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="19.6903%" y="1348" width="0.6637%" height="15" fill="rgb(229,129,53)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="19.6903%" y="1364" width="0.6637%" height="15" fill="rgb(234,188,29)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="19.6903%" y="1380" width="0.6637%" height="15" fill="rgb(246,141,4)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="19.6903%" y="1396" width="0.6637%" height="15" fill="rgb(229,23,39)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="19.6903%" y="1412" width="0.6637%" height="15" fill="rgb(206,12,3)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1422.50"></text></g><g><title><module> (sqlalchemy/pool/base.py:9) (3 samples, 0.66%)</title><rect x="19.6903%" y="1428" width="0.6637%" height="15" fill="rgb(252,226,20)" fg:x="89" fg:w="3"/><text x="19.9403%" y="1438.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="19.9115%" y="1444" width="0.4425%" height="15" fill="rgb(216,123,35)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="19.9115%" y="1460" width="0.4425%" height="15" fill="rgb(212,68,40)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="19.9115%" y="1476" width="0.4425%" height="15" fill="rgb(254,125,32)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="19.9115%" y="1492" width="0.4425%" height="15" fill="rgb(253,97,22)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="19.9115%" y="1508" width="0.4425%" height="15" fill="rgb(241,101,14)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1518.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="19.9115%" y="1524" width="0.4425%" height="15" fill="rgb(238,103,29)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1534.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="19.9115%" y="1540" width="0.4425%" height="15" fill="rgb(233,195,47)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1550.50"></text></g><g><title><module> (sqlalchemy/log.py:9) (2 samples, 0.44%)</title><rect x="19.9115%" y="1556" width="0.4425%" height="15" fill="rgb(246,218,30)" fg:x="90" fg:w="2"/><text x="20.1615%" y="1566.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.22%)</title><rect x="20.3540%" y="1124" width="0.2212%" height="15" fill="rgb(219,145,47)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.3540%" y="1140" width="0.2212%" height="15" fill="rgb(243,12,26)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1150.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="20.3540%" y="1156" width="0.2212%" height="15" fill="rgb(214,87,16)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.3540%" y="1172" width="0.2212%" height="15" fill="rgb(208,99,42)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="20.3540%" y="1188" width="0.2212%" height="15" fill="rgb(253,99,2)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="20.3540%" y="1204" width="0.2212%" height="15" fill="rgb(220,168,23)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="20.3540%" y="1220" width="0.2212%" height="15" fill="rgb(242,38,24)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="20.3540%" y="1236" width="0.2212%" height="15" fill="rgb(225,182,9)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.3540%" y="1252" width="0.2212%" height="15" fill="rgb(243,178,37)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1262.50"></text></g><g><title><module> (sqlalchemy/exc.py:8) (1 samples, 0.22%)</title><rect x="20.3540%" y="1268" width="0.2212%" height="15" fill="rgb(232,139,19)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1278.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="20.3540%" y="1284" width="0.2212%" height="15" fill="rgb(225,201,24)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.3540%" y="1300" width="0.2212%" height="15" fill="rgb(221,47,46)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="20.3540%" y="1316" width="0.2212%" height="15" fill="rgb(249,23,13)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1326.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="20.3540%" y="1332" width="0.2212%" height="15" fill="rgb(219,9,5)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1342.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="20.3540%" y="1348" width="0.2212%" height="15" fill="rgb(254,171,16)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1358.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="20.3540%" y="1364" width="0.2212%" height="15" fill="rgb(230,171,20)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.3540%" y="1380" width="0.2212%" height="15" fill="rgb(210,71,41)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1390.50"></text></g><g><title><module> (sqlalchemy/util/compat.py:9) (1 samples, 0.22%)</title><rect x="20.3540%" y="1396" width="0.2212%" height="15" fill="rgb(206,173,20)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1406.50"></text></g><g><title>__new__ (typing.py:1866) (1 samples, 0.22%)</title><rect x="20.3540%" y="1412" width="0.2212%" height="15" fill="rgb(233,88,34)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1422.50"></text></g><g><title>_make_nmtuple (typing.py:1846) (1 samples, 0.22%)</title><rect x="20.3540%" y="1428" width="0.2212%" height="15" fill="rgb(223,209,46)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1438.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.22%)</title><rect x="20.3540%" y="1444" width="0.2212%" height="15" fill="rgb(250,43,18)" fg:x="92" fg:w="1"/><text x="20.6040%" y="1454.50"></text></g><g><title><module> (dask_sql/context.py:1) (21 samples, 4.65%)</title><rect x="16.1504%" y="372" width="4.6460%" height="15" fill="rgb(208,13,10)" fg:x="73" fg:w="21"/><text x="16.4004%" y="382.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 3.32%)</title><rect x="17.4779%" y="388" width="3.3186%" height="15" fill="rgb(212,200,36)" fg:x="79" fg:w="15"/><text x="17.7279%" y="398.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="17.4779%" y="404" width="3.3186%" height="15" fill="rgb(225,90,30)" fg:x="79" fg:w="15"/><text x="17.7279%" y="414.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="17.4779%" y="420" width="3.3186%" height="15" fill="rgb(236,182,39)" fg:x="79" fg:w="15"/><text x="17.7279%" y="430.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="17.4779%" y="436" width="3.3186%" height="15" fill="rgb(212,144,35)" fg:x="79" fg:w="15"/><text x="17.7279%" y="446.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="17.4779%" y="452" width="3.3186%" height="15" fill="rgb(228,63,44)" fg:x="79" fg:w="15"/><text x="17.7279%" y="462.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="17.4779%" y="468" width="3.3186%" height="15" fill="rgb(228,109,6)" fg:x="79" fg:w="15"/><text x="17.7279%" y="478.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="17.4779%" y="484" width="3.3186%" height="15" fill="rgb(238,117,24)" fg:x="79" fg:w="15"/><text x="17.7279%" y="494.50">_ca..</text></g><g><title><module> (dask_sql/input_utils/__init__.py:1) (15 samples, 3.32%)</title><rect x="17.4779%" y="500" width="3.3186%" height="15" fill="rgb(242,26,26)" fg:x="79" fg:w="15"/><text x="17.7279%" y="510.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="17.4779%" y="516" width="3.3186%" height="15" fill="rgb(221,92,48)" fg:x="79" fg:w="15"/><text x="17.7279%" y="526.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="17.4779%" y="532" width="3.3186%" height="15" fill="rgb(209,209,32)" fg:x="79" fg:w="15"/><text x="17.7279%" y="542.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="17.4779%" y="548" width="3.3186%" height="15" fill="rgb(221,70,22)" fg:x="79" fg:w="15"/><text x="17.7279%" y="558.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="17.4779%" y="564" width="3.3186%" height="15" fill="rgb(248,145,5)" fg:x="79" fg:w="15"/><text x="17.7279%" y="574.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="17.4779%" y="580" width="3.3186%" height="15" fill="rgb(226,116,26)" fg:x="79" fg:w="15"/><text x="17.7279%" y="590.50">_ca..</text></g><g><title><module> (dask_sql/input_utils/hive.py:1) (15 samples, 3.32%)</title><rect x="17.4779%" y="596" width="3.3186%" height="15" fill="rgb(244,5,17)" fg:x="79" fg:w="15"/><text x="17.7279%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="17.4779%" y="612" width="3.3186%" height="15" fill="rgb(252,159,33)" fg:x="79" fg:w="15"/><text x="17.7279%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="17.4779%" y="628" width="3.3186%" height="15" fill="rgb(206,71,0)" fg:x="79" fg:w="15"/><text x="17.7279%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="17.4779%" y="644" width="3.3186%" height="15" fill="rgb(233,118,54)" fg:x="79" fg:w="15"/><text x="17.7279%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="17.4779%" y="660" width="3.3186%" height="15" fill="rgb(234,83,48)" fg:x="79" fg:w="15"/><text x="17.7279%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="17.4779%" y="676" width="3.3186%" height="15" fill="rgb(228,3,54)" fg:x="79" fg:w="15"/><text x="17.7279%" y="686.50">_ca..</text></g><g><title><module> (sqlalchemy/__init__.py:8) (15 samples, 3.32%)</title><rect x="17.4779%" y="692" width="3.3186%" height="15" fill="rgb(226,155,13)" fg:x="79" fg:w="15"/><text x="17.7279%" y="702.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="20.3540%" y="708" width="0.4425%" height="15" fill="rgb(241,28,37)" fg:x="92" fg:w="2"/><text x="20.6040%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="20.3540%" y="724" width="0.4425%" height="15" fill="rgb(233,93,10)" fg:x="92" fg:w="2"/><text x="20.6040%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="20.3540%" y="740" width="0.4425%" height="15" fill="rgb(225,113,19)" fg:x="92" fg:w="2"/><text x="20.6040%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="20.3540%" y="756" width="0.4425%" height="15" fill="rgb(241,2,18)" fg:x="92" fg:w="2"/><text x="20.6040%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="20.3540%" y="772" width="0.4425%" height="15" fill="rgb(228,207,21)" fg:x="92" fg:w="2"/><text x="20.6040%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="20.3540%" y="788" width="0.4425%" height="15" fill="rgb(213,211,35)" fg:x="92" fg:w="2"/><text x="20.6040%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="20.3540%" y="804" width="0.4425%" height="15" fill="rgb(209,83,10)" fg:x="92" fg:w="2"/><text x="20.6040%" y="814.50"></text></g><g><title><module> (sqlalchemy/util/__init__.py:9) (2 samples, 0.44%)</title><rect x="20.3540%" y="820" width="0.4425%" height="15" fill="rgb(209,164,1)" fg:x="92" fg:w="2"/><text x="20.6040%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="20.3540%" y="836" width="0.4425%" height="15" fill="rgb(213,184,43)" fg:x="92" fg:w="2"/><text x="20.6040%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="20.3540%" y="852" width="0.4425%" height="15" fill="rgb(231,61,34)" fg:x="92" fg:w="2"/><text x="20.6040%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="20.3540%" y="868" width="0.4425%" height="15" fill="rgb(235,75,3)" fg:x="92" fg:w="2"/><text x="20.6040%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="20.3540%" y="884" width="0.4425%" height="15" fill="rgb(220,106,47)" fg:x="92" fg:w="2"/><text x="20.6040%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="20.3540%" y="900" width="0.4425%" height="15" fill="rgb(210,196,33)" fg:x="92" fg:w="2"/><text x="20.6040%" y="910.50"></text></g><g><title><module> (sqlalchemy/util/_collections.py:9) (2 samples, 0.44%)</title><rect x="20.3540%" y="916" width="0.4425%" height="15" fill="rgb(229,154,42)" fg:x="92" fg:w="2"/><text x="20.6040%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="20.3540%" y="932" width="0.4425%" height="15" fill="rgb(228,114,26)" fg:x="92" fg:w="2"/><text x="20.6040%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="20.3540%" y="948" width="0.4425%" height="15" fill="rgb(208,144,1)" fg:x="92" fg:w="2"/><text x="20.6040%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="20.3540%" y="964" width="0.4425%" height="15" fill="rgb(239,112,37)" fg:x="92" fg:w="2"/><text x="20.6040%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="20.3540%" y="980" width="0.4425%" height="15" fill="rgb(210,96,50)" fg:x="92" fg:w="2"/><text x="20.6040%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="20.3540%" y="996" width="0.4425%" height="15" fill="rgb(222,178,2)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1006.50"></text></g><g><title><module> (sqlalchemy/util/_has_cy.py:8) (2 samples, 0.44%)</title><rect x="20.3540%" y="1012" width="0.4425%" height="15" fill="rgb(226,74,18)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1022.50"></text></g><g><title>_import_cy_extensions (sqlalchemy/util/_has_cy.py:12) (2 samples, 0.44%)</title><rect x="20.3540%" y="1028" width="0.4425%" height="15" fill="rgb(225,67,54)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="20.3540%" y="1044" width="0.4425%" height="15" fill="rgb(251,92,32)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="20.3540%" y="1060" width="0.4425%" height="15" fill="rgb(228,149,22)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="20.3540%" y="1076" width="0.4425%" height="15" fill="rgb(243,54,13)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="20.3540%" y="1092" width="0.4425%" height="15" fill="rgb(243,180,28)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="20.3540%" y="1108" width="0.4425%" height="15" fill="rgb(208,167,24)" fg:x="92" fg:w="2"/><text x="20.6040%" y="1118.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="20.5752%" y="1124" width="0.2212%" height="15" fill="rgb(245,73,45)" fg:x="93" fg:w="1"/><text x="20.8252%" y="1134.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="20.5752%" y="1140" width="0.2212%" height="15" fill="rgb(237,203,48)" fg:x="93" fg:w="1"/><text x="20.8252%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="20.5752%" y="1156" width="0.2212%" height="15" fill="rgb(211,197,16)" fg:x="93" fg:w="1"/><text x="20.8252%" y="1166.50"></text></g><g><title><module> (dask_sql/cmd.py:1) (63 samples, 13.94%)</title><rect x="7.5221%" y="276" width="13.9381%" height="15" fill="rgb(243,99,51)" fg:x="34" fg:w="63"/><text x="7.7721%" y="286.50"><module> (dask_sql/cm..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (63 samples, 13.94%)</title><rect x="7.5221%" y="292" width="13.9381%" height="15" fill="rgb(215,123,29)" fg:x="34" fg:w="63"/><text x="7.7721%" y="302.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (63 samples, 13.94%)</title><rect x="7.5221%" y="308" width="13.9381%" height="15" fill="rgb(239,186,37)" fg:x="34" fg:w="63"/><text x="7.7721%" y="318.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (48 samples, 10.62%)</title><rect x="10.8407%" y="324" width="10.6195%" height="15" fill="rgb(252,136,39)" fg:x="49" fg:w="48"/><text x="11.0907%" y="334.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (48 samples, 10.62%)</title><rect x="10.8407%" y="340" width="10.6195%" height="15" fill="rgb(223,213,32)" fg:x="49" fg:w="48"/><text x="11.0907%" y="350.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (48 samples, 10.62%)</title><rect x="10.8407%" y="356" width="10.6195%" height="15" fill="rgb(233,115,5)" fg:x="49" fg:w="48"/><text x="11.0907%" y="366.50">_call_with_fram..</text></g><g><title><module> (pygments/lexers/sql.py:1) (3 samples, 0.66%)</title><rect x="20.7965%" y="372" width="0.6637%" height="15" fill="rgb(207,226,44)" fg:x="94" fg:w="3"/><text x="21.0465%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="20.7965%" y="388" width="0.6637%" height="15" fill="rgb(208,126,0)" fg:x="94" fg:w="3"/><text x="21.0465%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="20.7965%" y="404" width="0.6637%" height="15" fill="rgb(244,66,21)" fg:x="94" fg:w="3"/><text x="21.0465%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="20.7965%" y="420" width="0.6637%" height="15" fill="rgb(222,97,12)" fg:x="94" fg:w="3"/><text x="21.0465%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="20.7965%" y="436" width="0.6637%" height="15" fill="rgb(219,213,19)" fg:x="94" fg:w="3"/><text x="21.0465%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="20.7965%" y="452" width="0.6637%" height="15" fill="rgb(252,169,30)" fg:x="94" fg:w="3"/><text x="21.0465%" y="462.50"></text></g><g><title><module> (pygments/lexer.py:1) (3 samples, 0.66%)</title><rect x="20.7965%" y="468" width="0.6637%" height="15" fill="rgb(206,32,51)" fg:x="94" fg:w="3"/><text x="21.0465%" y="478.50"></text></g><g><title><module> (fastapi/security/api_key.py:1) (1 samples, 0.22%)</title><rect x="21.4602%" y="932" width="0.2212%" height="15" fill="rgb(250,172,42)" fg:x="97" fg:w="1"/><text x="21.7102%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="21.4602%" y="948" width="0.2212%" height="15" fill="rgb(209,34,43)" fg:x="97" fg:w="1"/><text x="21.7102%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="21.4602%" y="964" width="0.2212%" height="15" fill="rgb(223,11,35)" fg:x="97" fg:w="1"/><text x="21.7102%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="21.4602%" y="980" width="0.2212%" height="15" fill="rgb(251,219,26)" fg:x="97" fg:w="1"/><text x="21.7102%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="21.4602%" y="996" width="0.2212%" height="15" fill="rgb(231,119,3)" fg:x="97" fg:w="1"/><text x="21.7102%" y="1006.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="21.4602%" y="1012" width="0.2212%" height="15" fill="rgb(216,97,11)" fg:x="97" fg:w="1"/><text x="21.7102%" y="1022.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="21.4602%" y="1028" width="0.2212%" height="15" fill="rgb(223,59,9)" fg:x="97" fg:w="1"/><text x="21.7102%" y="1038.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.22%)</title><rect x="21.6814%" y="1124" width="0.2212%" height="15" fill="rgb(233,93,31)" fg:x="98" fg:w="1"/><text x="21.9314%" y="1134.50"></text></g><g><title>expand_grouped_metadata (pydantic/_internal/_known_annotated_metadata.py:116) (1 samples, 0.22%)</title><rect x="21.6814%" y="1140" width="0.2212%" height="15" fill="rgb(239,81,33)" fg:x="98" fg:w="1"/><text x="21.9314%" y="1150.50"></text></g><g><title>__instancecheck__ (typing.py:1141) (1 samples, 0.22%)</title><rect x="21.6814%" y="1156" width="0.2212%" height="15" fill="rgb(213,120,34)" fg:x="98" fg:w="1"/><text x="21.9314%" y="1166.50"></text></g><g><title><genexpr> (typing.py:1149) (1 samples, 0.22%)</title><rect x="21.6814%" y="1172" width="0.2212%" height="15" fill="rgb(243,49,53)" fg:x="98" fg:w="1"/><text x="21.9314%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="21.4602%" y="676" width="0.6637%" height="15" fill="rgb(247,216,33)" fg:x="97" fg:w="3"/><text x="21.7102%" y="686.50"></text></g><g><title><module> (fastapi/dependencies/models.py:1) (3 samples, 0.66%)</title><rect x="21.4602%" y="692" width="0.6637%" height="15" fill="rgb(226,26,14)" fg:x="97" fg:w="3"/><text x="21.7102%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="21.4602%" y="708" width="0.6637%" height="15" fill="rgb(215,49,53)" fg:x="97" fg:w="3"/><text x="21.7102%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="21.4602%" y="724" width="0.6637%" height="15" fill="rgb(245,162,40)" fg:x="97" fg:w="3"/><text x="21.7102%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="21.4602%" y="740" width="0.6637%" height="15" fill="rgb(229,68,17)" fg:x="97" fg:w="3"/><text x="21.7102%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="21.4602%" y="756" width="0.6637%" height="15" fill="rgb(213,182,10)" fg:x="97" fg:w="3"/><text x="21.7102%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="21.4602%" y="772" width="0.6637%" height="15" fill="rgb(245,125,30)" fg:x="97" fg:w="3"/><text x="21.7102%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="21.4602%" y="788" width="0.6637%" height="15" fill="rgb(232,202,2)" fg:x="97" fg:w="3"/><text x="21.7102%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="21.4602%" y="804" width="0.6637%" height="15" fill="rgb(237,140,51)" fg:x="97" fg:w="3"/><text x="21.7102%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="21.4602%" y="820" width="0.6637%" height="15" fill="rgb(236,157,25)" fg:x="97" fg:w="3"/><text x="21.7102%" y="830.50"></text></g><g><title><module> (fastapi/security/__init__.py:1) (3 samples, 0.66%)</title><rect x="21.4602%" y="836" width="0.6637%" height="15" fill="rgb(219,209,0)" fg:x="97" fg:w="3"/><text x="21.7102%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="21.4602%" y="852" width="0.6637%" height="15" fill="rgb(240,116,54)" fg:x="97" fg:w="3"/><text x="21.7102%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="21.4602%" y="868" width="0.6637%" height="15" fill="rgb(216,10,36)" fg:x="97" fg:w="3"/><text x="21.7102%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="21.4602%" y="884" width="0.6637%" height="15" fill="rgb(222,72,44)" fg:x="97" fg:w="3"/><text x="21.7102%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="21.4602%" y="900" width="0.6637%" height="15" fill="rgb(232,159,9)" fg:x="97" fg:w="3"/><text x="21.7102%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="21.4602%" y="916" width="0.6637%" height="15" fill="rgb(210,39,32)" fg:x="97" fg:w="3"/><text x="21.7102%" y="926.50"></text></g><g><title><module> (fastapi/security/http.py:1) (2 samples, 0.44%)</title><rect x="21.6814%" y="932" width="0.4425%" height="15" fill="rgb(216,194,45)" fg:x="98" fg:w="2"/><text x="21.9314%" y="942.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (2 samples, 0.44%)</title><rect x="21.6814%" y="948" width="0.4425%" height="15" fill="rgb(218,18,35)" fg:x="98" fg:w="2"/><text x="21.9314%" y="958.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (2 samples, 0.44%)</title><rect x="21.6814%" y="964" width="0.4425%" height="15" fill="rgb(207,83,51)" fg:x="98" fg:w="2"/><text x="21.9314%" y="974.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (2 samples, 0.44%)</title><rect x="21.6814%" y="980" width="0.4425%" height="15" fill="rgb(225,63,43)" fg:x="98" fg:w="2"/><text x="21.9314%" y="990.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.44%)</title><rect x="21.6814%" y="996" width="0.4425%" height="15" fill="rgb(207,57,36)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1006.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.44%)</title><rect x="21.6814%" y="1012" width="0.4425%" height="15" fill="rgb(216,99,33)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1022.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.44%)</title><rect x="21.6814%" y="1028" width="0.4425%" height="15" fill="rgb(225,42,16)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1038.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.44%)</title><rect x="21.6814%" y="1044" width="0.4425%" height="15" fill="rgb(220,201,45)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1054.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (2 samples, 0.44%)</title><rect x="21.6814%" y="1060" width="0.4425%" height="15" fill="rgb(225,33,4)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1070.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (2 samples, 0.44%)</title><rect x="21.6814%" y="1076" width="0.4425%" height="15" fill="rgb(224,33,50)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1086.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (2 samples, 0.44%)</title><rect x="21.6814%" y="1092" width="0.4425%" height="15" fill="rgb(246,198,51)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1102.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (2 samples, 0.44%)</title><rect x="21.6814%" y="1108" width="0.4425%" height="15" fill="rgb(205,22,4)" fg:x="98" fg:w="2"/><text x="21.9314%" y="1118.50"></text></g><g><title>has_instance_in_type (pydantic/_internal/_generics.py:338) (1 samples, 0.22%)</title><rect x="21.9027%" y="1124" width="0.2212%" height="15" fill="rgb(206,3,8)" fg:x="99" fg:w="1"/><text x="22.1527%" y="1134.50"></text></g><g><title>__instancecheck__ (typing.py:719) (1 samples, 0.22%)</title><rect x="21.9027%" y="1140" width="0.2212%" height="15" fill="rgb(251,23,15)" fg:x="99" fg:w="1"/><text x="22.1527%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="21.4602%" y="612" width="0.8850%" height="15" fill="rgb(252,88,28)" fg:x="97" fg:w="4"/><text x="21.7102%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="21.4602%" y="628" width="0.8850%" height="15" fill="rgb(212,127,14)" fg:x="97" fg:w="4"/><text x="21.7102%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="21.4602%" y="644" width="0.8850%" height="15" fill="rgb(247,145,37)" fg:x="97" fg:w="4"/><text x="21.7102%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="21.4602%" y="660" width="0.8850%" height="15" fill="rgb(209,117,53)" fg:x="97" fg:w="4"/><text x="21.7102%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="22.1239%" y="676" width="0.2212%" height="15" fill="rgb(212,90,42)" fg:x="100" fg:w="1"/><text x="22.3739%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="22.1239%" y="692" width="0.2212%" height="15" fill="rgb(218,164,37)" fg:x="100" fg:w="1"/><text x="22.3739%" y="702.50"></text></g><g><title>HTTPBase (fastapi/openapi/models.py:481) (1 samples, 0.22%)</title><rect x="22.3451%" y="836" width="0.2212%" height="15" fill="rgb(246,65,34)" fg:x="101" fg:w="1"/><text x="22.5951%" y="846.50"></text></g><g><title>Field (pydantic/fields.py:623) (1 samples, 0.22%)</title><rect x="22.3451%" y="852" width="0.2212%" height="15" fill="rgb(231,100,33)" fg:x="101" fg:w="1"/><text x="22.5951%" y="862.50"></text></g><g><title>from_field (pydantic/fields.py:216) (1 samples, 0.22%)</title><rect x="22.3451%" y="868" width="0.2212%" height="15" fill="rgb(228,126,14)" fg:x="101" fg:w="1"/><text x="22.5951%" y="878.50"></text></g><g><title>__init__ (pydantic/fields.py:174) (1 samples, 0.22%)</title><rect x="22.3451%" y="884" width="0.2212%" height="15" fill="rgb(215,173,21)" fg:x="101" fg:w="1"/><text x="22.5951%" y="894.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.22%)</title><rect x="23.0088%" y="1108" width="0.2212%" height="15" fill="rgb(210,6,40)" fg:x="104" fg:w="1"/><text x="23.2588%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="23.2301%" y="1828" width="0.4425%" height="15" fill="rgb(212,48,18)" fg:x="105" fg:w="2"/><text x="23.4801%" y="1838.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (2 samples, 0.44%)</title><rect x="23.2301%" y="1844" width="0.4425%" height="15" fill="rgb(230,214,11)" fg:x="105" fg:w="2"/><text x="23.4801%" y="1854.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 0.44%)</title><rect x="23.2301%" y="1860" width="0.4425%" height="15" fill="rgb(254,105,39)" fg:x="105" fg:w="2"/><text x="23.4801%" y="1870.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.22%)</title><rect x="23.4513%" y="1876" width="0.2212%" height="15" fill="rgb(245,158,5)" fg:x="106" fg:w="1"/><text x="23.7013%" y="1886.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="23.4513%" y="1892" width="0.2212%" height="15" fill="rgb(249,208,11)" fg:x="106" fg:w="1"/><text x="23.7013%" y="1902.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.22%)</title><rect x="23.4513%" y="1908" width="0.2212%" height="15" fill="rgb(210,39,28)" fg:x="106" fg:w="1"/><text x="23.7013%" y="1918.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.22%)</title><rect x="23.4513%" y="1924" width="0.2212%" height="15" fill="rgb(211,56,53)" fg:x="106" fg:w="1"/><text x="23.7013%" y="1934.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.22%)</title><rect x="23.4513%" y="1940" width="0.2212%" height="15" fill="rgb(226,201,30)" fg:x="106" fg:w="1"/><text x="23.7013%" y="1950.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (3 samples, 0.66%)</title><rect x="23.2301%" y="1252" width="0.6637%" height="15" fill="rgb(239,101,34)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (3 samples, 0.66%)</title><rect x="23.2301%" y="1268" width="0.6637%" height="15" fill="rgb(226,209,5)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.66%)</title><rect x="23.2301%" y="1284" width="0.6637%" height="15" fill="rgb(250,105,47)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.66%)</title><rect x="23.2301%" y="1300" width="0.6637%" height="15" fill="rgb(230,72,3)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.66%)</title><rect x="23.2301%" y="1316" width="0.6637%" height="15" fill="rgb(232,218,39)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.66%)</title><rect x="23.2301%" y="1332" width="0.6637%" height="15" fill="rgb(248,166,6)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.66%)</title><rect x="23.2301%" y="1348" width="0.6637%" height="15" fill="rgb(247,89,20)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.66%)</title><rect x="23.2301%" y="1364" width="0.6637%" height="15" fill="rgb(248,130,54)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.66%)</title><rect x="23.2301%" y="1380" width="0.6637%" height="15" fill="rgb(234,196,4)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.66%)</title><rect x="23.2301%" y="1396" width="0.6637%" height="15" fill="rgb(250,143,31)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.66%)</title><rect x="23.2301%" y="1412" width="0.6637%" height="15" fill="rgb(211,110,34)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.66%)</title><rect x="23.2301%" y="1428" width="0.6637%" height="15" fill="rgb(215,124,48)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.66%)</title><rect x="23.2301%" y="1444" width="0.6637%" height="15" fill="rgb(216,46,13)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.66%)</title><rect x="23.2301%" y="1460" width="0.6637%" height="15" fill="rgb(205,184,25)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.66%)</title><rect x="23.2301%" y="1476" width="0.6637%" height="15" fill="rgb(228,1,10)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.66%)</title><rect x="23.2301%" y="1492" width="0.6637%" height="15" fill="rgb(213,116,27)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.66%)</title><rect x="23.2301%" y="1508" width="0.6637%" height="15" fill="rgb(241,95,50)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.66%)</title><rect x="23.2301%" y="1524" width="0.6637%" height="15" fill="rgb(238,48,32)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1534.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (3 samples, 0.66%)</title><rect x="23.2301%" y="1540" width="0.6637%" height="15" fill="rgb(235,113,49)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.66%)</title><rect x="23.2301%" y="1556" width="0.6637%" height="15" fill="rgb(205,127,43)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (3 samples, 0.66%)</title><rect x="23.2301%" y="1572" width="0.6637%" height="15" fill="rgb(250,162,2)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.66%)</title><rect x="23.2301%" y="1588" width="0.6637%" height="15" fill="rgb(220,13,41)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.66%)</title><rect x="23.2301%" y="1604" width="0.6637%" height="15" fill="rgb(249,221,25)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (3 samples, 0.66%)</title><rect x="23.2301%" y="1620" width="0.6637%" height="15" fill="rgb(215,208,19)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (3 samples, 0.66%)</title><rect x="23.2301%" y="1636" width="0.6637%" height="15" fill="rgb(236,175,2)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.66%)</title><rect x="23.2301%" y="1652" width="0.6637%" height="15" fill="rgb(241,52,2)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.66%)</title><rect x="23.2301%" y="1668" width="0.6637%" height="15" fill="rgb(248,140,14)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (3 samples, 0.66%)</title><rect x="23.2301%" y="1684" width="0.6637%" height="15" fill="rgb(253,22,42)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (3 samples, 0.66%)</title><rect x="23.2301%" y="1700" width="0.6637%" height="15" fill="rgb(234,61,47)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (3 samples, 0.66%)</title><rect x="23.2301%" y="1716" width="0.6637%" height="15" fill="rgb(208,226,15)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (3 samples, 0.66%)</title><rect x="23.2301%" y="1732" width="0.6637%" height="15" fill="rgb(217,221,4)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (3 samples, 0.66%)</title><rect x="23.2301%" y="1748" width="0.6637%" height="15" fill="rgb(212,174,34)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (3 samples, 0.66%)</title><rect x="23.2301%" y="1764" width="0.6637%" height="15" fill="rgb(253,83,4)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (3 samples, 0.66%)</title><rect x="23.2301%" y="1780" width="0.6637%" height="15" fill="rgb(250,195,49)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (3 samples, 0.66%)</title><rect x="23.2301%" y="1796" width="0.6637%" height="15" fill="rgb(241,192,25)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.66%)</title><rect x="23.2301%" y="1812" width="0.6637%" height="15" fill="rgb(208,124,10)" fg:x="105" fg:w="3"/><text x="23.4801%" y="1822.50"></text></g><g><title>apply_each_item_validators (pydantic/_internal/_generate_schema.py:170) (1 samples, 0.22%)</title><rect x="23.6726%" y="1828" width="0.2212%" height="15" fill="rgb(222,33,0)" fg:x="107" fg:w="1"/><text x="23.9226%" y="1838.50"></text></g><g><title>apply_each_item_validators (pydantic/_internal/_generate_schema.py:170) (1 samples, 0.22%)</title><rect x="23.6726%" y="1844" width="0.2212%" height="15" fill="rgb(234,209,28)" fg:x="107" fg:w="1"/><text x="23.9226%" y="1854.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="23.8938%" y="1300" width="0.2212%" height="15" fill="rgb(224,11,23)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="23.8938%" y="1316" width="0.2212%" height="15" fill="rgb(232,99,1)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.22%)</title><rect x="23.8938%" y="1332" width="0.2212%" height="15" fill="rgb(237,95,45)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.22%)</title><rect x="23.8938%" y="1348" width="0.2212%" height="15" fill="rgb(208,109,11)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.22%)</title><rect x="23.8938%" y="1364" width="0.2212%" height="15" fill="rgb(216,190,48)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="23.8938%" y="1380" width="0.2212%" height="15" fill="rgb(251,171,36)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="23.8938%" y="1396" width="0.2212%" height="15" fill="rgb(230,62,22)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.22%)</title><rect x="23.8938%" y="1412" width="0.2212%" height="15" fill="rgb(225,114,35)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="23.8938%" y="1428" width="0.2212%" height="15" fill="rgb(215,118,42)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="23.8938%" y="1444" width="0.2212%" height="15" fill="rgb(243,119,21)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="23.8938%" y="1460" width="0.2212%" height="15" fill="rgb(252,177,53)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.22%)</title><rect x="23.8938%" y="1476" width="0.2212%" height="15" fill="rgb(237,209,29)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.22%)</title><rect x="23.8938%" y="1492" width="0.2212%" height="15" fill="rgb(212,65,23)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.22%)</title><rect x="23.8938%" y="1508" width="0.2212%" height="15" fill="rgb(230,222,46)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1518.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.22%)</title><rect x="23.8938%" y="1524" width="0.2212%" height="15" fill="rgb(215,135,32)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1534.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.22%)</title><rect x="23.8938%" y="1540" width="0.2212%" height="15" fill="rgb(246,101,22)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1550.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.22%)</title><rect x="23.8938%" y="1556" width="0.2212%" height="15" fill="rgb(206,107,13)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1566.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.22%)</title><rect x="23.8938%" y="1572" width="0.2212%" height="15" fill="rgb(250,100,44)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="23.8938%" y="1588" width="0.2212%" height="15" fill="rgb(231,147,38)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1598.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.22%)</title><rect x="23.8938%" y="1604" width="0.2212%" height="15" fill="rgb(229,8,40)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1614.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.22%)</title><rect x="23.8938%" y="1620" width="0.2212%" height="15" fill="rgb(221,135,30)" fg:x="108" fg:w="1"/><text x="24.1438%" y="1630.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (5 samples, 1.11%)</title><rect x="23.2301%" y="1156" width="1.1062%" height="15" fill="rgb(249,193,18)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (5 samples, 1.11%)</title><rect x="23.2301%" y="1172" width="1.1062%" height="15" fill="rgb(209,133,39)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1182.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (5 samples, 1.11%)</title><rect x="23.2301%" y="1188" width="1.1062%" height="15" fill="rgb(232,100,14)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1198.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (5 samples, 1.11%)</title><rect x="23.2301%" y="1204" width="1.1062%" height="15" fill="rgb(224,185,1)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1214.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (5 samples, 1.11%)</title><rect x="23.2301%" y="1220" width="1.1062%" height="15" fill="rgb(223,139,8)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1230.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (5 samples, 1.11%)</title><rect x="23.2301%" y="1236" width="1.1062%" height="15" fill="rgb(232,213,38)" fg:x="105" fg:w="5"/><text x="23.4801%" y="1246.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (2 samples, 0.44%)</title><rect x="23.8938%" y="1252" width="0.4425%" height="15" fill="rgb(207,94,22)" fg:x="108" fg:w="2"/><text x="24.1438%" y="1262.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (2 samples, 0.44%)</title><rect x="23.8938%" y="1268" width="0.4425%" height="15" fill="rgb(219,183,54)" fg:x="108" fg:w="2"/><text x="24.1438%" y="1278.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.44%)</title><rect x="23.8938%" y="1284" width="0.4425%" height="15" fill="rgb(216,185,54)" fg:x="108" fg:w="2"/><text x="24.1438%" y="1294.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="24.1150%" y="1300" width="0.2212%" height="15" fill="rgb(254,217,39)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1310.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.22%)</title><rect x="24.1150%" y="1316" width="0.2212%" height="15" fill="rgb(240,178,23)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1326.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="24.1150%" y="1332" width="0.2212%" height="15" fill="rgb(218,11,47)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1342.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="24.1150%" y="1348" width="0.2212%" height="15" fill="rgb(218,51,51)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1358.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="24.1150%" y="1364" width="0.2212%" height="15" fill="rgb(238,126,27)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1374.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.22%)</title><rect x="24.1150%" y="1380" width="0.2212%" height="15" fill="rgb(249,202,22)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1390.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.22%)</title><rect x="24.1150%" y="1396" width="0.2212%" height="15" fill="rgb(254,195,49)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1406.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.22%)</title><rect x="24.1150%" y="1412" width="0.2212%" height="15" fill="rgb(208,123,14)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1422.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.22%)</title><rect x="24.1150%" y="1428" width="0.2212%" height="15" fill="rgb(224,200,8)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1438.50"></text></g><g><title>eval_type_lenient (pydantic/_internal/_typing_extra.py:216) (1 samples, 0.22%)</title><rect x="24.1150%" y="1444" width="0.2212%" height="15" fill="rgb(217,61,36)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1454.50"></text></g><g><title>eval_type_backport (pydantic/_internal/_typing_extra.py:230) (1 samples, 0.22%)</title><rect x="24.1150%" y="1460" width="0.2212%" height="15" fill="rgb(206,35,45)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1470.50"></text></g><g><title>_eval_type (typing.py:285) (1 samples, 0.22%)</title><rect x="24.1150%" y="1476" width="0.2212%" height="15" fill="rgb(217,65,33)" fg:x="109" fg:w="1"/><text x="24.3650%" y="1486.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.22%)</title><rect x="24.5575%" y="1300" width="0.2212%" height="15" fill="rgb(222,158,48)" fg:x="111" fg:w="1"/><text x="24.8075%" y="1310.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:312) (1 samples, 0.22%)</title><rect x="25.0000%" y="1540" width="0.2212%" height="15" fill="rgb(254,2,54)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1550.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (1 samples, 0.22%)</title><rect x="25.0000%" y="1556" width="0.2212%" height="15" fill="rgb(250,143,38)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1566.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="25.0000%" y="1572" width="0.2212%" height="15" fill="rgb(248,25,0)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="25.0000%" y="1588" width="0.2212%" height="15" fill="rgb(206,152,27)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="25.0000%" y="1604" width="0.2212%" height="15" fill="rgb(240,77,30)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.22%)</title><rect x="25.0000%" y="1620" width="0.2212%" height="15" fill="rgb(231,5,3)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.22%)</title><rect x="25.0000%" y="1636" width="0.2212%" height="15" fill="rgb(207,226,32)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.22%)</title><rect x="25.0000%" y="1652" width="0.2212%" height="15" fill="rgb(222,207,47)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="25.0000%" y="1668" width="0.2212%" height="15" fill="rgb(229,115,45)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1678.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="25.0000%" y="1684" width="0.2212%" height="15" fill="rgb(224,191,6)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1694.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.22%)</title><rect x="25.0000%" y="1700" width="0.2212%" height="15" fill="rgb(230,227,24)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1710.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="25.0000%" y="1716" width="0.2212%" height="15" fill="rgb(228,80,19)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1726.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="25.0000%" y="1732" width="0.2212%" height="15" fill="rgb(247,229,0)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1742.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="25.0000%" y="1748" width="0.2212%" height="15" fill="rgb(237,194,15)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1758.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.22%)</title><rect x="25.0000%" y="1764" width="0.2212%" height="15" fill="rgb(219,203,20)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1774.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.22%)</title><rect x="25.0000%" y="1780" width="0.2212%" height="15" fill="rgb(234,128,8)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1790.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.22%)</title><rect x="25.0000%" y="1796" width="0.2212%" height="15" fill="rgb(248,202,8)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1806.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.22%)</title><rect x="25.0000%" y="1812" width="0.2212%" height="15" fill="rgb(206,104,37)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1822.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.22%)</title><rect x="25.0000%" y="1828" width="0.2212%" height="15" fill="rgb(223,8,27)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1838.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="25.0000%" y="1844" width="0.2212%" height="15" fill="rgb(216,217,28)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1854.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.22%)</title><rect x="25.0000%" y="1860" width="0.2212%" height="15" fill="rgb(249,199,1)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1870.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="25.0000%" y="1876" width="0.2212%" height="15" fill="rgb(240,85,17)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1886.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="25.0000%" y="1892" width="0.2212%" height="15" fill="rgb(206,108,45)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1902.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.22%)</title><rect x="25.0000%" y="1908" width="0.2212%" height="15" fill="rgb(245,210,41)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1918.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.22%)</title><rect x="25.0000%" y="1924" width="0.2212%" height="15" fill="rgb(206,13,37)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1934.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.22%)</title><rect x="25.0000%" y="1940" width="0.2212%" height="15" fill="rgb(250,61,18)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1950.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="25.0000%" y="1956" width="0.2212%" height="15" fill="rgb(235,172,48)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1966.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="25.0000%" y="1972" width="0.2212%" height="15" fill="rgb(249,201,17)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1982.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.22%)</title><rect x="25.0000%" y="1988" width="0.2212%" height="15" fill="rgb(219,208,6)" fg:x="113" fg:w="1"/><text x="25.2500%" y="1998.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="25.0000%" y="2004" width="0.2212%" height="15" fill="rgb(248,31,23)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2014.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="25.0000%" y="2020" width="0.2212%" height="15" fill="rgb(245,15,42)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2030.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="25.0000%" y="2036" width="0.2212%" height="15" fill="rgb(222,217,39)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2046.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.22%)</title><rect x="25.0000%" y="2052" width="0.2212%" height="15" fill="rgb(210,219,27)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2062.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.22%)</title><rect x="25.0000%" y="2068" width="0.2212%" height="15" fill="rgb(252,166,36)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2078.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.22%)</title><rect x="25.0000%" y="2084" width="0.2212%" height="15" fill="rgb(245,132,34)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2094.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.22%)</title><rect x="25.0000%" y="2100" width="0.2212%" height="15" fill="rgb(236,54,3)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2110.50"></text></g><g><title>build_metadata_dict (pydantic/_internal/_core_metadata.py:67) (1 samples, 0.22%)</title><rect x="25.0000%" y="2116" width="0.2212%" height="15" fill="rgb(241,173,43)" fg:x="113" fg:w="1"/><text x="25.2500%" y="2126.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.44%)</title><rect x="25.0000%" y="1444" width="0.4425%" height="15" fill="rgb(215,190,9)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.44%)</title><rect x="25.0000%" y="1460" width="0.4425%" height="15" fill="rgb(242,101,16)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1470.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.44%)</title><rect x="25.0000%" y="1476" width="0.4425%" height="15" fill="rgb(223,190,21)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1486.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.44%)</title><rect x="25.0000%" y="1492" width="0.4425%" height="15" fill="rgb(215,228,25)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1502.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.44%)</title><rect x="25.0000%" y="1508" width="0.4425%" height="15" fill="rgb(225,36,22)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1518.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (2 samples, 0.44%)</title><rect x="25.0000%" y="1524" width="0.4425%" height="15" fill="rgb(251,106,46)" fg:x="113" fg:w="2"/><text x="25.2500%" y="1534.50"></text></g><g><title>_apply_single_annotation (pydantic/_internal/_generate_schema.py:1753) (1 samples, 0.22%)</title><rect x="25.2212%" y="1540" width="0.2212%" height="15" fill="rgb(208,90,1)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1550.50"></text></g><g><title>apply_known_metadata (pydantic/_internal/_known_annotated_metadata.py:156) (1 samples, 0.22%)</title><rect x="25.2212%" y="1556" width="0.2212%" height="15" fill="rgb(243,10,4)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1566.50"></text></g><g><title>collect_known_metadata (pydantic/_internal/_known_annotated_metadata.py:337) (1 samples, 0.22%)</title><rect x="25.2212%" y="1572" width="0.2212%" height="15" fill="rgb(212,137,27)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1582.50"></text></g><g><title>expand_grouped_metadata (pydantic/_internal/_known_annotated_metadata.py:116) (1 samples, 0.22%)</title><rect x="25.2212%" y="1588" width="0.2212%" height="15" fill="rgb(231,220,49)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1598.50"></text></g><g><title>__instancecheck__ (typing.py:1141) (1 samples, 0.22%)</title><rect x="25.2212%" y="1604" width="0.2212%" height="15" fill="rgb(237,96,20)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1614.50"></text></g><g><title>_get_protocol_attrs (typing.py:1065) (1 samples, 0.22%)</title><rect x="25.2212%" y="1620" width="0.2212%" height="15" fill="rgb(239,229,30)" fg:x="114" fg:w="1"/><text x="25.4712%" y="1630.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (3 samples, 0.66%)</title><rect x="25.0000%" y="1412" width="0.6637%" height="15" fill="rgb(219,65,33)" fg:x="113" fg:w="3"/><text x="25.2500%" y="1422.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (3 samples, 0.66%)</title><rect x="25.0000%" y="1428" width="0.6637%" height="15" fill="rgb(243,134,7)" fg:x="113" fg:w="3"/><text x="25.2500%" y="1438.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="25.4425%" y="1444" width="0.2212%" height="15" fill="rgb(216,177,54)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1454.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.22%)</title><rect x="25.4425%" y="1460" width="0.2212%" height="15" fill="rgb(211,160,20)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1470.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.22%)</title><rect x="25.4425%" y="1476" width="0.2212%" height="15" fill="rgb(239,85,39)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1486.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.22%)</title><rect x="25.4425%" y="1492" width="0.2212%" height="15" fill="rgb(232,125,22)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1502.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.22%)</title><rect x="25.4425%" y="1508" width="0.2212%" height="15" fill="rgb(244,57,34)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1518.50"></text></g><g><title>display_as_type (pydantic/_internal/_repr.py:85) (1 samples, 0.22%)</title><rect x="25.4425%" y="1524" width="0.2212%" height="15" fill="rgb(214,203,32)" fg:x="115" fg:w="1"/><text x="25.6925%" y="1534.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (4 samples, 0.88%)</title><rect x="25.0000%" y="1332" width="0.8850%" height="15" fill="rgb(207,58,43)" fg:x="113" fg:w="4"/><text x="25.2500%" y="1342.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.88%)</title><rect x="25.0000%" y="1348" width="0.8850%" height="15" fill="rgb(215,193,15)" fg:x="113" fg:w="4"/><text x="25.2500%" y="1358.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.88%)</title><rect x="25.0000%" y="1364" width="0.8850%" height="15" fill="rgb(232,15,44)" fg:x="113" fg:w="4"/><text x="25.2500%" y="1374.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 0.88%)</title><rect x="25.0000%" y="1380" width="0.8850%" height="15" fill="rgb(212,3,48)" fg:x="113" fg:w="4"/><text x="25.2500%" y="1390.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (4 samples, 0.88%)</title><rect x="25.0000%" y="1396" width="0.8850%" height="15" fill="rgb(218,128,7)" fg:x="113" fg:w="4"/><text x="25.2500%" y="1406.50"></text></g><g><title>origin_is_union (pydantic/_internal/_typing_extra.py:41) (1 samples, 0.22%)</title><rect x="25.6637%" y="1412" width="0.2212%" height="15" fill="rgb(226,216,39)" fg:x="116" fg:w="1"/><text x="25.9137%" y="1422.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="25.8850%" y="1396" width="0.2212%" height="15" fill="rgb(243,47,51)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1406.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="25.8850%" y="1412" width="0.2212%" height="15" fill="rgb(241,183,40)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1422.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.22%)</title><rect x="25.8850%" y="1428" width="0.2212%" height="15" fill="rgb(231,217,32)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1438.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (1 samples, 0.22%)</title><rect x="25.8850%" y="1444" width="0.2212%" height="15" fill="rgb(229,61,38)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1454.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (1 samples, 0.22%)</title><rect x="25.8850%" y="1460" width="0.2212%" height="15" fill="rgb(225,210,5)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1470.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="25.8850%" y="1476" width="0.2212%" height="15" fill="rgb(231,79,45)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1486.50"></text></g><g><title>_config_wrapper (pydantic/_internal/_generate_schema.py:344) (1 samples, 0.22%)</title><rect x="25.8850%" y="1492" width="0.2212%" height="15" fill="rgb(224,100,7)" fg:x="117" fg:w="1"/><text x="26.1350%" y="1502.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (6 samples, 1.33%)</title><rect x="25.0000%" y="1316" width="1.3274%" height="15" fill="rgb(241,198,18)" fg:x="113" fg:w="6"/><text x="25.2500%" y="1326.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (2 samples, 0.44%)</title><rect x="25.8850%" y="1332" width="0.4425%" height="15" fill="rgb(252,97,53)" fg:x="117" fg:w="2"/><text x="26.1350%" y="1342.50"></text></g><g><title><lambda> (pydantic/_internal/_generate_schema.py:1825) (2 samples, 0.44%)</title><rect x="25.8850%" y="1348" width="0.4425%" height="15" fill="rgb(220,88,7)" fg:x="117" fg:w="2"/><text x="26.1350%" y="1358.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.44%)</title><rect x="25.8850%" y="1364" width="0.4425%" height="15" fill="rgb(213,176,14)" fg:x="117" fg:w="2"/><text x="26.1350%" y="1374.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (2 samples, 0.44%)</title><rect x="25.8850%" y="1380" width="0.4425%" height="15" fill="rgb(246,73,7)" fg:x="117" fg:w="2"/><text x="26.1350%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (1 samples, 0.22%)</title><rect x="26.1062%" y="1396" width="0.2212%" height="15" fill="rgb(245,64,36)" fg:x="118" fg:w="1"/><text x="26.3562%" y="1406.50"></text></g><g><title>__enter__ (contextlib.py:114) (1 samples, 0.22%)</title><rect x="26.1062%" y="1412" width="0.2212%" height="15" fill="rgb(245,80,10)" fg:x="118" fg:w="1"/><text x="26.3562%" y="1422.50"></text></g><g><title>get_schema_or_ref (pydantic/_internal/_generate_schema.py:2156) (1 samples, 0.22%)</title><rect x="26.1062%" y="1428" width="0.2212%" height="15" fill="rgb(232,107,50)" fg:x="118" fg:w="1"/><text x="26.3562%" y="1438.50"></text></g><g><title>get_type_ref (pydantic/_internal/_core_utils.py:84) (1 samples, 0.22%)</title><rect x="26.1062%" y="1444" width="0.2212%" height="15" fill="rgb(253,3,0)" fg:x="118" fg:w="1"/><text x="26.3562%" y="1454.50"></text></g><g><title>__getattr__ (typing.py:706) (1 samples, 0.22%)</title><rect x="26.1062%" y="1460" width="0.2212%" height="15" fill="rgb(212,99,53)" fg:x="118" fg:w="1"/><text x="26.3562%" y="1470.50"></text></g><g><title>__hash__ (typing.py:933) (1 samples, 0.22%)</title><rect x="26.3274%" y="1332" width="0.2212%" height="15" fill="rgb(249,111,54)" fg:x="119" fg:w="1"/><text x="26.5774%" y="1342.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (10 samples, 2.21%)</title><rect x="24.7788%" y="1300" width="2.2124%" height="15" fill="rgb(249,55,30)" fg:x="112" fg:w="10"/><text x="25.0288%" y="1310.50">_..</text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (3 samples, 0.66%)</title><rect x="26.3274%" y="1316" width="0.6637%" height="15" fill="rgb(237,47,42)" fg:x="119" fg:w="3"/><text x="26.5774%" y="1326.50"></text></g><g><title>datetime_prepare_pydantic_annotations (pydantic/_internal/_std_types_schema.py:179) (2 samples, 0.44%)</title><rect x="26.5487%" y="1332" width="0.4425%" height="15" fill="rgb(211,20,18)" fg:x="120" fg:w="2"/><text x="26.7987%" y="1342.50"></text></g><g><title>collect_known_metadata (pydantic/_internal/_known_annotated_metadata.py:337) (1 samples, 0.22%)</title><rect x="26.7699%" y="1348" width="0.2212%" height="15" fill="rgb(231,203,46)" fg:x="121" fg:w="1"/><text x="27.0199%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="26.9912%" y="1300" width="0.2212%" height="15" fill="rgb(237,142,3)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1310.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.22%)</title><rect x="26.9912%" y="1316" width="0.2212%" height="15" fill="rgb(241,107,1)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1326.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.22%)</title><rect x="26.9912%" y="1332" width="0.2212%" height="15" fill="rgb(229,83,13)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1342.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.22%)</title><rect x="26.9912%" y="1348" width="0.2212%" height="15" fill="rgb(241,91,40)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="26.9912%" y="1364" width="0.2212%" height="15" fill="rgb(225,3,45)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1374.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.22%)</title><rect x="26.9912%" y="1380" width="0.2212%" height="15" fill="rgb(244,223,14)" fg:x="122" fg:w="1"/><text x="27.2412%" y="1390.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (19 samples, 4.20%)</title><rect x="23.2301%" y="1108" width="4.2035%" height="15" fill="rgb(224,124,37)" fg:x="105" fg:w="19"/><text x="23.4801%" y="1118.50">_matc..</text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (19 samples, 4.20%)</title><rect x="23.2301%" y="1124" width="4.2035%" height="15" fill="rgb(251,171,30)" fg:x="105" fg:w="19"/><text x="23.4801%" y="1134.50">_unio..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (19 samples, 4.20%)</title><rect x="23.2301%" y="1140" width="4.2035%" height="15" fill="rgb(236,46,54)" fg:x="105" fg:w="19"/><text x="23.4801%" y="1150.50">gener..</text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (14 samples, 3.10%)</title><rect x="24.3363%" y="1156" width="3.0973%" height="15" fill="rgb(245,213,5)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1166.50">_ge..</text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (14 samples, 3.10%)</title><rect x="24.3363%" y="1172" width="3.0973%" height="15" fill="rgb(230,144,27)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1182.50">__g..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (14 samples, 3.10%)</title><rect x="24.3363%" y="1188" width="3.0973%" height="15" fill="rgb(220,86,6)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1198.50">__c..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (14 samples, 3.10%)</title><rect x="24.3363%" y="1204" width="3.0973%" height="15" fill="rgb(240,20,13)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1214.50">_ge..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (14 samples, 3.10%)</title><rect x="24.3363%" y="1220" width="3.0973%" height="15" fill="rgb(217,89,34)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1230.50">_ge..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (14 samples, 3.10%)</title><rect x="24.3363%" y="1236" width="3.0973%" height="15" fill="rgb(229,13,5)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1246.50">_mo..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (14 samples, 3.10%)</title><rect x="24.3363%" y="1252" width="3.0973%" height="15" fill="rgb(244,67,35)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1262.50"><di..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (14 samples, 3.10%)</title><rect x="24.3363%" y="1268" width="3.0973%" height="15" fill="rgb(221,40,2)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1278.50">_ge..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (14 samples, 3.10%)</title><rect x="24.3363%" y="1284" width="3.0973%" height="15" fill="rgb(237,157,21)" fg:x="110" fg:w="14"/><text x="24.5863%" y="1294.50">_co..</text></g><g><title>helper (contextlib.py:261) (1 samples, 0.22%)</title><rect x="27.2124%" y="1300" width="0.2212%" height="15" fill="rgb(222,94,11)" fg:x="123" fg:w="1"/><text x="27.4624%" y="1310.50"></text></g><g><title>__init__ (contextlib.py:86) (1 samples, 0.22%)</title><rect x="27.2124%" y="1316" width="0.2212%" height="15" fill="rgb(249,113,6)" fg:x="123" fg:w="1"/><text x="27.4624%" y="1326.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (21 samples, 4.65%)</title><rect x="23.0088%" y="1044" width="4.6460%" height="15" fill="rgb(238,137,36)" fg:x="104" fg:w="21"/><text x="23.2588%" y="1054.50">inner..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (21 samples, 4.65%)</title><rect x="23.0088%" y="1060" width="4.6460%" height="15" fill="rgb(210,102,26)" fg:x="104" fg:w="21"/><text x="23.2588%" y="1070.50">_gene..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (21 samples, 4.65%)</title><rect x="23.0088%" y="1076" width="4.6460%" height="15" fill="rgb(218,30,30)" fg:x="104" fg:w="21"/><text x="23.2588%" y="1086.50">_gene..</text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (21 samples, 4.65%)</title><rect x="23.0088%" y="1092" width="4.6460%" height="15" fill="rgb(214,67,26)" fg:x="104" fg:w="21"/><text x="23.2588%" y="1102.50">match..</text></g><g><title>is_callable_type (pydantic/_internal/_typing_extra.py:75) (1 samples, 0.22%)</title><rect x="27.4336%" y="1108" width="0.2212%" height="15" fill="rgb(251,9,53)" fg:x="124" fg:w="1"/><text x="27.6836%" y="1118.50"></text></g><g><title>get_origin (typing_extensions.py:1194) (1 samples, 0.22%)</title><rect x="27.4336%" y="1124" width="0.2212%" height="15" fill="rgb(228,204,25)" fg:x="124" fg:w="1"/><text x="27.6836%" y="1134.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.44%)</title><rect x="27.8761%" y="1540" width="0.4425%" height="15" fill="rgb(207,153,8)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1550.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.44%)</title><rect x="27.8761%" y="1556" width="0.4425%" height="15" fill="rgb(242,9,16)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1566.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (2 samples, 0.44%)</title><rect x="27.8761%" y="1572" width="0.4425%" height="15" fill="rgb(217,211,10)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1582.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.44%)</title><rect x="27.8761%" y="1588" width="0.4425%" height="15" fill="rgb(219,228,52)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1598.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.44%)</title><rect x="27.8761%" y="1604" width="0.4425%" height="15" fill="rgb(231,92,29)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1614.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.44%)</title><rect x="27.8761%" y="1620" width="0.4425%" height="15" fill="rgb(232,8,23)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1630.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (2 samples, 0.44%)</title><rect x="27.8761%" y="1636" width="0.4425%" height="15" fill="rgb(216,211,34)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1646.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (2 samples, 0.44%)</title><rect x="27.8761%" y="1652" width="0.4425%" height="15" fill="rgb(236,151,0)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1662.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (2 samples, 0.44%)</title><rect x="27.8761%" y="1668" width="0.4425%" height="15" fill="rgb(209,168,3)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1678.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (2 samples, 0.44%)</title><rect x="27.8761%" y="1684" width="0.4425%" height="15" fill="rgb(208,129,28)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1694.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (2 samples, 0.44%)</title><rect x="27.8761%" y="1700" width="0.4425%" height="15" fill="rgb(229,78,22)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1710.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (2 samples, 0.44%)</title><rect x="27.8761%" y="1716" width="0.4425%" height="15" fill="rgb(228,187,13)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1726.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (2 samples, 0.44%)</title><rect x="27.8761%" y="1732" width="0.4425%" height="15" fill="rgb(240,119,24)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1742.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (2 samples, 0.44%)</title><rect x="27.8761%" y="1748" width="0.4425%" height="15" fill="rgb(209,194,42)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1758.50"></text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (2 samples, 0.44%)</title><rect x="27.8761%" y="1764" width="0.4425%" height="15" fill="rgb(247,200,46)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1774.50"></text></g><g><title>_apply_single_annotation (pydantic/_internal/_generate_schema.py:1753) (2 samples, 0.44%)</title><rect x="27.8761%" y="1780" width="0.4425%" height="15" fill="rgb(218,76,16)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1790.50"></text></g><g><title>apply_known_metadata (pydantic/_internal/_known_annotated_metadata.py:156) (2 samples, 0.44%)</title><rect x="27.8761%" y="1796" width="0.4425%" height="15" fill="rgb(225,21,48)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1806.50"></text></g><g><title>collect_known_metadata (pydantic/_internal/_known_annotated_metadata.py:337) (2 samples, 0.44%)</title><rect x="27.8761%" y="1812" width="0.4425%" height="15" fill="rgb(239,223,50)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1822.50"></text></g><g><title>expand_grouped_metadata (pydantic/_internal/_known_annotated_metadata.py:116) (2 samples, 0.44%)</title><rect x="27.8761%" y="1828" width="0.4425%" height="15" fill="rgb(244,45,21)" fg:x="126" fg:w="2"/><text x="28.1261%" y="1838.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (3 samples, 0.66%)</title><rect x="27.8761%" y="1524" width="0.6637%" height="15" fill="rgb(232,33,43)" fg:x="126" fg:w="3"/><text x="28.1261%" y="1534.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="28.3186%" y="1540" width="0.2212%" height="15" fill="rgb(209,8,3)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1550.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (1 samples, 0.22%)</title><rect x="28.3186%" y="1556" width="0.2212%" height="15" fill="rgb(214,25,53)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1566.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.22%)</title><rect x="28.3186%" y="1572" width="0.2212%" height="15" fill="rgb(254,186,54)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1582.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.22%)</title><rect x="28.3186%" y="1588" width="0.2212%" height="15" fill="rgb(208,174,49)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1598.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="28.3186%" y="1604" width="0.2212%" height="15" fill="rgb(233,191,51)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1614.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.22%)</title><rect x="28.3186%" y="1620" width="0.2212%" height="15" fill="rgb(222,134,10)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1630.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.22%)</title><rect x="28.3186%" y="1636" width="0.2212%" height="15" fill="rgb(230,226,20)" fg:x="128" fg:w="1"/><text x="28.5686%" y="1646.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/_internal/_std_types_schema.py:513) (5 samples, 1.11%)</title><rect x="27.6549%" y="1060" width="1.1062%" height="15" fill="rgb(251,111,25)" fg:x="125" fg:w="5"/><text x="27.9049%" y="1070.50"></text></g><g><title>generate_schema (pydantic/_internal/_schema_generation_shared.py:95) (4 samples, 0.88%)</title><rect x="27.8761%" y="1076" width="0.8850%" height="15" fill="rgb(224,40,46)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1086.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 0.88%)</title><rect x="27.8761%" y="1092" width="0.8850%" height="15" fill="rgb(236,108,47)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1102.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (4 samples, 0.88%)</title><rect x="27.8761%" y="1108" width="0.8850%" height="15" fill="rgb(234,93,0)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1118.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (4 samples, 0.88%)</title><rect x="27.8761%" y="1124" width="0.8850%" height="15" fill="rgb(224,213,32)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1134.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (4 samples, 0.88%)</title><rect x="27.8761%" y="1140" width="0.8850%" height="15" fill="rgb(251,11,48)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1150.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.88%)</title><rect x="27.8761%" y="1156" width="0.8850%" height="15" fill="rgb(236,173,5)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1166.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.88%)</title><rect x="27.8761%" y="1172" width="0.8850%" height="15" fill="rgb(230,95,12)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1182.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (4 samples, 0.88%)</title><rect x="27.8761%" y="1188" width="0.8850%" height="15" fill="rgb(232,209,1)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1198.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (4 samples, 0.88%)</title><rect x="27.8761%" y="1204" width="0.8850%" height="15" fill="rgb(232,6,1)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1214.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (4 samples, 0.88%)</title><rect x="27.8761%" y="1220" width="0.8850%" height="15" fill="rgb(210,224,50)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1230.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (4 samples, 0.88%)</title><rect x="27.8761%" y="1236" width="0.8850%" height="15" fill="rgb(228,127,35)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1246.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (4 samples, 0.88%)</title><rect x="27.8761%" y="1252" width="0.8850%" height="15" fill="rgb(245,102,45)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1262.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (4 samples, 0.88%)</title><rect x="27.8761%" y="1268" width="0.8850%" height="15" fill="rgb(214,1,49)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1278.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (4 samples, 0.88%)</title><rect x="27.8761%" y="1284" width="0.8850%" height="15" fill="rgb(226,163,40)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1294.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.88%)</title><rect x="27.8761%" y="1300" width="0.8850%" height="15" fill="rgb(239,212,28)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1310.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.88%)</title><rect x="27.8761%" y="1316" width="0.8850%" height="15" fill="rgb(220,20,13)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1326.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (4 samples, 0.88%)</title><rect x="27.8761%" y="1332" width="0.8850%" height="15" fill="rgb(210,164,35)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1342.50"></text></g><g><title>_match_generic_type (pydantic/_internal/_generate_schema.py:853) (4 samples, 0.88%)</title><rect x="27.8761%" y="1348" width="0.8850%" height="15" fill="rgb(248,109,41)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1358.50"></text></g><g><title>_union_schema (pydantic/_internal/_generate_schema.py:1106) (4 samples, 0.88%)</title><rect x="27.8761%" y="1364" width="0.8850%" height="15" fill="rgb(238,23,50)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1374.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (4 samples, 0.88%)</title><rect x="27.8761%" y="1380" width="0.8850%" height="15" fill="rgb(211,48,49)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1390.50"></text></g><g><title>_generate_schema_from_property (pydantic/_internal/_generate_schema.py:615) (4 samples, 0.88%)</title><rect x="27.8761%" y="1396" width="0.8850%" height="15" fill="rgb(223,36,21)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1406.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (4 samples, 0.88%)</title><rect x="27.8761%" y="1412" width="0.8850%" height="15" fill="rgb(207,123,46)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1422.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (4 samples, 0.88%)</title><rect x="27.8761%" y="1428" width="0.8850%" height="15" fill="rgb(240,218,32)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1438.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (4 samples, 0.88%)</title><rect x="27.8761%" y="1444" width="0.8850%" height="15" fill="rgb(252,5,43)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1454.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (4 samples, 0.88%)</title><rect x="27.8761%" y="1460" width="0.8850%" height="15" fill="rgb(252,84,19)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1470.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (4 samples, 0.88%)</title><rect x="27.8761%" y="1476" width="0.8850%" height="15" fill="rgb(243,152,39)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1486.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (4 samples, 0.88%)</title><rect x="27.8761%" y="1492" width="0.8850%" height="15" fill="rgb(234,160,15)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1502.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (4 samples, 0.88%)</title><rect x="27.8761%" y="1508" width="0.8850%" height="15" fill="rgb(237,34,20)" fg:x="126" fg:w="4"/><text x="28.1261%" y="1518.50"></text></g><g><title>model_field (pydantic_core/core_schema.py:2775) (1 samples, 0.22%)</title><rect x="28.5398%" y="1524" width="0.2212%" height="15" fill="rgb(229,97,13)" fg:x="129" fg:w="1"/><text x="28.7898%" y="1534.50"></text></g><g><title>_dict_not_none (pydantic_core/core_schema.py:3877) (1 samples, 0.22%)</title><rect x="28.5398%" y="1540" width="0.2212%" height="15" fill="rgb(234,71,50)" fg:x="129" fg:w="1"/><text x="28.7898%" y="1550.50"></text></g><g><title><dictcomp> (pydantic_core/core_schema.py:3878) (1 samples, 0.22%)</title><rect x="28.5398%" y="1556" width="0.2212%" height="15" fill="rgb(253,155,4)" fg:x="129" fg:w="1"/><text x="28.7898%" y="1566.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (27 samples, 5.97%)</title><rect x="23.0088%" y="1012" width="5.9735%" height="15" fill="rgb(222,185,37)" fg:x="104" fg:w="27"/><text x="23.2588%" y="1022.50">_apply_a..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (27 samples, 5.97%)</title><rect x="23.0088%" y="1028" width="5.9735%" height="15" fill="rgb(251,177,13)" fg:x="104" fg:w="27"/><text x="23.2588%" y="1038.50">__call__..</text></g><g><title>new_handler (pydantic/_internal/_generate_schema.py:1828) (6 samples, 1.33%)</title><rect x="27.6549%" y="1044" width="1.3274%" height="15" fill="rgb(250,179,40)" fg:x="125" fg:w="6"/><text x="27.9049%" y="1054.50"></text></g><g><title>_apply_single_annotation (pydantic/_internal/_generate_schema.py:1753) (1 samples, 0.22%)</title><rect x="28.7611%" y="1060" width="0.2212%" height="15" fill="rgb(242,44,2)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1070.50"></text></g><g><title>_apply_single_annotation (pydantic/_internal/_generate_schema.py:1753) (1 samples, 0.22%)</title><rect x="28.7611%" y="1076" width="0.2212%" height="15" fill="rgb(216,177,13)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1086.50"></text></g><g><title>apply_known_metadata (pydantic/_internal/_known_annotated_metadata.py:156) (1 samples, 0.22%)</title><rect x="28.7611%" y="1092" width="0.2212%" height="15" fill="rgb(216,106,43)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1102.50"></text></g><g><title>collect_known_metadata (pydantic/_internal/_known_annotated_metadata.py:337) (1 samples, 0.22%)</title><rect x="28.7611%" y="1108" width="0.2212%" height="15" fill="rgb(216,183,2)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1118.50"></text></g><g><title>expand_grouped_metadata (pydantic/_internal/_known_annotated_metadata.py:116) (1 samples, 0.22%)</title><rect x="28.7611%" y="1124" width="0.2212%" height="15" fill="rgb(249,75,3)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1134.50"></text></g><g><title>__instancecheck__ (typing.py:1141) (1 samples, 0.22%)</title><rect x="28.7611%" y="1140" width="0.2212%" height="15" fill="rgb(219,67,39)" fg:x="130" fg:w="1"/><text x="29.0111%" y="1150.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (30 samples, 6.64%)</title><rect x="22.5664%" y="868" width="6.6372%" height="15" fill="rgb(253,228,2)" fg:x="102" fg:w="30"/><text x="22.8164%" y="878.50">__get_pyd..</text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (30 samples, 6.64%)</title><rect x="22.5664%" y="884" width="6.6372%" height="15" fill="rgb(235,138,27)" fg:x="102" fg:w="30"/><text x="22.8164%" y="894.50">__call__ ..</text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (30 samples, 6.64%)</title><rect x="22.5664%" y="900" width="6.6372%" height="15" fill="rgb(236,97,51)" fg:x="102" fg:w="30"/><text x="22.8164%" y="910.50">generate_..</text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (30 samples, 6.64%)</title><rect x="22.5664%" y="916" width="6.6372%" height="15" fill="rgb(240,80,30)" fg:x="102" fg:w="30"/><text x="22.8164%" y="926.50">_generate..</text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (30 samples, 6.64%)</title><rect x="22.5664%" y="932" width="6.6372%" height="15" fill="rgb(230,178,19)" fg:x="102" fg:w="30"/><text x="22.8164%" y="942.50">_generate..</text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (29 samples, 6.42%)</title><rect x="22.7876%" y="948" width="6.4159%" height="15" fill="rgb(210,190,27)" fg:x="103" fg:w="29"/><text x="23.0376%" y="958.50">_model_s..</text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (29 samples, 6.42%)</title><rect x="22.7876%" y="964" width="6.4159%" height="15" fill="rgb(222,107,31)" fg:x="103" fg:w="29"/><text x="23.0376%" y="974.50"><dictcom..</text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (29 samples, 6.42%)</title><rect x="22.7876%" y="980" width="6.4159%" height="15" fill="rgb(216,127,34)" fg:x="103" fg:w="29"/><text x="23.0376%" y="990.50">_generat..</text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (29 samples, 6.42%)</title><rect x="22.7876%" y="996" width="6.4159%" height="15" fill="rgb(234,116,52)" fg:x="103" fg:w="29"/><text x="23.0376%" y="1006.50">_common_..</text></g><g><title>get_json_schema_update_func (pydantic/_internal/_generate_schema.py:2099) (1 samples, 0.22%)</title><rect x="28.9823%" y="1012" width="0.2212%" height="15" fill="rgb(222,124,15)" fg:x="131" fg:w="1"/><text x="29.2323%" y="1022.50"></text></g><g><title>apply_discriminators (pydantic/_internal/_discriminated_union.py:39) (1 samples, 0.22%)</title><rect x="29.2035%" y="884" width="0.2212%" height="15" fill="rgb(231,179,28)" fg:x="132" fg:w="1"/><text x="29.4535%" y="894.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (1 samples, 0.22%)</title><rect x="29.2035%" y="900" width="0.2212%" height="15" fill="rgb(226,93,45)" fg:x="132" fg:w="1"/><text x="29.4535%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (1 samples, 0.22%)</title><rect x="29.2035%" y="916" width="0.2212%" height="15" fill="rgb(215,8,51)" fg:x="132" fg:w="1"/><text x="29.4535%" y="926.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="932" width="0.2212%" height="15" fill="rgb(223,106,5)" fg:x="132" fg:w="1"/><text x="29.4535%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="948" width="0.2212%" height="15" fill="rgb(250,191,5)" fg:x="132" fg:w="1"/><text x="29.4535%" y="958.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="964" width="0.2212%" height="15" fill="rgb(242,132,44)" fg:x="132" fg:w="1"/><text x="29.4535%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="980" width="0.2212%" height="15" fill="rgb(251,152,29)" fg:x="132" fg:w="1"/><text x="29.4535%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="996" width="0.2212%" height="15" fill="rgb(218,179,5)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1012" width="0.2212%" height="15" fill="rgb(227,67,19)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1022.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1028" width="0.2212%" height="15" fill="rgb(233,119,31)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1044" width="0.2212%" height="15" fill="rgb(241,120,22)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.22%)</title><rect x="29.2035%" y="1060" width="0.2212%" height="15" fill="rgb(224,102,30)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1076" width="0.2212%" height="15" fill="rgb(210,164,37)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1086.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1092" width="0.2212%" height="15" fill="rgb(226,191,16)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1108" width="0.2212%" height="15" fill="rgb(214,40,45)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1124" width="0.2212%" height="15" fill="rgb(244,29,26)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1140" width="0.2212%" height="15" fill="rgb(216,16,5)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1150.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1156" width="0.2212%" height="15" fill="rgb(249,76,35)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1172" width="0.2212%" height="15" fill="rgb(207,11,44)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1182.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1188" width="0.2212%" height="15" fill="rgb(228,190,49)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1198.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1204" width="0.2212%" height="15" fill="rgb(214,173,12)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1214.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1220" width="0.2212%" height="15" fill="rgb(218,26,35)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1230.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1236" width="0.2212%" height="15" fill="rgb(220,200,19)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1246.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1252" width="0.2212%" height="15" fill="rgb(239,95,49)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1262.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1268" width="0.2212%" height="15" fill="rgb(235,85,53)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1278.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1284" width="0.2212%" height="15" fill="rgb(233,133,31)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1294.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1300" width="0.2212%" height="15" fill="rgb(218,25,20)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1310.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.22%)</title><rect x="29.2035%" y="1316" width="0.2212%" height="15" fill="rgb(252,210,38)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1326.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1332" width="0.2212%" height="15" fill="rgb(242,134,21)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1342.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1348" width="0.2212%" height="15" fill="rgb(213,28,48)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1358.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1364" width="0.2212%" height="15" fill="rgb(250,196,2)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1374.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1380" width="0.2212%" height="15" fill="rgb(227,5,17)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1390.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1396" width="0.2212%" height="15" fill="rgb(221,226,24)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1406.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1412" width="0.2212%" height="15" fill="rgb(211,5,48)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1422.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1428" width="0.2212%" height="15" fill="rgb(219,150,6)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1438.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1444" width="0.2212%" height="15" fill="rgb(251,46,16)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1454.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1460" width="0.2212%" height="15" fill="rgb(220,204,40)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1470.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1476" width="0.2212%" height="15" fill="rgb(211,85,2)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1486.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1492" width="0.2212%" height="15" fill="rgb(229,17,7)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1502.50"></text></g><g><title>handle_dict_schema (pydantic/_internal/_core_utils.py:284) (1 samples, 0.22%)</title><rect x="29.2035%" y="1508" width="0.2212%" height="15" fill="rgb(239,72,28)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1518.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1524" width="0.2212%" height="15" fill="rgb(230,47,54)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1534.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1540" width="0.2212%" height="15" fill="rgb(214,50,8)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1550.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1556" width="0.2212%" height="15" fill="rgb(216,198,43)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1566.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.22%)</title><rect x="29.2035%" y="1572" width="0.2212%" height="15" fill="rgb(234,20,35)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1582.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1588" width="0.2212%" height="15" fill="rgb(254,45,19)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1598.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1604" width="0.2212%" height="15" fill="rgb(219,14,44)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1614.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1620" width="0.2212%" height="15" fill="rgb(217,220,26)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1630.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.2035%" y="1636" width="0.2212%" height="15" fill="rgb(213,158,28)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1646.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1652" width="0.2212%" height="15" fill="rgb(252,51,52)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1662.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1668" width="0.2212%" height="15" fill="rgb(246,89,16)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1678.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.2035%" y="1684" width="0.2212%" height="15" fill="rgb(216,158,49)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1694.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.22%)</title><rect x="29.2035%" y="1700" width="0.2212%" height="15" fill="rgb(236,107,19)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1710.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.2035%" y="1716" width="0.2212%" height="15" fill="rgb(228,185,30)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1726.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.2035%" y="1732" width="0.2212%" height="15" fill="rgb(246,134,8)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1742.50"></text></g><g><title>get_ref (pydantic/_internal/_core_utils.py:122) (1 samples, 0.22%)</title><rect x="29.2035%" y="1748" width="0.2212%" height="15" fill="rgb(214,143,50)" fg:x="132" fg:w="1"/><text x="29.4535%" y="1758.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="29.4248%" y="916" width="0.4425%" height="15" fill="rgb(228,75,8)" fg:x="133" fg:w="2"/><text x="29.6748%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="29.4248%" y="932" width="0.4425%" height="15" fill="rgb(207,175,4)" fg:x="133" fg:w="2"/><text x="29.6748%" y="942.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="29.4248%" y="948" width="0.4425%" height="15" fill="rgb(205,108,24)" fg:x="133" fg:w="2"/><text x="29.6748%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="29.4248%" y="964" width="0.4425%" height="15" fill="rgb(244,120,49)" fg:x="133" fg:w="2"/><text x="29.6748%" y="974.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.44%)</title><rect x="29.4248%" y="980" width="0.4425%" height="15" fill="rgb(223,47,38)" fg:x="133" fg:w="2"/><text x="29.6748%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="29.4248%" y="996" width="0.4425%" height="15" fill="rgb(229,179,11)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1006.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="29.4248%" y="1012" width="0.4425%" height="15" fill="rgb(231,122,1)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="29.4248%" y="1028" width="0.4425%" height="15" fill="rgb(245,119,9)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1038.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.44%)</title><rect x="29.4248%" y="1044" width="0.4425%" height="15" fill="rgb(241,163,25)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="29.4248%" y="1060" width="0.4425%" height="15" fill="rgb(217,214,3)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1070.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="29.4248%" y="1076" width="0.4425%" height="15" fill="rgb(240,86,28)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="29.4248%" y="1092" width="0.4425%" height="15" fill="rgb(215,47,9)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1102.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.44%)</title><rect x="29.4248%" y="1108" width="0.4425%" height="15" fill="rgb(252,25,45)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="29.4248%" y="1124" width="0.4425%" height="15" fill="rgb(251,164,9)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1134.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="29.4248%" y="1140" width="0.4425%" height="15" fill="rgb(233,194,0)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="29.4248%" y="1156" width="0.4425%" height="15" fill="rgb(249,111,24)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.44%)</title><rect x="29.4248%" y="1172" width="0.4425%" height="15" fill="rgb(250,223,3)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="29.4248%" y="1188" width="0.4425%" height="15" fill="rgb(236,178,37)" fg:x="133" fg:w="2"/><text x="29.6748%" y="1198.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.6460%" y="1204" width="0.2212%" height="15" fill="rgb(241,158,50)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1214.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.6460%" y="1220" width="0.2212%" height="15" fill="rgb(213,121,41)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1230.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.22%)</title><rect x="29.6460%" y="1236" width="0.2212%" height="15" fill="rgb(240,92,3)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1246.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.6460%" y="1252" width="0.2212%" height="15" fill="rgb(205,123,3)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1262.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.6460%" y="1268" width="0.2212%" height="15" fill="rgb(205,97,47)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1278.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.6460%" y="1284" width="0.2212%" height="15" fill="rgb(247,152,14)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1294.50"></text></g><g><title>handle_list_schema (pydantic/_internal/_core_utils.py:256) (1 samples, 0.22%)</title><rect x="29.6460%" y="1300" width="0.2212%" height="15" fill="rgb(248,195,53)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1310.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.6460%" y="1316" width="0.2212%" height="15" fill="rgb(226,201,16)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1326.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="29.6460%" y="1332" width="0.2212%" height="15" fill="rgb(205,98,0)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1342.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.6460%" y="1348" width="0.2212%" height="15" fill="rgb(214,191,48)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1358.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.22%)</title><rect x="29.6460%" y="1364" width="0.2212%" height="15" fill="rgb(237,112,39)" fg:x="134" fg:w="1"/><text x="29.8960%" y="1374.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (3 samples, 0.66%)</title><rect x="29.4248%" y="884" width="0.6637%" height="15" fill="rgb(247,203,27)" fg:x="133" fg:w="3"/><text x="29.6748%" y="894.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (3 samples, 0.66%)</title><rect x="29.4248%" y="900" width="0.6637%" height="15" fill="rgb(235,124,28)" fg:x="133" fg:w="3"/><text x="29.6748%" y="910.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="916" width="0.2212%" height="15" fill="rgb(208,207,46)" fg:x="135" fg:w="1"/><text x="30.1173%" y="926.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="932" width="0.2212%" height="15" fill="rgb(234,176,4)" fg:x="135" fg:w="1"/><text x="30.1173%" y="942.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="948" width="0.2212%" height="15" fill="rgb(230,133,28)" fg:x="135" fg:w="1"/><text x="30.1173%" y="958.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="964" width="0.2212%" height="15" fill="rgb(211,137,40)" fg:x="135" fg:w="1"/><text x="30.1173%" y="974.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="980" width="0.2212%" height="15" fill="rgb(254,35,13)" fg:x="135" fg:w="1"/><text x="30.1173%" y="990.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="996" width="0.2212%" height="15" fill="rgb(225,49,51)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1006.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1012" width="0.2212%" height="15" fill="rgb(251,10,15)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1022.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1028" width="0.2212%" height="15" fill="rgb(228,207,15)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1038.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.22%)</title><rect x="29.8673%" y="1044" width="0.2212%" height="15" fill="rgb(241,99,19)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1054.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1060" width="0.2212%" height="15" fill="rgb(207,104,49)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1070.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1076" width="0.2212%" height="15" fill="rgb(234,99,18)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1086.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1092" width="0.2212%" height="15" fill="rgb(213,191,49)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1102.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="1108" width="0.2212%" height="15" fill="rgb(210,226,19)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1118.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1124" width="0.2212%" height="15" fill="rgb(229,97,18)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1134.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1140" width="0.2212%" height="15" fill="rgb(211,167,15)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1150.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1156" width="0.2212%" height="15" fill="rgb(210,169,34)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1166.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="1172" width="0.2212%" height="15" fill="rgb(241,121,31)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1182.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1188" width="0.2212%" height="15" fill="rgb(232,40,11)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1198.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1204" width="0.2212%" height="15" fill="rgb(205,86,26)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1214.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1220" width="0.2212%" height="15" fill="rgb(231,126,28)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1230.50"></text></g><g><title>handle_dict_schema (pydantic/_internal/_core_utils.py:284) (1 samples, 0.22%)</title><rect x="29.8673%" y="1236" width="0.2212%" height="15" fill="rgb(219,221,18)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1246.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1252" width="0.2212%" height="15" fill="rgb(211,40,0)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1262.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1268" width="0.2212%" height="15" fill="rgb(239,85,43)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1278.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1284" width="0.2212%" height="15" fill="rgb(231,55,21)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1294.50"></text></g><g><title>handle_union_schema (pydantic/_internal/_core_utils.py:299) (1 samples, 0.22%)</title><rect x="29.8673%" y="1300" width="0.2212%" height="15" fill="rgb(225,184,43)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1310.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1316" width="0.2212%" height="15" fill="rgb(251,158,41)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1326.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1332" width="0.2212%" height="15" fill="rgb(234,159,37)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1342.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1348" width="0.2212%" height="15" fill="rgb(216,204,22)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1358.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="1364" width="0.2212%" height="15" fill="rgb(214,17,3)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1374.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1380" width="0.2212%" height="15" fill="rgb(212,111,17)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1390.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1396" width="0.2212%" height="15" fill="rgb(221,157,24)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1406.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1412" width="0.2212%" height="15" fill="rgb(252,16,13)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1422.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (1 samples, 0.22%)</title><rect x="29.8673%" y="1428" width="0.2212%" height="15" fill="rgb(221,62,2)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1438.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1444" width="0.2212%" height="15" fill="rgb(247,87,22)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1454.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1460" width="0.2212%" height="15" fill="rgb(215,73,9)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1470.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1476" width="0.2212%" height="15" fill="rgb(207,175,33)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1486.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="1492" width="0.2212%" height="15" fill="rgb(243,129,54)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1502.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1508" width="0.2212%" height="15" fill="rgb(227,119,45)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1518.50"></text></g><g><title>inline_refs (pydantic/_internal/_core_utils.py:493) (1 samples, 0.22%)</title><rect x="29.8673%" y="1524" width="0.2212%" height="15" fill="rgb(205,109,36)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1534.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="29.8673%" y="1540" width="0.2212%" height="15" fill="rgb(205,6,39)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1550.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="29.8673%" y="1556" width="0.2212%" height="15" fill="rgb(221,32,16)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1566.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="29.8673%" y="1572" width="0.2212%" height="15" fill="rgb(228,144,50)" fg:x="135" fg:w="1"/><text x="30.1173%" y="1582.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (7 samples, 1.55%)</title><rect x="29.2035%" y="868" width="1.5487%" height="15" fill="rgb(229,201,53)" fg:x="132" fg:w="7"/><text x="29.4535%" y="878.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (3 samples, 0.66%)</title><rect x="30.0885%" y="884" width="0.6637%" height="15" fill="rgb(249,153,27)" fg:x="136" fg:w="3"/><text x="30.3385%" y="894.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (38 samples, 8.41%)</title><rect x="22.5664%" y="836" width="8.4071%" height="15" fill="rgb(227,106,25)" fg:x="102" fg:w="38"/><text x="22.8164%" y="846.50">__new__ (pyd..</text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (38 samples, 8.41%)</title><rect x="22.5664%" y="852" width="8.4071%" height="15" fill="rgb(230,65,29)" fg:x="102" fg:w="38"/><text x="22.8164%" y="862.50">complete_mod..</text></g><g><title>generate_pydantic_signature (pydantic/_internal/_signature.py:145) (1 samples, 0.22%)</title><rect x="30.7522%" y="868" width="0.2212%" height="15" fill="rgb(221,57,46)" fg:x="139" fg:w="1"/><text x="31.0022%" y="878.50"></text></g><g><title>_generate_signature_parameters (pydantic/_internal/_signature.py:71) (1 samples, 0.22%)</title><rect x="30.7522%" y="884" width="0.2212%" height="15" fill="rgb(229,161,17)" fg:x="139" fg:w="1"/><text x="31.0022%" y="894.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.22%)</title><rect x="30.7522%" y="900" width="0.2212%" height="15" fill="rgb(222,213,11)" fg:x="139" fg:w="1"/><text x="31.0022%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="30.9735%" y="1348" width="0.2212%" height="15" fill="rgb(235,35,13)" fg:x="140" fg:w="1"/><text x="31.2235%" y="1358.50"></text></g><g><title><module> (pydantic_core/core_schema.py:1) (1 samples, 0.22%)</title><rect x="30.9735%" y="1364" width="0.2212%" height="15" fill="rgb(233,158,34)" fg:x="140" fg:w="1"/><text x="31.2235%" y="1374.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.22%)</title><rect x="30.9735%" y="1380" width="0.2212%" height="15" fill="rgb(215,151,48)" fg:x="140" fg:w="1"/><text x="31.2235%" y="1390.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.22%)</title><rect x="30.9735%" y="1396" width="0.2212%" height="15" fill="rgb(229,84,14)" fg:x="140" fg:w="1"/><text x="31.2235%" y="1406.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.22%)</title><rect x="30.9735%" y="1412" width="0.2212%" height="15" fill="rgb(229,68,14)" fg:x="140" fg:w="1"/><text x="31.2235%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="30.9735%" y="1332" width="0.4425%" height="15" fill="rgb(243,106,26)" fg:x="140" fg:w="2"/><text x="31.2235%" y="1342.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="31.1947%" y="1348" width="0.2212%" height="15" fill="rgb(206,45,38)" fg:x="141" fg:w="1"/><text x="31.4447%" y="1358.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="31.1947%" y="1364" width="0.2212%" height="15" fill="rgb(226,6,15)" fg:x="141" fg:w="1"/><text x="31.4447%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="30.9735%" y="1188" width="1.3274%" height="15" fill="rgb(232,22,54)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="30.9735%" y="1204" width="1.3274%" height="15" fill="rgb(229,222,32)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="30.9735%" y="1220" width="1.3274%" height="15" fill="rgb(228,62,29)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="30.9735%" y="1236" width="1.3274%" height="15" fill="rgb(251,103,34)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="30.9735%" y="1252" width="1.3274%" height="15" fill="rgb(233,12,30)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1262.50"></text></g><g><title><module> (pydantic_core/__init__.py:1) (6 samples, 1.33%)</title><rect x="30.9735%" y="1268" width="1.3274%" height="15" fill="rgb(238,52,0)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="30.9735%" y="1284" width="1.3274%" height="15" fill="rgb(223,98,5)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="30.9735%" y="1300" width="1.3274%" height="15" fill="rgb(228,75,37)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="30.9735%" y="1316" width="1.3274%" height="15" fill="rgb(205,115,49)" fg:x="140" fg:w="6"/><text x="31.2235%" y="1326.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (4 samples, 0.88%)</title><rect x="31.4159%" y="1332" width="0.8850%" height="15" fill="rgb(250,154,43)" fg:x="142" fg:w="4"/><text x="31.6659%" y="1342.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (4 samples, 0.88%)</title><rect x="31.4159%" y="1348" width="0.8850%" height="15" fill="rgb(226,43,29)" fg:x="142" fg:w="4"/><text x="31.6659%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="31.4159%" y="1364" width="0.8850%" height="15" fill="rgb(249,228,39)" fg:x="142" fg:w="4"/><text x="31.6659%" y="1374.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 1.55%)</title><rect x="30.9735%" y="1028" width="1.5487%" height="15" fill="rgb(216,79,43)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1038.50"></text></g><g><title>__getattr__ (pydantic/__init__.py:371) (7 samples, 1.55%)</title><rect x="30.9735%" y="1044" width="1.5487%" height="15" fill="rgb(228,95,12)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1054.50"></text></g><g><title>import_module (importlib/__init__.py:109) (7 samples, 1.55%)</title><rect x="30.9735%" y="1060" width="1.5487%" height="15" fill="rgb(249,221,15)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1070.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (7 samples, 1.55%)</title><rect x="30.9735%" y="1076" width="1.5487%" height="15" fill="rgb(233,34,13)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="30.9735%" y="1092" width="1.5487%" height="15" fill="rgb(214,103,39)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="30.9735%" y="1108" width="1.5487%" height="15" fill="rgb(251,126,39)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="30.9735%" y="1124" width="1.5487%" height="15" fill="rgb(214,216,36)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="30.9735%" y="1140" width="1.5487%" height="15" fill="rgb(220,221,8)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="30.9735%" y="1156" width="1.5487%" height="15" fill="rgb(240,216,3)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1166.50"></text></g><g><title><module> (pydantic/main.py:1) (7 samples, 1.55%)</title><rect x="30.9735%" y="1172" width="1.5487%" height="15" fill="rgb(232,218,17)" fg:x="140" fg:w="7"/><text x="31.2235%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="32.3009%" y="1188" width="0.2212%" height="15" fill="rgb(229,163,45)" fg:x="146" fg:w="1"/><text x="32.5509%" y="1198.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (4 samples, 0.88%)</title><rect x="32.5221%" y="1076" width="0.8850%" height="15" fill="rgb(231,110,42)" fg:x="147" fg:w="4"/><text x="32.7721%" y="1086.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (4 samples, 0.88%)</title><rect x="32.5221%" y="1092" width="0.8850%" height="15" fill="rgb(208,170,48)" fg:x="147" fg:w="4"/><text x="32.7721%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="33.4071%" y="1092" width="0.2212%" height="15" fill="rgb(239,116,25)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="33.4071%" y="1108" width="0.2212%" height="15" fill="rgb(219,200,50)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1118.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="33.4071%" y="1124" width="0.2212%" height="15" fill="rgb(245,200,0)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1134.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="33.4071%" y="1140" width="0.2212%" height="15" fill="rgb(245,119,33)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1150.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="33.4071%" y="1156" width="0.2212%" height="15" fill="rgb(231,125,12)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1166.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="33.4071%" y="1172" width="0.2212%" height="15" fill="rgb(216,96,41)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1182.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.22%)</title><rect x="33.4071%" y="1188" width="0.2212%" height="15" fill="rgb(248,43,45)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1198.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.22%)</title><rect x="33.4071%" y="1204" width="0.2212%" height="15" fill="rgb(217,222,7)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1214.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="33.4071%" y="1220" width="0.2212%" height="15" fill="rgb(233,28,6)" fg:x="151" fg:w="1"/><text x="33.6571%" y="1230.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (6 samples, 1.33%)</title><rect x="32.5221%" y="1060" width="1.3274%" height="15" fill="rgb(231,218,15)" fg:x="147" fg:w="6"/><text x="32.7721%" y="1070.50"></text></g><g><title>create_schema_validator (pydantic/plugin/_schema_validator.py:20) (2 samples, 0.44%)</title><rect x="33.4071%" y="1076" width="0.4425%" height="15" fill="rgb(226,171,48)" fg:x="151" fg:w="2"/><text x="33.6571%" y="1086.50"></text></g><g><title>get_plugins (pydantic/plugin/_loader.py:20) (1 samples, 0.22%)</title><rect x="33.6283%" y="1092" width="0.2212%" height="15" fill="rgb(235,201,9)" fg:x="152" fg:w="1"/><text x="33.8783%" y="1102.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.22%)</title><rect x="33.6283%" y="1108" width="0.2212%" height="15" fill="rgb(217,80,15)" fg:x="152" fg:w="1"/><text x="33.8783%" y="1118.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:343) (1 samples, 0.22%)</title><rect x="33.6283%" y="1124" width="0.2212%" height="15" fill="rgb(219,152,8)" fg:x="152" fg:w="1"/><text x="33.8783%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 3.10%)</title><rect x="30.9735%" y="836" width="3.0973%" height="15" fill="rgb(243,107,38)" fg:x="140" fg:w="14"/><text x="31.2235%" y="846.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 3.10%)</title><rect x="30.9735%" y="852" width="3.0973%" height="15" fill="rgb(231,17,5)" fg:x="140" fg:w="14"/><text x="31.2235%" y="862.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 3.10%)</title><rect x="30.9735%" y="868" width="3.0973%" height="15" fill="rgb(209,25,54)" fg:x="140" fg:w="14"/><text x="31.2235%" y="878.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 3.10%)</title><rect x="30.9735%" y="884" width="3.0973%" height="15" fill="rgb(219,0,2)" fg:x="140" fg:w="14"/><text x="31.2235%" y="894.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 3.10%)</title><rect x="30.9735%" y="900" width="3.0973%" height="15" fill="rgb(246,9,5)" fg:x="140" fg:w="14"/><text x="31.2235%" y="910.50">_ca..</text></g><g><title><module> (fastapi/_compat.py:1) (14 samples, 3.10%)</title><rect x="30.9735%" y="916" width="3.0973%" height="15" fill="rgb(226,159,4)" fg:x="140" fg:w="14"/><text x="31.2235%" y="926.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 3.10%)</title><rect x="30.9735%" y="932" width="3.0973%" height="15" fill="rgb(219,175,34)" fg:x="140" fg:w="14"/><text x="31.2235%" y="942.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 3.10%)</title><rect x="30.9735%" y="948" width="3.0973%" height="15" fill="rgb(236,10,46)" fg:x="140" fg:w="14"/><text x="31.2235%" y="958.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (14 samples, 3.10%)</title><rect x="30.9735%" y="964" width="3.0973%" height="15" fill="rgb(240,211,16)" fg:x="140" fg:w="14"/><text x="31.2235%" y="974.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (14 samples, 3.10%)</title><rect x="30.9735%" y="980" width="3.0973%" height="15" fill="rgb(205,3,43)" fg:x="140" fg:w="14"/><text x="31.2235%" y="990.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (14 samples, 3.10%)</title><rect x="30.9735%" y="996" width="3.0973%" height="15" fill="rgb(245,7,22)" fg:x="140" fg:w="14"/><text x="31.2235%" y="1006.50">_ca..</text></g><g><title><module> (fastapi/exceptions.py:1) (14 samples, 3.10%)</title><rect x="30.9735%" y="1012" width="3.0973%" height="15" fill="rgb(239,132,32)" fg:x="140" fg:w="14"/><text x="31.2235%" y="1022.50"><mo..</text></g><g><title>create_model (pydantic/main.py:1397) (7 samples, 1.55%)</title><rect x="32.5221%" y="1028" width="1.5487%" height="15" fill="rgb(228,202,34)" fg:x="147" fg:w="7"/><text x="32.7721%" y="1038.50"></text></g><g><title>__new__ (pydantic/_internal/_model_construction.py:60) (7 samples, 1.55%)</title><rect x="32.5221%" y="1044" width="1.5487%" height="15" fill="rgb(254,200,22)" fg:x="147" fg:w="7"/><text x="32.7721%" y="1054.50"></text></g><g><title>inspect_namespace (pydantic/_internal/_model_construction.py:294) (1 samples, 0.22%)</title><rect x="33.8496%" y="1060" width="0.2212%" height="15" fill="rgb(219,10,39)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="33.8496%" y="1076" width="0.2212%" height="15" fill="rgb(226,210,39)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="33.8496%" y="1092" width="0.2212%" height="15" fill="rgb(208,219,16)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="33.8496%" y="1108" width="0.2212%" height="15" fill="rgb(216,158,51)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="33.8496%" y="1124" width="0.2212%" height="15" fill="rgb(233,14,44)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="33.8496%" y="1140" width="0.2212%" height="15" fill="rgb(237,97,39)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1150.50"></text></g><g><title><module> (pydantic/fields.py:1) (1 samples, 0.22%)</title><rect x="33.8496%" y="1156" width="0.2212%" height="15" fill="rgb(218,198,43)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="33.8496%" y="1172" width="0.2212%" height="15" fill="rgb(231,104,20)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="33.8496%" y="1188" width="0.2212%" height="15" fill="rgb(254,36,13)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="33.8496%" y="1204" width="0.2212%" height="15" fill="rgb(248,14,50)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="33.8496%" y="1220" width="0.2212%" height="15" fill="rgb(217,107,29)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="33.8496%" y="1236" width="0.2212%" height="15" fill="rgb(251,169,33)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="33.8496%" y="1252" width="0.2212%" height="15" fill="rgb(217,108,32)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="33.8496%" y="1268" width="0.2212%" height="15" fill="rgb(219,66,42)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1278.50"></text></g><g><title><module> (pydantic/types.py:1) (1 samples, 0.22%)</title><rect x="33.8496%" y="1284" width="0.2212%" height="15" fill="rgb(206,180,7)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1294.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.22%)</title><rect x="33.8496%" y="1300" width="0.2212%" height="15" fill="rgb(208,226,31)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1310.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.22%)</title><rect x="33.8496%" y="1316" width="0.2212%" height="15" fill="rgb(218,26,49)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1326.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.22%)</title><rect x="33.8496%" y="1332" width="0.2212%" height="15" fill="rgb(233,197,48)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1342.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.22%)</title><rect x="33.8496%" y="1348" width="0.2212%" height="15" fill="rgb(252,181,51)" fg:x="153" fg:w="1"/><text x="34.0996%" y="1358.50"></text></g><g><title>__get_pydantic_core_schema__ (pydantic/main.py:562) (1 samples, 0.22%)</title><rect x="34.0708%" y="884" width="0.2212%" height="15" fill="rgb(253,90,19)" fg:x="154" fg:w="1"/><text x="34.3208%" y="894.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="34.0708%" y="900" width="0.2212%" height="15" fill="rgb(215,171,30)" fg:x="154" fg:w="1"/><text x="34.3208%" y="910.50"></text></g><g><title>generate_schema (pydantic/_internal/_generate_schema.py:464) (1 samples, 0.22%)</title><rect x="34.0708%" y="916" width="0.2212%" height="15" fill="rgb(214,222,9)" fg:x="154" fg:w="1"/><text x="34.3208%" y="926.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="34.0708%" y="932" width="0.2212%" height="15" fill="rgb(223,3,22)" fg:x="154" fg:w="1"/><text x="34.3208%" y="942.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="34.0708%" y="948" width="0.2212%" height="15" fill="rgb(225,196,46)" fg:x="154" fg:w="1"/><text x="34.3208%" y="958.50"></text></g><g><title>_model_schema (pydantic/_internal/_generate_schema.py:513) (1 samples, 0.22%)</title><rect x="34.0708%" y="964" width="0.2212%" height="15" fill="rgb(209,110,37)" fg:x="154" fg:w="1"/><text x="34.3208%" y="974.50"></text></g><g><title><dictcomp> (pydantic/_internal/_generate_schema.py:572) (1 samples, 0.22%)</title><rect x="34.0708%" y="980" width="0.2212%" height="15" fill="rgb(249,89,12)" fg:x="154" fg:w="1"/><text x="34.3208%" y="990.50"></text></g><g><title>_generate_md_field_schema (pydantic/_internal/_generate_schema.py:916) (1 samples, 0.22%)</title><rect x="34.0708%" y="996" width="0.2212%" height="15" fill="rgb(226,27,33)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1006.50"></text></g><g><title>_common_field_schema (pydantic/_internal/_generate_schema.py:1004) (1 samples, 0.22%)</title><rect x="34.0708%" y="1012" width="0.2212%" height="15" fill="rgb(213,82,22)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1022.50"></text></g><g><title>_apply_annotations (pydantic/_internal/_generate_schema.py:1706) (1 samples, 0.22%)</title><rect x="34.0708%" y="1028" width="0.2212%" height="15" fill="rgb(248,140,0)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1038.50"></text></g><g><title>__call__ (pydantic/_internal/_schema_generation_shared.py:81) (1 samples, 0.22%)</title><rect x="34.0708%" y="1044" width="0.2212%" height="15" fill="rgb(228,106,3)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1054.50"></text></g><g><title>inner_handler (pydantic/_internal/_generate_schema.py:1725) (1 samples, 0.22%)</title><rect x="34.0708%" y="1060" width="0.2212%" height="15" fill="rgb(209,23,37)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1070.50"></text></g><g><title>_generate_schema (pydantic/_internal/_generate_schema.py:731) (1 samples, 0.22%)</title><rect x="34.0708%" y="1076" width="0.2212%" height="15" fill="rgb(241,93,50)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1086.50"></text></g><g><title>_generate_schema_inner (pydantic/_internal/_generate_schema.py:742) (1 samples, 0.22%)</title><rect x="34.0708%" y="1092" width="0.2212%" height="15" fill="rgb(253,46,43)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1102.50"></text></g><g><title>match_type (pydantic/_internal/_generate_schema.py:766) (1 samples, 0.22%)</title><rect x="34.0708%" y="1108" width="0.2212%" height="15" fill="rgb(226,206,43)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1118.50"></text></g><g><title>_get_prepare_pydantic_annotations_for_known_type (pydantic/_internal/_generate_schema.py:1687) (1 samples, 0.22%)</title><rect x="34.0708%" y="1124" width="0.2212%" height="15" fill="rgb(217,54,7)" fg:x="154" fg:w="1"/><text x="34.3208%" y="1134.50"></text></g><g><title>simplify_schema_references (pydantic/_internal/_core_utils.py:424) (2 samples, 0.44%)</title><rect x="34.2920%" y="900" width="0.4425%" height="15" fill="rgb(223,5,52)" fg:x="155" fg:w="2"/><text x="34.5420%" y="910.50"></text></g><g><title>walk_core_schema (pydantic/_internal/_core_utils.py:407) (2 samples, 0.44%)</title><rect x="34.2920%" y="916" width="0.4425%" height="15" fill="rgb(206,52,46)" fg:x="155" fg:w="2"/><text x="34.5420%" y="926.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="34.2920%" y="932" width="0.4425%" height="15" fill="rgb(253,136,11)" fg:x="155" fg:w="2"/><text x="34.5420%" y="942.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="34.2920%" y="948" width="0.4425%" height="15" fill="rgb(208,106,33)" fg:x="155" fg:w="2"/><text x="34.5420%" y="958.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="34.2920%" y="964" width="0.4425%" height="15" fill="rgb(206,54,4)" fg:x="155" fg:w="2"/><text x="34.5420%" y="974.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="34.2920%" y="980" width="0.4425%" height="15" fill="rgb(213,3,15)" fg:x="155" fg:w="2"/><text x="34.5420%" y="990.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (2 samples, 0.44%)</title><rect x="34.2920%" y="996" width="0.4425%" height="15" fill="rgb(252,211,39)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1006.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="34.2920%" y="1012" width="0.4425%" height="15" fill="rgb(223,6,36)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1022.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="34.2920%" y="1028" width="0.4425%" height="15" fill="rgb(252,169,45)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1038.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (2 samples, 0.44%)</title><rect x="34.2920%" y="1044" width="0.4425%" height="15" fill="rgb(212,48,26)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1054.50"></text></g><g><title>handle_model_fields_schema (pydantic/_internal/_core_utils.py:330) (2 samples, 0.44%)</title><rect x="34.2920%" y="1060" width="0.4425%" height="15" fill="rgb(251,102,48)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1070.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (2 samples, 0.44%)</title><rect x="34.2920%" y="1076" width="0.4425%" height="15" fill="rgb(243,208,16)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1086.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (2 samples, 0.44%)</title><rect x="34.2920%" y="1092" width="0.4425%" height="15" fill="rgb(219,96,24)" fg:x="155" fg:w="2"/><text x="34.5420%" y="1102.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="34.5133%" y="1108" width="0.2212%" height="15" fill="rgb(219,33,29)" fg:x="156" fg:w="1"/><text x="34.7633%" y="1118.50"></text></g><g><title>_handle_other_schemas (pydantic/_internal/_core_utils.py:213) (1 samples, 0.22%)</title><rect x="34.5133%" y="1124" width="0.2212%" height="15" fill="rgb(223,176,5)" fg:x="156" fg:w="1"/><text x="34.7633%" y="1134.50"></text></g><g><title>walk (pydantic/_internal/_core_utils.py:203) (1 samples, 0.22%)</title><rect x="34.5133%" y="1140" width="0.2212%" height="15" fill="rgb(228,140,14)" fg:x="156" fg:w="1"/><text x="34.7633%" y="1150.50"></text></g><g><title>collect_refs (pydantic/_internal/_core_utils.py:430) (1 samples, 0.22%)</title><rect x="34.5133%" y="1156" width="0.2212%" height="15" fill="rgb(217,179,31)" fg:x="156" fg:w="1"/><text x="34.7633%" y="1166.50"></text></g><g><title>_walk (pydantic/_internal/_core_utils.py:206) (1 samples, 0.22%)</title><rect x="34.5133%" y="1172" width="0.2212%" height="15" fill="rgb(230,9,30)" fg:x="156" fg:w="1"/><text x="34.7633%" y="1182.50"></text></g><g><title><module> (fastapi/params.py:1) (57 samples, 12.61%)</title><rect x="22.3451%" y="724" width="12.6106%" height="15" fill="rgb(230,136,20)" fg:x="101" fg:w="57"/><text x="22.5951%" y="734.50"><module> (fastapi/p..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (57 samples, 12.61%)</title><rect x="22.3451%" y="740" width="12.6106%" height="15" fill="rgb(215,210,22)" fg:x="101" fg:w="57"/><text x="22.5951%" y="750.50">_find_and_load (<fr..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (57 samples, 12.61%)</title><rect x="22.3451%" y="756" width="12.6106%" height="15" fill="rgb(218,43,5)" fg:x="101" fg:w="57"/><text x="22.5951%" y="766.50">_find_and_load_unlo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (57 samples, 12.61%)</title><rect x="22.3451%" y="772" width="12.6106%" height="15" fill="rgb(216,11,5)" fg:x="101" fg:w="57"/><text x="22.5951%" y="782.50">_load_unlocked (<fr..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (57 samples, 12.61%)</title><rect x="22.3451%" y="788" width="12.6106%" height="15" fill="rgb(209,82,29)" fg:x="101" fg:w="57"/><text x="22.5951%" y="798.50">exec_module (<froze..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (57 samples, 12.61%)</title><rect x="22.3451%" y="804" width="12.6106%" height="15" fill="rgb(244,115,12)" fg:x="101" fg:w="57"/><text x="22.5951%" y="814.50">_call_with_frames_r..</text></g><g><title><module> (fastapi/openapi/models.py:1) (57 samples, 12.61%)</title><rect x="22.3451%" y="820" width="12.6106%" height="15" fill="rgb(222,82,18)" fg:x="101" fg:w="57"/><text x="22.5951%" y="830.50"><module> (fastapi/o..</text></g><g><title>_model_rebuild (fastapi/_compat.py:171) (4 samples, 0.88%)</title><rect x="34.0708%" y="836" width="0.8850%" height="15" fill="rgb(249,227,8)" fg:x="154" fg:w="4"/><text x="34.3208%" y="846.50"></text></g><g><title>model_rebuild (pydantic/main.py:428) (4 samples, 0.88%)</title><rect x="34.0708%" y="852" width="0.8850%" height="15" fill="rgb(253,141,45)" fg:x="154" fg:w="4"/><text x="34.3208%" y="862.50"></text></g><g><title>complete_model_class (pydantic/_internal/_model_construction.py:470) (4 samples, 0.88%)</title><rect x="34.0708%" y="868" width="0.8850%" height="15" fill="rgb(234,184,4)" fg:x="154" fg:w="4"/><text x="34.3208%" y="878.50"></text></g><g><title>clean_schema (pydantic/_internal/_generate_schema.py:433) (3 samples, 0.66%)</title><rect x="34.2920%" y="884" width="0.6637%" height="15" fill="rgb(218,194,23)" fg:x="155" fg:w="3"/><text x="34.5420%" y="894.50"></text></g><g><title>validate_core_schema (pydantic/_internal/_core_utils.py:572) (1 samples, 0.22%)</title><rect x="34.7345%" y="900" width="0.2212%" height="15" fill="rgb(235,66,41)" fg:x="157" fg:w="1"/><text x="34.9845%" y="910.50"></text></g><g><title><module> (fastapi/__init__.py:1) (62 samples, 13.72%)</title><rect x="21.4602%" y="372" width="13.7168%" height="15" fill="rgb(245,217,1)" fg:x="97" fg:w="62"/><text x="21.7102%" y="382.50"><module> (fastapi/__i..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (62 samples, 13.72%)</title><rect x="21.4602%" y="388" width="13.7168%" height="15" fill="rgb(229,91,1)" fg:x="97" fg:w="62"/><text x="21.7102%" y="398.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (62 samples, 13.72%)</title><rect x="21.4602%" y="404" width="13.7168%" height="15" fill="rgb(207,101,30)" fg:x="97" fg:w="62"/><text x="21.7102%" y="414.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (62 samples, 13.72%)</title><rect x="21.4602%" y="420" width="13.7168%" height="15" fill="rgb(223,82,49)" fg:x="97" fg:w="62"/><text x="21.7102%" y="430.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (62 samples, 13.72%)</title><rect x="21.4602%" y="436" width="13.7168%" height="15" fill="rgb(218,167,17)" fg:x="97" fg:w="62"/><text x="21.7102%" y="446.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (62 samples, 13.72%)</title><rect x="21.4602%" y="452" width="13.7168%" height="15" fill="rgb(208,103,14)" fg:x="97" fg:w="62"/><text x="21.7102%" y="462.50">_call_with_frames_rem..</text></g><g><title><module> (fastapi/applications.py:1) (62 samples, 13.72%)</title><rect x="21.4602%" y="468" width="13.7168%" height="15" fill="rgb(238,20,8)" fg:x="97" fg:w="62"/><text x="21.7102%" y="478.50"><module> (fastapi/app..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (62 samples, 13.72%)</title><rect x="21.4602%" y="484" width="13.7168%" height="15" fill="rgb(218,80,54)" fg:x="97" fg:w="62"/><text x="21.7102%" y="494.50">_handle_fromlist (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (62 samples, 13.72%)</title><rect x="21.4602%" y="500" width="13.7168%" height="15" fill="rgb(240,144,17)" fg:x="97" fg:w="62"/><text x="21.7102%" y="510.50">_call_with_frames_rem..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (62 samples, 13.72%)</title><rect x="21.4602%" y="516" width="13.7168%" height="15" fill="rgb(245,27,50)" fg:x="97" fg:w="62"/><text x="21.7102%" y="526.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (62 samples, 13.72%)</title><rect x="21.4602%" y="532" width="13.7168%" height="15" fill="rgb(251,51,7)" fg:x="97" fg:w="62"/><text x="21.7102%" y="542.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (62 samples, 13.72%)</title><rect x="21.4602%" y="548" width="13.7168%" height="15" fill="rgb(245,217,29)" fg:x="97" fg:w="62"/><text x="21.7102%" y="558.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (62 samples, 13.72%)</title><rect x="21.4602%" y="564" width="13.7168%" height="15" fill="rgb(221,176,29)" fg:x="97" fg:w="62"/><text x="21.7102%" y="574.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (62 samples, 13.72%)</title><rect x="21.4602%" y="580" width="13.7168%" height="15" fill="rgb(212,180,24)" fg:x="97" fg:w="62"/><text x="21.7102%" y="590.50">_call_with_frames_rem..</text></g><g><title><module> (fastapi/routing.py:1) (62 samples, 13.72%)</title><rect x="21.4602%" y="596" width="13.7168%" height="15" fill="rgb(254,24,2)" fg:x="97" fg:w="62"/><text x="21.7102%" y="606.50"><module> (fastapi/rou..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (58 samples, 12.83%)</title><rect x="22.3451%" y="612" width="12.8319%" height="15" fill="rgb(230,100,2)" fg:x="101" fg:w="58"/><text x="22.5951%" y="622.50">_handle_fromlist (<..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (58 samples, 12.83%)</title><rect x="22.3451%" y="628" width="12.8319%" height="15" fill="rgb(219,142,25)" fg:x="101" fg:w="58"/><text x="22.5951%" y="638.50">_call_with_frames_r..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (58 samples, 12.83%)</title><rect x="22.3451%" y="644" width="12.8319%" height="15" fill="rgb(240,73,43)" fg:x="101" fg:w="58"/><text x="22.5951%" y="654.50">_find_and_load (<fr..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (58 samples, 12.83%)</title><rect x="22.3451%" y="660" width="12.8319%" height="15" fill="rgb(214,114,15)" fg:x="101" fg:w="58"/><text x="22.5951%" y="670.50">_find_and_load_unlo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (58 samples, 12.83%)</title><rect x="22.3451%" y="676" width="12.8319%" height="15" fill="rgb(207,130,4)" fg:x="101" fg:w="58"/><text x="22.5951%" y="686.50">_load_unlocked (<fr..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (58 samples, 12.83%)</title><rect x="22.3451%" y="692" width="12.8319%" height="15" fill="rgb(221,25,40)" fg:x="101" fg:w="58"/><text x="22.5951%" y="702.50">exec_module (<froze..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (58 samples, 12.83%)</title><rect x="22.3451%" y="708" width="12.8319%" height="15" fill="rgb(241,184,7)" fg:x="101" fg:w="58"/><text x="22.5951%" y="718.50">_call_with_frames_r..</text></g><g><title><module> (starlette/routing.py:1) (1 samples, 0.22%)</title><rect x="34.9558%" y="724" width="0.2212%" height="15" fill="rgb(235,159,4)" fg:x="158" fg:w="1"/><text x="35.2058%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="34.9558%" y="740" width="0.2212%" height="15" fill="rgb(214,87,48)" fg:x="158" fg:w="1"/><text x="35.2058%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="34.9558%" y="756" width="0.2212%" height="15" fill="rgb(246,198,24)" fg:x="158" fg:w="1"/><text x="35.2058%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="34.9558%" y="772" width="0.2212%" height="15" fill="rgb(209,66,40)" fg:x="158" fg:w="1"/><text x="35.2058%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="34.9558%" y="788" width="0.2212%" height="15" fill="rgb(233,147,39)" fg:x="158" fg:w="1"/><text x="35.2058%" y="798.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="34.9558%" y="804" width="0.2212%" height="15" fill="rgb(231,145,52)" fg:x="158" fg:w="1"/><text x="35.2058%" y="814.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="34.9558%" y="820" width="0.2212%" height="15" fill="rgb(206,20,26)" fg:x="158" fg:w="1"/><text x="35.2058%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (127 samples, 28.10%)</title><rect x="7.3009%" y="196" width="28.0973%" height="15" fill="rgb(238,220,4)" fg:x="33" fg:w="127"/><text x="7.5509%" y="206.50">_find_and_load (<frozen importlib._bootstrap>..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (127 samples, 28.10%)</title><rect x="7.3009%" y="212" width="28.0973%" height="15" fill="rgb(252,195,42)" fg:x="33" fg:w="127"/><text x="7.5509%" y="222.50">_find_and_load_unlocked (<frozen importlib._b..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (126 samples, 27.88%)</title><rect x="7.5221%" y="228" width="27.8761%" height="15" fill="rgb(209,10,6)" fg:x="34" fg:w="126"/><text x="7.7721%" y="238.50">_load_unlocked (<frozen importlib._bootstrap>..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (126 samples, 27.88%)</title><rect x="7.5221%" y="244" width="27.8761%" height="15" fill="rgb(229,3,52)" fg:x="34" fg:w="126"/><text x="7.7721%" y="254.50">exec_module (<frozen importlib._bootstrap_ext..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (126 samples, 27.88%)</title><rect x="7.5221%" y="260" width="27.8761%" height="15" fill="rgb(253,49,37)" fg:x="34" fg:w="126"/><text x="7.7721%" y="270.50">_call_with_frames_removed (<frozen importlib...</text></g><g><title><module> (dask_sql/server/app.py:1) (63 samples, 13.94%)</title><rect x="21.4602%" y="276" width="13.9381%" height="15" fill="rgb(240,103,49)" fg:x="97" fg:w="63"/><text x="21.7102%" y="286.50"><module> (dask_sql/se..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (63 samples, 13.94%)</title><rect x="21.4602%" y="292" width="13.9381%" height="15" fill="rgb(250,182,30)" fg:x="97" fg:w="63"/><text x="21.7102%" y="302.50">_find_and_load (<froz..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (63 samples, 13.94%)</title><rect x="21.4602%" y="308" width="13.9381%" height="15" fill="rgb(248,8,30)" fg:x="97" fg:w="63"/><text x="21.7102%" y="318.50">_find_and_load_unlock..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (63 samples, 13.94%)</title><rect x="21.4602%" y="324" width="13.9381%" height="15" fill="rgb(237,120,30)" fg:x="97" fg:w="63"/><text x="21.7102%" y="334.50">_load_unlocked (<froz..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (63 samples, 13.94%)</title><rect x="21.4602%" y="340" width="13.9381%" height="15" fill="rgb(221,146,34)" fg:x="97" fg:w="63"/><text x="21.7102%" y="350.50">exec_module (<frozen ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (63 samples, 13.94%)</title><rect x="21.4602%" y="356" width="13.9381%" height="15" fill="rgb(242,55,13)" fg:x="97" fg:w="63"/><text x="21.7102%" y="366.50">_call_with_frames_rem..</text></g><g><title><module> (uvicorn/__init__.py:1) (1 samples, 0.22%)</title><rect x="35.1770%" y="372" width="0.2212%" height="15" fill="rgb(242,112,31)" fg:x="159" fg:w="1"/><text x="35.4270%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="35.1770%" y="388" width="0.2212%" height="15" fill="rgb(249,192,27)" fg:x="159" fg:w="1"/><text x="35.4270%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="35.1770%" y="404" width="0.2212%" height="15" fill="rgb(208,204,44)" fg:x="159" fg:w="1"/><text x="35.4270%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="35.1770%" y="420" width="0.2212%" height="15" fill="rgb(208,93,54)" fg:x="159" fg:w="1"/><text x="35.4270%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="35.1770%" y="436" width="0.2212%" height="15" fill="rgb(242,1,31)" fg:x="159" fg:w="1"/><text x="35.4270%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="35.1770%" y="452" width="0.2212%" height="15" fill="rgb(241,83,25)" fg:x="159" fg:w="1"/><text x="35.4270%" y="462.50"></text></g><g><title><module> (uvicorn/config.py:1) (1 samples, 0.22%)</title><rect x="35.1770%" y="468" width="0.2212%" height="15" fill="rgb(205,169,50)" fg:x="159" fg:w="1"/><text x="35.4270%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="35.1770%" y="484" width="0.2212%" height="15" fill="rgb(239,186,37)" fg:x="159" fg:w="1"/><text x="35.4270%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="35.1770%" y="500" width="0.2212%" height="15" fill="rgb(205,221,10)" fg:x="159" fg:w="1"/><text x="35.4270%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="35.1770%" y="516" width="0.2212%" height="15" fill="rgb(218,196,15)" fg:x="159" fg:w="1"/><text x="35.4270%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="35.1770%" y="532" width="0.2212%" height="15" fill="rgb(218,196,35)" fg:x="159" fg:w="1"/><text x="35.4270%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="35.1770%" y="548" width="0.2212%" height="15" fill="rgb(233,63,24)" fg:x="159" fg:w="1"/><text x="35.4270%" y="558.50"></text></g><g><title><module> (uvicorn/_types.py:1) (1 samples, 0.22%)</title><rect x="35.1770%" y="564" width="0.2212%" height="15" fill="rgb(225,8,4)" fg:x="159" fg:w="1"/><text x="35.4270%" y="574.50"></text></g><g><title>__new__ (typing.py:1937) (1 samples, 0.22%)</title><rect x="35.1770%" y="580" width="0.2212%" height="15" fill="rgb(234,105,35)" fg:x="159" fg:w="1"/><text x="35.4270%" y="590.50"></text></g><g><title><dictcomp> (typing.py:1955) (1 samples, 0.22%)</title><rect x="35.1770%" y="596" width="0.2212%" height="15" fill="rgb(236,21,32)" fg:x="159" fg:w="1"/><text x="35.4270%" y="606.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.22%)</title><rect x="35.1770%" y="612" width="0.2212%" height="15" fill="rgb(228,109,6)" fg:x="159" fg:w="1"/><text x="35.4270%" y="622.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.22%)</title><rect x="35.1770%" y="628" width="0.2212%" height="15" fill="rgb(229,215,31)" fg:x="159" fg:w="1"/><text x="35.4270%" y="638.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.22%)</title><rect x="35.1770%" y="644" width="0.2212%" height="15" fill="rgb(221,52,54)" fg:x="159" fg:w="1"/><text x="35.4270%" y="654.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.22%)</title><rect x="35.3982%" y="484" width="0.2212%" height="15" fill="rgb(252,129,43)" fg:x="160" fg:w="1"/><text x="35.6482%" y="494.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.22%)</title><rect x="35.3982%" y="500" width="0.2212%" height="15" fill="rgb(248,183,27)" fg:x="160" fg:w="1"/><text x="35.6482%" y="510.50"></text></g><g><title>parse_block_node_or_indentless_sequence (yaml/parser.py:270) (1 samples, 0.22%)</title><rect x="35.3982%" y="516" width="0.2212%" height="15" fill="rgb(250,0,22)" fg:x="160" fg:w="1"/><text x="35.6482%" y="526.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.22%)</title><rect x="35.3982%" y="532" width="0.2212%" height="15" fill="rgb(213,166,10)" fg:x="160" fg:w="1"/><text x="35.6482%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="35.3982%" y="276" width="0.4425%" height="15" fill="rgb(207,163,36)" fg:x="160" fg:w="2"/><text x="35.6482%" y="286.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="35.3982%" y="292" width="0.4425%" height="15" fill="rgb(208,122,22)" fg:x="160" fg:w="2"/><text x="35.6482%" y="302.50"></text></g><g><title><module> (dask_sql/config.py:1) (2 samples, 0.44%)</title><rect x="35.3982%" y="308" width="0.4425%" height="15" fill="rgb(207,104,49)" fg:x="160" fg:w="2"/><text x="35.6482%" y="318.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (2 samples, 0.44%)</title><rect x="35.3982%" y="324" width="0.4425%" height="15" fill="rgb(248,211,50)" fg:x="160" fg:w="2"/><text x="35.6482%" y="334.50"></text></g><g><title>load (yaml/__init__.py:74) (2 samples, 0.44%)</title><rect x="35.3982%" y="340" width="0.4425%" height="15" fill="rgb(217,13,45)" fg:x="160" fg:w="2"/><text x="35.6482%" y="350.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (2 samples, 0.44%)</title><rect x="35.3982%" y="356" width="0.4425%" height="15" fill="rgb(211,216,49)" fg:x="160" fg:w="2"/><text x="35.6482%" y="366.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (2 samples, 0.44%)</title><rect x="35.3982%" y="372" width="0.4425%" height="15" fill="rgb(221,58,53)" fg:x="160" fg:w="2"/><text x="35.6482%" y="382.50"></text></g><g><title>compose_document (yaml/composer.py:50) (2 samples, 0.44%)</title><rect x="35.3982%" y="388" width="0.4425%" height="15" fill="rgb(220,112,41)" fg:x="160" fg:w="2"/><text x="35.6482%" y="398.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.44%)</title><rect x="35.3982%" y="404" width="0.4425%" height="15" fill="rgb(236,38,28)" fg:x="160" fg:w="2"/><text x="35.6482%" y="414.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.44%)</title><rect x="35.3982%" y="420" width="0.4425%" height="15" fill="rgb(227,195,22)" fg:x="160" fg:w="2"/><text x="35.6482%" y="430.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.44%)</title><rect x="35.3982%" y="436" width="0.4425%" height="15" fill="rgb(214,55,33)" fg:x="160" fg:w="2"/><text x="35.6482%" y="446.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (2 samples, 0.44%)</title><rect x="35.3982%" y="452" width="0.4425%" height="15" fill="rgb(248,80,13)" fg:x="160" fg:w="2"/><text x="35.6482%" y="462.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 0.44%)</title><rect x="35.3982%" y="468" width="0.4425%" height="15" fill="rgb(238,52,6)" fg:x="160" fg:w="2"/><text x="35.6482%" y="478.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.22%)</title><rect x="35.6195%" y="484" width="0.2212%" height="15" fill="rgb(224,198,47)" fg:x="161" fg:w="1"/><text x="35.8695%" y="494.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.22%)</title><rect x="35.6195%" y="500" width="0.2212%" height="15" fill="rgb(233,171,20)" fg:x="161" fg:w="1"/><text x="35.8695%" y="510.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.22%)</title><rect x="35.6195%" y="516" width="0.2212%" height="15" fill="rgb(241,30,25)" fg:x="161" fg:w="1"/><text x="35.8695%" y="526.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.22%)</title><rect x="35.6195%" y="532" width="0.2212%" height="15" fill="rgb(207,171,38)" fg:x="161" fg:w="1"/><text x="35.8695%" y="542.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.22%)</title><rect x="35.6195%" y="548" width="0.2212%" height="15" fill="rgb(234,70,1)" fg:x="161" fg:w="1"/><text x="35.8695%" y="558.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.22%)</title><rect x="35.6195%" y="564" width="0.2212%" height="15" fill="rgb(232,178,18)" fg:x="161" fg:w="1"/><text x="35.8695%" y="574.50"></text></g><g><title><module> (dask_sql/__init__.py:3) (132 samples, 29.20%)</title><rect x="7.3009%" y="180" width="29.2035%" height="15" fill="rgb(241,78,40)" fg:x="33" fg:w="132"/><text x="7.5509%" y="190.50"><module> (dask_sql/__init__.py:3)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.11%)</title><rect x="35.3982%" y="196" width="1.1062%" height="15" fill="rgb(222,35,25)" fg:x="160" fg:w="5"/><text x="35.6482%" y="206.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="35.3982%" y="212" width="1.1062%" height="15" fill="rgb(207,92,16)" fg:x="160" fg:w="5"/><text x="35.6482%" y="222.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="35.3982%" y="228" width="1.1062%" height="15" fill="rgb(216,59,51)" fg:x="160" fg:w="5"/><text x="35.6482%" y="238.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="35.3982%" y="244" width="1.1062%" height="15" fill="rgb(213,80,28)" fg:x="160" fg:w="5"/><text x="35.6482%" y="254.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="35.3982%" y="260" width="1.1062%" height="15" fill="rgb(220,93,7)" fg:x="160" fg:w="5"/><text x="35.6482%" y="270.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.66%)</title><rect x="35.8407%" y="276" width="0.6637%" height="15" fill="rgb(225,24,44)" fg:x="162" fg:w="3"/><text x="36.0907%" y="286.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.66%)</title><rect x="35.8407%" y="292" width="0.6637%" height="15" fill="rgb(243,74,40)" fg:x="162" fg:w="3"/><text x="36.0907%" y="302.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="35.8407%" y="308" width="0.6637%" height="15" fill="rgb(228,39,7)" fg:x="162" fg:w="3"/><text x="36.0907%" y="318.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="36.5044%" y="724" width="0.2212%" height="15" fill="rgb(227,79,8)" fg:x="165" fg:w="1"/><text x="36.7544%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="36.5044%" y="740" width="0.2212%" height="15" fill="rgb(236,58,11)" fg:x="165" fg:w="1"/><text x="36.7544%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="36.5044%" y="756" width="0.2212%" height="15" fill="rgb(249,63,35)" fg:x="165" fg:w="1"/><text x="36.7544%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="36.5044%" y="772" width="0.2212%" height="15" fill="rgb(252,114,16)" fg:x="165" fg:w="1"/><text x="36.7544%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="36.5044%" y="788" width="0.2212%" height="15" fill="rgb(254,151,24)" fg:x="165" fg:w="1"/><text x="36.7544%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/dialect.py:1) (1 samples, 0.22%)</title><rect x="36.5044%" y="804" width="0.2212%" height="15" fill="rgb(253,54,39)" fg:x="165" fg:w="1"/><text x="36.7544%" y="814.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.22%)</title><rect x="36.5044%" y="820" width="0.2212%" height="15" fill="rgb(243,25,45)" fg:x="165" fg:w="1"/><text x="36.7544%" y="830.50"></text></g><g><title><setcomp> (enum.py:221) (1 samples, 0.22%)</title><rect x="36.5044%" y="836" width="0.2212%" height="15" fill="rgb(234,134,9)" fg:x="165" fg:w="1"/><text x="36.7544%" y="846.50"></text></g><g><title><module> (sqlglot/dialects/bigquery.py:1) (2 samples, 0.44%)</title><rect x="36.5044%" y="708" width="0.4425%" height="15" fill="rgb(227,166,31)" fg:x="165" fg:w="2"/><text x="36.7544%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="36.7257%" y="724" width="0.2212%" height="15" fill="rgb(245,143,41)" fg:x="166" fg:w="1"/><text x="36.9757%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="36.7257%" y="740" width="0.2212%" height="15" fill="rgb(238,181,32)" fg:x="166" fg:w="1"/><text x="36.9757%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="36.7257%" y="756" width="0.2212%" height="15" fill="rgb(224,113,18)" fg:x="166" fg:w="1"/><text x="36.9757%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="36.7257%" y="772" width="0.2212%" height="15" fill="rgb(240,229,28)" fg:x="166" fg:w="1"/><text x="36.9757%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="36.7257%" y="788" width="0.2212%" height="15" fill="rgb(250,185,3)" fg:x="166" fg:w="1"/><text x="36.9757%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="36.7257%" y="804" width="0.2212%" height="15" fill="rgb(212,59,25)" fg:x="166" fg:w="1"/><text x="36.9757%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="36.7257%" y="820" width="0.2212%" height="15" fill="rgb(221,87,20)" fg:x="166" fg:w="1"/><text x="36.9757%" y="830.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="36.7257%" y="836" width="0.2212%" height="15" fill="rgb(213,74,28)" fg:x="166" fg:w="1"/><text x="36.9757%" y="846.50"></text></g><g><title><module> (sqlglot/dialects/drill.py:1) (2 samples, 0.44%)</title><rect x="36.9469%" y="708" width="0.4425%" height="15" fill="rgb(224,132,34)" fg:x="167" fg:w="2"/><text x="37.1969%" y="718.50"></text></g><g><title>Drill (sqlglot/dialects/drill.py:36) (2 samples, 0.44%)</title><rect x="36.9469%" y="724" width="0.4425%" height="15" fill="rgb(222,101,24)" fg:x="167" fg:w="2"/><text x="37.1969%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (2 samples, 0.44%)</title><rect x="36.9469%" y="740" width="0.4425%" height="15" fill="rgb(254,142,4)" fg:x="167" fg:w="2"/><text x="37.1969%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (2 samples, 0.44%)</title><rect x="36.9469%" y="756" width="0.4425%" height="15" fill="rgb(230,229,49)" fg:x="167" fg:w="2"/><text x="37.1969%" y="766.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (2 samples, 0.44%)</title><rect x="36.9469%" y="772" width="0.4425%" height="15" fill="rgb(238,70,47)" fg:x="167" fg:w="2"/><text x="37.1969%" y="782.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.22%)</title><rect x="37.1681%" y="788" width="0.2212%" height="15" fill="rgb(231,160,17)" fg:x="168" fg:w="1"/><text x="37.4181%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="36.5044%" y="484" width="1.3274%" height="15" fill="rgb(218,68,53)" fg:x="165" fg:w="6"/><text x="36.7544%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="36.5044%" y="500" width="1.3274%" height="15" fill="rgb(236,111,10)" fg:x="165" fg:w="6"/><text x="36.7544%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="36.5044%" y="516" width="1.3274%" height="15" fill="rgb(224,34,41)" fg:x="165" fg:w="6"/><text x="36.7544%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="36.5044%" y="532" width="1.3274%" height="15" fill="rgb(241,118,19)" fg:x="165" fg:w="6"/><text x="36.7544%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="36.5044%" y="548" width="1.3274%" height="15" fill="rgb(238,129,25)" fg:x="165" fg:w="6"/><text x="36.7544%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="36.5044%" y="564" width="1.3274%" height="15" fill="rgb(238,22,31)" fg:x="165" fg:w="6"/><text x="36.7544%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="36.5044%" y="580" width="1.3274%" height="15" fill="rgb(222,174,48)" fg:x="165" fg:w="6"/><text x="36.7544%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="36.5044%" y="596" width="1.3274%" height="15" fill="rgb(206,152,40)" fg:x="165" fg:w="6"/><text x="36.7544%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (6 samples, 1.33%)</title><rect x="36.5044%" y="612" width="1.3274%" height="15" fill="rgb(218,99,54)" fg:x="165" fg:w="6"/><text x="36.7544%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="36.5044%" y="628" width="1.3274%" height="15" fill="rgb(220,174,26)" fg:x="165" fg:w="6"/><text x="36.7544%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="36.5044%" y="644" width="1.3274%" height="15" fill="rgb(245,116,9)" fg:x="165" fg:w="6"/><text x="36.7544%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="36.5044%" y="660" width="1.3274%" height="15" fill="rgb(209,72,35)" fg:x="165" fg:w="6"/><text x="36.7544%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="36.5044%" y="676" width="1.3274%" height="15" fill="rgb(226,126,21)" fg:x="165" fg:w="6"/><text x="36.7544%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="36.5044%" y="692" width="1.3274%" height="15" fill="rgb(227,192,1)" fg:x="165" fg:w="6"/><text x="36.7544%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/trino.py:1) (2 samples, 0.44%)</title><rect x="37.3894%" y="708" width="0.4425%" height="15" fill="rgb(237,180,29)" fg:x="169" fg:w="2"/><text x="37.6394%" y="718.50"></text></g><g><title>__new__ (sqlglot/dialects/dialect.py:72) (2 samples, 0.44%)</title><rect x="37.3894%" y="724" width="0.4425%" height="15" fill="rgb(230,197,35)" fg:x="169" fg:w="2"/><text x="37.6394%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="36.5044%" y="372" width="1.5487%" height="15" fill="rgb(246,193,31)" fg:x="165" fg:w="7"/><text x="36.7544%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="36.5044%" y="388" width="1.5487%" height="15" fill="rgb(241,36,4)" fg:x="165" fg:w="7"/><text x="36.7544%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="36.5044%" y="404" width="1.5487%" height="15" fill="rgb(241,130,17)" fg:x="165" fg:w="7"/><text x="36.7544%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="36.5044%" y="420" width="1.5487%" height="15" fill="rgb(206,137,32)" fg:x="165" fg:w="7"/><text x="36.7544%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="36.5044%" y="436" width="1.5487%" height="15" fill="rgb(237,228,51)" fg:x="165" fg:w="7"/><text x="36.7544%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="36.5044%" y="452" width="1.5487%" height="15" fill="rgb(243,6,42)" fg:x="165" fg:w="7"/><text x="36.7544%" y="462.50"></text></g><g><title><module> (sqlglot/__init__.py:1) (7 samples, 1.55%)</title><rect x="36.5044%" y="468" width="1.5487%" height="15" fill="rgb(251,74,28)" fg:x="165" fg:w="7"/><text x="36.7544%" y="478.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="37.8319%" y="484" width="0.2212%" height="15" fill="rgb(218,20,49)" fg:x="171" fg:w="1"/><text x="38.0819%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="37.8319%" y="500" width="0.2212%" height="15" fill="rgb(238,28,14)" fg:x="171" fg:w="1"/><text x="38.0819%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="37.8319%" y="516" width="0.2212%" height="15" fill="rgb(229,40,46)" fg:x="171" fg:w="1"/><text x="38.0819%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="37.8319%" y="532" width="0.2212%" height="15" fill="rgb(244,195,20)" fg:x="171" fg:w="1"/><text x="38.0819%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="37.8319%" y="548" width="0.2212%" height="15" fill="rgb(253,56,35)" fg:x="171" fg:w="1"/><text x="38.0819%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="37.8319%" y="564" width="0.2212%" height="15" fill="rgb(210,149,44)" fg:x="171" fg:w="1"/><text x="38.0819%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="37.8319%" y="580" width="0.2212%" height="15" fill="rgb(240,135,12)" fg:x="171" fg:w="1"/><text x="38.0819%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="37.8319%" y="596" width="0.2212%" height="15" fill="rgb(251,24,50)" fg:x="171" fg:w="1"/><text x="38.0819%" y="606.50"></text></g><g><title><module> (qarray/core.py:1) (8 samples, 1.77%)</title><rect x="36.5044%" y="276" width="1.7699%" height="15" fill="rgb(243,200,47)" fg:x="165" fg:w="8"/><text x="36.7544%" y="286.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="36.5044%" y="292" width="1.7699%" height="15" fill="rgb(224,166,26)" fg:x="165" fg:w="8"/><text x="36.7544%" y="302.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="36.5044%" y="308" width="1.7699%" height="15" fill="rgb(233,0,47)" fg:x="165" fg:w="8"/><text x="36.7544%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="36.5044%" y="324" width="1.7699%" height="15" fill="rgb(253,80,5)" fg:x="165" fg:w="8"/><text x="36.7544%" y="334.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="36.5044%" y="340" width="1.7699%" height="15" fill="rgb(214,133,25)" fg:x="165" fg:w="8"/><text x="36.7544%" y="350.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="36.5044%" y="356" width="1.7699%" height="15" fill="rgb(209,27,14)" fg:x="165" fg:w="8"/><text x="36.7544%" y="366.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="372" width="0.2212%" height="15" fill="rgb(219,102,51)" fg:x="172" fg:w="1"/><text x="38.3031%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="388" width="0.2212%" height="15" fill="rgb(237,18,16)" fg:x="172" fg:w="1"/><text x="38.3031%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.0531%" y="404" width="0.2212%" height="15" fill="rgb(241,85,17)" fg:x="172" fg:w="1"/><text x="38.3031%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (1 samples, 0.22%)</title><rect x="38.0531%" y="420" width="0.2212%" height="15" fill="rgb(236,90,42)" fg:x="172" fg:w="1"/><text x="38.3031%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.0531%" y="436" width="0.2212%" height="15" fill="rgb(249,57,21)" fg:x="172" fg:w="1"/><text x="38.3031%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.0531%" y="452" width="0.2212%" height="15" fill="rgb(243,12,36)" fg:x="172" fg:w="1"/><text x="38.3031%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="468" width="0.2212%" height="15" fill="rgb(253,128,47)" fg:x="172" fg:w="1"/><text x="38.3031%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="484" width="0.2212%" height="15" fill="rgb(207,33,20)" fg:x="172" fg:w="1"/><text x="38.3031%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.0531%" y="500" width="0.2212%" height="15" fill="rgb(233,215,35)" fg:x="172" fg:w="1"/><text x="38.3031%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (1 samples, 0.22%)</title><rect x="38.0531%" y="516" width="0.2212%" height="15" fill="rgb(249,188,52)" fg:x="172" fg:w="1"/><text x="38.3031%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.0531%" y="532" width="0.2212%" height="15" fill="rgb(225,12,32)" fg:x="172" fg:w="1"/><text x="38.3031%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.0531%" y="548" width="0.2212%" height="15" fill="rgb(247,98,14)" fg:x="172" fg:w="1"/><text x="38.3031%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="564" width="0.2212%" height="15" fill="rgb(247,219,48)" fg:x="172" fg:w="1"/><text x="38.3031%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="580" width="0.2212%" height="15" fill="rgb(253,60,48)" fg:x="172" fg:w="1"/><text x="38.3031%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.0531%" y="596" width="0.2212%" height="15" fill="rgb(245,15,52)" fg:x="172" fg:w="1"/><text x="38.3031%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (1 samples, 0.22%)</title><rect x="38.0531%" y="612" width="0.2212%" height="15" fill="rgb(220,133,28)" fg:x="172" fg:w="1"/><text x="38.3031%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.0531%" y="628" width="0.2212%" height="15" fill="rgb(217,180,4)" fg:x="172" fg:w="1"/><text x="38.3031%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.0531%" y="644" width="0.2212%" height="15" fill="rgb(251,24,1)" fg:x="172" fg:w="1"/><text x="38.3031%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="660" width="0.2212%" height="15" fill="rgb(212,185,49)" fg:x="172" fg:w="1"/><text x="38.3031%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="676" width="0.2212%" height="15" fill="rgb(215,175,22)" fg:x="172" fg:w="1"/><text x="38.3031%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.0531%" y="692" width="0.2212%" height="15" fill="rgb(250,205,14)" fg:x="172" fg:w="1"/><text x="38.3031%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (1 samples, 0.22%)</title><rect x="38.0531%" y="708" width="0.2212%" height="15" fill="rgb(225,211,22)" fg:x="172" fg:w="1"/><text x="38.3031%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.0531%" y="724" width="0.2212%" height="15" fill="rgb(251,179,42)" fg:x="172" fg:w="1"/><text x="38.3031%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.0531%" y="740" width="0.2212%" height="15" fill="rgb(208,216,51)" fg:x="172" fg:w="1"/><text x="38.3031%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="756" width="0.2212%" height="15" fill="rgb(235,36,11)" fg:x="172" fg:w="1"/><text x="38.3031%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="772" width="0.2212%" height="15" fill="rgb(213,189,28)" fg:x="172" fg:w="1"/><text x="38.3031%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.0531%" y="788" width="0.2212%" height="15" fill="rgb(227,203,42)" fg:x="172" fg:w="1"/><text x="38.3031%" y="798.50"></text></g><g><title><module> (statistics.py:1) (1 samples, 0.22%)</title><rect x="38.0531%" y="804" width="0.2212%" height="15" fill="rgb(244,72,36)" fg:x="172" fg:w="1"/><text x="38.3031%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.0531%" y="820" width="0.2212%" height="15" fill="rgb(213,53,17)" fg:x="172" fg:w="1"/><text x="38.3031%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.0531%" y="836" width="0.2212%" height="15" fill="rgb(207,167,3)" fg:x="172" fg:w="1"/><text x="38.3031%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.0531%" y="852" width="0.2212%" height="15" fill="rgb(216,98,30)" fg:x="172" fg:w="1"/><text x="38.3031%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.0531%" y="868" width="0.2212%" height="15" fill="rgb(236,123,15)" fg:x="172" fg:w="1"/><text x="38.3031%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="38.0531%" y="884" width="0.2212%" height="15" fill="rgb(248,81,50)" fg:x="172" fg:w="1"/><text x="38.3031%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="38.0531%" y="900" width="0.2212%" height="15" fill="rgb(214,120,4)" fg:x="172" fg:w="1"/><text x="38.3031%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.4956%" y="1124" width="0.2212%" height="15" fill="rgb(208,179,34)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.4956%" y="1140" width="0.2212%" height="15" fill="rgb(227,140,7)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.4956%" y="1156" width="0.2212%" height="15" fill="rgb(214,22,6)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.4956%" y="1172" width="0.2212%" height="15" fill="rgb(207,137,27)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.4956%" y="1188" width="0.2212%" height="15" fill="rgb(210,8,46)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="38.4956%" y="1204" width="0.2212%" height="15" fill="rgb(240,16,54)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="38.4956%" y="1220" width="0.2212%" height="15" fill="rgb(211,209,29)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="38.4956%" y="1236" width="0.2212%" height="15" fill="rgb(226,228,24)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1246.50"></text></g><g><title><module> (scipy/_lib/__init__.py:1) (1 samples, 0.22%)</title><rect x="38.4956%" y="1252" width="0.2212%" height="15" fill="rgb(222,84,9)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="38.4956%" y="1268" width="0.2212%" height="15" fill="rgb(234,203,30)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="38.4956%" y="1284" width="0.2212%" height="15" fill="rgb(238,109,14)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1294.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="38.4956%" y="1300" width="0.2212%" height="15" fill="rgb(233,206,34)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1310.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="38.4956%" y="1316" width="0.2212%" height="15" fill="rgb(220,167,47)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1326.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="38.4956%" y="1332" width="0.2212%" height="15" fill="rgb(238,105,10)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="38.4956%" y="1348" width="0.2212%" height="15" fill="rgb(213,227,17)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1358.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.22%)</title><rect x="38.4956%" y="1364" width="0.2212%" height="15" fill="rgb(217,132,38)" fg:x="174" fg:w="1"/><text x="38.7456%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="38.2743%" y="1012" width="0.6637%" height="15" fill="rgb(242,146,4)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="38.2743%" y="1028" width="0.6637%" height="15" fill="rgb(212,61,9)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="38.2743%" y="1044" width="0.6637%" height="15" fill="rgb(247,126,22)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="38.2743%" y="1060" width="0.6637%" height="15" fill="rgb(220,196,2)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="38.2743%" y="1076" width="0.6637%" height="15" fill="rgb(208,46,4)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="38.2743%" y="1092" width="0.6637%" height="15" fill="rgb(252,104,46)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1102.50"></text></g><g><title><module> (scipy/__init__.py:1) (3 samples, 0.66%)</title><rect x="38.2743%" y="1108" width="0.6637%" height="15" fill="rgb(237,152,48)" fg:x="173" fg:w="3"/><text x="38.5243%" y="1118.50"></text></g><g><title>wrap (scipy/_lib/deprecation.py:9) (1 samples, 0.22%)</title><rect x="38.7168%" y="1124" width="0.2212%" height="15" fill="rgb(221,59,37)" fg:x="175" fg:w="1"/><text x="38.9668%" y="1134.50"></text></g><g><title>_ufunc_doc_signature_formatter (numpy/core/_internal.py:872) (1 samples, 0.22%)</title><rect x="38.7168%" y="1140" width="0.2212%" height="15" fill="rgb(209,202,51)" fg:x="175" fg:w="1"/><text x="38.9668%" y="1150.50"></text></g><g><title><module> (scipy/sparse/linalg/_dsolve/__init__.py:1) (3 samples, 0.66%)</title><rect x="38.9381%" y="1476" width="0.6637%" height="15" fill="rgb(228,81,30)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="38.9381%" y="1492" width="0.6637%" height="15" fill="rgb(227,42,39)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="38.9381%" y="1508" width="0.6637%" height="15" fill="rgb(221,26,2)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="38.9381%" y="1524" width="0.6637%" height="15" fill="rgb(254,61,31)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1534.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="38.9381%" y="1540" width="0.6637%" height="15" fill="rgb(222,173,38)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1550.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="38.9381%" y="1556" width="0.6637%" height="15" fill="rgb(218,50,12)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1566.50"></text></g><g><title><module> (scipy/sparse/linalg/_dsolve/linsolve.py:1) (3 samples, 0.66%)</title><rect x="38.9381%" y="1572" width="0.6637%" height="15" fill="rgb(223,88,40)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1582.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="38.9381%" y="1588" width="0.6637%" height="15" fill="rgb(237,54,19)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="38.9381%" y="1604" width="0.6637%" height="15" fill="rgb(251,129,25)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1614.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="38.9381%" y="1620" width="0.6637%" height="15" fill="rgb(238,97,19)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1630.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="38.9381%" y="1636" width="0.6637%" height="15" fill="rgb(240,169,18)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1646.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="38.9381%" y="1652" width="0.6637%" height="15" fill="rgb(230,187,49)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1662.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.66%)</title><rect x="38.9381%" y="1668" width="0.6637%" height="15" fill="rgb(209,44,26)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1678.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.66%)</title><rect x="38.9381%" y="1684" width="0.6637%" height="15" fill="rgb(244,0,6)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="38.9381%" y="1700" width="0.6637%" height="15" fill="rgb(248,18,21)" fg:x="176" fg:w="3"/><text x="39.1881%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="39.6018%" y="1588" width="0.6637%" height="15" fill="rgb(245,180,19)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="39.6018%" y="1604" width="0.6637%" height="15" fill="rgb(252,118,36)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="39.6018%" y="1620" width="0.6637%" height="15" fill="rgb(210,224,19)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="39.6018%" y="1636" width="0.6637%" height="15" fill="rgb(218,30,24)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1646.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (3 samples, 0.66%)</title><rect x="39.6018%" y="1652" width="0.6637%" height="15" fill="rgb(219,75,50)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1662.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (3 samples, 0.66%)</title><rect x="39.6018%" y="1668" width="0.6637%" height="15" fill="rgb(234,72,50)" fg:x="179" fg:w="3"/><text x="39.8518%" y="1678.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (4 samples, 0.88%)</title><rect x="39.6018%" y="1572" width="0.8850%" height="15" fill="rgb(219,100,48)" fg:x="179" fg:w="4"/><text x="39.8518%" y="1582.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="40.2655%" y="1588" width="0.2212%" height="15" fill="rgb(253,5,41)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1598.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="40.2655%" y="1604" width="0.2212%" height="15" fill="rgb(247,181,11)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1614.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="40.2655%" y="1620" width="0.2212%" height="15" fill="rgb(222,223,25)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1630.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="40.2655%" y="1636" width="0.2212%" height="15" fill="rgb(214,198,28)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1646.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="40.2655%" y="1652" width="0.2212%" height="15" fill="rgb(230,46,43)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1662.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="40.2655%" y="1668" width="0.2212%" height="15" fill="rgb(233,65,53)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1678.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="40.2655%" y="1684" width="0.2212%" height="15" fill="rgb(221,121,27)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1694.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="40.2655%" y="1700" width="0.2212%" height="15" fill="rgb(247,70,47)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1710.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.22%)</title><rect x="40.2655%" y="1716" width="0.2212%" height="15" fill="rgb(228,85,35)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1726.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.22%)</title><rect x="40.2655%" y="1732" width="0.2212%" height="15" fill="rgb(209,50,18)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1742.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="40.2655%" y="1748" width="0.2212%" height="15" fill="rgb(250,19,35)" fg:x="182" fg:w="1"/><text x="40.5155%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.44%)</title><rect x="40.4867%" y="1732" width="0.4425%" height="15" fill="rgb(253,107,29)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="40.4867%" y="1748" width="0.4425%" height="15" fill="rgb(252,179,29)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1758.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="40.4867%" y="1764" width="0.4425%" height="15" fill="rgb(238,194,6)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1774.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="40.4867%" y="1780" width="0.4425%" height="15" fill="rgb(238,164,29)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1790.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="40.4867%" y="1796" width="0.4425%" height="15" fill="rgb(224,25,9)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1806.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.44%)</title><rect x="40.4867%" y="1812" width="0.4425%" height="15" fill="rgb(244,153,23)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="40.4867%" y="1828" width="0.4425%" height="15" fill="rgb(212,203,14)" fg:x="183" fg:w="2"/><text x="40.7367%" y="1838.50"></text></g><g><title><module> (scipy/linalg/_matfuncs.py:4) (2 samples, 0.44%)</title><rect x="40.9292%" y="1764" width="0.4425%" height="15" fill="rgb(220,164,20)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="40.9292%" y="1780" width="0.4425%" height="15" fill="rgb(222,203,48)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="40.9292%" y="1796" width="0.4425%" height="15" fill="rgb(215,159,22)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="40.9292%" y="1812" width="0.4425%" height="15" fill="rgb(216,183,47)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1822.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.44%)</title><rect x="40.9292%" y="1828" width="0.4425%" height="15" fill="rgb(229,195,25)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1838.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.44%)</title><rect x="40.9292%" y="1844" width="0.4425%" height="15" fill="rgb(224,132,51)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1854.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="40.9292%" y="1860" width="0.4425%" height="15" fill="rgb(240,63,7)" fg:x="185" fg:w="2"/><text x="41.1792%" y="1870.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 2.88%)</title><rect x="38.9381%" y="1252" width="2.8761%" height="15" fill="rgb(249,182,41)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1262.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 2.88%)</title><rect x="38.9381%" y="1268" width="2.8761%" height="15" fill="rgb(243,47,26)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1278.50">_c..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (13 samples, 2.88%)</title><rect x="38.9381%" y="1284" width="2.8761%" height="15" fill="rgb(233,48,2)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1294.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 2.88%)</title><rect x="38.9381%" y="1300" width="2.8761%" height="15" fill="rgb(244,165,34)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1310.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 2.88%)</title><rect x="38.9381%" y="1316" width="2.8761%" height="15" fill="rgb(207,89,7)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1326.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 2.88%)</title><rect x="38.9381%" y="1332" width="2.8761%" height="15" fill="rgb(244,117,36)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1342.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 2.88%)</title><rect x="38.9381%" y="1348" width="2.8761%" height="15" fill="rgb(226,144,34)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1358.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 2.88%)</title><rect x="38.9381%" y="1364" width="2.8761%" height="15" fill="rgb(213,23,19)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1374.50">_c..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (13 samples, 2.88%)</title><rect x="38.9381%" y="1380" width="2.8761%" height="15" fill="rgb(217,75,12)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1390.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 2.88%)</title><rect x="38.9381%" y="1396" width="2.8761%" height="15" fill="rgb(224,159,17)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1406.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 2.88%)</title><rect x="38.9381%" y="1412" width="2.8761%" height="15" fill="rgb(217,118,1)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1422.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 2.88%)</title><rect x="38.9381%" y="1428" width="2.8761%" height="15" fill="rgb(232,180,48)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1438.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 2.88%)</title><rect x="38.9381%" y="1444" width="2.8761%" height="15" fill="rgb(230,27,33)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1454.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 2.88%)</title><rect x="38.9381%" y="1460" width="2.8761%" height="15" fill="rgb(205,31,21)" fg:x="176" fg:w="13"/><text x="39.1881%" y="1470.50">_c..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (10 samples, 2.21%)</title><rect x="39.6018%" y="1476" width="2.2124%" height="15" fill="rgb(253,59,4)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1486.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="39.6018%" y="1492" width="2.2124%" height="15" fill="rgb(224,201,9)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1502.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="39.6018%" y="1508" width="2.2124%" height="15" fill="rgb(229,206,30)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1518.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="39.6018%" y="1524" width="2.2124%" height="15" fill="rgb(212,67,47)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1534.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.21%)</title><rect x="39.6018%" y="1540" width="2.2124%" height="15" fill="rgb(211,96,50)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1550.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="39.6018%" y="1556" width="2.2124%" height="15" fill="rgb(252,114,18)" fg:x="179" fg:w="10"/><text x="39.8518%" y="1566.50">_..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (6 samples, 1.33%)</title><rect x="40.4867%" y="1572" width="1.3274%" height="15" fill="rgb(223,58,37)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="40.4867%" y="1588" width="1.3274%" height="15" fill="rgb(237,70,4)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="40.4867%" y="1604" width="1.3274%" height="15" fill="rgb(244,85,46)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="40.4867%" y="1620" width="1.3274%" height="15" fill="rgb(223,39,52)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="40.4867%" y="1636" width="1.3274%" height="15" fill="rgb(218,200,14)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="40.4867%" y="1652" width="1.3274%" height="15" fill="rgb(208,171,16)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1662.50"></text></g><g><title><module> (scipy/linalg/__init__.py:1) (6 samples, 1.33%)</title><rect x="40.4867%" y="1668" width="1.3274%" height="15" fill="rgb(234,200,18)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="40.4867%" y="1684" width="1.3274%" height="15" fill="rgb(228,45,11)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="40.4867%" y="1700" width="1.3274%" height="15" fill="rgb(237,182,11)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="40.4867%" y="1716" width="1.3274%" height="15" fill="rgb(241,175,49)" fg:x="183" fg:w="6"/><text x="40.7367%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="40.9292%" y="1732" width="0.8850%" height="15" fill="rgb(247,38,35)" fg:x="185" fg:w="4"/><text x="41.1792%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="40.9292%" y="1748" width="0.8850%" height="15" fill="rgb(228,39,49)" fg:x="185" fg:w="4"/><text x="41.1792%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_misc.py:1) (2 samples, 0.44%)</title><rect x="41.3717%" y="1764" width="0.4425%" height="15" fill="rgb(226,101,26)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="41.3717%" y="1780" width="0.4425%" height="15" fill="rgb(206,141,19)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="41.3717%" y="1796" width="0.4425%" height="15" fill="rgb(211,200,13)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="41.3717%" y="1812" width="0.4425%" height="15" fill="rgb(241,121,6)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="41.3717%" y="1828" width="0.4425%" height="15" fill="rgb(234,221,29)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="41.3717%" y="1844" width="0.4425%" height="15" fill="rgb(229,136,5)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1854.50"></text></g><g><title><module> (scipy/linalg/lapack.py:1) (2 samples, 0.44%)</title><rect x="41.3717%" y="1860" width="0.4425%" height="15" fill="rgb(238,36,11)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1870.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="41.3717%" y="1876" width="0.4425%" height="15" fill="rgb(251,55,41)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1886.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="41.3717%" y="1892" width="0.4425%" height="15" fill="rgb(242,34,40)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1902.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="41.3717%" y="1908" width="0.4425%" height="15" fill="rgb(215,42,17)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1918.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="41.3717%" y="1924" width="0.4425%" height="15" fill="rgb(207,44,46)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1934.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="41.3717%" y="1940" width="0.4425%" height="15" fill="rgb(211,206,28)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1950.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.44%)</title><rect x="41.3717%" y="1956" width="0.4425%" height="15" fill="rgb(237,167,16)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1966.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.44%)</title><rect x="41.3717%" y="1972" width="0.4425%" height="15" fill="rgb(233,66,6)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1982.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="41.3717%" y="1988" width="0.4425%" height="15" fill="rgb(246,123,29)" fg:x="187" fg:w="2"/><text x="41.6217%" y="1998.50"></text></g><g><title><module> (dask/array/backends.py:1) (18 samples, 3.98%)</title><rect x="38.2743%" y="772" width="3.9823%" height="15" fill="rgb(209,62,40)" fg:x="173" fg:w="18"/><text x="38.5243%" y="782.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.98%)</title><rect x="38.2743%" y="788" width="3.9823%" height="15" fill="rgb(218,4,25)" fg:x="173" fg:w="18"/><text x="38.5243%" y="798.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.98%)</title><rect x="38.2743%" y="804" width="3.9823%" height="15" fill="rgb(253,91,49)" fg:x="173" fg:w="18"/><text x="38.5243%" y="814.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.98%)</title><rect x="38.2743%" y="820" width="3.9823%" height="15" fill="rgb(228,155,29)" fg:x="173" fg:w="18"/><text x="38.5243%" y="830.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.98%)</title><rect x="38.2743%" y="836" width="3.9823%" height="15" fill="rgb(243,57,37)" fg:x="173" fg:w="18"/><text x="38.5243%" y="846.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 3.98%)</title><rect x="38.2743%" y="852" width="3.9823%" height="15" fill="rgb(244,167,17)" fg:x="173" fg:w="18"/><text x="38.5243%" y="862.50">_cal..</text></g><g><title><module> (dask/array/core.py:1) (18 samples, 3.98%)</title><rect x="38.2743%" y="868" width="3.9823%" height="15" fill="rgb(207,181,38)" fg:x="173" fg:w="18"/><text x="38.5243%" y="878.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.98%)</title><rect x="38.2743%" y="884" width="3.9823%" height="15" fill="rgb(211,8,23)" fg:x="173" fg:w="18"/><text x="38.5243%" y="894.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.98%)</title><rect x="38.2743%" y="900" width="3.9823%" height="15" fill="rgb(235,11,44)" fg:x="173" fg:w="18"/><text x="38.5243%" y="910.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 3.98%)</title><rect x="38.2743%" y="916" width="3.9823%" height="15" fill="rgb(248,18,52)" fg:x="173" fg:w="18"/><text x="38.5243%" y="926.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 3.98%)</title><rect x="38.2743%" y="932" width="3.9823%" height="15" fill="rgb(208,4,7)" fg:x="173" fg:w="18"/><text x="38.5243%" y="942.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 3.98%)</title><rect x="38.2743%" y="948" width="3.9823%" height="15" fill="rgb(240,17,39)" fg:x="173" fg:w="18"/><text x="38.5243%" y="958.50">_cal..</text></g><g><title><module> (dask/array/chunk_types.py:1) (18 samples, 3.98%)</title><rect x="38.2743%" y="964" width="3.9823%" height="15" fill="rgb(207,170,3)" fg:x="173" fg:w="18"/><text x="38.5243%" y="974.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 3.98%)</title><rect x="38.2743%" y="980" width="3.9823%" height="15" fill="rgb(236,100,52)" fg:x="173" fg:w="18"/><text x="38.5243%" y="990.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 3.98%)</title><rect x="38.2743%" y="996" width="3.9823%" height="15" fill="rgb(246,78,51)" fg:x="173" fg:w="18"/><text x="38.5243%" y="1006.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="38.9381%" y="1012" width="3.3186%" height="15" fill="rgb(211,17,15)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1022.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="38.9381%" y="1028" width="3.3186%" height="15" fill="rgb(209,59,46)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1038.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="38.9381%" y="1044" width="3.3186%" height="15" fill="rgb(210,92,25)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1054.50">_ca..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (15 samples, 3.32%)</title><rect x="38.9381%" y="1060" width="3.3186%" height="15" fill="rgb(238,174,52)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1070.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 3.32%)</title><rect x="38.9381%" y="1076" width="3.3186%" height="15" fill="rgb(230,73,7)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1086.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="38.9381%" y="1092" width="3.3186%" height="15" fill="rgb(243,124,40)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1102.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="38.9381%" y="1108" width="3.3186%" height="15" fill="rgb(244,170,11)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1118.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="38.9381%" y="1124" width="3.3186%" height="15" fill="rgb(207,114,54)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1134.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="38.9381%" y="1140" width="3.3186%" height="15" fill="rgb(205,42,20)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1150.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="38.9381%" y="1156" width="3.3186%" height="15" fill="rgb(230,30,28)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1166.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="38.9381%" y="1172" width="3.3186%" height="15" fill="rgb(205,73,54)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1182.50">_ca..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (15 samples, 3.32%)</title><rect x="38.9381%" y="1188" width="3.3186%" height="15" fill="rgb(254,227,23)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1198.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="38.9381%" y="1204" width="3.3186%" height="15" fill="rgb(228,202,34)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1214.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="38.9381%" y="1220" width="3.3186%" height="15" fill="rgb(222,225,37)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1230.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="38.9381%" y="1236" width="3.3186%" height="15" fill="rgb(221,14,54)" fg:x="176" fg:w="15"/><text x="39.1881%" y="1246.50">_lo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.44%)</title><rect x="41.8142%" y="1252" width="0.4425%" height="15" fill="rgb(254,102,2)" fg:x="189" fg:w="2"/><text x="42.0642%" y="1262.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.44%)</title><rect x="41.8142%" y="1268" width="0.4425%" height="15" fill="rgb(232,104,17)" fg:x="189" fg:w="2"/><text x="42.0642%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="41.8142%" y="1284" width="0.4425%" height="15" fill="rgb(250,220,14)" fg:x="189" fg:w="2"/><text x="42.0642%" y="1294.50"></text></g><g><title><module> (dask/array/creation.py:1) (1 samples, 0.22%)</title><rect x="42.2566%" y="868" width="0.2212%" height="15" fill="rgb(241,158,9)" fg:x="191" fg:w="1"/><text x="42.5066%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="42.2566%" y="884" width="0.2212%" height="15" fill="rgb(246,9,43)" fg:x="191" fg:w="1"/><text x="42.5066%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="42.2566%" y="900" width="0.2212%" height="15" fill="rgb(206,73,33)" fg:x="191" fg:w="1"/><text x="42.5066%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="42.2566%" y="916" width="0.2212%" height="15" fill="rgb(222,79,8)" fg:x="191" fg:w="1"/><text x="42.5066%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="42.2566%" y="932" width="0.2212%" height="15" fill="rgb(234,8,54)" fg:x="191" fg:w="1"/><text x="42.5066%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.2566%" y="948" width="0.2212%" height="15" fill="rgb(209,134,38)" fg:x="191" fg:w="1"/><text x="42.5066%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (1 samples, 0.22%)</title><rect x="42.2566%" y="964" width="0.2212%" height="15" fill="rgb(230,127,29)" fg:x="191" fg:w="1"/><text x="42.5066%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (1 samples, 0.22%)</title><rect x="42.2566%" y="980" width="0.2212%" height="15" fill="rgb(242,44,41)" fg:x="191" fg:w="1"/><text x="42.5066%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.22%)</title><rect x="42.2566%" y="996" width="0.2212%" height="15" fill="rgb(222,56,43)" fg:x="191" fg:w="1"/><text x="42.5066%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.22%)</title><rect x="42.2566%" y="1012" width="0.2212%" height="15" fill="rgb(238,39,47)" fg:x="191" fg:w="1"/><text x="42.5066%" y="1022.50"></text></g><g><title>ignore_warning (dask/utils.py:829) (1 samples, 0.22%)</title><rect x="42.2566%" y="1028" width="0.2212%" height="15" fill="rgb(226,79,43)" fg:x="191" fg:w="1"/><text x="42.5066%" y="1038.50"></text></g><g><title>match (re.py:188) (1 samples, 0.22%)</title><rect x="42.2566%" y="1044" width="0.2212%" height="15" fill="rgb(242,105,53)" fg:x="191" fg:w="1"/><text x="42.5066%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.4779%" y="1332" width="0.2212%" height="15" fill="rgb(251,132,46)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1342.50"></text></g><g><title><module> (scipy/fft/_pocketfft/basic.py:1) (1 samples, 0.22%)</title><rect x="42.4779%" y="1348" width="0.2212%" height="15" fill="rgb(231,77,14)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1358.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="42.4779%" y="1364" width="0.2212%" height="15" fill="rgb(240,135,9)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.4779%" y="1380" width="0.2212%" height="15" fill="rgb(248,109,14)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="42.4779%" y="1396" width="0.2212%" height="15" fill="rgb(227,146,52)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="42.4779%" y="1412" width="0.2212%" height="15" fill="rgb(232,54,3)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1422.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="42.4779%" y="1428" width="0.2212%" height="15" fill="rgb(229,201,43)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1438.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="42.4779%" y="1444" width="0.2212%" height="15" fill="rgb(252,161,33)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1454.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="42.4779%" y="1460" width="0.2212%" height="15" fill="rgb(226,146,40)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.4779%" y="1476" width="0.2212%" height="15" fill="rgb(219,47,25)" fg:x="192" fg:w="1"/><text x="42.7279%" y="1486.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (2 samples, 0.44%)</title><rect x="42.4779%" y="964" width="0.4425%" height="15" fill="rgb(250,135,13)" fg:x="192" fg:w="2"/><text x="42.7279%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="42.4779%" y="980" width="0.4425%" height="15" fill="rgb(219,229,18)" fg:x="192" fg:w="2"/><text x="42.7279%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="42.4779%" y="996" width="0.4425%" height="15" fill="rgb(217,152,27)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="42.4779%" y="1012" width="0.4425%" height="15" fill="rgb(225,71,47)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="42.4779%" y="1028" width="0.4425%" height="15" fill="rgb(220,139,14)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="42.4779%" y="1044" width="0.4425%" height="15" fill="rgb(247,54,32)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (2 samples, 0.44%)</title><rect x="42.4779%" y="1060" width="0.4425%" height="15" fill="rgb(252,131,39)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="42.4779%" y="1076" width="0.4425%" height="15" fill="rgb(210,108,39)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="42.4779%" y="1092" width="0.4425%" height="15" fill="rgb(205,23,29)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="42.4779%" y="1108" width="0.4425%" height="15" fill="rgb(246,139,46)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="42.4779%" y="1124" width="0.4425%" height="15" fill="rgb(250,81,26)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="42.4779%" y="1140" width="0.4425%" height="15" fill="rgb(214,104,7)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1150.50"></text></g><g><title><module> (scipy/fft/_helper.py:1) (2 samples, 0.44%)</title><rect x="42.4779%" y="1156" width="0.4425%" height="15" fill="rgb(233,189,8)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="42.4779%" y="1172" width="0.4425%" height="15" fill="rgb(228,141,17)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="42.4779%" y="1188" width="0.4425%" height="15" fill="rgb(247,157,1)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="42.4779%" y="1204" width="0.4425%" height="15" fill="rgb(249,225,5)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="42.4779%" y="1220" width="0.4425%" height="15" fill="rgb(242,55,13)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="42.4779%" y="1236" width="0.4425%" height="15" fill="rgb(230,49,50)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1246.50"></text></g><g><title><module> (scipy/fft/_pocketfft/__init__.py:1) (2 samples, 0.44%)</title><rect x="42.4779%" y="1252" width="0.4425%" height="15" fill="rgb(241,111,38)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="42.4779%" y="1268" width="0.4425%" height="15" fill="rgb(252,155,4)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="42.4779%" y="1284" width="0.4425%" height="15" fill="rgb(212,69,32)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="42.4779%" y="1300" width="0.4425%" height="15" fill="rgb(243,107,47)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="42.4779%" y="1316" width="0.4425%" height="15" fill="rgb(247,130,12)" fg:x="192" fg:w="2"/><text x="42.7279%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="42.6991%" y="1332" width="0.2212%" height="15" fill="rgb(233,74,16)" fg:x="193" fg:w="1"/><text x="42.9491%" y="1342.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="42.6991%" y="1348" width="0.2212%" height="15" fill="rgb(208,58,18)" fg:x="193" fg:w="1"/><text x="42.9491%" y="1358.50"></text></g><g><title><module> (dask/array/fft.py:1) (4 samples, 0.88%)</title><rect x="42.2566%" y="772" width="0.8850%" height="15" fill="rgb(242,225,1)" fg:x="191" fg:w="4"/><text x="42.5066%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="42.2566%" y="788" width="0.8850%" height="15" fill="rgb(249,39,40)" fg:x="191" fg:w="4"/><text x="42.5066%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="42.2566%" y="804" width="0.8850%" height="15" fill="rgb(207,72,44)" fg:x="191" fg:w="4"/><text x="42.5066%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="42.2566%" y="820" width="0.8850%" height="15" fill="rgb(215,193,12)" fg:x="191" fg:w="4"/><text x="42.5066%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="42.2566%" y="836" width="0.8850%" height="15" fill="rgb(248,41,39)" fg:x="191" fg:w="4"/><text x="42.5066%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="42.2566%" y="852" width="0.8850%" height="15" fill="rgb(253,85,4)" fg:x="191" fg:w="4"/><text x="42.5066%" y="862.50"></text></g><g><title><module> (scipy/fftpack/__init__.py:1) (3 samples, 0.66%)</title><rect x="42.4779%" y="868" width="0.6637%" height="15" fill="rgb(243,70,31)" fg:x="192" fg:w="3"/><text x="42.7279%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="42.4779%" y="884" width="0.6637%" height="15" fill="rgb(253,195,26)" fg:x="192" fg:w="3"/><text x="42.7279%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="42.4779%" y="900" width="0.6637%" height="15" fill="rgb(243,42,11)" fg:x="192" fg:w="3"/><text x="42.7279%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="42.4779%" y="916" width="0.6637%" height="15" fill="rgb(239,66,17)" fg:x="192" fg:w="3"/><text x="42.7279%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="42.4779%" y="932" width="0.6637%" height="15" fill="rgb(217,132,21)" fg:x="192" fg:w="3"/><text x="42.7279%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="42.4779%" y="948" width="0.6637%" height="15" fill="rgb(252,202,21)" fg:x="192" fg:w="3"/><text x="42.7279%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_pseudo_diffs.py:1) (1 samples, 0.22%)</title><rect x="42.9204%" y="964" width="0.2212%" height="15" fill="rgb(233,98,36)" fg:x="194" fg:w="1"/><text x="43.1704%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="42.9204%" y="980" width="0.2212%" height="15" fill="rgb(216,153,54)" fg:x="194" fg:w="1"/><text x="43.1704%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.9204%" y="996" width="0.2212%" height="15" fill="rgb(250,99,7)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="42.9204%" y="1012" width="0.2212%" height="15" fill="rgb(207,56,50)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="42.9204%" y="1028" width="0.2212%" height="15" fill="rgb(244,61,34)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="42.9204%" y="1044" width="0.2212%" height="15" fill="rgb(241,50,38)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1054.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="42.9204%" y="1060" width="0.2212%" height="15" fill="rgb(212,166,30)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1070.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="42.9204%" y="1076" width="0.2212%" height="15" fill="rgb(249,127,32)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="42.9204%" y="1092" width="0.2212%" height="15" fill="rgb(209,103,0)" fg:x="194" fg:w="1"/><text x="43.1704%" y="1102.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.22%)</title><rect x="43.1416%" y="916" width="0.2212%" height="15" fill="rgb(238,209,51)" fg:x="195" fg:w="1"/><text x="43.3916%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 5.31%)</title><rect x="38.2743%" y="548" width="5.3097%" height="15" fill="rgb(237,56,23)" fg:x="173" fg:w="24"/><text x="38.5243%" y="558.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 5.31%)</title><rect x="38.2743%" y="564" width="5.3097%" height="15" fill="rgb(215,153,46)" fg:x="173" fg:w="24"/><text x="38.5243%" y="574.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 5.31%)</title><rect x="38.2743%" y="580" width="5.3097%" height="15" fill="rgb(224,49,31)" fg:x="173" fg:w="24"/><text x="38.5243%" y="590.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 5.31%)</title><rect x="38.2743%" y="596" width="5.3097%" height="15" fill="rgb(250,18,42)" fg:x="173" fg:w="24"/><text x="38.5243%" y="606.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 5.31%)</title><rect x="38.2743%" y="612" width="5.3097%" height="15" fill="rgb(215,176,39)" fg:x="173" fg:w="24"/><text x="38.5243%" y="622.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 5.31%)</title><rect x="38.2743%" y="628" width="5.3097%" height="15" fill="rgb(223,77,29)" fg:x="173" fg:w="24"/><text x="38.5243%" y="638.50">_call_..</text></g><g><title><module> (dask/array/__init__.py:1) (24 samples, 5.31%)</title><rect x="38.2743%" y="644" width="5.3097%" height="15" fill="rgb(234,94,52)" fg:x="173" fg:w="24"/><text x="38.5243%" y="654.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (24 samples, 5.31%)</title><rect x="38.2743%" y="660" width="5.3097%" height="15" fill="rgb(220,154,50)" fg:x="173" fg:w="24"/><text x="38.5243%" y="670.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 5.31%)</title><rect x="38.2743%" y="676" width="5.3097%" height="15" fill="rgb(212,11,10)" fg:x="173" fg:w="24"/><text x="38.5243%" y="686.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (24 samples, 5.31%)</title><rect x="38.2743%" y="692" width="5.3097%" height="15" fill="rgb(205,166,19)" fg:x="173" fg:w="24"/><text x="38.5243%" y="702.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (24 samples, 5.31%)</title><rect x="38.2743%" y="708" width="5.3097%" height="15" fill="rgb(244,198,16)" fg:x="173" fg:w="24"/><text x="38.5243%" y="718.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (24 samples, 5.31%)</title><rect x="38.2743%" y="724" width="5.3097%" height="15" fill="rgb(219,69,12)" fg:x="173" fg:w="24"/><text x="38.5243%" y="734.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (24 samples, 5.31%)</title><rect x="38.2743%" y="740" width="5.3097%" height="15" fill="rgb(245,30,7)" fg:x="173" fg:w="24"/><text x="38.5243%" y="750.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (24 samples, 5.31%)</title><rect x="38.2743%" y="756" width="5.3097%" height="15" fill="rgb(218,221,48)" fg:x="173" fg:w="24"/><text x="38.5243%" y="766.50">_call_..</text></g><g><title><module> (dask/array/ma.py:1) (2 samples, 0.44%)</title><rect x="43.1416%" y="772" width="0.4425%" height="15" fill="rgb(216,66,15)" fg:x="195" fg:w="2"/><text x="43.3916%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="43.1416%" y="788" width="0.4425%" height="15" fill="rgb(226,122,50)" fg:x="195" fg:w="2"/><text x="43.3916%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="43.1416%" y="804" width="0.4425%" height="15" fill="rgb(239,156,16)" fg:x="195" fg:w="2"/><text x="43.3916%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="43.1416%" y="820" width="0.4425%" height="15" fill="rgb(224,27,38)" fg:x="195" fg:w="2"/><text x="43.3916%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="43.1416%" y="836" width="0.4425%" height="15" fill="rgb(224,39,27)" fg:x="195" fg:w="2"/><text x="43.3916%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="43.1416%" y="852" width="0.4425%" height="15" fill="rgb(215,92,29)" fg:x="195" fg:w="2"/><text x="43.3916%" y="862.50"></text></g><g><title><module> (dask/array/reductions.py:1) (2 samples, 0.44%)</title><rect x="43.1416%" y="868" width="0.4425%" height="15" fill="rgb(207,159,16)" fg:x="195" fg:w="2"/><text x="43.3916%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.44%)</title><rect x="43.1416%" y="884" width="0.4425%" height="15" fill="rgb(238,163,47)" fg:x="195" fg:w="2"/><text x="43.3916%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.44%)</title><rect x="43.1416%" y="900" width="0.4425%" height="15" fill="rgb(219,91,49)" fg:x="195" fg:w="2"/><text x="43.3916%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.22%)</title><rect x="43.3628%" y="916" width="0.2212%" height="15" fill="rgb(227,167,31)" fg:x="196" fg:w="1"/><text x="43.6128%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.22%)</title><rect x="43.3628%" y="932" width="0.2212%" height="15" fill="rgb(234,80,54)" fg:x="196" fg:w="1"/><text x="43.6128%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.22%)</title><rect x="43.3628%" y="948" width="0.2212%" height="15" fill="rgb(212,114,2)" fg:x="196" fg:w="1"/><text x="43.6128%" y="958.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (2 samples, 0.44%)</title><rect x="43.5841%" y="612" width="0.4425%" height="15" fill="rgb(234,50,24)" fg:x="197" fg:w="2"/><text x="43.8341%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.44%)</title><rect x="43.5841%" y="628" width="0.4425%" height="15" fill="rgb(221,68,8)" fg:x="197" fg:w="2"/><text x="43.8341%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.44%)</title><rect x="43.5841%" y="644" width="0.4425%" height="15" fill="rgb(254,180,31)" fg:x="197" fg:w="2"/><text x="43.8341%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (2 samples, 0.44%)</title><rect x="43.5841%" y="660" width="0.4425%" height="15" fill="rgb(247,130,50)" fg:x="197" fg:w="2"/><text x="43.8341%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (2 samples, 0.44%)</title><rect x="43.5841%" y="676" width="0.4425%" height="15" fill="rgb(211,109,4)" fg:x="197" fg:w="2"/><text x="43.8341%" y="686.50"></text></g><g><title>match (re.py:188) (1 samples, 0.22%)</title><rect x="43.8053%" y="692" width="0.2212%" height="15" fill="rgb(238,50,21)" fg:x="198" fg:w="1"/><text x="44.0553%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="43.8053%" y="708" width="0.2212%" height="15" fill="rgb(225,57,45)" fg:x="198" fg:w="1"/><text x="44.0553%" y="718.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.22%)</title><rect x="44.0265%" y="660" width="0.2212%" height="15" fill="rgb(209,196,50)" fg:x="199" fg:w="1"/><text x="44.2765%" y="670.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (4 samples, 0.88%)</title><rect x="44.0265%" y="612" width="0.8850%" height="15" fill="rgb(242,140,13)" fg:x="199" fg:w="4"/><text x="44.2765%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (4 samples, 0.88%)</title><rect x="44.0265%" y="628" width="0.8850%" height="15" fill="rgb(217,111,7)" fg:x="199" fg:w="4"/><text x="44.2765%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (4 samples, 0.88%)</title><rect x="44.0265%" y="644" width="0.8850%" height="15" fill="rgb(253,193,51)" fg:x="199" fg:w="4"/><text x="44.2765%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (3 samples, 0.66%)</title><rect x="44.2478%" y="660" width="0.6637%" height="15" fill="rgb(252,70,29)" fg:x="200" fg:w="3"/><text x="44.4978%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (3 samples, 0.66%)</title><rect x="44.2478%" y="676" width="0.6637%" height="15" fill="rgb(232,127,12)" fg:x="200" fg:w="3"/><text x="44.4978%" y="686.50"></text></g><g><title>match (re.py:188) (3 samples, 0.66%)</title><rect x="44.2478%" y="692" width="0.6637%" height="15" fill="rgb(211,180,21)" fg:x="200" fg:w="3"/><text x="44.4978%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="44.6903%" y="708" width="0.2212%" height="15" fill="rgb(229,72,13)" fg:x="202" fg:w="1"/><text x="44.9403%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="44.9115%" y="612" width="0.2212%" height="15" fill="rgb(240,211,49)" fg:x="203" fg:w="1"/><text x="45.1615%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="44.9115%" y="628" width="0.2212%" height="15" fill="rgb(219,149,40)" fg:x="203" fg:w="1"/><text x="45.1615%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="44.9115%" y="644" width="0.2212%" height="15" fill="rgb(210,127,46)" fg:x="203" fg:w="1"/><text x="45.1615%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="44.9115%" y="660" width="0.2212%" height="15" fill="rgb(220,106,7)" fg:x="203" fg:w="1"/><text x="45.1615%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="44.9115%" y="676" width="0.2212%" height="15" fill="rgb(249,31,22)" fg:x="203" fg:w="1"/><text x="45.1615%" y="686.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (1 samples, 0.22%)</title><rect x="44.9115%" y="692" width="0.2212%" height="15" fill="rgb(253,1,49)" fg:x="203" fg:w="1"/><text x="45.1615%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="44.9115%" y="708" width="0.2212%" height="15" fill="rgb(227,144,33)" fg:x="203" fg:w="1"/><text x="45.1615%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="44.9115%" y="724" width="0.2212%" height="15" fill="rgb(249,163,44)" fg:x="203" fg:w="1"/><text x="45.1615%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="44.9115%" y="740" width="0.2212%" height="15" fill="rgb(234,15,39)" fg:x="203" fg:w="1"/><text x="45.1615%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="44.9115%" y="756" width="0.2212%" height="15" fill="rgb(207,66,16)" fg:x="203" fg:w="1"/><text x="45.1615%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="44.9115%" y="772" width="0.2212%" height="15" fill="rgb(233,112,24)" fg:x="203" fg:w="1"/><text x="45.1615%" y="782.50"></text></g><g><title><module> (dask/bag/avro.py:1) (1 samples, 0.22%)</title><rect x="44.9115%" y="788" width="0.2212%" height="15" fill="rgb(230,90,22)" fg:x="203" fg:w="1"/><text x="45.1615%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="44.9115%" y="804" width="0.2212%" height="15" fill="rgb(229,61,13)" fg:x="203" fg:w="1"/><text x="45.1615%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="44.9115%" y="820" width="0.2212%" height="15" fill="rgb(225,57,24)" fg:x="203" fg:w="1"/><text x="45.1615%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="44.9115%" y="836" width="0.2212%" height="15" fill="rgb(208,169,48)" fg:x="203" fg:w="1"/><text x="45.1615%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="44.9115%" y="852" width="0.2212%" height="15" fill="rgb(244,218,51)" fg:x="203" fg:w="1"/><text x="45.1615%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="44.9115%" y="868" width="0.2212%" height="15" fill="rgb(214,148,10)" fg:x="203" fg:w="1"/><text x="45.1615%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="44.9115%" y="884" width="0.2212%" height="15" fill="rgb(225,174,27)" fg:x="203" fg:w="1"/><text x="45.1615%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="44.9115%" y="900" width="0.2212%" height="15" fill="rgb(230,96,26)" fg:x="203" fg:w="1"/><text x="45.1615%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="44.9115%" y="916" width="0.2212%" height="15" fill="rgb(232,10,30)" fg:x="203" fg:w="1"/><text x="45.1615%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (1 samples, 0.22%)</title><rect x="44.9115%" y="932" width="0.2212%" height="15" fill="rgb(222,8,50)" fg:x="203" fg:w="1"/><text x="45.1615%" y="942.50"></text></g><g><title>process_entries (fsspec/__init__.py:40) (1 samples, 0.22%)</title><rect x="44.9115%" y="948" width="0.2212%" height="15" fill="rgb(213,81,27)" fg:x="203" fg:w="1"/><text x="45.1615%" y="958.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.22%)</title><rect x="44.9115%" y="964" width="0.2212%" height="15" fill="rgb(245,50,10)" fg:x="203" fg:w="1"/><text x="45.1615%" y="974.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.22%)</title><rect x="44.9115%" y="980" width="0.2212%" height="15" fill="rgb(216,100,18)" fg:x="203" fg:w="1"/><text x="45.1615%" y="990.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.22%)</title><rect x="44.9115%" y="996" width="0.2212%" height="15" fill="rgb(236,147,54)" fg:x="203" fg:w="1"/><text x="45.1615%" y="1006.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:340) (1 samples, 0.22%)</title><rect x="44.9115%" y="1012" width="0.2212%" height="15" fill="rgb(205,143,26)" fg:x="203" fg:w="1"/><text x="45.1615%" y="1022.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (32 samples, 7.08%)</title><rect x="38.2743%" y="500" width="7.0796%" height="15" fill="rgb(236,26,9)" fg:x="173" fg:w="32"/><text x="38.5243%" y="510.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (32 samples, 7.08%)</title><rect x="38.2743%" y="516" width="7.0796%" height="15" fill="rgb(221,165,53)" fg:x="173" fg:w="32"/><text x="38.5243%" y="526.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (32 samples, 7.08%)</title><rect x="38.2743%" y="532" width="7.0796%" height="15" fill="rgb(214,110,17)" fg:x="173" fg:w="32"/><text x="38.5243%" y="542.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="43.5841%" y="548" width="1.7699%" height="15" fill="rgb(237,197,12)" fg:x="197" fg:w="8"/><text x="43.8341%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="43.5841%" y="564" width="1.7699%" height="15" fill="rgb(205,84,17)" fg:x="197" fg:w="8"/><text x="43.8341%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="43.5841%" y="580" width="1.7699%" height="15" fill="rgb(237,18,45)" fg:x="197" fg:w="8"/><text x="43.8341%" y="590.50"></text></g><g><title><module> (dask/dataframe/core.py:1) (8 samples, 1.77%)</title><rect x="43.5841%" y="596" width="1.7699%" height="15" fill="rgb(221,87,14)" fg:x="197" fg:w="8"/><text x="43.8341%" y="606.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="45.1327%" y="612" width="0.2212%" height="15" fill="rgb(238,186,15)" fg:x="204" fg:w="1"/><text x="45.3827%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="628" width="0.2212%" height="15" fill="rgb(208,115,11)" fg:x="204" fg:w="1"/><text x="45.3827%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="45.1327%" y="644" width="0.2212%" height="15" fill="rgb(254,175,0)" fg:x="204" fg:w="1"/><text x="45.3827%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="45.1327%" y="660" width="0.2212%" height="15" fill="rgb(227,24,42)" fg:x="204" fg:w="1"/><text x="45.3827%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="45.1327%" y="676" width="0.2212%" height="15" fill="rgb(223,211,37)" fg:x="204" fg:w="1"/><text x="45.3827%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="45.1327%" y="692" width="0.2212%" height="15" fill="rgb(235,49,27)" fg:x="204" fg:w="1"/><text x="45.3827%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="708" width="0.2212%" height="15" fill="rgb(254,97,51)" fg:x="204" fg:w="1"/><text x="45.3827%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (1 samples, 0.22%)</title><rect x="45.1327%" y="724" width="0.2212%" height="15" fill="rgb(249,51,40)" fg:x="204" fg:w="1"/><text x="45.3827%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="45.1327%" y="740" width="0.2212%" height="15" fill="rgb(210,128,45)" fg:x="204" fg:w="1"/><text x="45.3827%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="45.1327%" y="756" width="0.2212%" height="15" fill="rgb(224,137,50)" fg:x="204" fg:w="1"/><text x="45.3827%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="45.1327%" y="772" width="0.2212%" height="15" fill="rgb(242,15,9)" fg:x="204" fg:w="1"/><text x="45.3827%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="45.1327%" y="788" width="0.2212%" height="15" fill="rgb(233,187,41)" fg:x="204" fg:w="1"/><text x="45.3827%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="804" width="0.2212%" height="15" fill="rgb(227,2,29)" fg:x="204" fg:w="1"/><text x="45.3827%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (1 samples, 0.22%)</title><rect x="45.1327%" y="820" width="0.2212%" height="15" fill="rgb(222,70,3)" fg:x="204" fg:w="1"/><text x="45.3827%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="45.1327%" y="836" width="0.2212%" height="15" fill="rgb(213,11,42)" fg:x="204" fg:w="1"/><text x="45.3827%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="852" width="0.2212%" height="15" fill="rgb(225,150,9)" fg:x="204" fg:w="1"/><text x="45.3827%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="45.1327%" y="868" width="0.2212%" height="15" fill="rgb(230,162,45)" fg:x="204" fg:w="1"/><text x="45.3827%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="45.1327%" y="884" width="0.2212%" height="15" fill="rgb(222,14,52)" fg:x="204" fg:w="1"/><text x="45.3827%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="45.1327%" y="900" width="0.2212%" height="15" fill="rgb(254,198,14)" fg:x="204" fg:w="1"/><text x="45.3827%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="45.1327%" y="916" width="0.2212%" height="15" fill="rgb(220,217,30)" fg:x="204" fg:w="1"/><text x="45.3827%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="932" width="0.2212%" height="15" fill="rgb(215,146,41)" fg:x="204" fg:w="1"/><text x="45.3827%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (1 samples, 0.22%)</title><rect x="45.1327%" y="948" width="0.2212%" height="15" fill="rgb(217,27,36)" fg:x="204" fg:w="1"/><text x="45.3827%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="45.1327%" y="964" width="0.2212%" height="15" fill="rgb(219,218,39)" fg:x="204" fg:w="1"/><text x="45.3827%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="45.1327%" y="980" width="0.2212%" height="15" fill="rgb(219,4,42)" fg:x="204" fg:w="1"/><text x="45.3827%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="45.1327%" y="996" width="0.2212%" height="15" fill="rgb(249,119,36)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="45.1327%" y="1012" width="0.2212%" height="15" fill="rgb(209,23,33)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="1028" width="0.2212%" height="15" fill="rgb(211,10,0)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (1 samples, 0.22%)</title><rect x="45.1327%" y="1044" width="0.2212%" height="15" fill="rgb(208,99,37)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="45.1327%" y="1060" width="0.2212%" height="15" fill="rgb(213,132,31)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="45.1327%" y="1076" width="0.2212%" height="15" fill="rgb(243,129,40)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="45.1327%" y="1092" width="0.2212%" height="15" fill="rgb(210,66,33)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="45.1327%" y="1108" width="0.2212%" height="15" fill="rgb(209,189,4)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="45.1327%" y="1124" width="0.2212%" height="15" fill="rgb(214,107,37)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (1 samples, 0.22%)</title><rect x="45.1327%" y="1140" width="0.2212%" height="15" fill="rgb(245,88,54)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1150.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.22%)</title><rect x="45.1327%" y="1156" width="0.2212%" height="15" fill="rgb(205,146,20)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1166.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.22%)</title><rect x="45.1327%" y="1172" width="0.2212%" height="15" fill="rgb(220,161,25)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1182.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.22%)</title><rect x="45.1327%" y="1188" width="0.2212%" height="15" fill="rgb(215,152,15)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1198.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.22%)</title><rect x="45.1327%" y="1204" width="0.2212%" height="15" fill="rgb(233,192,44)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1214.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.22%)</title><rect x="45.1327%" y="1220" width="0.2212%" height="15" fill="rgb(240,170,46)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1230.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.22%)</title><rect x="45.1327%" y="1236" width="0.2212%" height="15" fill="rgb(207,104,33)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1246.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.22%)</title><rect x="45.1327%" y="1252" width="0.2212%" height="15" fill="rgb(219,21,39)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1262.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.22%)</title><rect x="45.1327%" y="1268" width="0.2212%" height="15" fill="rgb(214,133,29)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1278.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.22%)</title><rect x="45.1327%" y="1284" width="0.2212%" height="15" fill="rgb(226,93,6)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1294.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.22%)</title><rect x="45.1327%" y="1300" width="0.2212%" height="15" fill="rgb(252,222,34)" fg:x="204" fg:w="1"/><text x="45.3827%" y="1310.50"></text></g><g><title><module> (qarray/__init__.py:1) (42 samples, 9.29%)</title><rect x="36.5044%" y="180" width="9.2920%" height="15" fill="rgb(252,92,48)" fg:x="165" fg:w="42"/><text x="36.7544%" y="190.50"><module> (qar..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (42 samples, 9.29%)</title><rect x="36.5044%" y="196" width="9.2920%" height="15" fill="rgb(245,223,24)" fg:x="165" fg:w="42"/><text x="36.7544%" y="206.50">_find_and_loa..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (42 samples, 9.29%)</title><rect x="36.5044%" y="212" width="9.2920%" height="15" fill="rgb(205,176,3)" fg:x="165" fg:w="42"/><text x="36.7544%" y="222.50">_find_and_loa..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (42 samples, 9.29%)</title><rect x="36.5044%" y="228" width="9.2920%" height="15" fill="rgb(235,151,15)" fg:x="165" fg:w="42"/><text x="36.7544%" y="238.50">_load_unlocke..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (42 samples, 9.29%)</title><rect x="36.5044%" y="244" width="9.2920%" height="15" fill="rgb(237,209,11)" fg:x="165" fg:w="42"/><text x="36.7544%" y="254.50">exec_module (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (42 samples, 9.29%)</title><rect x="36.5044%" y="260" width="9.2920%" height="15" fill="rgb(243,227,24)" fg:x="165" fg:w="42"/><text x="36.7544%" y="270.50">_call_with_fr..</text></g><g><title><module> (qarray/df.py:1) (34 samples, 7.52%)</title><rect x="38.2743%" y="276" width="7.5221%" height="15" fill="rgb(239,193,16)" fg:x="173" fg:w="34"/><text x="38.5243%" y="286.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 7.52%)</title><rect x="38.2743%" y="292" width="7.5221%" height="15" fill="rgb(231,27,9)" fg:x="173" fg:w="34"/><text x="38.5243%" y="302.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 7.52%)</title><rect x="38.2743%" y="308" width="7.5221%" height="15" fill="rgb(219,169,10)" fg:x="173" fg:w="34"/><text x="38.5243%" y="318.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 7.52%)</title><rect x="38.2743%" y="324" width="7.5221%" height="15" fill="rgb(244,229,43)" fg:x="173" fg:w="34"/><text x="38.5243%" y="334.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 7.52%)</title><rect x="38.2743%" y="340" width="7.5221%" height="15" fill="rgb(254,38,20)" fg:x="173" fg:w="34"/><text x="38.5243%" y="350.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 7.52%)</title><rect x="38.2743%" y="356" width="7.5221%" height="15" fill="rgb(250,47,30)" fg:x="173" fg:w="34"/><text x="38.5243%" y="366.50">_call_with..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (34 samples, 7.52%)</title><rect x="38.2743%" y="372" width="7.5221%" height="15" fill="rgb(224,124,36)" fg:x="173" fg:w="34"/><text x="38.5243%" y="382.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (34 samples, 7.52%)</title><rect x="38.2743%" y="388" width="7.5221%" height="15" fill="rgb(246,68,51)" fg:x="173" fg:w="34"/><text x="38.5243%" y="398.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 7.52%)</title><rect x="38.2743%" y="404" width="7.5221%" height="15" fill="rgb(253,43,49)" fg:x="173" fg:w="34"/><text x="38.5243%" y="414.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 7.52%)</title><rect x="38.2743%" y="420" width="7.5221%" height="15" fill="rgb(219,54,36)" fg:x="173" fg:w="34"/><text x="38.5243%" y="430.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 7.52%)</title><rect x="38.2743%" y="436" width="7.5221%" height="15" fill="rgb(227,133,34)" fg:x="173" fg:w="34"/><text x="38.5243%" y="446.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 7.52%)</title><rect x="38.2743%" y="452" width="7.5221%" height="15" fill="rgb(247,227,15)" fg:x="173" fg:w="34"/><text x="38.5243%" y="462.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 7.52%)</title><rect x="38.2743%" y="468" width="7.5221%" height="15" fill="rgb(229,96,14)" fg:x="173" fg:w="34"/><text x="38.5243%" y="478.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 7.52%)</title><rect x="38.2743%" y="484" width="7.5221%" height="15" fill="rgb(220,79,17)" fg:x="173" fg:w="34"/><text x="38.5243%" y="494.50">_call_with..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (2 samples, 0.44%)</title><rect x="45.3540%" y="500" width="0.4425%" height="15" fill="rgb(205,131,53)" fg:x="205" fg:w="2"/><text x="45.6040%" y="510.50"></text></g><g><title>Rolling (dask/dataframe/rolling.py:456) (2 samples, 0.44%)</title><rect x="45.3540%" y="516" width="0.4425%" height="15" fill="rgb(209,50,29)" fg:x="205" fg:w="2"/><text x="45.6040%" y="526.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.44%)</title><rect x="45.3540%" y="532" width="0.4425%" height="15" fill="rgb(245,86,46)" fg:x="205" fg:w="2"/><text x="45.6040%" y="542.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.44%)</title><rect x="45.3540%" y="548" width="0.4425%" height="15" fill="rgb(235,66,46)" fg:x="205" fg:w="2"/><text x="45.6040%" y="558.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (2 samples, 0.44%)</title><rect x="45.3540%" y="564" width="0.4425%" height="15" fill="rgb(232,148,31)" fg:x="205" fg:w="2"/><text x="45.6040%" y="574.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.22%)</title><rect x="45.5752%" y="580" width="0.2212%" height="15" fill="rgb(217,149,8)" fg:x="206" fg:w="1"/><text x="45.8252%" y="590.50"></text></g><g><title>match (re.py:188) (1 samples, 0.22%)</title><rect x="45.5752%" y="596" width="0.2212%" height="15" fill="rgb(209,183,11)" fg:x="206" fg:w="1"/><text x="45.8252%" y="606.50"></text></g><g><title>CFUNCTYPE (ctypes/__init__.py:76) (1 samples, 0.22%)</title><rect x="45.7965%" y="884" width="0.2212%" height="15" fill="rgb(208,55,20)" fg:x="207" fg:w="1"/><text x="46.0465%" y="894.50"></text></g><g><title><module> (numpy/core/_internal.py:1) (3 samples, 0.66%)</title><rect x="45.7965%" y="772" width="0.6637%" height="15" fill="rgb(218,39,14)" fg:x="207" fg:w="3"/><text x="46.0465%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="45.7965%" y="788" width="0.6637%" height="15" fill="rgb(216,169,33)" fg:x="207" fg:w="3"/><text x="46.0465%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="45.7965%" y="804" width="0.6637%" height="15" fill="rgb(233,80,24)" fg:x="207" fg:w="3"/><text x="46.0465%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="45.7965%" y="820" width="0.6637%" height="15" fill="rgb(213,179,31)" fg:x="207" fg:w="3"/><text x="46.0465%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="45.7965%" y="836" width="0.6637%" height="15" fill="rgb(209,19,5)" fg:x="207" fg:w="3"/><text x="46.0465%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="45.7965%" y="852" width="0.6637%" height="15" fill="rgb(219,18,35)" fg:x="207" fg:w="3"/><text x="46.0465%" y="862.50"></text></g><g><title><module> (ctypes/__init__.py:1) (3 samples, 0.66%)</title><rect x="45.7965%" y="868" width="0.6637%" height="15" fill="rgb(209,169,16)" fg:x="207" fg:w="3"/><text x="46.0465%" y="878.50"></text></g><g><title>PYFUNCTYPE (ctypes/__init__.py:509) (2 samples, 0.44%)</title><rect x="46.0177%" y="884" width="0.4425%" height="15" fill="rgb(245,90,51)" fg:x="208" fg:w="2"/><text x="46.2677%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="45.7965%" y="420" width="1.1062%" height="15" fill="rgb(220,99,45)" fg:x="207" fg:w="5"/><text x="46.0465%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="45.7965%" y="436" width="1.1062%" height="15" fill="rgb(249,89,25)" fg:x="207" fg:w="5"/><text x="46.0465%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="45.7965%" y="452" width="1.1062%" height="15" fill="rgb(239,193,0)" fg:x="207" fg:w="5"/><text x="46.0465%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="45.7965%" y="468" width="1.1062%" height="15" fill="rgb(231,126,1)" fg:x="207" fg:w="5"/><text x="46.0465%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="45.7965%" y="484" width="1.1062%" height="15" fill="rgb(243,166,3)" fg:x="207" fg:w="5"/><text x="46.0465%" y="494.50"></text></g><g><title><module> (numpy/__config__.py:3) (5 samples, 1.11%)</title><rect x="45.7965%" y="500" width="1.1062%" height="15" fill="rgb(223,22,34)" fg:x="207" fg:w="5"/><text x="46.0465%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="45.7965%" y="516" width="1.1062%" height="15" fill="rgb(251,52,51)" fg:x="207" fg:w="5"/><text x="46.0465%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="45.7965%" y="532" width="1.1062%" height="15" fill="rgb(221,165,28)" fg:x="207" fg:w="5"/><text x="46.0465%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="45.7965%" y="548" width="1.1062%" height="15" fill="rgb(218,121,47)" fg:x="207" fg:w="5"/><text x="46.0465%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="45.7965%" y="564" width="1.1062%" height="15" fill="rgb(209,120,9)" fg:x="207" fg:w="5"/><text x="46.0465%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="45.7965%" y="580" width="1.1062%" height="15" fill="rgb(236,68,12)" fg:x="207" fg:w="5"/><text x="46.0465%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="45.7965%" y="596" width="1.1062%" height="15" fill="rgb(225,194,26)" fg:x="207" fg:w="5"/><text x="46.0465%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="45.7965%" y="612" width="1.1062%" height="15" fill="rgb(231,84,39)" fg:x="207" fg:w="5"/><text x="46.0465%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="45.7965%" y="628" width="1.1062%" height="15" fill="rgb(210,11,45)" fg:x="207" fg:w="5"/><text x="46.0465%" y="638.50"></text></g><g><title><module> (numpy/core/__init__.py:1) (5 samples, 1.11%)</title><rect x="45.7965%" y="644" width="1.1062%" height="15" fill="rgb(224,54,52)" fg:x="207" fg:w="5"/><text x="46.0465%" y="654.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.11%)</title><rect x="45.7965%" y="660" width="1.1062%" height="15" fill="rgb(238,102,14)" fg:x="207" fg:w="5"/><text x="46.0465%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="45.7965%" y="676" width="1.1062%" height="15" fill="rgb(243,160,52)" fg:x="207" fg:w="5"/><text x="46.0465%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="45.7965%" y="692" width="1.1062%" height="15" fill="rgb(216,114,19)" fg:x="207" fg:w="5"/><text x="46.0465%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="45.7965%" y="708" width="1.1062%" height="15" fill="rgb(244,166,37)" fg:x="207" fg:w="5"/><text x="46.0465%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="45.7965%" y="724" width="1.1062%" height="15" fill="rgb(246,29,44)" fg:x="207" fg:w="5"/><text x="46.0465%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="45.7965%" y="740" width="1.1062%" height="15" fill="rgb(215,56,53)" fg:x="207" fg:w="5"/><text x="46.0465%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="45.7965%" y="756" width="1.1062%" height="15" fill="rgb(217,60,2)" fg:x="207" fg:w="5"/><text x="46.0465%" y="766.50"></text></g><g><title><module> (numpy/core/numeric.py:1) (2 samples, 0.44%)</title><rect x="46.4602%" y="772" width="0.4425%" height="15" fill="rgb(207,26,24)" fg:x="210" fg:w="2"/><text x="46.7102%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="46.6814%" y="788" width="0.2212%" height="15" fill="rgb(252,210,15)" fg:x="211" fg:w="1"/><text x="46.9314%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="46.6814%" y="804" width="0.2212%" height="15" fill="rgb(253,209,26)" fg:x="211" fg:w="1"/><text x="46.9314%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="46.6814%" y="820" width="0.2212%" height="15" fill="rgb(238,170,14)" fg:x="211" fg:w="1"/><text x="46.9314%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="46.6814%" y="836" width="0.2212%" height="15" fill="rgb(216,178,15)" fg:x="211" fg:w="1"/><text x="46.9314%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="46.6814%" y="852" width="0.2212%" height="15" fill="rgb(250,197,2)" fg:x="211" fg:w="1"/><text x="46.9314%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="46.6814%" y="868" width="0.2212%" height="15" fill="rgb(212,70,42)" fg:x="211" fg:w="1"/><text x="46.9314%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="46.6814%" y="884" width="0.2212%" height="15" fill="rgb(227,213,9)" fg:x="211" fg:w="1"/><text x="46.9314%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="46.6814%" y="900" width="0.2212%" height="15" fill="rgb(245,99,25)" fg:x="211" fg:w="1"/><text x="46.9314%" y="910.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="46.9027%" y="708" width="0.2212%" height="15" fill="rgb(250,82,29)" fg:x="212" fg:w="1"/><text x="47.1527%" y="718.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="46.9027%" y="724" width="0.2212%" height="15" fill="rgb(241,226,54)" fg:x="212" fg:w="1"/><text x="47.1527%" y="734.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="46.9027%" y="740" width="0.2212%" height="15" fill="rgb(221,99,41)" fg:x="212" fg:w="1"/><text x="47.1527%" y="750.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="46.9027%" y="756" width="0.2212%" height="15" fill="rgb(213,90,21)" fg:x="212" fg:w="1"/><text x="47.1527%" y="766.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.22%)</title><rect x="46.9027%" y="772" width="0.2212%" height="15" fill="rgb(205,208,24)" fg:x="212" fg:w="1"/><text x="47.1527%" y="782.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (1 samples, 0.22%)</title><rect x="46.9027%" y="788" width="0.2212%" height="15" fill="rgb(246,31,12)" fg:x="212" fg:w="1"/><text x="47.1527%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="47.1239%" y="1268" width="0.2212%" height="15" fill="rgb(213,154,6)" fg:x="213" fg:w="1"/><text x="47.3739%" y="1278.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="47.1239%" y="1284" width="0.2212%" height="15" fill="rgb(222,163,29)" fg:x="213" fg:w="1"/><text x="47.3739%" y="1294.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="47.1239%" y="1300" width="0.2212%" height="15" fill="rgb(227,201,8)" fg:x="213" fg:w="1"/><text x="47.3739%" y="1310.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (3 samples, 0.66%)</title><rect x="46.9027%" y="660" width="0.6637%" height="15" fill="rgb(233,9,32)" fg:x="212" fg:w="3"/><text x="47.1527%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="46.9027%" y="676" width="0.6637%" height="15" fill="rgb(217,54,24)" fg:x="212" fg:w="3"/><text x="47.1527%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="46.9027%" y="692" width="0.6637%" height="15" fill="rgb(235,192,0)" fg:x="212" fg:w="3"/><text x="47.1527%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="708" width="0.4425%" height="15" fill="rgb(235,45,9)" fg:x="213" fg:w="2"/><text x="47.3739%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.1239%" y="724" width="0.4425%" height="15" fill="rgb(246,42,40)" fg:x="213" fg:w="2"/><text x="47.3739%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="740" width="0.4425%" height="15" fill="rgb(248,111,24)" fg:x="213" fg:w="2"/><text x="47.3739%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (2 samples, 0.44%)</title><rect x="47.1239%" y="756" width="0.4425%" height="15" fill="rgb(249,65,22)" fg:x="213" fg:w="2"/><text x="47.3739%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="47.1239%" y="772" width="0.4425%" height="15" fill="rgb(238,111,51)" fg:x="213" fg:w="2"/><text x="47.3739%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="788" width="0.4425%" height="15" fill="rgb(250,118,22)" fg:x="213" fg:w="2"/><text x="47.3739%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.1239%" y="804" width="0.4425%" height="15" fill="rgb(234,84,26)" fg:x="213" fg:w="2"/><text x="47.3739%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.1239%" y="820" width="0.4425%" height="15" fill="rgb(243,172,12)" fg:x="213" fg:w="2"/><text x="47.3739%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="836" width="0.4425%" height="15" fill="rgb(236,150,49)" fg:x="213" fg:w="2"/><text x="47.3739%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.1239%" y="852" width="0.4425%" height="15" fill="rgb(225,197,26)" fg:x="213" fg:w="2"/><text x="47.3739%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="868" width="0.4425%" height="15" fill="rgb(214,17,42)" fg:x="213" fg:w="2"/><text x="47.3739%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (2 samples, 0.44%)</title><rect x="47.1239%" y="884" width="0.4425%" height="15" fill="rgb(224,165,40)" fg:x="213" fg:w="2"/><text x="47.3739%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.1239%" y="900" width="0.4425%" height="15" fill="rgb(246,100,4)" fg:x="213" fg:w="2"/><text x="47.3739%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.1239%" y="916" width="0.4425%" height="15" fill="rgb(222,103,0)" fg:x="213" fg:w="2"/><text x="47.3739%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="932" width="0.4425%" height="15" fill="rgb(227,189,26)" fg:x="213" fg:w="2"/><text x="47.3739%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.1239%" y="948" width="0.4425%" height="15" fill="rgb(214,202,17)" fg:x="213" fg:w="2"/><text x="47.3739%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="964" width="0.4425%" height="15" fill="rgb(229,111,3)" fg:x="213" fg:w="2"/><text x="47.3739%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (2 samples, 0.44%)</title><rect x="47.1239%" y="980" width="0.4425%" height="15" fill="rgb(229,172,15)" fg:x="213" fg:w="2"/><text x="47.3739%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="47.1239%" y="996" width="0.4425%" height="15" fill="rgb(230,224,35)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="1012" width="0.4425%" height="15" fill="rgb(251,141,6)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.1239%" y="1028" width="0.4425%" height="15" fill="rgb(225,208,6)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.1239%" y="1044" width="0.4425%" height="15" fill="rgb(246,181,16)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="1060" width="0.4425%" height="15" fill="rgb(227,129,36)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.1239%" y="1076" width="0.4425%" height="15" fill="rgb(248,117,24)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="1092" width="0.4425%" height="15" fill="rgb(214,185,35)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (2 samples, 0.44%)</title><rect x="47.1239%" y="1108" width="0.4425%" height="15" fill="rgb(236,150,34)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.1239%" y="1124" width="0.4425%" height="15" fill="rgb(243,228,27)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.1239%" y="1140" width="0.4425%" height="15" fill="rgb(245,77,44)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="1156" width="0.4425%" height="15" fill="rgb(235,214,42)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.1239%" y="1172" width="0.4425%" height="15" fill="rgb(221,74,3)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.1239%" y="1188" width="0.4425%" height="15" fill="rgb(206,121,29)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1198.50"></text></g><g><title><module> (numpy/_typing/__init__.py:1) (2 samples, 0.44%)</title><rect x="47.1239%" y="1204" width="0.4425%" height="15" fill="rgb(249,131,53)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.1239%" y="1220" width="0.4425%" height="15" fill="rgb(236,170,29)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.1239%" y="1236" width="0.4425%" height="15" fill="rgb(247,96,15)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.1239%" y="1252" width="0.4425%" height="15" fill="rgb(211,210,7)" fg:x="213" fg:w="2"/><text x="47.3739%" y="1262.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="47.3451%" y="1268" width="0.2212%" height="15" fill="rgb(240,88,50)" fg:x="214" fg:w="1"/><text x="47.5951%" y="1278.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.22%)</title><rect x="47.3451%" y="1284" width="0.2212%" height="15" fill="rgb(209,229,26)" fg:x="214" fg:w="1"/><text x="47.5951%" y="1294.50"></text></g><g><title><module> (numpy/lib/npyio.py:1) (2 samples, 0.44%)</title><rect x="47.5664%" y="660" width="0.4425%" height="15" fill="rgb(210,68,23)" fg:x="215" fg:w="2"/><text x="47.8164%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="47.5664%" y="676" width="0.4425%" height="15" fill="rgb(229,180,13)" fg:x="215" fg:w="2"/><text x="47.8164%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="47.5664%" y="692" width="0.4425%" height="15" fill="rgb(236,53,44)" fg:x="215" fg:w="2"/><text x="47.8164%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="47.5664%" y="708" width="0.4425%" height="15" fill="rgb(244,214,29)" fg:x="215" fg:w="2"/><text x="47.8164%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="47.5664%" y="724" width="0.4425%" height="15" fill="rgb(220,75,29)" fg:x="215" fg:w="2"/><text x="47.8164%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="47.5664%" y="740" width="0.4425%" height="15" fill="rgb(214,183,37)" fg:x="215" fg:w="2"/><text x="47.8164%" y="750.50"></text></g><g><title><module> (weakref.py:1) (2 samples, 0.44%)</title><rect x="47.5664%" y="756" width="0.4425%" height="15" fill="rgb(239,117,29)" fg:x="215" fg:w="2"/><text x="47.8164%" y="766.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.22%)</title><rect x="47.7876%" y="772" width="0.2212%" height="15" fill="rgb(237,171,35)" fg:x="216" fg:w="1"/><text x="48.0376%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="48.0088%" y="772" width="0.2212%" height="15" fill="rgb(229,178,53)" fg:x="217" fg:w="1"/><text x="48.2588%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="48.0088%" y="788" width="0.2212%" height="15" fill="rgb(210,102,19)" fg:x="217" fg:w="1"/><text x="48.2588%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="48.0088%" y="804" width="0.2212%" height="15" fill="rgb(235,127,22)" fg:x="217" fg:w="1"/><text x="48.2588%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="48.0088%" y="820" width="0.2212%" height="15" fill="rgb(244,31,31)" fg:x="217" fg:w="1"/><text x="48.2588%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="48.0088%" y="836" width="0.2212%" height="15" fill="rgb(231,43,21)" fg:x="217" fg:w="1"/><text x="48.2588%" y="846.50"></text></g><g><title><module> (subprocess.py:10) (1 samples, 0.22%)</title><rect x="48.0088%" y="852" width="0.2212%" height="15" fill="rgb(217,131,35)" fg:x="217" fg:w="1"/><text x="48.2588%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="48.0088%" y="868" width="0.2212%" height="15" fill="rgb(221,149,4)" fg:x="217" fg:w="1"/><text x="48.2588%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="48.0088%" y="884" width="0.2212%" height="15" fill="rgb(232,170,28)" fg:x="217" fg:w="1"/><text x="48.2588%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="48.0088%" y="900" width="0.2212%" height="15" fill="rgb(238,56,10)" fg:x="217" fg:w="1"/><text x="48.2588%" y="910.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="48.0088%" y="916" width="0.2212%" height="15" fill="rgb(235,196,14)" fg:x="217" fg:w="1"/><text x="48.2588%" y="926.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="48.0088%" y="932" width="0.2212%" height="15" fill="rgb(216,45,48)" fg:x="217" fg:w="1"/><text x="48.2588%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="48.0088%" y="948" width="0.2212%" height="15" fill="rgb(238,213,17)" fg:x="217" fg:w="1"/><text x="48.2588%" y="958.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (7 samples, 1.55%)</title><rect x="46.9027%" y="532" width="1.5487%" height="15" fill="rgb(212,13,2)" fg:x="212" fg:w="7"/><text x="47.1527%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 1.55%)</title><rect x="46.9027%" y="548" width="1.5487%" height="15" fill="rgb(240,114,20)" fg:x="212" fg:w="7"/><text x="47.1527%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="46.9027%" y="564" width="1.5487%" height="15" fill="rgb(228,41,40)" fg:x="212" fg:w="7"/><text x="47.1527%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="46.9027%" y="580" width="1.5487%" height="15" fill="rgb(244,132,35)" fg:x="212" fg:w="7"/><text x="47.1527%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="46.9027%" y="596" width="1.5487%" height="15" fill="rgb(253,189,4)" fg:x="212" fg:w="7"/><text x="47.1527%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="46.9027%" y="612" width="1.5487%" height="15" fill="rgb(224,37,19)" fg:x="212" fg:w="7"/><text x="47.1527%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="46.9027%" y="628" width="1.5487%" height="15" fill="rgb(235,223,18)" fg:x="212" fg:w="7"/><text x="47.1527%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="46.9027%" y="644" width="1.5487%" height="15" fill="rgb(235,163,25)" fg:x="212" fg:w="7"/><text x="47.1527%" y="654.50"></text></g><g><title><module> (numpy/lib/utils.py:1) (2 samples, 0.44%)</title><rect x="48.0088%" y="660" width="0.4425%" height="15" fill="rgb(217,145,28)" fg:x="217" fg:w="2"/><text x="48.2588%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="48.0088%" y="676" width="0.4425%" height="15" fill="rgb(223,223,32)" fg:x="217" fg:w="2"/><text x="48.2588%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="48.0088%" y="692" width="0.4425%" height="15" fill="rgb(227,189,39)" fg:x="217" fg:w="2"/><text x="48.2588%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="48.0088%" y="708" width="0.4425%" height="15" fill="rgb(248,10,22)" fg:x="217" fg:w="2"/><text x="48.2588%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="48.0088%" y="724" width="0.4425%" height="15" fill="rgb(248,46,39)" fg:x="217" fg:w="2"/><text x="48.2588%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="48.0088%" y="740" width="0.4425%" height="15" fill="rgb(248,113,48)" fg:x="217" fg:w="2"/><text x="48.2588%" y="750.50"></text></g><g><title><module> (platform.py:3) (2 samples, 0.44%)</title><rect x="48.0088%" y="756" width="0.4425%" height="15" fill="rgb(245,16,25)" fg:x="217" fg:w="2"/><text x="48.2588%" y="766.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.22%)</title><rect x="48.2301%" y="772" width="0.2212%" height="15" fill="rgb(249,152,16)" fg:x="218" fg:w="1"/><text x="48.4801%" y="782.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="48.2301%" y="788" width="0.2212%" height="15" fill="rgb(250,16,1)" fg:x="218" fg:w="1"/><text x="48.4801%" y="798.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="48.2301%" y="804" width="0.2212%" height="15" fill="rgb(249,138,3)" fg:x="218" fg:w="1"/><text x="48.4801%" y="814.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.22%)</title><rect x="48.2301%" y="820" width="0.2212%" height="15" fill="rgb(227,71,41)" fg:x="218" fg:w="1"/><text x="48.4801%" y="830.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="48.2301%" y="836" width="0.2212%" height="15" fill="rgb(209,184,23)" fg:x="218" fg:w="1"/><text x="48.4801%" y="846.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="48.2301%" y="852" width="0.2212%" height="15" fill="rgb(223,215,31)" fg:x="218" fg:w="1"/><text x="48.4801%" y="862.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="48.2301%" y="868" width="0.2212%" height="15" fill="rgb(210,146,28)" fg:x="218" fg:w="1"/><text x="48.4801%" y="878.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="48.2301%" y="884" width="0.2212%" height="15" fill="rgb(209,183,41)" fg:x="218" fg:w="1"/><text x="48.4801%" y="894.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="48.4513%" y="612" width="0.2212%" height="15" fill="rgb(209,224,45)" fg:x="219" fg:w="1"/><text x="48.7013%" y="622.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="48.4513%" y="628" width="0.2212%" height="15" fill="rgb(224,209,51)" fg:x="219" fg:w="1"/><text x="48.7013%" y="638.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="48.4513%" y="644" width="0.2212%" height="15" fill="rgb(223,17,39)" fg:x="219" fg:w="1"/><text x="48.7013%" y="654.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="48.4513%" y="660" width="0.2212%" height="15" fill="rgb(234,204,37)" fg:x="219" fg:w="1"/><text x="48.7013%" y="670.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1509) (1 samples, 0.22%)</title><rect x="48.4513%" y="676" width="0.2212%" height="15" fill="rgb(236,120,5)" fg:x="219" fg:w="1"/><text x="48.7013%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="48.6726%" y="740" width="0.2212%" height="15" fill="rgb(248,97,27)" fg:x="220" fg:w="1"/><text x="48.9226%" y="750.50"></text></g><g><title><module> (inspect.py:1) (1 samples, 0.22%)</title><rect x="48.6726%" y="756" width="0.2212%" height="15" fill="rgb(240,66,17)" fg:x="220" fg:w="1"/><text x="48.9226%" y="766.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.22%)</title><rect x="48.6726%" y="772" width="0.2212%" height="15" fill="rgb(210,79,3)" fg:x="220" fg:w="1"/><text x="48.9226%" y="782.50"></text></g><g><title><module> (numpy/__init__.py:1) (15 samples, 3.32%)</title><rect x="45.7965%" y="404" width="3.3186%" height="15" fill="rgb(214,176,27)" fg:x="207" fg:w="15"/><text x="46.0465%" y="414.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 2.21%)</title><rect x="46.9027%" y="420" width="2.2124%" height="15" fill="rgb(235,185,3)" fg:x="212" fg:w="10"/><text x="47.1527%" y="430.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="46.9027%" y="436" width="2.2124%" height="15" fill="rgb(227,24,12)" fg:x="212" fg:w="10"/><text x="47.1527%" y="446.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="46.9027%" y="452" width="2.2124%" height="15" fill="rgb(252,169,48)" fg:x="212" fg:w="10"/><text x="47.1527%" y="462.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="46.9027%" y="468" width="2.2124%" height="15" fill="rgb(212,65,1)" fg:x="212" fg:w="10"/><text x="47.1527%" y="478.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="46.9027%" y="484" width="2.2124%" height="15" fill="rgb(242,39,24)" fg:x="212" fg:w="10"/><text x="47.1527%" y="494.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.21%)</title><rect x="46.9027%" y="500" width="2.2124%" height="15" fill="rgb(249,32,23)" fg:x="212" fg:w="10"/><text x="47.1527%" y="510.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="46.9027%" y="516" width="2.2124%" height="15" fill="rgb(251,195,23)" fg:x="212" fg:w="10"/><text x="47.1527%" y="526.50">_..</text></g><g><title><module> (numpy/ma/__init__.py:1) (3 samples, 0.66%)</title><rect x="48.4513%" y="532" width="0.6637%" height="15" fill="rgb(236,174,8)" fg:x="219" fg:w="3"/><text x="48.7013%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="48.4513%" y="548" width="0.6637%" height="15" fill="rgb(220,197,8)" fg:x="219" fg:w="3"/><text x="48.7013%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="48.4513%" y="564" width="0.6637%" height="15" fill="rgb(240,108,37)" fg:x="219" fg:w="3"/><text x="48.7013%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="48.4513%" y="580" width="0.6637%" height="15" fill="rgb(232,176,24)" fg:x="219" fg:w="3"/><text x="48.7013%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="48.4513%" y="596" width="0.6637%" height="15" fill="rgb(243,35,29)" fg:x="219" fg:w="3"/><text x="48.7013%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="48.6726%" y="612" width="0.4425%" height="15" fill="rgb(210,37,18)" fg:x="220" fg:w="2"/><text x="48.9226%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="48.6726%" y="628" width="0.4425%" height="15" fill="rgb(224,184,40)" fg:x="220" fg:w="2"/><text x="48.9226%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="48.6726%" y="644" width="0.4425%" height="15" fill="rgb(236,39,29)" fg:x="220" fg:w="2"/><text x="48.9226%" y="654.50"></text></g><g><title><module> (numpy/ma/core.py:1) (2 samples, 0.44%)</title><rect x="48.6726%" y="660" width="0.4425%" height="15" fill="rgb(232,48,39)" fg:x="220" fg:w="2"/><text x="48.9226%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="48.6726%" y="676" width="0.4425%" height="15" fill="rgb(236,34,42)" fg:x="220" fg:w="2"/><text x="48.9226%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="48.6726%" y="692" width="0.4425%" height="15" fill="rgb(243,106,37)" fg:x="220" fg:w="2"/><text x="48.9226%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="48.6726%" y="708" width="0.4425%" height="15" fill="rgb(218,96,6)" fg:x="220" fg:w="2"/><text x="48.9226%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="48.6726%" y="724" width="0.4425%" height="15" fill="rgb(235,130,12)" fg:x="220" fg:w="2"/><text x="48.9226%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="48.8938%" y="740" width="0.2212%" height="15" fill="rgb(231,95,0)" fg:x="221" fg:w="1"/><text x="49.1438%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="48.8938%" y="756" width="0.2212%" height="15" fill="rgb(228,12,23)" fg:x="221" fg:w="1"/><text x="49.1438%" y="766.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:874) (1 samples, 0.22%)</title><rect x="49.1150%" y="468" width="0.2212%" height="15" fill="rgb(216,12,1)" fg:x="222" fg:w="1"/><text x="49.3650%" y="478.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 0.44%)</title><rect x="49.1150%" y="452" width="0.4425%" height="15" fill="rgb(219,59,3)" fg:x="222" fg:w="2"/><text x="49.3650%" y="462.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="49.3363%" y="468" width="0.2212%" height="15" fill="rgb(215,208,46)" fg:x="223" fg:w="1"/><text x="49.5863%" y="478.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="49.3363%" y="484" width="0.2212%" height="15" fill="rgb(254,224,29)" fg:x="223" fg:w="1"/><text x="49.5863%" y="494.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="49.3363%" y="500" width="0.2212%" height="15" fill="rgb(232,14,29)" fg:x="223" fg:w="1"/><text x="49.5863%" y="510.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.22%)</title><rect x="49.3363%" y="516" width="0.2212%" height="15" fill="rgb(208,45,52)" fg:x="223" fg:w="1"/><text x="49.5863%" y="526.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.22%)</title><rect x="49.3363%" y="532" width="0.2212%" height="15" fill="rgb(234,191,28)" fg:x="223" fg:w="1"/><text x="49.5863%" y="542.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="49.3363%" y="548" width="0.2212%" height="15" fill="rgb(244,67,43)" fg:x="223" fg:w="1"/><text x="49.5863%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="49.5575%" y="676" width="0.2212%" height="15" fill="rgb(236,189,24)" fg:x="224" fg:w="1"/><text x="49.8075%" y="686.50"></text></g><g><title><module> (sysconfig.py:1) (1 samples, 0.22%)</title><rect x="49.5575%" y="692" width="0.2212%" height="15" fill="rgb(239,214,33)" fg:x="224" fg:w="1"/><text x="49.8075%" y="702.50"></text></g><g><title>__contains__ (_collections_abc.py:767) (1 samples, 0.22%)</title><rect x="49.5575%" y="708" width="0.2212%" height="15" fill="rgb(226,176,41)" fg:x="224" fg:w="1"/><text x="49.8075%" y="718.50"></text></g><g><title>__getitem__ (os.py:674) (1 samples, 0.22%)</title><rect x="49.5575%" y="724" width="0.2212%" height="15" fill="rgb(248,47,8)" fg:x="224" fg:w="1"/><text x="49.8075%" y="734.50"></text></g><g><title><module> (pandas/compat/_constants.py:1) (2 samples, 0.44%)</title><rect x="49.5575%" y="596" width="0.4425%" height="15" fill="rgb(218,81,44)" fg:x="224" fg:w="2"/><text x="49.8075%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="49.5575%" y="612" width="0.4425%" height="15" fill="rgb(213,98,6)" fg:x="224" fg:w="2"/><text x="49.8075%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="49.5575%" y="628" width="0.4425%" height="15" fill="rgb(222,85,22)" fg:x="224" fg:w="2"/><text x="49.8075%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="49.5575%" y="644" width="0.4425%" height="15" fill="rgb(239,46,39)" fg:x="224" fg:w="2"/><text x="49.8075%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="49.5575%" y="660" width="0.4425%" height="15" fill="rgb(237,12,29)" fg:x="224" fg:w="2"/><text x="49.8075%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="49.7788%" y="676" width="0.2212%" height="15" fill="rgb(214,77,8)" fg:x="225" fg:w="1"/><text x="50.0288%" y="686.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.22%)</title><rect x="49.7788%" y="692" width="0.2212%" height="15" fill="rgb(217,168,37)" fg:x="225" fg:w="1"/><text x="50.0288%" y="702.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="49.7788%" y="708" width="0.2212%" height="15" fill="rgb(221,217,23)" fg:x="225" fg:w="1"/><text x="50.0288%" y="718.50"></text></g><g><title><module> (dataclasses.py:1) (1 samples, 0.22%)</title><rect x="50.2212%" y="1092" width="0.2212%" height="15" fill="rgb(243,229,36)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="50.2212%" y="1108" width="0.2212%" height="15" fill="rgb(251,163,40)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="50.2212%" y="1124" width="0.2212%" height="15" fill="rgb(237,222,12)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="50.2212%" y="1140" width="0.2212%" height="15" fill="rgb(248,132,6)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="50.2212%" y="1156" width="0.2212%" height="15" fill="rgb(227,167,50)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1166.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="50.2212%" y="1172" width="0.2212%" height="15" fill="rgb(242,84,37)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1182.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="50.2212%" y="1188" width="0.2212%" height="15" fill="rgb(212,4,50)" fg:x="227" fg:w="1"/><text x="50.4712%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.66%)</title><rect x="50.0000%" y="756" width="0.6637%" height="15" fill="rgb(230,228,32)" fg:x="226" fg:w="3"/><text x="50.2500%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="50.0000%" y="772" width="0.6637%" height="15" fill="rgb(248,217,23)" fg:x="226" fg:w="3"/><text x="50.2500%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="50.2212%" y="788" width="0.4425%" height="15" fill="rgb(238,197,32)" fg:x="227" fg:w="2"/><text x="50.4712%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="50.2212%" y="804" width="0.4425%" height="15" fill="rgb(236,106,1)" fg:x="227" fg:w="2"/><text x="50.4712%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="50.2212%" y="820" width="0.4425%" height="15" fill="rgb(219,228,13)" fg:x="227" fg:w="2"/><text x="50.4712%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="50.2212%" y="836" width="0.4425%" height="15" fill="rgb(238,30,35)" fg:x="227" fg:w="2"/><text x="50.4712%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="50.2212%" y="852" width="0.4425%" height="15" fill="rgb(236,70,23)" fg:x="227" fg:w="2"/><text x="50.4712%" y="862.50"></text></g><g><title><module> (cloudpickle/__init__.py:1) (2 samples, 0.44%)</title><rect x="50.2212%" y="868" width="0.4425%" height="15" fill="rgb(249,104,48)" fg:x="227" fg:w="2"/><text x="50.4712%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="50.2212%" y="884" width="0.4425%" height="15" fill="rgb(254,117,50)" fg:x="227" fg:w="2"/><text x="50.4712%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="50.2212%" y="900" width="0.4425%" height="15" fill="rgb(223,152,4)" fg:x="227" fg:w="2"/><text x="50.4712%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="50.2212%" y="916" width="0.4425%" height="15" fill="rgb(245,6,2)" fg:x="227" fg:w="2"/><text x="50.4712%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="50.2212%" y="932" width="0.4425%" height="15" fill="rgb(249,150,24)" fg:x="227" fg:w="2"/><text x="50.4712%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="50.2212%" y="948" width="0.4425%" height="15" fill="rgb(228,185,42)" fg:x="227" fg:w="2"/><text x="50.4712%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="50.2212%" y="964" width="0.4425%" height="15" fill="rgb(226,39,33)" fg:x="227" fg:w="2"/><text x="50.4712%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="50.2212%" y="980" width="0.4425%" height="15" fill="rgb(221,166,19)" fg:x="227" fg:w="2"/><text x="50.4712%" y="990.50"></text></g><g><title><module> (cloudpickle/cloudpickle.py:1) (2 samples, 0.44%)</title><rect x="50.2212%" y="996" width="0.4425%" height="15" fill="rgb(209,109,2)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="50.2212%" y="1012" width="0.4425%" height="15" fill="rgb(252,216,26)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="50.2212%" y="1028" width="0.4425%" height="15" fill="rgb(227,173,36)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="50.2212%" y="1044" width="0.4425%" height="15" fill="rgb(209,90,7)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="50.2212%" y="1060" width="0.4425%" height="15" fill="rgb(250,194,11)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="50.2212%" y="1076" width="0.4425%" height="15" fill="rgb(220,72,50)" fg:x="227" fg:w="2"/><text x="50.4712%" y="1086.50"></text></g><g><title><module> (logging/__init__.py:17) (1 samples, 0.22%)</title><rect x="50.4425%" y="1092" width="0.2212%" height="15" fill="rgb(222,106,48)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1102.50"></text></g><g><title>PercentStyle (logging/__init__.py:411) (1 samples, 0.22%)</title><rect x="50.4425%" y="1108" width="0.2212%" height="15" fill="rgb(216,220,45)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1118.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.22%)</title><rect x="50.4425%" y="1124" width="0.2212%" height="15" fill="rgb(234,112,18)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1134.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="50.4425%" y="1140" width="0.2212%" height="15" fill="rgb(206,179,9)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1150.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="50.4425%" y="1156" width="0.2212%" height="15" fill="rgb(215,115,40)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1166.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.22%)</title><rect x="50.4425%" y="1172" width="0.2212%" height="15" fill="rgb(222,69,34)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1182.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="50.4425%" y="1188" width="0.2212%" height="15" fill="rgb(209,161,10)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1198.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="50.4425%" y="1204" width="0.2212%" height="15" fill="rgb(217,6,38)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1214.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="50.4425%" y="1220" width="0.2212%" height="15" fill="rgb(229,229,48)" fg:x="228" fg:w="1"/><text x="50.6925%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="50.6637%" y="756" width="0.2212%" height="15" fill="rgb(225,21,28)" fg:x="229" fg:w="1"/><text x="50.9137%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="50.6637%" y="772" width="0.2212%" height="15" fill="rgb(206,33,13)" fg:x="229" fg:w="1"/><text x="50.9137%" y="782.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="50.6637%" y="788" width="0.2212%" height="15" fill="rgb(242,178,17)" fg:x="229" fg:w="1"/><text x="50.9137%" y="798.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (17 samples, 3.76%)</title><rect x="49.5575%" y="500" width="3.7611%" height="15" fill="rgb(220,162,5)" fg:x="224" fg:w="17"/><text x="49.8075%" y="510.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 3.76%)</title><rect x="49.5575%" y="516" width="3.7611%" height="15" fill="rgb(210,33,43)" fg:x="224" fg:w="17"/><text x="49.8075%" y="526.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 3.76%)</title><rect x="49.5575%" y="532" width="3.7611%" height="15" fill="rgb(216,116,54)" fg:x="224" fg:w="17"/><text x="49.8075%" y="542.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 3.76%)</title><rect x="49.5575%" y="548" width="3.7611%" height="15" fill="rgb(249,92,24)" fg:x="224" fg:w="17"/><text x="49.8075%" y="558.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 3.76%)</title><rect x="49.5575%" y="564" width="3.7611%" height="15" fill="rgb(231,189,14)" fg:x="224" fg:w="17"/><text x="49.8075%" y="574.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 3.76%)</title><rect x="49.5575%" y="580" width="3.7611%" height="15" fill="rgb(230,8,41)" fg:x="224" fg:w="17"/><text x="49.8075%" y="590.50">_cal..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (15 samples, 3.32%)</title><rect x="50.0000%" y="596" width="3.3186%" height="15" fill="rgb(249,7,27)" fg:x="226" fg:w="15"/><text x="50.2500%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="50.0000%" y="612" width="3.3186%" height="15" fill="rgb(232,86,5)" fg:x="226" fg:w="15"/><text x="50.2500%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="50.0000%" y="628" width="3.3186%" height="15" fill="rgb(224,175,18)" fg:x="226" fg:w="15"/><text x="50.2500%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="50.0000%" y="644" width="3.3186%" height="15" fill="rgb(220,129,12)" fg:x="226" fg:w="15"/><text x="50.2500%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 3.32%)</title><rect x="50.0000%" y="660" width="3.3186%" height="15" fill="rgb(210,19,36)" fg:x="226" fg:w="15"/><text x="50.2500%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 3.32%)</title><rect x="50.0000%" y="676" width="3.3186%" height="15" fill="rgb(219,96,14)" fg:x="226" fg:w="15"/><text x="50.2500%" y="686.50">_ca..</text></g><g><title><module> (pyarrow/__init__.py:20) (15 samples, 3.32%)</title><rect x="50.0000%" y="692" width="3.3186%" height="15" fill="rgb(249,106,1)" fg:x="226" fg:w="15"/><text x="50.2500%" y="702.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 3.32%)</title><rect x="50.0000%" y="708" width="3.3186%" height="15" fill="rgb(249,155,20)" fg:x="226" fg:w="15"/><text x="50.2500%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 3.32%)</title><rect x="50.0000%" y="724" width="3.3186%" height="15" fill="rgb(244,168,9)" fg:x="226" fg:w="15"/><text x="50.2500%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 3.32%)</title><rect x="50.0000%" y="740" width="3.3186%" height="15" fill="rgb(216,23,50)" fg:x="226" fg:w="15"/><text x="50.2500%" y="750.50">_lo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (11 samples, 2.43%)</title><rect x="50.8850%" y="756" width="2.4336%" height="15" fill="rgb(224,219,20)" fg:x="230" fg:w="11"/><text x="51.1350%" y="766.50">mo..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (11 samples, 2.43%)</title><rect x="50.8850%" y="772" width="2.4336%" height="15" fill="rgb(222,156,15)" fg:x="230" fg:w="11"/><text x="51.1350%" y="782.50">cr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="50.8850%" y="788" width="2.4336%" height="15" fill="rgb(231,97,17)" fg:x="230" fg:w="11"/><text x="51.1350%" y="798.50">_c..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.22%)</title><rect x="53.5398%" y="1284" width="0.2212%" height="15" fill="rgb(218,70,48)" fg:x="242" fg:w="1"/><text x="53.7898%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="53.5398%" y="1300" width="0.2212%" height="15" fill="rgb(212,196,52)" fg:x="242" fg:w="1"/><text x="53.7898%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="53.3186%" y="1156" width="0.6637%" height="15" fill="rgb(243,203,18)" fg:x="241" fg:w="3"/><text x="53.5686%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="53.3186%" y="1172" width="0.6637%" height="15" fill="rgb(252,125,41)" fg:x="241" fg:w="3"/><text x="53.5686%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="53.3186%" y="1188" width="0.6637%" height="15" fill="rgb(223,180,33)" fg:x="241" fg:w="3"/><text x="53.5686%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.66%)</title><rect x="53.3186%" y="1204" width="0.6637%" height="15" fill="rgb(254,159,46)" fg:x="241" fg:w="3"/><text x="53.5686%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="53.3186%" y="1220" width="0.6637%" height="15" fill="rgb(254,38,10)" fg:x="241" fg:w="3"/><text x="53.5686%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="53.5398%" y="1236" width="0.4425%" height="15" fill="rgb(208,217,32)" fg:x="242" fg:w="2"/><text x="53.7898%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="53.5398%" y="1252" width="0.4425%" height="15" fill="rgb(221,120,13)" fg:x="242" fg:w="2"/><text x="53.7898%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="53.5398%" y="1268" width="0.4425%" height="15" fill="rgb(246,54,52)" fg:x="242" fg:w="2"/><text x="53.7898%" y="1278.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="53.7611%" y="1284" width="0.2212%" height="15" fill="rgb(242,34,25)" fg:x="243" fg:w="1"/><text x="54.0111%" y="1294.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="53.7611%" y="1300" width="0.2212%" height="15" fill="rgb(247,209,9)" fg:x="243" fg:w="1"/><text x="54.0111%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="53.7611%" y="1316" width="0.2212%" height="15" fill="rgb(228,71,26)" fg:x="243" fg:w="1"/><text x="54.0111%" y="1326.50"></text></g><g><title>_combine_flags (sre_compile.py:81) (1 samples, 0.22%)</title><rect x="54.2035%" y="1236" width="0.2212%" height="15" fill="rgb(222,145,49)" fg:x="245" fg:w="1"/><text x="54.4535%" y="1246.50"></text></g><g><title>_compile (sre_compile.py:87) (2 samples, 0.44%)</title><rect x="54.6460%" y="1268" width="0.4425%" height="15" fill="rgb(218,121,17)" fg:x="247" fg:w="2"/><text x="54.8960%" y="1278.50"></text></g><g><title>_compile (sre_compile.py:87) (2 samples, 0.44%)</title><rect x="54.6460%" y="1284" width="0.4425%" height="15" fill="rgb(244,50,7)" fg:x="247" fg:w="2"/><text x="54.8960%" y="1294.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (2 samples, 0.44%)</title><rect x="54.6460%" y="1300" width="0.4425%" height="15" fill="rgb(246,229,37)" fg:x="247" fg:w="2"/><text x="54.8960%" y="1310.50"></text></g><g><title>_mk_bitmap (sre_compile.py:435) (1 samples, 0.22%)</title><rect x="54.8673%" y="1316" width="0.2212%" height="15" fill="rgb(225,18,5)" fg:x="248" fg:w="1"/><text x="55.1173%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (9 samples, 1.99%)</title><rect x="53.3186%" y="1044" width="1.9912%" height="15" fill="rgb(213,204,8)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1054.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="53.3186%" y="1060" width="1.9912%" height="15" fill="rgb(238,103,6)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1070.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="53.3186%" y="1076" width="1.9912%" height="15" fill="rgb(222,25,35)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1086.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="53.3186%" y="1092" width="1.9912%" height="15" fill="rgb(213,203,35)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1102.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="53.3186%" y="1108" width="1.9912%" height="15" fill="rgb(221,79,53)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1118.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (9 samples, 1.99%)</title><rect x="53.3186%" y="1124" width="1.9912%" height="15" fill="rgb(243,200,35)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1134.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="53.3186%" y="1140" width="1.9912%" height="15" fill="rgb(248,60,25)" fg:x="241" fg:w="9"/><text x="53.5686%" y="1150.50">_..</text></g><g><title>compile (re.py:250) (6 samples, 1.33%)</title><rect x="53.9823%" y="1156" width="1.3274%" height="15" fill="rgb(227,53,46)" fg:x="244" fg:w="6"/><text x="54.2323%" y="1166.50"></text></g><g><title>_compile (re.py:289) (6 samples, 1.33%)</title><rect x="53.9823%" y="1172" width="1.3274%" height="15" fill="rgb(216,120,32)" fg:x="244" fg:w="6"/><text x="54.2323%" y="1182.50"></text></g><g><title>compile (sre_compile.py:783) (6 samples, 1.33%)</title><rect x="53.9823%" y="1188" width="1.3274%" height="15" fill="rgb(220,134,1)" fg:x="244" fg:w="6"/><text x="54.2323%" y="1198.50"></text></g><g><title>_code (sre_compile.py:622) (6 samples, 1.33%)</title><rect x="53.9823%" y="1204" width="1.3274%" height="15" fill="rgb(237,168,5)" fg:x="244" fg:w="6"/><text x="54.2323%" y="1214.50"></text></g><g><title>_compile (sre_compile.py:87) (6 samples, 1.33%)</title><rect x="53.9823%" y="1220" width="1.3274%" height="15" fill="rgb(231,100,33)" fg:x="244" fg:w="6"/><text x="54.2323%" y="1230.50"></text></g><g><title>_compile (sre_compile.py:87) (4 samples, 0.88%)</title><rect x="54.4248%" y="1236" width="0.8850%" height="15" fill="rgb(236,177,47)" fg:x="246" fg:w="4"/><text x="54.6748%" y="1246.50"></text></g><g><title>_compile (sre_compile.py:87) (3 samples, 0.66%)</title><rect x="54.6460%" y="1252" width="0.6637%" height="15" fill="rgb(235,7,49)" fg:x="247" fg:w="3"/><text x="54.8960%" y="1262.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.22%)</title><rect x="55.0885%" y="1268" width="0.2212%" height="15" fill="rgb(232,119,22)" fg:x="249" fg:w="1"/><text x="55.3385%" y="1278.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (10 samples, 2.21%)</title><rect x="53.3186%" y="596" width="2.2124%" height="15" fill="rgb(254,73,53)" fg:x="241" fg:w="10"/><text x="53.5686%" y="606.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="612" width="2.2124%" height="15" fill="rgb(251,35,20)" fg:x="241" fg:w="10"/><text x="53.5686%" y="622.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="628" width="2.2124%" height="15" fill="rgb(241,119,20)" fg:x="241" fg:w="10"/><text x="53.5686%" y="638.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="53.3186%" y="644" width="2.2124%" height="15" fill="rgb(207,102,14)" fg:x="241" fg:w="10"/><text x="53.5686%" y="654.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (10 samples, 2.21%)</title><rect x="53.3186%" y="660" width="2.2124%" height="15" fill="rgb(248,201,50)" fg:x="241" fg:w="10"/><text x="53.5686%" y="670.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="53.3186%" y="676" width="2.2124%" height="15" fill="rgb(222,185,44)" fg:x="241" fg:w="10"/><text x="53.5686%" y="686.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="692" width="2.2124%" height="15" fill="rgb(218,107,18)" fg:x="241" fg:w="10"/><text x="53.5686%" y="702.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="708" width="2.2124%" height="15" fill="rgb(237,177,39)" fg:x="241" fg:w="10"/><text x="53.5686%" y="718.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="53.3186%" y="724" width="2.2124%" height="15" fill="rgb(246,69,6)" fg:x="241" fg:w="10"/><text x="53.5686%" y="734.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (10 samples, 2.21%)</title><rect x="53.3186%" y="740" width="2.2124%" height="15" fill="rgb(234,208,37)" fg:x="241" fg:w="10"/><text x="53.5686%" y="750.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="53.3186%" y="756" width="2.2124%" height="15" fill="rgb(225,4,6)" fg:x="241" fg:w="10"/><text x="53.5686%" y="766.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="772" width="2.2124%" height="15" fill="rgb(233,45,0)" fg:x="241" fg:w="10"/><text x="53.5686%" y="782.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="788" width="2.2124%" height="15" fill="rgb(226,136,5)" fg:x="241" fg:w="10"/><text x="53.5686%" y="798.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="53.3186%" y="804" width="2.2124%" height="15" fill="rgb(211,91,47)" fg:x="241" fg:w="10"/><text x="53.5686%" y="814.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (10 samples, 2.21%)</title><rect x="53.3186%" y="820" width="2.2124%" height="15" fill="rgb(242,88,51)" fg:x="241" fg:w="10"/><text x="53.5686%" y="830.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="53.3186%" y="836" width="2.2124%" height="15" fill="rgb(230,91,28)" fg:x="241" fg:w="10"/><text x="53.5686%" y="846.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="852" width="2.2124%" height="15" fill="rgb(254,186,29)" fg:x="241" fg:w="10"/><text x="53.5686%" y="862.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="868" width="2.2124%" height="15" fill="rgb(238,6,4)" fg:x="241" fg:w="10"/><text x="53.5686%" y="878.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="53.3186%" y="884" width="2.2124%" height="15" fill="rgb(221,151,16)" fg:x="241" fg:w="10"/><text x="53.5686%" y="894.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="900" width="2.2124%" height="15" fill="rgb(251,143,52)" fg:x="241" fg:w="10"/><text x="53.5686%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="916" width="2.2124%" height="15" fill="rgb(206,90,15)" fg:x="241" fg:w="10"/><text x="53.5686%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="53.3186%" y="932" width="2.2124%" height="15" fill="rgb(218,35,8)" fg:x="241" fg:w="10"/><text x="53.5686%" y="942.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.21%)</title><rect x="53.3186%" y="948" width="2.2124%" height="15" fill="rgb(239,215,6)" fg:x="241" fg:w="10"/><text x="53.5686%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="53.3186%" y="964" width="2.2124%" height="15" fill="rgb(245,116,39)" fg:x="241" fg:w="10"/><text x="53.5686%" y="974.50">_..</text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (10 samples, 2.21%)</title><rect x="53.3186%" y="980" width="2.2124%" height="15" fill="rgb(242,65,28)" fg:x="241" fg:w="10"/><text x="53.5686%" y="990.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 2.21%)</title><rect x="53.3186%" y="996" width="2.2124%" height="15" fill="rgb(252,132,53)" fg:x="241" fg:w="10"/><text x="53.5686%" y="1006.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 2.21%)</title><rect x="53.3186%" y="1012" width="2.2124%" height="15" fill="rgb(224,159,50)" fg:x="241" fg:w="10"/><text x="53.5686%" y="1022.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="53.3186%" y="1028" width="2.2124%" height="15" fill="rgb(224,93,4)" fg:x="241" fg:w="10"/><text x="53.5686%" y="1038.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="55.3097%" y="1044" width="0.2212%" height="15" fill="rgb(208,81,34)" fg:x="250" fg:w="1"/><text x="55.5597%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="55.3097%" y="1060" width="0.2212%" height="15" fill="rgb(233,92,54)" fg:x="250" fg:w="1"/><text x="55.5597%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="55.3097%" y="1076" width="0.2212%" height="15" fill="rgb(237,21,14)" fg:x="250" fg:w="1"/><text x="55.5597%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="55.5310%" y="996" width="0.4425%" height="15" fill="rgb(249,128,51)" fg:x="251" fg:w="2"/><text x="55.7810%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="55.5310%" y="1012" width="0.4425%" height="15" fill="rgb(223,129,24)" fg:x="251" fg:w="2"/><text x="55.7810%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="55.5310%" y="1028" width="0.4425%" height="15" fill="rgb(231,168,25)" fg:x="251" fg:w="2"/><text x="55.7810%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.44%)</title><rect x="55.5310%" y="1044" width="0.4425%" height="15" fill="rgb(224,39,20)" fg:x="251" fg:w="2"/><text x="55.7810%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="55.5310%" y="1060" width="0.4425%" height="15" fill="rgb(225,152,53)" fg:x="251" fg:w="2"/><text x="55.7810%" y="1070.50"></text></g><g><title>_parse_param_list (pyarrow/vendored/docscrape.py:228) (1 samples, 0.22%)</title><rect x="56.1947%" y="1092" width="0.2212%" height="15" fill="rgb(252,17,24)" fg:x="254" fg:w="1"/><text x="56.4447%" y="1102.50"></text></g><g><title>dedent_lines (pyarrow/vendored/docscrape.py:558) (1 samples, 0.22%)</title><rect x="56.1947%" y="1108" width="0.2212%" height="15" fill="rgb(250,114,30)" fg:x="254" fg:w="1"/><text x="56.4447%" y="1118.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.22%)</title><rect x="56.1947%" y="1124" width="0.2212%" height="15" fill="rgb(229,5,4)" fg:x="254" fg:w="1"/><text x="56.4447%" y="1134.50"></text></g><g><title>_parse (pyarrow/vendored/docscrape.py:384) (2 samples, 0.44%)</title><rect x="56.1947%" y="1076" width="0.4425%" height="15" fill="rgb(225,176,49)" fg:x="254" fg:w="2"/><text x="56.4447%" y="1086.50"></text></g><g><title>_read_sections (pyarrow/vendored/docscrape.py:216) (1 samples, 0.22%)</title><rect x="56.4159%" y="1092" width="0.2212%" height="15" fill="rgb(224,221,49)" fg:x="255" fg:w="1"/><text x="56.6659%" y="1102.50"></text></g><g><title>_read_to_next_section (pyarrow/vendored/docscrape.py:205) (1 samples, 0.22%)</title><rect x="56.4159%" y="1108" width="0.2212%" height="15" fill="rgb(253,169,27)" fg:x="255" fg:w="1"/><text x="56.6659%" y="1118.50"></text></g><g><title>_is_at_section (pyarrow/vendored/docscrape.py:174) (1 samples, 0.22%)</title><rect x="56.4159%" y="1124" width="0.2212%" height="15" fill="rgb(211,206,16)" fg:x="255" fg:w="1"/><text x="56.6659%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="55.5310%" y="772" width="1.3274%" height="15" fill="rgb(244,87,35)" fg:x="251" fg:w="6"/><text x="55.7810%" y="782.50"></text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (6 samples, 1.33%)</title><rect x="55.5310%" y="788" width="1.3274%" height="15" fill="rgb(246,28,10)" fg:x="251" fg:w="6"/><text x="55.7810%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="55.5310%" y="804" width="1.3274%" height="15" fill="rgb(229,12,44)" fg:x="251" fg:w="6"/><text x="55.7810%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="55.5310%" y="820" width="1.3274%" height="15" fill="rgb(210,145,37)" fg:x="251" fg:w="6"/><text x="55.7810%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="55.5310%" y="836" width="1.3274%" height="15" fill="rgb(227,112,52)" fg:x="251" fg:w="6"/><text x="55.7810%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="55.5310%" y="852" width="1.3274%" height="15" fill="rgb(238,155,34)" fg:x="251" fg:w="6"/><text x="55.7810%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="55.5310%" y="868" width="1.3274%" height="15" fill="rgb(239,226,36)" fg:x="251" fg:w="6"/><text x="55.7810%" y="878.50"></text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (6 samples, 1.33%)</title><rect x="55.5310%" y="884" width="1.3274%" height="15" fill="rgb(230,16,23)" fg:x="251" fg:w="6"/><text x="55.7810%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 1.33%)</title><rect x="55.5310%" y="900" width="1.3274%" height="15" fill="rgb(236,171,36)" fg:x="251" fg:w="6"/><text x="55.7810%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="55.5310%" y="916" width="1.3274%" height="15" fill="rgb(221,22,14)" fg:x="251" fg:w="6"/><text x="55.7810%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="55.5310%" y="932" width="1.3274%" height="15" fill="rgb(242,43,11)" fg:x="251" fg:w="6"/><text x="55.7810%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="55.5310%" y="948" width="1.3274%" height="15" fill="rgb(232,69,23)" fg:x="251" fg:w="6"/><text x="55.7810%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="55.5310%" y="964" width="1.3274%" height="15" fill="rgb(216,180,54)" fg:x="251" fg:w="6"/><text x="55.7810%" y="974.50"></text></g><g><title><module> (pyarrow/compute.py:18) (6 samples, 1.33%)</title><rect x="55.5310%" y="980" width="1.3274%" height="15" fill="rgb(216,5,24)" fg:x="251" fg:w="6"/><text x="55.7810%" y="990.50"></text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (4 samples, 0.88%)</title><rect x="55.9735%" y="996" width="0.8850%" height="15" fill="rgb(225,89,9)" fg:x="253" fg:w="4"/><text x="56.2235%" y="1006.50"></text></g><g><title>_wrap_function (pyarrow/compute.py:290) (3 samples, 0.66%)</title><rect x="56.1947%" y="1012" width="0.6637%" height="15" fill="rgb(243,75,33)" fg:x="254" fg:w="3"/><text x="56.4447%" y="1022.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (3 samples, 0.66%)</title><rect x="56.1947%" y="1028" width="0.6637%" height="15" fill="rgb(247,141,45)" fg:x="254" fg:w="3"/><text x="56.4447%" y="1038.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (3 samples, 0.66%)</title><rect x="56.1947%" y="1044" width="0.6637%" height="15" fill="rgb(232,177,36)" fg:x="254" fg:w="3"/><text x="56.4447%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (3 samples, 0.66%)</title><rect x="56.1947%" y="1060" width="0.6637%" height="15" fill="rgb(219,125,36)" fg:x="254" fg:w="3"/><text x="56.4447%" y="1070.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.22%)</title><rect x="56.6372%" y="1076" width="0.2212%" height="15" fill="rgb(227,94,9)" fg:x="256" fg:w="1"/><text x="56.8872%" y="1086.50"></text></g><g><title>_deepcopy_dict (copy.py:226) (1 samples, 0.22%)</title><rect x="56.6372%" y="1092" width="0.2212%" height="15" fill="rgb(240,34,52)" fg:x="256" fg:w="1"/><text x="56.8872%" y="1102.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.22%)</title><rect x="56.6372%" y="1108" width="0.2212%" height="15" fill="rgb(216,45,12)" fg:x="256" fg:w="1"/><text x="56.8872%" y="1118.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (7 samples, 1.55%)</title><rect x="55.5310%" y="692" width="1.5487%" height="15" fill="rgb(246,21,19)" fg:x="251" fg:w="7"/><text x="55.7810%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="55.5310%" y="708" width="1.5487%" height="15" fill="rgb(213,98,42)" fg:x="251" fg:w="7"/><text x="55.7810%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="55.5310%" y="724" width="1.5487%" height="15" fill="rgb(250,136,47)" fg:x="251" fg:w="7"/><text x="55.7810%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="55.5310%" y="740" width="1.5487%" height="15" fill="rgb(251,124,27)" fg:x="251" fg:w="7"/><text x="55.7810%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="55.5310%" y="756" width="1.5487%" height="15" fill="rgb(229,180,14)" fg:x="251" fg:w="7"/><text x="55.7810%" y="766.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="56.8584%" y="772" width="0.2212%" height="15" fill="rgb(245,216,25)" fg:x="257" fg:w="1"/><text x="57.1084%" y="782.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="56.8584%" y="788" width="0.2212%" height="15" fill="rgb(251,43,5)" fg:x="257" fg:w="1"/><text x="57.1084%" y="798.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (8 samples, 1.77%)</title><rect x="55.5310%" y="596" width="1.7699%" height="15" fill="rgb(250,128,24)" fg:x="251" fg:w="8"/><text x="55.7810%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="55.5310%" y="612" width="1.7699%" height="15" fill="rgb(217,117,27)" fg:x="251" fg:w="8"/><text x="55.7810%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="55.5310%" y="628" width="1.7699%" height="15" fill="rgb(245,147,4)" fg:x="251" fg:w="8"/><text x="55.7810%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="55.5310%" y="644" width="1.7699%" height="15" fill="rgb(242,201,35)" fg:x="251" fg:w="8"/><text x="55.7810%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="55.5310%" y="660" width="1.7699%" height="15" fill="rgb(218,181,1)" fg:x="251" fg:w="8"/><text x="55.7810%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="55.5310%" y="676" width="1.7699%" height="15" fill="rgb(222,6,29)" fg:x="251" fg:w="8"/><text x="55.7810%" y="686.50"></text></g><g><title><module> (pandas/core/arrays/categorical.py:1) (1 samples, 0.22%)</title><rect x="57.0796%" y="692" width="0.2212%" height="15" fill="rgb(208,186,3)" fg:x="258" fg:w="1"/><text x="57.3296%" y="702.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.22%)</title><rect x="57.0796%" y="708" width="0.2212%" height="15" fill="rgb(216,36,26)" fg:x="258" fg:w="1"/><text x="57.3296%" y="718.50"></text></g><g><title>SeriesGroupBy (pandas/core/groupby/generic.py:152) (2 samples, 0.44%)</title><rect x="57.3009%" y="708" width="0.4425%" height="15" fill="rgb(248,201,23)" fg:x="259" fg:w="2"/><text x="57.5509%" y="718.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (2 samples, 0.44%)</title><rect x="57.3009%" y="724" width="0.4425%" height="15" fill="rgb(251,170,31)" fg:x="259" fg:w="2"/><text x="57.5509%" y="734.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (2 samples, 0.44%)</title><rect x="57.3009%" y="740" width="0.4425%" height="15" fill="rgb(207,110,25)" fg:x="259" fg:w="2"/><text x="57.5509%" y="750.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.44%)</title><rect x="57.3009%" y="756" width="0.4425%" height="15" fill="rgb(250,54,15)" fg:x="259" fg:w="2"/><text x="57.5509%" y="766.50"></text></g><g><title>sub (re.py:203) (2 samples, 0.44%)</title><rect x="57.3009%" y="772" width="0.4425%" height="15" fill="rgb(227,68,33)" fg:x="259" fg:w="2"/><text x="57.5509%" y="782.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (1 samples, 0.22%)</title><rect x="57.7434%" y="804" width="0.2212%" height="15" fill="rgb(238,34,41)" fg:x="261" fg:w="1"/><text x="57.9934%" y="814.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.22%)</title><rect x="57.7434%" y="820" width="0.2212%" height="15" fill="rgb(220,11,15)" fg:x="261" fg:w="1"/><text x="57.9934%" y="830.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (1 samples, 0.22%)</title><rect x="57.9646%" y="900" width="0.2212%" height="15" fill="rgb(246,111,35)" fg:x="262" fg:w="1"/><text x="58.2146%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="58.1858%" y="900" width="0.6637%" height="15" fill="rgb(209,88,53)" fg:x="263" fg:w="3"/><text x="58.4358%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="58.1858%" y="916" width="0.6637%" height="15" fill="rgb(231,185,47)" fg:x="263" fg:w="3"/><text x="58.4358%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="58.1858%" y="932" width="0.6637%" height="15" fill="rgb(233,154,1)" fg:x="263" fg:w="3"/><text x="58.4358%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="58.1858%" y="948" width="0.6637%" height="15" fill="rgb(225,15,46)" fg:x="263" fg:w="3"/><text x="58.4358%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="58.1858%" y="964" width="0.6637%" height="15" fill="rgb(211,135,41)" fg:x="263" fg:w="3"/><text x="58.4358%" y="974.50"></text></g><g><title><module> (pandas/core/internals/__init__.py:1) (3 samples, 0.66%)</title><rect x="58.1858%" y="980" width="0.6637%" height="15" fill="rgb(208,54,0)" fg:x="263" fg:w="3"/><text x="58.4358%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="58.1858%" y="996" width="0.6637%" height="15" fill="rgb(244,136,14)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="58.1858%" y="1012" width="0.6637%" height="15" fill="rgb(241,56,14)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="58.1858%" y="1028" width="0.6637%" height="15" fill="rgb(205,80,24)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="58.1858%" y="1044" width="0.6637%" height="15" fill="rgb(220,57,4)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="58.1858%" y="1060" width="0.6637%" height="15" fill="rgb(226,193,50)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1070.50"></text></g><g><title><module> (pandas/core/internals/api.py:1) (3 samples, 0.66%)</title><rect x="58.1858%" y="1076" width="0.6637%" height="15" fill="rgb(231,168,22)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="58.1858%" y="1092" width="0.6637%" height="15" fill="rgb(254,215,14)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="58.1858%" y="1108" width="0.6637%" height="15" fill="rgb(211,115,16)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="58.1858%" y="1124" width="0.6637%" height="15" fill="rgb(236,210,16)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="58.1858%" y="1140" width="0.6637%" height="15" fill="rgb(221,94,12)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="58.1858%" y="1156" width="0.6637%" height="15" fill="rgb(235,218,49)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1166.50"></text></g><g><title><module> (pandas/core/internals/blocks.py:1) (3 samples, 0.66%)</title><rect x="58.1858%" y="1172" width="0.6637%" height="15" fill="rgb(217,114,14)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="58.1858%" y="1188" width="0.6637%" height="15" fill="rgb(216,145,22)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="58.1858%" y="1204" width="0.6637%" height="15" fill="rgb(217,112,39)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="58.1858%" y="1220" width="0.6637%" height="15" fill="rgb(225,85,32)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="58.1858%" y="1236" width="0.6637%" height="15" fill="rgb(245,209,47)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="58.1858%" y="1252" width="0.6637%" height="15" fill="rgb(218,220,15)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1262.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.66%)</title><rect x="58.1858%" y="1268" width="0.6637%" height="15" fill="rgb(222,202,31)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1278.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.66%)</title><rect x="58.1858%" y="1284" width="0.6637%" height="15" fill="rgb(243,203,4)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="58.1858%" y="1300" width="0.6637%" height="15" fill="rgb(237,92,17)" fg:x="263" fg:w="3"/><text x="58.4358%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.22%)</title><rect x="58.8496%" y="1268" width="0.2212%" height="15" fill="rgb(231,119,7)" fg:x="266" fg:w="1"/><text x="59.0996%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="58.8496%" y="1284" width="0.2212%" height="15" fill="rgb(237,82,41)" fg:x="266" fg:w="1"/><text x="59.0996%" y="1294.50"></text></g><g><title><module> (pandas/core/generic.py:2) (6 samples, 1.33%)</title><rect x="57.9646%" y="884" width="1.3274%" height="15" fill="rgb(226,81,48)" fg:x="262" fg:w="6"/><text x="58.2146%" y="894.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="58.8496%" y="900" width="0.4425%" height="15" fill="rgb(234,70,51)" fg:x="266" fg:w="2"/><text x="59.0996%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="58.8496%" y="916" width="0.4425%" height="15" fill="rgb(251,86,4)" fg:x="266" fg:w="2"/><text x="59.0996%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="58.8496%" y="932" width="0.4425%" height="15" fill="rgb(244,144,28)" fg:x="266" fg:w="2"/><text x="59.0996%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="58.8496%" y="948" width="0.4425%" height="15" fill="rgb(232,161,39)" fg:x="266" fg:w="2"/><text x="59.0996%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="58.8496%" y="964" width="0.4425%" height="15" fill="rgb(247,34,51)" fg:x="266" fg:w="2"/><text x="59.0996%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="58.8496%" y="980" width="0.4425%" height="15" fill="rgb(225,132,2)" fg:x="266" fg:w="2"/><text x="59.0996%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="58.8496%" y="996" width="0.4425%" height="15" fill="rgb(209,159,44)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (2 samples, 0.44%)</title><rect x="58.8496%" y="1012" width="0.4425%" height="15" fill="rgb(251,214,1)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="58.8496%" y="1028" width="0.4425%" height="15" fill="rgb(247,84,47)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="58.8496%" y="1044" width="0.4425%" height="15" fill="rgb(240,111,43)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="58.8496%" y="1060" width="0.4425%" height="15" fill="rgb(215,214,35)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="58.8496%" y="1076" width="0.4425%" height="15" fill="rgb(248,207,23)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="58.8496%" y="1092" width="0.4425%" height="15" fill="rgb(214,186,4)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (2 samples, 0.44%)</title><rect x="58.8496%" y="1108" width="0.4425%" height="15" fill="rgb(220,133,22)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="58.8496%" y="1124" width="0.4425%" height="15" fill="rgb(239,134,19)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="58.8496%" y="1140" width="0.4425%" height="15" fill="rgb(250,140,9)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="58.8496%" y="1156" width="0.4425%" height="15" fill="rgb(225,59,14)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="58.8496%" y="1172" width="0.4425%" height="15" fill="rgb(214,152,51)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="58.8496%" y="1188" width="0.4425%" height="15" fill="rgb(251,227,43)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/base.py:1) (2 samples, 0.44%)</title><rect x="58.8496%" y="1204" width="0.4425%" height="15" fill="rgb(241,96,17)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="58.8496%" y="1220" width="0.4425%" height="15" fill="rgb(234,198,43)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="58.8496%" y="1236" width="0.4425%" height="15" fill="rgb(220,108,29)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="58.8496%" y="1252" width="0.4425%" height="15" fill="rgb(226,163,33)" fg:x="266" fg:w="2"/><text x="59.0996%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="59.0708%" y="1268" width="0.2212%" height="15" fill="rgb(205,194,45)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="59.0708%" y="1284" width="0.2212%" height="15" fill="rgb(206,143,44)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1294.50"></text></g><g><title><module> (pandas/core/strings/accessor.py:1) (1 samples, 0.22%)</title><rect x="59.0708%" y="1300" width="0.2212%" height="15" fill="rgb(236,136,36)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1310.50"></text></g><g><title>StringMethods (pandas/core/strings/accessor.py:156) (1 samples, 0.22%)</title><rect x="59.0708%" y="1316" width="0.2212%" height="15" fill="rgb(249,172,42)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1326.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.22%)</title><rect x="59.0708%" y="1332" width="0.2212%" height="15" fill="rgb(216,139,23)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1342.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.22%)</title><rect x="59.0708%" y="1348" width="0.2212%" height="15" fill="rgb(207,166,20)" fg:x="267" fg:w="1"/><text x="59.3208%" y="1358.50"></text></g><g><title><module> (pandas/core/api.py:1) (29 samples, 6.42%)</title><rect x="53.3186%" y="500" width="6.4159%" height="15" fill="rgb(210,209,22)" fg:x="241" fg:w="29"/><text x="53.5686%" y="510.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (29 samples, 6.42%)</title><rect x="53.3186%" y="516" width="6.4159%" height="15" fill="rgb(232,118,20)" fg:x="241" fg:w="29"/><text x="53.5686%" y="526.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (29 samples, 6.42%)</title><rect x="53.3186%" y="532" width="6.4159%" height="15" fill="rgb(238,113,42)" fg:x="241" fg:w="29"/><text x="53.5686%" y="542.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (29 samples, 6.42%)</title><rect x="53.3186%" y="548" width="6.4159%" height="15" fill="rgb(231,42,5)" fg:x="241" fg:w="29"/><text x="53.5686%" y="558.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (29 samples, 6.42%)</title><rect x="53.3186%" y="564" width="6.4159%" height="15" fill="rgb(243,166,24)" fg:x="241" fg:w="29"/><text x="53.5686%" y="574.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (29 samples, 6.42%)</title><rect x="53.3186%" y="580" width="6.4159%" height="15" fill="rgb(237,226,12)" fg:x="241" fg:w="29"/><text x="53.5686%" y="590.50">_call_wi..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (11 samples, 2.43%)</title><rect x="57.3009%" y="596" width="2.4336%" height="15" fill="rgb(229,133,24)" fg:x="259" fg:w="11"/><text x="57.5509%" y="606.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="57.3009%" y="612" width="2.4336%" height="15" fill="rgb(238,33,43)" fg:x="259" fg:w="11"/><text x="57.5509%" y="622.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="57.3009%" y="628" width="2.4336%" height="15" fill="rgb(227,59,38)" fg:x="259" fg:w="11"/><text x="57.5509%" y="638.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 2.43%)</title><rect x="57.3009%" y="644" width="2.4336%" height="15" fill="rgb(230,97,0)" fg:x="259" fg:w="11"/><text x="57.5509%" y="654.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 2.43%)</title><rect x="57.3009%" y="660" width="2.4336%" height="15" fill="rgb(250,173,50)" fg:x="259" fg:w="11"/><text x="57.5509%" y="670.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="57.3009%" y="676" width="2.4336%" height="15" fill="rgb(240,15,50)" fg:x="259" fg:w="11"/><text x="57.5509%" y="686.50">_c..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (11 samples, 2.43%)</title><rect x="57.3009%" y="692" width="2.4336%" height="15" fill="rgb(221,93,22)" fg:x="259" fg:w="11"/><text x="57.5509%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="57.7434%" y="708" width="1.9912%" height="15" fill="rgb(245,180,53)" fg:x="261" fg:w="9"/><text x="57.9934%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="57.7434%" y="724" width="1.9912%" height="15" fill="rgb(231,88,51)" fg:x="261" fg:w="9"/><text x="57.9934%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="57.7434%" y="740" width="1.9912%" height="15" fill="rgb(240,58,21)" fg:x="261" fg:w="9"/><text x="57.9934%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.99%)</title><rect x="57.7434%" y="756" width="1.9912%" height="15" fill="rgb(237,21,10)" fg:x="261" fg:w="9"/><text x="57.9934%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="57.7434%" y="772" width="1.9912%" height="15" fill="rgb(218,43,11)" fg:x="261" fg:w="9"/><text x="57.9934%" y="782.50">_..</text></g><g><title><module> (pandas/core/frame.py:1) (9 samples, 1.99%)</title><rect x="57.7434%" y="788" width="1.9912%" height="15" fill="rgb(218,221,29)" fg:x="261" fg:w="9"/><text x="57.9934%" y="798.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="57.9646%" y="804" width="1.7699%" height="15" fill="rgb(214,118,42)" fg:x="262" fg:w="8"/><text x="58.2146%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="57.9646%" y="820" width="1.7699%" height="15" fill="rgb(251,200,26)" fg:x="262" fg:w="8"/><text x="58.2146%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="57.9646%" y="836" width="1.7699%" height="15" fill="rgb(237,101,39)" fg:x="262" fg:w="8"/><text x="58.2146%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="57.9646%" y="852" width="1.7699%" height="15" fill="rgb(251,117,11)" fg:x="262" fg:w="8"/><text x="58.2146%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="57.9646%" y="868" width="1.7699%" height="15" fill="rgb(216,223,23)" fg:x="262" fg:w="8"/><text x="58.2146%" y="878.50"></text></g><g><title><module> (pandas/core/series.py:1) (2 samples, 0.44%)</title><rect x="59.2920%" y="884" width="0.4425%" height="15" fill="rgb(251,54,12)" fg:x="268" fg:w="2"/><text x="59.5420%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="59.2920%" y="900" width="0.4425%" height="15" fill="rgb(254,176,54)" fg:x="268" fg:w="2"/><text x="59.5420%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="59.2920%" y="916" width="0.4425%" height="15" fill="rgb(210,32,8)" fg:x="268" fg:w="2"/><text x="59.5420%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="59.2920%" y="932" width="0.4425%" height="15" fill="rgb(235,52,38)" fg:x="268" fg:w="2"/><text x="59.5420%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="59.2920%" y="948" width="0.4425%" height="15" fill="rgb(231,4,44)" fg:x="268" fg:w="2"/><text x="59.5420%" y="958.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.44%)</title><rect x="59.2920%" y="964" width="0.4425%" height="15" fill="rgb(249,2,32)" fg:x="268" fg:w="2"/><text x="59.5420%" y="974.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 0.44%)</title><rect x="59.2920%" y="980" width="0.4425%" height="15" fill="rgb(224,65,26)" fg:x="268" fg:w="2"/><text x="59.5420%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (49 samples, 10.84%)</title><rect x="49.1150%" y="420" width="10.8407%" height="15" fill="rgb(250,73,40)" fg:x="222" fg:w="49"/><text x="49.3650%" y="430.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (49 samples, 10.84%)</title><rect x="49.1150%" y="436" width="10.8407%" height="15" fill="rgb(253,177,16)" fg:x="222" fg:w="49"/><text x="49.3650%" y="446.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (47 samples, 10.40%)</title><rect x="49.5575%" y="452" width="10.3982%" height="15" fill="rgb(217,32,34)" fg:x="224" fg:w="47"/><text x="49.8075%" y="462.50">_load_unlocked ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (47 samples, 10.40%)</title><rect x="49.5575%" y="468" width="10.3982%" height="15" fill="rgb(212,7,10)" fg:x="224" fg:w="47"/><text x="49.8075%" y="478.50">exec_module (<f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (47 samples, 10.40%)</title><rect x="49.5575%" y="484" width="10.3982%" height="15" fill="rgb(245,89,8)" fg:x="224" fg:w="47"/><text x="49.8075%" y="494.50">_call_with_fram..</text></g><g><title><module> (pandas/core/reshape/api.py:1) (1 samples, 0.22%)</title><rect x="59.7345%" y="500" width="0.2212%" height="15" fill="rgb(237,16,53)" fg:x="270" fg:w="1"/><text x="59.9845%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="59.7345%" y="516" width="0.2212%" height="15" fill="rgb(250,204,30)" fg:x="270" fg:w="1"/><text x="59.9845%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="59.7345%" y="532" width="0.2212%" height="15" fill="rgb(208,77,27)" fg:x="270" fg:w="1"/><text x="59.9845%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="59.7345%" y="548" width="0.2212%" height="15" fill="rgb(250,204,28)" fg:x="270" fg:w="1"/><text x="59.9845%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="59.7345%" y="564" width="0.2212%" height="15" fill="rgb(244,63,21)" fg:x="270" fg:w="1"/><text x="59.9845%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="59.7345%" y="580" width="0.2212%" height="15" fill="rgb(236,85,44)" fg:x="270" fg:w="1"/><text x="59.9845%" y="590.50"></text></g><g><title><module> (pandas/core/reshape/merge.py:1) (1 samples, 0.22%)</title><rect x="59.7345%" y="596" width="0.2212%" height="15" fill="rgb(215,98,4)" fg:x="270" fg:w="1"/><text x="59.9845%" y="606.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.22%)</title><rect x="59.7345%" y="612" width="0.2212%" height="15" fill="rgb(235,38,11)" fg:x="270" fg:w="1"/><text x="59.9845%" y="622.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.22%)</title><rect x="59.7345%" y="628" width="0.2212%" height="15" fill="rgb(254,186,25)" fg:x="270" fg:w="1"/><text x="59.9845%" y="638.50"></text></g><g><title><module> (pandas/__init__.py:1) (50 samples, 11.06%)</title><rect x="49.1150%" y="404" width="11.0619%" height="15" fill="rgb(225,55,31)" fg:x="222" fg:w="50"/><text x="49.3650%" y="414.50"><module> (pandas..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="59.9558%" y="420" width="0.2212%" height="15" fill="rgb(211,15,21)" fg:x="271" fg:w="1"/><text x="60.2058%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="59.9558%" y="436" width="0.2212%" height="15" fill="rgb(215,187,41)" fg:x="271" fg:w="1"/><text x="60.2058%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="59.9558%" y="452" width="0.2212%" height="15" fill="rgb(248,69,32)" fg:x="271" fg:w="1"/><text x="60.2058%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="59.9558%" y="468" width="0.2212%" height="15" fill="rgb(252,102,52)" fg:x="271" fg:w="1"/><text x="60.2058%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="59.9558%" y="484" width="0.2212%" height="15" fill="rgb(253,140,32)" fg:x="271" fg:w="1"/><text x="60.2058%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="59.9558%" y="500" width="0.2212%" height="15" fill="rgb(216,56,42)" fg:x="271" fg:w="1"/><text x="60.2058%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="59.9558%" y="516" width="0.2212%" height="15" fill="rgb(216,184,14)" fg:x="271" fg:w="1"/><text x="60.2058%" y="526.50"></text></g><g><title><module> (pandas/testing.py:1) (1 samples, 0.22%)</title><rect x="59.9558%" y="532" width="0.2212%" height="15" fill="rgb(237,187,27)" fg:x="271" fg:w="1"/><text x="60.2058%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="59.9558%" y="548" width="0.2212%" height="15" fill="rgb(219,65,3)" fg:x="271" fg:w="1"/><text x="60.2058%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="59.9558%" y="564" width="0.2212%" height="15" fill="rgb(245,83,25)" fg:x="271" fg:w="1"/><text x="60.2058%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="59.9558%" y="580" width="0.2212%" height="15" fill="rgb(214,205,45)" fg:x="271" fg:w="1"/><text x="60.2058%" y="590.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="59.9558%" y="596" width="0.2212%" height="15" fill="rgb(241,20,18)" fg:x="271" fg:w="1"/><text x="60.2058%" y="606.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.22%)</title><rect x="59.9558%" y="612" width="0.2212%" height="15" fill="rgb(232,163,23)" fg:x="271" fg:w="1"/><text x="60.2058%" y="622.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.22%)</title><rect x="59.9558%" y="628" width="0.2212%" height="15" fill="rgb(214,5,46)" fg:x="271" fg:w="1"/><text x="60.2058%" y="638.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.22%)</title><rect x="59.9558%" y="644" width="0.2212%" height="15" fill="rgb(229,78,17)" fg:x="271" fg:w="1"/><text x="60.2058%" y="654.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.22%)</title><rect x="59.9558%" y="660" width="0.2212%" height="15" fill="rgb(248,89,10)" fg:x="271" fg:w="1"/><text x="60.2058%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (67 samples, 14.82%)</title><rect x="45.7965%" y="324" width="14.8230%" height="15" fill="rgb(248,54,15)" fg:x="207" fg:w="67"/><text x="46.0465%" y="334.50">_find_and_load (<frozen..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (67 samples, 14.82%)</title><rect x="45.7965%" y="340" width="14.8230%" height="15" fill="rgb(223,116,6)" fg:x="207" fg:w="67"/><text x="46.0465%" y="350.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (67 samples, 14.82%)</title><rect x="45.7965%" y="356" width="14.8230%" height="15" fill="rgb(205,125,38)" fg:x="207" fg:w="67"/><text x="46.0465%" y="366.50">_load_unlocked (<frozen..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (67 samples, 14.82%)</title><rect x="45.7965%" y="372" width="14.8230%" height="15" fill="rgb(251,78,38)" fg:x="207" fg:w="67"/><text x="46.0465%" y="382.50">exec_module (<frozen im..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (67 samples, 14.82%)</title><rect x="45.7965%" y="388" width="14.8230%" height="15" fill="rgb(253,78,28)" fg:x="207" fg:w="67"/><text x="46.0465%" y="398.50">_call_with_frames_remov..</text></g><g><title><module> (xarray/core/coordinates.py:1) (2 samples, 0.44%)</title><rect x="60.1770%" y="404" width="0.4425%" height="15" fill="rgb(209,120,3)" fg:x="272" fg:w="2"/><text x="60.4270%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="60.1770%" y="420" width="0.4425%" height="15" fill="rgb(238,229,9)" fg:x="272" fg:w="2"/><text x="60.4270%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="60.1770%" y="436" width="0.4425%" height="15" fill="rgb(253,159,18)" fg:x="272" fg:w="2"/><text x="60.4270%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="60.1770%" y="452" width="0.4425%" height="15" fill="rgb(244,42,34)" fg:x="272" fg:w="2"/><text x="60.4270%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="60.1770%" y="468" width="0.4425%" height="15" fill="rgb(224,8,7)" fg:x="272" fg:w="2"/><text x="60.4270%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="60.1770%" y="484" width="0.4425%" height="15" fill="rgb(210,201,45)" fg:x="272" fg:w="2"/><text x="60.4270%" y="494.50"></text></g><g><title><module> (xarray/core/alignment.py:1) (2 samples, 0.44%)</title><rect x="60.1770%" y="500" width="0.4425%" height="15" fill="rgb(252,185,21)" fg:x="272" fg:w="2"/><text x="60.4270%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="60.1770%" y="516" width="0.4425%" height="15" fill="rgb(223,131,1)" fg:x="272" fg:w="2"/><text x="60.4270%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="60.1770%" y="532" width="0.4425%" height="15" fill="rgb(245,141,16)" fg:x="272" fg:w="2"/><text x="60.4270%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="60.1770%" y="548" width="0.4425%" height="15" fill="rgb(229,55,45)" fg:x="272" fg:w="2"/><text x="60.4270%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="60.1770%" y="564" width="0.4425%" height="15" fill="rgb(208,92,15)" fg:x="272" fg:w="2"/><text x="60.4270%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.44%)</title><rect x="60.1770%" y="580" width="0.4425%" height="15" fill="rgb(234,185,47)" fg:x="272" fg:w="2"/><text x="60.4270%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.44%)</title><rect x="60.1770%" y="596" width="0.4425%" height="15" fill="rgb(253,104,50)" fg:x="272" fg:w="2"/><text x="60.4270%" y="606.50"></text></g><g><title><module> (xarray/testing.py:1) (68 samples, 15.04%)</title><rect x="45.7965%" y="308" width="15.0442%" height="15" fill="rgb(205,70,7)" fg:x="207" fg:w="68"/><text x="46.0465%" y="318.50"><module> (xarray/testin..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="60.6195%" y="324" width="0.2212%" height="15" fill="rgb(240,178,43)" fg:x="274" fg:w="1"/><text x="60.8695%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="340" width="0.2212%" height="15" fill="rgb(214,112,2)" fg:x="274" fg:w="1"/><text x="60.8695%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.6195%" y="356" width="0.2212%" height="15" fill="rgb(206,46,17)" fg:x="274" fg:w="1"/><text x="60.8695%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.6195%" y="372" width="0.2212%" height="15" fill="rgb(225,220,16)" fg:x="274" fg:w="1"/><text x="60.8695%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="60.6195%" y="388" width="0.2212%" height="15" fill="rgb(238,65,40)" fg:x="274" fg:w="1"/><text x="60.8695%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="60.6195%" y="404" width="0.2212%" height="15" fill="rgb(230,151,21)" fg:x="274" fg:w="1"/><text x="60.8695%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="420" width="0.2212%" height="15" fill="rgb(218,58,49)" fg:x="274" fg:w="1"/><text x="60.8695%" y="430.50"></text></g><g><title><module> (xarray/core/duck_array_ops.py:1) (1 samples, 0.22%)</title><rect x="60.6195%" y="436" width="0.2212%" height="15" fill="rgb(219,179,14)" fg:x="274" fg:w="1"/><text x="60.8695%" y="446.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="60.6195%" y="452" width="0.2212%" height="15" fill="rgb(223,72,1)" fg:x="274" fg:w="1"/><text x="60.8695%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="468" width="0.2212%" height="15" fill="rgb(238,126,10)" fg:x="274" fg:w="1"/><text x="60.8695%" y="478.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.6195%" y="484" width="0.2212%" height="15" fill="rgb(224,206,38)" fg:x="274" fg:w="1"/><text x="60.8695%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.6195%" y="500" width="0.2212%" height="15" fill="rgb(212,201,54)" fg:x="274" fg:w="1"/><text x="60.8695%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="60.6195%" y="516" width="0.2212%" height="15" fill="rgb(218,154,48)" fg:x="274" fg:w="1"/><text x="60.8695%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="60.6195%" y="532" width="0.2212%" height="15" fill="rgb(232,93,24)" fg:x="274" fg:w="1"/><text x="60.8695%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="548" width="0.2212%" height="15" fill="rgb(245,30,21)" fg:x="274" fg:w="1"/><text x="60.8695%" y="558.50"></text></g><g><title><module> (xarray/core/dask_array_ops.py:1) (1 samples, 0.22%)</title><rect x="60.6195%" y="564" width="0.2212%" height="15" fill="rgb(242,148,29)" fg:x="274" fg:w="1"/><text x="60.8695%" y="574.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="60.6195%" y="580" width="0.2212%" height="15" fill="rgb(244,153,54)" fg:x="274" fg:w="1"/><text x="60.8695%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="596" width="0.2212%" height="15" fill="rgb(252,87,22)" fg:x="274" fg:w="1"/><text x="60.8695%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.6195%" y="612" width="0.2212%" height="15" fill="rgb(210,51,29)" fg:x="274" fg:w="1"/><text x="60.8695%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.6195%" y="628" width="0.2212%" height="15" fill="rgb(242,136,47)" fg:x="274" fg:w="1"/><text x="60.8695%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="60.6195%" y="644" width="0.2212%" height="15" fill="rgb(238,68,4)" fg:x="274" fg:w="1"/><text x="60.8695%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="60.6195%" y="660" width="0.2212%" height="15" fill="rgb(242,161,30)" fg:x="274" fg:w="1"/><text x="60.8695%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="676" width="0.2212%" height="15" fill="rgb(218,58,44)" fg:x="274" fg:w="1"/><text x="60.8695%" y="686.50"></text></g><g><title><module> (xarray/core/dtypes.py:1) (1 samples, 0.22%)</title><rect x="60.6195%" y="692" width="0.2212%" height="15" fill="rgb(252,125,32)" fg:x="274" fg:w="1"/><text x="60.8695%" y="702.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="60.6195%" y="708" width="0.2212%" height="15" fill="rgb(219,178,0)" fg:x="274" fg:w="1"/><text x="60.8695%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.6195%" y="724" width="0.2212%" height="15" fill="rgb(213,152,7)" fg:x="274" fg:w="1"/><text x="60.8695%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.6195%" y="740" width="0.2212%" height="15" fill="rgb(249,109,34)" fg:x="274" fg:w="1"/><text x="60.8695%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.6195%" y="756" width="0.2212%" height="15" fill="rgb(232,96,21)" fg:x="274" fg:w="1"/><text x="60.8695%" y="766.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="60.6195%" y="772" width="0.2212%" height="15" fill="rgb(228,27,39)" fg:x="274" fg:w="1"/><text x="60.8695%" y="782.50"></text></g><g><title><module> (dask/_compatibility.py:1) (1 samples, 0.22%)</title><rect x="60.8407%" y="980" width="0.2212%" height="15" fill="rgb(211,182,52)" fg:x="275" fg:w="1"/><text x="61.0907%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.8407%" y="996" width="0.2212%" height="15" fill="rgb(234,178,38)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.8407%" y="1012" width="0.2212%" height="15" fill="rgb(221,111,3)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="60.8407%" y="1028" width="0.2212%" height="15" fill="rgb(228,175,21)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="60.8407%" y="1044" width="0.2212%" height="15" fill="rgb(228,174,43)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="60.8407%" y="1060" width="0.2212%" height="15" fill="rgb(211,191,0)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1070.50"></text></g><g><title><module> (importlib_metadata/__init__.py:1) (1 samples, 0.22%)</title><rect x="60.8407%" y="1076" width="0.2212%" height="15" fill="rgb(253,117,3)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="60.8407%" y="1092" width="0.2212%" height="15" fill="rgb(241,127,19)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="60.8407%" y="1108" width="0.2212%" height="15" fill="rgb(218,103,12)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="60.8407%" y="1124" width="0.2212%" height="15" fill="rgb(236,214,43)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="60.8407%" y="1140" width="0.2212%" height="15" fill="rgb(244,144,19)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1150.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="60.8407%" y="1156" width="0.2212%" height="15" fill="rgb(246,188,10)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1166.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="60.8407%" y="1172" width="0.2212%" height="15" fill="rgb(212,193,33)" fg:x="275" fg:w="1"/><text x="61.0907%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.0619%" y="1092" width="0.2212%" height="15" fill="rgb(241,51,29)" fg:x="276" fg:w="1"/><text x="61.3119%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.0619%" y="1108" width="0.2212%" height="15" fill="rgb(211,58,19)" fg:x="276" fg:w="1"/><text x="61.3119%" y="1118.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="61.0619%" y="1124" width="0.2212%" height="15" fill="rgb(229,111,26)" fg:x="276" fg:w="1"/><text x="61.3119%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="60.8407%" y="900" width="0.6637%" height="15" fill="rgb(213,115,40)" fg:x="275" fg:w="3"/><text x="61.0907%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="60.8407%" y="916" width="0.6637%" height="15" fill="rgb(209,56,44)" fg:x="275" fg:w="3"/><text x="61.0907%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="60.8407%" y="932" width="0.6637%" height="15" fill="rgb(230,108,32)" fg:x="275" fg:w="3"/><text x="61.0907%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="60.8407%" y="948" width="0.6637%" height="15" fill="rgb(216,165,31)" fg:x="275" fg:w="3"/><text x="61.0907%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="60.8407%" y="964" width="0.6637%" height="15" fill="rgb(218,122,21)" fg:x="275" fg:w="3"/><text x="61.0907%" y="974.50"></text></g><g><title><module> (dask/system.py:1) (2 samples, 0.44%)</title><rect x="61.0619%" y="980" width="0.4425%" height="15" fill="rgb(223,224,47)" fg:x="276" fg:w="2"/><text x="61.3119%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="61.0619%" y="996" width="0.4425%" height="15" fill="rgb(238,102,44)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="61.0619%" y="1012" width="0.4425%" height="15" fill="rgb(236,46,40)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="61.0619%" y="1028" width="0.4425%" height="15" fill="rgb(247,202,50)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="61.0619%" y="1044" width="0.4425%" height="15" fill="rgb(209,99,20)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="61.0619%" y="1060" width="0.4425%" height="15" fill="rgb(252,27,34)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1070.50"></text></g><g><title><module> (psutil/__init__.py:7) (2 samples, 0.44%)</title><rect x="61.0619%" y="1076" width="0.4425%" height="15" fill="rgb(215,206,23)" fg:x="276" fg:w="2"/><text x="61.3119%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="61.2832%" y="1092" width="0.2212%" height="15" fill="rgb(212,135,36)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.2832%" y="1108" width="0.2212%" height="15" fill="rgb(240,189,1)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.2832%" y="1124" width="0.2212%" height="15" fill="rgb(242,56,20)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.2832%" y="1140" width="0.2212%" height="15" fill="rgb(247,132,33)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.2832%" y="1156" width="0.2212%" height="15" fill="rgb(208,149,11)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.2832%" y="1172" width="0.2212%" height="15" fill="rgb(211,33,11)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.2832%" y="1188" width="0.2212%" height="15" fill="rgb(221,29,38)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1198.50"></text></g><g><title><module> (psutil/_psosx.py:5) (1 samples, 0.22%)</title><rect x="61.2832%" y="1204" width="0.2212%" height="15" fill="rgb(206,182,49)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1214.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="61.2832%" y="1220" width="0.2212%" height="15" fill="rgb(216,140,1)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.2832%" y="1236" width="0.2212%" height="15" fill="rgb(232,57,40)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.2832%" y="1252" width="0.2212%" height="15" fill="rgb(224,186,18)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.2832%" y="1268" width="0.2212%" height="15" fill="rgb(215,121,11)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.2832%" y="1284" width="0.2212%" height="15" fill="rgb(245,147,10)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1294.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="61.2832%" y="1300" width="0.2212%" height="15" fill="rgb(238,153,13)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1310.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="61.2832%" y="1316" width="0.2212%" height="15" fill="rgb(233,108,0)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.2832%" y="1332" width="0.2212%" height="15" fill="rgb(212,157,17)" fg:x="277" fg:w="1"/><text x="61.5332%" y="1342.50"></text></g><g><title><module> (dask/base.py:1) (4 samples, 0.88%)</title><rect x="60.8407%" y="884" width="0.8850%" height="15" fill="rgb(225,213,38)" fg:x="275" fg:w="4"/><text x="61.0907%" y="894.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="61.5044%" y="900" width="0.2212%" height="15" fill="rgb(248,16,11)" fg:x="278" fg:w="1"/><text x="61.7544%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.5044%" y="916" width="0.2212%" height="15" fill="rgb(241,33,4)" fg:x="278" fg:w="1"/><text x="61.7544%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.5044%" y="932" width="0.2212%" height="15" fill="rgb(222,26,43)" fg:x="278" fg:w="1"/><text x="61.7544%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.5044%" y="948" width="0.2212%" height="15" fill="rgb(243,29,36)" fg:x="278" fg:w="1"/><text x="61.7544%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.5044%" y="964" width="0.2212%" height="15" fill="rgb(241,9,27)" fg:x="278" fg:w="1"/><text x="61.7544%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.5044%" y="980" width="0.2212%" height="15" fill="rgb(205,117,26)" fg:x="278" fg:w="1"/><text x="61.7544%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.5044%" y="996" width="0.2212%" height="15" fill="rgb(209,80,39)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1006.50"></text></g><g><title><module> (dask/multiprocessing.py:1) (1 samples, 0.22%)</title><rect x="61.5044%" y="1012" width="0.2212%" height="15" fill="rgb(239,155,6)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.5044%" y="1028" width="0.2212%" height="15" fill="rgb(212,104,12)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.5044%" y="1044" width="0.2212%" height="15" fill="rgb(234,204,3)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.5044%" y="1060" width="0.2212%" height="15" fill="rgb(251,218,7)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.5044%" y="1076" width="0.2212%" height="15" fill="rgb(221,81,32)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.5044%" y="1092" width="0.2212%" height="15" fill="rgb(214,152,26)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.5044%" y="1108" width="0.2212%" height="15" fill="rgb(223,22,3)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.5044%" y="1124" width="0.2212%" height="15" fill="rgb(207,174,7)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.5044%" y="1140" width="0.2212%" height="15" fill="rgb(224,19,52)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1150.50"></text></g><g><title><module> (tblib/__init__.py:1) (1 samples, 0.22%)</title><rect x="61.5044%" y="1156" width="0.2212%" height="15" fill="rgb(228,24,14)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1166.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.22%)</title><rect x="61.5044%" y="1172" width="0.2212%" height="15" fill="rgb(230,153,43)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1182.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="61.5044%" y="1188" width="0.2212%" height="15" fill="rgb(231,106,12)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1198.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="61.5044%" y="1204" width="0.2212%" height="15" fill="rgb(215,92,2)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1214.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.22%)</title><rect x="61.5044%" y="1220" width="0.2212%" height="15" fill="rgb(249,143,25)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1230.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="61.5044%" y="1236" width="0.2212%" height="15" fill="rgb(252,7,35)" fg:x="278" fg:w="1"/><text x="61.7544%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="60.8407%" y="804" width="1.1062%" height="15" fill="rgb(216,69,40)" fg:x="275" fg:w="5"/><text x="61.0907%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="60.8407%" y="820" width="1.1062%" height="15" fill="rgb(240,36,33)" fg:x="275" fg:w="5"/><text x="61.0907%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="60.8407%" y="836" width="1.1062%" height="15" fill="rgb(231,128,14)" fg:x="275" fg:w="5"/><text x="61.0907%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="60.8407%" y="852" width="1.1062%" height="15" fill="rgb(245,143,14)" fg:x="275" fg:w="5"/><text x="61.0907%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="60.8407%" y="868" width="1.1062%" height="15" fill="rgb(222,130,28)" fg:x="275" fg:w="5"/><text x="61.0907%" y="878.50"></text></g><g><title><module> (dask/delayed.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="884" width="0.2212%" height="15" fill="rgb(212,10,48)" fg:x="279" fg:w="1"/><text x="61.9757%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="900" width="0.2212%" height="15" fill="rgb(254,118,45)" fg:x="279" fg:w="1"/><text x="61.9757%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="916" width="0.2212%" height="15" fill="rgb(228,6,45)" fg:x="279" fg:w="1"/><text x="61.9757%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="932" width="0.2212%" height="15" fill="rgb(241,18,35)" fg:x="279" fg:w="1"/><text x="61.9757%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="948" width="0.2212%" height="15" fill="rgb(227,214,53)" fg:x="279" fg:w="1"/><text x="61.9757%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="964" width="0.2212%" height="15" fill="rgb(224,107,51)" fg:x="279" fg:w="1"/><text x="61.9757%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="980" width="0.2212%" height="15" fill="rgb(248,60,28)" fg:x="279" fg:w="1"/><text x="61.9757%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="996" width="0.2212%" height="15" fill="rgb(249,101,23)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1012" width="0.2212%" height="15" fill="rgb(228,51,19)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="1028" width="0.2212%" height="15" fill="rgb(213,20,6)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="1044" width="0.2212%" height="15" fill="rgb(212,124,10)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="1060" width="0.2212%" height="15" fill="rgb(248,3,40)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="1076" width="0.2212%" height="15" fill="rgb(223,178,23)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="1092" width="0.2212%" height="15" fill="rgb(240,132,45)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1108" width="0.2212%" height="15" fill="rgb(245,164,36)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="1124" width="0.2212%" height="15" fill="rgb(231,188,53)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="1140" width="0.2212%" height="15" fill="rgb(237,198,39)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="1156" width="0.2212%" height="15" fill="rgb(223,120,35)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="1172" width="0.2212%" height="15" fill="rgb(253,107,49)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="1188" width="0.2212%" height="15" fill="rgb(216,44,31)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1204" width="0.2212%" height="15" fill="rgb(253,87,21)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="1220" width="0.2212%" height="15" fill="rgb(226,18,2)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="1236" width="0.2212%" height="15" fill="rgb(216,8,46)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="1252" width="0.2212%" height="15" fill="rgb(226,140,39)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="1268" width="0.2212%" height="15" fill="rgb(221,194,54)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="1284" width="0.2212%" height="15" fill="rgb(213,92,11)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1300" width="0.2212%" height="15" fill="rgb(229,162,46)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="1316" width="0.2212%" height="15" fill="rgb(214,111,36)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="1332" width="0.2212%" height="15" fill="rgb(207,6,21)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="1348" width="0.2212%" height="15" fill="rgb(213,127,38)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1358.50"></text></g><g><title><module> (jinja2/environment.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="1364" width="0.2212%" height="15" fill="rgb(238,118,32)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="1380" width="0.2212%" height="15" fill="rgb(240,139,39)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1396" width="0.2212%" height="15" fill="rgb(235,10,37)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="61.7257%" y="1412" width="0.2212%" height="15" fill="rgb(249,171,38)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="61.7257%" y="1428" width="0.2212%" height="15" fill="rgb(242,144,32)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="61.7257%" y="1444" width="0.2212%" height="15" fill="rgb(217,117,21)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1454.50"></text></g><g><title><module> (markupsafe/__init__.py:1) (1 samples, 0.22%)</title><rect x="61.7257%" y="1460" width="0.2212%" height="15" fill="rgb(249,87,1)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="61.7257%" y="1476" width="0.2212%" height="15" fill="rgb(248,196,48)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="61.7257%" y="1492" width="0.2212%" height="15" fill="rgb(251,206,33)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1502.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="61.7257%" y="1508" width="0.2212%" height="15" fill="rgb(232,141,28)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1518.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="61.7257%" y="1524" width="0.2212%" height="15" fill="rgb(209,167,14)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1534.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="61.7257%" y="1540" width="0.2212%" height="15" fill="rgb(225,11,50)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1550.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="61.7257%" y="1556" width="0.2212%" height="15" fill="rgb(209,50,20)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1566.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.22%)</title><rect x="61.7257%" y="1572" width="0.2212%" height="15" fill="rgb(212,17,46)" fg:x="279" fg:w="1"/><text x="61.9757%" y="1582.50"></text></g><g><title><module> (dask/config.py:1) (1 samples, 0.22%)</title><rect x="61.9469%" y="916" width="0.2212%" height="15" fill="rgb(216,101,39)" fg:x="280" fg:w="1"/><text x="62.1969%" y="926.50"></text></g><g><title>_initialize (dask/config.py:792) (1 samples, 0.22%)</title><rect x="61.9469%" y="932" width="0.2212%" height="15" fill="rgb(212,228,48)" fg:x="280" fg:w="1"/><text x="62.1969%" y="942.50"></text></g><g><title>safe_load (yaml/__init__.py:117) (1 samples, 0.22%)</title><rect x="61.9469%" y="948" width="0.2212%" height="15" fill="rgb(250,6,50)" fg:x="280" fg:w="1"/><text x="62.1969%" y="958.50"></text></g><g><title>load (yaml/__init__.py:74) (1 samples, 0.22%)</title><rect x="61.9469%" y="964" width="0.2212%" height="15" fill="rgb(250,160,48)" fg:x="280" fg:w="1"/><text x="62.1969%" y="974.50"></text></g><g><title>get_single_data (yaml/constructor.py:47) (1 samples, 0.22%)</title><rect x="61.9469%" y="980" width="0.2212%" height="15" fill="rgb(244,216,33)" fg:x="280" fg:w="1"/><text x="62.1969%" y="990.50"></text></g><g><title>get_single_node (yaml/composer.py:29) (1 samples, 0.22%)</title><rect x="61.9469%" y="996" width="0.2212%" height="15" fill="rgb(207,157,5)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1006.50"></text></g><g><title>compose_document (yaml/composer.py:50) (1 samples, 0.22%)</title><rect x="61.9469%" y="1012" width="0.2212%" height="15" fill="rgb(228,199,8)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1022.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.22%)</title><rect x="61.9469%" y="1028" width="0.2212%" height="15" fill="rgb(227,80,20)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1038.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.22%)</title><rect x="61.9469%" y="1044" width="0.2212%" height="15" fill="rgb(222,9,33)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1054.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.22%)</title><rect x="61.9469%" y="1060" width="0.2212%" height="15" fill="rgb(239,44,28)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1070.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.22%)</title><rect x="61.9469%" y="1076" width="0.2212%" height="15" fill="rgb(249,187,43)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1086.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.22%)</title><rect x="61.9469%" y="1092" width="0.2212%" height="15" fill="rgb(216,141,28)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1102.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.22%)</title><rect x="61.9469%" y="1108" width="0.2212%" height="15" fill="rgb(230,154,53)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1118.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.22%)</title><rect x="61.9469%" y="1124" width="0.2212%" height="15" fill="rgb(227,82,4)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1134.50"></text></g><g><title>compose_scalar_node (yaml/composer.py:88) (1 samples, 0.22%)</title><rect x="61.9469%" y="1140" width="0.2212%" height="15" fill="rgb(220,107,16)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1150.50"></text></g><g><title>__init__ (yaml/nodes.py:27) (1 samples, 0.22%)</title><rect x="61.9469%" y="1156" width="0.2212%" height="15" fill="rgb(207,187,2)" fg:x="280" fg:w="1"/><text x="62.1969%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="61.9469%" y="900" width="0.6637%" height="15" fill="rgb(210,162,52)" fg:x="280" fg:w="3"/><text x="62.1969%" y="910.50"></text></g><g><title><module> (dask/datasets.py:1) (2 samples, 0.44%)</title><rect x="62.1681%" y="916" width="0.4425%" height="15" fill="rgb(217,216,49)" fg:x="281" fg:w="2"/><text x="62.4181%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.1681%" y="932" width="0.4425%" height="15" fill="rgb(218,146,49)" fg:x="281" fg:w="2"/><text x="62.4181%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.1681%" y="948" width="0.4425%" height="15" fill="rgb(216,55,40)" fg:x="281" fg:w="2"/><text x="62.4181%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="62.1681%" y="964" width="0.4425%" height="15" fill="rgb(208,196,21)" fg:x="281" fg:w="2"/><text x="62.4181%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="62.1681%" y="980" width="0.4425%" height="15" fill="rgb(242,117,42)" fg:x="281" fg:w="2"/><text x="62.4181%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="62.1681%" y="996" width="0.4425%" height="15" fill="rgb(210,11,23)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (2 samples, 0.44%)</title><rect x="62.1681%" y="1012" width="0.4425%" height="15" fill="rgb(217,110,2)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.1681%" y="1028" width="0.4425%" height="15" fill="rgb(229,77,54)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.1681%" y="1044" width="0.4425%" height="15" fill="rgb(218,53,16)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="62.1681%" y="1060" width="0.4425%" height="15" fill="rgb(215,38,13)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="62.1681%" y="1076" width="0.4425%" height="15" fill="rgb(235,42,18)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="62.1681%" y="1092" width="0.4425%" height="15" fill="rgb(219,66,54)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (2 samples, 0.44%)</title><rect x="62.1681%" y="1108" width="0.4425%" height="15" fill="rgb(222,205,4)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="62.1681%" y="1124" width="0.4425%" height="15" fill="rgb(227,213,46)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="62.1681%" y="1140" width="0.4425%" height="15" fill="rgb(250,145,42)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.1681%" y="1156" width="0.4425%" height="15" fill="rgb(219,15,2)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.1681%" y="1172" width="0.4425%" height="15" fill="rgb(231,181,52)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="62.1681%" y="1188" width="0.4425%" height="15" fill="rgb(235,1,42)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="62.1681%" y="1204" width="0.4425%" height="15" fill="rgb(249,88,27)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="62.1681%" y="1220" width="0.4425%" height="15" fill="rgb(235,145,16)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1230.50"></text></g><g><title><module> (tlz/_build_tlz.py:1) (2 samples, 0.44%)</title><rect x="62.1681%" y="1236" width="0.4425%" height="15" fill="rgb(237,114,19)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.1681%" y="1252" width="0.4425%" height="15" fill="rgb(238,51,50)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.1681%" y="1268" width="0.4425%" height="15" fill="rgb(205,194,25)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="62.1681%" y="1284" width="0.4425%" height="15" fill="rgb(215,203,17)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="62.1681%" y="1300" width="0.4425%" height="15" fill="rgb(233,112,49)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="62.1681%" y="1316" width="0.4425%" height="15" fill="rgb(241,130,26)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1326.50"></text></g><g><title><module> (toolz/__init__.py:1) (2 samples, 0.44%)</title><rect x="62.1681%" y="1332" width="0.4425%" height="15" fill="rgb(252,223,19)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.1681%" y="1348" width="0.4425%" height="15" fill="rgb(211,95,25)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.1681%" y="1364" width="0.4425%" height="15" fill="rgb(251,182,27)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="62.1681%" y="1380" width="0.4425%" height="15" fill="rgb(238,24,4)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="62.1681%" y="1396" width="0.4425%" height="15" fill="rgb(224,220,25)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1406.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 0.44%)</title><rect x="62.1681%" y="1412" width="0.4425%" height="15" fill="rgb(239,133,26)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1422.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 0.44%)</title><rect x="62.1681%" y="1428" width="0.4425%" height="15" fill="rgb(211,94,48)" fg:x="281" fg:w="2"/><text x="62.4181%" y="1438.50"></text></g><g><title><module> (xarray/backends/file_manager.py:1) (9 samples, 1.99%)</title><rect x="60.8407%" y="548" width="1.9912%" height="15" fill="rgb(239,87,6)" fg:x="275" fg:w="9"/><text x="61.0907%" y="558.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="60.8407%" y="564" width="1.9912%" height="15" fill="rgb(227,62,0)" fg:x="275" fg:w="9"/><text x="61.0907%" y="574.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="60.8407%" y="580" width="1.9912%" height="15" fill="rgb(211,226,4)" fg:x="275" fg:w="9"/><text x="61.0907%" y="590.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="60.8407%" y="596" width="1.9912%" height="15" fill="rgb(253,38,52)" fg:x="275" fg:w="9"/><text x="61.0907%" y="606.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.99%)</title><rect x="60.8407%" y="612" width="1.9912%" height="15" fill="rgb(229,126,40)" fg:x="275" fg:w="9"/><text x="61.0907%" y="622.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="60.8407%" y="628" width="1.9912%" height="15" fill="rgb(229,165,44)" fg:x="275" fg:w="9"/><text x="61.0907%" y="638.50">_..</text></g><g><title><module> (xarray/backends/locks.py:1) (9 samples, 1.99%)</title><rect x="60.8407%" y="644" width="1.9912%" height="15" fill="rgb(247,95,47)" fg:x="275" fg:w="9"/><text x="61.0907%" y="654.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="60.8407%" y="660" width="1.9912%" height="15" fill="rgb(216,140,30)" fg:x="275" fg:w="9"/><text x="61.0907%" y="670.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="60.8407%" y="676" width="1.9912%" height="15" fill="rgb(246,214,8)" fg:x="275" fg:w="9"/><text x="61.0907%" y="686.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="60.8407%" y="692" width="1.9912%" height="15" fill="rgb(227,224,15)" fg:x="275" fg:w="9"/><text x="61.0907%" y="702.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 1.99%)</title><rect x="60.8407%" y="708" width="1.9912%" height="15" fill="rgb(233,175,4)" fg:x="275" fg:w="9"/><text x="61.0907%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 1.99%)</title><rect x="60.8407%" y="724" width="1.9912%" height="15" fill="rgb(221,66,45)" fg:x="275" fg:w="9"/><text x="61.0907%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 1.99%)</title><rect x="60.8407%" y="740" width="1.9912%" height="15" fill="rgb(221,178,18)" fg:x="275" fg:w="9"/><text x="61.0907%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 1.99%)</title><rect x="60.8407%" y="756" width="1.9912%" height="15" fill="rgb(213,81,29)" fg:x="275" fg:w="9"/><text x="61.0907%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 1.99%)</title><rect x="60.8407%" y="772" width="1.9912%" height="15" fill="rgb(220,89,49)" fg:x="275" fg:w="9"/><text x="61.0907%" y="782.50">_..</text></g><g><title><module> (dask/__init__.py:1) (9 samples, 1.99%)</title><rect x="60.8407%" y="788" width="1.9912%" height="15" fill="rgb(227,60,33)" fg:x="275" fg:w="9"/><text x="61.0907%" y="798.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.88%)</title><rect x="61.9469%" y="804" width="0.8850%" height="15" fill="rgb(205,113,12)" fg:x="280" fg:w="4"/><text x="62.1969%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="61.9469%" y="820" width="0.8850%" height="15" fill="rgb(211,32,1)" fg:x="280" fg:w="4"/><text x="62.1969%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="61.9469%" y="836" width="0.8850%" height="15" fill="rgb(246,2,12)" fg:x="280" fg:w="4"/><text x="62.1969%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="61.9469%" y="852" width="0.8850%" height="15" fill="rgb(243,37,27)" fg:x="280" fg:w="4"/><text x="62.1969%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="61.9469%" y="868" width="0.8850%" height="15" fill="rgb(248,211,31)" fg:x="280" fg:w="4"/><text x="62.1969%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="61.9469%" y="884" width="0.8850%" height="15" fill="rgb(242,146,47)" fg:x="280" fg:w="4"/><text x="62.1969%" y="894.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="62.6106%" y="900" width="0.2212%" height="15" fill="rgb(206,70,20)" fg:x="283" fg:w="1"/><text x="62.8606%" y="910.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="62.6106%" y="916" width="0.2212%" height="15" fill="rgb(215,10,51)" fg:x="283" fg:w="1"/><text x="62.8606%" y="926.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="62.8319%" y="596" width="0.2212%" height="15" fill="rgb(243,178,53)" fg:x="284" fg:w="1"/><text x="63.0819%" y="606.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="62.8319%" y="612" width="0.2212%" height="15" fill="rgb(233,221,20)" fg:x="284" fg:w="1"/><text x="63.0819%" y="622.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="62.8319%" y="628" width="0.2212%" height="15" fill="rgb(218,95,35)" fg:x="284" fg:w="1"/><text x="63.0819%" y="638.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="62.8319%" y="644" width="0.2212%" height="15" fill="rgb(229,13,5)" fg:x="284" fg:w="1"/><text x="63.0819%" y="654.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="62.8319%" y="660" width="0.2212%" height="15" fill="rgb(252,164,30)" fg:x="284" fg:w="1"/><text x="63.0819%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 2.43%)</title><rect x="60.8407%" y="532" width="2.4336%" height="15" fill="rgb(232,68,36)" fg:x="275" fg:w="11"/><text x="61.0907%" y="542.50">_c..</text></g><g><title><module> (xarray/backends/h5netcdf_.py:1) (2 samples, 0.44%)</title><rect x="62.8319%" y="548" width="0.4425%" height="15" fill="rgb(219,59,54)" fg:x="284" fg:w="2"/><text x="63.0819%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="62.8319%" y="564" width="0.4425%" height="15" fill="rgb(250,92,33)" fg:x="284" fg:w="2"/><text x="63.0819%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="62.8319%" y="580" width="0.4425%" height="15" fill="rgb(229,162,54)" fg:x="284" fg:w="2"/><text x="63.0819%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="63.0531%" y="596" width="0.2212%" height="15" fill="rgb(244,114,52)" fg:x="285" fg:w="1"/><text x="63.3031%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="63.0531%" y="612" width="0.2212%" height="15" fill="rgb(212,211,43)" fg:x="285" fg:w="1"/><text x="63.3031%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="63.0531%" y="628" width="0.2212%" height="15" fill="rgb(226,147,8)" fg:x="285" fg:w="1"/><text x="63.3031%" y="638.50"></text></g><g><title><module> (xarray/backends/netCDF4_.py:1) (1 samples, 0.22%)</title><rect x="63.0531%" y="644" width="0.2212%" height="15" fill="rgb(226,23,13)" fg:x="285" fg:w="1"/><text x="63.3031%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="63.0531%" y="660" width="0.2212%" height="15" fill="rgb(240,63,4)" fg:x="285" fg:w="1"/><text x="63.3031%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="63.0531%" y="676" width="0.2212%" height="15" fill="rgb(221,1,32)" fg:x="285" fg:w="1"/><text x="63.3031%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="63.0531%" y="692" width="0.2212%" height="15" fill="rgb(242,117,10)" fg:x="285" fg:w="1"/><text x="63.3031%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="63.0531%" y="708" width="0.2212%" height="15" fill="rgb(249,172,44)" fg:x="285" fg:w="1"/><text x="63.3031%" y="718.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="63.0531%" y="724" width="0.2212%" height="15" fill="rgb(244,46,45)" fg:x="285" fg:w="1"/><text x="63.3031%" y="734.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="63.0531%" y="740" width="0.2212%" height="15" fill="rgb(206,43,17)" fg:x="285" fg:w="1"/><text x="63.3031%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (254 samples, 56.19%)</title><rect x="7.3009%" y="100" width="56.1947%" height="15" fill="rgb(239,218,39)" fg:x="33" fg:w="254"/><text x="7.5509%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (254 samples, 56.19%)</title><rect x="7.3009%" y="116" width="56.1947%" height="15" fill="rgb(208,169,54)" fg:x="33" fg:w="254"/><text x="7.5509%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (254 samples, 56.19%)</title><rect x="7.3009%" y="132" width="56.1947%" height="15" fill="rgb(247,25,42)" fg:x="33" fg:w="254"/><text x="7.5509%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (254 samples, 56.19%)</title><rect x="7.3009%" y="148" width="56.1947%" height="15" fill="rgb(226,23,31)" fg:x="33" fg:w="254"/><text x="7.5509%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (254 samples, 56.19%)</title><rect x="7.3009%" y="164" width="56.1947%" height="15" fill="rgb(247,16,28)" fg:x="33" fg:w="254"/><text x="7.5509%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (80 samples, 17.70%)</title><rect x="45.7965%" y="180" width="17.6991%" height="15" fill="rgb(231,147,38)" fg:x="207" fg:w="80"/><text x="46.0465%" y="190.50"><module> (xarray/__init__.p..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (80 samples, 17.70%)</title><rect x="45.7965%" y="196" width="17.6991%" height="15" fill="rgb(253,81,48)" fg:x="207" fg:w="80"/><text x="46.0465%" y="206.50">_handle_fromlist (<frozen i..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (80 samples, 17.70%)</title><rect x="45.7965%" y="212" width="17.6991%" height="15" fill="rgb(249,222,43)" fg:x="207" fg:w="80"/><text x="46.0465%" y="222.50">_call_with_frames_removed (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (80 samples, 17.70%)</title><rect x="45.7965%" y="228" width="17.6991%" height="15" fill="rgb(221,3,27)" fg:x="207" fg:w="80"/><text x="46.0465%" y="238.50">_find_and_load (<frozen imp..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (80 samples, 17.70%)</title><rect x="45.7965%" y="244" width="17.6991%" height="15" fill="rgb(228,180,5)" fg:x="207" fg:w="80"/><text x="46.0465%" y="254.50">_find_and_load_unlocked (<f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (80 samples, 17.70%)</title><rect x="45.7965%" y="260" width="17.6991%" height="15" fill="rgb(227,131,42)" fg:x="207" fg:w="80"/><text x="46.0465%" y="270.50">_load_unlocked (<frozen imp..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (80 samples, 17.70%)</title><rect x="45.7965%" y="276" width="17.6991%" height="15" fill="rgb(212,3,39)" fg:x="207" fg:w="80"/><text x="46.0465%" y="286.50">exec_module (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (80 samples, 17.70%)</title><rect x="45.7965%" y="292" width="17.6991%" height="15" fill="rgb(226,45,5)" fg:x="207" fg:w="80"/><text x="46.0465%" y="302.50">_call_with_frames_removed (..</text></g><g><title><module> (xarray/tutorial.py:1) (12 samples, 2.65%)</title><rect x="60.8407%" y="308" width="2.6549%" height="15" fill="rgb(215,167,45)" fg:x="275" fg:w="12"/><text x="61.0907%" y="318.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.65%)</title><rect x="60.8407%" y="324" width="2.6549%" height="15" fill="rgb(250,218,53)" fg:x="275" fg:w="12"/><text x="61.0907%" y="334.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.65%)</title><rect x="60.8407%" y="340" width="2.6549%" height="15" fill="rgb(207,140,0)" fg:x="275" fg:w="12"/><text x="61.0907%" y="350.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="60.8407%" y="356" width="2.6549%" height="15" fill="rgb(238,133,51)" fg:x="275" fg:w="12"/><text x="61.0907%" y="366.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.65%)</title><rect x="60.8407%" y="372" width="2.6549%" height="15" fill="rgb(218,203,53)" fg:x="275" fg:w="12"/><text x="61.0907%" y="382.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.65%)</title><rect x="60.8407%" y="388" width="2.6549%" height="15" fill="rgb(226,184,25)" fg:x="275" fg:w="12"/><text x="61.0907%" y="398.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.65%)</title><rect x="60.8407%" y="404" width="2.6549%" height="15" fill="rgb(231,121,21)" fg:x="275" fg:w="12"/><text x="61.0907%" y="414.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.65%)</title><rect x="60.8407%" y="420" width="2.6549%" height="15" fill="rgb(251,14,34)" fg:x="275" fg:w="12"/><text x="61.0907%" y="430.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="60.8407%" y="436" width="2.6549%" height="15" fill="rgb(249,193,11)" fg:x="275" fg:w="12"/><text x="61.0907%" y="446.50">_c..</text></g><g><title><module> (xarray/backends/__init__.py:1) (12 samples, 2.65%)</title><rect x="60.8407%" y="452" width="2.6549%" height="15" fill="rgb(220,172,37)" fg:x="275" fg:w="12"/><text x="61.0907%" y="462.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.65%)</title><rect x="60.8407%" y="468" width="2.6549%" height="15" fill="rgb(231,229,43)" fg:x="275" fg:w="12"/><text x="61.0907%" y="478.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.65%)</title><rect x="60.8407%" y="484" width="2.6549%" height="15" fill="rgb(250,161,5)" fg:x="275" fg:w="12"/><text x="61.0907%" y="494.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.65%)</title><rect x="60.8407%" y="500" width="2.6549%" height="15" fill="rgb(218,225,18)" fg:x="275" fg:w="12"/><text x="61.0907%" y="510.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.65%)</title><rect x="60.8407%" y="516" width="2.6549%" height="15" fill="rgb(245,45,42)" fg:x="275" fg:w="12"/><text x="61.0907%" y="526.50">ex..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="63.2743%" y="532" width="0.2212%" height="15" fill="rgb(211,115,1)" fg:x="286" fg:w="1"/><text x="63.5243%" y="542.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="63.2743%" y="548" width="0.2212%" height="15" fill="rgb(248,133,52)" fg:x="286" fg:w="1"/><text x="63.5243%" y="558.50"></text></g><g><title>fire_tasks (dask/local.py:453) (1 samples, 0.22%)</title><rect x="63.4956%" y="164" width="0.2212%" height="15" fill="rgb(238,100,21)" fg:x="287" fg:w="1"/><text x="63.7456%" y="174.50"></text></g><g><title>get_dependencies (dask/core.py:263) (1 samples, 0.22%)</title><rect x="63.4956%" y="180" width="0.2212%" height="15" fill="rgb(247,144,11)" fg:x="287" fg:w="1"/><text x="63.7456%" y="190.50"></text></g><g><title>keys_in_tasks (dask/core.py:165) (1 samples, 0.22%)</title><rect x="63.4956%" y="196" width="0.2212%" height="15" fill="rgb(206,164,16)" fg:x="287" fg:w="1"/><text x="63.7456%" y="206.50"></text></g><g><title>compute (dask/base.py:355) (2 samples, 0.44%)</title><rect x="63.4956%" y="100" width="0.4425%" height="15" fill="rgb(222,34,3)" fg:x="287" fg:w="2"/><text x="63.7456%" y="110.50"></text></g><g><title>compute (dask/base.py:603) (2 samples, 0.44%)</title><rect x="63.4956%" y="116" width="0.4425%" height="15" fill="rgb(248,82,4)" fg:x="287" fg:w="2"/><text x="63.7456%" y="126.50"></text></g><g><title>get (dask/threaded.py:37) (2 samples, 0.44%)</title><rect x="63.4956%" y="132" width="0.4425%" height="15" fill="rgb(228,81,46)" fg:x="287" fg:w="2"/><text x="63.7456%" y="142.50"></text></g><g><title>get_async (dask/local.py:351) (2 samples, 0.44%)</title><rect x="63.4956%" y="148" width="0.4425%" height="15" fill="rgb(227,67,47)" fg:x="287" fg:w="2"/><text x="63.7456%" y="158.50"></text></g><g><title>queue_get (dask/local.py:137) (1 samples, 0.22%)</title><rect x="63.7168%" y="164" width="0.2212%" height="15" fill="rgb(215,93,53)" fg:x="288" fg:w="1"/><text x="63.9668%" y="174.50"></text></g><g><title>get (queue.py:154) (1 samples, 0.22%)</title><rect x="63.7168%" y="180" width="0.2212%" height="15" fill="rgb(248,194,39)" fg:x="288" fg:w="1"/><text x="63.9668%" y="190.50"></text></g><g><title><module> (charset_normalizer/__init__.py:2) (1 samples, 0.22%)</title><rect x="64.1593%" y="676" width="0.2212%" height="15" fill="rgb(215,5,19)" fg:x="290" fg:w="1"/><text x="64.4093%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.1593%" y="692" width="0.2212%" height="15" fill="rgb(226,215,51)" fg:x="290" fg:w="1"/><text x="64.4093%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.1593%" y="708" width="0.2212%" height="15" fill="rgb(225,56,26)" fg:x="290" fg:w="1"/><text x="64.4093%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.1593%" y="724" width="0.2212%" height="15" fill="rgb(222,75,29)" fg:x="290" fg:w="1"/><text x="64.4093%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.1593%" y="740" width="0.2212%" height="15" fill="rgb(236,139,6)" fg:x="290" fg:w="1"/><text x="64.4093%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.1593%" y="756" width="0.2212%" height="15" fill="rgb(223,137,36)" fg:x="290" fg:w="1"/><text x="64.4093%" y="766.50"></text></g><g><title><module> (charset_normalizer/api.py:1) (1 samples, 0.22%)</title><rect x="64.1593%" y="772" width="0.2212%" height="15" fill="rgb(226,99,2)" fg:x="290" fg:w="1"/><text x="64.4093%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.1593%" y="788" width="0.2212%" height="15" fill="rgb(206,133,23)" fg:x="290" fg:w="1"/><text x="64.4093%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.1593%" y="804" width="0.2212%" height="15" fill="rgb(243,173,15)" fg:x="290" fg:w="1"/><text x="64.4093%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.1593%" y="820" width="0.2212%" height="15" fill="rgb(228,69,28)" fg:x="290" fg:w="1"/><text x="64.4093%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.1593%" y="836" width="0.2212%" height="15" fill="rgb(212,51,22)" fg:x="290" fg:w="1"/><text x="64.4093%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.1593%" y="852" width="0.2212%" height="15" fill="rgb(227,113,0)" fg:x="290" fg:w="1"/><text x="64.4093%" y="862.50"></text></g><g><title><module> (charset_normalizer/cd.py:1) (1 samples, 0.22%)</title><rect x="64.1593%" y="868" width="0.2212%" height="15" fill="rgb(252,84,27)" fg:x="290" fg:w="1"/><text x="64.4093%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.1593%" y="884" width="0.2212%" height="15" fill="rgb(223,145,39)" fg:x="290" fg:w="1"/><text x="64.4093%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.1593%" y="900" width="0.2212%" height="15" fill="rgb(239,219,30)" fg:x="290" fg:w="1"/><text x="64.4093%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.1593%" y="916" width="0.2212%" height="15" fill="rgb(224,196,39)" fg:x="290" fg:w="1"/><text x="64.4093%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="64.1593%" y="932" width="0.2212%" height="15" fill="rgb(205,35,43)" fg:x="290" fg:w="1"/><text x="64.4093%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.22%)</title><rect x="64.1593%" y="948" width="0.2212%" height="15" fill="rgb(228,201,21)" fg:x="290" fg:w="1"/><text x="64.4093%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.1593%" y="964" width="0.2212%" height="15" fill="rgb(237,118,16)" fg:x="290" fg:w="1"/><text x="64.4093%" y="974.50"></text></g><g><title><module> (requests/exceptions.py:1) (2 samples, 0.44%)</title><rect x="64.1593%" y="484" width="0.4425%" height="15" fill="rgb(241,17,19)" fg:x="290" fg:w="2"/><text x="64.4093%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="64.1593%" y="500" width="0.4425%" height="15" fill="rgb(214,10,25)" fg:x="290" fg:w="2"/><text x="64.4093%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="64.1593%" y="516" width="0.4425%" height="15" fill="rgb(238,37,29)" fg:x="290" fg:w="2"/><text x="64.4093%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="64.1593%" y="532" width="0.4425%" height="15" fill="rgb(253,83,25)" fg:x="290" fg:w="2"/><text x="64.4093%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="64.1593%" y="548" width="0.4425%" height="15" fill="rgb(234,192,12)" fg:x="290" fg:w="2"/><text x="64.4093%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="64.1593%" y="564" width="0.4425%" height="15" fill="rgb(241,216,45)" fg:x="290" fg:w="2"/><text x="64.4093%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (2 samples, 0.44%)</title><rect x="64.1593%" y="580" width="0.4425%" height="15" fill="rgb(242,22,33)" fg:x="290" fg:w="2"/><text x="64.4093%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="64.1593%" y="596" width="0.4425%" height="15" fill="rgb(231,105,49)" fg:x="290" fg:w="2"/><text x="64.4093%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="64.1593%" y="612" width="0.4425%" height="15" fill="rgb(218,204,15)" fg:x="290" fg:w="2"/><text x="64.4093%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="64.1593%" y="628" width="0.4425%" height="15" fill="rgb(235,138,41)" fg:x="290" fg:w="2"/><text x="64.4093%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="64.1593%" y="644" width="0.4425%" height="15" fill="rgb(246,0,9)" fg:x="290" fg:w="2"/><text x="64.4093%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="64.1593%" y="660" width="0.4425%" height="15" fill="rgb(210,74,4)" fg:x="290" fg:w="2"/><text x="64.4093%" y="670.50"></text></g><g><title><module> (simplejson/__init__.py:1) (1 samples, 0.22%)</title><rect x="64.3805%" y="676" width="0.2212%" height="15" fill="rgb(250,60,41)" fg:x="291" fg:w="1"/><text x="64.6305%" y="686.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.3805%" y="692" width="0.2212%" height="15" fill="rgb(220,115,12)" fg:x="291" fg:w="1"/><text x="64.6305%" y="702.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.3805%" y="708" width="0.2212%" height="15" fill="rgb(237,100,13)" fg:x="291" fg:w="1"/><text x="64.6305%" y="718.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.3805%" y="724" width="0.2212%" height="15" fill="rgb(213,55,26)" fg:x="291" fg:w="1"/><text x="64.6305%" y="734.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.3805%" y="740" width="0.2212%" height="15" fill="rgb(216,17,4)" fg:x="291" fg:w="1"/><text x="64.6305%" y="750.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="64.3805%" y="756" width="0.2212%" height="15" fill="rgb(220,153,47)" fg:x="291" fg:w="1"/><text x="64.6305%" y="766.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.22%)</title><rect x="64.3805%" y="772" width="0.2212%" height="15" fill="rgb(215,131,9)" fg:x="291" fg:w="1"/><text x="64.6305%" y="782.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (1 samples, 0.22%)</title><rect x="64.6018%" y="580" width="0.2212%" height="15" fill="rgb(233,46,42)" fg:x="292" fg:w="1"/><text x="64.8518%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.6018%" y="596" width="0.2212%" height="15" fill="rgb(226,86,7)" fg:x="292" fg:w="1"/><text x="64.8518%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.6018%" y="612" width="0.2212%" height="15" fill="rgb(239,226,21)" fg:x="292" fg:w="1"/><text x="64.8518%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.6018%" y="628" width="0.2212%" height="15" fill="rgb(244,137,22)" fg:x="292" fg:w="1"/><text x="64.8518%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.6018%" y="644" width="0.2212%" height="15" fill="rgb(211,139,35)" fg:x="292" fg:w="1"/><text x="64.8518%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.6018%" y="660" width="0.2212%" height="15" fill="rgb(214,62,50)" fg:x="292" fg:w="1"/><text x="64.8518%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.6018%" y="676" width="0.2212%" height="15" fill="rgb(212,113,44)" fg:x="292" fg:w="1"/><text x="64.8518%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.6018%" y="692" width="0.2212%" height="15" fill="rgb(226,150,43)" fg:x="292" fg:w="1"/><text x="64.8518%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.6018%" y="708" width="0.2212%" height="15" fill="rgb(250,71,37)" fg:x="292" fg:w="1"/><text x="64.8518%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (1 samples, 0.22%)</title><rect x="64.6018%" y="724" width="0.2212%" height="15" fill="rgb(219,76,19)" fg:x="292" fg:w="1"/><text x="64.8518%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.6018%" y="740" width="0.2212%" height="15" fill="rgb(250,39,11)" fg:x="292" fg:w="1"/><text x="64.8518%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.6018%" y="756" width="0.2212%" height="15" fill="rgb(230,64,31)" fg:x="292" fg:w="1"/><text x="64.8518%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.6018%" y="772" width="0.2212%" height="15" fill="rgb(208,222,23)" fg:x="292" fg:w="1"/><text x="64.8518%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.6018%" y="788" width="0.2212%" height="15" fill="rgb(227,125,18)" fg:x="292" fg:w="1"/><text x="64.8518%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.6018%" y="804" width="0.2212%" height="15" fill="rgb(234,210,9)" fg:x="292" fg:w="1"/><text x="64.8518%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (1 samples, 0.22%)</title><rect x="64.6018%" y="820" width="0.2212%" height="15" fill="rgb(217,127,24)" fg:x="292" fg:w="1"/><text x="64.8518%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="64.6018%" y="836" width="0.2212%" height="15" fill="rgb(239,141,48)" fg:x="292" fg:w="1"/><text x="64.8518%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="64.6018%" y="852" width="0.2212%" height="15" fill="rgb(227,109,8)" fg:x="292" fg:w="1"/><text x="64.8518%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="64.6018%" y="868" width="0.2212%" height="15" fill="rgb(235,184,23)" fg:x="292" fg:w="1"/><text x="64.8518%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="64.6018%" y="884" width="0.2212%" height="15" fill="rgb(227,226,48)" fg:x="292" fg:w="1"/><text x="64.8518%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="64.6018%" y="900" width="0.2212%" height="15" fill="rgb(206,150,11)" fg:x="292" fg:w="1"/><text x="64.8518%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (1 samples, 0.22%)</title><rect x="64.6018%" y="916" width="0.2212%" height="15" fill="rgb(254,2,33)" fg:x="292" fg:w="1"/><text x="64.8518%" y="926.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.22%)</title><rect x="64.6018%" y="932" width="0.2212%" height="15" fill="rgb(243,160,20)" fg:x="292" fg:w="1"/><text x="64.8518%" y="942.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="64.6018%" y="948" width="0.2212%" height="15" fill="rgb(218,208,30)" fg:x="292" fg:w="1"/><text x="64.8518%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="64.6018%" y="964" width="0.2212%" height="15" fill="rgb(224,120,49)" fg:x="292" fg:w="1"/><text x="64.8518%" y="974.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.22%)</title><rect x="64.6018%" y="980" width="0.2212%" height="15" fill="rgb(246,12,2)" fg:x="292" fg:w="1"/><text x="64.8518%" y="990.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="64.6018%" y="996" width="0.2212%" height="15" fill="rgb(236,117,3)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1006.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="64.6018%" y="1012" width="0.2212%" height="15" fill="rgb(216,128,52)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="64.6018%" y="1028" width="0.2212%" height="15" fill="rgb(246,145,19)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="64.6018%" y="1044" width="0.2212%" height="15" fill="rgb(222,11,46)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.22%)</title><rect x="64.6018%" y="1060" width="0.2212%" height="15" fill="rgb(245,82,36)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1070.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.22%)</title><rect x="64.6018%" y="1076" width="0.2212%" height="15" fill="rgb(250,73,51)" fg:x="292" fg:w="1"/><text x="64.8518%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="63.9381%" y="116" width="1.5487%" height="15" fill="rgb(221,189,23)" fg:x="289" fg:w="7"/><text x="64.1881%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="63.9381%" y="132" width="1.5487%" height="15" fill="rgb(210,33,7)" fg:x="289" fg:w="7"/><text x="64.1881%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="63.9381%" y="148" width="1.5487%" height="15" fill="rgb(210,107,22)" fg:x="289" fg:w="7"/><text x="64.1881%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="63.9381%" y="164" width="1.5487%" height="15" fill="rgb(222,116,37)" fg:x="289" fg:w="7"/><text x="64.1881%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="63.9381%" y="180" width="1.5487%" height="15" fill="rgb(254,17,48)" fg:x="289" fg:w="7"/><text x="64.1881%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (7 samples, 1.55%)</title><rect x="63.9381%" y="196" width="1.5487%" height="15" fill="rgb(224,36,32)" fg:x="289" fg:w="7"/><text x="64.1881%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="63.9381%" y="212" width="1.5487%" height="15" fill="rgb(232,90,46)" fg:x="289" fg:w="7"/><text x="64.1881%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="63.9381%" y="228" width="1.5487%" height="15" fill="rgb(241,66,40)" fg:x="289" fg:w="7"/><text x="64.1881%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="63.9381%" y="244" width="1.5487%" height="15" fill="rgb(249,184,29)" fg:x="289" fg:w="7"/><text x="64.1881%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="63.9381%" y="260" width="1.5487%" height="15" fill="rgb(231,181,1)" fg:x="289" fg:w="7"/><text x="64.1881%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="63.9381%" y="276" width="1.5487%" height="15" fill="rgb(224,94,2)" fg:x="289" fg:w="7"/><text x="64.1881%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (7 samples, 1.55%)</title><rect x="63.9381%" y="292" width="1.5487%" height="15" fill="rgb(229,170,15)" fg:x="289" fg:w="7"/><text x="64.1881%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="63.9381%" y="308" width="1.5487%" height="15" fill="rgb(240,127,35)" fg:x="289" fg:w="7"/><text x="64.1881%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 1.55%)</title><rect x="63.9381%" y="324" width="1.5487%" height="15" fill="rgb(248,196,34)" fg:x="289" fg:w="7"/><text x="64.1881%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 1.55%)</title><rect x="63.9381%" y="340" width="1.5487%" height="15" fill="rgb(236,137,7)" fg:x="289" fg:w="7"/><text x="64.1881%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 1.55%)</title><rect x="63.9381%" y="356" width="1.5487%" height="15" fill="rgb(235,127,16)" fg:x="289" fg:w="7"/><text x="64.1881%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 1.55%)</title><rect x="63.9381%" y="372" width="1.5487%" height="15" fill="rgb(250,192,54)" fg:x="289" fg:w="7"/><text x="64.1881%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (7 samples, 1.55%)</title><rect x="63.9381%" y="388" width="1.5487%" height="15" fill="rgb(218,98,20)" fg:x="289" fg:w="7"/><text x="64.1881%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 1.55%)</title><rect x="63.9381%" y="404" width="1.5487%" height="15" fill="rgb(230,176,47)" fg:x="289" fg:w="7"/><text x="64.1881%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 1.33%)</title><rect x="64.1593%" y="420" width="1.3274%" height="15" fill="rgb(244,2,33)" fg:x="290" fg:w="6"/><text x="64.4093%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 1.33%)</title><rect x="64.1593%" y="436" width="1.3274%" height="15" fill="rgb(231,100,17)" fg:x="290" fg:w="6"/><text x="64.4093%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 1.33%)</title><rect x="64.1593%" y="452" width="1.3274%" height="15" fill="rgb(245,23,12)" fg:x="290" fg:w="6"/><text x="64.4093%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 1.33%)</title><rect x="64.1593%" y="468" width="1.3274%" height="15" fill="rgb(249,55,22)" fg:x="290" fg:w="6"/><text x="64.4093%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (4 samples, 0.88%)</title><rect x="64.6018%" y="484" width="0.8850%" height="15" fill="rgb(207,134,9)" fg:x="292" fg:w="4"/><text x="64.8518%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="64.6018%" y="500" width="0.8850%" height="15" fill="rgb(218,134,0)" fg:x="292" fg:w="4"/><text x="64.8518%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="64.6018%" y="516" width="0.8850%" height="15" fill="rgb(213,212,33)" fg:x="292" fg:w="4"/><text x="64.8518%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="64.6018%" y="532" width="0.8850%" height="15" fill="rgb(252,106,18)" fg:x="292" fg:w="4"/><text x="64.8518%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="64.6018%" y="548" width="0.8850%" height="15" fill="rgb(208,126,42)" fg:x="292" fg:w="4"/><text x="64.8518%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="64.6018%" y="564" width="0.8850%" height="15" fill="rgb(246,175,29)" fg:x="292" fg:w="4"/><text x="64.8518%" y="574.50"></text></g><g><title><module> (urllib3/connectionpool.py:1) (3 samples, 0.66%)</title><rect x="64.8230%" y="580" width="0.6637%" height="15" fill="rgb(215,13,50)" fg:x="293" fg:w="3"/><text x="65.0730%" y="590.50"></text></g><g><title>ConnectionPool (urllib3/connectionpool.py:68) (1 samples, 0.22%)</title><rect x="65.2655%" y="596" width="0.2212%" height="15" fill="rgb(216,172,15)" fg:x="295" fg:w="1"/><text x="65.5155%" y="606.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="65.4867%" y="564" width="0.2212%" height="15" fill="rgb(212,103,13)" fg:x="296" fg:w="1"/><text x="65.7367%" y="574.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="65.4867%" y="580" width="0.2212%" height="15" fill="rgb(231,171,36)" fg:x="296" fg:w="1"/><text x="65.7367%" y="590.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="65.4867%" y="596" width="0.2212%" height="15" fill="rgb(250,123,20)" fg:x="296" fg:w="1"/><text x="65.7367%" y="606.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="65.4867%" y="612" width="0.2212%" height="15" fill="rgb(212,53,50)" fg:x="296" fg:w="1"/><text x="65.7367%" y="622.50"></text></g><g><title>_verbose_message (<frozen importlib._bootstrap>:231) (1 samples, 0.22%)</title><rect x="65.4867%" y="628" width="0.2212%" height="15" fill="rgb(243,54,12)" fg:x="296" fg:w="1"/><text x="65.7367%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="65.4867%" y="532" width="0.4425%" height="15" fill="rgb(234,101,34)" fg:x="296" fg:w="2"/><text x="65.7367%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="65.4867%" y="548" width="0.4425%" height="15" fill="rgb(254,67,22)" fg:x="296" fg:w="2"/><text x="65.7367%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="65.7080%" y="564" width="0.2212%" height="15" fill="rgb(250,35,47)" fg:x="297" fg:w="1"/><text x="65.9580%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="65.7080%" y="580" width="0.2212%" height="15" fill="rgb(226,126,38)" fg:x="297" fg:w="1"/><text x="65.9580%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="65.7080%" y="596" width="0.2212%" height="15" fill="rgb(216,138,53)" fg:x="297" fg:w="1"/><text x="65.9580%" y="606.50"></text></g><g><title><module> (ee/collection.py:1) (1 samples, 0.22%)</title><rect x="65.7080%" y="612" width="0.2212%" height="15" fill="rgb(246,199,43)" fg:x="297" fg:w="1"/><text x="65.9580%" y="622.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="65.7080%" y="628" width="0.2212%" height="15" fill="rgb(232,125,11)" fg:x="297" fg:w="1"/><text x="65.9580%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="65.7080%" y="644" width="0.2212%" height="15" fill="rgb(218,219,45)" fg:x="297" fg:w="1"/><text x="65.9580%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="65.7080%" y="660" width="0.2212%" height="15" fill="rgb(216,102,54)" fg:x="297" fg:w="1"/><text x="65.9580%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="65.7080%" y="676" width="0.2212%" height="15" fill="rgb(250,228,7)" fg:x="297" fg:w="1"/><text x="65.9580%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="65.7080%" y="692" width="0.2212%" height="15" fill="rgb(226,125,25)" fg:x="297" fg:w="1"/><text x="65.9580%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="65.7080%" y="708" width="0.2212%" height="15" fill="rgb(224,165,27)" fg:x="297" fg:w="1"/><text x="65.9580%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="65.7080%" y="724" width="0.2212%" height="15" fill="rgb(233,86,3)" fg:x="297" fg:w="1"/><text x="65.9580%" y="734.50"></text></g><g><title><module> (ee/filter.py:1) (1 samples, 0.22%)</title><rect x="65.7080%" y="740" width="0.2212%" height="15" fill="rgb(228,116,20)" fg:x="297" fg:w="1"/><text x="65.9580%" y="750.50"></text></g><g><title><listcomp> (pyparsing/core.py:6133) (1 samples, 0.22%)</title><rect x="65.9292%" y="1300" width="0.2212%" height="15" fill="rgb(209,192,17)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1310.50"></text></g><g><title>__instancecheck__ (abc.py:117) (1 samples, 0.22%)</title><rect x="65.9292%" y="1316" width="0.2212%" height="15" fill="rgb(224,88,34)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1326.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.22%)</title><rect x="65.9292%" y="1332" width="0.2212%" height="15" fill="rgb(233,38,6)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1342.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.22%)</title><rect x="65.9292%" y="1348" width="0.2212%" height="15" fill="rgb(212,59,30)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1358.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.22%)</title><rect x="65.9292%" y="1364" width="0.2212%" height="15" fill="rgb(213,80,3)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1374.50"></text></g><g><title>__subclasscheck__ (abc.py:121) (1 samples, 0.22%)</title><rect x="65.9292%" y="1380" width="0.2212%" height="15" fill="rgb(251,178,7)" fg:x="298" fg:w="1"/><text x="66.1792%" y="1390.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="65.9292%" y="788" width="0.6637%" height="15" fill="rgb(213,154,26)" fg:x="298" fg:w="3"/><text x="66.1792%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="65.9292%" y="804" width="0.6637%" height="15" fill="rgb(238,165,49)" fg:x="298" fg:w="3"/><text x="66.1792%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="65.9292%" y="820" width="0.6637%" height="15" fill="rgb(248,91,46)" fg:x="298" fg:w="3"/><text x="66.1792%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="65.9292%" y="836" width="0.6637%" height="15" fill="rgb(244,21,52)" fg:x="298" fg:w="3"/><text x="66.1792%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="852" width="0.6637%" height="15" fill="rgb(247,122,20)" fg:x="298" fg:w="3"/><text x="66.1792%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (3 samples, 0.66%)</title><rect x="65.9292%" y="868" width="0.6637%" height="15" fill="rgb(218,27,9)" fg:x="298" fg:w="3"/><text x="66.1792%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="65.9292%" y="884" width="0.6637%" height="15" fill="rgb(246,7,6)" fg:x="298" fg:w="3"/><text x="66.1792%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="65.9292%" y="900" width="0.6637%" height="15" fill="rgb(227,135,54)" fg:x="298" fg:w="3"/><text x="66.1792%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="65.9292%" y="916" width="0.6637%" height="15" fill="rgb(247,14,11)" fg:x="298" fg:w="3"/><text x="66.1792%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="65.9292%" y="932" width="0.6637%" height="15" fill="rgb(206,149,34)" fg:x="298" fg:w="3"/><text x="66.1792%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="948" width="0.6637%" height="15" fill="rgb(227,228,4)" fg:x="298" fg:w="3"/><text x="66.1792%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (3 samples, 0.66%)</title><rect x="65.9292%" y="964" width="0.6637%" height="15" fill="rgb(238,218,28)" fg:x="298" fg:w="3"/><text x="66.1792%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 0.66%)</title><rect x="65.9292%" y="980" width="0.6637%" height="15" fill="rgb(252,86,40)" fg:x="298" fg:w="3"/><text x="66.1792%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="996" width="0.6637%" height="15" fill="rgb(251,225,11)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="65.9292%" y="1012" width="0.6637%" height="15" fill="rgb(206,46,49)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="65.9292%" y="1028" width="0.6637%" height="15" fill="rgb(245,128,24)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="65.9292%" y="1044" width="0.6637%" height="15" fill="rgb(219,177,34)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="65.9292%" y="1060" width="0.6637%" height="15" fill="rgb(218,60,48)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="1076" width="0.6637%" height="15" fill="rgb(221,11,5)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (3 samples, 0.66%)</title><rect x="65.9292%" y="1092" width="0.6637%" height="15" fill="rgb(220,148,13)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="65.9292%" y="1108" width="0.6637%" height="15" fill="rgb(210,16,3)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="65.9292%" y="1124" width="0.6637%" height="15" fill="rgb(236,80,2)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="65.9292%" y="1140" width="0.6637%" height="15" fill="rgb(239,129,19)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="65.9292%" y="1156" width="0.6637%" height="15" fill="rgb(220,106,35)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="1172" width="0.6637%" height="15" fill="rgb(252,139,45)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (3 samples, 0.66%)</title><rect x="65.9292%" y="1188" width="0.6637%" height="15" fill="rgb(229,8,36)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="65.9292%" y="1204" width="0.6637%" height="15" fill="rgb(230,126,33)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="65.9292%" y="1220" width="0.6637%" height="15" fill="rgb(239,140,21)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="65.9292%" y="1236" width="0.6637%" height="15" fill="rgb(254,104,9)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="65.9292%" y="1252" width="0.6637%" height="15" fill="rgb(239,52,14)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="65.9292%" y="1268" width="0.6637%" height="15" fill="rgb(208,227,44)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1278.50"></text></g><g><title><module> (pyparsing/core.py:5) (3 samples, 0.66%)</title><rect x="65.9292%" y="1284" width="0.6637%" height="15" fill="rgb(246,18,19)" fg:x="298" fg:w="3"/><text x="66.1792%" y="1294.50"></text></g><g><title>srange (pyparsing/core.py:5996) (2 samples, 0.44%)</title><rect x="66.1504%" y="1300" width="0.4425%" height="15" fill="rgb(235,228,25)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1310.50"></text></g><g><title>parse_string (pyparsing/core.py:1132) (2 samples, 0.44%)</title><rect x="66.1504%" y="1316" width="0.4425%" height="15" fill="rgb(240,156,20)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1326.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1332" width="0.4425%" height="15" fill="rgb(224,8,20)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1342.50"></text></g><g><title>parseImpl (pyparsing/core.py:4034) (2 samples, 0.44%)</title><rect x="66.1504%" y="1348" width="0.4425%" height="15" fill="rgb(214,12,52)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1358.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1364" width="0.4425%" height="15" fill="rgb(211,220,47)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1374.50"></text></g><g><title>parseImpl (pyparsing/core.py:4566) (2 samples, 0.44%)</title><rect x="66.1504%" y="1380" width="0.4425%" height="15" fill="rgb(250,173,5)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1390.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1396" width="0.4425%" height="15" fill="rgb(250,125,52)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1406.50"></text></g><g><title>parseImpl (pyparsing/core.py:4989) (2 samples, 0.44%)</title><rect x="66.1504%" y="1412" width="0.4425%" height="15" fill="rgb(209,133,18)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1422.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1428" width="0.4425%" height="15" fill="rgb(216,173,22)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1438.50"></text></g><g><title>parseImpl (pyparsing/core.py:4287) (2 samples, 0.44%)</title><rect x="66.1504%" y="1444" width="0.4425%" height="15" fill="rgb(205,3,22)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1454.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1460" width="0.4425%" height="15" fill="rgb(248,22,20)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1470.50"></text></g><g><title>parseImpl (pyparsing/core.py:4566) (2 samples, 0.44%)</title><rect x="66.1504%" y="1476" width="0.4425%" height="15" fill="rgb(233,6,29)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1486.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1492" width="0.4425%" height="15" fill="rgb(240,22,54)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1502.50"></text></g><g><title>parseImpl (pyparsing/core.py:4034) (2 samples, 0.44%)</title><rect x="66.1504%" y="1508" width="0.4425%" height="15" fill="rgb(231,133,32)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1518.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1524" width="0.4425%" height="15" fill="rgb(248,193,4)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1534.50"></text></g><g><title>parseImpl (pyparsing/core.py:4287) (2 samples, 0.44%)</title><rect x="66.1504%" y="1540" width="0.4425%" height="15" fill="rgb(211,178,46)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1550.50"></text></g><g><title>_parseNoCache (pyparsing/core.py:809) (2 samples, 0.44%)</title><rect x="66.1504%" y="1556" width="0.4425%" height="15" fill="rgb(224,5,42)" fg:x="299" fg:w="2"/><text x="66.4004%" y="1566.50"></text></g><g><title>parseImpl (pyparsing/core.py:3110) (1 samples, 0.22%)</title><rect x="66.3717%" y="1572" width="0.2212%" height="15" fill="rgb(239,176,25)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1582.50"></text></g><g><title>__get__ (functools.py:973) (1 samples, 0.22%)</title><rect x="66.3717%" y="1588" width="0.2212%" height="15" fill="rgb(245,187,50)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1598.50"></text></g><g><title>re_match (pyparsing/core.py:3099) (1 samples, 0.22%)</title><rect x="66.3717%" y="1604" width="0.2212%" height="15" fill="rgb(248,24,15)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1614.50"></text></g><g><title>__get__ (functools.py:973) (1 samples, 0.22%)</title><rect x="66.3717%" y="1620" width="0.2212%" height="15" fill="rgb(205,166,13)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1630.50"></text></g><g><title>re (pyparsing/core.py:3089) (1 samples, 0.22%)</title><rect x="66.3717%" y="1636" width="0.2212%" height="15" fill="rgb(208,114,23)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1646.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.22%)</title><rect x="66.3717%" y="1652" width="0.2212%" height="15" fill="rgb(239,127,18)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1662.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.22%)</title><rect x="66.3717%" y="1668" width="0.2212%" height="15" fill="rgb(219,154,28)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1678.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.22%)</title><rect x="66.3717%" y="1684" width="0.2212%" height="15" fill="rgb(225,157,23)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1694.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.22%)</title><rect x="66.3717%" y="1700" width="0.2212%" height="15" fill="rgb(219,8,6)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1710.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.22%)</title><rect x="66.3717%" y="1716" width="0.2212%" height="15" fill="rgb(212,47,6)" fg:x="300" fg:w="1"/><text x="66.6217%" y="1726.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.22%)</title><rect x="66.5929%" y="1796" width="0.2212%" height="15" fill="rgb(224,190,4)" fg:x="301" fg:w="1"/><text x="66.8429%" y="1806.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:169) (1 samples, 0.22%)</title><rect x="66.5929%" y="1812" width="0.2212%" height="15" fill="rgb(239,183,29)" fg:x="301" fg:w="1"/><text x="66.8429%" y="1822.50"></text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (2 samples, 0.44%)</title><rect x="66.5929%" y="1636" width="0.4425%" height="15" fill="rgb(213,57,7)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.44%)</title><rect x="66.5929%" y="1652" width="0.4425%" height="15" fill="rgb(216,148,1)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="66.5929%" y="1668" width="0.4425%" height="15" fill="rgb(236,182,29)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="66.5929%" y="1684" width="0.4425%" height="15" fill="rgb(244,120,48)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="66.5929%" y="1700" width="0.4425%" height="15" fill="rgb(206,71,34)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="66.5929%" y="1716" width="0.4425%" height="15" fill="rgb(242,32,6)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="66.5929%" y="1732" width="0.4425%" height="15" fill="rgb(241,35,3)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="66.5929%" y="1748" width="0.4425%" height="15" fill="rgb(222,62,19)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (2 samples, 0.44%)</title><rect x="66.5929%" y="1764" width="0.4425%" height="15" fill="rgb(223,110,41)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1774.50"></text></g><g><title>LDAPMessage (pyasn1_modules/rfc2251.py:532) (2 samples, 0.44%)</title><rect x="66.5929%" y="1780" width="0.4425%" height="15" fill="rgb(208,224,4)" fg:x="301" fg:w="2"/><text x="66.8429%" y="1790.50"></text></g><g><title>__init__ (pyasn1/type/univ.py:2201) (1 samples, 0.22%)</title><rect x="66.8142%" y="1796" width="0.2212%" height="15" fill="rgb(241,137,19)" fg:x="302" fg:w="1"/><text x="67.0642%" y="1806.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="66.5929%" y="1556" width="0.6637%" height="15" fill="rgb(244,24,17)" fg:x="301" fg:w="3"/><text x="66.8429%" y="1566.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="66.5929%" y="1572" width="0.6637%" height="15" fill="rgb(245,178,49)" fg:x="301" fg:w="3"/><text x="66.8429%" y="1582.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="66.5929%" y="1588" width="0.6637%" height="15" fill="rgb(219,160,38)" fg:x="301" fg:w="3"/><text x="66.8429%" y="1598.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="66.5929%" y="1604" width="0.6637%" height="15" fill="rgb(228,137,14)" fg:x="301" fg:w="3"/><text x="66.8429%" y="1614.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="66.5929%" y="1620" width="0.6637%" height="15" fill="rgb(237,134,11)" fg:x="301" fg:w="3"/><text x="66.8429%" y="1630.50"></text></g><g><title><module> (rsa/__init__.py:14) (1 samples, 0.22%)</title><rect x="67.0354%" y="1636" width="0.2212%" height="15" fill="rgb(211,126,44)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="67.0354%" y="1652" width="0.2212%" height="15" fill="rgb(226,171,33)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="67.0354%" y="1668" width="0.2212%" height="15" fill="rgb(253,99,13)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1678.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="67.0354%" y="1684" width="0.2212%" height="15" fill="rgb(244,48,7)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1694.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="67.0354%" y="1700" width="0.2212%" height="15" fill="rgb(244,217,54)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1710.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="67.0354%" y="1716" width="0.2212%" height="15" fill="rgb(224,15,18)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1726.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="67.0354%" y="1732" width="0.2212%" height="15" fill="rgb(244,99,12)" fg:x="303" fg:w="1"/><text x="67.2854%" y="1742.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.22%)</title><rect x="67.2566%" y="1988" width="0.2212%" height="15" fill="rgb(233,226,8)" fg:x="304" fg:w="1"/><text x="67.5066%" y="1998.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.22%)</title><rect x="67.2566%" y="2004" width="0.2212%" height="15" fill="rgb(229,211,3)" fg:x="304" fg:w="1"/><text x="67.5066%" y="2014.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="67.4779%" y="2004" width="0.2212%" height="15" fill="rgb(216,140,21)" fg:x="305" fg:w="1"/><text x="67.7279%" y="2014.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="67.4779%" y="2020" width="0.2212%" height="15" fill="rgb(234,122,30)" fg:x="305" fg:w="1"/><text x="67.7279%" y="2030.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="67.4779%" y="2036" width="0.2212%" height="15" fill="rgb(236,25,46)" fg:x="305" fg:w="1"/><text x="67.7279%" y="2046.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="67.4779%" y="2052" width="0.2212%" height="15" fill="rgb(217,52,54)" fg:x="305" fg:w="1"/><text x="67.7279%" y="2062.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.22%)</title><rect x="67.6991%" y="2020" width="0.2212%" height="15" fill="rgb(222,29,26)" fg:x="306" fg:w="1"/><text x="67.9491%" y="2030.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="67.6991%" y="2036" width="0.2212%" height="15" fill="rgb(216,177,29)" fg:x="306" fg:w="1"/><text x="67.9491%" y="2046.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.22%)</title><rect x="67.6991%" y="2052" width="0.2212%" height="15" fill="rgb(247,136,51)" fg:x="306" fg:w="1"/><text x="67.9491%" y="2062.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="67.2566%" y="1908" width="0.8850%" height="15" fill="rgb(231,47,47)" fg:x="304" fg:w="4"/><text x="67.5066%" y="1918.50"></text></g><g><title><module> (pyasn1/codec/ber/decoder.py:7) (4 samples, 0.88%)</title><rect x="67.2566%" y="1924" width="0.8850%" height="15" fill="rgb(211,192,36)" fg:x="304" fg:w="4"/><text x="67.5066%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 0.88%)</title><rect x="67.2566%" y="1940" width="0.8850%" height="15" fill="rgb(229,156,32)" fg:x="304" fg:w="4"/><text x="67.5066%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="67.2566%" y="1956" width="0.8850%" height="15" fill="rgb(248,213,20)" fg:x="304" fg:w="4"/><text x="67.5066%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="67.2566%" y="1972" width="0.8850%" height="15" fill="rgb(217,64,7)" fg:x="304" fg:w="4"/><text x="67.5066%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="67.4779%" y="1988" width="0.6637%" height="15" fill="rgb(232,142,8)" fg:x="305" fg:w="3"/><text x="67.7279%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="67.6991%" y="2004" width="0.4425%" height="15" fill="rgb(224,92,44)" fg:x="306" fg:w="2"/><text x="67.9491%" y="2014.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.22%)</title><rect x="67.9204%" y="2020" width="0.2212%" height="15" fill="rgb(214,169,17)" fg:x="307" fg:w="1"/><text x="68.1704%" y="2030.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.22%)</title><rect x="67.9204%" y="2036" width="0.2212%" height="15" fill="rgb(210,59,37)" fg:x="307" fg:w="1"/><text x="68.1704%" y="2046.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.22%)</title><rect x="67.9204%" y="2052" width="0.2212%" height="15" fill="rgb(214,116,48)" fg:x="307" fg:w="1"/><text x="68.1704%" y="2062.50"></text></g><g><title><module> (ee/_cloud_api_utils.py:1) (11 samples, 2.43%)</title><rect x="65.9292%" y="772" width="2.4336%" height="15" fill="rgb(244,191,6)" fg:x="298" fg:w="11"/><text x="66.1792%" y="782.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="788" width="1.7699%" height="15" fill="rgb(241,50,52)" fg:x="301" fg:w="8"/><text x="66.8429%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="804" width="1.7699%" height="15" fill="rgb(236,75,39)" fg:x="301" fg:w="8"/><text x="66.8429%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="820" width="1.7699%" height="15" fill="rgb(236,99,0)" fg:x="301" fg:w="8"/><text x="66.8429%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="836" width="1.7699%" height="15" fill="rgb(207,202,15)" fg:x="301" fg:w="8"/><text x="66.8429%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="852" width="1.7699%" height="15" fill="rgb(233,207,14)" fg:x="301" fg:w="8"/><text x="66.8429%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="868" width="1.7699%" height="15" fill="rgb(226,27,51)" fg:x="301" fg:w="8"/><text x="66.8429%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="884" width="1.7699%" height="15" fill="rgb(206,104,42)" fg:x="301" fg:w="8"/><text x="66.8429%" y="894.50"></text></g><g><title><module> (googleapiclient/discovery.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="900" width="1.7699%" height="15" fill="rgb(212,225,4)" fg:x="301" fg:w="8"/><text x="66.8429%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="916" width="1.7699%" height="15" fill="rgb(233,96,42)" fg:x="301" fg:w="8"/><text x="66.8429%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="932" width="1.7699%" height="15" fill="rgb(229,21,32)" fg:x="301" fg:w="8"/><text x="66.8429%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="948" width="1.7699%" height="15" fill="rgb(226,216,24)" fg:x="301" fg:w="8"/><text x="66.8429%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="964" width="1.7699%" height="15" fill="rgb(221,163,17)" fg:x="301" fg:w="8"/><text x="66.8429%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="980" width="1.7699%" height="15" fill="rgb(216,216,42)" fg:x="301" fg:w="8"/><text x="66.8429%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="996" width="1.7699%" height="15" fill="rgb(240,118,7)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1012" width="1.7699%" height="15" fill="rgb(221,67,37)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1022.50"></text></g><g><title><module> (oauth2/service_account.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="1028" width="1.7699%" height="15" fill="rgb(241,32,44)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="1044" width="1.7699%" height="15" fill="rgb(235,204,43)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1060" width="1.7699%" height="15" fill="rgb(213,116,10)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="1076" width="1.7699%" height="15" fill="rgb(239,15,48)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="1092" width="1.7699%" height="15" fill="rgb(207,123,36)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="1108" width="1.7699%" height="15" fill="rgb(209,103,30)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="1124" width="1.7699%" height="15" fill="rgb(238,100,19)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1140" width="1.7699%" height="15" fill="rgb(244,30,14)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1150.50"></text></g><g><title><module> (auth/_service_account_info.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="1156" width="1.7699%" height="15" fill="rgb(249,174,6)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1166.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="1172" width="1.7699%" height="15" fill="rgb(235,213,41)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1188" width="1.7699%" height="15" fill="rgb(213,118,6)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="1204" width="1.7699%" height="15" fill="rgb(235,44,51)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="1220" width="1.7699%" height="15" fill="rgb(217,9,53)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="1236" width="1.7699%" height="15" fill="rgb(237,172,34)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="1252" width="1.7699%" height="15" fill="rgb(206,206,11)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1268" width="1.7699%" height="15" fill="rgb(214,149,29)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1278.50"></text></g><g><title><module> (auth/crypt/__init__.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="1284" width="1.7699%" height="15" fill="rgb(208,123,3)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1294.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="1300" width="1.7699%" height="15" fill="rgb(229,126,4)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1316" width="1.7699%" height="15" fill="rgb(222,92,36)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="1332" width="1.7699%" height="15" fill="rgb(216,39,41)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="1348" width="1.7699%" height="15" fill="rgb(253,127,28)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1358.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="1364" width="1.7699%" height="15" fill="rgb(249,152,51)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1374.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="1380" width="1.7699%" height="15" fill="rgb(209,123,42)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1390.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1396" width="1.7699%" height="15" fill="rgb(241,118,22)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1406.50"></text></g><g><title><module> (auth/crypt/rsa.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="1412" width="1.7699%" height="15" fill="rgb(208,25,7)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1422.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 1.77%)</title><rect x="66.5929%" y="1428" width="1.7699%" height="15" fill="rgb(243,144,39)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1444" width="1.7699%" height="15" fill="rgb(250,50,5)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1454.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 1.77%)</title><rect x="66.5929%" y="1460" width="1.7699%" height="15" fill="rgb(207,67,11)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1470.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 1.77%)</title><rect x="66.5929%" y="1476" width="1.7699%" height="15" fill="rgb(245,204,40)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1486.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 1.77%)</title><rect x="66.5929%" y="1492" width="1.7699%" height="15" fill="rgb(238,228,24)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1502.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 1.77%)</title><rect x="66.5929%" y="1508" width="1.7699%" height="15" fill="rgb(217,116,22)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1518.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 1.77%)</title><rect x="66.5929%" y="1524" width="1.7699%" height="15" fill="rgb(234,98,12)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1534.50"></text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (8 samples, 1.77%)</title><rect x="66.5929%" y="1540" width="1.7699%" height="15" fill="rgb(242,170,50)" fg:x="301" fg:w="8"/><text x="66.8429%" y="1550.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.11%)</title><rect x="67.2566%" y="1556" width="1.1062%" height="15" fill="rgb(235,7,5)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="67.2566%" y="1572" width="1.1062%" height="15" fill="rgb(241,114,28)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="67.2566%" y="1588" width="1.1062%" height="15" fill="rgb(246,112,42)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="67.2566%" y="1604" width="1.1062%" height="15" fill="rgb(248,228,14)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="67.2566%" y="1620" width="1.1062%" height="15" fill="rgb(208,133,18)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="67.2566%" y="1636" width="1.1062%" height="15" fill="rgb(207,35,49)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="67.2566%" y="1652" width="1.1062%" height="15" fill="rgb(205,68,36)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1662.50"></text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (5 samples, 1.11%)</title><rect x="67.2566%" y="1668" width="1.1062%" height="15" fill="rgb(245,62,40)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.11%)</title><rect x="67.2566%" y="1684" width="1.1062%" height="15" fill="rgb(228,27,24)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="67.2566%" y="1700" width="1.1062%" height="15" fill="rgb(253,19,12)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="67.2566%" y="1716" width="1.1062%" height="15" fill="rgb(232,28,20)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="67.2566%" y="1732" width="1.1062%" height="15" fill="rgb(218,35,51)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="67.2566%" y="1748" width="1.1062%" height="15" fill="rgb(212,90,40)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="67.2566%" y="1764" width="1.1062%" height="15" fill="rgb(220,172,12)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="67.2566%" y="1780" width="1.1062%" height="15" fill="rgb(226,159,20)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1790.50"></text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (5 samples, 1.11%)</title><rect x="67.2566%" y="1796" width="1.1062%" height="15" fill="rgb(234,205,16)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1806.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 1.11%)</title><rect x="67.2566%" y="1812" width="1.1062%" height="15" fill="rgb(207,9,39)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 1.11%)</title><rect x="67.2566%" y="1828" width="1.1062%" height="15" fill="rgb(249,143,15)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 1.11%)</title><rect x="67.2566%" y="1844" width="1.1062%" height="15" fill="rgb(253,133,29)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 1.11%)</title><rect x="67.2566%" y="1860" width="1.1062%" height="15" fill="rgb(221,187,0)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 1.11%)</title><rect x="67.2566%" y="1876" width="1.1062%" height="15" fill="rgb(205,204,26)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 1.11%)</title><rect x="67.2566%" y="1892" width="1.1062%" height="15" fill="rgb(224,68,54)" fg:x="304" fg:w="5"/><text x="67.5066%" y="1902.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.22%)</title><rect x="68.1416%" y="1908" width="0.2212%" height="15" fill="rgb(209,67,4)" fg:x="308" fg:w="1"/><text x="68.3916%" y="1918.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.22%)</title><rect x="68.1416%" y="1924" width="0.2212%" height="15" fill="rgb(228,229,18)" fg:x="308" fg:w="1"/><text x="68.3916%" y="1934.50"></text></g><g><title><module> (ee/__init__.py:1) (14 samples, 3.10%)</title><rect x="65.4867%" y="516" width="3.0973%" height="15" fill="rgb(231,89,13)" fg:x="296" fg:w="14"/><text x="65.7367%" y="526.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (12 samples, 2.65%)</title><rect x="65.9292%" y="532" width="2.6549%" height="15" fill="rgb(210,182,18)" fg:x="298" fg:w="12"/><text x="66.1792%" y="542.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="65.9292%" y="548" width="2.6549%" height="15" fill="rgb(240,105,2)" fg:x="298" fg:w="12"/><text x="66.1792%" y="558.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.65%)</title><rect x="65.9292%" y="564" width="2.6549%" height="15" fill="rgb(207,170,50)" fg:x="298" fg:w="12"/><text x="66.1792%" y="574.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.65%)</title><rect x="65.9292%" y="580" width="2.6549%" height="15" fill="rgb(232,133,24)" fg:x="298" fg:w="12"/><text x="66.1792%" y="590.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.65%)</title><rect x="65.9292%" y="596" width="2.6549%" height="15" fill="rgb(235,166,27)" fg:x="298" fg:w="12"/><text x="66.1792%" y="606.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.65%)</title><rect x="65.9292%" y="612" width="2.6549%" height="15" fill="rgb(209,19,13)" fg:x="298" fg:w="12"/><text x="66.1792%" y="622.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="65.9292%" y="628" width="2.6549%" height="15" fill="rgb(226,79,39)" fg:x="298" fg:w="12"/><text x="66.1792%" y="638.50">_c..</text></g><g><title><module> (ee/batch.py:1) (12 samples, 2.65%)</title><rect x="65.9292%" y="644" width="2.6549%" height="15" fill="rgb(222,163,10)" fg:x="298" fg:w="12"/><text x="66.1792%" y="654.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (12 samples, 2.65%)</title><rect x="65.9292%" y="660" width="2.6549%" height="15" fill="rgb(214,44,19)" fg:x="298" fg:w="12"/><text x="66.1792%" y="670.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="65.9292%" y="676" width="2.6549%" height="15" fill="rgb(210,217,13)" fg:x="298" fg:w="12"/><text x="66.1792%" y="686.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 2.65%)</title><rect x="65.9292%" y="692" width="2.6549%" height="15" fill="rgb(237,61,54)" fg:x="298" fg:w="12"/><text x="66.1792%" y="702.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 2.65%)</title><rect x="65.9292%" y="708" width="2.6549%" height="15" fill="rgb(226,184,24)" fg:x="298" fg:w="12"/><text x="66.1792%" y="718.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 2.65%)</title><rect x="65.9292%" y="724" width="2.6549%" height="15" fill="rgb(223,226,4)" fg:x="298" fg:w="12"/><text x="66.1792%" y="734.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 2.65%)</title><rect x="65.9292%" y="740" width="2.6549%" height="15" fill="rgb(210,26,41)" fg:x="298" fg:w="12"/><text x="66.1792%" y="750.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 2.65%)</title><rect x="65.9292%" y="756" width="2.6549%" height="15" fill="rgb(220,221,6)" fg:x="298" fg:w="12"/><text x="66.1792%" y="766.50">_c..</text></g><g><title><module> (ee/data.py:1) (1 samples, 0.22%)</title><rect x="68.3628%" y="772" width="0.2212%" height="15" fill="rgb(225,89,49)" fg:x="309" fg:w="1"/><text x="68.6128%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.22%)</title><rect x="68.3628%" y="788" width="0.2212%" height="15" fill="rgb(218,70,45)" fg:x="309" fg:w="1"/><text x="68.6128%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="68.3628%" y="804" width="0.2212%" height="15" fill="rgb(238,166,21)" fg:x="309" fg:w="1"/><text x="68.6128%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="68.3628%" y="820" width="0.2212%" height="15" fill="rgb(224,141,44)" fg:x="309" fg:w="1"/><text x="68.6128%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="68.3628%" y="836" width="0.2212%" height="15" fill="rgb(230,12,49)" fg:x="309" fg:w="1"/><text x="68.6128%" y="846.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="68.3628%" y="852" width="0.2212%" height="15" fill="rgb(212,174,12)" fg:x="309" fg:w="1"/><text x="68.6128%" y="862.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="68.3628%" y="868" width="0.2212%" height="15" fill="rgb(246,67,9)" fg:x="309" fg:w="1"/><text x="68.6128%" y="878.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="68.3628%" y="884" width="0.2212%" height="15" fill="rgb(239,35,23)" fg:x="309" fg:w="1"/><text x="68.6128%" y="894.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="68.3628%" y="900" width="0.2212%" height="15" fill="rgb(211,167,0)" fg:x="309" fg:w="1"/><text x="68.6128%" y="910.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.22%)</title><rect x="68.3628%" y="916" width="0.2212%" height="15" fill="rgb(225,119,45)" fg:x="309" fg:w="1"/><text x="68.6128%" y="926.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.22%)</title><rect x="68.3628%" y="932" width="0.2212%" height="15" fill="rgb(210,162,6)" fg:x="309" fg:w="1"/><text x="68.6128%" y="942.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="68.3628%" y="948" width="0.2212%" height="15" fill="rgb(208,118,35)" fg:x="309" fg:w="1"/><text x="68.6128%" y="958.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="68.5841%" y="564" width="0.2212%" height="15" fill="rgb(239,4,53)" fg:x="310" fg:w="1"/><text x="68.8341%" y="574.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="68.5841%" y="580" width="0.2212%" height="15" fill="rgb(213,130,21)" fg:x="310" fg:w="1"/><text x="68.8341%" y="590.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.22%)</title><rect x="68.8053%" y="852" width="0.2212%" height="15" fill="rgb(235,148,0)" fg:x="311" fg:w="1"/><text x="69.0553%" y="862.50"></text></g><g><title><module> (pyproj/aoi.py:1) (2 samples, 0.44%)</title><rect x="68.8053%" y="788" width="0.4425%" height="15" fill="rgb(244,224,18)" fg:x="311" fg:w="2"/><text x="69.0553%" y="798.50"></text></g><g><title>dataclass (dataclasses.py:998) (2 samples, 0.44%)</title><rect x="68.8053%" y="804" width="0.4425%" height="15" fill="rgb(211,214,4)" fg:x="311" fg:w="2"/><text x="69.0553%" y="814.50"></text></g><g><title>wrap (dataclasses.py:1012) (2 samples, 0.44%)</title><rect x="68.8053%" y="820" width="0.4425%" height="15" fill="rgb(206,119,25)" fg:x="311" fg:w="2"/><text x="69.0553%" y="830.50"></text></g><g><title>_process_class (dataclasses.py:809) (2 samples, 0.44%)</title><rect x="68.8053%" y="836" width="0.4425%" height="15" fill="rgb(243,93,47)" fg:x="311" fg:w="2"/><text x="69.0553%" y="846.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.22%)</title><rect x="69.0265%" y="852" width="0.2212%" height="15" fill="rgb(224,194,6)" fg:x="312" fg:w="1"/><text x="69.2765%" y="862.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.22%)</title><rect x="69.0265%" y="868" width="0.2212%" height="15" fill="rgb(243,229,6)" fg:x="312" fg:w="1"/><text x="69.2765%" y="878.50"></text></g><g><title><module> (pyproj/crs/__init__.py:1) (3 samples, 0.66%)</title><rect x="68.8053%" y="612" width="0.6637%" height="15" fill="rgb(207,23,50)" fg:x="311" fg:w="3"/><text x="69.0553%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="68.8053%" y="628" width="0.6637%" height="15" fill="rgb(253,192,32)" fg:x="311" fg:w="3"/><text x="69.0553%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="68.8053%" y="644" width="0.6637%" height="15" fill="rgb(213,21,6)" fg:x="311" fg:w="3"/><text x="69.0553%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="68.8053%" y="660" width="0.6637%" height="15" fill="rgb(243,151,13)" fg:x="311" fg:w="3"/><text x="69.0553%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 0.66%)</title><rect x="68.8053%" y="676" width="0.6637%" height="15" fill="rgb(233,165,41)" fg:x="311" fg:w="3"/><text x="69.0553%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="68.8053%" y="692" width="0.6637%" height="15" fill="rgb(246,176,45)" fg:x="311" fg:w="3"/><text x="69.0553%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="68.8053%" y="708" width="0.6637%" height="15" fill="rgb(217,170,52)" fg:x="311" fg:w="3"/><text x="69.0553%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="68.8053%" y="724" width="0.6637%" height="15" fill="rgb(214,203,54)" fg:x="311" fg:w="3"/><text x="69.0553%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="68.8053%" y="740" width="0.6637%" height="15" fill="rgb(248,215,49)" fg:x="311" fg:w="3"/><text x="69.0553%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 0.66%)</title><rect x="68.8053%" y="756" width="0.6637%" height="15" fill="rgb(208,46,10)" fg:x="311" fg:w="3"/><text x="69.0553%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="68.8053%" y="772" width="0.6637%" height="15" fill="rgb(254,5,31)" fg:x="311" fg:w="3"/><text x="69.0553%" y="782.50"></text></g><g><title><module> (pyproj/geod.py:1) (1 samples, 0.22%)</title><rect x="69.2478%" y="788" width="0.2212%" height="15" fill="rgb(222,104,33)" fg:x="313" fg:w="1"/><text x="69.4978%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.22%)</title><rect x="69.2478%" y="804" width="0.2212%" height="15" fill="rgb(248,49,16)" fg:x="313" fg:w="1"/><text x="69.4978%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.22%)</title><rect x="69.2478%" y="820" width="0.2212%" height="15" fill="rgb(232,198,41)" fg:x="313" fg:w="1"/><text x="69.4978%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.22%)</title><rect x="69.2478%" y="836" width="0.2212%" height="15" fill="rgb(214,125,3)" fg:x="313" fg:w="1"/><text x="69.4978%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.22%)</title><rect x="69.2478%" y="852" width="0.2212%" height="15" fill="rgb(229,220,28)" fg:x="313" fg:w="1"/><text x="69.4978%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.22%)</title><rect x="69.2478%" y="868" width="0.2212%" height="15" fill="rgb(222,64,37)" fg:x="313" fg:w="1"/><text x="69.4978%" y="878.50"></text></g><g><title><module> (pyproj/network.py:1) (3 samples, 0.66%)</title><rect x="69.4690%" y="612" width="0.6637%" height="15" fill="rgb(249,184,13)" fg:x="314" fg:w="3"/><text x="69.7190%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 0.66%)</title><rect x="69.4690%" y="628" width="0.6637%" height="15" fill="rgb(252,176,6)" fg:x="314" fg:w="3"/><text x="69.7190%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 0.66%)</title><rect x="69.4690%" y="644" width="0.6637%" height="15" fill="rgb(228,153,7)" fg:x="314" fg:w="3"/><text x="69.7190%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 0.66%)</title><rect x="69.4690%" y="660" width="0.6637%" height="15" fill="rgb(242,193,5)" fg:x="314" fg:w="3"/><text x="69.7190%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 0.66%)</title><rect x="69.4690%" y="676" width="0.6637%" height="15" fill="rgb(232,140,9)" fg:x="314" fg:w="3"/><text x="69.7190%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 0.66%)</title><rect x="69.4690%" y="692" width="0.6637%" height="15" fill="rgb(213,222,16)" fg:x="314" fg:w="3"/><text x="69.7190%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 0.66%)</title><rect x="69.4690%" y="708" width="0.6637%" height="15" fill="rgb(222,75,50)" fg:x="314" fg:w="3"/><text x="69.7190%" y="718.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.22%)</title><rect x="70.3540%" y="756" width="0.2212%" height="15" fill="rgb(205,180,2)" fg:x="318" fg:w="1"/><text x="70.6040%" y="766.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.22%)</title><rect x="70.3540%" y="772" width="0.2212%" height="15" fill="rgb(216,34,7)" fg:x="318" fg:w="1"/><text x="70.6040%" y="782.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.22%)</title><rect x="70.3540%" y="788" width="0.2212%" height="15" fill="rgb(253,16,32)" fg:x="318" fg:w="1"/><text x="70.6040%" y="798.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.22%)</title><rect x="70.3540%" y="804" width="0.2212%" height="15" fill="rgb(208,97,28)" fg:x="318" fg:w="1"/><text x="70.6040%" y="814.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.22%)</title><rect x="70.3540%" y="820" width="0.2212%" height="15" fill="rgb(225,92,11)" fg:x="318" fg:w="1"/><text x="70.6040%" y="830.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (25 samples, 5.53%)</title><rect x="65.4867%" y="132" width="5.5310%" height="15" fill="rgb(243,38,12)" fg:x="296" fg:w="25"/><text x="65.7367%" y="142.50">guess_e..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (25 samples, 5.53%)</title><rect x="65.4867%" y="148" width="5.5310%" height="15" fill="rgb(208,139,16)" fg:x="296" fg:w="25"/><text x="65.7367%" y="158.50">list_en..</text></g><g><title>build_engines (xarray/backends/plugins.py:106) (25 samples, 5.53%)</title><rect x="65.4867%" y="164" width="5.5310%" height="15" fill="rgb(227,24,9)" fg:x="296" fg:w="25"/><text x="65.7367%" y="174.50">build_e..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (25 samples, 5.53%)</title><rect x="65.4867%" y="180" width="5.5310%" height="15" fill="rgb(206,62,11)" fg:x="296" fg:w="25"/><text x="65.7367%" y="190.50">backend..</text></g><g><title>load (importlib_metadata/__init__.py:178) (25 samples, 5.53%)</title><rect x="65.4867%" y="196" width="5.5310%" height="15" fill="rgb(228,134,27)" fg:x="296" fg:w="25"/><text x="65.7367%" y="206.50">load (i..</text></g><g><title>import_module (importlib/__init__.py:109) (25 samples, 5.53%)</title><rect x="65.4867%" y="212" width="5.5310%" height="15" fill="rgb(205,55,33)" fg:x="296" fg:w="25"/><text x="65.7367%" y="222.50">import_..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (25 samples, 5.53%)</title><rect x="65.4867%" y="228" width="5.5310%" height="15" fill="rgb(243,75,43)" fg:x="296" fg:w="25"/><text x="65.7367%" y="238.50">_gcd_im..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 5.53%)</title><rect x="65.4867%" y="244" width="5.5310%" height="15" fill="rgb(223,27,42)" fg:x="296" fg:w="25"/><text x="65.7367%" y="254.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 5.53%)</title><rect x="65.4867%" y="260" width="5.5310%" height="15" fill="rgb(232,189,33)" fg:x="296" fg:w="25"/><text x="65.7367%" y="270.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 5.53%)</title><rect x="65.4867%" y="276" width="5.5310%" height="15" fill="rgb(210,9,39)" fg:x="296" fg:w="25"/><text x="65.7367%" y="286.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 5.53%)</title><rect x="65.4867%" y="292" width="5.5310%" height="15" fill="rgb(242,85,26)" fg:x="296" fg:w="25"/><text x="65.7367%" y="302.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (25 samples, 5.53%)</title><rect x="65.4867%" y="308" width="5.5310%" height="15" fill="rgb(248,44,4)" fg:x="296" fg:w="25"/><text x="65.7367%" y="318.50">_call_w..</text></g><g><title><module> (xee/__init__.py:15) (25 samples, 5.53%)</title><rect x="65.4867%" y="324" width="5.5310%" height="15" fill="rgb(250,96,46)" fg:x="296" fg:w="25"/><text x="65.7367%" y="334.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 5.53%)</title><rect x="65.4867%" y="340" width="5.5310%" height="15" fill="rgb(229,116,26)" fg:x="296" fg:w="25"/><text x="65.7367%" y="350.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 5.53%)</title><rect x="65.4867%" y="356" width="5.5310%" height="15" fill="rgb(246,94,34)" fg:x="296" fg:w="25"/><text x="65.7367%" y="366.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 5.53%)</title><rect x="65.4867%" y="372" width="5.5310%" height="15" fill="rgb(251,73,21)" fg:x="296" fg:w="25"/><text x="65.7367%" y="382.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 5.53%)</title><rect x="65.4867%" y="388" width="5.5310%" height="15" fill="rgb(254,121,25)" fg:x="296" fg:w="25"/><text x="65.7367%" y="398.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (25 samples, 5.53%)</title><rect x="65.4867%" y="404" width="5.5310%" height="15" fill="rgb(215,161,49)" fg:x="296" fg:w="25"/><text x="65.7367%" y="414.50">_call_w..</text></g><g><title><module> (xee/ext.py:15) (25 samples, 5.53%)</title><rect x="65.4867%" y="420" width="5.5310%" height="15" fill="rgb(221,43,13)" fg:x="296" fg:w="25"/><text x="65.7367%" y="430.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (25 samples, 5.53%)</title><rect x="65.4867%" y="436" width="5.5310%" height="15" fill="rgb(249,5,37)" fg:x="296" fg:w="25"/><text x="65.7367%" y="446.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (25 samples, 5.53%)</title><rect x="65.4867%" y="452" width="5.5310%" height="15" fill="rgb(226,25,44)" fg:x="296" fg:w="25"/><text x="65.7367%" y="462.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (25 samples, 5.53%)</title><rect x="65.4867%" y="468" width="5.5310%" height="15" fill="rgb(238,189,16)" fg:x="296" fg:w="25"/><text x="65.7367%" y="478.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (25 samples, 5.53%)</title><rect x="65.4867%" y="484" width="5.5310%" height="15" fill="rgb(251,186,8)" fg:x="296" fg:w="25"/><text x="65.7367%" y="494.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (25 samples, 5.53%)</title><rect x="65.4867%" y="500" width="5.5310%" height="15" fill="rgb(254,34,31)" fg:x="296" fg:w="25"/><text x="65.7367%" y="510.50">_call_w..</text></g><g><title><module> (pyproj/__init__.py:1) (11 samples, 2.43%)</title><rect x="68.5841%" y="516" width="2.4336%" height="15" fill="rgb(225,215,27)" fg:x="310" fg:w="11"/><text x="68.8341%" y="526.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 2.43%)</title><rect x="68.5841%" y="532" width="2.4336%" height="15" fill="rgb(221,192,48)" fg:x="310" fg:w="11"/><text x="68.8341%" y="542.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 2.43%)</title><rect x="68.5841%" y="548" width="2.4336%" height="15" fill="rgb(219,137,20)" fg:x="310" fg:w="11"/><text x="68.8341%" y="558.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 2.21%)</title><rect x="68.8053%" y="564" width="2.2124%" height="15" fill="rgb(219,84,11)" fg:x="311" fg:w="10"/><text x="69.0553%" y="574.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 2.21%)</title><rect x="68.8053%" y="580" width="2.2124%" height="15" fill="rgb(224,10,23)" fg:x="311" fg:w="10"/><text x="69.0553%" y="590.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 2.21%)</title><rect x="68.8053%" y="596" width="2.2124%" height="15" fill="rgb(248,22,39)" fg:x="311" fg:w="10"/><text x="69.0553%" y="606.50">_..</text></g><g><title><module> (pyproj/proj.py:1) (4 samples, 0.88%)</title><rect x="70.1327%" y="612" width="0.8850%" height="15" fill="rgb(212,154,20)" fg:x="317" fg:w="4"/><text x="70.3827%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="70.1327%" y="628" width="0.8850%" height="15" fill="rgb(236,199,50)" fg:x="317" fg:w="4"/><text x="70.3827%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="70.1327%" y="644" width="0.8850%" height="15" fill="rgb(211,9,17)" fg:x="317" fg:w="4"/><text x="70.3827%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 0.88%)</title><rect x="70.1327%" y="660" width="0.8850%" height="15" fill="rgb(243,216,36)" fg:x="317" fg:w="4"/><text x="70.3827%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 0.88%)</title><rect x="70.1327%" y="676" width="0.8850%" height="15" fill="rgb(250,2,10)" fg:x="317" fg:w="4"/><text x="70.3827%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 0.88%)</title><rect x="70.1327%" y="692" width="0.8850%" height="15" fill="rgb(226,50,48)" fg:x="317" fg:w="4"/><text x="70.3827%" y="702.50"></text></g><g><title><module> (pyproj/transformer.py:1) (4 samples, 0.88%)</title><rect x="70.1327%" y="708" width="0.8850%" height="15" fill="rgb(243,81,16)" fg:x="317" fg:w="4"/><text x="70.3827%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 0.88%)</title><rect x="70.1327%" y="724" width="0.8850%" height="15" fill="rgb(250,14,2)" fg:x="317" fg:w="4"/><text x="70.3827%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 0.88%)</title><rect x="70.1327%" y="740" width="0.8850%" height="15" fill="rgb(233,135,29)" fg:x="317" fg:w="4"/><text x="70.3827%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="70.5752%" y="756" width="0.4425%" height="15" fill="rgb(224,64,43)" fg:x="319" fg:w="2"/><text x="70.8252%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.44%)</title><rect x="70.5752%" y="772" width="0.4425%" height="15" fill="rgb(238,84,13)" fg:x="319" fg:w="2"/><text x="70.8252%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="70.5752%" y="788" width="0.4425%" height="15" fill="rgb(253,48,26)" fg:x="319" fg:w="2"/><text x="70.8252%" y="798.50"></text></g><g><title><module> (pyproj/sync.py:1) (2 samples, 0.44%)</title><rect x="70.5752%" y="804" width="0.4425%" height="15" fill="rgb(205,223,31)" fg:x="319" fg:w="2"/><text x="70.8252%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.44%)</title><rect x="70.5752%" y="820" width="0.4425%" height="15" fill="rgb(221,41,32)" fg:x="319" fg:w="2"/><text x="70.8252%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.44%)</title><rect x="70.5752%" y="836" width="0.4425%" height="15" fill="rgb(213,158,31)" fg:x="319" fg:w="2"/><text x="70.8252%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.44%)</title><rect x="70.5752%" y="852" width="0.4425%" height="15" fill="rgb(245,126,43)" fg:x="319" fg:w="2"/><text x="70.8252%" y="862.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.44%)</title><rect x="70.5752%" y="868" width="0.4425%" height="15" fill="rgb(227,7,22)" fg:x="319" fg:w="2"/><text x="70.8252%" y="878.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.44%)</title><rect x="70.5752%" y="884" width="0.4425%" height="15" fill="rgb(252,90,44)" fg:x="319" fg:w="2"/><text x="70.8252%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.44%)</title><rect x="70.5752%" y="900" width="0.4425%" height="15" fill="rgb(253,91,0)" fg:x="319" fg:w="2"/><text x="70.8252%" y="910.50"></text></g><g><title>open_dataset (xarray/tutorial.py:81) (33 samples, 7.30%)</title><rect x="63.9381%" y="100" width="7.3009%" height="15" fill="rgb(252,175,49)" fg:x="289" fg:w="33"/><text x="64.1881%" y="110.50">open_datas..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (26 samples, 5.75%)</title><rect x="65.4867%" y="116" width="5.7522%" height="15" fill="rgb(246,150,1)" fg:x="296" fg:w="26"/><text x="65.7367%" y="126.50">open_da..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (1 samples, 0.22%)</title><rect x="71.0177%" y="132" width="0.2212%" height="15" fill="rgb(241,192,25)" fg:x="321" fg:w="1"/><text x="71.2677%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (1 samples, 0.22%)</title><rect x="71.0177%" y="148" width="0.2212%" height="15" fill="rgb(239,187,11)" fg:x="321" fg:w="1"/><text x="71.2677%" y="158.50"></text></g><g><title>decode_cf_variables (xarray/conventions.py:375) (1 samples, 0.22%)</title><rect x="71.0177%" y="164" width="0.2212%" height="15" fill="rgb(218,202,51)" fg:x="321" fg:w="1"/><text x="71.2677%" y="174.50"></text></g><g><title>decode_cf_variable (xarray/conventions.py:198) (1 samples, 0.22%)</title><rect x="71.0177%" y="180" width="0.2212%" height="15" fill="rgb(225,176,8)" fg:x="321" fg:w="1"/><text x="71.2677%" y="190.50"></text></g><g><title>decode (xarray/coding/times.py:824) (1 samples, 0.22%)</title><rect x="71.0177%" y="196" width="0.2212%" height="15" fill="rgb(219,122,41)" fg:x="321" fg:w="1"/><text x="71.2677%" y="206.50"></text></g><g><title>_decode_cf_datetime_dtype (xarray/coding/times.py:201) (1 samples, 0.22%)</title><rect x="71.0177%" y="212" width="0.2212%" height="15" fill="rgb(248,140,20)" fg:x="321" fg:w="1"/><text x="71.2677%" y="222.50"></text></g><g><title>decode_cf_datetime (xarray/coding/times.py:295) (1 samples, 0.22%)</title><rect x="71.0177%" y="228" width="0.2212%" height="15" fill="rgb(245,41,37)" fg:x="321" fg:w="1"/><text x="71.2677%" y="238.50"></text></g><g><title>_decode_datetime_with_pandas (xarray/coding/times.py:243) (1 samples, 0.22%)</title><rect x="71.0177%" y="244" width="0.2212%" height="15" fill="rgb(235,82,39)" fg:x="321" fg:w="1"/><text x="71.2677%" y="254.50"></text></g><g><title>nanosecond_precision_timestamp (xarray/core/pdcompat.py:97) (1 samples, 0.22%)</title><rect x="71.0177%" y="260" width="0.2212%" height="15" fill="rgb(230,108,42)" fg:x="321" fg:w="1"/><text x="71.2677%" y="270.50"></text></g><g><title>_compute_table_from_rel (dask_sql/context.py:847) (1 samples, 0.22%)</title><rect x="71.2389%" y="116" width="0.2212%" height="15" fill="rgb(215,150,50)" fg:x="322" fg:w="1"/><text x="71.4889%" y="126.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (1 samples, 0.22%)</title><rect x="71.2389%" y="132" width="0.2212%" height="15" fill="rgb(233,212,5)" fg:x="322" fg:w="1"/><text x="71.4889%" y="142.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/project.py:26) (1 samples, 0.22%)</title><rect x="71.2389%" y="148" width="0.2212%" height="15" fill="rgb(245,80,22)" fg:x="322" fg:w="1"/><text x="71.4889%" y="158.50"></text></g><g><title>assert_inputs (dask_sql/physical/rel/base.py:66) (1 samples, 0.22%)</title><rect x="71.2389%" y="164" width="0.2212%" height="15" fill="rgb(238,129,16)" fg:x="322" fg:w="1"/><text x="71.4889%" y="174.50"></text></g><g><title><listcomp> (dask_sql/physical/rel/base.py:86) (1 samples, 0.22%)</title><rect x="71.2389%" y="180" width="0.2212%" height="15" fill="rgb(240,19,0)" fg:x="322" fg:w="1"/><text x="71.4889%" y="190.50"></text></g><g><title>convert (dask_sql/physical/rel/convert.py:38) (1 samples, 0.22%)</title><rect x="71.2389%" y="196" width="0.2212%" height="15" fill="rgb(232,42,35)" fg:x="322" fg:w="1"/><text x="71.4889%" y="206.50"></text></g><g><title>convert (dask_sql/physical/rel/logical/aggregate.py:233) (1 samples, 0.22%)</title><rect x="71.2389%" y="212" width="0.2212%" height="15" fill="rgb(223,130,24)" fg:x="322" fg:w="1"/><text x="71.4889%" y="222.50"></text></g><g><title>_do_aggregations (dask_sql/physical/rel/logical/aggregate.py:288) (1 samples, 0.22%)</title><rect x="71.2389%" y="228" width="0.2212%" height="15" fill="rgb(237,16,22)" fg:x="322" fg:w="1"/><text x="71.4889%" y="238.50"></text></g><g><title>_perform_aggregation (dask_sql/physical/rel/logical/aggregate.py:522) (1 samples, 0.22%)</title><rect x="71.2389%" y="244" width="0.2212%" height="15" fill="rgb(248,192,20)" fg:x="322" fg:w="1"/><text x="71.4889%" y="254.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.22%)</title><rect x="71.2389%" y="260" width="0.2212%" height="15" fill="rgb(233,167,2)" fg:x="322" fg:w="1"/><text x="71.4889%" y="270.50"></text></g><g><title>wrapper (dask/dataframe/groupby.py:320) (1 samples, 0.22%)</title><rect x="71.2389%" y="276" width="0.2212%" height="15" fill="rgb(252,71,44)" fg:x="322" fg:w="1"/><text x="71.4889%" y="286.50"></text></g><g><title>agg (dask/dataframe/groupby.py:3017) (1 samples, 0.22%)</title><rect x="71.2389%" y="292" width="0.2212%" height="15" fill="rgb(238,37,47)" fg:x="322" fg:w="1"/><text x="71.4889%" y="302.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.22%)</title><rect x="71.2389%" y="308" width="0.2212%" height="15" fill="rgb(214,202,54)" fg:x="322" fg:w="1"/><text x="71.4889%" y="318.50"></text></g><g><title>aggregate (dask/dataframe/groupby.py:3001) (1 samples, 0.22%)</title><rect x="71.2389%" y="324" width="0.2212%" height="15" fill="rgb(254,165,40)" fg:x="322" fg:w="1"/><text x="71.4889%" y="334.50"></text></g><g><title>wrapper (dask/utils.py:219) (1 samples, 0.22%)</title><rect x="71.2389%" y="340" width="0.2212%" height="15" fill="rgb(246,173,38)" fg:x="322" fg:w="1"/><text x="71.4889%" y="350.50"></text></g><g><title>aggregate (dask/dataframe/groupby.py:2281) (1 samples, 0.22%)</title><rect x="71.2389%" y="356" width="0.2212%" height="15" fill="rgb(215,3,27)" fg:x="322" fg:w="1"/><text x="71.4889%" y="366.50"></text></g><g><title>apply_concat_apply (dask/dataframe/core.py:6947) (1 samples, 0.22%)</title><rect x="71.2389%" y="372" width="0.2212%" height="15" fill="rgb(239,169,51)" fg:x="322" fg:w="1"/><text x="71.4889%" y="382.50"></text></g><g><title>_emulate (dask/dataframe/core.py:7167) (1 samples, 0.22%)</title><rect x="71.2389%" y="388" width="0.2212%" height="15" fill="rgb(212,5,25)" fg:x="322" fg:w="1"/><text x="71.4889%" y="398.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (1 samples, 0.22%)</title><rect x="71.2389%" y="404" width="0.2212%" height="15" fill="rgb(243,45,17)" fg:x="322" fg:w="1"/><text x="71.4889%" y="414.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (1 samples, 0.22%)</title><rect x="71.2389%" y="420" width="0.2212%" height="15" fill="rgb(242,97,9)" fg:x="322" fg:w="1"/><text x="71.4889%" y="430.50"></text></g><g><title>__getitem__ (pandas/core/groupby/generic.py:1949) (1 samples, 0.22%)</title><rect x="71.2389%" y="436" width="0.2212%" height="15" fill="rgb(228,71,31)" fg:x="322" fg:w="1"/><text x="71.4889%" y="446.50"></text></g><g><title>__getitem__ (pandas/core/base.py:232) (1 samples, 0.22%)</title><rect x="71.2389%" y="452" width="0.2212%" height="15" fill="rgb(252,184,16)" fg:x="322" fg:w="1"/><text x="71.4889%" y="462.50"></text></g><g><title>__contains__ (pandas/core/generic.py:2010) (1 samples, 0.22%)</title><rect x="71.2389%" y="468" width="0.2212%" height="15" fill="rgb(236,169,46)" fg:x="322" fg:w="1"/><text x="71.4889%" y="478.50"></text></g><g><title>__contains__ (pandas/core/indexes/base.py:5299) (1 samples, 0.22%)</title><rect x="71.2389%" y="484" width="0.2212%" height="15" fill="rgb(207,17,47)" fg:x="322" fg:w="1"/><text x="71.4889%" y="494.50"></text></g><g><title>thread (0x2009E0240) (325 samples, 71.90%)</title><rect x="0.0000%" y="68" width="71.9027%" height="15" fill="rgb(206,201,28)" fg:x="0" fg:w="325"/><text x="0.2500%" y="78.50">thread (0x2009E0240)</text></g><g><title><module> (groupby_air_full.py:3) (292 samples, 64.60%)</title><rect x="7.3009%" y="84" width="64.6018%" height="15" fill="rgb(224,184,23)" fg:x="33" fg:w="292"/><text x="7.5509%" y="94.50"><module> (groupby_air_full.py:3)</text></g><g><title>sql (dask_sql/context.py:466) (3 samples, 0.66%)</title><rect x="71.2389%" y="100" width="0.6637%" height="15" fill="rgb(208,139,48)" fg:x="322" fg:w="3"/><text x="71.4889%" y="110.50"></text></g><g><title>_get_ral (dask_sql/context.py:798) (2 samples, 0.44%)</title><rect x="71.4602%" y="116" width="0.4425%" height="15" fill="rgb(208,130,10)" fg:x="323" fg:w="2"/><text x="71.7102%" y="126.50"></text></g><g><title>__init__ (dask/optimization.py:970) (1 samples, 0.22%)</title><rect x="72.7876%" y="756" width="0.2212%" height="15" fill="rgb(211,213,45)" fg:x="329" fg:w="1"/><text x="73.0376%" y="766.50"></text></g><g><title>__str__ (uuid.py:279) (1 samples, 0.22%)</title><rect x="72.7876%" y="772" width="0.2212%" height="15" fill="rgb(235,100,30)" fg:x="329" fg:w="1"/><text x="73.0376%" y="782.50"></text></g><g><title>dims (dask/blockwise.py:441) (1 samples, 0.22%)</title><rect x="73.0088%" y="756" width="0.2212%" height="15" fill="rgb(206,144,31)" fg:x="330" fg:w="1"/><text x="73.2588%" y="766.50"></text></g><g><title>_make_dims (dask/blockwise.py:1482) (1 samples, 0.22%)</title><rect x="73.0088%" y="772" width="0.2212%" height="15" fill="rgb(224,200,26)" fg:x="330" fg:w="1"/><text x="73.2588%" y="782.50"></text></g><g><title>broadcast_dimensions (dask/blockwise.py:1422) (1 samples, 0.22%)</title><rect x="73.0088%" y="788" width="0.2212%" height="15" fill="rgb(247,104,53)" fg:x="330" fg:w="1"/><text x="73.2588%" y="798.50"></text></g><g><title><dictcomp> (dask/blockwise.py:1469) (1 samples, 0.22%)</title><rect x="73.0088%" y="804" width="0.2212%" height="15" fill="rgb(220,14,17)" fg:x="330" fg:w="1"/><text x="73.2588%" y="814.50"></text></g><g><title>fuse (dask/optimization.py:452) (1 samples, 0.22%)</title><rect x="73.2301%" y="756" width="0.2212%" height="15" fill="rgb(230,140,40)" fg:x="331" fg:w="1"/><text x="73.4801%" y="766.50"></text></g><g><title>get (dask/config.py:525) (1 samples, 0.22%)</title><rect x="73.2301%" y="772" width="0.2212%" height="15" fill="rgb(229,2,41)" fg:x="331" fg:w="1"/><text x="73.4801%" y="782.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="71.9027%" y="372" width="1.7699%" height="15" fill="rgb(232,89,16)" fg:x="325" fg:w="8"/><text x="72.1527%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="71.9027%" y="388" width="1.7699%" height="15" fill="rgb(247,59,52)" fg:x="325" fg:w="8"/><text x="72.1527%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="71.9027%" y="404" width="1.7699%" height="15" fill="rgb(226,110,21)" fg:x="325" fg:w="8"/><text x="72.1527%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="71.9027%" y="420" width="1.7699%" height="15" fill="rgb(224,176,43)" fg:x="325" fg:w="8"/><text x="72.1527%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.77%)</title><rect x="71.9027%" y="436" width="1.7699%" height="15" fill="rgb(221,73,6)" fg:x="325" fg:w="8"/><text x="72.1527%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.77%)</title><rect x="71.9027%" y="452" width="1.7699%" height="15" fill="rgb(232,78,19)" fg:x="325" fg:w="8"/><text x="72.1527%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.77%)</title><rect x="71.9027%" y="468" width="1.7699%" height="15" fill="rgb(233,112,48)" fg:x="325" fg:w="8"/><text x="72.1527%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.77%)</title><rect x="71.9027%" y="484" width="1.7699%" height="15" fill="rgb(243,131,47)" fg:x="325" fg:w="8"/><text x="72.1527%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.77%)</title><rect x="71.9027%" y="500" width="1.7699%" height="15" fill="rgb(226,51,1)" fg:x="325" fg:w="8"/><text x="72.1527%" y="510.50"></text></g><g><title>values (xarray/core/dataarray.py:750) (4 samples, 0.88%)</title><rect x="72.7876%" y="516" width="0.8850%" height="15" fill="rgb(247,58,7)" fg:x="329" fg:w="4"/><text x="73.0376%" y="526.50"></text></g><g><title>values (xarray/core/variable.py:613) (4 samples, 0.88%)</title><rect x="72.7876%" y="532" width="0.8850%" height="15" fill="rgb(209,7,32)" fg:x="329" fg:w="4"/><text x="73.0376%" y="542.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (4 samples, 0.88%)</title><rect x="72.7876%" y="548" width="0.8850%" height="15" fill="rgb(209,39,41)" fg:x="329" fg:w="4"/><text x="73.0376%" y="558.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (4 samples, 0.88%)</title><rect x="72.7876%" y="564" width="0.8850%" height="15" fill="rgb(226,182,46)" fg:x="329" fg:w="4"/><text x="73.0376%" y="574.50"></text></g><g><title>compute (dask/base.py:355) (4 samples, 0.88%)</title><rect x="72.7876%" y="580" width="0.8850%" height="15" fill="rgb(230,219,10)" fg:x="329" fg:w="4"/><text x="73.0376%" y="590.50"></text></g><g><title>compute (dask/base.py:603) (4 samples, 0.88%)</title><rect x="72.7876%" y="596" width="0.8850%" height="15" fill="rgb(227,175,30)" fg:x="329" fg:w="4"/><text x="73.0376%" y="606.50"></text></g><g><title>collections_to_dsk (dask/base.py:417) (4 samples, 0.88%)</title><rect x="72.7876%" y="612" width="0.8850%" height="15" fill="rgb(217,2,50)" fg:x="329" fg:w="4"/><text x="73.0376%" y="622.50"></text></g><g><title>optimize (dask/array/optimization.py:27) (4 samples, 0.88%)</title><rect x="72.7876%" y="628" width="0.8850%" height="15" fill="rgb(229,160,0)" fg:x="329" fg:w="4"/><text x="73.0376%" y="638.50"></text></g><g><title>get_all_dependencies (dask/highlevelgraph.py:586) (4 samples, 0.88%)</title><rect x="72.7876%" y="644" width="0.8850%" height="15" fill="rgb(207,78,37)" fg:x="329" fg:w="4"/><text x="73.0376%" y="654.50"></text></g><g><title>keys (dask/highlevelgraph.py:549) (4 samples, 0.88%)</title><rect x="72.7876%" y="660" width="0.8850%" height="15" fill="rgb(225,57,0)" fg:x="329" fg:w="4"/><text x="73.0376%" y="670.50"></text></g><g><title>to_dict (dask/highlevelgraph.py:541) (4 samples, 0.88%)</title><rect x="72.7876%" y="676" width="0.8850%" height="15" fill="rgb(232,154,2)" fg:x="329" fg:w="4"/><text x="73.0376%" y="686.50"></text></g><g><title>ensure_dict (dask/utils.py:1379) (4 samples, 0.88%)</title><rect x="72.7876%" y="692" width="0.8850%" height="15" fill="rgb(241,212,25)" fg:x="329" fg:w="4"/><text x="73.0376%" y="702.50"></text></g><g><title>__iter__ (_collections_abc.py:825) (4 samples, 0.88%)</title><rect x="72.7876%" y="708" width="0.8850%" height="15" fill="rgb(226,69,20)" fg:x="329" fg:w="4"/><text x="73.0376%" y="718.50"></text></g><g><title>__iter__ (dask/blockwise.py:494) (4 samples, 0.88%)</title><rect x="72.7876%" y="724" width="0.8850%" height="15" fill="rgb(247,184,54)" fg:x="329" fg:w="4"/><text x="73.0376%" y="734.50"></text></g><g><title>_dict (dask/blockwise.py:453) (4 samples, 0.88%)</title><rect x="72.7876%" y="740" width="0.8850%" height="15" fill="rgb(210,145,0)" fg:x="329" fg:w="4"/><text x="73.0376%" y="750.50"></text></g><g><title>make_blockwise_graph (dask/blockwise.py:761) (1 samples, 0.22%)</title><rect x="73.4513%" y="756" width="0.2212%" height="15" fill="rgb(253,82,12)" fg:x="332" fg:w="1"/><text x="73.7013%" y="766.50"></text></g><g><title><genexpr> (dask/core.py:127) (9 samples, 1.99%)</title><rect x="71.9027%" y="340" width="1.9912%" height="15" fill="rgb(245,42,11)" fg:x="325" fg:w="9"/><text x="72.1527%" y="350.50"><..</text></g><g><title>_execute_task (dask/core.py:90) (9 samples, 1.99%)</title><rect x="71.9027%" y="356" width="1.9912%" height="15" fill="rgb(219,147,32)" fg:x="325" fg:w="9"/><text x="72.1527%" y="366.50">_..</text></g><g><title>assign (dask/dataframe/methods.py:352) (1 samples, 0.22%)</title><rect x="73.6726%" y="372" width="0.2212%" height="15" fill="rgb(246,12,7)" fg:x="333" fg:w="1"/><text x="73.9226%" y="382.50"></text></g><g><title>__setitem__ (pandas/core/frame.py:4065) (1 samples, 0.22%)</title><rect x="73.6726%" y="388" width="0.2212%" height="15" fill="rgb(243,50,9)" fg:x="333" fg:w="1"/><text x="73.9226%" y="398.50"></text></g><g><title>_set_item (pandas/core/frame.py:4293) (1 samples, 0.22%)</title><rect x="73.6726%" y="404" width="0.2212%" height="15" fill="rgb(219,149,6)" fg:x="333" fg:w="1"/><text x="73.9226%" y="414.50"></text></g><g><title>_set_item_mgr (pandas/core/frame.py:4260) (1 samples, 0.22%)</title><rect x="73.6726%" y="420" width="0.2212%" height="15" fill="rgb(241,51,42)" fg:x="333" fg:w="1"/><text x="73.9226%" y="430.50"></text></g><g><title>insert (pandas/core/internals/managers.py:1311) (1 samples, 0.22%)</title><rect x="73.6726%" y="436" width="0.2212%" height="15" fill="rgb(226,128,27)" fg:x="333" fg:w="1"/><text x="73.9226%" y="446.50"></text></g><g><title>_insert_update_blklocs_and_blknos (pandas/core/internals/managers.py:1371) (1 samples, 0.22%)</title><rect x="73.6726%" y="452" width="0.2212%" height="15" fill="rgb(244,144,4)" fg:x="333" fg:w="1"/><text x="73.9226%" y="462.50"></text></g><g><title>append (numpy/lib/function_base.py:5562) (1 samples, 0.22%)</title><rect x="73.6726%" y="468" width="0.2212%" height="15" fill="rgb(221,4,13)" fg:x="333" fg:w="1"/><text x="73.9226%" y="478.50"></text></g><g><title>_index_as_unique (pandas/core/indexes/base.py:6238) (1 samples, 0.22%)</title><rect x="73.8938%" y="372" width="0.2212%" height="15" fill="rgb(208,170,28)" fg:x="334" fg:w="1"/><text x="74.1438%" y="382.50"></text></g><g><title>is_unique (pandas/core/indexes/base.py:2292) (1 samples, 0.22%)</title><rect x="73.8938%" y="388" width="0.2212%" height="15" fill="rgb(226,131,13)" fg:x="334" fg:w="1"/><text x="74.1438%" y="398.50"></text></g><g><title>_engine (pandas/core/indexes/base.py:841) (1 samples, 0.22%)</title><rect x="73.8938%" y="404" width="0.2212%" height="15" fill="rgb(215,72,41)" fg:x="334" fg:w="1"/><text x="74.1438%" y="414.50"></text></g><g><title>_get_engine_target (pandas/core/indexes/base.py:5152) (1 samples, 0.22%)</title><rect x="73.8938%" y="420" width="0.2212%" height="15" fill="rgb(243,108,20)" fg:x="334" fg:w="1"/><text x="74.1438%" y="430.50"></text></g><g><title>__instancecheck__ (abc.py:117) (1 samples, 0.22%)</title><rect x="73.8938%" y="436" width="0.2212%" height="15" fill="rgb(230,189,17)" fg:x="334" fg:w="1"/><text x="74.1438%" y="446.50"></text></g><g><title><genexpr> (dask/core.py:127) (11 samples, 2.43%)</title><rect x="71.9027%" y="276" width="2.4336%" height="15" fill="rgb(220,50,17)" fg:x="325" fg:w="11"/><text x="72.1527%" y="286.50"><g..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 2.43%)</title><rect x="71.9027%" y="292" width="2.4336%" height="15" fill="rgb(248,152,48)" fg:x="325" fg:w="11"/><text x="72.1527%" y="302.50">_e..</text></g><g><title><listcomp> (dask/core.py:121) (11 samples, 2.43%)</title><rect x="71.9027%" y="308" width="2.4336%" height="15" fill="rgb(244,91,11)" fg:x="325" fg:w="11"/><text x="72.1527%" y="318.50"><l..</text></g><g><title>_execute_task (dask/core.py:90) (11 samples, 2.43%)</title><rect x="71.9027%" y="324" width="2.4336%" height="15" fill="rgb(220,157,5)" fg:x="325" fg:w="11"/><text x="72.1527%" y="334.50">_e..</text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (2 samples, 0.44%)</title><rect x="73.8938%" y="340" width="0.4425%" height="15" fill="rgb(253,137,8)" fg:x="334" fg:w="2"/><text x="74.1438%" y="350.50"></text></g><g><title>_get_indexer_strict (pandas/core/indexes/base.py:6100) (2 samples, 0.44%)</title><rect x="73.8938%" y="356" width="0.4425%" height="15" fill="rgb(217,137,51)" fg:x="334" fg:w="2"/><text x="74.1438%" y="366.50"></text></g><g><title>get_indexer_for (pandas/core/indexes/base.py:6076) (1 samples, 0.22%)</title><rect x="74.1150%" y="372" width="0.2212%" height="15" fill="rgb(218,209,53)" fg:x="335" fg:w="1"/><text x="74.3650%" y="382.50"></text></g><g><title>get_indexer (pandas/core/indexes/base.py:3858) (1 samples, 0.22%)</title><rect x="74.1150%" y="388" width="0.2212%" height="15" fill="rgb(249,137,25)" fg:x="335" fg:w="1"/><text x="74.3650%" y="398.50"></text></g><g><title>_maybe_cast_listlike_indexer (pandas/core/indexes/base.py:6618) (1 samples, 0.22%)</title><rect x="74.1150%" y="404" width="0.2212%" height="15" fill="rgb(239,155,26)" fg:x="335" fg:w="1"/><text x="74.3650%" y="414.50"></text></g><g><title>ensure_index (pandas/core/indexes/base.py:7512) (1 samples, 0.22%)</title><rect x="74.1150%" y="420" width="0.2212%" height="15" fill="rgb(227,85,46)" fg:x="335" fg:w="1"/><text x="74.3650%" y="430.50"></text></g><g><title>__new__ (pandas/core/indexes/base.py:477) (1 samples, 0.22%)</title><rect x="74.1150%" y="436" width="0.2212%" height="15" fill="rgb(251,107,43)" fg:x="335" fg:w="1"/><text x="74.3650%" y="446.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.22%)</title><rect x="74.1150%" y="452" width="0.2212%" height="15" fill="rgb(234,170,33)" fg:x="335" fg:w="1"/><text x="74.3650%" y="462.50"></text></g><g><title>maybe_infer_to_datetimelike (pandas/core/dtypes/cast.py:1147) (1 samples, 0.22%)</title><rect x="74.1150%" y="468" width="0.2212%" height="15" fill="rgb(206,29,35)" fg:x="335" fg:w="1"/><text x="74.3650%" y="478.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (4 samples, 0.88%)</title><rect x="74.3363%" y="436" width="0.8850%" height="15" fill="rgb(227,138,25)" fg:x="336" fg:w="4"/><text x="74.5863%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (4 samples, 0.88%)</title><rect x="74.3363%" y="452" width="0.8850%" height="15" fill="rgb(249,131,35)" fg:x="336" fg:w="4"/><text x="74.5863%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (4 samples, 0.88%)</title><rect x="74.3363%" y="468" width="0.8850%" height="15" fill="rgb(239,6,40)" fg:x="336" fg:w="4"/><text x="74.5863%" y="478.50"></text></g><g><title>_get_output_shape (pandas/core/groupby/ops.py:247) (1 samples, 0.22%)</title><rect x="75.0000%" y="484" width="0.2212%" height="15" fill="rgb(246,136,47)" fg:x="339" fg:w="1"/><text x="75.2500%" y="494.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.22%)</title><rect x="75.2212%" y="484" width="0.2212%" height="15" fill="rgb(253,58,26)" fg:x="340" fg:w="1"/><text x="75.4712%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.22%)</title><rect x="75.2212%" y="500" width="0.2212%" height="15" fill="rgb(237,141,10)" fg:x="340" fg:w="1"/><text x="75.4712%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.22%)</title><rect x="75.2212%" y="516" width="0.2212%" height="15" fill="rgb(234,156,12)" fg:x="340" fg:w="1"/><text x="75.4712%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.22%)</title><rect x="75.2212%" y="532" width="0.2212%" height="15" fill="rgb(243,224,36)" fg:x="340" fg:w="1"/><text x="75.4712%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.22%)</title><rect x="75.2212%" y="548" width="0.2212%" height="15" fill="rgb(205,229,51)" fg:x="340" fg:w="1"/><text x="75.4712%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.22%)</title><rect x="75.2212%" y="564" width="0.2212%" height="15" fill="rgb(223,189,4)" fg:x="340" fg:w="1"/><text x="75.4712%" y="574.50"></text></g><g><title>__call__ (dask/optimization.py:992) (17 samples, 3.76%)</title><rect x="71.9027%" y="228" width="3.7611%" height="15" fill="rgb(249,167,54)" fg:x="325" fg:w="17"/><text x="72.1527%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (17 samples, 3.76%)</title><rect x="71.9027%" y="244" width="3.7611%" height="15" fill="rgb(218,34,28)" fg:x="325" fg:w="17"/><text x="72.1527%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (17 samples, 3.76%)</title><rect x="71.9027%" y="260" width="3.7611%" height="15" fill="rgb(232,109,42)" fg:x="325" fg:w="17"/><text x="72.1527%" y="270.50">_exe..</text></g><g><title>apply (dask/utils.py:46) (6 samples, 1.33%)</title><rect x="74.3363%" y="276" width="1.3274%" height="15" fill="rgb(248,214,46)" fg:x="336" fg:w="6"/><text x="74.5863%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (6 samples, 1.33%)</title><rect x="74.3363%" y="292" width="1.3274%" height="15" fill="rgb(244,216,40)" fg:x="336" fg:w="6"/><text x="74.5863%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (6 samples, 1.33%)</title><rect x="74.3363%" y="308" width="1.3274%" height="15" fill="rgb(231,226,31)" fg:x="336" fg:w="6"/><text x="74.5863%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (6 samples, 1.33%)</title><rect x="74.3363%" y="324" width="1.3274%" height="15" fill="rgb(238,38,43)" fg:x="336" fg:w="6"/><text x="74.5863%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (6 samples, 1.33%)</title><rect x="74.3363%" y="340" width="1.3274%" height="15" fill="rgb(208,88,43)" fg:x="336" fg:w="6"/><text x="74.5863%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (6 samples, 1.33%)</title><rect x="74.3363%" y="356" width="1.3274%" height="15" fill="rgb(205,136,37)" fg:x="336" fg:w="6"/><text x="74.5863%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (6 samples, 1.33%)</title><rect x="74.3363%" y="372" width="1.3274%" height="15" fill="rgb(237,34,14)" fg:x="336" fg:w="6"/><text x="74.5863%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (6 samples, 1.33%)</title><rect x="74.3363%" y="388" width="1.3274%" height="15" fill="rgb(236,193,44)" fg:x="336" fg:w="6"/><text x="74.5863%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (6 samples, 1.33%)</title><rect x="74.3363%" y="404" width="1.3274%" height="15" fill="rgb(231,48,10)" fg:x="336" fg:w="6"/><text x="74.5863%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (6 samples, 1.33%)</title><rect x="74.3363%" y="420" width="1.3274%" height="15" fill="rgb(213,141,34)" fg:x="336" fg:w="6"/><text x="74.5863%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (2 samples, 0.44%)</title><rect x="75.2212%" y="436" width="0.4425%" height="15" fill="rgb(249,130,34)" fg:x="340" fg:w="2"/><text x="75.4712%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.44%)</title><rect x="75.2212%" y="452" width="0.4425%" height="15" fill="rgb(219,42,41)" fg:x="340" fg:w="2"/><text x="75.4712%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.44%)</title><rect x="75.2212%" y="468" width="0.4425%" height="15" fill="rgb(224,100,54)" fg:x="340" fg:w="2"/><text x="75.4712%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.22%)</title><rect x="75.4425%" y="484" width="0.2212%" height="15" fill="rgb(229,200,27)" fg:x="341" fg:w="1"/><text x="75.6925%" y="494.50"></text></g><g><title>thread (0x303474000) (18 samples, 3.98%)</title><rect x="71.9027%" y="68" width="3.9823%" height="15" fill="rgb(217,118,10)" fg:x="325" fg:w="18"/><text x="72.1527%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (18 samples, 3.98%)</title><rect x="71.9027%" y="84" width="3.9823%" height="15" fill="rgb(206,22,3)" fg:x="325" fg:w="18"/><text x="72.1527%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (18 samples, 3.98%)</title><rect x="71.9027%" y="100" width="3.9823%" height="15" fill="rgb(232,163,46)" fg:x="325" fg:w="18"/><text x="72.1527%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (18 samples, 3.98%)</title><rect x="71.9027%" y="116" width="3.9823%" height="15" fill="rgb(206,95,13)" fg:x="325" fg:w="18"/><text x="72.1527%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (18 samples, 3.98%)</title><rect x="71.9027%" y="132" width="3.9823%" height="15" fill="rgb(253,154,18)" fg:x="325" fg:w="18"/><text x="72.1527%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (18 samples, 3.98%)</title><rect x="71.9027%" y="148" width="3.9823%" height="15" fill="rgb(219,32,23)" fg:x="325" fg:w="18"/><text x="72.1527%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (18 samples, 3.98%)</title><rect x="71.9027%" y="164" width="3.9823%" height="15" fill="rgb(230,191,45)" fg:x="325" fg:w="18"/><text x="72.1527%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (18 samples, 3.98%)</title><rect x="71.9027%" y="180" width="3.9823%" height="15" fill="rgb(229,64,36)" fg:x="325" fg:w="18"/><text x="72.1527%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (18 samples, 3.98%)</title><rect x="71.9027%" y="196" width="3.9823%" height="15" fill="rgb(205,129,25)" fg:x="325" fg:w="18"/><text x="72.1527%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (18 samples, 3.98%)</title><rect x="71.9027%" y="212" width="3.9823%" height="15" fill="rgb(254,112,7)" fg:x="325" fg:w="18"/><text x="72.1527%" y="222.50">_exe..</text></g><g><title>pipe (toolz/functoolz.py:607) (1 samples, 0.22%)</title><rect x="75.6637%" y="228" width="0.2212%" height="15" fill="rgb(226,53,48)" fg:x="342" fg:w="1"/><text x="75.9137%" y="238.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (1 samples, 0.22%)</title><rect x="75.6637%" y="244" width="0.2212%" height="15" fill="rgb(214,153,38)" fg:x="342" fg:w="1"/><text x="75.9137%" y="254.50"></text></g><g><title>_apply_func_to_columns (dask/dataframe/groupby.py:1279) (1 samples, 0.22%)</title><rect x="75.6637%" y="260" width="0.2212%" height="15" fill="rgb(243,101,7)" fg:x="342" fg:w="1"/><text x="75.9137%" y="270.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:491) (1 samples, 0.22%)</title><rect x="75.6637%" y="276" width="0.2212%" height="15" fill="rgb(240,140,22)" fg:x="342" fg:w="1"/><text x="75.9137%" y="286.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (1 samples, 0.22%)</title><rect x="75.6637%" y="292" width="0.2212%" height="15" fill="rgb(235,114,2)" fg:x="342" fg:w="1"/><text x="75.9137%" y="302.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (1 samples, 0.22%)</title><rect x="75.6637%" y="308" width="0.2212%" height="15" fill="rgb(242,59,12)" fg:x="342" fg:w="1"/><text x="75.9137%" y="318.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (1 samples, 0.22%)</title><rect x="75.6637%" y="324" width="0.2212%" height="15" fill="rgb(252,134,9)" fg:x="342" fg:w="1"/><text x="75.9137%" y="334.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (1 samples, 0.22%)</title><rect x="75.6637%" y="340" width="0.2212%" height="15" fill="rgb(236,4,44)" fg:x="342" fg:w="1"/><text x="75.9137%" y="350.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (1 samples, 0.22%)</title><rect x="75.6637%" y="356" width="0.2212%" height="15" fill="rgb(254,172,41)" fg:x="342" fg:w="1"/><text x="75.9137%" y="366.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (1 samples, 0.22%)</title><rect x="75.6637%" y="372" width="0.2212%" height="15" fill="rgb(244,63,20)" fg:x="342" fg:w="1"/><text x="75.9137%" y="382.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (1 samples, 0.22%)</title><rect x="75.6637%" y="388" width="0.2212%" height="15" fill="rgb(250,73,31)" fg:x="342" fg:w="1"/><text x="75.9137%" y="398.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (1 samples, 0.22%)</title><rect x="75.6637%" y="404" width="0.2212%" height="15" fill="rgb(241,38,36)" fg:x="342" fg:w="1"/><text x="75.9137%" y="414.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (1 samples, 0.22%)</title><rect x="75.6637%" y="420" width="0.2212%" height="15" fill="rgb(245,211,2)" fg:x="342" fg:w="1"/><text x="75.9137%" y="430.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.22%)</title><rect x="75.6637%" y="436" width="0.2212%" height="15" fill="rgb(206,120,28)" fg:x="342" fg:w="1"/><text x="75.9137%" y="446.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.22%)</title><rect x="75.6637%" y="452" width="0.2212%" height="15" fill="rgb(211,59,34)" fg:x="342" fg:w="1"/><text x="75.9137%" y="462.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.22%)</title><rect x="75.6637%" y="468" width="0.2212%" height="15" fill="rgb(233,168,5)" fg:x="342" fg:w="1"/><text x="75.9137%" y="478.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.22%)</title><rect x="75.6637%" y="484" width="0.2212%" height="15" fill="rgb(234,33,13)" fg:x="342" fg:w="1"/><text x="75.9137%" y="494.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.22%)</title><rect x="75.6637%" y="500" width="0.2212%" height="15" fill="rgb(231,150,26)" fg:x="342" fg:w="1"/><text x="75.9137%" y="510.50"></text></g><g><title>factorize (pandas/core/base.py:1177) (1 samples, 0.22%)</title><rect x="75.6637%" y="516" width="0.2212%" height="15" fill="rgb(217,191,4)" fg:x="342" fg:w="1"/><text x="75.9137%" y="526.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.22%)</title><rect x="75.6637%" y="532" width="0.2212%" height="15" fill="rgb(246,198,38)" fg:x="342" fg:w="1"/><text x="75.9137%" y="542.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.22%)</title><rect x="75.6637%" y="548" width="0.2212%" height="15" fill="rgb(245,64,37)" fg:x="342" fg:w="1"/><text x="75.9137%" y="558.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="75.8850%" y="276" width="1.7699%" height="15" fill="rgb(250,30,36)" fg:x="343" fg:w="8"/><text x="76.1350%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="75.8850%" y="292" width="1.7699%" height="15" fill="rgb(217,86,53)" fg:x="343" fg:w="8"/><text x="76.1350%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.77%)</title><rect x="75.8850%" y="308" width="1.7699%" height="15" fill="rgb(228,157,16)" fg:x="343" fg:w="8"/><text x="76.1350%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="75.8850%" y="324" width="1.7699%" height="15" fill="rgb(217,59,31)" fg:x="343" fg:w="8"/><text x="76.1350%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="75.8850%" y="340" width="1.7699%" height="15" fill="rgb(237,138,41)" fg:x="343" fg:w="8"/><text x="76.1350%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="75.8850%" y="356" width="1.7699%" height="15" fill="rgb(227,91,49)" fg:x="343" fg:w="8"/><text x="76.1350%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="75.8850%" y="372" width="1.7699%" height="15" fill="rgb(247,21,44)" fg:x="343" fg:w="8"/><text x="76.1350%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="75.8850%" y="388" width="1.7699%" height="15" fill="rgb(219,210,51)" fg:x="343" fg:w="8"/><text x="76.1350%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="75.8850%" y="404" width="1.7699%" height="15" fill="rgb(209,140,6)" fg:x="343" fg:w="8"/><text x="76.1350%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="75.8850%" y="420" width="1.7699%" height="15" fill="rgb(221,188,24)" fg:x="343" fg:w="8"/><text x="76.1350%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (8 samples, 1.77%)</title><rect x="75.8850%" y="436" width="1.7699%" height="15" fill="rgb(232,154,20)" fg:x="343" fg:w="8"/><text x="76.1350%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (8 samples, 1.77%)</title><rect x="75.8850%" y="452" width="1.7699%" height="15" fill="rgb(244,137,50)" fg:x="343" fg:w="8"/><text x="76.1350%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (8 samples, 1.77%)</title><rect x="75.8850%" y="468" width="1.7699%" height="15" fill="rgb(225,185,43)" fg:x="343" fg:w="8"/><text x="76.1350%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (8 samples, 1.77%)</title><rect x="75.8850%" y="484" width="1.7699%" height="15" fill="rgb(213,205,38)" fg:x="343" fg:w="8"/><text x="76.1350%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (8 samples, 1.77%)</title><rect x="75.8850%" y="500" width="1.7699%" height="15" fill="rgb(236,73,12)" fg:x="343" fg:w="8"/><text x="76.1350%" y="510.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (1 samples, 0.22%)</title><rect x="77.6549%" y="436" width="0.2212%" height="15" fill="rgb(235,219,13)" fg:x="351" fg:w="1"/><text x="77.9049%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (1 samples, 0.22%)</title><rect x="77.6549%" y="452" width="0.2212%" height="15" fill="rgb(218,59,36)" fg:x="351" fg:w="1"/><text x="77.9049%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (1 samples, 0.22%)</title><rect x="77.6549%" y="468" width="0.2212%" height="15" fill="rgb(205,110,39)" fg:x="351" fg:w="1"/><text x="77.9049%" y="478.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (2 samples, 0.44%)</title><rect x="77.8761%" y="436" width="0.4425%" height="15" fill="rgb(218,206,42)" fg:x="352" fg:w="2"/><text x="78.1261%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.44%)</title><rect x="77.8761%" y="452" width="0.4425%" height="15" fill="rgb(248,125,24)" fg:x="352" fg:w="2"/><text x="78.1261%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.44%)</title><rect x="77.8761%" y="468" width="0.4425%" height="15" fill="rgb(242,28,27)" fg:x="352" fg:w="2"/><text x="78.1261%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (2 samples, 0.44%)</title><rect x="77.8761%" y="484" width="0.4425%" height="15" fill="rgb(216,228,15)" fg:x="352" fg:w="2"/><text x="78.1261%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (2 samples, 0.44%)</title><rect x="77.8761%" y="500" width="0.4425%" height="15" fill="rgb(235,116,46)" fg:x="352" fg:w="2"/><text x="78.1261%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (2 samples, 0.44%)</title><rect x="77.8761%" y="516" width="0.4425%" height="15" fill="rgb(224,18,32)" fg:x="352" fg:w="2"/><text x="78.1261%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (2 samples, 0.44%)</title><rect x="77.8761%" y="532" width="0.4425%" height="15" fill="rgb(252,5,12)" fg:x="352" fg:w="2"/><text x="78.1261%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (2 samples, 0.44%)</title><rect x="77.8761%" y="548" width="0.4425%" height="15" fill="rgb(251,36,5)" fg:x="352" fg:w="2"/><text x="78.1261%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (2 samples, 0.44%)</title><rect x="77.8761%" y="564" width="0.4425%" height="15" fill="rgb(217,53,14)" fg:x="352" fg:w="2"/><text x="78.1261%" y="574.50"></text></g><g><title>thread (0x304477000) (12 samples, 2.65%)</title><rect x="75.8850%" y="68" width="2.6549%" height="15" fill="rgb(215,86,45)" fg:x="343" fg:w="12"/><text x="76.1350%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (12 samples, 2.65%)</title><rect x="75.8850%" y="84" width="2.6549%" height="15" fill="rgb(242,169,11)" fg:x="343" fg:w="12"/><text x="76.1350%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (12 samples, 2.65%)</title><rect x="75.8850%" y="100" width="2.6549%" height="15" fill="rgb(211,213,45)" fg:x="343" fg:w="12"/><text x="76.1350%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (12 samples, 2.65%)</title><rect x="75.8850%" y="116" width="2.6549%" height="15" fill="rgb(205,88,11)" fg:x="343" fg:w="12"/><text x="76.1350%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (12 samples, 2.65%)</title><rect x="75.8850%" y="132" width="2.6549%" height="15" fill="rgb(252,69,26)" fg:x="343" fg:w="12"/><text x="76.1350%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (12 samples, 2.65%)</title><rect x="75.8850%" y="148" width="2.6549%" height="15" fill="rgb(246,123,37)" fg:x="343" fg:w="12"/><text x="76.1350%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (12 samples, 2.65%)</title><rect x="75.8850%" y="164" width="2.6549%" height="15" fill="rgb(212,205,5)" fg:x="343" fg:w="12"/><text x="76.1350%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (12 samples, 2.65%)</title><rect x="75.8850%" y="180" width="2.6549%" height="15" fill="rgb(253,148,0)" fg:x="343" fg:w="12"/><text x="76.1350%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (12 samples, 2.65%)</title><rect x="75.8850%" y="196" width="2.6549%" height="15" fill="rgb(239,22,4)" fg:x="343" fg:w="12"/><text x="76.1350%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.65%)</title><rect x="75.8850%" y="212" width="2.6549%" height="15" fill="rgb(226,26,53)" fg:x="343" fg:w="12"/><text x="76.1350%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (12 samples, 2.65%)</title><rect x="75.8850%" y="228" width="2.6549%" height="15" fill="rgb(225,229,45)" fg:x="343" fg:w="12"/><text x="76.1350%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (12 samples, 2.65%)</title><rect x="75.8850%" y="244" width="2.6549%" height="15" fill="rgb(220,60,37)" fg:x="343" fg:w="12"/><text x="76.1350%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.65%)</title><rect x="75.8850%" y="260" width="2.6549%" height="15" fill="rgb(217,180,35)" fg:x="343" fg:w="12"/><text x="76.1350%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (4 samples, 0.88%)</title><rect x="77.6549%" y="276" width="0.8850%" height="15" fill="rgb(229,7,53)" fg:x="351" fg:w="4"/><text x="77.9049%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (4 samples, 0.88%)</title><rect x="77.6549%" y="292" width="0.8850%" height="15" fill="rgb(254,137,3)" fg:x="351" fg:w="4"/><text x="77.9049%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (4 samples, 0.88%)</title><rect x="77.6549%" y="308" width="0.8850%" height="15" fill="rgb(215,140,41)" fg:x="351" fg:w="4"/><text x="77.9049%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (4 samples, 0.88%)</title><rect x="77.6549%" y="324" width="0.8850%" height="15" fill="rgb(250,80,15)" fg:x="351" fg:w="4"/><text x="77.9049%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (4 samples, 0.88%)</title><rect x="77.6549%" y="340" width="0.8850%" height="15" fill="rgb(252,191,6)" fg:x="351" fg:w="4"/><text x="77.9049%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (4 samples, 0.88%)</title><rect x="77.6549%" y="356" width="0.8850%" height="15" fill="rgb(246,217,18)" fg:x="351" fg:w="4"/><text x="77.9049%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (4 samples, 0.88%)</title><rect x="77.6549%" y="372" width="0.8850%" height="15" fill="rgb(223,93,7)" fg:x="351" fg:w="4"/><text x="77.9049%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (4 samples, 0.88%)</title><rect x="77.6549%" y="388" width="0.8850%" height="15" fill="rgb(225,55,52)" fg:x="351" fg:w="4"/><text x="77.9049%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (4 samples, 0.88%)</title><rect x="77.6549%" y="404" width="0.8850%" height="15" fill="rgb(240,31,24)" fg:x="351" fg:w="4"/><text x="77.9049%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (4 samples, 0.88%)</title><rect x="77.6549%" y="420" width="0.8850%" height="15" fill="rgb(205,56,52)" fg:x="351" fg:w="4"/><text x="77.9049%" y="430.50"></text></g><g><title>ngroups (pandas/core/groupby/ops.py:755) (1 samples, 0.22%)</title><rect x="78.3186%" y="436" width="0.2212%" height="15" fill="rgb(246,146,12)" fg:x="354" fg:w="1"/><text x="78.5686%" y="446.50"></text></g><g><title>result_index (pandas/core/groupby/ops.py:766) (1 samples, 0.22%)</title><rect x="78.3186%" y="452" width="0.2212%" height="15" fill="rgb(239,84,36)" fg:x="354" fg:w="1"/><text x="78.5686%" y="462.50"></text></g><g><title>reconstructed_codes (pandas/core/groupby/ops.py:760) (1 samples, 0.22%)</title><rect x="78.3186%" y="468" width="0.2212%" height="15" fill="rgb(207,41,40)" fg:x="354" fg:w="1"/><text x="78.5686%" y="478.50"></text></g><g><title>decons_obs_group_ids (pandas/core/sorting.py:268) (1 samples, 0.22%)</title><rect x="78.3186%" y="484" width="0.2212%" height="15" fill="rgb(241,179,25)" fg:x="354" fg:w="1"/><text x="78.5686%" y="494.50"></text></g><g><title>_decons_group_index (pandas/core/sorting.py:246) (1 samples, 0.22%)</title><rect x="78.3186%" y="500" width="0.2212%" height="15" fill="rgb(210,0,34)" fg:x="354" fg:w="1"/><text x="78.5686%" y="510.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="78.5398%" y="372" width="1.3274%" height="15" fill="rgb(225,217,29)" fg:x="355" fg:w="6"/><text x="78.7898%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="78.5398%" y="388" width="1.3274%" height="15" fill="rgb(216,191,38)" fg:x="355" fg:w="6"/><text x="78.7898%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="78.5398%" y="404" width="1.3274%" height="15" fill="rgb(232,140,52)" fg:x="355" fg:w="6"/><text x="78.7898%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="78.5398%" y="420" width="1.3274%" height="15" fill="rgb(223,158,51)" fg:x="355" fg:w="6"/><text x="78.7898%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (6 samples, 1.33%)</title><rect x="78.5398%" y="436" width="1.3274%" height="15" fill="rgb(235,29,51)" fg:x="355" fg:w="6"/><text x="78.7898%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (6 samples, 1.33%)</title><rect x="78.5398%" y="452" width="1.3274%" height="15" fill="rgb(215,181,18)" fg:x="355" fg:w="6"/><text x="78.7898%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (6 samples, 1.33%)</title><rect x="78.5398%" y="468" width="1.3274%" height="15" fill="rgb(227,125,34)" fg:x="355" fg:w="6"/><text x="78.7898%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (6 samples, 1.33%)</title><rect x="78.5398%" y="484" width="1.3274%" height="15" fill="rgb(230,197,49)" fg:x="355" fg:w="6"/><text x="78.7898%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (6 samples, 1.33%)</title><rect x="78.5398%" y="500" width="1.3274%" height="15" fill="rgb(239,141,16)" fg:x="355" fg:w="6"/><text x="78.7898%" y="510.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="78.5398%" y="276" width="1.7699%" height="15" fill="rgb(225,105,43)" fg:x="355" fg:w="8"/><text x="78.7898%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="78.5398%" y="292" width="1.7699%" height="15" fill="rgb(214,131,14)" fg:x="355" fg:w="8"/><text x="78.7898%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.77%)</title><rect x="78.5398%" y="308" width="1.7699%" height="15" fill="rgb(229,177,11)" fg:x="355" fg:w="8"/><text x="78.7898%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="78.5398%" y="324" width="1.7699%" height="15" fill="rgb(231,180,14)" fg:x="355" fg:w="8"/><text x="78.7898%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="78.5398%" y="340" width="1.7699%" height="15" fill="rgb(232,88,2)" fg:x="355" fg:w="8"/><text x="78.7898%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="78.5398%" y="356" width="1.7699%" height="15" fill="rgb(205,220,8)" fg:x="355" fg:w="8"/><text x="78.7898%" y="366.50"></text></g><g><title>assign (dask/dataframe/methods.py:352) (2 samples, 0.44%)</title><rect x="79.8673%" y="372" width="0.4425%" height="15" fill="rgb(225,23,53)" fg:x="361" fg:w="2"/><text x="80.1173%" y="382.50"></text></g><g><title>__setitem__ (pandas/core/frame.py:4065) (1 samples, 0.22%)</title><rect x="80.0885%" y="388" width="0.2212%" height="15" fill="rgb(213,62,29)" fg:x="362" fg:w="1"/><text x="80.3385%" y="398.50"></text></g><g><title>_set_item (pandas/core/frame.py:4293) (1 samples, 0.22%)</title><rect x="80.0885%" y="404" width="0.2212%" height="15" fill="rgb(227,75,7)" fg:x="362" fg:w="1"/><text x="80.3385%" y="414.50"></text></g><g><title>_set_item_mgr (pandas/core/frame.py:4260) (1 samples, 0.22%)</title><rect x="80.0885%" y="420" width="0.2212%" height="15" fill="rgb(207,105,14)" fg:x="362" fg:w="1"/><text x="80.3385%" y="430.50"></text></g><g><title>insert (pandas/core/internals/managers.py:1311) (1 samples, 0.22%)</title><rect x="80.0885%" y="436" width="0.2212%" height="15" fill="rgb(245,62,29)" fg:x="362" fg:w="1"/><text x="80.3385%" y="446.50"></text></g><g><title>insert (pandas/core/indexes/base.py:6895) (1 samples, 0.22%)</title><rect x="80.0885%" y="452" width="0.2212%" height="15" fill="rgb(236,202,4)" fg:x="362" fg:w="1"/><text x="80.3385%" y="462.50"></text></g><g><title>_with_infer (pandas/core/indexes/base.py:673) (1 samples, 0.22%)</title><rect x="80.0885%" y="468" width="0.2212%" height="15" fill="rgb(250,67,1)" fg:x="362" fg:w="1"/><text x="80.3385%" y="478.50"></text></g><g><title>__new__ (pandas/core/indexes/base.py:477) (1 samples, 0.22%)</title><rect x="80.0885%" y="484" width="0.2212%" height="15" fill="rgb(253,115,44)" fg:x="362" fg:w="1"/><text x="80.3385%" y="494.50"></text></g><g><title>sanitize_array (pandas/core/construction.py:518) (1 samples, 0.22%)</title><rect x="80.0885%" y="500" width="0.2212%" height="15" fill="rgb(251,139,18)" fg:x="362" fg:w="1"/><text x="80.3385%" y="510.50"></text></g><g><title>maybe_infer_to_datetimelike (pandas/core/dtypes/cast.py:1147) (1 samples, 0.22%)</title><rect x="80.0885%" y="516" width="0.2212%" height="15" fill="rgb(218,22,32)" fg:x="362" fg:w="1"/><text x="80.3385%" y="526.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (2 samples, 0.44%)</title><rect x="80.3097%" y="436" width="0.4425%" height="15" fill="rgb(243,53,5)" fg:x="363" fg:w="2"/><text x="80.5597%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (2 samples, 0.44%)</title><rect x="80.3097%" y="452" width="0.4425%" height="15" fill="rgb(227,56,16)" fg:x="363" fg:w="2"/><text x="80.5597%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (2 samples, 0.44%)</title><rect x="80.3097%" y="468" width="0.4425%" height="15" fill="rgb(245,53,0)" fg:x="363" fg:w="2"/><text x="80.5597%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (1 samples, 0.22%)</title><rect x="80.7522%" y="484" width="0.2212%" height="15" fill="rgb(216,170,35)" fg:x="365" fg:w="1"/><text x="81.0022%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (1 samples, 0.22%)</title><rect x="80.7522%" y="500" width="0.2212%" height="15" fill="rgb(211,200,8)" fg:x="365" fg:w="1"/><text x="81.0022%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (1 samples, 0.22%)</title><rect x="80.7522%" y="516" width="0.2212%" height="15" fill="rgb(228,204,44)" fg:x="365" fg:w="1"/><text x="81.0022%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (1 samples, 0.22%)</title><rect x="80.7522%" y="532" width="0.2212%" height="15" fill="rgb(214,121,17)" fg:x="365" fg:w="1"/><text x="81.0022%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (1 samples, 0.22%)</title><rect x="80.7522%" y="548" width="0.2212%" height="15" fill="rgb(233,64,38)" fg:x="365" fg:w="1"/><text x="81.0022%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (1 samples, 0.22%)</title><rect x="80.7522%" y="564" width="0.2212%" height="15" fill="rgb(253,54,19)" fg:x="365" fg:w="1"/><text x="81.0022%" y="574.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (2 samples, 0.44%)</title><rect x="80.7522%" y="436" width="0.4425%" height="15" fill="rgb(253,94,18)" fg:x="365" fg:w="2"/><text x="81.0022%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.44%)</title><rect x="80.7522%" y="452" width="0.4425%" height="15" fill="rgb(227,57,52)" fg:x="365" fg:w="2"/><text x="81.0022%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.44%)</title><rect x="80.7522%" y="468" width="0.4425%" height="15" fill="rgb(230,228,50)" fg:x="365" fg:w="2"/><text x="81.0022%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.22%)</title><rect x="80.9735%" y="484" width="0.2212%" height="15" fill="rgb(217,205,27)" fg:x="366" fg:w="1"/><text x="81.2235%" y="494.50"></text></g><g><title>thread (0x30547A000) (13 samples, 2.88%)</title><rect x="78.5398%" y="68" width="2.8761%" height="15" fill="rgb(252,71,50)" fg:x="355" fg:w="13"/><text x="78.7898%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (13 samples, 2.88%)</title><rect x="78.5398%" y="84" width="2.8761%" height="15" fill="rgb(209,86,4)" fg:x="355" fg:w="13"/><text x="78.7898%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (13 samples, 2.88%)</title><rect x="78.5398%" y="100" width="2.8761%" height="15" fill="rgb(229,94,0)" fg:x="355" fg:w="13"/><text x="78.7898%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (13 samples, 2.88%)</title><rect x="78.5398%" y="116" width="2.8761%" height="15" fill="rgb(252,223,21)" fg:x="355" fg:w="13"/><text x="78.7898%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (13 samples, 2.88%)</title><rect x="78.5398%" y="132" width="2.8761%" height="15" fill="rgb(230,210,4)" fg:x="355" fg:w="13"/><text x="78.7898%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 2.88%)</title><rect x="78.5398%" y="148" width="2.8761%" height="15" fill="rgb(240,149,38)" fg:x="355" fg:w="13"/><text x="78.7898%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 2.88%)</title><rect x="78.5398%" y="164" width="2.8761%" height="15" fill="rgb(254,105,20)" fg:x="355" fg:w="13"/><text x="78.7898%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 2.88%)</title><rect x="78.5398%" y="180" width="2.8761%" height="15" fill="rgb(253,87,46)" fg:x="355" fg:w="13"/><text x="78.7898%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 2.88%)</title><rect x="78.5398%" y="196" width="2.8761%" height="15" fill="rgb(253,116,33)" fg:x="355" fg:w="13"/><text x="78.7898%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.88%)</title><rect x="78.5398%" y="212" width="2.8761%" height="15" fill="rgb(229,198,5)" fg:x="355" fg:w="13"/><text x="78.7898%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (13 samples, 2.88%)</title><rect x="78.5398%" y="228" width="2.8761%" height="15" fill="rgb(242,38,37)" fg:x="355" fg:w="13"/><text x="78.7898%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (13 samples, 2.88%)</title><rect x="78.5398%" y="244" width="2.8761%" height="15" fill="rgb(242,69,53)" fg:x="355" fg:w="13"/><text x="78.7898%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.88%)</title><rect x="78.5398%" y="260" width="2.8761%" height="15" fill="rgb(249,80,16)" fg:x="355" fg:w="13"/><text x="78.7898%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (5 samples, 1.11%)</title><rect x="80.3097%" y="276" width="1.1062%" height="15" fill="rgb(206,128,11)" fg:x="363" fg:w="5"/><text x="80.5597%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (5 samples, 1.11%)</title><rect x="80.3097%" y="292" width="1.1062%" height="15" fill="rgb(212,35,20)" fg:x="363" fg:w="5"/><text x="80.5597%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (5 samples, 1.11%)</title><rect x="80.3097%" y="308" width="1.1062%" height="15" fill="rgb(236,79,13)" fg:x="363" fg:w="5"/><text x="80.5597%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (5 samples, 1.11%)</title><rect x="80.3097%" y="324" width="1.1062%" height="15" fill="rgb(233,123,3)" fg:x="363" fg:w="5"/><text x="80.5597%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (5 samples, 1.11%)</title><rect x="80.3097%" y="340" width="1.1062%" height="15" fill="rgb(214,93,52)" fg:x="363" fg:w="5"/><text x="80.5597%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (5 samples, 1.11%)</title><rect x="80.3097%" y="356" width="1.1062%" height="15" fill="rgb(251,37,40)" fg:x="363" fg:w="5"/><text x="80.5597%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (5 samples, 1.11%)</title><rect x="80.3097%" y="372" width="1.1062%" height="15" fill="rgb(227,80,54)" fg:x="363" fg:w="5"/><text x="80.5597%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (5 samples, 1.11%)</title><rect x="80.3097%" y="388" width="1.1062%" height="15" fill="rgb(254,48,11)" fg:x="363" fg:w="5"/><text x="80.5597%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (5 samples, 1.11%)</title><rect x="80.3097%" y="404" width="1.1062%" height="15" fill="rgb(235,193,26)" fg:x="363" fg:w="5"/><text x="80.5597%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (5 samples, 1.11%)</title><rect x="80.3097%" y="420" width="1.1062%" height="15" fill="rgb(229,99,21)" fg:x="363" fg:w="5"/><text x="80.5597%" y="430.50"></text></g><g><title>ngroups (pandas/core/groupby/ops.py:755) (1 samples, 0.22%)</title><rect x="81.1947%" y="436" width="0.2212%" height="15" fill="rgb(211,140,41)" fg:x="367" fg:w="1"/><text x="81.4447%" y="446.50"></text></g><g><title>result_index (pandas/core/groupby/ops.py:766) (1 samples, 0.22%)</title><rect x="81.1947%" y="452" width="0.2212%" height="15" fill="rgb(240,227,30)" fg:x="367" fg:w="1"/><text x="81.4447%" y="462.50"></text></g><g><title>reconstructed_codes (pandas/core/groupby/ops.py:760) (1 samples, 0.22%)</title><rect x="81.1947%" y="468" width="0.2212%" height="15" fill="rgb(215,224,45)" fg:x="367" fg:w="1"/><text x="81.4447%" y="478.50"></text></g><g><title>decons_obs_group_ids (pandas/core/sorting.py:268) (1 samples, 0.22%)</title><rect x="81.1947%" y="484" width="0.2212%" height="15" fill="rgb(206,123,31)" fg:x="367" fg:w="1"/><text x="81.4447%" y="494.50"></text></g><g><title>_decons_group_index (pandas/core/sorting.py:246) (1 samples, 0.22%)</title><rect x="81.1947%" y="500" width="0.2212%" height="15" fill="rgb(210,138,16)" fg:x="367" fg:w="1"/><text x="81.4447%" y="510.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.22%)</title><rect x="81.4159%" y="500" width="0.2212%" height="15" fill="rgb(228,57,28)" fg:x="368" fg:w="1"/><text x="81.6659%" y="510.50"></text></g><g><title>__init__ (pandas/core/frame.py:668) (1 samples, 0.22%)</title><rect x="81.4159%" y="516" width="0.2212%" height="15" fill="rgb(242,170,10)" fg:x="368" fg:w="1"/><text x="81.6659%" y="526.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="81.4159%" y="276" width="1.3274%" height="15" fill="rgb(228,214,39)" fg:x="368" fg:w="6"/><text x="81.6659%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="81.4159%" y="292" width="1.3274%" height="15" fill="rgb(218,179,33)" fg:x="368" fg:w="6"/><text x="81.6659%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (6 samples, 1.33%)</title><rect x="81.4159%" y="308" width="1.3274%" height="15" fill="rgb(235,193,39)" fg:x="368" fg:w="6"/><text x="81.6659%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="81.4159%" y="324" width="1.3274%" height="15" fill="rgb(219,221,36)" fg:x="368" fg:w="6"/><text x="81.6659%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="81.4159%" y="340" width="1.3274%" height="15" fill="rgb(248,218,19)" fg:x="368" fg:w="6"/><text x="81.6659%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="81.4159%" y="356" width="1.3274%" height="15" fill="rgb(205,50,9)" fg:x="368" fg:w="6"/><text x="81.6659%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="81.4159%" y="372" width="1.3274%" height="15" fill="rgb(238,81,28)" fg:x="368" fg:w="6"/><text x="81.6659%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="81.4159%" y="388" width="1.3274%" height="15" fill="rgb(235,110,19)" fg:x="368" fg:w="6"/><text x="81.6659%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="81.4159%" y="404" width="1.3274%" height="15" fill="rgb(214,7,14)" fg:x="368" fg:w="6"/><text x="81.6659%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="81.4159%" y="420" width="1.3274%" height="15" fill="rgb(211,77,3)" fg:x="368" fg:w="6"/><text x="81.6659%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (6 samples, 1.33%)</title><rect x="81.4159%" y="436" width="1.3274%" height="15" fill="rgb(229,5,9)" fg:x="368" fg:w="6"/><text x="81.6659%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (6 samples, 1.33%)</title><rect x="81.4159%" y="452" width="1.3274%" height="15" fill="rgb(225,90,11)" fg:x="368" fg:w="6"/><text x="81.6659%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (6 samples, 1.33%)</title><rect x="81.4159%" y="468" width="1.3274%" height="15" fill="rgb(242,56,8)" fg:x="368" fg:w="6"/><text x="81.6659%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (6 samples, 1.33%)</title><rect x="81.4159%" y="484" width="1.3274%" height="15" fill="rgb(249,212,39)" fg:x="368" fg:w="6"/><text x="81.6659%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (5 samples, 1.11%)</title><rect x="81.6372%" y="500" width="1.1062%" height="15" fill="rgb(236,90,9)" fg:x="369" fg:w="5"/><text x="81.8872%" y="510.50"></text></g><g><title>meshgrid (numpy/lib/function_base.py:5010) (1 samples, 0.22%)</title><rect x="82.5221%" y="516" width="0.2212%" height="15" fill="rgb(206,88,35)" fg:x="373" fg:w="1"/><text x="82.7721%" y="526.50"></text></g><g><title><listcomp> (numpy/lib/function_base.py:5163) (1 samples, 0.22%)</title><rect x="82.5221%" y="532" width="0.2212%" height="15" fill="rgb(205,126,30)" fg:x="373" fg:w="1"/><text x="82.7721%" y="542.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (1 samples, 0.22%)</title><rect x="82.7434%" y="436" width="0.2212%" height="15" fill="rgb(230,176,12)" fg:x="374" fg:w="1"/><text x="82.9934%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (1 samples, 0.22%)</title><rect x="82.7434%" y="452" width="0.2212%" height="15" fill="rgb(243,19,9)" fg:x="374" fg:w="1"/><text x="82.9934%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (1 samples, 0.22%)</title><rect x="82.7434%" y="468" width="0.2212%" height="15" fill="rgb(245,171,17)" fg:x="374" fg:w="1"/><text x="82.9934%" y="478.50"></text></g><g><title>thread (0x308483000) (12 samples, 2.65%)</title><rect x="81.4159%" y="68" width="2.6549%" height="15" fill="rgb(227,52,21)" fg:x="368" fg:w="12"/><text x="81.6659%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (12 samples, 2.65%)</title><rect x="81.4159%" y="84" width="2.6549%" height="15" fill="rgb(238,69,14)" fg:x="368" fg:w="12"/><text x="81.6659%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (12 samples, 2.65%)</title><rect x="81.4159%" y="100" width="2.6549%" height="15" fill="rgb(241,156,39)" fg:x="368" fg:w="12"/><text x="81.6659%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (12 samples, 2.65%)</title><rect x="81.4159%" y="116" width="2.6549%" height="15" fill="rgb(212,227,28)" fg:x="368" fg:w="12"/><text x="81.6659%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (12 samples, 2.65%)</title><rect x="81.4159%" y="132" width="2.6549%" height="15" fill="rgb(209,118,27)" fg:x="368" fg:w="12"/><text x="81.6659%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (12 samples, 2.65%)</title><rect x="81.4159%" y="148" width="2.6549%" height="15" fill="rgb(226,102,5)" fg:x="368" fg:w="12"/><text x="81.6659%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (12 samples, 2.65%)</title><rect x="81.4159%" y="164" width="2.6549%" height="15" fill="rgb(223,34,3)" fg:x="368" fg:w="12"/><text x="81.6659%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (12 samples, 2.65%)</title><rect x="81.4159%" y="180" width="2.6549%" height="15" fill="rgb(221,81,38)" fg:x="368" fg:w="12"/><text x="81.6659%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (12 samples, 2.65%)</title><rect x="81.4159%" y="196" width="2.6549%" height="15" fill="rgb(236,219,28)" fg:x="368" fg:w="12"/><text x="81.6659%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.65%)</title><rect x="81.4159%" y="212" width="2.6549%" height="15" fill="rgb(213,200,14)" fg:x="368" fg:w="12"/><text x="81.6659%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (12 samples, 2.65%)</title><rect x="81.4159%" y="228" width="2.6549%" height="15" fill="rgb(240,33,19)" fg:x="368" fg:w="12"/><text x="81.6659%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (12 samples, 2.65%)</title><rect x="81.4159%" y="244" width="2.6549%" height="15" fill="rgb(233,113,27)" fg:x="368" fg:w="12"/><text x="81.6659%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.65%)</title><rect x="81.4159%" y="260" width="2.6549%" height="15" fill="rgb(220,221,18)" fg:x="368" fg:w="12"/><text x="81.6659%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (6 samples, 1.33%)</title><rect x="82.7434%" y="276" width="1.3274%" height="15" fill="rgb(238,92,8)" fg:x="374" fg:w="6"/><text x="82.9934%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (6 samples, 1.33%)</title><rect x="82.7434%" y="292" width="1.3274%" height="15" fill="rgb(222,164,16)" fg:x="374" fg:w="6"/><text x="82.9934%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (6 samples, 1.33%)</title><rect x="82.7434%" y="308" width="1.3274%" height="15" fill="rgb(241,119,3)" fg:x="374" fg:w="6"/><text x="82.9934%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (6 samples, 1.33%)</title><rect x="82.7434%" y="324" width="1.3274%" height="15" fill="rgb(241,44,8)" fg:x="374" fg:w="6"/><text x="82.9934%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (6 samples, 1.33%)</title><rect x="82.7434%" y="340" width="1.3274%" height="15" fill="rgb(230,36,40)" fg:x="374" fg:w="6"/><text x="82.9934%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (6 samples, 1.33%)</title><rect x="82.7434%" y="356" width="1.3274%" height="15" fill="rgb(243,16,36)" fg:x="374" fg:w="6"/><text x="82.9934%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (6 samples, 1.33%)</title><rect x="82.7434%" y="372" width="1.3274%" height="15" fill="rgb(231,4,26)" fg:x="374" fg:w="6"/><text x="82.9934%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (6 samples, 1.33%)</title><rect x="82.7434%" y="388" width="1.3274%" height="15" fill="rgb(240,9,31)" fg:x="374" fg:w="6"/><text x="82.9934%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (6 samples, 1.33%)</title><rect x="82.7434%" y="404" width="1.3274%" height="15" fill="rgb(207,173,15)" fg:x="374" fg:w="6"/><text x="82.9934%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (6 samples, 1.33%)</title><rect x="82.7434%" y="420" width="1.3274%" height="15" fill="rgb(224,192,53)" fg:x="374" fg:w="6"/><text x="82.9934%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (5 samples, 1.11%)</title><rect x="82.9646%" y="436" width="1.1062%" height="15" fill="rgb(223,67,28)" fg:x="375" fg:w="5"/><text x="83.2146%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (2 samples, 0.44%)</title><rect x="83.6283%" y="452" width="0.4425%" height="15" fill="rgb(211,20,47)" fg:x="378" fg:w="2"/><text x="83.8783%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (2 samples, 0.44%)</title><rect x="83.6283%" y="468" width="0.4425%" height="15" fill="rgb(240,228,2)" fg:x="378" fg:w="2"/><text x="83.8783%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (2 samples, 0.44%)</title><rect x="83.6283%" y="484" width="0.4425%" height="15" fill="rgb(248,151,12)" fg:x="378" fg:w="2"/><text x="83.8783%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (2 samples, 0.44%)</title><rect x="83.6283%" y="500" width="0.4425%" height="15" fill="rgb(244,8,39)" fg:x="378" fg:w="2"/><text x="83.8783%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (2 samples, 0.44%)</title><rect x="83.6283%" y="516" width="0.4425%" height="15" fill="rgb(222,26,8)" fg:x="378" fg:w="2"/><text x="83.8783%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (2 samples, 0.44%)</title><rect x="83.6283%" y="532" width="0.4425%" height="15" fill="rgb(213,106,44)" fg:x="378" fg:w="2"/><text x="83.8783%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (2 samples, 0.44%)</title><rect x="83.6283%" y="548" width="0.4425%" height="15" fill="rgb(214,129,20)" fg:x="378" fg:w="2"/><text x="83.8783%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (2 samples, 0.44%)</title><rect x="83.6283%" y="564" width="0.4425%" height="15" fill="rgb(212,32,13)" fg:x="378" fg:w="2"/><text x="83.8783%" y="574.50"></text></g><g><title><genexpr> (dask/core.py:127) (1 samples, 0.22%)</title><rect x="84.0708%" y="228" width="0.2212%" height="15" fill="rgb(208,168,33)" fg:x="380" fg:w="1"/><text x="84.3208%" y="238.50"></text></g><g><title>from_records (pandas/core/frame.py:2175) (1 samples, 0.22%)</title><rect x="84.2920%" y="500" width="0.2212%" height="15" fill="rgb(231,207,8)" fg:x="381" fg:w="1"/><text x="84.5420%" y="510.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.22%)</title><rect x="84.2920%" y="516" width="0.2212%" height="15" fill="rgb(235,219,23)" fg:x="381" fg:w="1"/><text x="84.5420%" y="526.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.22%)</title><rect x="84.2920%" y="532" width="0.2212%" height="15" fill="rgb(226,216,26)" fg:x="381" fg:w="1"/><text x="84.5420%" y="542.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (1 samples, 0.22%)</title><rect x="84.2920%" y="548" width="0.2212%" height="15" fill="rgb(239,137,16)" fg:x="381" fg:w="1"/><text x="84.5420%" y="558.50"></text></g><g><title>_consolidate (pandas/core/internals/managers.py:2207) (1 samples, 0.22%)</title><rect x="84.2920%" y="564" width="0.2212%" height="15" fill="rgb(207,12,36)" fg:x="381" fg:w="1"/><text x="84.5420%" y="574.50"></text></g><g><title>_merge_blocks (pandas/core/internals/managers.py:2224) (1 samples, 0.22%)</title><rect x="84.2920%" y="580" width="0.2212%" height="15" fill="rgb(210,214,24)" fg:x="381" fg:w="1"/><text x="84.5420%" y="590.50"></text></g><g><title>vstack (numpy/core/shape_base.py:219) (1 samples, 0.22%)</title><rect x="84.2920%" y="596" width="0.2212%" height="15" fill="rgb(206,56,30)" fg:x="381" fg:w="1"/><text x="84.5420%" y="606.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="84.2920%" y="276" width="1.3274%" height="15" fill="rgb(228,143,26)" fg:x="381" fg:w="6"/><text x="84.5420%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="84.2920%" y="292" width="1.3274%" height="15" fill="rgb(216,218,46)" fg:x="381" fg:w="6"/><text x="84.5420%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (6 samples, 1.33%)</title><rect x="84.2920%" y="308" width="1.3274%" height="15" fill="rgb(206,6,19)" fg:x="381" fg:w="6"/><text x="84.5420%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="84.2920%" y="324" width="1.3274%" height="15" fill="rgb(239,177,51)" fg:x="381" fg:w="6"/><text x="84.5420%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="84.2920%" y="340" width="1.3274%" height="15" fill="rgb(216,55,25)" fg:x="381" fg:w="6"/><text x="84.5420%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="84.2920%" y="356" width="1.3274%" height="15" fill="rgb(231,163,29)" fg:x="381" fg:w="6"/><text x="84.5420%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="84.2920%" y="372" width="1.3274%" height="15" fill="rgb(232,149,50)" fg:x="381" fg:w="6"/><text x="84.5420%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="84.2920%" y="388" width="1.3274%" height="15" fill="rgb(223,142,48)" fg:x="381" fg:w="6"/><text x="84.5420%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="84.2920%" y="404" width="1.3274%" height="15" fill="rgb(245,83,23)" fg:x="381" fg:w="6"/><text x="84.5420%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="84.2920%" y="420" width="1.3274%" height="15" fill="rgb(224,63,2)" fg:x="381" fg:w="6"/><text x="84.5420%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (6 samples, 1.33%)</title><rect x="84.2920%" y="436" width="1.3274%" height="15" fill="rgb(218,65,53)" fg:x="381" fg:w="6"/><text x="84.5420%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (6 samples, 1.33%)</title><rect x="84.2920%" y="452" width="1.3274%" height="15" fill="rgb(221,84,29)" fg:x="381" fg:w="6"/><text x="84.5420%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (6 samples, 1.33%)</title><rect x="84.2920%" y="468" width="1.3274%" height="15" fill="rgb(234,0,32)" fg:x="381" fg:w="6"/><text x="84.5420%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (6 samples, 1.33%)</title><rect x="84.2920%" y="484" width="1.3274%" height="15" fill="rgb(206,20,16)" fg:x="381" fg:w="6"/><text x="84.5420%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (5 samples, 1.11%)</title><rect x="84.5133%" y="500" width="1.1062%" height="15" fill="rgb(244,172,18)" fg:x="382" fg:w="5"/><text x="84.7633%" y="510.50"></text></g><g><title>prod (numpy/core/fromnumeric.py:2979) (1 samples, 0.22%)</title><rect x="85.3982%" y="516" width="0.2212%" height="15" fill="rgb(254,133,1)" fg:x="386" fg:w="1"/><text x="85.6482%" y="526.50"></text></g><g><title>_wrapreduction (numpy/core/fromnumeric.py:71) (1 samples, 0.22%)</title><rect x="85.3982%" y="532" width="0.2212%" height="15" fill="rgb(222,206,41)" fg:x="386" fg:w="1"/><text x="85.6482%" y="542.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (4 samples, 0.88%)</title><rect x="85.6195%" y="436" width="0.8850%" height="15" fill="rgb(212,3,42)" fg:x="387" fg:w="4"/><text x="85.8695%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (4 samples, 0.88%)</title><rect x="85.6195%" y="452" width="0.8850%" height="15" fill="rgb(241,11,4)" fg:x="387" fg:w="4"/><text x="85.8695%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (4 samples, 0.88%)</title><rect x="85.6195%" y="468" width="0.8850%" height="15" fill="rgb(205,19,26)" fg:x="387" fg:w="4"/><text x="85.8695%" y="478.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (1 samples, 0.22%)</title><rect x="86.5044%" y="436" width="0.2212%" height="15" fill="rgb(210,179,32)" fg:x="391" fg:w="1"/><text x="86.7544%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (1 samples, 0.22%)</title><rect x="86.5044%" y="452" width="0.2212%" height="15" fill="rgb(227,116,49)" fg:x="391" fg:w="1"/><text x="86.7544%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (1 samples, 0.22%)</title><rect x="86.5044%" y="468" width="0.2212%" height="15" fill="rgb(211,146,6)" fg:x="391" fg:w="1"/><text x="86.7544%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.22%)</title><rect x="86.5044%" y="484" width="0.2212%" height="15" fill="rgb(219,44,39)" fg:x="391" fg:w="1"/><text x="86.7544%" y="494.50"></text></g><g><title>thread (0x309486000) (13 samples, 2.88%)</title><rect x="84.0708%" y="68" width="2.8761%" height="15" fill="rgb(234,128,11)" fg:x="380" fg:w="13"/><text x="84.3208%" y="78.50">th..</text></g><g><title>_bootstrap (threading.py:923) (13 samples, 2.88%)</title><rect x="84.0708%" y="84" width="2.8761%" height="15" fill="rgb(220,183,53)" fg:x="380" fg:w="13"/><text x="84.3208%" y="94.50">_b..</text></g><g><title>_bootstrap_inner (threading.py:963) (13 samples, 2.88%)</title><rect x="84.0708%" y="100" width="2.8761%" height="15" fill="rgb(213,219,32)" fg:x="380" fg:w="13"/><text x="84.3208%" y="110.50">_b..</text></g><g><title>run (threading.py:906) (13 samples, 2.88%)</title><rect x="84.0708%" y="116" width="2.8761%" height="15" fill="rgb(232,156,16)" fg:x="380" fg:w="13"/><text x="84.3208%" y="126.50">ru..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (13 samples, 2.88%)</title><rect x="84.0708%" y="132" width="2.8761%" height="15" fill="rgb(246,135,34)" fg:x="380" fg:w="13"/><text x="84.3208%" y="142.50">_w..</text></g><g><title>run (concurrent/futures/thread.py:53) (13 samples, 2.88%)</title><rect x="84.0708%" y="148" width="2.8761%" height="15" fill="rgb(241,99,0)" fg:x="380" fg:w="13"/><text x="84.3208%" y="158.50">ru..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (13 samples, 2.88%)</title><rect x="84.0708%" y="164" width="2.8761%" height="15" fill="rgb(222,103,45)" fg:x="380" fg:w="13"/><text x="84.3208%" y="174.50">ba..</text></g><g><title><listcomp> (dask/local.py:239) (13 samples, 2.88%)</title><rect x="84.0708%" y="180" width="2.8761%" height="15" fill="rgb(212,57,4)" fg:x="380" fg:w="13"/><text x="84.3208%" y="190.50"><l..</text></g><g><title>execute_task (dask/local.py:215) (13 samples, 2.88%)</title><rect x="84.0708%" y="196" width="2.8761%" height="15" fill="rgb(215,68,47)" fg:x="380" fg:w="13"/><text x="84.3208%" y="206.50">ex..</text></g><g><title>_execute_task (dask/core.py:90) (13 samples, 2.88%)</title><rect x="84.0708%" y="212" width="2.8761%" height="15" fill="rgb(230,84,2)" fg:x="380" fg:w="13"/><text x="84.3208%" y="222.50">_e..</text></g><g><title>__call__ (dask/optimization.py:992) (12 samples, 2.65%)</title><rect x="84.2920%" y="228" width="2.6549%" height="15" fill="rgb(220,102,14)" fg:x="381" fg:w="12"/><text x="84.5420%" y="238.50">__..</text></g><g><title>get (dask/core.py:136) (12 samples, 2.65%)</title><rect x="84.2920%" y="244" width="2.6549%" height="15" fill="rgb(240,10,32)" fg:x="381" fg:w="12"/><text x="84.5420%" y="254.50">ge..</text></g><g><title>_execute_task (dask/core.py:90) (12 samples, 2.65%)</title><rect x="84.2920%" y="260" width="2.6549%" height="15" fill="rgb(215,47,27)" fg:x="381" fg:w="12"/><text x="84.5420%" y="270.50">_e..</text></g><g><title>apply (dask/utils.py:46) (6 samples, 1.33%)</title><rect x="85.6195%" y="276" width="1.3274%" height="15" fill="rgb(233,188,43)" fg:x="387" fg:w="6"/><text x="85.8695%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (6 samples, 1.33%)</title><rect x="85.6195%" y="292" width="1.3274%" height="15" fill="rgb(253,190,1)" fg:x="387" fg:w="6"/><text x="85.8695%" y="302.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (6 samples, 1.33%)</title><rect x="85.6195%" y="308" width="1.3274%" height="15" fill="rgb(206,114,52)" fg:x="387" fg:w="6"/><text x="85.8695%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (6 samples, 1.33%)</title><rect x="85.6195%" y="324" width="1.3274%" height="15" fill="rgb(233,120,37)" fg:x="387" fg:w="6"/><text x="85.8695%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (6 samples, 1.33%)</title><rect x="85.6195%" y="340" width="1.3274%" height="15" fill="rgb(214,52,39)" fg:x="387" fg:w="6"/><text x="85.8695%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (6 samples, 1.33%)</title><rect x="85.6195%" y="356" width="1.3274%" height="15" fill="rgb(223,80,29)" fg:x="387" fg:w="6"/><text x="85.8695%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (6 samples, 1.33%)</title><rect x="85.6195%" y="372" width="1.3274%" height="15" fill="rgb(230,101,40)" fg:x="387" fg:w="6"/><text x="85.8695%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (6 samples, 1.33%)</title><rect x="85.6195%" y="388" width="1.3274%" height="15" fill="rgb(219,211,8)" fg:x="387" fg:w="6"/><text x="85.8695%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (6 samples, 1.33%)</title><rect x="85.6195%" y="404" width="1.3274%" height="15" fill="rgb(252,126,28)" fg:x="387" fg:w="6"/><text x="85.8695%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (6 samples, 1.33%)</title><rect x="85.6195%" y="420" width="1.3274%" height="15" fill="rgb(215,56,38)" fg:x="387" fg:w="6"/><text x="85.8695%" y="430.50"></text></g><g><title>ngroups (pandas/core/groupby/ops.py:755) (1 samples, 0.22%)</title><rect x="86.7257%" y="436" width="0.2212%" height="15" fill="rgb(249,55,44)" fg:x="392" fg:w="1"/><text x="86.9757%" y="446.50"></text></g><g><title>result_index (pandas/core/groupby/ops.py:766) (1 samples, 0.22%)</title><rect x="86.7257%" y="452" width="0.2212%" height="15" fill="rgb(220,221,32)" fg:x="392" fg:w="1"/><text x="86.9757%" y="462.50"></text></g><g><title>__new__ (pandas/core/indexes/multi.py:323) (1 samples, 0.22%)</title><rect x="86.7257%" y="468" width="0.2212%" height="15" fill="rgb(212,216,41)" fg:x="392" fg:w="1"/><text x="86.9757%" y="478.50"></text></g><g><title>_set_names (pandas/core/indexes/multi.py:1452) (1 samples, 0.22%)</title><rect x="86.7257%" y="484" width="0.2212%" height="15" fill="rgb(228,213,43)" fg:x="392" fg:w="1"/><text x="86.9757%" y="494.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.55%)</title><rect x="86.9469%" y="340" width="1.5487%" height="15" fill="rgb(211,31,26)" fg:x="393" fg:w="7"/><text x="87.1969%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.55%)</title><rect x="86.9469%" y="356" width="1.5487%" height="15" fill="rgb(229,202,19)" fg:x="393" fg:w="7"/><text x="87.1969%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.55%)</title><rect x="86.9469%" y="372" width="1.5487%" height="15" fill="rgb(229,105,46)" fg:x="393" fg:w="7"/><text x="87.1969%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.55%)</title><rect x="86.9469%" y="388" width="1.5487%" height="15" fill="rgb(235,108,1)" fg:x="393" fg:w="7"/><text x="87.1969%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.55%)</title><rect x="86.9469%" y="404" width="1.5487%" height="15" fill="rgb(245,111,35)" fg:x="393" fg:w="7"/><text x="87.1969%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.55%)</title><rect x="86.9469%" y="420" width="1.5487%" height="15" fill="rgb(219,185,31)" fg:x="393" fg:w="7"/><text x="87.1969%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (7 samples, 1.55%)</title><rect x="86.9469%" y="436" width="1.5487%" height="15" fill="rgb(214,4,43)" fg:x="393" fg:w="7"/><text x="87.1969%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (7 samples, 1.55%)</title><rect x="86.9469%" y="452" width="1.5487%" height="15" fill="rgb(235,227,40)" fg:x="393" fg:w="7"/><text x="87.1969%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (7 samples, 1.55%)</title><rect x="86.9469%" y="468" width="1.5487%" height="15" fill="rgb(230,88,30)" fg:x="393" fg:w="7"/><text x="87.1969%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (7 samples, 1.55%)</title><rect x="86.9469%" y="484" width="1.5487%" height="15" fill="rgb(216,217,1)" fg:x="393" fg:w="7"/><text x="87.1969%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (7 samples, 1.55%)</title><rect x="86.9469%" y="500" width="1.5487%" height="15" fill="rgb(248,139,50)" fg:x="393" fg:w="7"/><text x="87.1969%" y="510.50"></text></g><g><title><genexpr> (dask/core.py:127) (8 samples, 1.77%)</title><rect x="86.9469%" y="276" width="1.7699%" height="15" fill="rgb(233,1,21)" fg:x="393" fg:w="8"/><text x="87.1969%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="86.9469%" y="292" width="1.7699%" height="15" fill="rgb(215,183,12)" fg:x="393" fg:w="8"/><text x="87.1969%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (8 samples, 1.77%)</title><rect x="86.9469%" y="308" width="1.7699%" height="15" fill="rgb(229,104,42)" fg:x="393" fg:w="8"/><text x="87.1969%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (8 samples, 1.77%)</title><rect x="86.9469%" y="324" width="1.7699%" height="15" fill="rgb(243,34,48)" fg:x="393" fg:w="8"/><text x="87.1969%" y="334.50"></text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (1 samples, 0.22%)</title><rect x="88.4956%" y="340" width="0.2212%" height="15" fill="rgb(239,11,44)" fg:x="400" fg:w="1"/><text x="88.7456%" y="350.50"></text></g><g><title>_get_indexer_strict (pandas/core/indexes/base.py:6100) (1 samples, 0.22%)</title><rect x="88.4956%" y="356" width="0.2212%" height="15" fill="rgb(231,98,35)" fg:x="400" fg:w="1"/><text x="88.7456%" y="366.50"></text></g><g><title>get_indexer_for (pandas/core/indexes/base.py:6076) (1 samples, 0.22%)</title><rect x="88.4956%" y="372" width="0.2212%" height="15" fill="rgb(233,28,25)" fg:x="400" fg:w="1"/><text x="88.7456%" y="382.50"></text></g><g><title>get_indexer (pandas/core/indexes/base.py:3858) (1 samples, 0.22%)</title><rect x="88.4956%" y="388" width="0.2212%" height="15" fill="rgb(234,123,11)" fg:x="400" fg:w="1"/><text x="88.7456%" y="398.50"></text></g><g><title>_get_indexer (pandas/core/indexes/base.py:3944) (1 samples, 0.22%)</title><rect x="88.4956%" y="404" width="0.2212%" height="15" fill="rgb(220,69,3)" fg:x="400" fg:w="1"/><text x="88.7456%" y="414.50"></text></g><g><title>_get_engine_target (pandas/core/indexes/base.py:5152) (1 samples, 0.22%)</title><rect x="88.4956%" y="420" width="0.2212%" height="15" fill="rgb(214,64,36)" fg:x="400" fg:w="1"/><text x="88.7456%" y="430.50"></text></g><g><title>__instancecheck__ (abc.py:117) (1 samples, 0.22%)</title><rect x="88.4956%" y="436" width="0.2212%" height="15" fill="rgb(211,138,32)" fg:x="400" fg:w="1"/><text x="88.7456%" y="446.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (6 samples, 1.33%)</title><rect x="88.7168%" y="436" width="1.3274%" height="15" fill="rgb(213,118,47)" fg:x="401" fg:w="6"/><text x="88.9668%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (6 samples, 1.33%)</title><rect x="88.7168%" y="452" width="1.3274%" height="15" fill="rgb(243,124,49)" fg:x="401" fg:w="6"/><text x="88.9668%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (6 samples, 1.33%)</title><rect x="88.7168%" y="468" width="1.3274%" height="15" fill="rgb(221,30,28)" fg:x="401" fg:w="6"/><text x="88.9668%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (7 samples, 1.55%)</title><rect x="90.0442%" y="484" width="1.5487%" height="15" fill="rgb(246,37,13)" fg:x="407" fg:w="7"/><text x="90.2942%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (7 samples, 1.55%)</title><rect x="90.0442%" y="500" width="1.5487%" height="15" fill="rgb(249,66,14)" fg:x="407" fg:w="7"/><text x="90.2942%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (7 samples, 1.55%)</title><rect x="90.0442%" y="516" width="1.5487%" height="15" fill="rgb(213,166,5)" fg:x="407" fg:w="7"/><text x="90.2942%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (7 samples, 1.55%)</title><rect x="90.0442%" y="532" width="1.5487%" height="15" fill="rgb(221,66,24)" fg:x="407" fg:w="7"/><text x="90.2942%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (7 samples, 1.55%)</title><rect x="90.0442%" y="548" width="1.5487%" height="15" fill="rgb(210,132,17)" fg:x="407" fg:w="7"/><text x="90.2942%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (7 samples, 1.55%)</title><rect x="90.0442%" y="564" width="1.5487%" height="15" fill="rgb(243,202,5)" fg:x="407" fg:w="7"/><text x="90.2942%" y="574.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (2 samples, 0.44%)</title><rect x="91.5929%" y="484" width="0.4425%" height="15" fill="rgb(233,70,48)" fg:x="414" fg:w="2"/><text x="91.8429%" y="494.50"></text></g><g><title>thread (0x30A489000) (24 samples, 5.31%)</title><rect x="86.9469%" y="68" width="5.3097%" height="15" fill="rgb(238,41,26)" fg:x="393" fg:w="24"/><text x="87.1969%" y="78.50">thread..</text></g><g><title>_bootstrap (threading.py:923) (24 samples, 5.31%)</title><rect x="86.9469%" y="84" width="5.3097%" height="15" fill="rgb(241,19,31)" fg:x="393" fg:w="24"/><text x="87.1969%" y="94.50">_boots..</text></g><g><title>_bootstrap_inner (threading.py:963) (24 samples, 5.31%)</title><rect x="86.9469%" y="100" width="5.3097%" height="15" fill="rgb(214,76,10)" fg:x="393" fg:w="24"/><text x="87.1969%" y="110.50">_boots..</text></g><g><title>run (threading.py:906) (24 samples, 5.31%)</title><rect x="86.9469%" y="116" width="5.3097%" height="15" fill="rgb(254,202,22)" fg:x="393" fg:w="24"/><text x="87.1969%" y="126.50">run (t..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (24 samples, 5.31%)</title><rect x="86.9469%" y="132" width="5.3097%" height="15" fill="rgb(214,72,24)" fg:x="393" fg:w="24"/><text x="87.1969%" y="142.50">_worke..</text></g><g><title>run (concurrent/futures/thread.py:53) (24 samples, 5.31%)</title><rect x="86.9469%" y="148" width="5.3097%" height="15" fill="rgb(221,92,46)" fg:x="393" fg:w="24"/><text x="87.1969%" y="158.50">run (c..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (24 samples, 5.31%)</title><rect x="86.9469%" y="164" width="5.3097%" height="15" fill="rgb(246,13,50)" fg:x="393" fg:w="24"/><text x="87.1969%" y="174.50">batch_..</text></g><g><title><listcomp> (dask/local.py:239) (24 samples, 5.31%)</title><rect x="86.9469%" y="180" width="5.3097%" height="15" fill="rgb(240,165,38)" fg:x="393" fg:w="24"/><text x="87.1969%" y="190.50"><listc..</text></g><g><title>execute_task (dask/local.py:215) (24 samples, 5.31%)</title><rect x="86.9469%" y="196" width="5.3097%" height="15" fill="rgb(241,24,51)" fg:x="393" fg:w="24"/><text x="87.1969%" y="206.50">execut..</text></g><g><title>_execute_task (dask/core.py:90) (24 samples, 5.31%)</title><rect x="86.9469%" y="212" width="5.3097%" height="15" fill="rgb(227,51,44)" fg:x="393" fg:w="24"/><text x="87.1969%" y="222.50">_execu..</text></g><g><title>__call__ (dask/optimization.py:992) (24 samples, 5.31%)</title><rect x="86.9469%" y="228" width="5.3097%" height="15" fill="rgb(231,121,3)" fg:x="393" fg:w="24"/><text x="87.1969%" y="238.50">__call..</text></g><g><title>get (dask/core.py:136) (24 samples, 5.31%)</title><rect x="86.9469%" y="244" width="5.3097%" height="15" fill="rgb(245,3,41)" fg:x="393" fg:w="24"/><text x="87.1969%" y="254.50">get (d..</text></g><g><title>_execute_task (dask/core.py:90) (24 samples, 5.31%)</title><rect x="86.9469%" y="260" width="5.3097%" height="15" fill="rgb(214,13,26)" fg:x="393" fg:w="24"/><text x="87.1969%" y="270.50">_execu..</text></g><g><title>apply (dask/utils.py:46) (16 samples, 3.54%)</title><rect x="88.7168%" y="276" width="3.5398%" height="15" fill="rgb(252,75,11)" fg:x="401" fg:w="16"/><text x="88.9668%" y="286.50">app..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (16 samples, 3.54%)</title><rect x="88.7168%" y="292" width="3.5398%" height="15" fill="rgb(218,226,17)" fg:x="401" fg:w="16"/><text x="88.9668%" y="302.50">_gr..</text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (16 samples, 3.54%)</title><rect x="88.7168%" y="308" width="3.5398%" height="15" fill="rgb(248,89,38)" fg:x="401" fg:w="16"/><text x="88.9668%" y="318.50">_ap..</text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (16 samples, 3.54%)</title><rect x="88.7168%" y="324" width="3.5398%" height="15" fill="rgb(237,73,46)" fg:x="401" fg:w="16"/><text x="88.9668%" y="334.50"><la..</text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (16 samples, 3.54%)</title><rect x="88.7168%" y="340" width="3.5398%" height="15" fill="rgb(242,78,33)" fg:x="401" fg:w="16"/><text x="88.9668%" y="350.50">sum..</text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (16 samples, 3.54%)</title><rect x="88.7168%" y="356" width="3.5398%" height="15" fill="rgb(235,60,3)" fg:x="401" fg:w="16"/><text x="88.9668%" y="366.50">_ag..</text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (16 samples, 3.54%)</title><rect x="88.7168%" y="372" width="3.5398%" height="15" fill="rgb(216,172,19)" fg:x="401" fg:w="16"/><text x="88.9668%" y="382.50">_cy..</text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (16 samples, 3.54%)</title><rect x="88.7168%" y="388" width="3.5398%" height="15" fill="rgb(227,6,42)" fg:x="401" fg:w="16"/><text x="88.9668%" y="398.50">gro..</text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (16 samples, 3.54%)</title><rect x="88.7168%" y="404" width="3.5398%" height="15" fill="rgb(223,207,42)" fg:x="401" fg:w="16"/><text x="88.9668%" y="414.50">arr..</text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (16 samples, 3.54%)</title><rect x="88.7168%" y="420" width="3.5398%" height="15" fill="rgb(246,138,30)" fg:x="401" fg:w="16"/><text x="88.9668%" y="430.50">_cy..</text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (10 samples, 2.21%)</title><rect x="90.0442%" y="436" width="2.2124%" height="15" fill="rgb(251,199,47)" fg:x="407" fg:w="10"/><text x="90.2942%" y="446.50">h..</text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (10 samples, 2.21%)</title><rect x="90.0442%" y="452" width="2.2124%" height="15" fill="rgb(228,218,44)" fg:x="407" fg:w="10"/><text x="90.2942%" y="462.50">g..</text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (10 samples, 2.21%)</title><rect x="90.0442%" y="468" width="2.2124%" height="15" fill="rgb(220,68,6)" fg:x="407" fg:w="10"/><text x="90.2942%" y="478.50">_..</text></g><g><title>get_group_index (pandas/core/sorting.py:122) (1 samples, 0.22%)</title><rect x="92.0354%" y="484" width="0.2212%" height="15" fill="rgb(240,60,26)" fg:x="416" fg:w="1"/><text x="92.2854%" y="494.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="92.2566%" y="372" width="1.3274%" height="15" fill="rgb(211,200,19)" fg:x="417" fg:w="6"/><text x="92.5066%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="92.2566%" y="388" width="1.3274%" height="15" fill="rgb(242,145,30)" fg:x="417" fg:w="6"/><text x="92.5066%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="92.2566%" y="404" width="1.3274%" height="15" fill="rgb(225,64,13)" fg:x="417" fg:w="6"/><text x="92.5066%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="92.2566%" y="420" width="1.3274%" height="15" fill="rgb(218,103,35)" fg:x="417" fg:w="6"/><text x="92.5066%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (6 samples, 1.33%)</title><rect x="92.2566%" y="436" width="1.3274%" height="15" fill="rgb(216,93,46)" fg:x="417" fg:w="6"/><text x="92.5066%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (6 samples, 1.33%)</title><rect x="92.2566%" y="452" width="1.3274%" height="15" fill="rgb(225,159,27)" fg:x="417" fg:w="6"/><text x="92.5066%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (6 samples, 1.33%)</title><rect x="92.2566%" y="468" width="1.3274%" height="15" fill="rgb(225,204,11)" fg:x="417" fg:w="6"/><text x="92.5066%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (6 samples, 1.33%)</title><rect x="92.2566%" y="484" width="1.3274%" height="15" fill="rgb(205,56,4)" fg:x="417" fg:w="6"/><text x="92.5066%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (6 samples, 1.33%)</title><rect x="92.2566%" y="500" width="1.3274%" height="15" fill="rgb(206,6,35)" fg:x="417" fg:w="6"/><text x="92.5066%" y="510.50"></text></g><g><title><genexpr> (dask/core.py:127) (7 samples, 1.55%)</title><rect x="92.2566%" y="340" width="1.5487%" height="15" fill="rgb(247,73,52)" fg:x="417" fg:w="7"/><text x="92.5066%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (7 samples, 1.55%)</title><rect x="92.2566%" y="356" width="1.5487%" height="15" fill="rgb(246,97,4)" fg:x="417" fg:w="7"/><text x="92.5066%" y="366.50"></text></g><g><title>assign (dask/dataframe/methods.py:352) (1 samples, 0.22%)</title><rect x="93.5841%" y="372" width="0.2212%" height="15" fill="rgb(212,37,15)" fg:x="423" fg:w="1"/><text x="93.8341%" y="382.50"></text></g><g><title>__setitem__ (pandas/core/frame.py:4065) (1 samples, 0.22%)</title><rect x="93.5841%" y="388" width="0.2212%" height="15" fill="rgb(208,130,40)" fg:x="423" fg:w="1"/><text x="93.8341%" y="398.50"></text></g><g><title>_set_item (pandas/core/frame.py:4293) (1 samples, 0.22%)</title><rect x="93.5841%" y="404" width="0.2212%" height="15" fill="rgb(236,55,29)" fg:x="423" fg:w="1"/><text x="93.8341%" y="414.50"></text></g><g><title>_set_item_mgr (pandas/core/frame.py:4260) (1 samples, 0.22%)</title><rect x="93.5841%" y="420" width="0.2212%" height="15" fill="rgb(209,156,45)" fg:x="423" fg:w="1"/><text x="93.8341%" y="430.50"></text></g><g><title>insert (pandas/core/internals/managers.py:1311) (1 samples, 0.22%)</title><rect x="93.5841%" y="436" width="0.2212%" height="15" fill="rgb(249,107,4)" fg:x="423" fg:w="1"/><text x="93.8341%" y="446.50"></text></g><g><title>_insert_update_blklocs_and_blknos (pandas/core/internals/managers.py:1371) (1 samples, 0.22%)</title><rect x="93.5841%" y="452" width="0.2212%" height="15" fill="rgb(227,7,13)" fg:x="423" fg:w="1"/><text x="93.8341%" y="462.50"></text></g><g><title><genexpr> (dask/core.py:127) (9 samples, 1.99%)</title><rect x="92.2566%" y="276" width="1.9912%" height="15" fill="rgb(250,129,14)" fg:x="417" fg:w="9"/><text x="92.5066%" y="286.50"><..</text></g><g><title>_execute_task (dask/core.py:90) (9 samples, 1.99%)</title><rect x="92.2566%" y="292" width="1.9912%" height="15" fill="rgb(229,92,13)" fg:x="417" fg:w="9"/><text x="92.5066%" y="302.50">_..</text></g><g><title><listcomp> (dask/core.py:121) (9 samples, 1.99%)</title><rect x="92.2566%" y="308" width="1.9912%" height="15" fill="rgb(245,98,39)" fg:x="417" fg:w="9"/><text x="92.5066%" y="318.50"><..</text></g><g><title>_execute_task (dask/core.py:90) (9 samples, 1.99%)</title><rect x="92.2566%" y="324" width="1.9912%" height="15" fill="rgb(234,135,48)" fg:x="417" fg:w="9"/><text x="92.5066%" y="334.50">_..</text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (2 samples, 0.44%)</title><rect x="93.8053%" y="340" width="0.4425%" height="15" fill="rgb(230,98,28)" fg:x="424" fg:w="2"/><text x="94.0553%" y="350.50"></text></g><g><title>_get_indexer_strict (pandas/core/indexes/base.py:6100) (2 samples, 0.44%)</title><rect x="93.8053%" y="356" width="0.4425%" height="15" fill="rgb(223,121,0)" fg:x="424" fg:w="2"/><text x="94.0553%" y="366.50"></text></g><g><title>asarray_tuplesafe (pandas/core/common.py:228) (2 samples, 0.44%)</title><rect x="93.8053%" y="372" width="0.4425%" height="15" fill="rgb(234,173,33)" fg:x="424" fg:w="2"/><text x="94.0553%" y="382.50"></text></g><g><title>__enter__ (warnings.py:458) (2 samples, 0.44%)</title><rect x="93.8053%" y="388" width="0.4425%" height="15" fill="rgb(245,47,8)" fg:x="424" fg:w="2"/><text x="94.0553%" y="398.50"></text></g><g><title>cython_operation (pandas/core/groupby/ops.py:507) (1 samples, 0.22%)</title><rect x="94.2478%" y="436" width="0.2212%" height="15" fill="rgb(205,17,20)" fg:x="426" fg:w="1"/><text x="94.4978%" y="446.50"></text></g><g><title>_cython_op_ndim_compat (pandas/core/groupby/ops.py:304) (1 samples, 0.22%)</title><rect x="94.2478%" y="452" width="0.2212%" height="15" fill="rgb(232,151,16)" fg:x="426" fg:w="1"/><text x="94.4978%" y="462.50"></text></g><g><title>_call_cython_op (pandas/core/groupby/ops.py:348) (1 samples, 0.22%)</title><rect x="94.2478%" y="468" width="0.2212%" height="15" fill="rgb(208,30,32)" fg:x="426" fg:w="1"/><text x="94.4978%" y="478.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (3 samples, 0.66%)</title><rect x="94.4690%" y="484" width="0.6637%" height="15" fill="rgb(254,26,3)" fg:x="427" fg:w="3"/><text x="94.7190%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (3 samples, 0.66%)</title><rect x="94.4690%" y="500" width="0.6637%" height="15" fill="rgb(240,177,30)" fg:x="427" fg:w="3"/><text x="94.7190%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (3 samples, 0.66%)</title><rect x="94.4690%" y="516" width="0.6637%" height="15" fill="rgb(248,76,44)" fg:x="427" fg:w="3"/><text x="94.7190%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (3 samples, 0.66%)</title><rect x="94.4690%" y="532" width="0.6637%" height="15" fill="rgb(241,186,54)" fg:x="427" fg:w="3"/><text x="94.7190%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (3 samples, 0.66%)</title><rect x="94.4690%" y="548" width="0.6637%" height="15" fill="rgb(249,171,29)" fg:x="427" fg:w="3"/><text x="94.7190%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (3 samples, 0.66%)</title><rect x="94.4690%" y="564" width="0.6637%" height="15" fill="rgb(237,151,44)" fg:x="427" fg:w="3"/><text x="94.7190%" y="574.50"></text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (6 samples, 1.33%)</title><rect x="94.2478%" y="308" width="1.3274%" height="15" fill="rgb(228,174,30)" fg:x="426" fg:w="6"/><text x="94.4978%" y="318.50"></text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (6 samples, 1.33%)</title><rect x="94.2478%" y="324" width="1.3274%" height="15" fill="rgb(252,14,37)" fg:x="426" fg:w="6"/><text x="94.4978%" y="334.50"></text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (6 samples, 1.33%)</title><rect x="94.2478%" y="340" width="1.3274%" height="15" fill="rgb(207,111,40)" fg:x="426" fg:w="6"/><text x="94.4978%" y="350.50"></text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (6 samples, 1.33%)</title><rect x="94.2478%" y="356" width="1.3274%" height="15" fill="rgb(248,171,54)" fg:x="426" fg:w="6"/><text x="94.4978%" y="366.50"></text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (6 samples, 1.33%)</title><rect x="94.2478%" y="372" width="1.3274%" height="15" fill="rgb(211,127,2)" fg:x="426" fg:w="6"/><text x="94.4978%" y="382.50"></text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (6 samples, 1.33%)</title><rect x="94.2478%" y="388" width="1.3274%" height="15" fill="rgb(236,87,47)" fg:x="426" fg:w="6"/><text x="94.4978%" y="398.50"></text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (6 samples, 1.33%)</title><rect x="94.2478%" y="404" width="1.3274%" height="15" fill="rgb(223,190,45)" fg:x="426" fg:w="6"/><text x="94.4978%" y="414.50"></text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (6 samples, 1.33%)</title><rect x="94.2478%" y="420" width="1.3274%" height="15" fill="rgb(215,5,16)" fg:x="426" fg:w="6"/><text x="94.4978%" y="430.50"></text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (5 samples, 1.11%)</title><rect x="94.4690%" y="436" width="1.1062%" height="15" fill="rgb(252,82,33)" fg:x="427" fg:w="5"/><text x="94.7190%" y="446.50"></text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (5 samples, 1.11%)</title><rect x="94.4690%" y="452" width="1.1062%" height="15" fill="rgb(247,213,44)" fg:x="427" fg:w="5"/><text x="94.7190%" y="462.50"></text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (5 samples, 1.11%)</title><rect x="94.4690%" y="468" width="1.1062%" height="15" fill="rgb(205,196,44)" fg:x="427" fg:w="5"/><text x="94.7190%" y="478.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (2 samples, 0.44%)</title><rect x="95.1327%" y="484" width="0.4425%" height="15" fill="rgb(237,96,54)" fg:x="430" fg:w="2"/><text x="95.3827%" y="494.50"></text></g><g><title>__getitem__ (pandas/core/frame.py:3856) (1 samples, 0.22%)</title><rect x="95.5752%" y="372" width="0.2212%" height="15" fill="rgb(230,113,34)" fg:x="432" fg:w="1"/><text x="95.8252%" y="382.50"></text></g><g><title>_get_item_cache (pandas/core/frame.py:4405) (1 samples, 0.22%)</title><rect x="95.5752%" y="388" width="0.2212%" height="15" fill="rgb(221,224,12)" fg:x="432" fg:w="1"/><text x="95.8252%" y="398.50"></text></g><g><title>_ixs (pandas/core/frame.py:3779) (1 samples, 0.22%)</title><rect x="95.5752%" y="404" width="0.2212%" height="15" fill="rgb(219,112,44)" fg:x="432" fg:w="1"/><text x="95.8252%" y="414.50"></text></g><g><title>_box_col_values (pandas/core/frame.py:4387) (1 samples, 0.22%)</title><rect x="95.5752%" y="420" width="0.2212%" height="15" fill="rgb(210,31,13)" fg:x="432" fg:w="1"/><text x="95.8252%" y="430.50"></text></g><g><title>__finalize__ (pandas/core/generic.py:6147) (1 samples, 0.22%)</title><rect x="95.5752%" y="436" width="0.2212%" height="15" fill="rgb(230,25,16)" fg:x="432" fg:w="1"/><text x="95.8252%" y="446.50"></text></g><g><title>__call__ (dask/optimization.py:992) (17 samples, 3.76%)</title><rect x="92.2566%" y="228" width="3.7611%" height="15" fill="rgb(246,108,53)" fg:x="417" fg:w="17"/><text x="92.5066%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (17 samples, 3.76%)</title><rect x="92.2566%" y="244" width="3.7611%" height="15" fill="rgb(241,172,50)" fg:x="417" fg:w="17"/><text x="92.5066%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (17 samples, 3.76%)</title><rect x="92.2566%" y="260" width="3.7611%" height="15" fill="rgb(235,141,10)" fg:x="417" fg:w="17"/><text x="92.5066%" y="270.50">_exe..</text></g><g><title>apply (dask/utils.py:46) (8 samples, 1.77%)</title><rect x="94.2478%" y="276" width="1.7699%" height="15" fill="rgb(220,174,43)" fg:x="426" fg:w="8"/><text x="94.4978%" y="286.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (8 samples, 1.77%)</title><rect x="94.2478%" y="292" width="1.7699%" height="15" fill="rgb(215,181,40)" fg:x="426" fg:w="8"/><text x="94.4978%" y="302.50"></text></g><g><title>_groupby_raise_unaligned (dask/dataframe/groupby.py:156) (2 samples, 0.44%)</title><rect x="95.5752%" y="308" width="0.4425%" height="15" fill="rgb(230,97,2)" fg:x="432" fg:w="2"/><text x="95.8252%" y="318.50"></text></g><g><title>groupby (pandas/core/frame.py:8730) (2 samples, 0.44%)</title><rect x="95.5752%" y="324" width="0.4425%" height="15" fill="rgb(211,25,27)" fg:x="432" fg:w="2"/><text x="95.8252%" y="334.50"></text></g><g><title>__init__ (pandas/core/groupby/groupby.py:1241) (2 samples, 0.44%)</title><rect x="95.5752%" y="340" width="0.4425%" height="15" fill="rgb(230,87,26)" fg:x="432" fg:w="2"/><text x="95.8252%" y="350.50"></text></g><g><title>get_grouper (pandas/core/groupby/grouper.py:812) (2 samples, 0.44%)</title><rect x="95.5752%" y="356" width="0.4425%" height="15" fill="rgb(227,160,17)" fg:x="432" fg:w="2"/><text x="95.8252%" y="366.50"></text></g><g><title>_check_label_or_level_ambiguity (pandas/core/generic.py:1759) (1 samples, 0.22%)</title><rect x="95.7965%" y="372" width="0.2212%" height="15" fill="rgb(244,85,34)" fg:x="433" fg:w="1"/><text x="96.0465%" y="382.50"></text></g><g><title>_get_names (pandas/core/indexes/base.py:1750) (1 samples, 0.22%)</title><rect x="95.7965%" y="388" width="0.2212%" height="15" fill="rgb(207,70,0)" fg:x="433" fg:w="1"/><text x="96.0465%" y="398.50"></text></g><g><title>thread (0x30F498000) (18 samples, 3.98%)</title><rect x="92.2566%" y="68" width="3.9823%" height="15" fill="rgb(223,129,7)" fg:x="417" fg:w="18"/><text x="92.5066%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (18 samples, 3.98%)</title><rect x="92.2566%" y="84" width="3.9823%" height="15" fill="rgb(246,105,7)" fg:x="417" fg:w="18"/><text x="92.5066%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (18 samples, 3.98%)</title><rect x="92.2566%" y="100" width="3.9823%" height="15" fill="rgb(215,154,42)" fg:x="417" fg:w="18"/><text x="92.5066%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (18 samples, 3.98%)</title><rect x="92.2566%" y="116" width="3.9823%" height="15" fill="rgb(220,215,30)" fg:x="417" fg:w="18"/><text x="92.5066%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (18 samples, 3.98%)</title><rect x="92.2566%" y="132" width="3.9823%" height="15" fill="rgb(228,81,51)" fg:x="417" fg:w="18"/><text x="92.5066%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (18 samples, 3.98%)</title><rect x="92.2566%" y="148" width="3.9823%" height="15" fill="rgb(247,71,54)" fg:x="417" fg:w="18"/><text x="92.5066%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (18 samples, 3.98%)</title><rect x="92.2566%" y="164" width="3.9823%" height="15" fill="rgb(234,176,34)" fg:x="417" fg:w="18"/><text x="92.5066%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (18 samples, 3.98%)</title><rect x="92.2566%" y="180" width="3.9823%" height="15" fill="rgb(241,103,54)" fg:x="417" fg:w="18"/><text x="92.5066%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (18 samples, 3.98%)</title><rect x="92.2566%" y="196" width="3.9823%" height="15" fill="rgb(228,22,34)" fg:x="417" fg:w="18"/><text x="92.5066%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (18 samples, 3.98%)</title><rect x="92.2566%" y="212" width="3.9823%" height="15" fill="rgb(241,179,48)" fg:x="417" fg:w="18"/><text x="92.5066%" y="222.50">_exe..</text></g><g><title>pipe (toolz/functoolz.py:607) (1 samples, 0.22%)</title><rect x="96.0177%" y="228" width="0.2212%" height="15" fill="rgb(235,167,37)" fg:x="434" fg:w="1"/><text x="96.2677%" y="238.50"></text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (1 samples, 0.22%)</title><rect x="96.0177%" y="244" width="0.2212%" height="15" fill="rgb(213,109,30)" fg:x="434" fg:w="1"/><text x="96.2677%" y="254.50"></text></g><g><title>__init__ (pandas/core/frame.py:668) (1 samples, 0.22%)</title><rect x="96.0177%" y="260" width="0.2212%" height="15" fill="rgb(222,172,16)" fg:x="434" fg:w="1"/><text x="96.2677%" y="270.50"></text></g><g><title>dict_to_mgr (pandas/core/internals/construction.py:423) (1 samples, 0.22%)</title><rect x="96.0177%" y="276" width="0.2212%" height="15" fill="rgb(233,192,5)" fg:x="434" fg:w="1"/><text x="96.2677%" y="286.50"></text></g><g><title>arrays_to_mgr (pandas/core/internals/construction.py:96) (1 samples, 0.22%)</title><rect x="96.0177%" y="292" width="0.2212%" height="15" fill="rgb(247,189,41)" fg:x="434" fg:w="1"/><text x="96.2677%" y="302.50"></text></g><g><title>create_block_manager_from_column_arrays (pandas/core/internals/managers.py:2068) (1 samples, 0.22%)</title><rect x="96.0177%" y="308" width="0.2212%" height="15" fill="rgb(218,134,47)" fg:x="434" fg:w="1"/><text x="96.2677%" y="318.50"></text></g><g><title>_consolidate_inplace (pandas/core/internals/managers.py:1744) (1 samples, 0.22%)</title><rect x="96.0177%" y="324" width="0.2212%" height="15" fill="rgb(216,29,3)" fg:x="434" fg:w="1"/><text x="96.2677%" y="334.50"></text></g><g><title>is_consolidated (pandas/core/internals/managers.py:1726) (1 samples, 0.22%)</title><rect x="96.0177%" y="340" width="0.2212%" height="15" fill="rgb(246,140,12)" fg:x="434" fg:w="1"/><text x="96.2677%" y="350.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="96.2389%" y="276" width="1.3274%" height="15" fill="rgb(230,136,11)" fg:x="435" fg:w="6"/><text x="96.4889%" y="286.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="96.2389%" y="292" width="1.3274%" height="15" fill="rgb(247,22,47)" fg:x="435" fg:w="6"/><text x="96.4889%" y="302.50"></text></g><g><title><listcomp> (dask/core.py:121) (6 samples, 1.33%)</title><rect x="96.2389%" y="308" width="1.3274%" height="15" fill="rgb(218,84,22)" fg:x="435" fg:w="6"/><text x="96.4889%" y="318.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="96.2389%" y="324" width="1.3274%" height="15" fill="rgb(216,87,39)" fg:x="435" fg:w="6"/><text x="96.4889%" y="334.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="96.2389%" y="340" width="1.3274%" height="15" fill="rgb(221,178,8)" fg:x="435" fg:w="6"/><text x="96.4889%" y="350.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="96.2389%" y="356" width="1.3274%" height="15" fill="rgb(230,42,11)" fg:x="435" fg:w="6"/><text x="96.4889%" y="366.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="96.2389%" y="372" width="1.3274%" height="15" fill="rgb(237,229,4)" fg:x="435" fg:w="6"/><text x="96.4889%" y="382.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="96.2389%" y="388" width="1.3274%" height="15" fill="rgb(222,31,33)" fg:x="435" fg:w="6"/><text x="96.4889%" y="398.50"></text></g><g><title><genexpr> (dask/core.py:127) (6 samples, 1.33%)</title><rect x="96.2389%" y="404" width="1.3274%" height="15" fill="rgb(210,17,39)" fg:x="435" fg:w="6"/><text x="96.4889%" y="414.50"></text></g><g><title>_execute_task (dask/core.py:90) (6 samples, 1.33%)</title><rect x="96.2389%" y="420" width="1.3274%" height="15" fill="rgb(244,93,20)" fg:x="435" fg:w="6"/><text x="96.4889%" y="430.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (6 samples, 1.33%)</title><rect x="96.2389%" y="436" width="1.3274%" height="15" fill="rgb(210,40,47)" fg:x="435" fg:w="6"/><text x="96.4889%" y="446.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (6 samples, 1.33%)</title><rect x="96.2389%" y="452" width="1.3274%" height="15" fill="rgb(239,211,47)" fg:x="435" fg:w="6"/><text x="96.4889%" y="462.50"></text></g><g><title>f (qarray/df.py:105) (6 samples, 1.33%)</title><rect x="96.2389%" y="468" width="1.3274%" height="15" fill="rgb(251,223,49)" fg:x="435" fg:w="6"/><text x="96.4889%" y="478.50"></text></g><g><title>to_pd (qarray/df.py:72) (6 samples, 1.33%)</title><rect x="96.2389%" y="484" width="1.3274%" height="15" fill="rgb(221,149,5)" fg:x="435" fg:w="6"/><text x="96.4889%" y="494.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (6 samples, 1.33%)</title><rect x="96.2389%" y="500" width="1.3274%" height="15" fill="rgb(219,224,51)" fg:x="435" fg:w="6"/><text x="96.4889%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/ops.py:671) (7 samples, 1.55%)</title><rect x="97.5664%" y="484" width="1.5487%" height="15" fill="rgb(223,7,8)" fg:x="441" fg:w="7"/><text x="97.8164%" y="494.50"></text></g><g><title><listcomp> (pandas/core/groupby/ops.py:674) (7 samples, 1.55%)</title><rect x="97.5664%" y="500" width="1.5487%" height="15" fill="rgb(241,217,22)" fg:x="441" fg:w="7"/><text x="97.8164%" y="510.50"></text></g><g><title>codes (pandas/core/groupby/grouper.py:689) (7 samples, 1.55%)</title><rect x="97.5664%" y="516" width="1.5487%" height="15" fill="rgb(248,209,0)" fg:x="441" fg:w="7"/><text x="97.8164%" y="526.50"></text></g><g><title>_codes_and_uniques (pandas/core/groupby/grouper.py:743) (7 samples, 1.55%)</title><rect x="97.5664%" y="532" width="1.5487%" height="15" fill="rgb(217,205,4)" fg:x="441" fg:w="7"/><text x="97.8164%" y="542.50"></text></g><g><title>factorize (pandas/core/algorithms.py:610) (7 samples, 1.55%)</title><rect x="97.5664%" y="548" width="1.5487%" height="15" fill="rgb(228,124,39)" fg:x="441" fg:w="7"/><text x="97.8164%" y="558.50"></text></g><g><title>factorize_array (pandas/core/algorithms.py:548) (7 samples, 1.55%)</title><rect x="97.5664%" y="564" width="1.5487%" height="15" fill="rgb(250,116,42)" fg:x="441" fg:w="7"/><text x="97.8164%" y="574.50"></text></g><g><title>compress_group_index (pandas/core/sorting.py:746) (1 samples, 0.22%)</title><rect x="99.1150%" y="484" width="0.2212%" height="15" fill="rgb(223,202,9)" fg:x="448" fg:w="1"/><text x="99.3650%" y="494.50"></text></g><g><title>all (452 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(242,222,40)" fg:x="0" fg:w="452"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x31049B000) (17 samples, 3.76%)</title><rect x="96.2389%" y="68" width="3.7611%" height="15" fill="rgb(229,99,46)" fg:x="435" fg:w="17"/><text x="96.4889%" y="78.50">thre..</text></g><g><title>_bootstrap (threading.py:923) (17 samples, 3.76%)</title><rect x="96.2389%" y="84" width="3.7611%" height="15" fill="rgb(225,56,46)" fg:x="435" fg:w="17"/><text x="96.4889%" y="94.50">_boo..</text></g><g><title>_bootstrap_inner (threading.py:963) (17 samples, 3.76%)</title><rect x="96.2389%" y="100" width="3.7611%" height="15" fill="rgb(227,94,5)" fg:x="435" fg:w="17"/><text x="96.4889%" y="110.50">_boo..</text></g><g><title>run (threading.py:906) (17 samples, 3.76%)</title><rect x="96.2389%" y="116" width="3.7611%" height="15" fill="rgb(205,112,38)" fg:x="435" fg:w="17"/><text x="96.4889%" y="126.50">run ..</text></g><g><title>_worker (concurrent/futures/thread.py:69) (17 samples, 3.76%)</title><rect x="96.2389%" y="132" width="3.7611%" height="15" fill="rgb(231,133,46)" fg:x="435" fg:w="17"/><text x="96.4889%" y="142.50">_wor..</text></g><g><title>run (concurrent/futures/thread.py:53) (17 samples, 3.76%)</title><rect x="96.2389%" y="148" width="3.7611%" height="15" fill="rgb(217,16,9)" fg:x="435" fg:w="17"/><text x="96.4889%" y="158.50">run ..</text></g><g><title>batch_execute_tasks (dask/local.py:235) (17 samples, 3.76%)</title><rect x="96.2389%" y="164" width="3.7611%" height="15" fill="rgb(249,173,9)" fg:x="435" fg:w="17"/><text x="96.4889%" y="174.50">batc..</text></g><g><title><listcomp> (dask/local.py:239) (17 samples, 3.76%)</title><rect x="96.2389%" y="180" width="3.7611%" height="15" fill="rgb(205,163,53)" fg:x="435" fg:w="17"/><text x="96.4889%" y="190.50"><lis..</text></g><g><title>execute_task (dask/local.py:215) (17 samples, 3.76%)</title><rect x="96.2389%" y="196" width="3.7611%" height="15" fill="rgb(217,54,41)" fg:x="435" fg:w="17"/><text x="96.4889%" y="206.50">exec..</text></g><g><title>_execute_task (dask/core.py:90) (17 samples, 3.76%)</title><rect x="96.2389%" y="212" width="3.7611%" height="15" fill="rgb(228,216,12)" fg:x="435" fg:w="17"/><text x="96.4889%" y="222.50">_exe..</text></g><g><title>__call__ (dask/optimization.py:992) (17 samples, 3.76%)</title><rect x="96.2389%" y="228" width="3.7611%" height="15" fill="rgb(244,228,15)" fg:x="435" fg:w="17"/><text x="96.4889%" y="238.50">__ca..</text></g><g><title>get (dask/core.py:136) (17 samples, 3.76%)</title><rect x="96.2389%" y="244" width="3.7611%" height="15" fill="rgb(221,176,53)" fg:x="435" fg:w="17"/><text x="96.4889%" y="254.50">get ..</text></g><g><title>_execute_task (dask/core.py:90) (17 samples, 3.76%)</title><rect x="96.2389%" y="260" width="3.7611%" height="15" fill="rgb(205,94,34)" fg:x="435" fg:w="17"/><text x="96.4889%" y="270.50">_exe..</text></g><g><title>apply (dask/utils.py:46) (11 samples, 2.43%)</title><rect x="97.5664%" y="276" width="2.4336%" height="15" fill="rgb(213,110,48)" fg:x="441" fg:w="11"/><text x="97.8164%" y="286.50">ap..</text></g><g><title>_groupby_apply_funcs (dask/dataframe/groupby.py:1166) (11 samples, 2.43%)</title><rect x="97.5664%" y="292" width="2.4336%" height="15" fill="rgb(236,142,28)" fg:x="441" fg:w="11"/><text x="97.8164%" y="302.50">_g..</text></g><g><title>_apply_func_to_column (dask/dataframe/groupby.py:1272) (11 samples, 2.43%)</title><rect x="97.5664%" y="308" width="2.4336%" height="15" fill="rgb(225,135,29)" fg:x="441" fg:w="11"/><text x="97.8164%" y="318.50">_a..</text></g><g><title><lambda> (dask_sql/physical/rel/logical/aggregate.py:490) (11 samples, 2.43%)</title><rect x="97.5664%" y="324" width="2.4336%" height="15" fill="rgb(252,45,31)" fg:x="441" fg:w="11"/><text x="97.8164%" y="334.50"><l..</text></g><g><title>sum (pandas/core/groupby/groupby.py:2989) (11 samples, 2.43%)</title><rect x="97.5664%" y="340" width="2.4336%" height="15" fill="rgb(211,187,50)" fg:x="441" fg:w="11"/><text x="97.8164%" y="350.50">su..</text></g><g><title>_agg_general (pandas/core/groupby/groupby.py:1826) (11 samples, 2.43%)</title><rect x="97.5664%" y="356" width="2.4336%" height="15" fill="rgb(229,109,7)" fg:x="441" fg:w="11"/><text x="97.8164%" y="366.50">_a..</text></g><g><title>_cython_agg_general (pandas/core/groupby/groupby.py:1886) (11 samples, 2.43%)</title><rect x="97.5664%" y="372" width="2.4336%" height="15" fill="rgb(251,131,51)" fg:x="441" fg:w="11"/><text x="97.8164%" y="382.50">_c..</text></g><g><title>grouped_reduce (pandas/core/internals/base.py:334) (11 samples, 2.43%)</title><rect x="97.5664%" y="388" width="2.4336%" height="15" fill="rgb(251,180,35)" fg:x="441" fg:w="11"/><text x="97.8164%" y="398.50">gr..</text></g><g><title>array_func (pandas/core/groupby/groupby.py:1900) (11 samples, 2.43%)</title><rect x="97.5664%" y="404" width="2.4336%" height="15" fill="rgb(211,46,32)" fg:x="441" fg:w="11"/><text x="97.8164%" y="414.50">ar..</text></g><g><title>_cython_operation (pandas/core/groupby/ops.py:796) (11 samples, 2.43%)</title><rect x="97.5664%" y="420" width="2.4336%" height="15" fill="rgb(248,123,17)" fg:x="441" fg:w="11"/><text x="97.8164%" y="430.50">_c..</text></g><g><title>has_dropped_na (pandas/core/groupby/ops.py:719) (11 samples, 2.43%)</title><rect x="97.5664%" y="436" width="2.4336%" height="15" fill="rgb(227,141,18)" fg:x="441" fg:w="11"/><text x="97.8164%" y="446.50">ha..</text></g><g><title>group_info (pandas/core/groupby/ops.py:727) (11 samples, 2.43%)</title><rect x="97.5664%" y="452" width="2.4336%" height="15" fill="rgb(216,102,9)" fg:x="441" fg:w="11"/><text x="97.8164%" y="462.50">gr..</text></g><g><title>_get_compressed_codes (pandas/core/groupby/ops.py:742) (11 samples, 2.43%)</title><rect x="97.5664%" y="468" width="2.4336%" height="15" fill="rgb(253,47,13)" fg:x="441" fg:w="11"/><text x="97.8164%" y="478.50">_g..</text></g><g><title>get_group_index (pandas/core/sorting.py:122) (3 samples, 0.66%)</title><rect x="99.3363%" y="484" width="0.6637%" height="15" fill="rgb(226,93,23)" fg:x="449" fg:w="3"/><text x="99.5863%" y="494.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/sanity.py-2024-03-03T07:45:47+05:30.svg b/perf_tests/sanity.py-2024-03-03T07:45:47+05:30.svg new file mode 100644 index 0000000..72b0bba --- /dev/null +++ b/perf_tests/sanity.py-2024-03-03T07:45:47+05:30.svg @@ -0,0 +1,415 @@ +<?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="2202" onload="init(evt)" viewBox="0 0 1200 2202" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2202" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./sanity.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2191.00"> </text><svg id="frames" x="10" width="1180" total_samples="218"><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="9.1743%" y="516" width="0.4587%" height="15" fill="rgb(227,0,7)" fg:x="20" fg:w="1"/><text x="9.4243%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="9.1743%" y="532" width="0.4587%" height="15" fill="rgb(217,0,24)" fg:x="20" fg:w="1"/><text x="9.4243%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="9.1743%" y="548" width="0.4587%" height="15" fill="rgb(221,193,54)" fg:x="20" fg:w="1"/><text x="9.4243%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="9.1743%" y="564" width="0.4587%" height="15" fill="rgb(248,212,6)" fg:x="20" fg:w="1"/><text x="9.4243%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="9.1743%" y="580" width="0.4587%" height="15" fill="rgb(208,68,35)" fg:x="20" fg:w="1"/><text x="9.4243%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="9.1743%" y="596" width="0.4587%" height="15" fill="rgb(232,128,0)" fg:x="20" fg:w="1"/><text x="9.4243%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (1 samples, 0.46%)</title><rect x="9.1743%" y="612" width="0.4587%" height="15" fill="rgb(207,160,47)" fg:x="20" fg:w="1"/><text x="9.4243%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="9.1743%" y="628" width="0.4587%" height="15" fill="rgb(228,23,34)" fg:x="20" fg:w="1"/><text x="9.4243%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="9.1743%" y="644" width="0.4587%" height="15" fill="rgb(218,30,26)" fg:x="20" fg:w="1"/><text x="9.4243%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="9.1743%" y="660" width="0.4587%" height="15" fill="rgb(220,122,19)" fg:x="20" fg:w="1"/><text x="9.4243%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="9.1743%" y="676" width="0.4587%" height="15" fill="rgb(250,228,42)" fg:x="20" fg:w="1"/><text x="9.4243%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="9.1743%" y="692" width="0.4587%" height="15" fill="rgb(240,193,28)" fg:x="20" fg:w="1"/><text x="9.4243%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/teradata.py:1) (1 samples, 0.46%)</title><rect x="9.1743%" y="708" width="0.4587%" height="15" fill="rgb(216,20,37)" fg:x="20" fg:w="1"/><text x="9.4243%" y="718.50"></text></g><g><title>Teradata (sqlglot/dialects/teradata.py:10) (1 samples, 0.46%)</title><rect x="9.1743%" y="724" width="0.4587%" height="15" fill="rgb(206,188,39)" fg:x="20" fg:w="1"/><text x="9.4243%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.46%)</title><rect x="9.1743%" y="740" width="0.4587%" height="15" fill="rgb(217,207,13)" fg:x="20" fg:w="1"/><text x="9.4243%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="9.1743%" y="484" width="0.9174%" height="15" fill="rgb(231,73,38)" fg:x="20" fg:w="2"/><text x="9.4243%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="9.1743%" y="500" width="0.9174%" height="15" fill="rgb(225,20,46)" fg:x="20" fg:w="2"/><text x="9.4243%" y="510.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="9.6330%" y="516" width="0.4587%" height="15" fill="rgb(210,31,41)" fg:x="21" fg:w="1"/><text x="9.8830%" y="526.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="9.6330%" y="532" width="0.4587%" height="15" fill="rgb(221,200,47)" fg:x="21" fg:w="1"/><text x="9.8830%" y="542.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="9.6330%" y="548" width="0.4587%" height="15" fill="rgb(226,26,5)" fg:x="21" fg:w="1"/><text x="9.8830%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="9.1743%" y="372" width="1.3761%" height="15" fill="rgb(249,33,26)" fg:x="20" fg:w="3"/><text x="9.4243%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="9.1743%" y="388" width="1.3761%" height="15" fill="rgb(235,183,28)" fg:x="20" fg:w="3"/><text x="9.4243%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="9.1743%" y="404" width="1.3761%" height="15" fill="rgb(221,5,38)" fg:x="20" fg:w="3"/><text x="9.4243%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="9.1743%" y="420" width="1.3761%" height="15" fill="rgb(247,18,42)" fg:x="20" fg:w="3"/><text x="9.4243%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="9.1743%" y="436" width="1.3761%" height="15" fill="rgb(241,131,45)" fg:x="20" fg:w="3"/><text x="9.4243%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="9.1743%" y="452" width="1.3761%" height="15" fill="rgb(249,31,29)" fg:x="20" fg:w="3"/><text x="9.4243%" y="462.50"></text></g><g><title><module> (sqlglot/__init__.py:1) (3 samples, 1.38%)</title><rect x="9.1743%" y="468" width="1.3761%" height="15" fill="rgb(225,111,53)" fg:x="20" fg:w="3"/><text x="9.4243%" y="478.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="10.0917%" y="484" width="0.4587%" height="15" fill="rgb(238,160,17)" fg:x="22" fg:w="1"/><text x="10.3417%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.0917%" y="500" width="0.4587%" height="15" fill="rgb(214,148,48)" fg:x="22" fg:w="1"/><text x="10.3417%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.0917%" y="516" width="0.4587%" height="15" fill="rgb(232,36,49)" fg:x="22" fg:w="1"/><text x="10.3417%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.0917%" y="532" width="0.4587%" height="15" fill="rgb(209,103,24)" fg:x="22" fg:w="1"/><text x="10.3417%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.0917%" y="548" width="0.4587%" height="15" fill="rgb(229,88,8)" fg:x="22" fg:w="1"/><text x="10.3417%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.0917%" y="564" width="0.4587%" height="15" fill="rgb(213,181,19)" fg:x="22" fg:w="1"/><text x="10.3417%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.0917%" y="580" width="0.4587%" height="15" fill="rgb(254,191,54)" fg:x="22" fg:w="1"/><text x="10.3417%" y="590.50"></text></g><g><title><module> (sqlglot/expressions.py:1) (1 samples, 0.46%)</title><rect x="10.0917%" y="596" width="0.4587%" height="15" fill="rgb(241,83,37)" fg:x="22" fg:w="1"/><text x="10.3417%" y="606.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.46%)</title><rect x="10.0917%" y="612" width="0.4587%" height="15" fill="rgb(233,36,39)" fg:x="22" fg:w="1"/><text x="10.3417%" y="622.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.46%)</title><rect x="10.0917%" y="628" width="0.4587%" height="15" fill="rgb(226,3,54)" fg:x="22" fg:w="1"/><text x="10.3417%" y="638.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.46%)</title><rect x="10.0917%" y="644" width="0.4587%" height="15" fill="rgb(245,192,40)" fg:x="22" fg:w="1"/><text x="10.3417%" y="654.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.46%)</title><rect x="10.0917%" y="660" width="0.4587%" height="15" fill="rgb(238,167,29)" fg:x="22" fg:w="1"/><text x="10.3417%" y="670.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.46%)</title><rect x="10.0917%" y="676" width="0.4587%" height="15" fill="rgb(232,182,51)" fg:x="22" fg:w="1"/><text x="10.3417%" y="686.50"></text></g><g><title><module> (qarray/core.py:1) (4 samples, 1.83%)</title><rect x="9.1743%" y="276" width="1.8349%" height="15" fill="rgb(231,60,39)" fg:x="20" fg:w="4"/><text x="9.4243%" y="286.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="9.1743%" y="292" width="1.8349%" height="15" fill="rgb(208,69,12)" fg:x="20" fg:w="4"/><text x="9.4243%" y="302.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="9.1743%" y="308" width="1.8349%" height="15" fill="rgb(235,93,37)" fg:x="20" fg:w="4"/><text x="9.4243%" y="318.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="9.1743%" y="324" width="1.8349%" height="15" fill="rgb(213,116,39)" fg:x="20" fg:w="4"/><text x="9.4243%" y="334.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="9.1743%" y="340" width="1.8349%" height="15" fill="rgb(222,207,29)" fg:x="20" fg:w="4"/><text x="9.4243%" y="350.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="9.1743%" y="356" width="1.8349%" height="15" fill="rgb(206,96,30)" fg:x="20" fg:w="4"/><text x="9.4243%" y="366.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="372" width="0.4587%" height="15" fill="rgb(218,138,4)" fg:x="23" fg:w="1"/><text x="10.8005%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="388" width="0.4587%" height="15" fill="rgb(250,191,14)" fg:x="23" fg:w="1"/><text x="10.8005%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.5505%" y="404" width="0.4587%" height="15" fill="rgb(239,60,40)" fg:x="23" fg:w="1"/><text x="10.8005%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (1 samples, 0.46%)</title><rect x="10.5505%" y="420" width="0.4587%" height="15" fill="rgb(206,27,48)" fg:x="23" fg:w="1"/><text x="10.8005%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.5505%" y="436" width="0.4587%" height="15" fill="rgb(225,35,8)" fg:x="23" fg:w="1"/><text x="10.8005%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.5505%" y="452" width="0.4587%" height="15" fill="rgb(250,213,24)" fg:x="23" fg:w="1"/><text x="10.8005%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="468" width="0.4587%" height="15" fill="rgb(247,123,22)" fg:x="23" fg:w="1"/><text x="10.8005%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="484" width="0.4587%" height="15" fill="rgb(231,138,38)" fg:x="23" fg:w="1"/><text x="10.8005%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.5505%" y="500" width="0.4587%" height="15" fill="rgb(231,145,46)" fg:x="23" fg:w="1"/><text x="10.8005%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (1 samples, 0.46%)</title><rect x="10.5505%" y="516" width="0.4587%" height="15" fill="rgb(251,118,11)" fg:x="23" fg:w="1"/><text x="10.8005%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.5505%" y="532" width="0.4587%" height="15" fill="rgb(217,147,25)" fg:x="23" fg:w="1"/><text x="10.8005%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.5505%" y="548" width="0.4587%" height="15" fill="rgb(247,81,37)" fg:x="23" fg:w="1"/><text x="10.8005%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="564" width="0.4587%" height="15" fill="rgb(209,12,38)" fg:x="23" fg:w="1"/><text x="10.8005%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="580" width="0.4587%" height="15" fill="rgb(227,1,9)" fg:x="23" fg:w="1"/><text x="10.8005%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.5505%" y="596" width="0.4587%" height="15" fill="rgb(248,47,43)" fg:x="23" fg:w="1"/><text x="10.8005%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (1 samples, 0.46%)</title><rect x="10.5505%" y="612" width="0.4587%" height="15" fill="rgb(221,10,30)" fg:x="23" fg:w="1"/><text x="10.8005%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.5505%" y="628" width="0.4587%" height="15" fill="rgb(210,229,1)" fg:x="23" fg:w="1"/><text x="10.8005%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.5505%" y="644" width="0.4587%" height="15" fill="rgb(222,148,37)" fg:x="23" fg:w="1"/><text x="10.8005%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="660" width="0.4587%" height="15" fill="rgb(234,67,33)" fg:x="23" fg:w="1"/><text x="10.8005%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="676" width="0.4587%" height="15" fill="rgb(247,98,35)" fg:x="23" fg:w="1"/><text x="10.8005%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.5505%" y="692" width="0.4587%" height="15" fill="rgb(247,138,52)" fg:x="23" fg:w="1"/><text x="10.8005%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (1 samples, 0.46%)</title><rect x="10.5505%" y="708" width="0.4587%" height="15" fill="rgb(213,79,30)" fg:x="23" fg:w="1"/><text x="10.8005%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.5505%" y="724" width="0.4587%" height="15" fill="rgb(246,177,23)" fg:x="23" fg:w="1"/><text x="10.8005%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.5505%" y="740" width="0.4587%" height="15" fill="rgb(230,62,27)" fg:x="23" fg:w="1"/><text x="10.8005%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="756" width="0.4587%" height="15" fill="rgb(216,154,8)" fg:x="23" fg:w="1"/><text x="10.8005%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="772" width="0.4587%" height="15" fill="rgb(244,35,45)" fg:x="23" fg:w="1"/><text x="10.8005%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="10.5505%" y="788" width="0.4587%" height="15" fill="rgb(251,115,12)" fg:x="23" fg:w="1"/><text x="10.8005%" y="798.50"></text></g><g><title><module> (statistics.py:1) (1 samples, 0.46%)</title><rect x="10.5505%" y="804" width="0.4587%" height="15" fill="rgb(240,54,50)" fg:x="23" fg:w="1"/><text x="10.8005%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="10.5505%" y="820" width="0.4587%" height="15" fill="rgb(233,84,52)" fg:x="23" fg:w="1"/><text x="10.8005%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="10.5505%" y="836" width="0.4587%" height="15" fill="rgb(207,117,47)" fg:x="23" fg:w="1"/><text x="10.8005%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="10.5505%" y="852" width="0.4587%" height="15" fill="rgb(249,43,39)" fg:x="23" fg:w="1"/><text x="10.8005%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="10.5505%" y="868" width="0.4587%" height="15" fill="rgb(209,38,44)" fg:x="23" fg:w="1"/><text x="10.8005%" y="878.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="10.5505%" y="884" width="0.4587%" height="15" fill="rgb(236,212,23)" fg:x="23" fg:w="1"/><text x="10.8005%" y="894.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="10.5505%" y="900" width="0.4587%" height="15" fill="rgb(242,79,21)" fg:x="23" fg:w="1"/><text x="10.8005%" y="910.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.46%)</title><rect x="11.0092%" y="532" width="0.4587%" height="15" fill="rgb(211,96,35)" fg:x="24" fg:w="1"/><text x="11.2592%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="11.0092%" y="388" width="1.3761%" height="15" fill="rgb(253,215,40)" fg:x="24" fg:w="3"/><text x="11.2592%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="11.0092%" y="404" width="1.3761%" height="15" fill="rgb(211,81,21)" fg:x="24" fg:w="3"/><text x="11.2592%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="11.0092%" y="420" width="1.3761%" height="15" fill="rgb(208,190,38)" fg:x="24" fg:w="3"/><text x="11.2592%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="11.0092%" y="436" width="1.3761%" height="15" fill="rgb(235,213,38)" fg:x="24" fg:w="3"/><text x="11.2592%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="11.0092%" y="452" width="1.3761%" height="15" fill="rgb(237,122,38)" fg:x="24" fg:w="3"/><text x="11.2592%" y="462.50"></text></g><g><title><module> (dask/dataframe/groupby.py:1) (3 samples, 1.38%)</title><rect x="11.0092%" y="468" width="1.3761%" height="15" fill="rgb(244,218,35)" fg:x="24" fg:w="3"/><text x="11.2592%" y="478.50"></text></g><g><title>_GroupBy (dask/dataframe/groupby.py:1390) (3 samples, 1.38%)</title><rect x="11.0092%" y="484" width="1.3761%" height="15" fill="rgb(240,68,47)" fg:x="24" fg:w="3"/><text x="11.2592%" y="494.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 1.38%)</title><rect x="11.0092%" y="500" width="1.3761%" height="15" fill="rgb(210,16,53)" fg:x="24" fg:w="3"/><text x="11.2592%" y="510.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 1.38%)</title><rect x="11.0092%" y="516" width="1.3761%" height="15" fill="rgb(235,124,12)" fg:x="24" fg:w="3"/><text x="11.2592%" y="526.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (2 samples, 0.92%)</title><rect x="11.4679%" y="532" width="0.9174%" height="15" fill="rgb(224,169,11)" fg:x="25" fg:w="2"/><text x="11.7179%" y="542.50"></text></g><g><title><listcomp> (dask/utils.py:874) (2 samples, 0.92%)</title><rect x="11.4679%" y="548" width="0.9174%" height="15" fill="rgb(250,166,2)" fg:x="25" fg:w="2"/><text x="11.7179%" y="558.50"></text></g><g><title>match (re.py:188) (2 samples, 0.92%)</title><rect x="11.4679%" y="564" width="0.9174%" height="15" fill="rgb(242,216,29)" fg:x="25" fg:w="2"/><text x="11.7179%" y="574.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="11.9266%" y="580" width="0.4587%" height="15" fill="rgb(230,116,27)" fg:x="26" fg:w="1"/><text x="12.1766%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="12.8440%" y="1124" width="0.4587%" height="15" fill="rgb(228,99,48)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="12.8440%" y="1140" width="0.4587%" height="15" fill="rgb(253,11,6)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="12.8440%" y="1156" width="0.4587%" height="15" fill="rgb(247,143,39)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="12.8440%" y="1172" width="0.4587%" height="15" fill="rgb(236,97,10)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="12.8440%" y="1188" width="0.4587%" height="15" fill="rgb(233,208,19)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1198.50"></text></g><g><title><module> (scipy/__config__.py:3) (1 samples, 0.46%)</title><rect x="12.8440%" y="1204" width="0.4587%" height="15" fill="rgb(216,164,2)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1214.50"></text></g><g><title>_cleanup (scipy/__config__.py:14) (1 samples, 0.46%)</title><rect x="12.8440%" y="1220" width="0.4587%" height="15" fill="rgb(220,129,5)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1230.50"></text></g><g><title><dictcomp> (scipy/__config__.py:20) (1 samples, 0.46%)</title><rect x="12.8440%" y="1236" width="0.4587%" height="15" fill="rgb(242,17,10)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1246.50"></text></g><g><title>_cleanup (scipy/__config__.py:14) (1 samples, 0.46%)</title><rect x="12.8440%" y="1252" width="0.4587%" height="15" fill="rgb(242,107,0)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1262.50"></text></g><g><title><dictcomp> (scipy/__config__.py:20) (1 samples, 0.46%)</title><rect x="12.8440%" y="1268" width="0.4587%" height="15" fill="rgb(251,28,31)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1278.50"></text></g><g><title>_cleanup (scipy/__config__.py:14) (1 samples, 0.46%)</title><rect x="12.8440%" y="1284" width="0.4587%" height="15" fill="rgb(233,223,10)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1294.50"></text></g><g><title><dictcomp> (scipy/__config__.py:20) (1 samples, 0.46%)</title><rect x="12.8440%" y="1300" width="0.4587%" height="15" fill="rgb(215,21,27)" fg:x="28" fg:w="1"/><text x="13.0940%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="12.3853%" y="1012" width="1.3761%" height="15" fill="rgb(232,23,21)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="12.3853%" y="1028" width="1.3761%" height="15" fill="rgb(244,5,23)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="12.3853%" y="1044" width="1.3761%" height="15" fill="rgb(226,81,46)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="12.3853%" y="1060" width="1.3761%" height="15" fill="rgb(247,70,30)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="12.3853%" y="1076" width="1.3761%" height="15" fill="rgb(212,68,19)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="12.3853%" y="1092" width="1.3761%" height="15" fill="rgb(240,187,13)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1102.50"></text></g><g><title><module> (scipy/__init__.py:1) (3 samples, 1.38%)</title><rect x="12.3853%" y="1108" width="1.3761%" height="15" fill="rgb(223,113,26)" fg:x="27" fg:w="3"/><text x="12.6353%" y="1118.50"></text></g><g><title>wrap (scipy/_lib/deprecation.py:9) (1 samples, 0.46%)</title><rect x="13.3028%" y="1124" width="0.4587%" height="15" fill="rgb(206,192,2)" fg:x="29" fg:w="1"/><text x="13.5528%" y="1134.50"></text></g><g><title>update_wrapper (functools.py:35) (1 samples, 0.46%)</title><rect x="13.3028%" y="1140" width="0.4587%" height="15" fill="rgb(241,108,4)" fg:x="29" fg:w="1"/><text x="13.5528%" y="1150.50"></text></g><g><title>_ufunc_doc_signature_formatter (numpy/core/_internal.py:872) (1 samples, 0.46%)</title><rect x="13.3028%" y="1156" width="0.4587%" height="15" fill="rgb(247,173,49)" fg:x="29" fg:w="1"/><text x="13.5528%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="13.7615%" y="1140" width="0.4587%" height="15" fill="rgb(224,114,35)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1150.50"></text></g><g><title><module> (scipy/sparse/_csr.py:1) (1 samples, 0.46%)</title><rect x="13.7615%" y="1156" width="0.4587%" height="15" fill="rgb(245,159,27)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="13.7615%" y="1172" width="0.4587%" height="15" fill="rgb(245,172,44)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="13.7615%" y="1188" width="0.4587%" height="15" fill="rgb(236,23,11)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="13.7615%" y="1204" width="0.4587%" height="15" fill="rgb(205,117,38)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="13.7615%" y="1220" width="0.4587%" height="15" fill="rgb(237,72,25)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="13.7615%" y="1236" width="0.4587%" height="15" fill="rgb(244,70,9)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1246.50"></text></g><g><title><module> (scipy/sparse/_compressed.py:1) (1 samples, 0.46%)</title><rect x="13.7615%" y="1252" width="0.4587%" height="15" fill="rgb(217,125,39)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="13.7615%" y="1268" width="0.4587%" height="15" fill="rgb(235,36,10)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="13.7615%" y="1284" width="0.4587%" height="15" fill="rgb(251,123,47)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="13.7615%" y="1300" width="0.4587%" height="15" fill="rgb(221,13,13)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="13.7615%" y="1316" width="0.4587%" height="15" fill="rgb(238,131,9)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1326.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="13.7615%" y="1332" width="0.4587%" height="15" fill="rgb(211,50,8)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1342.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="13.7615%" y="1348" width="0.4587%" height="15" fill="rgb(245,182,24)" fg:x="30" fg:w="1"/><text x="14.0115%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="13.7615%" y="1076" width="0.9174%" height="15" fill="rgb(242,14,37)" fg:x="30" fg:w="2"/><text x="14.0115%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="13.7615%" y="1092" width="0.9174%" height="15" fill="rgb(246,228,12)" fg:x="30" fg:w="2"/><text x="14.0115%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="13.7615%" y="1108" width="0.9174%" height="15" fill="rgb(213,55,15)" fg:x="30" fg:w="2"/><text x="14.0115%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="13.7615%" y="1124" width="0.9174%" height="15" fill="rgb(209,9,3)" fg:x="30" fg:w="2"/><text x="14.0115%" y="1134.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="14.2202%" y="1140" width="0.4587%" height="15" fill="rgb(230,59,30)" fg:x="31" fg:w="1"/><text x="14.4702%" y="1150.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="14.2202%" y="1156" width="0.4587%" height="15" fill="rgb(209,121,21)" fg:x="31" fg:w="1"/><text x="14.4702%" y="1166.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (4 samples, 1.83%)</title><rect x="14.6789%" y="1572" width="1.8349%" height="15" fill="rgb(220,109,13)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1582.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="14.6789%" y="1588" width="1.8349%" height="15" fill="rgb(232,18,1)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="14.6789%" y="1604" width="1.8349%" height="15" fill="rgb(215,41,42)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1614.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="14.6789%" y="1620" width="1.8349%" height="15" fill="rgb(224,123,36)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1630.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="14.6789%" y="1636" width="1.8349%" height="15" fill="rgb(240,125,3)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1646.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (4 samples, 1.83%)</title><rect x="14.6789%" y="1652" width="1.8349%" height="15" fill="rgb(205,98,50)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1662.50">g..</text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (4 samples, 1.83%)</title><rect x="14.6789%" y="1668" width="1.8349%" height="15" fill="rgb(205,185,37)" fg:x="32" fg:w="4"/><text x="14.9289%" y="1678.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="16.5138%" y="1684" width="0.4587%" height="15" fill="rgb(238,207,15)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="16.5138%" y="1700" width="0.4587%" height="15" fill="rgb(213,199,42)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="16.5138%" y="1716" width="0.4587%" height="15" fill="rgb(235,201,11)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="16.5138%" y="1732" width="0.4587%" height="15" fill="rgb(207,46,11)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="16.5138%" y="1748" width="0.4587%" height="15" fill="rgb(241,35,35)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1758.50"></text></g><g><title><module> (scipy/linalg/_matfuncs.py:4) (1 samples, 0.46%)</title><rect x="16.5138%" y="1764" width="0.4587%" height="15" fill="rgb(243,32,47)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="16.5138%" y="1780" width="0.4587%" height="15" fill="rgb(247,202,23)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="16.5138%" y="1796" width="0.4587%" height="15" fill="rgb(219,102,11)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="16.5138%" y="1812" width="0.4587%" height="15" fill="rgb(243,110,44)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.46%)</title><rect x="16.5138%" y="1828" width="0.4587%" height="15" fill="rgb(222,74,54)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="16.5138%" y="1844" width="0.4587%" height="15" fill="rgb(216,99,12)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1854.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="16.5138%" y="1860" width="0.4587%" height="15" fill="rgb(226,22,26)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1870.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="16.5138%" y="1876" width="0.4587%" height="15" fill="rgb(217,163,10)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1886.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="16.5138%" y="1892" width="0.4587%" height="15" fill="rgb(213,25,53)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1902.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="16.5138%" y="1908" width="0.4587%" height="15" fill="rgb(252,105,26)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1918.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="16.5138%" y="1924" width="0.4587%" height="15" fill="rgb(220,39,43)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1934.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="16.5138%" y="1940" width="0.4587%" height="15" fill="rgb(229,68,48)" fg:x="36" fg:w="1"/><text x="16.7638%" y="1950.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (8 samples, 3.67%)</title><rect x="14.6789%" y="1476" width="3.6697%" height="15" fill="rgb(252,8,32)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1486.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="14.6789%" y="1492" width="3.6697%" height="15" fill="rgb(223,20,43)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1502.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="14.6789%" y="1508" width="3.6697%" height="15" fill="rgb(229,81,49)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1518.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="14.6789%" y="1524" width="3.6697%" height="15" fill="rgb(236,28,36)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1534.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.67%)</title><rect x="14.6789%" y="1540" width="3.6697%" height="15" fill="rgb(249,185,26)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1550.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="14.6789%" y="1556" width="3.6697%" height="15" fill="rgb(249,174,33)" fg:x="32" fg:w="8"/><text x="14.9289%" y="1566.50">_cal..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (4 samples, 1.83%)</title><rect x="16.5138%" y="1572" width="1.8349%" height="15" fill="rgb(233,201,37)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1582.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="16.5138%" y="1588" width="1.8349%" height="15" fill="rgb(221,78,26)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="16.5138%" y="1604" width="1.8349%" height="15" fill="rgb(250,127,30)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1614.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="16.5138%" y="1620" width="1.8349%" height="15" fill="rgb(230,49,44)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1630.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="16.5138%" y="1636" width="1.8349%" height="15" fill="rgb(229,67,23)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1646.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="16.5138%" y="1652" width="1.8349%" height="15" fill="rgb(249,83,47)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1662.50">_..</text></g><g><title><module> (scipy/linalg/__init__.py:1) (4 samples, 1.83%)</title><rect x="16.5138%" y="1668" width="1.8349%" height="15" fill="rgb(215,43,3)" fg:x="36" fg:w="4"/><text x="16.7638%" y="1678.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="16.9725%" y="1684" width="1.3761%" height="15" fill="rgb(238,154,13)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="1700" width="1.3761%" height="15" fill="rgb(219,56,2)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="16.9725%" y="1716" width="1.3761%" height="15" fill="rgb(233,0,4)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="16.9725%" y="1732" width="1.3761%" height="15" fill="rgb(235,30,7)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="16.9725%" y="1748" width="1.3761%" height="15" fill="rgb(250,79,13)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="16.9725%" y="1764" width="1.3761%" height="15" fill="rgb(211,146,34)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="1780" width="1.3761%" height="15" fill="rgb(228,22,38)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1790.50"></text></g><g><title><module> (scipy/linalg/flinalg.py:3) (3 samples, 1.38%)</title><rect x="16.9725%" y="1796" width="1.3761%" height="15" fill="rgb(235,168,5)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1806.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="16.9725%" y="1812" width="1.3761%" height="15" fill="rgb(221,155,16)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="1828" width="1.3761%" height="15" fill="rgb(215,215,53)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="16.9725%" y="1844" width="1.3761%" height="15" fill="rgb(223,4,10)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="16.9725%" y="1860" width="1.3761%" height="15" fill="rgb(234,103,6)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="16.9725%" y="1876" width="1.3761%" height="15" fill="rgb(227,97,0)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="16.9725%" y="1892" width="1.3761%" height="15" fill="rgb(234,150,53)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="1908" width="1.3761%" height="15" fill="rgb(228,201,54)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1918.50"></text></g><g><title><module> (scipy/linalg/_flinalg_py.py:5) (3 samples, 1.38%)</title><rect x="16.9725%" y="1924" width="1.3761%" height="15" fill="rgb(222,22,37)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="16.9725%" y="1940" width="1.3761%" height="15" fill="rgb(237,53,32)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="1956" width="1.3761%" height="15" fill="rgb(233,25,53)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="16.9725%" y="1972" width="1.3761%" height="15" fill="rgb(210,40,34)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="16.9725%" y="1988" width="1.3761%" height="15" fill="rgb(241,220,44)" fg:x="37" fg:w="3"/><text x="17.2225%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="16.9725%" y="2004" width="1.3761%" height="15" fill="rgb(235,28,35)" fg:x="37" fg:w="3"/><text x="17.2225%" y="2014.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.38%)</title><rect x="16.9725%" y="2020" width="1.3761%" height="15" fill="rgb(210,56,17)" fg:x="37" fg:w="3"/><text x="17.2225%" y="2030.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.38%)</title><rect x="16.9725%" y="2036" width="1.3761%" height="15" fill="rgb(224,130,29)" fg:x="37" fg:w="3"/><text x="17.2225%" y="2046.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="16.9725%" y="2052" width="1.3761%" height="15" fill="rgb(235,212,8)" fg:x="37" fg:w="3"/><text x="17.2225%" y="2062.50"></text></g><g><title><module> (dask/array/chunk_types.py:1) (14 samples, 6.42%)</title><rect x="12.3853%" y="964" width="6.4220%" height="15" fill="rgb(223,33,50)" fg:x="27" fg:w="14"/><text x="12.6353%" y="974.50"><module>..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (14 samples, 6.42%)</title><rect x="12.3853%" y="980" width="6.4220%" height="15" fill="rgb(219,149,13)" fg:x="27" fg:w="14"/><text x="12.6353%" y="990.50">_find_an..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (14 samples, 6.42%)</title><rect x="12.3853%" y="996" width="6.4220%" height="15" fill="rgb(250,156,29)" fg:x="27" fg:w="14"/><text x="12.6353%" y="1006.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 5.05%)</title><rect x="13.7615%" y="1012" width="5.0459%" height="15" fill="rgb(216,193,19)" fg:x="30" fg:w="11"/><text x="14.0115%" y="1022.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 5.05%)</title><rect x="13.7615%" y="1028" width="5.0459%" height="15" fill="rgb(216,135,14)" fg:x="30" fg:w="11"/><text x="14.0115%" y="1038.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="13.7615%" y="1044" width="5.0459%" height="15" fill="rgb(241,47,5)" fg:x="30" fg:w="11"/><text x="14.0115%" y="1054.50">_call_..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (11 samples, 5.05%)</title><rect x="13.7615%" y="1060" width="5.0459%" height="15" fill="rgb(233,42,35)" fg:x="30" fg:w="11"/><text x="14.0115%" y="1070.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (9 samples, 4.13%)</title><rect x="14.6789%" y="1076" width="4.1284%" height="15" fill="rgb(231,13,6)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1086.50">_han..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="14.6789%" y="1092" width="4.1284%" height="15" fill="rgb(207,181,40)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1102.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 4.13%)</title><rect x="14.6789%" y="1108" width="4.1284%" height="15" fill="rgb(254,173,49)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1118.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 4.13%)</title><rect x="14.6789%" y="1124" width="4.1284%" height="15" fill="rgb(221,1,38)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1134.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 4.13%)</title><rect x="14.6789%" y="1140" width="4.1284%" height="15" fill="rgb(206,124,46)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1150.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 4.13%)</title><rect x="14.6789%" y="1156" width="4.1284%" height="15" fill="rgb(249,21,11)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1166.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="14.6789%" y="1172" width="4.1284%" height="15" fill="rgb(222,201,40)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1182.50">_cal..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (9 samples, 4.13%)</title><rect x="14.6789%" y="1188" width="4.1284%" height="15" fill="rgb(235,61,29)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1198.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 4.13%)</title><rect x="14.6789%" y="1204" width="4.1284%" height="15" fill="rgb(219,207,3)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1214.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 4.13%)</title><rect x="14.6789%" y="1220" width="4.1284%" height="15" fill="rgb(222,56,46)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1230.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 4.13%)</title><rect x="14.6789%" y="1236" width="4.1284%" height="15" fill="rgb(239,76,54)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1246.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 4.13%)</title><rect x="14.6789%" y="1252" width="4.1284%" height="15" fill="rgb(231,124,27)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1262.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="14.6789%" y="1268" width="4.1284%" height="15" fill="rgb(249,195,6)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1278.50">_cal..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (9 samples, 4.13%)</title><rect x="14.6789%" y="1284" width="4.1284%" height="15" fill="rgb(237,174,47)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1294.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 4.13%)</title><rect x="14.6789%" y="1300" width="4.1284%" height="15" fill="rgb(206,201,31)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1310.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 4.13%)</title><rect x="14.6789%" y="1316" width="4.1284%" height="15" fill="rgb(231,57,52)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1326.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 4.13%)</title><rect x="14.6789%" y="1332" width="4.1284%" height="15" fill="rgb(248,177,22)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1342.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 4.13%)</title><rect x="14.6789%" y="1348" width="4.1284%" height="15" fill="rgb(215,211,37)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1358.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="14.6789%" y="1364" width="4.1284%" height="15" fill="rgb(241,128,51)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1374.50">_cal..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (9 samples, 4.13%)</title><rect x="14.6789%" y="1380" width="4.1284%" height="15" fill="rgb(227,165,31)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1390.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 4.13%)</title><rect x="14.6789%" y="1396" width="4.1284%" height="15" fill="rgb(228,167,24)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1406.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 4.13%)</title><rect x="14.6789%" y="1412" width="4.1284%" height="15" fill="rgb(228,143,12)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1422.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 4.13%)</title><rect x="14.6789%" y="1428" width="4.1284%" height="15" fill="rgb(249,149,8)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1438.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 4.13%)</title><rect x="14.6789%" y="1444" width="4.1284%" height="15" fill="rgb(243,35,44)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1454.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="14.6789%" y="1460" width="4.1284%" height="15" fill="rgb(246,89,9)" fg:x="32" fg:w="9"/><text x="14.9289%" y="1470.50">_cal..</text></g><g><title><module> (scipy/sparse/linalg/_matfuncs.py:1) (1 samples, 0.46%)</title><rect x="18.3486%" y="1476" width="0.4587%" height="15" fill="rgb(233,213,13)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1486.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="18.3486%" y="1492" width="0.4587%" height="15" fill="rgb(233,141,41)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1502.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="18.3486%" y="1508" width="0.4587%" height="15" fill="rgb(239,167,4)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1518.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="18.3486%" y="1524" width="0.4587%" height="15" fill="rgb(209,217,16)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1534.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="18.3486%" y="1540" width="0.4587%" height="15" fill="rgb(219,88,35)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1550.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.46%)</title><rect x="18.3486%" y="1556" width="0.4587%" height="15" fill="rgb(220,193,23)" fg:x="40" fg:w="1"/><text x="18.5986%" y="1566.50"></text></g><g><title><module> (dask/array/backends.py:1) (15 samples, 6.88%)</title><rect x="12.3853%" y="772" width="6.8807%" height="15" fill="rgb(230,90,52)" fg:x="27" fg:w="15"/><text x="12.6353%" y="782.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 6.88%)</title><rect x="12.3853%" y="788" width="6.8807%" height="15" fill="rgb(252,106,19)" fg:x="27" fg:w="15"/><text x="12.6353%" y="798.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 6.88%)</title><rect x="12.3853%" y="804" width="6.8807%" height="15" fill="rgb(206,74,20)" fg:x="27" fg:w="15"/><text x="12.6353%" y="814.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 6.88%)</title><rect x="12.3853%" y="820" width="6.8807%" height="15" fill="rgb(230,138,44)" fg:x="27" fg:w="15"/><text x="12.6353%" y="830.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 6.88%)</title><rect x="12.3853%" y="836" width="6.8807%" height="15" fill="rgb(235,182,43)" fg:x="27" fg:w="15"/><text x="12.6353%" y="846.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 6.88%)</title><rect x="12.3853%" y="852" width="6.8807%" height="15" fill="rgb(242,16,51)" fg:x="27" fg:w="15"/><text x="12.6353%" y="862.50">_call_wit..</text></g><g><title><module> (dask/array/core.py:1) (15 samples, 6.88%)</title><rect x="12.3853%" y="868" width="6.8807%" height="15" fill="rgb(248,9,4)" fg:x="27" fg:w="15"/><text x="12.6353%" y="878.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 6.88%)</title><rect x="12.3853%" y="884" width="6.8807%" height="15" fill="rgb(210,31,22)" fg:x="27" fg:w="15"/><text x="12.6353%" y="894.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 6.88%)</title><rect x="12.3853%" y="900" width="6.8807%" height="15" fill="rgb(239,54,39)" fg:x="27" fg:w="15"/><text x="12.6353%" y="910.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 6.88%)</title><rect x="12.3853%" y="916" width="6.8807%" height="15" fill="rgb(230,99,41)" fg:x="27" fg:w="15"/><text x="12.6353%" y="926.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 6.88%)</title><rect x="12.3853%" y="932" width="6.8807%" height="15" fill="rgb(253,106,12)" fg:x="27" fg:w="15"/><text x="12.6353%" y="942.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 6.88%)</title><rect x="12.3853%" y="948" width="6.8807%" height="15" fill="rgb(213,46,41)" fg:x="27" fg:w="15"/><text x="12.6353%" y="958.50">_call_wit..</text></g><g><title><module> (dask/sizeof.py:1) (1 samples, 0.46%)</title><rect x="18.8073%" y="964" width="0.4587%" height="15" fill="rgb(215,133,35)" fg:x="41" fg:w="1"/><text x="19.0573%" y="974.50"></text></g><g><title>_register_entry_point_plugins (dask/sizeof.py:261) (1 samples, 0.46%)</title><rect x="18.8073%" y="980" width="0.4587%" height="15" fill="rgb(213,28,5)" fg:x="41" fg:w="1"/><text x="19.0573%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:936) (1 samples, 0.46%)</title><rect x="18.8073%" y="996" width="0.4587%" height="15" fill="rgb(215,77,49)" fg:x="41" fg:w="1"/><text x="19.0573%" y="1006.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:945) (1 samples, 0.46%)</title><rect x="18.8073%" y="1012" width="0.4587%" height="15" fill="rgb(248,100,22)" fg:x="41" fg:w="1"/><text x="19.0573%" y="1022.50"></text></g><g><title>unique_everseen (importlib_metadata/_itertools.py:4) (1 samples, 0.46%)</title><rect x="18.8073%" y="1028" width="0.4587%" height="15" fill="rgb(208,67,9)" fg:x="41" fg:w="1"/><text x="19.0573%" y="1038.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.46%)</title><rect x="18.8073%" y="1044" width="0.4587%" height="15" fill="rgb(219,133,21)" fg:x="41" fg:w="1"/><text x="19.0573%" y="1054.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:343) (1 samples, 0.46%)</title><rect x="18.8073%" y="1060" width="0.4587%" height="15" fill="rgb(246,46,29)" fg:x="41" fg:w="1"/><text x="19.0573%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="19.2661%" y="884" width="0.9174%" height="15" fill="rgb(246,185,52)" fg:x="42" fg:w="2"/><text x="19.5161%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="19.2661%" y="900" width="0.9174%" height="15" fill="rgb(252,136,11)" fg:x="42" fg:w="2"/><text x="19.5161%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="19.2661%" y="916" width="0.9174%" height="15" fill="rgb(219,138,53)" fg:x="42" fg:w="2"/><text x="19.5161%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="19.2661%" y="932" width="0.9174%" height="15" fill="rgb(211,51,23)" fg:x="42" fg:w="2"/><text x="19.5161%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="19.2661%" y="948" width="0.9174%" height="15" fill="rgb(247,221,28)" fg:x="42" fg:w="2"/><text x="19.5161%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (2 samples, 0.92%)</title><rect x="19.2661%" y="964" width="0.9174%" height="15" fill="rgb(251,222,45)" fg:x="42" fg:w="2"/><text x="19.5161%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (2 samples, 0.92%)</title><rect x="19.2661%" y="980" width="0.9174%" height="15" fill="rgb(217,162,53)" fg:x="42" fg:w="2"/><text x="19.5161%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.92%)</title><rect x="19.2661%" y="996" width="0.9174%" height="15" fill="rgb(229,93,14)" fg:x="42" fg:w="2"/><text x="19.5161%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.92%)</title><rect x="19.2661%" y="1012" width="0.9174%" height="15" fill="rgb(209,67,49)" fg:x="42" fg:w="2"/><text x="19.5161%" y="1022.50"></text></g><g><title>extra_titles (dask/utils.py:809) (2 samples, 0.92%)</title><rect x="19.2661%" y="1028" width="0.9174%" height="15" fill="rgb(213,87,29)" fg:x="42" fg:w="2"/><text x="19.5161%" y="1038.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (2 samples, 0.92%)</title><rect x="19.2661%" y="1044" width="0.9174%" height="15" fill="rgb(205,151,52)" fg:x="42" fg:w="2"/><text x="19.5161%" y="1054.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.46%)</title><rect x="19.7248%" y="1060" width="0.4587%" height="15" fill="rgb(253,215,39)" fg:x="43" fg:w="1"/><text x="19.9748%" y="1070.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.46%)</title><rect x="20.1835%" y="916" width="0.4587%" height="15" fill="rgb(221,220,41)" fg:x="44" fg:w="1"/><text x="20.4335%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.46%)</title><rect x="20.1835%" y="932" width="0.4587%" height="15" fill="rgb(218,133,21)" fg:x="44" fg:w="1"/><text x="20.4335%" y="942.50"></text></g><g><title><module> (dask/array/creation.py:1) (6 samples, 2.75%)</title><rect x="19.2661%" y="868" width="2.7523%" height="15" fill="rgb(221,193,43)" fg:x="42" fg:w="6"/><text x="19.5161%" y="878.50"><m..</text></g><g><title>wrapper (dask/utils.py:978) (4 samples, 1.83%)</title><rect x="20.1835%" y="884" width="1.8349%" height="15" fill="rgb(240,128,52)" fg:x="44" fg:w="4"/><text x="20.4335%" y="894.50">w..</text></g><g><title>_derived_from (dask/utils.py:885) (4 samples, 1.83%)</title><rect x="20.1835%" y="900" width="1.8349%" height="15" fill="rgb(253,114,12)" fg:x="44" fg:w="4"/><text x="20.4335%" y="910.50">_..</text></g><g><title>skip_doctest (dask/utils.py:803) (3 samples, 1.38%)</title><rect x="20.6422%" y="916" width="1.3761%" height="15" fill="rgb(215,223,47)" fg:x="45" fg:w="3"/><text x="20.8922%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:806) (2 samples, 0.92%)</title><rect x="21.1009%" y="932" width="0.9174%" height="15" fill="rgb(248,225,23)" fg:x="46" fg:w="2"/><text x="21.3509%" y="942.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.46%)</title><rect x="21.5596%" y="948" width="0.4587%" height="15" fill="rgb(250,108,0)" fg:x="47" fg:w="1"/><text x="21.8096%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="22.0183%" y="1268" width="0.4587%" height="15" fill="rgb(228,208,7)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="22.0183%" y="1284" width="0.4587%" height="15" fill="rgb(244,45,10)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1294.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="22.0183%" y="1300" width="0.4587%" height="15" fill="rgb(207,125,25)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1310.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="22.0183%" y="1316" width="0.4587%" height="15" fill="rgb(210,195,18)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1326.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="22.0183%" y="1332" width="0.4587%" height="15" fill="rgb(249,80,12)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="22.0183%" y="1348" width="0.4587%" height="15" fill="rgb(221,65,9)" fg:x="48" fg:w="1"/><text x="22.2683%" y="1358.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (3 samples, 1.38%)</title><rect x="22.0183%" y="964" width="1.3761%" height="15" fill="rgb(235,49,36)" fg:x="48" fg:w="3"/><text x="22.2683%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="22.0183%" y="980" width="1.3761%" height="15" fill="rgb(225,32,20)" fg:x="48" fg:w="3"/><text x="22.2683%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="22.0183%" y="996" width="1.3761%" height="15" fill="rgb(215,141,46)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="22.0183%" y="1012" width="1.3761%" height="15" fill="rgb(250,160,47)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="22.0183%" y="1028" width="1.3761%" height="15" fill="rgb(216,222,40)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="22.0183%" y="1044" width="1.3761%" height="15" fill="rgb(234,217,39)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (3 samples, 1.38%)</title><rect x="22.0183%" y="1060" width="1.3761%" height="15" fill="rgb(207,178,40)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="22.0183%" y="1076" width="1.3761%" height="15" fill="rgb(221,136,13)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="22.0183%" y="1092" width="1.3761%" height="15" fill="rgb(249,199,10)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="22.0183%" y="1108" width="1.3761%" height="15" fill="rgb(249,222,13)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="22.0183%" y="1124" width="1.3761%" height="15" fill="rgb(244,185,38)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="22.0183%" y="1140" width="1.3761%" height="15" fill="rgb(236,202,9)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1150.50"></text></g><g><title><module> (scipy/fft/_fftlog.py:1) (3 samples, 1.38%)</title><rect x="22.0183%" y="1156" width="1.3761%" height="15" fill="rgb(250,229,37)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="22.0183%" y="1172" width="1.3761%" height="15" fill="rgb(206,174,23)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="22.0183%" y="1188" width="1.3761%" height="15" fill="rgb(211,33,43)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="22.0183%" y="1204" width="1.3761%" height="15" fill="rgb(245,58,50)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="22.0183%" y="1220" width="1.3761%" height="15" fill="rgb(244,68,36)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="22.0183%" y="1236" width="1.3761%" height="15" fill="rgb(232,229,15)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1246.50"></text></g><g><title><module> (scipy/special/__init__.py:1) (3 samples, 1.38%)</title><rect x="22.0183%" y="1252" width="1.3761%" height="15" fill="rgb(254,30,23)" fg:x="48" fg:w="3"/><text x="22.2683%" y="1262.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="22.4771%" y="1268" width="0.9174%" height="15" fill="rgb(235,160,14)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="22.4771%" y="1284" width="0.9174%" height="15" fill="rgb(212,155,44)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="22.4771%" y="1300" width="0.9174%" height="15" fill="rgb(226,2,50)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="22.4771%" y="1316" width="0.9174%" height="15" fill="rgb(234,177,6)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="22.4771%" y="1332" width="0.9174%" height="15" fill="rgb(217,24,9)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 0.92%)</title><rect x="22.4771%" y="1348" width="0.9174%" height="15" fill="rgb(220,13,46)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="22.4771%" y="1364" width="0.9174%" height="15" fill="rgb(239,221,27)" fg:x="49" fg:w="2"/><text x="22.7271%" y="1374.50"></text></g><g><title><module> (dask/array/fft.py:1) (10 samples, 4.59%)</title><rect x="19.2661%" y="772" width="4.5872%" height="15" fill="rgb(222,198,25)" fg:x="42" fg:w="10"/><text x="19.5161%" y="782.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 4.59%)</title><rect x="19.2661%" y="788" width="4.5872%" height="15" fill="rgb(211,99,13)" fg:x="42" fg:w="10"/><text x="19.5161%" y="798.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 4.59%)</title><rect x="19.2661%" y="804" width="4.5872%" height="15" fill="rgb(232,111,31)" fg:x="42" fg:w="10"/><text x="19.5161%" y="814.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 4.59%)</title><rect x="19.2661%" y="820" width="4.5872%" height="15" fill="rgb(245,82,37)" fg:x="42" fg:w="10"/><text x="19.5161%" y="830.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 4.59%)</title><rect x="19.2661%" y="836" width="4.5872%" height="15" fill="rgb(227,149,46)" fg:x="42" fg:w="10"/><text x="19.5161%" y="846.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 4.59%)</title><rect x="19.2661%" y="852" width="4.5872%" height="15" fill="rgb(218,36,50)" fg:x="42" fg:w="10"/><text x="19.5161%" y="862.50">_call..</text></g><g><title><module> (scipy/fftpack/__init__.py:1) (4 samples, 1.83%)</title><rect x="22.0183%" y="868" width="1.8349%" height="15" fill="rgb(226,80,48)" fg:x="48" fg:w="4"/><text x="22.2683%" y="878.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="22.0183%" y="884" width="1.8349%" height="15" fill="rgb(238,224,15)" fg:x="48" fg:w="4"/><text x="22.2683%" y="894.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="22.0183%" y="900" width="1.8349%" height="15" fill="rgb(241,136,10)" fg:x="48" fg:w="4"/><text x="22.2683%" y="910.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="22.0183%" y="916" width="1.8349%" height="15" fill="rgb(208,32,45)" fg:x="48" fg:w="4"/><text x="22.2683%" y="926.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="22.0183%" y="932" width="1.8349%" height="15" fill="rgb(207,135,9)" fg:x="48" fg:w="4"/><text x="22.2683%" y="942.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="22.0183%" y="948" width="1.8349%" height="15" fill="rgb(206,86,44)" fg:x="48" fg:w="4"/><text x="22.2683%" y="958.50">_..</text></g><g><title><module> (scipy/fftpack/_pseudo_diffs.py:1) (1 samples, 0.46%)</title><rect x="23.3945%" y="964" width="0.4587%" height="15" fill="rgb(245,177,15)" fg:x="51" fg:w="1"/><text x="23.6445%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="23.3945%" y="980" width="0.4587%" height="15" fill="rgb(206,64,50)" fg:x="51" fg:w="1"/><text x="23.6445%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="23.3945%" y="996" width="0.4587%" height="15" fill="rgb(234,36,40)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="23.3945%" y="1012" width="0.4587%" height="15" fill="rgb(213,64,8)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="23.3945%" y="1028" width="0.4587%" height="15" fill="rgb(210,75,36)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="23.3945%" y="1044" width="0.4587%" height="15" fill="rgb(229,88,21)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1054.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="23.3945%" y="1060" width="0.4587%" height="15" fill="rgb(252,204,47)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1070.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="23.3945%" y="1076" width="0.4587%" height="15" fill="rgb(208,77,27)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="23.3945%" y="1092" width="0.4587%" height="15" fill="rgb(221,76,26)" fg:x="51" fg:w="1"/><text x="23.6445%" y="1102.50"></text></g><g><title><module> (dask/array/linalg.py:1) (1 samples, 0.46%)</title><rect x="23.8532%" y="772" width="0.4587%" height="15" fill="rgb(225,139,18)" fg:x="52" fg:w="1"/><text x="24.1032%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="23.8532%" y="788" width="0.4587%" height="15" fill="rgb(230,137,11)" fg:x="52" fg:w="1"/><text x="24.1032%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="23.8532%" y="804" width="0.4587%" height="15" fill="rgb(212,28,1)" fg:x="52" fg:w="1"/><text x="24.1032%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="23.8532%" y="820" width="0.4587%" height="15" fill="rgb(248,164,17)" fg:x="52" fg:w="1"/><text x="24.1032%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="23.8532%" y="836" width="0.4587%" height="15" fill="rgb(222,171,42)" fg:x="52" fg:w="1"/><text x="24.1032%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="23.8532%" y="852" width="0.4587%" height="15" fill="rgb(243,84,45)" fg:x="52" fg:w="1"/><text x="24.1032%" y="862.50"></text></g><g><title><module> (dask/array/random.py:1) (1 samples, 0.46%)</title><rect x="23.8532%" y="868" width="0.4587%" height="15" fill="rgb(252,49,23)" fg:x="52" fg:w="1"/><text x="24.1032%" y="878.50"></text></g><g><title>Generator (dask/array/random.py:29) (1 samples, 0.46%)</title><rect x="23.8532%" y="884" width="0.4587%" height="15" fill="rgb(215,19,7)" fg:x="52" fg:w="1"/><text x="24.1032%" y="894.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.46%)</title><rect x="23.8532%" y="900" width="0.4587%" height="15" fill="rgb(238,81,41)" fg:x="52" fg:w="1"/><text x="24.1032%" y="910.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.46%)</title><rect x="23.8532%" y="916" width="0.4587%" height="15" fill="rgb(210,199,37)" fg:x="52" fg:w="1"/><text x="24.1032%" y="926.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.46%)</title><rect x="23.8532%" y="932" width="0.4587%" height="15" fill="rgb(244,192,49)" fg:x="52" fg:w="1"/><text x="24.1032%" y="942.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="23.8532%" y="948" width="0.4587%" height="15" fill="rgb(226,211,11)" fg:x="52" fg:w="1"/><text x="24.1032%" y="958.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="23.8532%" y="964" width="0.4587%" height="15" fill="rgb(236,162,54)" fg:x="52" fg:w="1"/><text x="24.1032%" y="974.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="23.8532%" y="980" width="0.4587%" height="15" fill="rgb(220,229,9)" fg:x="52" fg:w="1"/><text x="24.1032%" y="990.50"></text></g><g><title>unwrap (inspect.py:494) (1 samples, 0.46%)</title><rect x="23.8532%" y="996" width="0.4587%" height="15" fill="rgb(250,87,22)" fg:x="52" fg:w="1"/><text x="24.1032%" y="1006.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.46%)</title><rect x="24.3119%" y="916" width="0.4587%" height="15" fill="rgb(239,43,17)" fg:x="53" fg:w="1"/><text x="24.5619%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.46%)</title><rect x="24.3119%" y="932" width="0.4587%" height="15" fill="rgb(231,177,25)" fg:x="53" fg:w="1"/><text x="24.5619%" y="942.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.46%)</title><rect x="24.3119%" y="948" width="0.4587%" height="15" fill="rgb(219,179,1)" fg:x="53" fg:w="1"/><text x="24.5619%" y="958.50"></text></g><g><title><module> (dask/array/reductions.py:1) (2 samples, 0.92%)</title><rect x="24.3119%" y="868" width="0.9174%" height="15" fill="rgb(238,219,53)" fg:x="53" fg:w="2"/><text x="24.5619%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.92%)</title><rect x="24.3119%" y="884" width="0.9174%" height="15" fill="rgb(232,167,36)" fg:x="53" fg:w="2"/><text x="24.5619%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.92%)</title><rect x="24.3119%" y="900" width="0.9174%" height="15" fill="rgb(244,19,51)" fg:x="53" fg:w="2"/><text x="24.5619%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.46%)</title><rect x="24.7706%" y="916" width="0.4587%" height="15" fill="rgb(224,6,22)" fg:x="54" fg:w="1"/><text x="25.0206%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.46%)</title><rect x="24.7706%" y="932" width="0.4587%" height="15" fill="rgb(224,145,5)" fg:x="54" fg:w="1"/><text x="25.0206%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.46%)</title><rect x="24.7706%" y="948" width="0.4587%" height="15" fill="rgb(234,130,49)" fg:x="54" fg:w="1"/><text x="25.0206%" y="958.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="24.7706%" y="964" width="0.4587%" height="15" fill="rgb(254,6,2)" fg:x="54" fg:w="1"/><text x="25.0206%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="24.3119%" y="788" width="2.2936%" height="15" fill="rgb(208,96,46)" fg:x="53" fg:w="5"/><text x="24.5619%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="24.3119%" y="804" width="2.2936%" height="15" fill="rgb(239,3,39)" fg:x="53" fg:w="5"/><text x="24.5619%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="24.3119%" y="820" width="2.2936%" height="15" fill="rgb(233,210,1)" fg:x="53" fg:w="5"/><text x="24.5619%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.29%)</title><rect x="24.3119%" y="836" width="2.2936%" height="15" fill="rgb(244,137,37)" fg:x="53" fg:w="5"/><text x="24.5619%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="24.3119%" y="852" width="2.2936%" height="15" fill="rgb(240,136,2)" fg:x="53" fg:w="5"/><text x="24.5619%" y="862.50">_..</text></g><g><title><module> (dask/array/routines.py:1) (3 samples, 1.38%)</title><rect x="25.2294%" y="868" width="1.3761%" height="15" fill="rgb(239,18,37)" fg:x="55" fg:w="3"/><text x="25.4794%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (3 samples, 1.38%)</title><rect x="25.2294%" y="884" width="1.3761%" height="15" fill="rgb(218,185,22)" fg:x="55" fg:w="3"/><text x="25.4794%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (3 samples, 1.38%)</title><rect x="25.2294%" y="900" width="1.3761%" height="15" fill="rgb(225,218,4)" fg:x="55" fg:w="3"/><text x="25.4794%" y="910.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (3 samples, 1.38%)</title><rect x="25.2294%" y="916" width="1.3761%" height="15" fill="rgb(230,182,32)" fg:x="55" fg:w="3"/><text x="25.4794%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:874) (3 samples, 1.38%)</title><rect x="25.2294%" y="932" width="1.3761%" height="15" fill="rgb(242,56,43)" fg:x="55" fg:w="3"/><text x="25.4794%" y="942.50"></text></g><g><title>match (re.py:188) (1 samples, 0.46%)</title><rect x="26.1468%" y="948" width="0.4587%" height="15" fill="rgb(233,99,24)" fg:x="57" fg:w="1"/><text x="26.3968%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (33 samples, 15.14%)</title><rect x="12.3853%" y="548" width="15.1376%" height="15" fill="rgb(234,209,42)" fg:x="27" fg:w="33"/><text x="12.6353%" y="558.50">_call_with_frames_remov..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (33 samples, 15.14%)</title><rect x="12.3853%" y="564" width="15.1376%" height="15" fill="rgb(227,7,12)" fg:x="27" fg:w="33"/><text x="12.6353%" y="574.50">_find_and_load (<frozen..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (33 samples, 15.14%)</title><rect x="12.3853%" y="580" width="15.1376%" height="15" fill="rgb(245,203,43)" fg:x="27" fg:w="33"/><text x="12.6353%" y="590.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (33 samples, 15.14%)</title><rect x="12.3853%" y="596" width="15.1376%" height="15" fill="rgb(238,205,33)" fg:x="27" fg:w="33"/><text x="12.6353%" y="606.50">_load_unlocked (<frozen..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (33 samples, 15.14%)</title><rect x="12.3853%" y="612" width="15.1376%" height="15" fill="rgb(231,56,7)" fg:x="27" fg:w="33"/><text x="12.6353%" y="622.50">exec_module (<frozen im..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (33 samples, 15.14%)</title><rect x="12.3853%" y="628" width="15.1376%" height="15" fill="rgb(244,186,29)" fg:x="27" fg:w="33"/><text x="12.6353%" y="638.50">_call_with_frames_remov..</text></g><g><title><module> (dask/array/__init__.py:1) (33 samples, 15.14%)</title><rect x="12.3853%" y="644" width="15.1376%" height="15" fill="rgb(234,111,31)" fg:x="27" fg:w="33"/><text x="12.6353%" y="654.50"><module> (dask/array/__..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (33 samples, 15.14%)</title><rect x="12.3853%" y="660" width="15.1376%" height="15" fill="rgb(241,149,10)" fg:x="27" fg:w="33"/><text x="12.6353%" y="670.50">_handle_fromlist (<froz..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (33 samples, 15.14%)</title><rect x="12.3853%" y="676" width="15.1376%" height="15" fill="rgb(249,206,44)" fg:x="27" fg:w="33"/><text x="12.6353%" y="686.50">_call_with_frames_remov..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (33 samples, 15.14%)</title><rect x="12.3853%" y="692" width="15.1376%" height="15" fill="rgb(251,153,30)" fg:x="27" fg:w="33"/><text x="12.6353%" y="702.50">_find_and_load (<frozen..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (33 samples, 15.14%)</title><rect x="12.3853%" y="708" width="15.1376%" height="15" fill="rgb(239,152,38)" fg:x="27" fg:w="33"/><text x="12.6353%" y="718.50">_find_and_load_unlocked..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (33 samples, 15.14%)</title><rect x="12.3853%" y="724" width="15.1376%" height="15" fill="rgb(249,139,47)" fg:x="27" fg:w="33"/><text x="12.6353%" y="734.50">_load_unlocked (<frozen..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (33 samples, 15.14%)</title><rect x="12.3853%" y="740" width="15.1376%" height="15" fill="rgb(244,64,35)" fg:x="27" fg:w="33"/><text x="12.6353%" y="750.50">exec_module (<frozen im..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (33 samples, 15.14%)</title><rect x="12.3853%" y="756" width="15.1376%" height="15" fill="rgb(216,46,15)" fg:x="27" fg:w="33"/><text x="12.6353%" y="766.50">_call_with_frames_remov..</text></g><g><title><module> (dask/array/ma.py:1) (7 samples, 3.21%)</title><rect x="24.3119%" y="772" width="3.2110%" height="15" fill="rgb(250,74,19)" fg:x="53" fg:w="7"/><text x="24.5619%" y="782.50"><mo..</text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 0.92%)</title><rect x="26.6055%" y="788" width="0.9174%" height="15" fill="rgb(249,42,33)" fg:x="58" fg:w="2"/><text x="26.8555%" y="798.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 0.92%)</title><rect x="26.6055%" y="804" width="0.9174%" height="15" fill="rgb(242,149,17)" fg:x="58" fg:w="2"/><text x="26.8555%" y="814.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (2 samples, 0.92%)</title><rect x="26.6055%" y="820" width="0.9174%" height="15" fill="rgb(244,29,21)" fg:x="58" fg:w="2"/><text x="26.8555%" y="830.50"></text></g><g><title><listcomp> (dask/utils.py:874) (2 samples, 0.92%)</title><rect x="26.6055%" y="836" width="0.9174%" height="15" fill="rgb(220,130,37)" fg:x="58" fg:w="2"/><text x="26.8555%" y="846.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.46%)</title><rect x="27.5229%" y="660" width="0.4587%" height="15" fill="rgb(211,67,2)" fg:x="60" fg:w="1"/><text x="27.7729%" y="670.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.46%)</title><rect x="27.5229%" y="676" width="0.4587%" height="15" fill="rgb(235,68,52)" fg:x="60" fg:w="1"/><text x="27.7729%" y="686.50"></text></g><g><title><genexpr> (dask/utils.py:814) (1 samples, 0.46%)</title><rect x="27.5229%" y="692" width="0.4587%" height="15" fill="rgb(246,142,3)" fg:x="60" fg:w="1"/><text x="27.7729%" y="702.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (5 samples, 2.29%)</title><rect x="27.5229%" y="612" width="2.2936%" height="15" fill="rgb(241,25,7)" fg:x="60" fg:w="5"/><text x="27.7729%" y="622.50">D..</text></g><g><title>wrapper (dask/utils.py:978) (5 samples, 2.29%)</title><rect x="27.5229%" y="628" width="2.2936%" height="15" fill="rgb(242,119,39)" fg:x="60" fg:w="5"/><text x="27.7729%" y="638.50">w..</text></g><g><title>_derived_from (dask/utils.py:885) (5 samples, 2.29%)</title><rect x="27.5229%" y="644" width="2.2936%" height="15" fill="rgb(241,98,45)" fg:x="60" fg:w="5"/><text x="27.7729%" y="654.50">_..</text></g><g><title>unsupported_arguments (dask/utils.py:870) (4 samples, 1.83%)</title><rect x="27.9817%" y="660" width="1.8349%" height="15" fill="rgb(254,28,30)" fg:x="61" fg:w="4"/><text x="28.2317%" y="670.50">u..</text></g><g><title><listcomp> (dask/utils.py:874) (4 samples, 1.83%)</title><rect x="27.9817%" y="676" width="1.8349%" height="15" fill="rgb(241,142,54)" fg:x="61" fg:w="4"/><text x="28.2317%" y="686.50"><..</text></g><g><title>match (re.py:188) (4 samples, 1.83%)</title><rect x="27.9817%" y="692" width="1.8349%" height="15" fill="rgb(222,85,15)" fg:x="61" fg:w="4"/><text x="28.2317%" y="702.50">m..</text></g><g><title>_compile (re.py:289) (3 samples, 1.38%)</title><rect x="28.4404%" y="708" width="1.3761%" height="15" fill="rgb(210,85,47)" fg:x="62" fg:w="3"/><text x="28.6904%" y="718.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.46%)</title><rect x="29.3578%" y="724" width="0.4587%" height="15" fill="rgb(224,206,25)" fg:x="64" fg:w="1"/><text x="29.6078%" y="734.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.46%)</title><rect x="29.8165%" y="660" width="0.4587%" height="15" fill="rgb(243,201,19)" fg:x="65" fg:w="1"/><text x="30.0665%" y="670.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.46%)</title><rect x="29.8165%" y="676" width="0.4587%" height="15" fill="rgb(236,59,4)" fg:x="65" fg:w="1"/><text x="30.0665%" y="686.50"></text></g><g><title>get_named_args (dask/utils.py:693) (2 samples, 0.92%)</title><rect x="30.2752%" y="660" width="0.9174%" height="15" fill="rgb(254,179,45)" fg:x="66" fg:w="2"/><text x="30.5252%" y="670.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="30.7339%" y="676" width="0.4587%" height="15" fill="rgb(226,14,10)" fg:x="67" fg:w="1"/><text x="30.9839%" y="686.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="30.7339%" y="692" width="0.4587%" height="15" fill="rgb(244,27,41)" fg:x="67" fg:w="1"/><text x="30.9839%" y="702.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="30.7339%" y="708" width="0.4587%" height="15" fill="rgb(235,35,32)" fg:x="67" fg:w="1"/><text x="30.9839%" y="718.50"></text></g><g><title>unwrap (inspect.py:494) (1 samples, 0.46%)</title><rect x="30.7339%" y="724" width="0.4587%" height="15" fill="rgb(218,68,31)" fg:x="67" fg:w="1"/><text x="30.9839%" y="734.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (4 samples, 1.83%)</title><rect x="29.8165%" y="612" width="1.8349%" height="15" fill="rgb(207,120,37)" fg:x="65" fg:w="4"/><text x="30.0665%" y="622.50">_..</text></g><g><title>wrapper (dask/utils.py:978) (4 samples, 1.83%)</title><rect x="29.8165%" y="628" width="1.8349%" height="15" fill="rgb(227,98,0)" fg:x="65" fg:w="4"/><text x="30.0665%" y="638.50">w..</text></g><g><title>_derived_from (dask/utils.py:885) (4 samples, 1.83%)</title><rect x="29.8165%" y="644" width="1.8349%" height="15" fill="rgb(207,7,3)" fg:x="65" fg:w="4"/><text x="30.0665%" y="654.50">_..</text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.46%)</title><rect x="31.1927%" y="660" width="0.4587%" height="15" fill="rgb(206,98,19)" fg:x="68" fg:w="1"/><text x="31.4427%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.46%)</title><rect x="31.1927%" y="676" width="0.4587%" height="15" fill="rgb(217,5,26)" fg:x="68" fg:w="1"/><text x="31.4427%" y="686.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.46%)</title><rect x="31.1927%" y="692" width="0.4587%" height="15" fill="rgb(235,190,38)" fg:x="68" fg:w="1"/><text x="31.4427%" y="702.50"></text></g><g><title>_bind_operator_method (dask/dataframe/core.py:6120) (1 samples, 0.46%)</title><rect x="31.6514%" y="612" width="0.4587%" height="15" fill="rgb(247,86,24)" fg:x="69" fg:w="1"/><text x="31.9014%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.46%)</title><rect x="31.6514%" y="628" width="0.4587%" height="15" fill="rgb(205,101,16)" fg:x="69" fg:w="1"/><text x="31.9014%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.46%)</title><rect x="31.6514%" y="644" width="0.4587%" height="15" fill="rgb(246,168,33)" fg:x="69" fg:w="1"/><text x="31.9014%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="32.1101%" y="948" width="0.9174%" height="15" fill="rgb(231,114,1)" fg:x="70" fg:w="2"/><text x="32.3601%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="32.1101%" y="964" width="0.9174%" height="15" fill="rgb(207,184,53)" fg:x="70" fg:w="2"/><text x="32.3601%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="32.1101%" y="980" width="0.9174%" height="15" fill="rgb(224,95,51)" fg:x="70" fg:w="2"/><text x="32.3601%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="32.1101%" y="996" width="0.9174%" height="15" fill="rgb(212,188,45)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="32.1101%" y="1012" width="0.9174%" height="15" fill="rgb(223,154,38)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1022.50"></text></g><g><title><module> (fsspec/exceptions.py:1) (2 samples, 0.92%)</title><rect x="32.1101%" y="1028" width="0.9174%" height="15" fill="rgb(251,22,52)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="32.1101%" y="1044" width="0.9174%" height="15" fill="rgb(229,209,22)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="32.1101%" y="1060" width="0.9174%" height="15" fill="rgb(234,138,34)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="32.1101%" y="1076" width="0.9174%" height="15" fill="rgb(212,95,11)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="32.1101%" y="1092" width="0.9174%" height="15" fill="rgb(240,179,47)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="32.1101%" y="1108" width="0.9174%" height="15" fill="rgb(240,163,11)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1118.50"></text></g><g><title><module> (asyncio/__init__.py:1) (2 samples, 0.92%)</title><rect x="32.1101%" y="1124" width="0.9174%" height="15" fill="rgb(236,37,12)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="32.1101%" y="1140" width="0.9174%" height="15" fill="rgb(232,164,16)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="32.1101%" y="1156" width="0.9174%" height="15" fill="rgb(244,205,15)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="32.1101%" y="1172" width="0.9174%" height="15" fill="rgb(223,117,47)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1182.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="32.1101%" y="1188" width="0.9174%" height="15" fill="rgb(244,107,35)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="32.1101%" y="1204" width="0.9174%" height="15" fill="rgb(205,140,8)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1214.50"></text></g><g><title><module> (asyncio/base_events.py:1) (2 samples, 0.92%)</title><rect x="32.1101%" y="1220" width="0.9174%" height="15" fill="rgb(228,84,46)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="32.1101%" y="1236" width="0.9174%" height="15" fill="rgb(254,188,9)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="32.1101%" y="1252" width="0.9174%" height="15" fill="rgb(206,112,54)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="32.1101%" y="1268" width="0.9174%" height="15" fill="rgb(216,84,49)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="32.1101%" y="1284" width="0.9174%" height="15" fill="rgb(214,194,35)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="32.1101%" y="1300" width="0.9174%" height="15" fill="rgb(249,28,3)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1310.50"></text></g><g><title><module> (ssl.py:4) (2 samples, 0.92%)</title><rect x="32.1101%" y="1316" width="0.9174%" height="15" fill="rgb(222,56,52)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="32.1101%" y="1332" width="0.9174%" height="15" fill="rgb(245,217,50)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="32.1101%" y="1348" width="0.9174%" height="15" fill="rgb(213,201,24)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1358.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="32.1101%" y="1364" width="0.9174%" height="15" fill="rgb(248,116,28)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1374.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="32.1101%" y="1380" width="0.9174%" height="15" fill="rgb(219,72,43)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1390.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="32.1101%" y="1396" width="0.9174%" height="15" fill="rgb(209,138,14)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="32.1101%" y="1412" width="0.9174%" height="15" fill="rgb(222,18,33)" fg:x="70" fg:w="2"/><text x="32.3601%" y="1422.50"></text></g><g><title><module> (dask/bag/avro.py:1) (3 samples, 1.38%)</title><rect x="32.1101%" y="788" width="1.3761%" height="15" fill="rgb(213,199,7)" fg:x="70" fg:w="3"/><text x="32.3601%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="32.1101%" y="804" width="1.3761%" height="15" fill="rgb(250,110,10)" fg:x="70" fg:w="3"/><text x="32.3601%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="32.1101%" y="820" width="1.3761%" height="15" fill="rgb(248,123,6)" fg:x="70" fg:w="3"/><text x="32.3601%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="32.1101%" y="836" width="1.3761%" height="15" fill="rgb(206,91,31)" fg:x="70" fg:w="3"/><text x="32.3601%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="32.1101%" y="852" width="1.3761%" height="15" fill="rgb(211,154,13)" fg:x="70" fg:w="3"/><text x="32.3601%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="32.1101%" y="868" width="1.3761%" height="15" fill="rgb(225,148,7)" fg:x="70" fg:w="3"/><text x="32.3601%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="32.1101%" y="884" width="1.3761%" height="15" fill="rgb(220,160,43)" fg:x="70" fg:w="3"/><text x="32.3601%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="32.1101%" y="900" width="1.3761%" height="15" fill="rgb(213,52,39)" fg:x="70" fg:w="3"/><text x="32.3601%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="32.1101%" y="916" width="1.3761%" height="15" fill="rgb(243,137,7)" fg:x="70" fg:w="3"/><text x="32.3601%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (3 samples, 1.38%)</title><rect x="32.1101%" y="932" width="1.3761%" height="15" fill="rgb(230,79,13)" fg:x="70" fg:w="3"/><text x="32.3601%" y="942.50"></text></g><g><title>process_entries (fsspec/__init__.py:40) (1 samples, 0.46%)</title><rect x="33.0275%" y="948" width="0.4587%" height="15" fill="rgb(247,105,23)" fg:x="72" fg:w="1"/><text x="33.2775%" y="958.50"></text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.46%)</title><rect x="33.0275%" y="964" width="0.4587%" height="15" fill="rgb(223,179,41)" fg:x="72" fg:w="1"/><text x="33.2775%" y="974.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.46%)</title><rect x="33.0275%" y="980" width="0.4587%" height="15" fill="rgb(218,9,34)" fg:x="72" fg:w="1"/><text x="33.2775%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.46%)</title><rect x="33.0275%" y="996" width="0.4587%" height="15" fill="rgb(222,106,8)" fg:x="72" fg:w="1"/><text x="33.2775%" y="1006.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.46%)</title><rect x="33.0275%" y="1012" width="0.4587%" height="15" fill="rgb(211,220,0)" fg:x="72" fg:w="1"/><text x="33.2775%" y="1022.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.46%)</title><rect x="33.0275%" y="1028" width="0.4587%" height="15" fill="rgb(229,52,16)" fg:x="72" fg:w="1"/><text x="33.2775%" y="1038.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.46%)</title><rect x="33.0275%" y="1044" width="0.4587%" height="15" fill="rgb(212,155,18)" fg:x="72" fg:w="1"/><text x="33.2775%" y="1054.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.46%)</title><rect x="33.0275%" y="1060" width="0.4587%" height="15" fill="rgb(242,21,14)" fg:x="72" fg:w="1"/><text x="33.2775%" y="1070.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (4 samples, 1.83%)</title><rect x="32.1101%" y="692" width="1.8349%" height="15" fill="rgb(222,19,48)" fg:x="70" fg:w="4"/><text x="32.3601%" y="702.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="32.1101%" y="708" width="1.8349%" height="15" fill="rgb(232,45,27)" fg:x="70" fg:w="4"/><text x="32.3601%" y="718.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="32.1101%" y="724" width="1.8349%" height="15" fill="rgb(249,103,42)" fg:x="70" fg:w="4"/><text x="32.3601%" y="734.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="32.1101%" y="740" width="1.8349%" height="15" fill="rgb(246,81,33)" fg:x="70" fg:w="4"/><text x="32.3601%" y="750.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="32.1101%" y="756" width="1.8349%" height="15" fill="rgb(252,33,42)" fg:x="70" fg:w="4"/><text x="32.3601%" y="766.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="32.1101%" y="772" width="1.8349%" height="15" fill="rgb(209,212,41)" fg:x="70" fg:w="4"/><text x="32.3601%" y="782.50">_..</text></g><g><title><module> (dask/bag/core.py:1) (1 samples, 0.46%)</title><rect x="33.4862%" y="788" width="0.4587%" height="15" fill="rgb(207,154,6)" fg:x="73" fg:w="1"/><text x="33.7362%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="33.4862%" y="804" width="0.4587%" height="15" fill="rgb(223,64,47)" fg:x="73" fg:w="1"/><text x="33.7362%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="33.4862%" y="820" width="0.4587%" height="15" fill="rgb(211,161,38)" fg:x="73" fg:w="1"/><text x="33.7362%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="33.4862%" y="836" width="0.4587%" height="15" fill="rgb(219,138,40)" fg:x="73" fg:w="1"/><text x="33.7362%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="33.4862%" y="852" width="0.4587%" height="15" fill="rgb(241,228,46)" fg:x="73" fg:w="1"/><text x="33.7362%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="33.4862%" y="868" width="0.4587%" height="15" fill="rgb(223,209,38)" fg:x="73" fg:w="1"/><text x="33.7362%" y="878.50"></text></g><g><title><module> (urllib/request.py:1) (1 samples, 0.46%)</title><rect x="33.4862%" y="884" width="0.4587%" height="15" fill="rgb(236,164,45)" fg:x="73" fg:w="1"/><text x="33.7362%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="33.4862%" y="900" width="0.4587%" height="15" fill="rgb(231,15,5)" fg:x="73" fg:w="1"/><text x="33.7362%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="33.4862%" y="916" width="0.4587%" height="15" fill="rgb(252,35,15)" fg:x="73" fg:w="1"/><text x="33.7362%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="33.4862%" y="932" width="0.4587%" height="15" fill="rgb(248,181,18)" fg:x="73" fg:w="1"/><text x="33.7362%" y="942.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="33.4862%" y="948" width="0.4587%" height="15" fill="rgb(233,39,42)" fg:x="73" fg:w="1"/><text x="33.7362%" y="958.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="33.4862%" y="964" width="0.4587%" height="15" fill="rgb(238,110,33)" fg:x="73" fg:w="1"/><text x="33.7362%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="33.4862%" y="980" width="0.4587%" height="15" fill="rgb(233,195,10)" fg:x="73" fg:w="1"/><text x="33.7362%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="32.1101%" y="612" width="2.2936%" height="15" fill="rgb(254,105,3)" fg:x="70" fg:w="5"/><text x="32.3601%" y="622.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="32.1101%" y="628" width="2.2936%" height="15" fill="rgb(221,225,9)" fg:x="70" fg:w="5"/><text x="32.3601%" y="638.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="32.1101%" y="644" width="2.2936%" height="15" fill="rgb(224,227,45)" fg:x="70" fg:w="5"/><text x="32.3601%" y="654.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.29%)</title><rect x="32.1101%" y="660" width="2.2936%" height="15" fill="rgb(229,198,43)" fg:x="70" fg:w="5"/><text x="32.3601%" y="670.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="32.1101%" y="676" width="2.2936%" height="15" fill="rgb(206,209,35)" fg:x="70" fg:w="5"/><text x="32.3601%" y="686.50">_..</text></g><g><title><module> (dask/dataframe/categorical.py:1) (1 samples, 0.46%)</title><rect x="33.9450%" y="692" width="0.4587%" height="15" fill="rgb(245,195,53)" fg:x="74" fg:w="1"/><text x="34.1950%" y="702.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.46%)</title><rect x="33.9450%" y="708" width="0.4587%" height="15" fill="rgb(240,92,26)" fg:x="74" fg:w="1"/><text x="34.1950%" y="718.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.46%)</title><rect x="33.9450%" y="724" width="0.4587%" height="15" fill="rgb(207,40,23)" fg:x="74" fg:w="1"/><text x="34.1950%" y="734.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.46%)</title><rect x="33.9450%" y="740" width="0.4587%" height="15" fill="rgb(223,111,35)" fg:x="74" fg:w="1"/><text x="34.1950%" y="750.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.46%)</title><rect x="33.9450%" y="756" width="0.4587%" height="15" fill="rgb(229,147,28)" fg:x="74" fg:w="1"/><text x="34.1950%" y="766.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.46%)</title><rect x="33.9450%" y="772" width="0.4587%" height="15" fill="rgb(211,29,28)" fg:x="74" fg:w="1"/><text x="34.1950%" y="782.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="33.9450%" y="788" width="0.4587%" height="15" fill="rgb(228,72,33)" fg:x="74" fg:w="1"/><text x="34.1950%" y="798.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="33.9450%" y="804" width="0.4587%" height="15" fill="rgb(205,214,31)" fg:x="74" fg:w="1"/><text x="34.1950%" y="814.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="33.9450%" y="820" width="0.4587%" height="15" fill="rgb(224,111,15)" fg:x="74" fg:w="1"/><text x="34.1950%" y="830.50"></text></g><g><title>unwrap (inspect.py:494) (1 samples, 0.46%)</title><rect x="33.9450%" y="836" width="0.4587%" height="15" fill="rgb(253,21,26)" fg:x="74" fg:w="1"/><text x="34.1950%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 7.34%)</title><rect x="27.5229%" y="580" width="7.3394%" height="15" fill="rgb(245,139,43)" fg:x="60" fg:w="16"/><text x="27.7729%" y="590.50">_call_with..</text></g><g><title><module> (dask/dataframe/core.py:1) (16 samples, 7.34%)</title><rect x="27.5229%" y="596" width="7.3394%" height="15" fill="rgb(252,170,7)" fg:x="60" fg:w="16"/><text x="27.7729%" y="606.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="34.4037%" y="612" width="0.4587%" height="15" fill="rgb(231,118,14)" fg:x="75" fg:w="1"/><text x="34.6537%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="628" width="0.4587%" height="15" fill="rgb(238,83,0)" fg:x="75" fg:w="1"/><text x="34.6537%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="34.4037%" y="644" width="0.4587%" height="15" fill="rgb(221,39,39)" fg:x="75" fg:w="1"/><text x="34.6537%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="34.4037%" y="660" width="0.4587%" height="15" fill="rgb(222,119,46)" fg:x="75" fg:w="1"/><text x="34.6537%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="34.4037%" y="676" width="0.4587%" height="15" fill="rgb(222,165,49)" fg:x="75" fg:w="1"/><text x="34.6537%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="34.4037%" y="692" width="0.4587%" height="15" fill="rgb(219,113,52)" fg:x="75" fg:w="1"/><text x="34.6537%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="708" width="0.4587%" height="15" fill="rgb(214,7,15)" fg:x="75" fg:w="1"/><text x="34.6537%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (1 samples, 0.46%)</title><rect x="34.4037%" y="724" width="0.4587%" height="15" fill="rgb(235,32,4)" fg:x="75" fg:w="1"/><text x="34.6537%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="34.4037%" y="740" width="0.4587%" height="15" fill="rgb(238,90,54)" fg:x="75" fg:w="1"/><text x="34.6537%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="34.4037%" y="756" width="0.4587%" height="15" fill="rgb(213,208,19)" fg:x="75" fg:w="1"/><text x="34.6537%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="34.4037%" y="772" width="0.4587%" height="15" fill="rgb(233,156,4)" fg:x="75" fg:w="1"/><text x="34.6537%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="34.4037%" y="788" width="0.4587%" height="15" fill="rgb(207,194,5)" fg:x="75" fg:w="1"/><text x="34.6537%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="804" width="0.4587%" height="15" fill="rgb(206,111,30)" fg:x="75" fg:w="1"/><text x="34.6537%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (1 samples, 0.46%)</title><rect x="34.4037%" y="820" width="0.4587%" height="15" fill="rgb(243,70,54)" fg:x="75" fg:w="1"/><text x="34.6537%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="34.4037%" y="836" width="0.4587%" height="15" fill="rgb(242,28,8)" fg:x="75" fg:w="1"/><text x="34.6537%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="852" width="0.4587%" height="15" fill="rgb(219,106,18)" fg:x="75" fg:w="1"/><text x="34.6537%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="34.4037%" y="868" width="0.4587%" height="15" fill="rgb(244,222,10)" fg:x="75" fg:w="1"/><text x="34.6537%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="34.4037%" y="884" width="0.4587%" height="15" fill="rgb(236,179,52)" fg:x="75" fg:w="1"/><text x="34.6537%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="34.4037%" y="900" width="0.4587%" height="15" fill="rgb(213,23,39)" fg:x="75" fg:w="1"/><text x="34.6537%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="34.4037%" y="916" width="0.4587%" height="15" fill="rgb(238,48,10)" fg:x="75" fg:w="1"/><text x="34.6537%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="932" width="0.4587%" height="15" fill="rgb(251,196,23)" fg:x="75" fg:w="1"/><text x="34.6537%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (1 samples, 0.46%)</title><rect x="34.4037%" y="948" width="0.4587%" height="15" fill="rgb(250,152,24)" fg:x="75" fg:w="1"/><text x="34.6537%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="34.4037%" y="964" width="0.4587%" height="15" fill="rgb(209,150,17)" fg:x="75" fg:w="1"/><text x="34.6537%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="34.4037%" y="980" width="0.4587%" height="15" fill="rgb(234,202,34)" fg:x="75" fg:w="1"/><text x="34.6537%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="34.4037%" y="996" width="0.4587%" height="15" fill="rgb(253,148,53)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="34.4037%" y="1012" width="0.4587%" height="15" fill="rgb(218,129,16)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="1028" width="0.4587%" height="15" fill="rgb(216,85,19)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (1 samples, 0.46%)</title><rect x="34.4037%" y="1044" width="0.4587%" height="15" fill="rgb(235,228,7)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="34.4037%" y="1060" width="0.4587%" height="15" fill="rgb(245,175,0)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="34.4037%" y="1076" width="0.4587%" height="15" fill="rgb(208,168,36)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="34.4037%" y="1092" width="0.4587%" height="15" fill="rgb(246,171,24)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="34.4037%" y="1108" width="0.4587%" height="15" fill="rgb(215,142,24)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="34.4037%" y="1124" width="0.4587%" height="15" fill="rgb(250,187,7)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (1 samples, 0.46%)</title><rect x="34.4037%" y="1140" width="0.4587%" height="15" fill="rgb(228,66,33)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1150.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.46%)</title><rect x="34.4037%" y="1156" width="0.4587%" height="15" fill="rgb(234,215,21)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1166.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.46%)</title><rect x="34.4037%" y="1172" width="0.4587%" height="15" fill="rgb(222,191,20)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1182.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.46%)</title><rect x="34.4037%" y="1188" width="0.4587%" height="15" fill="rgb(245,79,54)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1198.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.46%)</title><rect x="34.4037%" y="1204" width="0.4587%" height="15" fill="rgb(240,10,37)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1214.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.46%)</title><rect x="34.4037%" y="1220" width="0.4587%" height="15" fill="rgb(214,192,32)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1230.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="34.4037%" y="1236" width="0.4587%" height="15" fill="rgb(209,36,54)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1246.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="34.4037%" y="1252" width="0.4587%" height="15" fill="rgb(220,10,11)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1262.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="34.4037%" y="1268" width="0.4587%" height="15" fill="rgb(221,106,17)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1278.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.46%)</title><rect x="34.4037%" y="1284" width="0.4587%" height="15" fill="rgb(251,142,44)" fg:x="75" fg:w="1"/><text x="34.6537%" y="1294.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (50 samples, 22.94%)</title><rect x="12.3853%" y="500" width="22.9358%" height="15" fill="rgb(238,13,15)" fg:x="27" fg:w="50"/><text x="12.6353%" y="510.50"><module> (dask/dataframe/backends.py..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (50 samples, 22.94%)</title><rect x="12.3853%" y="516" width="22.9358%" height="15" fill="rgb(208,107,27)" fg:x="27" fg:w="50"/><text x="12.6353%" y="526.50">_find_and_load (<frozen importlib._b..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (50 samples, 22.94%)</title><rect x="12.3853%" y="532" width="22.9358%" height="15" fill="rgb(205,136,37)" fg:x="27" fg:w="50"/><text x="12.6353%" y="542.50">_find_and_load_unlocked (<frozen imp..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 7.80%)</title><rect x="27.5229%" y="548" width="7.7982%" height="15" fill="rgb(250,205,27)" fg:x="60" fg:w="17"/><text x="27.7729%" y="558.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 7.80%)</title><rect x="27.5229%" y="564" width="7.7982%" height="15" fill="rgb(210,80,43)" fg:x="60" fg:w="17"/><text x="27.7729%" y="574.50">exec_module..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="34.8624%" y="580" width="0.4587%" height="15" fill="rgb(247,160,36)" fg:x="76" fg:w="1"/><text x="35.1124%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="34.8624%" y="596" width="0.4587%" height="15" fill="rgb(234,13,49)" fg:x="76" fg:w="1"/><text x="35.1124%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (51 samples, 23.39%)</title><rect x="12.3853%" y="484" width="23.3945%" height="15" fill="rgb(234,122,0)" fg:x="27" fg:w="51"/><text x="12.6353%" y="494.50">_call_with_frames_removed (<frozen im..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (1 samples, 0.46%)</title><rect x="35.3211%" y="500" width="0.4587%" height="15" fill="rgb(207,146,38)" fg:x="77" fg:w="1"/><text x="35.5711%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="35.3211%" y="516" width="0.4587%" height="15" fill="rgb(207,177,25)" fg:x="77" fg:w="1"/><text x="35.5711%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="35.3211%" y="532" width="0.4587%" height="15" fill="rgb(211,178,42)" fg:x="77" fg:w="1"/><text x="35.5711%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="35.3211%" y="548" width="0.4587%" height="15" fill="rgb(230,69,54)" fg:x="77" fg:w="1"/><text x="35.5711%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="35.3211%" y="564" width="0.4587%" height="15" fill="rgb(214,135,41)" fg:x="77" fg:w="1"/><text x="35.5711%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="35.3211%" y="580" width="0.4587%" height="15" fill="rgb(237,67,25)" fg:x="77" fg:w="1"/><text x="35.5711%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (1 samples, 0.46%)</title><rect x="35.3211%" y="596" width="0.4587%" height="15" fill="rgb(222,189,50)" fg:x="77" fg:w="1"/><text x="35.5711%" y="606.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="35.3211%" y="612" width="0.4587%" height="15" fill="rgb(245,148,34)" fg:x="77" fg:w="1"/><text x="35.5711%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="35.3211%" y="628" width="0.4587%" height="15" fill="rgb(222,29,6)" fg:x="77" fg:w="1"/><text x="35.5711%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="35.3211%" y="644" width="0.4587%" height="15" fill="rgb(221,189,43)" fg:x="77" fg:w="1"/><text x="35.5711%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="35.3211%" y="660" width="0.4587%" height="15" fill="rgb(207,36,27)" fg:x="77" fg:w="1"/><text x="35.5711%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="35.3211%" y="676" width="0.4587%" height="15" fill="rgb(217,90,24)" fg:x="77" fg:w="1"/><text x="35.5711%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="35.3211%" y="692" width="0.4587%" height="15" fill="rgb(224,66,35)" fg:x="77" fg:w="1"/><text x="35.5711%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="35.3211%" y="708" width="0.4587%" height="15" fill="rgb(221,13,50)" fg:x="77" fg:w="1"/><text x="35.5711%" y="718.50"></text></g><g><title><module> (dask/dataframe/io/demo.py:1) (1 samples, 0.46%)</title><rect x="35.3211%" y="724" width="0.4587%" height="15" fill="rgb(236,68,49)" fg:x="77" fg:w="1"/><text x="35.5711%" y="734.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.46%)</title><rect x="35.3211%" y="740" width="0.4587%" height="15" fill="rgb(229,146,28)" fg:x="77" fg:w="1"/><text x="35.5711%" y="750.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.46%)</title><rect x="35.3211%" y="756" width="0.4587%" height="15" fill="rgb(225,31,38)" fg:x="77" fg:w="1"/><text x="35.5711%" y="766.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.46%)</title><rect x="35.3211%" y="772" width="0.4587%" height="15" fill="rgb(250,208,3)" fg:x="77" fg:w="1"/><text x="35.5711%" y="782.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.46%)</title><rect x="35.3211%" y="788" width="0.4587%" height="15" fill="rgb(246,54,23)" fg:x="77" fg:w="1"/><text x="35.5711%" y="798.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.46%)</title><rect x="35.3211%" y="804" width="0.4587%" height="15" fill="rgb(243,76,11)" fg:x="77" fg:w="1"/><text x="35.5711%" y="814.50"></text></g><g><title><module> (qarray/__init__.py:1) (59 samples, 27.06%)</title><rect x="9.1743%" y="180" width="27.0642%" height="15" fill="rgb(245,21,50)" fg:x="20" fg:w="59"/><text x="9.4243%" y="190.50"><module> (qarray/__init__.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (59 samples, 27.06%)</title><rect x="9.1743%" y="196" width="27.0642%" height="15" fill="rgb(228,9,43)" fg:x="20" fg:w="59"/><text x="9.4243%" y="206.50">_find_and_load (<frozen importlib._bootstra..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (59 samples, 27.06%)</title><rect x="9.1743%" y="212" width="27.0642%" height="15" fill="rgb(208,100,47)" fg:x="20" fg:w="59"/><text x="9.4243%" y="222.50">_find_and_load_unlocked (<frozen importlib...</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (59 samples, 27.06%)</title><rect x="9.1743%" y="228" width="27.0642%" height="15" fill="rgb(232,26,8)" fg:x="20" fg:w="59"/><text x="9.4243%" y="238.50">_load_unlocked (<frozen importlib._bootstra..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (59 samples, 27.06%)</title><rect x="9.1743%" y="244" width="27.0642%" height="15" fill="rgb(216,166,38)" fg:x="20" fg:w="59"/><text x="9.4243%" y="254.50">exec_module (<frozen importlib._bootstrap_e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (59 samples, 27.06%)</title><rect x="9.1743%" y="260" width="27.0642%" height="15" fill="rgb(251,202,51)" fg:x="20" fg:w="59"/><text x="9.4243%" y="270.50">_call_with_frames_removed (<frozen importli..</text></g><g><title><module> (qarray/df.py:1) (55 samples, 25.23%)</title><rect x="11.0092%" y="276" width="25.2294%" height="15" fill="rgb(254,216,34)" fg:x="24" fg:w="55"/><text x="11.2592%" y="286.50"><module> (qarray/df.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (55 samples, 25.23%)</title><rect x="11.0092%" y="292" width="25.2294%" height="15" fill="rgb(251,32,27)" fg:x="24" fg:w="55"/><text x="11.2592%" y="302.50">_find_and_load (<frozen importlib._boots..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (55 samples, 25.23%)</title><rect x="11.0092%" y="308" width="25.2294%" height="15" fill="rgb(208,127,28)" fg:x="24" fg:w="55"/><text x="11.2592%" y="318.50">_find_and_load_unlocked (<frozen importl..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (55 samples, 25.23%)</title><rect x="11.0092%" y="324" width="25.2294%" height="15" fill="rgb(224,137,22)" fg:x="24" fg:w="55"/><text x="11.2592%" y="334.50">_load_unlocked (<frozen importlib._boots..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (55 samples, 25.23%)</title><rect x="11.0092%" y="340" width="25.2294%" height="15" fill="rgb(254,70,32)" fg:x="24" fg:w="55"/><text x="11.2592%" y="350.50">exec_module (<frozen importlib._bootstra..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (55 samples, 25.23%)</title><rect x="11.0092%" y="356" width="25.2294%" height="15" fill="rgb(229,75,37)" fg:x="24" fg:w="55"/><text x="11.2592%" y="366.50">_call_with_frames_removed (<frozen impor..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (55 samples, 25.23%)</title><rect x="11.0092%" y="372" width="25.2294%" height="15" fill="rgb(252,64,23)" fg:x="24" fg:w="55"/><text x="11.2592%" y="382.50"><module> (dask/dataframe/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (52 samples, 23.85%)</title><rect x="12.3853%" y="388" width="23.8532%" height="15" fill="rgb(232,162,48)" fg:x="27" fg:w="52"/><text x="12.6353%" y="398.50">_handle_fromlist (<frozen importlib._b..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (52 samples, 23.85%)</title><rect x="12.3853%" y="404" width="23.8532%" height="15" fill="rgb(246,160,12)" fg:x="27" fg:w="52"/><text x="12.6353%" y="414.50">_call_with_frames_removed (<frozen imp..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (52 samples, 23.85%)</title><rect x="12.3853%" y="420" width="23.8532%" height="15" fill="rgb(247,166,0)" fg:x="27" fg:w="52"/><text x="12.6353%" y="430.50">_find_and_load (<frozen importlib._boo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (52 samples, 23.85%)</title><rect x="12.3853%" y="436" width="23.8532%" height="15" fill="rgb(249,219,21)" fg:x="27" fg:w="52"/><text x="12.6353%" y="446.50">_find_and_load_unlocked (<frozen impor..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (52 samples, 23.85%)</title><rect x="12.3853%" y="452" width="23.8532%" height="15" fill="rgb(205,209,3)" fg:x="27" fg:w="52"/><text x="12.6353%" y="462.50">_load_unlocked (<frozen importlib._boo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (52 samples, 23.85%)</title><rect x="12.3853%" y="468" width="23.8532%" height="15" fill="rgb(243,44,1)" fg:x="27" fg:w="52"/><text x="12.6353%" y="478.50">exec_module (<frozen importlib._bootst..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="35.7798%" y="484" width="0.4587%" height="15" fill="rgb(206,159,16)" fg:x="78" fg:w="1"/><text x="36.0298%" y="494.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="35.7798%" y="500" width="0.4587%" height="15" fill="rgb(244,77,30)" fg:x="78" fg:w="1"/><text x="36.0298%" y="510.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="36.2385%" y="724" width="0.4587%" height="15" fill="rgb(218,69,12)" fg:x="79" fg:w="1"/><text x="36.4885%" y="734.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="36.2385%" y="740" width="0.4587%" height="15" fill="rgb(212,87,7)" fg:x="79" fg:w="1"/><text x="36.4885%" y="750.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="36.2385%" y="756" width="0.4587%" height="15" fill="rgb(245,114,25)" fg:x="79" fg:w="1"/><text x="36.4885%" y="766.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="36.2385%" y="772" width="0.4587%" height="15" fill="rgb(210,61,42)" fg:x="79" fg:w="1"/><text x="36.4885%" y="782.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.46%)</title><rect x="36.2385%" y="788" width="0.4587%" height="15" fill="rgb(211,52,33)" fg:x="79" fg:w="1"/><text x="36.4885%" y="798.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.46%)</title><rect x="36.2385%" y="804" width="0.4587%" height="15" fill="rgb(234,58,33)" fg:x="79" fg:w="1"/><text x="36.4885%" y="814.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.46%)</title><rect x="36.2385%" y="820" width="0.4587%" height="15" fill="rgb(220,115,36)" fg:x="79" fg:w="1"/><text x="36.4885%" y="830.50"></text></g><g><title><module> (numpy/core/multiarray.py:1) (3 samples, 1.38%)</title><rect x="36.6972%" y="772" width="1.3761%" height="15" fill="rgb(243,153,54)" fg:x="80" fg:w="3"/><text x="36.9472%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="36.6972%" y="788" width="1.3761%" height="15" fill="rgb(251,47,18)" fg:x="80" fg:w="3"/><text x="36.9472%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="36.6972%" y="804" width="1.3761%" height="15" fill="rgb(242,102,42)" fg:x="80" fg:w="3"/><text x="36.9472%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="36.6972%" y="820" width="1.3761%" height="15" fill="rgb(234,31,38)" fg:x="80" fg:w="3"/><text x="36.9472%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="36.6972%" y="836" width="1.3761%" height="15" fill="rgb(221,117,51)" fg:x="80" fg:w="3"/><text x="36.9472%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="36.6972%" y="852" width="1.3761%" height="15" fill="rgb(212,20,18)" fg:x="80" fg:w="3"/><text x="36.9472%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="36.6972%" y="868" width="1.3761%" height="15" fill="rgb(245,133,36)" fg:x="80" fg:w="3"/><text x="36.9472%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="36.6972%" y="884" width="1.3761%" height="15" fill="rgb(212,6,19)" fg:x="80" fg:w="3"/><text x="36.9472%" y="894.50"></text></g><g><title><module> (numpy/core/overrides.py:1) (3 samples, 1.38%)</title><rect x="36.6972%" y="900" width="1.3761%" height="15" fill="rgb(218,1,36)" fg:x="80" fg:w="3"/><text x="36.9472%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="37.1560%" y="916" width="0.9174%" height="15" fill="rgb(246,84,54)" fg:x="81" fg:w="2"/><text x="37.4060%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="37.1560%" y="932" width="0.9174%" height="15" fill="rgb(242,110,6)" fg:x="81" fg:w="2"/><text x="37.4060%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="37.1560%" y="948" width="0.9174%" height="15" fill="rgb(214,47,5)" fg:x="81" fg:w="2"/><text x="37.4060%" y="958.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="37.1560%" y="964" width="0.9174%" height="15" fill="rgb(218,159,25)" fg:x="81" fg:w="2"/><text x="37.4060%" y="974.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="37.1560%" y="980" width="0.9174%" height="15" fill="rgb(215,211,28)" fg:x="81" fg:w="2"/><text x="37.4060%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="37.1560%" y="996" width="0.9174%" height="15" fill="rgb(238,59,32)" fg:x="81" fg:w="2"/><text x="37.4060%" y="1006.50"></text></g><g><title><module> (numpy/core/numeric.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="772" width="0.4587%" height="15" fill="rgb(226,82,3)" fg:x="83" fg:w="1"/><text x="38.3234%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="38.0734%" y="788" width="0.4587%" height="15" fill="rgb(240,164,32)" fg:x="83" fg:w="1"/><text x="38.3234%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="804" width="0.4587%" height="15" fill="rgb(232,46,7)" fg:x="83" fg:w="1"/><text x="38.3234%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="820" width="0.4587%" height="15" fill="rgb(229,129,53)" fg:x="83" fg:w="1"/><text x="38.3234%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="836" width="0.4587%" height="15" fill="rgb(234,188,29)" fg:x="83" fg:w="1"/><text x="38.3234%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="852" width="0.4587%" height="15" fill="rgb(246,141,4)" fg:x="83" fg:w="1"/><text x="38.3234%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.0734%" y="868" width="0.4587%" height="15" fill="rgb(229,23,39)" fg:x="83" fg:w="1"/><text x="38.3234%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="884" width="0.4587%" height="15" fill="rgb(206,12,3)" fg:x="83" fg:w="1"/><text x="38.3234%" y="894.50"></text></g><g><title><module> (numpy/core/shape_base.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="900" width="0.4587%" height="15" fill="rgb(252,226,20)" fg:x="83" fg:w="1"/><text x="38.3234%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="38.0734%" y="916" width="0.4587%" height="15" fill="rgb(216,123,35)" fg:x="83" fg:w="1"/><text x="38.3234%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="932" width="0.4587%" height="15" fill="rgb(212,68,40)" fg:x="83" fg:w="1"/><text x="38.3234%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="948" width="0.4587%" height="15" fill="rgb(254,125,32)" fg:x="83" fg:w="1"/><text x="38.3234%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="964" width="0.4587%" height="15" fill="rgb(253,97,22)" fg:x="83" fg:w="1"/><text x="38.3234%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="980" width="0.4587%" height="15" fill="rgb(241,101,14)" fg:x="83" fg:w="1"/><text x="38.3234%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.0734%" y="996" width="0.4587%" height="15" fill="rgb(238,103,29)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1012" width="0.4587%" height="15" fill="rgb(233,195,47)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1022.50"></text></g><g><title><module> (numpy/core/fromnumeric.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="1028" width="0.4587%" height="15" fill="rgb(246,218,30)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="38.0734%" y="1044" width="0.4587%" height="15" fill="rgb(219,145,47)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1060" width="0.4587%" height="15" fill="rgb(243,12,26)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="1076" width="0.4587%" height="15" fill="rgb(214,87,16)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="1092" width="0.4587%" height="15" fill="rgb(208,99,42)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="1108" width="0.4587%" height="15" fill="rgb(253,99,2)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.0734%" y="1124" width="0.4587%" height="15" fill="rgb(220,168,23)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1140" width="0.4587%" height="15" fill="rgb(242,38,24)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1150.50"></text></g><g><title><module> (numpy/core/_methods.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="1156" width="0.4587%" height="15" fill="rgb(225,182,9)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="1172" width="0.4587%" height="15" fill="rgb(243,178,37)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="1188" width="0.4587%" height="15" fill="rgb(232,139,19)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="1204" width="0.4587%" height="15" fill="rgb(225,201,24)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.0734%" y="1220" width="0.4587%" height="15" fill="rgb(221,47,46)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1236" width="0.4587%" height="15" fill="rgb(249,23,13)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1246.50"></text></g><g><title><module> (numpy/core/_ufunc_config.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="1252" width="0.4587%" height="15" fill="rgb(219,9,5)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="1268" width="0.4587%" height="15" fill="rgb(254,171,16)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="1284" width="0.4587%" height="15" fill="rgb(230,171,20)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="1300" width="0.4587%" height="15" fill="rgb(210,71,41)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.0734%" y="1316" width="0.4587%" height="15" fill="rgb(206,173,20)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1332" width="0.4587%" height="15" fill="rgb(233,88,34)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1342.50"></text></g><g><title><module> (contextvars.py:1) (1 samples, 0.46%)</title><rect x="38.0734%" y="1348" width="0.4587%" height="15" fill="rgb(223,209,46)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1358.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.0734%" y="1364" width="0.4587%" height="15" fill="rgb(250,43,18)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1374.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.0734%" y="1380" width="0.4587%" height="15" fill="rgb(208,13,10)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1390.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.0734%" y="1396" width="0.4587%" height="15" fill="rgb(212,200,36)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1406.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="38.0734%" y="1412" width="0.4587%" height="15" fill="rgb(225,90,30)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1422.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="38.0734%" y="1428" width="0.4587%" height="15" fill="rgb(236,182,39)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.0734%" y="1444" width="0.4587%" height="15" fill="rgb(212,144,35)" fg:x="83" fg:w="1"/><text x="38.3234%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="36.6972%" y="756" width="2.2936%" height="15" fill="rgb(228,63,44)" fg:x="80" fg:w="5"/><text x="36.9472%" y="766.50">_..</text></g><g><title><module> (numpy/core/numerictypes.py:1) (1 samples, 0.46%)</title><rect x="38.5321%" y="772" width="0.4587%" height="15" fill="rgb(228,109,6)" fg:x="84" fg:w="1"/><text x="38.7821%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="788" width="0.4587%" height="15" fill="rgb(238,117,24)" fg:x="84" fg:w="1"/><text x="38.7821%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="804" width="0.4587%" height="15" fill="rgb(242,26,26)" fg:x="84" fg:w="1"/><text x="38.7821%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.5321%" y="820" width="0.4587%" height="15" fill="rgb(221,92,48)" fg:x="84" fg:w="1"/><text x="38.7821%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.5321%" y="836" width="0.4587%" height="15" fill="rgb(209,209,32)" fg:x="84" fg:w="1"/><text x="38.7821%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="852" width="0.4587%" height="15" fill="rgb(221,70,22)" fg:x="84" fg:w="1"/><text x="38.7821%" y="862.50"></text></g><g><title><module> (numpy/core/_type_aliases.py:1) (1 samples, 0.46%)</title><rect x="38.5321%" y="868" width="0.4587%" height="15" fill="rgb(248,145,5)" fg:x="84" fg:w="1"/><text x="38.7821%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="884" width="0.4587%" height="15" fill="rgb(226,116,26)" fg:x="84" fg:w="1"/><text x="38.7821%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="900" width="0.4587%" height="15" fill="rgb(244,5,17)" fg:x="84" fg:w="1"/><text x="38.7821%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.5321%" y="916" width="0.4587%" height="15" fill="rgb(252,159,33)" fg:x="84" fg:w="1"/><text x="38.7821%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.5321%" y="932" width="0.4587%" height="15" fill="rgb(206,71,0)" fg:x="84" fg:w="1"/><text x="38.7821%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="948" width="0.4587%" height="15" fill="rgb(233,118,54)" fg:x="84" fg:w="1"/><text x="38.7821%" y="958.50"></text></g><g><title><module> (numpy/compat/__init__.py:1) (1 samples, 0.46%)</title><rect x="38.5321%" y="964" width="0.4587%" height="15" fill="rgb(234,83,48)" fg:x="84" fg:w="1"/><text x="38.7821%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="38.5321%" y="980" width="0.4587%" height="15" fill="rgb(228,3,54)" fg:x="84" fg:w="1"/><text x="38.7821%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="996" width="0.4587%" height="15" fill="rgb(226,155,13)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="1012" width="0.4587%" height="15" fill="rgb(241,28,37)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="1028" width="0.4587%" height="15" fill="rgb(233,93,10)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.5321%" y="1044" width="0.4587%" height="15" fill="rgb(225,113,19)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.5321%" y="1060" width="0.4587%" height="15" fill="rgb(241,2,18)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="1076" width="0.4587%" height="15" fill="rgb(228,207,21)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1086.50"></text></g><g><title><module> (numpy/compat/py3k.py:1) (1 samples, 0.46%)</title><rect x="38.5321%" y="1092" width="0.4587%" height="15" fill="rgb(213,211,35)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="1108" width="0.4587%" height="15" fill="rgb(209,83,10)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="1124" width="0.4587%" height="15" fill="rgb(209,164,1)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="38.5321%" y="1140" width="0.4587%" height="15" fill="rgb(213,184,43)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="38.5321%" y="1156" width="0.4587%" height="15" fill="rgb(231,61,34)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="1172" width="0.4587%" height="15" fill="rgb(235,75,3)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1182.50"></text></g><g><title><module> (pickle.py:1) (1 samples, 0.46%)</title><rect x="38.5321%" y="1188" width="0.4587%" height="15" fill="rgb(220,106,47)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="1204" width="0.4587%" height="15" fill="rgb(210,196,33)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="1220" width="0.4587%" height="15" fill="rgb(229,154,42)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="1236" width="0.4587%" height="15" fill="rgb(228,114,26)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="1252" width="0.4587%" height="15" fill="rgb(208,144,1)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="1268" width="0.4587%" height="15" fill="rgb(239,112,37)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="38.5321%" y="1284" width="0.4587%" height="15" fill="rgb(210,96,50)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="38.5321%" y="1300" width="0.4587%" height="15" fill="rgb(222,178,2)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="38.5321%" y="1316" width="0.4587%" height="15" fill="rgb(226,74,18)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1326.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="38.5321%" y="1332" width="0.4587%" height="15" fill="rgb(225,67,54)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1342.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="38.5321%" y="1348" width="0.4587%" height="15" fill="rgb(251,92,32)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1358.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="38.5321%" y="1364" width="0.4587%" height="15" fill="rgb(228,149,22)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1374.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="38.5321%" y="1380" width="0.4587%" height="15" fill="rgb(243,54,13)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1390.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.46%)</title><rect x="38.5321%" y="1396" width="0.4587%" height="15" fill="rgb(243,180,28)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1406.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (1 samples, 0.46%)</title><rect x="38.5321%" y="1412" width="0.4587%" height="15" fill="rgb(208,167,24)" fg:x="84" fg:w="1"/><text x="38.7821%" y="1422.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="36.2385%" y="420" width="3.2110%" height="15" fill="rgb(245,73,45)" fg:x="79" fg:w="7"/><text x="36.4885%" y="430.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="36.2385%" y="436" width="3.2110%" height="15" fill="rgb(237,203,48)" fg:x="79" fg:w="7"/><text x="36.4885%" y="446.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="36.2385%" y="452" width="3.2110%" height="15" fill="rgb(211,197,16)" fg:x="79" fg:w="7"/><text x="36.4885%" y="462.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="36.2385%" y="468" width="3.2110%" height="15" fill="rgb(243,99,51)" fg:x="79" fg:w="7"/><text x="36.4885%" y="478.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="36.2385%" y="484" width="3.2110%" height="15" fill="rgb(215,123,29)" fg:x="79" fg:w="7"/><text x="36.4885%" y="494.50">_ca..</text></g><g><title><module> (numpy/__config__.py:3) (7 samples, 3.21%)</title><rect x="36.2385%" y="500" width="3.2110%" height="15" fill="rgb(239,186,37)" fg:x="79" fg:w="7"/><text x="36.4885%" y="510.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="36.2385%" y="516" width="3.2110%" height="15" fill="rgb(252,136,39)" fg:x="79" fg:w="7"/><text x="36.4885%" y="526.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="36.2385%" y="532" width="3.2110%" height="15" fill="rgb(223,213,32)" fg:x="79" fg:w="7"/><text x="36.4885%" y="542.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="36.2385%" y="548" width="3.2110%" height="15" fill="rgb(233,115,5)" fg:x="79" fg:w="7"/><text x="36.4885%" y="558.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="36.2385%" y="564" width="3.2110%" height="15" fill="rgb(207,226,44)" fg:x="79" fg:w="7"/><text x="36.4885%" y="574.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="36.2385%" y="580" width="3.2110%" height="15" fill="rgb(208,126,0)" fg:x="79" fg:w="7"/><text x="36.4885%" y="590.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="36.2385%" y="596" width="3.2110%" height="15" fill="rgb(244,66,21)" fg:x="79" fg:w="7"/><text x="36.4885%" y="606.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="36.2385%" y="612" width="3.2110%" height="15" fill="rgb(222,97,12)" fg:x="79" fg:w="7"/><text x="36.4885%" y="622.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="36.2385%" y="628" width="3.2110%" height="15" fill="rgb(219,213,19)" fg:x="79" fg:w="7"/><text x="36.4885%" y="638.50">_ca..</text></g><g><title><module> (numpy/core/__init__.py:1) (7 samples, 3.21%)</title><rect x="36.2385%" y="644" width="3.2110%" height="15" fill="rgb(252,169,30)" fg:x="79" fg:w="7"/><text x="36.4885%" y="654.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 3.21%)</title><rect x="36.2385%" y="660" width="3.2110%" height="15" fill="rgb(206,32,51)" fg:x="79" fg:w="7"/><text x="36.4885%" y="670.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="36.2385%" y="676" width="3.2110%" height="15" fill="rgb(250,172,42)" fg:x="79" fg:w="7"/><text x="36.4885%" y="686.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="36.2385%" y="692" width="3.2110%" height="15" fill="rgb(209,34,43)" fg:x="79" fg:w="7"/><text x="36.4885%" y="702.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="36.2385%" y="708" width="3.2110%" height="15" fill="rgb(223,11,35)" fg:x="79" fg:w="7"/><text x="36.4885%" y="718.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="36.6972%" y="724" width="2.7523%" height="15" fill="rgb(251,219,26)" fg:x="80" fg:w="6"/><text x="36.9472%" y="734.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="36.6972%" y="740" width="2.7523%" height="15" fill="rgb(231,119,3)" fg:x="80" fg:w="6"/><text x="36.9472%" y="750.50">ex..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="38.9908%" y="756" width="0.4587%" height="15" fill="rgb(216,97,11)" fg:x="85" fg:w="1"/><text x="39.2408%" y="766.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="38.9908%" y="772" width="0.4587%" height="15" fill="rgb(223,59,9)" fg:x="85" fg:w="1"/><text x="39.2408%" y="782.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="660" width="0.4587%" height="15" fill="rgb(233,93,31)" fg:x="86" fg:w="1"/><text x="39.6995%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="676" width="0.4587%" height="15" fill="rgb(239,81,33)" fg:x="86" fg:w="1"/><text x="39.6995%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="692" width="0.4587%" height="15" fill="rgb(213,120,34)" fg:x="86" fg:w="1"/><text x="39.6995%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="39.4495%" y="708" width="0.4587%" height="15" fill="rgb(243,49,53)" fg:x="86" fg:w="1"/><text x="39.6995%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="39.4495%" y="724" width="0.4587%" height="15" fill="rgb(247,216,33)" fg:x="86" fg:w="1"/><text x="39.6995%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="740" width="0.4587%" height="15" fill="rgb(226,26,14)" fg:x="86" fg:w="1"/><text x="39.6995%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="756" width="0.4587%" height="15" fill="rgb(215,49,53)" fg:x="86" fg:w="1"/><text x="39.6995%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="39.4495%" y="772" width="0.4587%" height="15" fill="rgb(245,162,40)" fg:x="86" fg:w="1"/><text x="39.6995%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="788" width="0.4587%" height="15" fill="rgb(229,68,17)" fg:x="86" fg:w="1"/><text x="39.6995%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="804" width="0.4587%" height="15" fill="rgb(213,182,10)" fg:x="86" fg:w="1"/><text x="39.6995%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="820" width="0.4587%" height="15" fill="rgb(245,125,30)" fg:x="86" fg:w="1"/><text x="39.6995%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="39.4495%" y="836" width="0.4587%" height="15" fill="rgb(232,202,2)" fg:x="86" fg:w="1"/><text x="39.6995%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="39.4495%" y="852" width="0.4587%" height="15" fill="rgb(237,140,51)" fg:x="86" fg:w="1"/><text x="39.6995%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="868" width="0.4587%" height="15" fill="rgb(236,157,25)" fg:x="86" fg:w="1"/><text x="39.6995%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="884" width="0.4587%" height="15" fill="rgb(219,209,0)" fg:x="86" fg:w="1"/><text x="39.6995%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="900" width="0.4587%" height="15" fill="rgb(240,116,54)" fg:x="86" fg:w="1"/><text x="39.6995%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="916" width="0.4587%" height="15" fill="rgb(216,10,36)" fg:x="86" fg:w="1"/><text x="39.6995%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="39.4495%" y="932" width="0.4587%" height="15" fill="rgb(222,72,44)" fg:x="86" fg:w="1"/><text x="39.6995%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="39.4495%" y="948" width="0.4587%" height="15" fill="rgb(232,159,9)" fg:x="86" fg:w="1"/><text x="39.6995%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="964" width="0.4587%" height="15" fill="rgb(210,39,32)" fg:x="86" fg:w="1"/><text x="39.6995%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="980" width="0.4587%" height="15" fill="rgb(216,194,45)" fg:x="86" fg:w="1"/><text x="39.6995%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="39.4495%" y="996" width="0.4587%" height="15" fill="rgb(218,18,35)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="1012" width="0.4587%" height="15" fill="rgb(207,83,51)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="1028" width="0.4587%" height="15" fill="rgb(225,63,43)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="1044" width="0.4587%" height="15" fill="rgb(207,57,36)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="39.4495%" y="1060" width="0.4587%" height="15" fill="rgb(216,99,33)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="39.4495%" y="1076" width="0.4587%" height="15" fill="rgb(225,42,16)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="1092" width="0.4587%" height="15" fill="rgb(220,201,45)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="1108" width="0.4587%" height="15" fill="rgb(225,33,4)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="1124" width="0.4587%" height="15" fill="rgb(224,33,50)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="1140" width="0.4587%" height="15" fill="rgb(246,198,51)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="39.4495%" y="1156" width="0.4587%" height="15" fill="rgb(205,22,4)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="39.4495%" y="1172" width="0.4587%" height="15" fill="rgb(206,3,8)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.4495%" y="1188" width="0.4587%" height="15" fill="rgb(251,23,15)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1198.50"></text></g><g><title><module> (numpy/_typing/__init__.py:1) (1 samples, 0.46%)</title><rect x="39.4495%" y="1204" width="0.4587%" height="15" fill="rgb(252,88,28)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.4495%" y="1220" width="0.4587%" height="15" fill="rgb(212,127,14)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="39.4495%" y="1236" width="0.4587%" height="15" fill="rgb(247,145,37)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1246.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="39.4495%" y="1252" width="0.4587%" height="15" fill="rgb(209,117,53)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1262.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="39.4495%" y="1268" width="0.4587%" height="15" fill="rgb(212,90,42)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1278.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="39.4495%" y="1284" width="0.4587%" height="15" fill="rgb(218,164,37)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1294.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="39.4495%" y="1300" width="0.4587%" height="15" fill="rgb(246,65,34)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1310.50"></text></g><g><title>_relax_case (<frozen importlib._bootstrap_external>:64) (1 samples, 0.46%)</title><rect x="39.4495%" y="1316" width="0.4587%" height="15" fill="rgb(231,100,33)" fg:x="86" fg:w="1"/><text x="39.6995%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="39.4495%" y="644" width="0.9174%" height="15" fill="rgb(228,126,14)" fg:x="86" fg:w="2"/><text x="39.6995%" y="654.50"></text></g><g><title><module> (numpy/lib/npyio.py:1) (1 samples, 0.46%)</title><rect x="39.9083%" y="660" width="0.4587%" height="15" fill="rgb(215,173,21)" fg:x="87" fg:w="1"/><text x="40.1583%" y="670.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="39.9083%" y="676" width="0.4587%" height="15" fill="rgb(210,6,40)" fg:x="87" fg:w="1"/><text x="40.1583%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="39.9083%" y="692" width="0.4587%" height="15" fill="rgb(212,48,18)" fg:x="87" fg:w="1"/><text x="40.1583%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="39.9083%" y="708" width="0.4587%" height="15" fill="rgb(230,214,11)" fg:x="87" fg:w="1"/><text x="40.1583%" y="718.50"></text></g><g><title>cb (<frozen importlib._bootstrap>:185) (1 samples, 0.46%)</title><rect x="39.9083%" y="724" width="0.4587%" height="15" fill="rgb(254,105,39)" fg:x="87" fg:w="1"/><text x="40.1583%" y="734.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (3 samples, 1.38%)</title><rect x="39.4495%" y="532" width="1.3761%" height="15" fill="rgb(245,158,5)" fg:x="86" fg:w="3"/><text x="39.6995%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="39.4495%" y="548" width="1.3761%" height="15" fill="rgb(249,208,11)" fg:x="86" fg:w="3"/><text x="39.6995%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="39.4495%" y="564" width="1.3761%" height="15" fill="rgb(210,39,28)" fg:x="86" fg:w="3"/><text x="39.6995%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="39.4495%" y="580" width="1.3761%" height="15" fill="rgb(211,56,53)" fg:x="86" fg:w="3"/><text x="39.6995%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="39.4495%" y="596" width="1.3761%" height="15" fill="rgb(226,201,30)" fg:x="86" fg:w="3"/><text x="39.6995%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="39.4495%" y="612" width="1.3761%" height="15" fill="rgb(239,101,34)" fg:x="86" fg:w="3"/><text x="39.6995%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="39.4495%" y="628" width="1.3761%" height="15" fill="rgb(226,209,5)" fg:x="86" fg:w="3"/><text x="39.6995%" y="638.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="40.3670%" y="644" width="0.4587%" height="15" fill="rgb(250,105,47)" fg:x="88" fg:w="1"/><text x="40.6170%" y="654.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="40.3670%" y="660" width="0.4587%" height="15" fill="rgb(230,72,3)" fg:x="88" fg:w="1"/><text x="40.6170%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="40.8257%" y="900" width="0.9174%" height="15" fill="rgb(232,218,39)" fg:x="89" fg:w="2"/><text x="41.0757%" y="910.50"></text></g><g><title><module> (secrets.py:1) (2 samples, 0.92%)</title><rect x="40.8257%" y="916" width="0.9174%" height="15" fill="rgb(248,166,6)" fg:x="89" fg:w="2"/><text x="41.0757%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="40.8257%" y="932" width="0.9174%" height="15" fill="rgb(247,89,20)" fg:x="89" fg:w="2"/><text x="41.0757%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="40.8257%" y="948" width="0.9174%" height="15" fill="rgb(248,130,54)" fg:x="89" fg:w="2"/><text x="41.0757%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="40.8257%" y="964" width="0.9174%" height="15" fill="rgb(234,196,4)" fg:x="89" fg:w="2"/><text x="41.0757%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="40.8257%" y="980" width="0.9174%" height="15" fill="rgb(250,143,31)" fg:x="89" fg:w="2"/><text x="41.0757%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="40.8257%" y="996" width="0.9174%" height="15" fill="rgb(211,110,34)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1006.50"></text></g><g><title><module> (random.py:1) (2 samples, 0.92%)</title><rect x="40.8257%" y="1012" width="0.9174%" height="15" fill="rgb(215,124,48)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="40.8257%" y="1028" width="0.9174%" height="15" fill="rgb(216,46,13)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="40.8257%" y="1044" width="0.9174%" height="15" fill="rgb(205,184,25)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="40.8257%" y="1060" width="0.9174%" height="15" fill="rgb(228,1,10)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="40.8257%" y="1076" width="0.9174%" height="15" fill="rgb(213,116,27)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="40.8257%" y="1092" width="0.9174%" height="15" fill="rgb(241,95,50)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1102.50"></text></g><g><title><module> (bisect.py:1) (2 samples, 0.92%)</title><rect x="40.8257%" y="1108" width="0.9174%" height="15" fill="rgb(238,48,32)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="40.8257%" y="1124" width="0.9174%" height="15" fill="rgb(235,113,49)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="40.8257%" y="1140" width="0.9174%" height="15" fill="rgb(205,127,43)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="40.8257%" y="1156" width="0.9174%" height="15" fill="rgb(250,162,2)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1166.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="40.8257%" y="1172" width="0.9174%" height="15" fill="rgb(220,13,41)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1182.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="40.8257%" y="1188" width="0.9174%" height="15" fill="rgb(249,221,25)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="40.8257%" y="1204" width="0.9174%" height="15" fill="rgb(215,208,19)" fg:x="89" fg:w="2"/><text x="41.0757%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.38%)</title><rect x="40.8257%" y="724" width="1.3761%" height="15" fill="rgb(236,175,2)" fg:x="89" fg:w="3"/><text x="41.0757%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="40.8257%" y="740" width="1.3761%" height="15" fill="rgb(241,52,2)" fg:x="89" fg:w="3"/><text x="41.0757%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="40.8257%" y="756" width="1.3761%" height="15" fill="rgb(248,140,14)" fg:x="89" fg:w="3"/><text x="41.0757%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="40.8257%" y="772" width="1.3761%" height="15" fill="rgb(253,22,42)" fg:x="89" fg:w="3"/><text x="41.0757%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="40.8257%" y="788" width="1.3761%" height="15" fill="rgb(234,61,47)" fg:x="89" fg:w="3"/><text x="41.0757%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.38%)</title><rect x="40.8257%" y="804" width="1.3761%" height="15" fill="rgb(208,226,15)" fg:x="89" fg:w="3"/><text x="41.0757%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="40.8257%" y="820" width="1.3761%" height="15" fill="rgb(217,221,4)" fg:x="89" fg:w="3"/><text x="41.0757%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="40.8257%" y="836" width="1.3761%" height="15" fill="rgb(212,174,34)" fg:x="89" fg:w="3"/><text x="41.0757%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="40.8257%" y="852" width="1.3761%" height="15" fill="rgb(253,83,4)" fg:x="89" fg:w="3"/><text x="41.0757%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="40.8257%" y="868" width="1.3761%" height="15" fill="rgb(250,195,49)" fg:x="89" fg:w="3"/><text x="41.0757%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="40.8257%" y="884" width="1.3761%" height="15" fill="rgb(241,192,25)" fg:x="89" fg:w="3"/><text x="41.0757%" y="894.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="41.7431%" y="900" width="0.4587%" height="15" fill="rgb(208,124,10)" fg:x="91" fg:w="1"/><text x="41.9931%" y="910.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="41.7431%" y="916" width="0.4587%" height="15" fill="rgb(222,33,0)" fg:x="91" fg:w="1"/><text x="41.9931%" y="926.50"></text></g><g><title><module> (numpy/__init__.py:1) (14 samples, 6.42%)</title><rect x="36.2385%" y="404" width="6.4220%" height="15" fill="rgb(234,209,28)" fg:x="79" fg:w="14"/><text x="36.4885%" y="414.50"><module>..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 3.21%)</title><rect x="39.4495%" y="420" width="3.2110%" height="15" fill="rgb(224,11,23)" fg:x="86" fg:w="7"/><text x="39.6995%" y="430.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="39.4495%" y="436" width="3.2110%" height="15" fill="rgb(232,99,1)" fg:x="86" fg:w="7"/><text x="39.6995%" y="446.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="39.4495%" y="452" width="3.2110%" height="15" fill="rgb(237,95,45)" fg:x="86" fg:w="7"/><text x="39.6995%" y="462.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="39.4495%" y="468" width="3.2110%" height="15" fill="rgb(208,109,11)" fg:x="86" fg:w="7"/><text x="39.6995%" y="478.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="39.4495%" y="484" width="3.2110%" height="15" fill="rgb(216,190,48)" fg:x="86" fg:w="7"/><text x="39.6995%" y="494.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="39.4495%" y="500" width="3.2110%" height="15" fill="rgb(251,171,36)" fg:x="86" fg:w="7"/><text x="39.6995%" y="510.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="39.4495%" y="516" width="3.2110%" height="15" fill="rgb(230,62,22)" fg:x="86" fg:w="7"/><text x="39.6995%" y="526.50">_ca..</text></g><g><title><module> (numpy/random/__init__.py:1) (4 samples, 1.83%)</title><rect x="40.8257%" y="532" width="1.8349%" height="15" fill="rgb(225,114,35)" fg:x="89" fg:w="4"/><text x="41.0757%" y="542.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.83%)</title><rect x="40.8257%" y="548" width="1.8349%" height="15" fill="rgb(215,118,42)" fg:x="89" fg:w="4"/><text x="41.0757%" y="558.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="40.8257%" y="564" width="1.8349%" height="15" fill="rgb(243,119,21)" fg:x="89" fg:w="4"/><text x="41.0757%" y="574.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="40.8257%" y="580" width="1.8349%" height="15" fill="rgb(252,177,53)" fg:x="89" fg:w="4"/><text x="41.0757%" y="590.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="40.8257%" y="596" width="1.8349%" height="15" fill="rgb(237,209,29)" fg:x="89" fg:w="4"/><text x="41.0757%" y="606.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="40.8257%" y="612" width="1.8349%" height="15" fill="rgb(212,65,23)" fg:x="89" fg:w="4"/><text x="41.0757%" y="622.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="40.8257%" y="628" width="1.8349%" height="15" fill="rgb(230,222,46)" fg:x="89" fg:w="4"/><text x="41.0757%" y="638.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="40.8257%" y="644" width="1.8349%" height="15" fill="rgb(215,135,32)" fg:x="89" fg:w="4"/><text x="41.0757%" y="654.50">_..</text></g><g><title><module> (numpy/random/_pickle.py:1) (4 samples, 1.83%)</title><rect x="40.8257%" y="660" width="1.8349%" height="15" fill="rgb(246,101,22)" fg:x="89" fg:w="4"/><text x="41.0757%" y="670.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="40.8257%" y="676" width="1.8349%" height="15" fill="rgb(206,107,13)" fg:x="89" fg:w="4"/><text x="41.0757%" y="686.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="40.8257%" y="692" width="1.8349%" height="15" fill="rgb(250,100,44)" fg:x="89" fg:w="4"/><text x="41.0757%" y="702.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="40.8257%" y="708" width="1.8349%" height="15" fill="rgb(231,147,38)" fg:x="89" fg:w="4"/><text x="41.0757%" y="718.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="42.2018%" y="724" width="0.4587%" height="15" fill="rgb(229,8,40)" fg:x="92" fg:w="1"/><text x="42.4518%" y="734.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="42.2018%" y="740" width="0.4587%" height="15" fill="rgb(221,135,30)" fg:x="92" fg:w="1"/><text x="42.4518%" y="750.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="42.2018%" y="756" width="0.4587%" height="15" fill="rgb(249,193,18)" fg:x="92" fg:w="1"/><text x="42.4518%" y="766.50"></text></g><g><title><module> (pandas/_config/__init__.py:1) (1 samples, 0.46%)</title><rect x="42.6606%" y="500" width="0.4587%" height="15" fill="rgb(209,133,39)" fg:x="93" fg:w="1"/><text x="42.9106%" y="510.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="42.6606%" y="516" width="0.4587%" height="15" fill="rgb(232,100,14)" fg:x="93" fg:w="1"/><text x="42.9106%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="42.6606%" y="532" width="0.4587%" height="15" fill="rgb(224,185,1)" fg:x="93" fg:w="1"/><text x="42.9106%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="42.6606%" y="548" width="0.4587%" height="15" fill="rgb(223,139,8)" fg:x="93" fg:w="1"/><text x="42.9106%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="42.6606%" y="564" width="0.4587%" height="15" fill="rgb(232,213,38)" fg:x="93" fg:w="1"/><text x="42.9106%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="42.6606%" y="580" width="0.4587%" height="15" fill="rgb(207,94,22)" fg:x="93" fg:w="1"/><text x="42.9106%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="42.6606%" y="596" width="0.4587%" height="15" fill="rgb(219,183,54)" fg:x="93" fg:w="1"/><text x="42.9106%" y="606.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="42.6606%" y="612" width="0.4587%" height="15" fill="rgb(216,185,54)" fg:x="93" fg:w="1"/><text x="42.9106%" y="622.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="42.6606%" y="628" width="0.4587%" height="15" fill="rgb(254,217,39)" fg:x="93" fg:w="1"/><text x="42.9106%" y="638.50"></text></g><g><title><module> (pandas/compat/numpy/__init__.py:1) (1 samples, 0.46%)</title><rect x="43.1193%" y="596" width="0.4587%" height="15" fill="rgb(240,178,23)" fg:x="94" fg:w="1"/><text x="43.3693%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="43.1193%" y="612" width="0.4587%" height="15" fill="rgb(218,11,47)" fg:x="94" fg:w="1"/><text x="43.3693%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="43.1193%" y="628" width="0.4587%" height="15" fill="rgb(218,51,51)" fg:x="94" fg:w="1"/><text x="43.3693%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="43.1193%" y="644" width="0.4587%" height="15" fill="rgb(238,126,27)" fg:x="94" fg:w="1"/><text x="43.3693%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="43.1193%" y="660" width="0.4587%" height="15" fill="rgb(249,202,22)" fg:x="94" fg:w="1"/><text x="43.3693%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="43.1193%" y="676" width="0.4587%" height="15" fill="rgb(254,195,49)" fg:x="94" fg:w="1"/><text x="43.3693%" y="686.50"></text></g><g><title><module> (pandas/util/version/__init__.py:9) (1 samples, 0.46%)</title><rect x="43.1193%" y="692" width="0.4587%" height="15" fill="rgb(208,123,14)" fg:x="94" fg:w="1"/><text x="43.3693%" y="702.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (1 samples, 0.46%)</title><rect x="43.1193%" y="708" width="0.4587%" height="15" fill="rgb(224,200,8)" fg:x="94" fg:w="1"/><text x="43.3693%" y="718.50"></text></g><g><title><module> (cloudpickle/__init__.py:1) (1 samples, 0.46%)</title><rect x="44.0367%" y="868" width="0.4587%" height="15" fill="rgb(217,61,36)" fg:x="96" fg:w="1"/><text x="44.2867%" y="878.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="44.0367%" y="884" width="0.4587%" height="15" fill="rgb(206,35,45)" fg:x="96" fg:w="1"/><text x="44.2867%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="44.0367%" y="900" width="0.4587%" height="15" fill="rgb(217,65,33)" fg:x="96" fg:w="1"/><text x="44.2867%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="44.0367%" y="916" width="0.4587%" height="15" fill="rgb(222,158,48)" fg:x="96" fg:w="1"/><text x="44.2867%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="44.0367%" y="932" width="0.4587%" height="15" fill="rgb(254,2,54)" fg:x="96" fg:w="1"/><text x="44.2867%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="44.0367%" y="948" width="0.4587%" height="15" fill="rgb(250,143,38)" fg:x="96" fg:w="1"/><text x="44.2867%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="44.0367%" y="964" width="0.4587%" height="15" fill="rgb(248,25,0)" fg:x="96" fg:w="1"/><text x="44.2867%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="44.0367%" y="980" width="0.4587%" height="15" fill="rgb(206,152,27)" fg:x="96" fg:w="1"/><text x="44.2867%" y="990.50"></text></g><g><title><module> (cloudpickle/cloudpickle.py:1) (1 samples, 0.46%)</title><rect x="44.0367%" y="996" width="0.4587%" height="15" fill="rgb(240,77,30)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="44.0367%" y="1012" width="0.4587%" height="15" fill="rgb(231,5,3)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="44.0367%" y="1028" width="0.4587%" height="15" fill="rgb(207,226,32)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="44.0367%" y="1044" width="0.4587%" height="15" fill="rgb(222,207,47)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="44.0367%" y="1060" width="0.4587%" height="15" fill="rgb(229,115,45)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1070.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="44.0367%" y="1076" width="0.4587%" height="15" fill="rgb(224,191,6)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1086.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="44.0367%" y="1092" width="0.4587%" height="15" fill="rgb(230,227,24)" fg:x="96" fg:w="1"/><text x="44.2867%" y="1102.50"></text></g><g><title><module> (decimal.py:2) (2 samples, 0.92%)</title><rect x="44.4954%" y="868" width="0.9174%" height="15" fill="rgb(228,80,19)" fg:x="97" fg:w="2"/><text x="44.7454%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="44.4954%" y="884" width="0.9174%" height="15" fill="rgb(247,229,0)" fg:x="97" fg:w="2"/><text x="44.7454%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="44.4954%" y="900" width="0.9174%" height="15" fill="rgb(237,194,15)" fg:x="97" fg:w="2"/><text x="44.7454%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="44.4954%" y="916" width="0.9174%" height="15" fill="rgb(219,203,20)" fg:x="97" fg:w="2"/><text x="44.7454%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="44.4954%" y="932" width="0.9174%" height="15" fill="rgb(234,128,8)" fg:x="97" fg:w="2"/><text x="44.7454%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="44.4954%" y="948" width="0.9174%" height="15" fill="rgb(248,202,8)" fg:x="97" fg:w="2"/><text x="44.7454%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="44.4954%" y="964" width="0.9174%" height="15" fill="rgb(206,104,37)" fg:x="97" fg:w="2"/><text x="44.7454%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (6 samples, 2.75%)</title><rect x="43.5780%" y="756" width="2.7523%" height="15" fill="rgb(223,8,27)" fg:x="95" fg:w="6"/><text x="43.8280%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="43.5780%" y="772" width="2.7523%" height="15" fill="rgb(216,217,28)" fg:x="95" fg:w="6"/><text x="43.8280%" y="782.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="44.0367%" y="788" width="2.2936%" height="15" fill="rgb(249,199,1)" fg:x="96" fg:w="5"/><text x="44.2867%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="44.0367%" y="804" width="2.2936%" height="15" fill="rgb(240,85,17)" fg:x="96" fg:w="5"/><text x="44.2867%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="44.0367%" y="820" width="2.2936%" height="15" fill="rgb(206,108,45)" fg:x="96" fg:w="5"/><text x="44.2867%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.29%)</title><rect x="44.0367%" y="836" width="2.2936%" height="15" fill="rgb(245,210,41)" fg:x="96" fg:w="5"/><text x="44.2867%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="44.0367%" y="852" width="2.2936%" height="15" fill="rgb(206,13,37)" fg:x="96" fg:w="5"/><text x="44.2867%" y="862.50">_..</text></g><g><title><module> (pyarrow/util.py:20) (2 samples, 0.92%)</title><rect x="45.4128%" y="868" width="0.9174%" height="15" fill="rgb(250,61,18)" fg:x="99" fg:w="2"/><text x="45.6628%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="45.4128%" y="884" width="0.9174%" height="15" fill="rgb(235,172,48)" fg:x="99" fg:w="2"/><text x="45.6628%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="45.4128%" y="900" width="0.9174%" height="15" fill="rgb(249,201,17)" fg:x="99" fg:w="2"/><text x="45.6628%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="45.4128%" y="916" width="0.9174%" height="15" fill="rgb(219,208,6)" fg:x="99" fg:w="2"/><text x="45.6628%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="45.4128%" y="932" width="0.9174%" height="15" fill="rgb(248,31,23)" fg:x="99" fg:w="2"/><text x="45.6628%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="45.4128%" y="948" width="0.9174%" height="15" fill="rgb(245,15,42)" fg:x="99" fg:w="2"/><text x="45.6628%" y="958.50"></text></g><g><title><module> (socket.py:4) (2 samples, 0.92%)</title><rect x="45.4128%" y="964" width="0.9174%" height="15" fill="rgb(222,217,39)" fg:x="99" fg:w="2"/><text x="45.6628%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="45.4128%" y="980" width="0.9174%" height="15" fill="rgb(210,219,27)" fg:x="99" fg:w="2"/><text x="45.6628%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="45.4128%" y="996" width="0.9174%" height="15" fill="rgb(252,166,36)" fg:x="99" fg:w="2"/><text x="45.6628%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="45.4128%" y="1012" width="0.9174%" height="15" fill="rgb(245,132,34)" fg:x="99" fg:w="2"/><text x="45.6628%" y="1022.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="45.4128%" y="1028" width="0.9174%" height="15" fill="rgb(236,54,3)" fg:x="99" fg:w="2"/><text x="45.6628%" y="1038.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="45.4128%" y="1044" width="0.9174%" height="15" fill="rgb(241,173,43)" fg:x="99" fg:w="2"/><text x="45.6628%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="45.4128%" y="1060" width="0.9174%" height="15" fill="rgb(215,190,9)" fg:x="99" fg:w="2"/><text x="45.6628%" y="1070.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (16 samples, 7.34%)</title><rect x="43.1193%" y="500" width="7.3394%" height="15" fill="rgb(242,101,16)" fg:x="94" fg:w="16"/><text x="43.3693%" y="510.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (16 samples, 7.34%)</title><rect x="43.1193%" y="516" width="7.3394%" height="15" fill="rgb(223,190,21)" fg:x="94" fg:w="16"/><text x="43.3693%" y="526.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (16 samples, 7.34%)</title><rect x="43.1193%" y="532" width="7.3394%" height="15" fill="rgb(215,228,25)" fg:x="94" fg:w="16"/><text x="43.3693%" y="542.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (16 samples, 7.34%)</title><rect x="43.1193%" y="548" width="7.3394%" height="15" fill="rgb(225,36,22)" fg:x="94" fg:w="16"/><text x="43.3693%" y="558.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (16 samples, 7.34%)</title><rect x="43.1193%" y="564" width="7.3394%" height="15" fill="rgb(251,106,46)" fg:x="94" fg:w="16"/><text x="43.3693%" y="574.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 7.34%)</title><rect x="43.1193%" y="580" width="7.3394%" height="15" fill="rgb(208,90,1)" fg:x="94" fg:w="16"/><text x="43.3693%" y="590.50">_call_with..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (15 samples, 6.88%)</title><rect x="43.5780%" y="596" width="6.8807%" height="15" fill="rgb(243,10,4)" fg:x="95" fg:w="15"/><text x="43.8280%" y="606.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 6.88%)</title><rect x="43.5780%" y="612" width="6.8807%" height="15" fill="rgb(212,137,27)" fg:x="95" fg:w="15"/><text x="43.8280%" y="622.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 6.88%)</title><rect x="43.5780%" y="628" width="6.8807%" height="15" fill="rgb(231,220,49)" fg:x="95" fg:w="15"/><text x="43.8280%" y="638.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 6.88%)</title><rect x="43.5780%" y="644" width="6.8807%" height="15" fill="rgb(237,96,20)" fg:x="95" fg:w="15"/><text x="43.8280%" y="654.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 6.88%)</title><rect x="43.5780%" y="660" width="6.8807%" height="15" fill="rgb(239,229,30)" fg:x="95" fg:w="15"/><text x="43.8280%" y="670.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 6.88%)</title><rect x="43.5780%" y="676" width="6.8807%" height="15" fill="rgb(219,65,33)" fg:x="95" fg:w="15"/><text x="43.8280%" y="686.50">_call_wit..</text></g><g><title><module> (pyarrow/__init__.py:20) (15 samples, 6.88%)</title><rect x="43.5780%" y="692" width="6.8807%" height="15" fill="rgb(243,134,7)" fg:x="95" fg:w="15"/><text x="43.8280%" y="702.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 6.88%)</title><rect x="43.5780%" y="708" width="6.8807%" height="15" fill="rgb(216,177,54)" fg:x="95" fg:w="15"/><text x="43.8280%" y="718.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 6.88%)</title><rect x="43.5780%" y="724" width="6.8807%" height="15" fill="rgb(211,160,20)" fg:x="95" fg:w="15"/><text x="43.8280%" y="734.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 6.88%)</title><rect x="43.5780%" y="740" width="6.8807%" height="15" fill="rgb(239,85,39)" fg:x="95" fg:w="15"/><text x="43.8280%" y="750.50">_load_unl..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (9 samples, 4.13%)</title><rect x="46.3303%" y="756" width="4.1284%" height="15" fill="rgb(232,125,22)" fg:x="101" fg:w="9"/><text x="46.5803%" y="766.50">modu..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (9 samples, 4.13%)</title><rect x="46.3303%" y="772" width="4.1284%" height="15" fill="rgb(244,57,34)" fg:x="101" fg:w="9"/><text x="46.5803%" y="782.50">crea..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 4.13%)</title><rect x="46.3303%" y="788" width="4.1284%" height="15" fill="rgb(214,203,32)" fg:x="101" fg:w="9"/><text x="46.5803%" y="798.50">_cal..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (6 samples, 2.75%)</title><rect x="50.9174%" y="1284" width="2.7523%" height="15" fill="rgb(207,58,43)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1294.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="50.9174%" y="1300" width="2.7523%" height="15" fill="rgb(215,193,15)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1310.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="50.9174%" y="1316" width="2.7523%" height="15" fill="rgb(232,15,44)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1326.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="50.9174%" y="1332" width="2.7523%" height="15" fill="rgb(212,3,48)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1342.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="50.9174%" y="1348" width="2.7523%" height="15" fill="rgb(218,128,7)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1358.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (6 samples, 2.75%)</title><rect x="50.9174%" y="1364" width="2.7523%" height="15" fill="rgb(226,216,39)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1374.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="50.9174%" y="1380" width="2.7523%" height="15" fill="rgb(243,47,51)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1390.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="50.9174%" y="1396" width="2.7523%" height="15" fill="rgb(241,183,40)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1406.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="50.9174%" y="1412" width="2.7523%" height="15" fill="rgb(231,217,32)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1422.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="50.9174%" y="1428" width="2.7523%" height="15" fill="rgb(229,61,38)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1438.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="50.9174%" y="1444" width="2.7523%" height="15" fill="rgb(225,210,5)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1454.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="50.9174%" y="1460" width="2.7523%" height="15" fill="rgb(231,79,45)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1470.50">_c..</text></g><g><title><module> (zoneinfo/__init__.py:1) (6 samples, 2.75%)</title><rect x="50.9174%" y="1476" width="2.7523%" height="15" fill="rgb(224,100,7)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1486.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="50.9174%" y="1492" width="2.7523%" height="15" fill="rgb(241,198,18)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1502.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="50.9174%" y="1508" width="2.7523%" height="15" fill="rgb(252,97,53)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1518.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="50.9174%" y="1524" width="2.7523%" height="15" fill="rgb(220,88,7)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1534.50">_l..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (6 samples, 2.75%)</title><rect x="50.9174%" y="1540" width="2.7523%" height="15" fill="rgb(213,176,14)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1550.50">mo..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (6 samples, 2.75%)</title><rect x="50.9174%" y="1556" width="2.7523%" height="15" fill="rgb(246,73,7)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1566.50">cr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="50.9174%" y="1572" width="2.7523%" height="15" fill="rgb(245,64,36)" fg:x="111" fg:w="6"/><text x="51.1674%" y="1582.50">_c..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 3.67%)</title><rect x="50.4587%" y="660" width="3.6697%" height="15" fill="rgb(245,80,10)" fg:x="110" fg:w="8"/><text x="50.7087%" y="670.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="676" width="3.6697%" height="15" fill="rgb(232,107,50)" fg:x="110" fg:w="8"/><text x="50.7087%" y="686.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="692" width="3.6697%" height="15" fill="rgb(253,3,0)" fg:x="110" fg:w="8"/><text x="50.7087%" y="702.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="708" width="3.6697%" height="15" fill="rgb(212,99,53)" fg:x="110" fg:w="8"/><text x="50.7087%" y="718.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="50.4587%" y="724" width="3.6697%" height="15" fill="rgb(249,111,54)" fg:x="110" fg:w="8"/><text x="50.7087%" y="734.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 3.67%)</title><rect x="50.4587%" y="740" width="3.6697%" height="15" fill="rgb(249,55,30)" fg:x="110" fg:w="8"/><text x="50.7087%" y="750.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="756" width="3.6697%" height="15" fill="rgb(237,47,42)" fg:x="110" fg:w="8"/><text x="50.7087%" y="766.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="772" width="3.6697%" height="15" fill="rgb(211,20,18)" fg:x="110" fg:w="8"/><text x="50.7087%" y="782.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="788" width="3.6697%" height="15" fill="rgb(231,203,46)" fg:x="110" fg:w="8"/><text x="50.7087%" y="798.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="50.4587%" y="804" width="3.6697%" height="15" fill="rgb(237,142,3)" fg:x="110" fg:w="8"/><text x="50.7087%" y="814.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 3.67%)</title><rect x="50.4587%" y="820" width="3.6697%" height="15" fill="rgb(241,107,1)" fg:x="110" fg:w="8"/><text x="50.7087%" y="830.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="836" width="3.6697%" height="15" fill="rgb(229,83,13)" fg:x="110" fg:w="8"/><text x="50.7087%" y="846.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="852" width="3.6697%" height="15" fill="rgb(241,91,40)" fg:x="110" fg:w="8"/><text x="50.7087%" y="862.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="868" width="3.6697%" height="15" fill="rgb(225,3,45)" fg:x="110" fg:w="8"/><text x="50.7087%" y="878.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="884" width="3.6697%" height="15" fill="rgb(244,223,14)" fg:x="110" fg:w="8"/><text x="50.7087%" y="894.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="900" width="3.6697%" height="15" fill="rgb(224,124,37)" fg:x="110" fg:w="8"/><text x="50.7087%" y="910.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="916" width="3.6697%" height="15" fill="rgb(251,171,30)" fg:x="110" fg:w="8"/><text x="50.7087%" y="926.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="50.4587%" y="932" width="3.6697%" height="15" fill="rgb(236,46,54)" fg:x="110" fg:w="8"/><text x="50.7087%" y="942.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 3.67%)</title><rect x="50.4587%" y="948" width="3.6697%" height="15" fill="rgb(245,213,5)" fg:x="110" fg:w="8"/><text x="50.7087%" y="958.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="964" width="3.6697%" height="15" fill="rgb(230,144,27)" fg:x="110" fg:w="8"/><text x="50.7087%" y="974.50">_cal..</text></g><g><title><module> (pandas/_libs/tslibs/__init__.py:1) (8 samples, 3.67%)</title><rect x="50.4587%" y="980" width="3.6697%" height="15" fill="rgb(220,86,6)" fg:x="110" fg:w="8"/><text x="50.7087%" y="990.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="996" width="3.6697%" height="15" fill="rgb(240,20,13)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1006.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="1012" width="3.6697%" height="15" fill="rgb(217,89,34)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1022.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="50.4587%" y="1028" width="3.6697%" height="15" fill="rgb(229,13,5)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1038.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 3.67%)</title><rect x="50.4587%" y="1044" width="3.6697%" height="15" fill="rgb(244,67,35)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1054.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="1060" width="3.6697%" height="15" fill="rgb(221,40,2)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1070.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 3.67%)</title><rect x="50.4587%" y="1076" width="3.6697%" height="15" fill="rgb(237,157,21)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1086.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 3.67%)</title><rect x="50.4587%" y="1092" width="3.6697%" height="15" fill="rgb(222,94,11)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1102.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 3.67%)</title><rect x="50.4587%" y="1108" width="3.6697%" height="15" fill="rgb(249,113,6)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1118.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (8 samples, 3.67%)</title><rect x="50.4587%" y="1124" width="3.6697%" height="15" fill="rgb(238,137,36)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1134.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 3.67%)</title><rect x="50.4587%" y="1140" width="3.6697%" height="15" fill="rgb(210,102,26)" fg:x="110" fg:w="8"/><text x="50.7087%" y="1150.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="50.9174%" y="1156" width="3.2110%" height="15" fill="rgb(218,30,30)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1166.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="50.9174%" y="1172" width="3.2110%" height="15" fill="rgb(214,67,26)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1182.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="50.9174%" y="1188" width="3.2110%" height="15" fill="rgb(251,9,53)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1198.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (7 samples, 3.21%)</title><rect x="50.9174%" y="1204" width="3.2110%" height="15" fill="rgb(228,204,25)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1214.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="50.9174%" y="1220" width="3.2110%" height="15" fill="rgb(207,153,8)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1230.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="50.9174%" y="1236" width="3.2110%" height="15" fill="rgb(242,9,16)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1246.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="50.9174%" y="1252" width="3.2110%" height="15" fill="rgb(217,211,10)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1262.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="50.9174%" y="1268" width="3.2110%" height="15" fill="rgb(219,228,52)" fg:x="111" fg:w="7"/><text x="51.1674%" y="1278.50">_lo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="53.6697%" y="1284" width="0.4587%" height="15" fill="rgb(231,92,29)" fg:x="117" fg:w="1"/><text x="53.9197%" y="1294.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="53.6697%" y="1300" width="0.4587%" height="15" fill="rgb(232,8,23)" fg:x="117" fg:w="1"/><text x="53.9197%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="53.6697%" y="1316" width="0.4587%" height="15" fill="rgb(216,211,34)" fg:x="117" fg:w="1"/><text x="53.9197%" y="1326.50"></text></g><g><title><module> (pandas/_libs/__init__.py:1) (9 samples, 4.13%)</title><rect x="50.4587%" y="596" width="4.1284%" height="15" fill="rgb(236,151,0)" fg:x="110" fg:w="9"/><text x="50.7087%" y="606.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 4.13%)</title><rect x="50.4587%" y="612" width="4.1284%" height="15" fill="rgb(209,168,3)" fg:x="110" fg:w="9"/><text x="50.7087%" y="622.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 4.13%)</title><rect x="50.4587%" y="628" width="4.1284%" height="15" fill="rgb(208,129,28)" fg:x="110" fg:w="9"/><text x="50.7087%" y="638.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 4.13%)</title><rect x="50.4587%" y="644" width="4.1284%" height="15" fill="rgb(229,78,22)" fg:x="110" fg:w="9"/><text x="50.7087%" y="654.50">_loa..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="54.1284%" y="660" width="0.4587%" height="15" fill="rgb(228,187,13)" fg:x="118" fg:w="1"/><text x="54.3784%" y="670.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="54.1284%" y="676" width="0.4587%" height="15" fill="rgb(240,119,24)" fg:x="118" fg:w="1"/><text x="54.3784%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="54.1284%" y="692" width="0.4587%" height="15" fill="rgb(209,194,42)" fg:x="118" fg:w="1"/><text x="54.3784%" y="702.50"></text></g><g><title><module> (pandas/core/algorithms.py:1) (1 samples, 0.46%)</title><rect x="54.5872%" y="596" width="0.4587%" height="15" fill="rgb(247,200,46)" fg:x="119" fg:w="1"/><text x="54.8372%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="54.5872%" y="612" width="0.4587%" height="15" fill="rgb(218,76,16)" fg:x="119" fg:w="1"/><text x="54.8372%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="54.5872%" y="628" width="0.4587%" height="15" fill="rgb(225,21,48)" fg:x="119" fg:w="1"/><text x="54.8372%" y="638.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="54.5872%" y="644" width="0.4587%" height="15" fill="rgb(239,223,50)" fg:x="119" fg:w="1"/><text x="54.8372%" y="654.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="54.5872%" y="660" width="0.4587%" height="15" fill="rgb(244,45,21)" fg:x="119" fg:w="1"/><text x="54.8372%" y="670.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="54.5872%" y="676" width="0.4587%" height="15" fill="rgb(232,33,43)" fg:x="119" fg:w="1"/><text x="54.8372%" y="686.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="54.5872%" y="692" width="0.4587%" height="15" fill="rgb(209,8,3)" fg:x="119" fg:w="1"/><text x="54.8372%" y="702.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.46%)</title><rect x="54.5872%" y="708" width="0.4587%" height="15" fill="rgb(214,25,53)" fg:x="119" fg:w="1"/><text x="54.8372%" y="718.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.46%)</title><rect x="55.0459%" y="804" width="0.4587%" height="15" fill="rgb(254,186,54)" fg:x="120" fg:w="1"/><text x="55.2959%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="55.5046%" y="996" width="1.3761%" height="15" fill="rgb(208,174,49)" fg:x="121" fg:w="3"/><text x="55.7546%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="55.5046%" y="1012" width="1.3761%" height="15" fill="rgb(233,191,51)" fg:x="121" fg:w="3"/><text x="55.7546%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="55.5046%" y="1028" width="1.3761%" height="15" fill="rgb(222,134,10)" fg:x="121" fg:w="3"/><text x="55.7546%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (3 samples, 1.38%)</title><rect x="55.5046%" y="1044" width="1.3761%" height="15" fill="rgb(230,226,20)" fg:x="121" fg:w="3"/><text x="55.7546%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="55.5046%" y="1060" width="1.3761%" height="15" fill="rgb(251,111,25)" fg:x="121" fg:w="3"/><text x="55.7546%" y="1070.50"></text></g><g><title>_parse (pyarrow/vendored/docscrape.py:384) (1 samples, 0.46%)</title><rect x="56.8807%" y="1076" width="0.4587%" height="15" fill="rgb(224,40,46)" fg:x="124" fg:w="1"/><text x="57.1307%" y="1086.50"></text></g><g><title>_parse_param_list (pyarrow/vendored/docscrape.py:228) (1 samples, 0.46%)</title><rect x="56.8807%" y="1092" width="0.4587%" height="15" fill="rgb(236,108,47)" fg:x="124" fg:w="1"/><text x="57.1307%" y="1102.50"></text></g><g><title>dedent_lines (pyarrow/vendored/docscrape.py:558) (1 samples, 0.46%)</title><rect x="56.8807%" y="1108" width="0.4587%" height="15" fill="rgb(234,93,0)" fg:x="124" fg:w="1"/><text x="57.1307%" y="1118.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.46%)</title><rect x="56.8807%" y="1124" width="0.4587%" height="15" fill="rgb(224,213,32)" fg:x="124" fg:w="1"/><text x="57.1307%" y="1134.50"></text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (6 samples, 2.75%)</title><rect x="55.0459%" y="692" width="2.7523%" height="15" fill="rgb(251,11,48)" fg:x="120" fg:w="6"/><text x="55.2959%" y="702.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="55.0459%" y="708" width="2.7523%" height="15" fill="rgb(236,173,5)" fg:x="120" fg:w="6"/><text x="55.2959%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="55.0459%" y="724" width="2.7523%" height="15" fill="rgb(230,95,12)" fg:x="120" fg:w="6"/><text x="55.2959%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="55.0459%" y="740" width="2.7523%" height="15" fill="rgb(232,209,1)" fg:x="120" fg:w="6"/><text x="55.2959%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="55.0459%" y="756" width="2.7523%" height="15" fill="rgb(232,6,1)" fg:x="120" fg:w="6"/><text x="55.2959%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="55.0459%" y="772" width="2.7523%" height="15" fill="rgb(210,224,50)" fg:x="120" fg:w="6"/><text x="55.2959%" y="782.50">_c..</text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (6 samples, 2.75%)</title><rect x="55.0459%" y="788" width="2.7523%" height="15" fill="rgb(228,127,35)" fg:x="120" fg:w="6"/><text x="55.2959%" y="798.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="55.5046%" y="804" width="2.2936%" height="15" fill="rgb(245,102,45)" fg:x="121" fg:w="5"/><text x="55.7546%" y="814.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="55.5046%" y="820" width="2.2936%" height="15" fill="rgb(214,1,49)" fg:x="121" fg:w="5"/><text x="55.7546%" y="830.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="55.5046%" y="836" width="2.2936%" height="15" fill="rgb(226,163,40)" fg:x="121" fg:w="5"/><text x="55.7546%" y="846.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.29%)</title><rect x="55.5046%" y="852" width="2.2936%" height="15" fill="rgb(239,212,28)" fg:x="121" fg:w="5"/><text x="55.7546%" y="862.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="55.5046%" y="868" width="2.2936%" height="15" fill="rgb(220,20,13)" fg:x="121" fg:w="5"/><text x="55.7546%" y="878.50">_..</text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (5 samples, 2.29%)</title><rect x="55.5046%" y="884" width="2.2936%" height="15" fill="rgb(210,164,35)" fg:x="121" fg:w="5"/><text x="55.7546%" y="894.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="55.5046%" y="900" width="2.2936%" height="15" fill="rgb(248,109,41)" fg:x="121" fg:w="5"/><text x="55.7546%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="55.5046%" y="916" width="2.2936%" height="15" fill="rgb(238,23,50)" fg:x="121" fg:w="5"/><text x="55.7546%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="55.5046%" y="932" width="2.2936%" height="15" fill="rgb(211,48,49)" fg:x="121" fg:w="5"/><text x="55.7546%" y="942.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.29%)</title><rect x="55.5046%" y="948" width="2.2936%" height="15" fill="rgb(223,36,21)" fg:x="121" fg:w="5"/><text x="55.7546%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.29%)</title><rect x="55.5046%" y="964" width="2.2936%" height="15" fill="rgb(207,123,46)" fg:x="121" fg:w="5"/><text x="55.7546%" y="974.50">_..</text></g><g><title><module> (pyarrow/compute.py:18) (5 samples, 2.29%)</title><rect x="55.5046%" y="980" width="2.2936%" height="15" fill="rgb(240,218,32)" fg:x="121" fg:w="5"/><text x="55.7546%" y="990.50"><..</text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (2 samples, 0.92%)</title><rect x="56.8807%" y="996" width="0.9174%" height="15" fill="rgb(252,5,43)" fg:x="124" fg:w="2"/><text x="57.1307%" y="1006.50"></text></g><g><title>_wrap_function (pyarrow/compute.py:290) (2 samples, 0.92%)</title><rect x="56.8807%" y="1012" width="0.9174%" height="15" fill="rgb(252,84,19)" fg:x="124" fg:w="2"/><text x="57.1307%" y="1022.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (2 samples, 0.92%)</title><rect x="56.8807%" y="1028" width="0.9174%" height="15" fill="rgb(243,152,39)" fg:x="124" fg:w="2"/><text x="57.1307%" y="1038.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (2 samples, 0.92%)</title><rect x="56.8807%" y="1044" width="0.9174%" height="15" fill="rgb(234,160,15)" fg:x="124" fg:w="2"/><text x="57.1307%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (2 samples, 0.92%)</title><rect x="56.8807%" y="1060" width="0.9174%" height="15" fill="rgb(237,34,20)" fg:x="124" fg:w="2"/><text x="57.1307%" y="1070.50"></text></g><g><title>deepcopy (copy.py:128) (1 samples, 0.46%)</title><rect x="57.3394%" y="1076" width="0.4587%" height="15" fill="rgb(229,97,13)" fg:x="125" fg:w="1"/><text x="57.5894%" y="1086.50"></text></g><g><title>_deepcopy_dict (copy.py:226) (1 samples, 0.46%)</title><rect x="57.3394%" y="1092" width="0.4587%" height="15" fill="rgb(234,71,50)" fg:x="125" fg:w="1"/><text x="57.5894%" y="1102.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (7 samples, 3.21%)</title><rect x="55.0459%" y="596" width="3.2110%" height="15" fill="rgb(253,155,4)" fg:x="120" fg:w="7"/><text x="55.2959%" y="606.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="55.0459%" y="612" width="3.2110%" height="15" fill="rgb(222,185,37)" fg:x="120" fg:w="7"/><text x="55.2959%" y="622.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="55.0459%" y="628" width="3.2110%" height="15" fill="rgb(251,177,13)" fg:x="120" fg:w="7"/><text x="55.2959%" y="638.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="55.0459%" y="644" width="3.2110%" height="15" fill="rgb(250,179,40)" fg:x="120" fg:w="7"/><text x="55.2959%" y="654.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="55.0459%" y="660" width="3.2110%" height="15" fill="rgb(242,44,2)" fg:x="120" fg:w="7"/><text x="55.2959%" y="670.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="55.0459%" y="676" width="3.2110%" height="15" fill="rgb(216,177,13)" fg:x="120" fg:w="7"/><text x="55.2959%" y="686.50">_ca..</text></g><g><title><module> (pandas/core/arrays/datetimes.py:1) (1 samples, 0.46%)</title><rect x="57.7982%" y="692" width="0.4587%" height="15" fill="rgb(216,106,43)" fg:x="126" fg:w="1"/><text x="58.0482%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="57.7982%" y="708" width="0.4587%" height="15" fill="rgb(216,183,2)" fg:x="126" fg:w="1"/><text x="58.0482%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="57.7982%" y="724" width="0.4587%" height="15" fill="rgb(249,75,3)" fg:x="126" fg:w="1"/><text x="58.0482%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="57.7982%" y="740" width="0.4587%" height="15" fill="rgb(219,67,39)" fg:x="126" fg:w="1"/><text x="58.0482%" y="750.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="57.7982%" y="756" width="0.4587%" height="15" fill="rgb(253,228,2)" fg:x="126" fg:w="1"/><text x="58.0482%" y="766.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.46%)</title><rect x="57.7982%" y="772" width="0.4587%" height="15" fill="rgb(235,138,27)" fg:x="126" fg:w="1"/><text x="58.0482%" y="782.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.46%)</title><rect x="57.7982%" y="788" width="0.4587%" height="15" fill="rgb(236,97,51)" fg:x="126" fg:w="1"/><text x="58.0482%" y="798.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.46%)</title><rect x="57.7982%" y="804" width="0.4587%" height="15" fill="rgb(240,80,30)" fg:x="126" fg:w="1"/><text x="58.0482%" y="814.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (1 samples, 0.46%)</title><rect x="58.2569%" y="804" width="0.4587%" height="15" fill="rgb(230,178,19)" fg:x="127" fg:w="1"/><text x="58.5069%" y="814.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.46%)</title><rect x="58.2569%" y="820" width="0.4587%" height="15" fill="rgb(210,190,27)" fg:x="127" fg:w="1"/><text x="58.5069%" y="830.50"></text></g><g><title>NDFrame (pandas/core/generic.py:238) (3 samples, 1.38%)</title><rect x="58.7156%" y="900" width="1.3761%" height="15" fill="rgb(222,107,31)" fg:x="128" fg:w="3"/><text x="58.9656%" y="910.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (3 samples, 1.38%)</title><rect x="58.7156%" y="916" width="1.3761%" height="15" fill="rgb(216,127,34)" fg:x="128" fg:w="3"/><text x="58.9656%" y="926.50"></text></g><g><title>dedent (textwrap.py:414) (3 samples, 1.38%)</title><rect x="58.7156%" y="932" width="1.3761%" height="15" fill="rgb(234,116,52)" fg:x="128" fg:w="3"/><text x="58.9656%" y="942.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.46%)</title><rect x="59.6330%" y="948" width="0.4587%" height="15" fill="rgb(222,124,15)" fg:x="130" fg:w="1"/><text x="59.8830%" y="958.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="59.6330%" y="964" width="0.4587%" height="15" fill="rgb(231,179,28)" fg:x="130" fg:w="1"/><text x="59.8830%" y="974.50"></text></g><g><title><module> (pandas/core/internals/__init__.py:1) (3 samples, 1.38%)</title><rect x="60.0917%" y="980" width="1.3761%" height="15" fill="rgb(226,93,45)" fg:x="131" fg:w="3"/><text x="60.3417%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="60.0917%" y="996" width="1.3761%" height="15" fill="rgb(215,8,51)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="60.0917%" y="1012" width="1.3761%" height="15" fill="rgb(223,106,5)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="60.0917%" y="1028" width="1.3761%" height="15" fill="rgb(250,191,5)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="60.0917%" y="1044" width="1.3761%" height="15" fill="rgb(242,132,44)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="60.0917%" y="1060" width="1.3761%" height="15" fill="rgb(251,152,29)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1070.50"></text></g><g><title><module> (pandas/core/internals/api.py:1) (3 samples, 1.38%)</title><rect x="60.0917%" y="1076" width="1.3761%" height="15" fill="rgb(218,179,5)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="60.0917%" y="1092" width="1.3761%" height="15" fill="rgb(227,67,19)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="60.0917%" y="1108" width="1.3761%" height="15" fill="rgb(233,119,31)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="60.0917%" y="1124" width="1.3761%" height="15" fill="rgb(241,120,22)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="60.0917%" y="1140" width="1.3761%" height="15" fill="rgb(224,102,30)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="60.0917%" y="1156" width="1.3761%" height="15" fill="rgb(210,164,37)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1166.50"></text></g><g><title><module> (pandas/core/internals/blocks.py:1) (3 samples, 1.38%)</title><rect x="60.0917%" y="1172" width="1.3761%" height="15" fill="rgb(226,191,16)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1182.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="60.0917%" y="1188" width="1.3761%" height="15" fill="rgb(214,40,45)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="60.0917%" y="1204" width="1.3761%" height="15" fill="rgb(244,29,26)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="60.0917%" y="1220" width="1.3761%" height="15" fill="rgb(216,16,5)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="60.0917%" y="1236" width="1.3761%" height="15" fill="rgb(249,76,35)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="60.0917%" y="1252" width="1.3761%" height="15" fill="rgb(207,11,44)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1262.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.38%)</title><rect x="60.0917%" y="1268" width="1.3761%" height="15" fill="rgb(228,190,49)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1278.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.38%)</title><rect x="60.0917%" y="1284" width="1.3761%" height="15" fill="rgb(214,173,12)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="60.0917%" y="1300" width="1.3761%" height="15" fill="rgb(218,26,35)" fg:x="131" fg:w="3"/><text x="60.3417%" y="1310.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="60.0917%" y="900" width="1.8349%" height="15" fill="rgb(220,200,19)" fg:x="131" fg:w="4"/><text x="60.3417%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="60.0917%" y="916" width="1.8349%" height="15" fill="rgb(239,95,49)" fg:x="131" fg:w="4"/><text x="60.3417%" y="926.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="60.0917%" y="932" width="1.8349%" height="15" fill="rgb(235,85,53)" fg:x="131" fg:w="4"/><text x="60.3417%" y="942.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="60.0917%" y="948" width="1.8349%" height="15" fill="rgb(233,133,31)" fg:x="131" fg:w="4"/><text x="60.3417%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="60.0917%" y="964" width="1.8349%" height="15" fill="rgb(218,25,20)" fg:x="131" fg:w="4"/><text x="60.3417%" y="974.50">_..</text></g><g><title><module> (pandas/core/methods/describe.py:1) (1 samples, 0.46%)</title><rect x="61.4679%" y="980" width="0.4587%" height="15" fill="rgb(252,210,38)" fg:x="134" fg:w="1"/><text x="61.7179%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="61.4679%" y="996" width="0.4587%" height="15" fill="rgb(242,134,21)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="61.4679%" y="1012" width="0.4587%" height="15" fill="rgb(213,28,48)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="61.4679%" y="1028" width="0.4587%" height="15" fill="rgb(250,196,2)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="61.4679%" y="1044" width="0.4587%" height="15" fill="rgb(227,5,17)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="61.4679%" y="1060" width="0.4587%" height="15" fill="rgb(221,226,24)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1070.50"></text></g><g><title><module> (pandas/io/formats/format.py:1) (1 samples, 0.46%)</title><rect x="61.4679%" y="1076" width="0.4587%" height="15" fill="rgb(211,5,48)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="61.4679%" y="1092" width="0.4587%" height="15" fill="rgb(219,150,6)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="61.4679%" y="1108" width="0.4587%" height="15" fill="rgb(251,46,16)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="61.4679%" y="1124" width="0.4587%" height="15" fill="rgb(220,204,40)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="61.4679%" y="1140" width="0.4587%" height="15" fill="rgb(211,85,2)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="61.4679%" y="1156" width="0.4587%" height="15" fill="rgb(229,17,7)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1166.50"></text></g><g><title><module> (pandas/io/common.py:1) (1 samples, 0.46%)</title><rect x="61.4679%" y="1172" width="0.4587%" height="15" fill="rgb(239,72,28)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="61.4679%" y="1188" width="0.4587%" height="15" fill="rgb(230,47,54)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="61.4679%" y="1204" width="0.4587%" height="15" fill="rgb(214,50,8)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="61.4679%" y="1220" width="0.4587%" height="15" fill="rgb(216,198,43)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1230.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="61.4679%" y="1236" width="0.4587%" height="15" fill="rgb(234,20,35)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1246.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="61.4679%" y="1252" width="0.4587%" height="15" fill="rgb(254,45,19)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="61.4679%" y="1268" width="0.4587%" height="15" fill="rgb(219,14,44)" fg:x="134" fg:w="1"/><text x="61.7179%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.46%)</title><rect x="61.9266%" y="1268" width="0.4587%" height="15" fill="rgb(217,220,26)" fg:x="135" fg:w="1"/><text x="62.1766%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="61.9266%" y="1284" width="0.4587%" height="15" fill="rgb(213,158,28)" fg:x="135" fg:w="1"/><text x="62.1766%" y="1294.50"></text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.46%)</title><rect x="61.9266%" y="1300" width="0.4587%" height="15" fill="rgb(252,51,52)" fg:x="135" fg:w="1"/><text x="62.1766%" y="1310.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.46%)</title><rect x="61.9266%" y="1316" width="0.4587%" height="15" fill="rgb(246,89,16)" fg:x="135" fg:w="1"/><text x="62.1766%" y="1326.50"></text></g><g><title><module> (pandas/core/generic.py:2) (9 samples, 4.13%)</title><rect x="58.7156%" y="884" width="4.1284%" height="15" fill="rgb(216,158,49)" fg:x="128" fg:w="9"/><text x="58.9656%" y="894.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="61.9266%" y="900" width="0.9174%" height="15" fill="rgb(236,107,19)" fg:x="135" fg:w="2"/><text x="62.1766%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="61.9266%" y="916" width="0.9174%" height="15" fill="rgb(228,185,30)" fg:x="135" fg:w="2"/><text x="62.1766%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="61.9266%" y="932" width="0.9174%" height="15" fill="rgb(246,134,8)" fg:x="135" fg:w="2"/><text x="62.1766%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="61.9266%" y="948" width="0.9174%" height="15" fill="rgb(214,143,50)" fg:x="135" fg:w="2"/><text x="62.1766%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="61.9266%" y="964" width="0.9174%" height="15" fill="rgb(228,75,8)" fg:x="135" fg:w="2"/><text x="62.1766%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="61.9266%" y="980" width="0.9174%" height="15" fill="rgb(207,175,4)" fg:x="135" fg:w="2"/><text x="62.1766%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="61.9266%" y="996" width="0.9174%" height="15" fill="rgb(205,108,24)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (2 samples, 0.92%)</title><rect x="61.9266%" y="1012" width="0.9174%" height="15" fill="rgb(244,120,49)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="61.9266%" y="1028" width="0.9174%" height="15" fill="rgb(223,47,38)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="61.9266%" y="1044" width="0.9174%" height="15" fill="rgb(229,179,11)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="61.9266%" y="1060" width="0.9174%" height="15" fill="rgb(231,122,1)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="61.9266%" y="1076" width="0.9174%" height="15" fill="rgb(245,119,9)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="61.9266%" y="1092" width="0.9174%" height="15" fill="rgb(241,163,25)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (2 samples, 0.92%)</title><rect x="61.9266%" y="1108" width="0.9174%" height="15" fill="rgb(217,214,3)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="61.9266%" y="1124" width="0.9174%" height="15" fill="rgb(240,86,28)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="61.9266%" y="1140" width="0.9174%" height="15" fill="rgb(215,47,9)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="61.9266%" y="1156" width="0.9174%" height="15" fill="rgb(252,25,45)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="61.9266%" y="1172" width="0.9174%" height="15" fill="rgb(251,164,9)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="61.9266%" y="1188" width="0.9174%" height="15" fill="rgb(233,194,0)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/base.py:1) (2 samples, 0.92%)</title><rect x="61.9266%" y="1204" width="0.9174%" height="15" fill="rgb(249,111,24)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="61.9266%" y="1220" width="0.9174%" height="15" fill="rgb(250,223,3)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="61.9266%" y="1236" width="0.9174%" height="15" fill="rgb(236,178,37)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="61.9266%" y="1252" width="0.9174%" height="15" fill="rgb(241,158,50)" fg:x="135" fg:w="2"/><text x="62.1766%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="62.3853%" y="1268" width="0.4587%" height="15" fill="rgb(213,121,41)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="62.3853%" y="1284" width="0.4587%" height="15" fill="rgb(240,92,3)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1294.50"></text></g><g><title><module> (pandas/core/strings/accessor.py:1) (1 samples, 0.46%)</title><rect x="62.3853%" y="1300" width="0.4587%" height="15" fill="rgb(205,123,3)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1310.50"></text></g><g><title>StringMethods (pandas/core/strings/accessor.py:156) (1 samples, 0.46%)</title><rect x="62.3853%" y="1316" width="0.4587%" height="15" fill="rgb(205,97,47)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1326.50"></text></g><g><title>__call__ (pandas/util/_decorators.py:484) (1 samples, 0.46%)</title><rect x="62.3853%" y="1332" width="0.4587%" height="15" fill="rgb(247,152,14)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1342.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.46%)</title><rect x="62.3853%" y="1348" width="0.4587%" height="15" fill="rgb(248,195,53)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1358.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.46%)</title><rect x="62.3853%" y="1364" width="0.4587%" height="15" fill="rgb(226,201,16)" fg:x="136" fg:w="1"/><text x="62.6353%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 5.05%)</title><rect x="58.2569%" y="708" width="5.0459%" height="15" fill="rgb(205,98,0)" fg:x="127" fg:w="11"/><text x="58.5069%" y="718.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 5.05%)</title><rect x="58.2569%" y="724" width="5.0459%" height="15" fill="rgb(214,191,48)" fg:x="127" fg:w="11"/><text x="58.5069%" y="734.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 5.05%)</title><rect x="58.2569%" y="740" width="5.0459%" height="15" fill="rgb(237,112,39)" fg:x="127" fg:w="11"/><text x="58.5069%" y="750.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 5.05%)</title><rect x="58.2569%" y="756" width="5.0459%" height="15" fill="rgb(247,203,27)" fg:x="127" fg:w="11"/><text x="58.5069%" y="766.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="58.2569%" y="772" width="5.0459%" height="15" fill="rgb(235,124,28)" fg:x="127" fg:w="11"/><text x="58.5069%" y="782.50">_call_..</text></g><g><title><module> (pandas/core/frame.py:1) (11 samples, 5.05%)</title><rect x="58.2569%" y="788" width="5.0459%" height="15" fill="rgb(208,207,46)" fg:x="127" fg:w="11"/><text x="58.5069%" y="798.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 4.59%)</title><rect x="58.7156%" y="804" width="4.5872%" height="15" fill="rgb(234,176,4)" fg:x="128" fg:w="10"/><text x="58.9656%" y="814.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 4.59%)</title><rect x="58.7156%" y="820" width="4.5872%" height="15" fill="rgb(230,133,28)" fg:x="128" fg:w="10"/><text x="58.9656%" y="830.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 4.59%)</title><rect x="58.7156%" y="836" width="4.5872%" height="15" fill="rgb(211,137,40)" fg:x="128" fg:w="10"/><text x="58.9656%" y="846.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 4.59%)</title><rect x="58.7156%" y="852" width="4.5872%" height="15" fill="rgb(254,35,13)" fg:x="128" fg:w="10"/><text x="58.9656%" y="862.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 4.59%)</title><rect x="58.7156%" y="868" width="4.5872%" height="15" fill="rgb(225,49,51)" fg:x="128" fg:w="10"/><text x="58.9656%" y="878.50">_call..</text></g><g><title><module> (pandas/core/series.py:1) (1 samples, 0.46%)</title><rect x="62.8440%" y="884" width="0.4587%" height="15" fill="rgb(251,10,15)" fg:x="137" fg:w="1"/><text x="63.0940%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="62.8440%" y="900" width="0.4587%" height="15" fill="rgb(228,207,15)" fg:x="137" fg:w="1"/><text x="63.0940%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="62.8440%" y="916" width="0.4587%" height="15" fill="rgb(241,99,19)" fg:x="137" fg:w="1"/><text x="63.0940%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="62.8440%" y="932" width="0.4587%" height="15" fill="rgb(207,104,49)" fg:x="137" fg:w="1"/><text x="63.0940%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="62.8440%" y="948" width="0.4587%" height="15" fill="rgb(234,99,18)" fg:x="137" fg:w="1"/><text x="63.0940%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="62.8440%" y="964" width="0.4587%" height="15" fill="rgb(213,191,49)" fg:x="137" fg:w="1"/><text x="63.0940%" y="974.50"></text></g><g><title><module> (pandas/io/formats/info.py:1) (1 samples, 0.46%)</title><rect x="62.8440%" y="980" width="0.4587%" height="15" fill="rgb(210,226,19)" fg:x="137" fg:w="1"/><text x="63.0940%" y="990.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.46%)</title><rect x="62.8440%" y="996" width="0.4587%" height="15" fill="rgb(229,97,18)" fg:x="137" fg:w="1"/><text x="63.0940%" y="1006.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (2 samples, 0.92%)</title><rect x="63.3028%" y="900" width="0.9174%" height="15" fill="rgb(211,167,15)" fg:x="138" fg:w="2"/><text x="63.5528%" y="910.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.46%)</title><rect x="63.7615%" y="916" width="0.4587%" height="15" fill="rgb(210,169,34)" fg:x="139" fg:w="1"/><text x="64.0115%" y="926.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.46%)</title><rect x="63.7615%" y="932" width="0.4587%" height="15" fill="rgb(241,121,31)" fg:x="139" fg:w="1"/><text x="64.0115%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="63.3028%" y="836" width="1.3761%" height="15" fill="rgb(232,40,11)" fg:x="138" fg:w="3"/><text x="63.5528%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="63.3028%" y="852" width="1.3761%" height="15" fill="rgb(205,86,26)" fg:x="138" fg:w="3"/><text x="63.5528%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="63.3028%" y="868" width="1.3761%" height="15" fill="rgb(231,126,28)" fg:x="138" fg:w="3"/><text x="63.5528%" y="878.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.38%)</title><rect x="63.3028%" y="884" width="1.3761%" height="15" fill="rgb(219,221,18)" fg:x="138" fg:w="3"/><text x="63.5528%" y="894.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="64.2202%" y="900" width="0.4587%" height="15" fill="rgb(211,40,0)" fg:x="140" fg:w="1"/><text x="64.4702%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="64.2202%" y="916" width="0.4587%" height="15" fill="rgb(239,85,43)" fg:x="140" fg:w="1"/><text x="64.4702%" y="926.50"></text></g><g><title><module> (pandas/core/api.py:1) (32 samples, 14.68%)</title><rect x="50.4587%" y="500" width="14.6789%" height="15" fill="rgb(231,55,21)" fg:x="110" fg:w="32"/><text x="50.7087%" y="510.50"><module> (pandas/core/..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (32 samples, 14.68%)</title><rect x="50.4587%" y="516" width="14.6789%" height="15" fill="rgb(225,184,43)" fg:x="110" fg:w="32"/><text x="50.7087%" y="526.50">_find_and_load (<froze..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (32 samples, 14.68%)</title><rect x="50.4587%" y="532" width="14.6789%" height="15" fill="rgb(251,158,41)" fg:x="110" fg:w="32"/><text x="50.7087%" y="542.50">_find_and_load_unlocke..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (32 samples, 14.68%)</title><rect x="50.4587%" y="548" width="14.6789%" height="15" fill="rgb(234,159,37)" fg:x="110" fg:w="32"/><text x="50.7087%" y="558.50">_load_unlocked (<froze..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (32 samples, 14.68%)</title><rect x="50.4587%" y="564" width="14.6789%" height="15" fill="rgb(216,204,22)" fg:x="110" fg:w="32"/><text x="50.7087%" y="574.50">exec_module (<frozen i..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (32 samples, 14.68%)</title><rect x="50.4587%" y="580" width="14.6789%" height="15" fill="rgb(214,17,3)" fg:x="110" fg:w="32"/><text x="50.7087%" y="590.50">_call_with_frames_remo..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (15 samples, 6.88%)</title><rect x="58.2569%" y="596" width="6.8807%" height="15" fill="rgb(212,111,17)" fg:x="127" fg:w="15"/><text x="58.5069%" y="606.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 6.88%)</title><rect x="58.2569%" y="612" width="6.8807%" height="15" fill="rgb(221,157,24)" fg:x="127" fg:w="15"/><text x="58.5069%" y="622.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 6.88%)</title><rect x="58.2569%" y="628" width="6.8807%" height="15" fill="rgb(252,16,13)" fg:x="127" fg:w="15"/><text x="58.5069%" y="638.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 6.88%)</title><rect x="58.2569%" y="644" width="6.8807%" height="15" fill="rgb(221,62,2)" fg:x="127" fg:w="15"/><text x="58.5069%" y="654.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 6.88%)</title><rect x="58.2569%" y="660" width="6.8807%" height="15" fill="rgb(247,87,22)" fg:x="127" fg:w="15"/><text x="58.5069%" y="670.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 6.88%)</title><rect x="58.2569%" y="676" width="6.8807%" height="15" fill="rgb(215,73,9)" fg:x="127" fg:w="15"/><text x="58.5069%" y="686.50">_call_wit..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (15 samples, 6.88%)</title><rect x="58.2569%" y="692" width="6.8807%" height="15" fill="rgb(207,175,33)" fg:x="127" fg:w="15"/><text x="58.5069%" y="702.50"><module> ..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 1.83%)</title><rect x="63.3028%" y="708" width="1.8349%" height="15" fill="rgb(243,129,54)" fg:x="138" fg:w="4"/><text x="63.5528%" y="718.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="63.3028%" y="724" width="1.8349%" height="15" fill="rgb(227,119,45)" fg:x="138" fg:w="4"/><text x="63.5528%" y="734.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="63.3028%" y="740" width="1.8349%" height="15" fill="rgb(205,109,36)" fg:x="138" fg:w="4"/><text x="63.5528%" y="750.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="63.3028%" y="756" width="1.8349%" height="15" fill="rgb(205,6,39)" fg:x="138" fg:w="4"/><text x="63.5528%" y="766.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="63.3028%" y="772" width="1.8349%" height="15" fill="rgb(221,32,16)" fg:x="138" fg:w="4"/><text x="63.5528%" y="782.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="63.3028%" y="788" width="1.8349%" height="15" fill="rgb(228,144,50)" fg:x="138" fg:w="4"/><text x="63.5528%" y="798.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="63.3028%" y="804" width="1.8349%" height="15" fill="rgb(229,201,53)" fg:x="138" fg:w="4"/><text x="63.5528%" y="814.50">_..</text></g><g><title><module> (pandas/core/groupby/ops.py:1) (4 samples, 1.83%)</title><rect x="63.3028%" y="820" width="1.8349%" height="15" fill="rgb(249,153,27)" fg:x="138" fg:w="4"/><text x="63.5528%" y="830.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="64.6789%" y="836" width="0.4587%" height="15" fill="rgb(227,106,25)" fg:x="141" fg:w="1"/><text x="64.9289%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="64.6789%" y="852" width="0.4587%" height="15" fill="rgb(230,65,29)" fg:x="141" fg:w="1"/><text x="64.9289%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="64.6789%" y="868" width="0.4587%" height="15" fill="rgb(221,57,46)" fg:x="141" fg:w="1"/><text x="64.9289%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="64.6789%" y="884" width="0.4587%" height="15" fill="rgb(229,161,17)" fg:x="141" fg:w="1"/><text x="64.9289%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="64.6789%" y="900" width="0.4587%" height="15" fill="rgb(222,213,11)" fg:x="141" fg:w="1"/><text x="64.9289%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="64.6789%" y="916" width="0.4587%" height="15" fill="rgb(235,35,13)" fg:x="141" fg:w="1"/><text x="64.9289%" y="926.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="64.6789%" y="932" width="0.4587%" height="15" fill="rgb(233,158,34)" fg:x="141" fg:w="1"/><text x="64.9289%" y="942.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="64.6789%" y="948" width="0.4587%" height="15" fill="rgb(215,151,48)" fg:x="141" fg:w="1"/><text x="64.9289%" y="958.50"></text></g><g><title><module> (pandas/core/computation/api.py:1) (1 samples, 0.46%)</title><rect x="65.1376%" y="500" width="0.4587%" height="15" fill="rgb(229,84,14)" fg:x="142" fg:w="1"/><text x="65.3876%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="65.1376%" y="516" width="0.4587%" height="15" fill="rgb(229,68,14)" fg:x="142" fg:w="1"/><text x="65.3876%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="65.1376%" y="532" width="0.4587%" height="15" fill="rgb(243,106,26)" fg:x="142" fg:w="1"/><text x="65.3876%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="65.1376%" y="548" width="0.4587%" height="15" fill="rgb(206,45,38)" fg:x="142" fg:w="1"/><text x="65.3876%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="65.1376%" y="564" width="0.4587%" height="15" fill="rgb(226,6,15)" fg:x="142" fg:w="1"/><text x="65.3876%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="65.1376%" y="580" width="0.4587%" height="15" fill="rgb(232,22,54)" fg:x="142" fg:w="1"/><text x="65.3876%" y="590.50"></text></g><g><title><module> (pandas/core/computation/eval.py:1) (1 samples, 0.46%)</title><rect x="65.1376%" y="596" width="0.4587%" height="15" fill="rgb(229,222,32)" fg:x="142" fg:w="1"/><text x="65.3876%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="65.1376%" y="612" width="0.4587%" height="15" fill="rgb(228,62,29)" fg:x="142" fg:w="1"/><text x="65.3876%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="65.1376%" y="628" width="0.4587%" height="15" fill="rgb(251,103,34)" fg:x="142" fg:w="1"/><text x="65.3876%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="65.1376%" y="644" width="0.4587%" height="15" fill="rgb(233,12,30)" fg:x="142" fg:w="1"/><text x="65.3876%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="65.1376%" y="660" width="0.4587%" height="15" fill="rgb(238,52,0)" fg:x="142" fg:w="1"/><text x="65.3876%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="65.1376%" y="676" width="0.4587%" height="15" fill="rgb(223,98,5)" fg:x="142" fg:w="1"/><text x="65.3876%" y="686.50"></text></g><g><title><module> (pandas/core/computation/engines.py:1) (1 samples, 0.46%)</title><rect x="65.1376%" y="692" width="0.4587%" height="15" fill="rgb(228,75,37)" fg:x="142" fg:w="1"/><text x="65.3876%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="65.1376%" y="708" width="0.4587%" height="15" fill="rgb(205,115,49)" fg:x="142" fg:w="1"/><text x="65.3876%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="65.1376%" y="724" width="0.4587%" height="15" fill="rgb(250,154,43)" fg:x="142" fg:w="1"/><text x="65.3876%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="65.1376%" y="740" width="0.4587%" height="15" fill="rgb(226,43,29)" fg:x="142" fg:w="1"/><text x="65.3876%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="65.1376%" y="756" width="0.4587%" height="15" fill="rgb(249,228,39)" fg:x="142" fg:w="1"/><text x="65.3876%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="65.1376%" y="772" width="0.4587%" height="15" fill="rgb(216,79,43)" fg:x="142" fg:w="1"/><text x="65.3876%" y="782.50"></text></g><g><title><module> (pandas/core/computation/ops.py:1) (1 samples, 0.46%)</title><rect x="65.1376%" y="788" width="0.4587%" height="15" fill="rgb(228,95,12)" fg:x="142" fg:w="1"/><text x="65.3876%" y="798.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="65.5963%" y="548" width="0.4587%" height="15" fill="rgb(249,221,15)" fg:x="143" fg:w="1"/><text x="65.8463%" y="558.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="65.5963%" y="564" width="0.4587%" height="15" fill="rgb(233,34,13)" fg:x="143" fg:w="1"/><text x="65.8463%" y="574.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="65.5963%" y="580" width="0.4587%" height="15" fill="rgb(214,103,39)" fg:x="143" fg:w="1"/><text x="65.8463%" y="590.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="65.5963%" y="596" width="0.4587%" height="15" fill="rgb(251,126,39)" fg:x="143" fg:w="1"/><text x="65.8463%" y="606.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.46%)</title><rect x="65.5963%" y="612" width="0.4587%" height="15" fill="rgb(214,216,36)" fg:x="143" fg:w="1"/><text x="65.8463%" y="622.50"></text></g><g><title><module> (pandas/io/api.py:1) (2 samples, 0.92%)</title><rect x="65.5963%" y="500" width="0.9174%" height="15" fill="rgb(220,221,8)" fg:x="143" fg:w="2"/><text x="65.8463%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="65.5963%" y="516" width="0.9174%" height="15" fill="rgb(240,216,3)" fg:x="143" fg:w="2"/><text x="65.8463%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="65.5963%" y="532" width="0.9174%" height="15" fill="rgb(232,218,17)" fg:x="143" fg:w="2"/><text x="65.8463%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="66.0550%" y="548" width="0.4587%" height="15" fill="rgb(229,163,45)" fg:x="144" fg:w="1"/><text x="66.3050%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="66.0550%" y="564" width="0.4587%" height="15" fill="rgb(231,110,42)" fg:x="144" fg:w="1"/><text x="66.3050%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="66.0550%" y="580" width="0.4587%" height="15" fill="rgb(208,170,48)" fg:x="144" fg:w="1"/><text x="66.3050%" y="590.50"></text></g><g><title><module> (pandas/io/pytables.py:1) (1 samples, 0.46%)</title><rect x="66.0550%" y="596" width="0.4587%" height="15" fill="rgb(239,116,25)" fg:x="144" fg:w="1"/><text x="66.3050%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="66.0550%" y="612" width="0.4587%" height="15" fill="rgb(219,200,50)" fg:x="144" fg:w="1"/><text x="66.3050%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="66.0550%" y="628" width="0.4587%" height="15" fill="rgb(245,200,0)" fg:x="144" fg:w="1"/><text x="66.3050%" y="638.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="66.0550%" y="644" width="0.4587%" height="15" fill="rgb(245,119,33)" fg:x="144" fg:w="1"/><text x="66.3050%" y="654.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="66.0550%" y="660" width="0.4587%" height="15" fill="rgb(231,125,12)" fg:x="144" fg:w="1"/><text x="66.3050%" y="670.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="66.0550%" y="676" width="0.4587%" height="15" fill="rgb(216,96,41)" fg:x="144" fg:w="1"/><text x="66.3050%" y="686.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="66.0550%" y="692" width="0.4587%" height="15" fill="rgb(248,43,45)" fg:x="144" fg:w="1"/><text x="66.3050%" y="702.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.46%)</title><rect x="66.0550%" y="708" width="0.4587%" height="15" fill="rgb(217,222,7)" fg:x="144" fg:w="1"/><text x="66.3050%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (53 samples, 24.31%)</title><rect x="42.6606%" y="420" width="24.3119%" height="15" fill="rgb(233,28,6)" fg:x="93" fg:w="53"/><text x="42.9106%" y="430.50">_find_and_load (<frozen importlib._boot..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (53 samples, 24.31%)</title><rect x="42.6606%" y="436" width="24.3119%" height="15" fill="rgb(231,218,15)" fg:x="93" fg:w="53"/><text x="42.9106%" y="446.50">_find_and_load_unlocked (<frozen import..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (53 samples, 24.31%)</title><rect x="42.6606%" y="452" width="24.3119%" height="15" fill="rgb(226,171,48)" fg:x="93" fg:w="53"/><text x="42.9106%" y="462.50">_load_unlocked (<frozen importlib._boot..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (53 samples, 24.31%)</title><rect x="42.6606%" y="468" width="24.3119%" height="15" fill="rgb(235,201,9)" fg:x="93" fg:w="53"/><text x="42.9106%" y="478.50">exec_module (<frozen importlib._bootstr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (53 samples, 24.31%)</title><rect x="42.6606%" y="484" width="24.3119%" height="15" fill="rgb(217,80,15)" fg:x="93" fg:w="53"/><text x="42.9106%" y="494.50">_call_with_frames_removed (<frozen impo..</text></g><g><title><module> (pytz/__init__.py:1) (1 samples, 0.46%)</title><rect x="66.5138%" y="500" width="0.4587%" height="15" fill="rgb(219,152,8)" fg:x="145" fg:w="1"/><text x="66.7638%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="66.5138%" y="516" width="0.4587%" height="15" fill="rgb(243,107,38)" fg:x="145" fg:w="1"/><text x="66.7638%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="66.5138%" y="532" width="0.4587%" height="15" fill="rgb(231,17,5)" fg:x="145" fg:w="1"/><text x="66.7638%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="66.5138%" y="548" width="0.4587%" height="15" fill="rgb(209,25,54)" fg:x="145" fg:w="1"/><text x="66.7638%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="66.5138%" y="564" width="0.4587%" height="15" fill="rgb(219,0,2)" fg:x="145" fg:w="1"/><text x="66.7638%" y="574.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="66.5138%" y="580" width="0.4587%" height="15" fill="rgb(246,9,5)" fg:x="145" fg:w="1"/><text x="66.7638%" y="590.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="66.5138%" y="596" width="0.4587%" height="15" fill="rgb(226,159,4)" fg:x="145" fg:w="1"/><text x="66.7638%" y="606.50"></text></g><g><title><module> (pandas/__init__.py:1) (54 samples, 24.77%)</title><rect x="42.6606%" y="404" width="24.7706%" height="15" fill="rgb(219,175,34)" fg:x="93" fg:w="54"/><text x="42.9106%" y="414.50"><module> (pandas/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="66.9725%" y="420" width="0.4587%" height="15" fill="rgb(236,10,46)" fg:x="146" fg:w="1"/><text x="67.2225%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="66.9725%" y="436" width="0.4587%" height="15" fill="rgb(240,211,16)" fg:x="146" fg:w="1"/><text x="67.2225%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="66.9725%" y="452" width="0.4587%" height="15" fill="rgb(205,3,43)" fg:x="146" fg:w="1"/><text x="67.2225%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="66.9725%" y="468" width="0.4587%" height="15" fill="rgb(245,7,22)" fg:x="146" fg:w="1"/><text x="67.2225%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="66.9725%" y="484" width="0.4587%" height="15" fill="rgb(239,132,32)" fg:x="146" fg:w="1"/><text x="67.2225%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="66.9725%" y="500" width="0.4587%" height="15" fill="rgb(228,202,34)" fg:x="146" fg:w="1"/><text x="67.2225%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="66.9725%" y="516" width="0.4587%" height="15" fill="rgb(254,200,22)" fg:x="146" fg:w="1"/><text x="67.2225%" y="526.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (1 samples, 0.46%)</title><rect x="66.9725%" y="532" width="0.4587%" height="15" fill="rgb(219,10,39)" fg:x="146" fg:w="1"/><text x="67.2225%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="66.9725%" y="548" width="0.4587%" height="15" fill="rgb(226,210,39)" fg:x="146" fg:w="1"/><text x="67.2225%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="66.9725%" y="564" width="0.4587%" height="15" fill="rgb(208,219,16)" fg:x="146" fg:w="1"/><text x="67.2225%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="66.9725%" y="580" width="0.4587%" height="15" fill="rgb(216,158,51)" fg:x="146" fg:w="1"/><text x="67.2225%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="66.9725%" y="596" width="0.4587%" height="15" fill="rgb(233,14,44)" fg:x="146" fg:w="1"/><text x="67.2225%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="66.9725%" y="612" width="0.4587%" height="15" fill="rgb(237,97,39)" fg:x="146" fg:w="1"/><text x="67.2225%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="66.9725%" y="628" width="0.4587%" height="15" fill="rgb(218,198,43)" fg:x="146" fg:w="1"/><text x="67.2225%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="66.9725%" y="644" width="0.4587%" height="15" fill="rgb(231,104,20)" fg:x="146" fg:w="1"/><text x="67.2225%" y="654.50"></text></g><g><title><module> (pandas/api/interchange/__init__.py:1) (1 samples, 0.46%)</title><rect x="66.9725%" y="660" width="0.4587%" height="15" fill="rgb(254,36,13)" fg:x="146" fg:w="1"/><text x="67.2225%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="66.9725%" y="676" width="0.4587%" height="15" fill="rgb(248,14,50)" fg:x="146" fg:w="1"/><text x="67.2225%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="66.9725%" y="692" width="0.4587%" height="15" fill="rgb(217,107,29)" fg:x="146" fg:w="1"/><text x="67.2225%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="66.9725%" y="708" width="0.4587%" height="15" fill="rgb(251,169,33)" fg:x="146" fg:w="1"/><text x="67.2225%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="66.9725%" y="724" width="0.4587%" height="15" fill="rgb(217,108,32)" fg:x="146" fg:w="1"/><text x="67.2225%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="66.9725%" y="740" width="0.4587%" height="15" fill="rgb(219,66,42)" fg:x="146" fg:w="1"/><text x="67.2225%" y="750.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="66.9725%" y="756" width="0.4587%" height="15" fill="rgb(206,180,7)" fg:x="146" fg:w="1"/><text x="67.2225%" y="766.50"></text></g><g><title><module> (xarray/core/alignment.py:1) (2 samples, 0.92%)</title><rect x="67.4312%" y="500" width="0.9174%" height="15" fill="rgb(208,226,31)" fg:x="147" fg:w="2"/><text x="67.6812%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="67.4312%" y="516" width="0.9174%" height="15" fill="rgb(218,26,49)" fg:x="147" fg:w="2"/><text x="67.6812%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="67.4312%" y="532" width="0.9174%" height="15" fill="rgb(233,197,48)" fg:x="147" fg:w="2"/><text x="67.6812%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="67.4312%" y="548" width="0.9174%" height="15" fill="rgb(252,181,51)" fg:x="147" fg:w="2"/><text x="67.6812%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="67.4312%" y="564" width="0.9174%" height="15" fill="rgb(253,90,19)" fg:x="147" fg:w="2"/><text x="67.6812%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="67.4312%" y="580" width="0.9174%" height="15" fill="rgb(215,171,30)" fg:x="147" fg:w="2"/><text x="67.6812%" y="590.50"></text></g><g><title><module> (xarray/core/variable.py:1) (2 samples, 0.92%)</title><rect x="67.4312%" y="596" width="0.9174%" height="15" fill="rgb(214,222,9)" fg:x="147" fg:w="2"/><text x="67.6812%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="67.4312%" y="612" width="0.9174%" height="15" fill="rgb(223,3,22)" fg:x="147" fg:w="2"/><text x="67.6812%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="67.4312%" y="628" width="0.9174%" height="15" fill="rgb(225,196,46)" fg:x="147" fg:w="2"/><text x="67.6812%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="67.4312%" y="644" width="0.9174%" height="15" fill="rgb(209,110,37)" fg:x="147" fg:w="2"/><text x="67.6812%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="67.4312%" y="660" width="0.9174%" height="15" fill="rgb(249,89,12)" fg:x="147" fg:w="2"/><text x="67.6812%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="67.4312%" y="676" width="0.9174%" height="15" fill="rgb(226,27,33)" fg:x="147" fg:w="2"/><text x="67.6812%" y="686.50"></text></g><g><title><module> (numpy/typing/__init__.py:1) (2 samples, 0.92%)</title><rect x="67.4312%" y="692" width="0.9174%" height="15" fill="rgb(213,82,22)" fg:x="147" fg:w="2"/><text x="67.6812%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="67.4312%" y="708" width="0.9174%" height="15" fill="rgb(248,140,0)" fg:x="147" fg:w="2"/><text x="67.6812%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="67.4312%" y="724" width="0.9174%" height="15" fill="rgb(228,106,3)" fg:x="147" fg:w="2"/><text x="67.6812%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="67.4312%" y="740" width="0.9174%" height="15" fill="rgb(209,23,37)" fg:x="147" fg:w="2"/><text x="67.6812%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="67.4312%" y="756" width="0.9174%" height="15" fill="rgb(241,93,50)" fg:x="147" fg:w="2"/><text x="67.6812%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="67.4312%" y="772" width="0.9174%" height="15" fill="rgb(253,46,43)" fg:x="147" fg:w="2"/><text x="67.6812%" y="782.50"></text></g><g><title><module> (numpy/_typing/_add_docstring.py:1) (2 samples, 0.92%)</title><rect x="67.4312%" y="788" width="0.9174%" height="15" fill="rgb(226,206,43)" fg:x="147" fg:w="2"/><text x="67.6812%" y="798.50"></text></g><g><title>_parse_docstrings (numpy/_typing/_add_docstring.py:27) (2 samples, 0.92%)</title><rect x="67.4312%" y="804" width="0.9174%" height="15" fill="rgb(217,54,7)" fg:x="147" fg:w="2"/><text x="67.6812%" y="814.50"></text></g><g><title>dedent (textwrap.py:414) (2 samples, 0.92%)</title><rect x="67.4312%" y="820" width="0.9174%" height="15" fill="rgb(223,5,52)" fg:x="147" fg:w="2"/><text x="67.6812%" y="830.50"></text></g><g><title>sub (re.py:203) (1 samples, 0.46%)</title><rect x="67.8899%" y="836" width="0.4587%" height="15" fill="rgb(206,52,46)" fg:x="148" fg:w="1"/><text x="68.1399%" y="846.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="67.8899%" y="852" width="0.4587%" height="15" fill="rgb(253,136,11)" fg:x="148" fg:w="1"/><text x="68.1399%" y="862.50"></text></g><g><title><module> (xarray/core/coordinates.py:1) (3 samples, 1.38%)</title><rect x="67.4312%" y="404" width="1.3761%" height="15" fill="rgb(208,106,33)" fg:x="147" fg:w="3"/><text x="67.6812%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="67.4312%" y="420" width="1.3761%" height="15" fill="rgb(206,54,4)" fg:x="147" fg:w="3"/><text x="67.6812%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="67.4312%" y="436" width="1.3761%" height="15" fill="rgb(213,3,15)" fg:x="147" fg:w="3"/><text x="67.6812%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="67.4312%" y="452" width="1.3761%" height="15" fill="rgb(252,211,39)" fg:x="147" fg:w="3"/><text x="67.6812%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="67.4312%" y="468" width="1.3761%" height="15" fill="rgb(223,6,36)" fg:x="147" fg:w="3"/><text x="67.6812%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="67.4312%" y="484" width="1.3761%" height="15" fill="rgb(252,169,45)" fg:x="147" fg:w="3"/><text x="67.6812%" y="494.50"></text></g><g><title><module> (xarray/core/merge.py:1) (1 samples, 0.46%)</title><rect x="68.3486%" y="500" width="0.4587%" height="15" fill="rgb(212,48,26)" fg:x="149" fg:w="1"/><text x="68.5986%" y="510.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.46%)</title><rect x="68.3486%" y="516" width="0.4587%" height="15" fill="rgb(251,102,48)" fg:x="149" fg:w="1"/><text x="68.5986%" y="526.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.46%)</title><rect x="68.3486%" y="532" width="0.4587%" height="15" fill="rgb(243,208,16)" fg:x="149" fg:w="1"/><text x="68.5986%" y="542.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.46%)</title><rect x="68.3486%" y="548" width="0.4587%" height="15" fill="rgb(219,96,24)" fg:x="149" fg:w="1"/><text x="68.5986%" y="558.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.46%)</title><rect x="68.3486%" y="564" width="0.4587%" height="15" fill="rgb(219,33,29)" fg:x="149" fg:w="1"/><text x="68.5986%" y="574.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.46%)</title><rect x="68.3486%" y="580" width="0.4587%" height="15" fill="rgb(223,176,5)" fg:x="149" fg:w="1"/><text x="68.5986%" y="590.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.46%)</title><rect x="68.3486%" y="596" width="0.4587%" height="15" fill="rgb(228,140,14)" fg:x="149" fg:w="1"/><text x="68.5986%" y="606.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.46%)</title><rect x="68.3486%" y="612" width="0.4587%" height="15" fill="rgb(217,179,31)" fg:x="149" fg:w="1"/><text x="68.5986%" y="622.50"></text></g><g><title>__init__ (typing.py:677) (1 samples, 0.46%)</title><rect x="68.3486%" y="628" width="0.4587%" height="15" fill="rgb(230,9,30)" fg:x="149" fg:w="1"/><text x="68.5986%" y="638.50"></text></g><g><title>__setattr__ (typing.py:713) (1 samples, 0.46%)</title><rect x="68.3486%" y="644" width="0.4587%" height="15" fill="rgb(230,136,20)" fg:x="149" fg:w="1"/><text x="68.5986%" y="654.50"></text></g><g><title>_is_dunder (typing.py:665) (1 samples, 0.46%)</title><rect x="68.3486%" y="660" width="0.4587%" height="15" fill="rgb(215,210,22)" fg:x="149" fg:w="1"/><text x="68.5986%" y="670.50"></text></g><g><title><module> (xarray/coding/calendar_ops.py:1) (1 samples, 0.46%)</title><rect x="68.8073%" y="500" width="0.4587%" height="15" fill="rgb(218,43,5)" fg:x="150" fg:w="1"/><text x="69.0573%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="68.8073%" y="516" width="0.4587%" height="15" fill="rgb(216,11,5)" fg:x="150" fg:w="1"/><text x="69.0573%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="68.8073%" y="532" width="0.4587%" height="15" fill="rgb(209,82,29)" fg:x="150" fg:w="1"/><text x="69.0573%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="68.8073%" y="548" width="0.4587%" height="15" fill="rgb(244,115,12)" fg:x="150" fg:w="1"/><text x="69.0573%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="68.8073%" y="564" width="0.4587%" height="15" fill="rgb(222,82,18)" fg:x="150" fg:w="1"/><text x="69.0573%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="68.8073%" y="580" width="0.4587%" height="15" fill="rgb(249,227,8)" fg:x="150" fg:w="1"/><text x="69.0573%" y="590.50"></text></g><g><title><module> (xarray/coding/cftime_offsets.py:1) (1 samples, 0.46%)</title><rect x="68.8073%" y="596" width="0.4587%" height="15" fill="rgb(253,141,45)" fg:x="150" fg:w="1"/><text x="69.0573%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (73 samples, 33.49%)</title><rect x="36.2385%" y="324" width="33.4862%" height="15" fill="rgb(234,184,4)" fg:x="79" fg:w="73"/><text x="36.4885%" y="334.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (73 samples, 33.49%)</title><rect x="36.2385%" y="340" width="33.4862%" height="15" fill="rgb(218,194,23)" fg:x="79" fg:w="73"/><text x="36.4885%" y="350.50">_find_and_load_unlocked (<frozen importlib._bootstrap>..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (73 samples, 33.49%)</title><rect x="36.2385%" y="356" width="33.4862%" height="15" fill="rgb(235,66,41)" fg:x="79" fg:w="73"/><text x="36.4885%" y="366.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (73 samples, 33.49%)</title><rect x="36.2385%" y="372" width="33.4862%" height="15" fill="rgb(245,217,1)" fg:x="79" fg:w="73"/><text x="36.4885%" y="382.50">exec_module (<frozen importlib._bootstrap_external>:84..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (73 samples, 33.49%)</title><rect x="36.2385%" y="388" width="33.4862%" height="15" fill="rgb(229,91,1)" fg:x="79" fg:w="73"/><text x="36.4885%" y="398.50">_call_with_frames_removed (<frozen importlib._bootstra..</text></g><g><title><module> (xarray/core/dataarray.py:1) (2 samples, 0.92%)</title><rect x="68.8073%" y="404" width="0.9174%" height="15" fill="rgb(207,101,30)" fg:x="150" fg:w="2"/><text x="69.0573%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="68.8073%" y="420" width="0.9174%" height="15" fill="rgb(223,82,49)" fg:x="150" fg:w="2"/><text x="69.0573%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="68.8073%" y="436" width="0.9174%" height="15" fill="rgb(218,167,17)" fg:x="150" fg:w="2"/><text x="69.0573%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="68.8073%" y="452" width="0.9174%" height="15" fill="rgb(208,103,14)" fg:x="150" fg:w="2"/><text x="69.0573%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="68.8073%" y="468" width="0.9174%" height="15" fill="rgb(238,20,8)" fg:x="150" fg:w="2"/><text x="69.0573%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="68.8073%" y="484" width="0.9174%" height="15" fill="rgb(218,80,54)" fg:x="150" fg:w="2"/><text x="69.0573%" y="494.50"></text></g><g><title><module> (xarray/core/_aggregations.py:1) (1 samples, 0.46%)</title><rect x="69.2661%" y="500" width="0.4587%" height="15" fill="rgb(240,144,17)" fg:x="151" fg:w="1"/><text x="69.5161%" y="510.50"></text></g><g><title>module_available (xarray/core/utils.py:1145) (1 samples, 0.46%)</title><rect x="69.2661%" y="516" width="0.4587%" height="15" fill="rgb(245,27,50)" fg:x="151" fg:w="1"/><text x="69.5161%" y="526.50"></text></g><g><title>find_spec (importlib/util.py:73) (1 samples, 0.46%)</title><rect x="69.2661%" y="532" width="0.4587%" height="15" fill="rgb(251,51,7)" fg:x="151" fg:w="1"/><text x="69.5161%" y="542.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="69.2661%" y="548" width="0.4587%" height="15" fill="rgb(245,217,29)" fg:x="151" fg:w="1"/><text x="69.5161%" y="558.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="69.2661%" y="564" width="0.4587%" height="15" fill="rgb(221,176,29)" fg:x="151" fg:w="1"/><text x="69.5161%" y="574.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="69.2661%" y="580" width="0.4587%" height="15" fill="rgb(212,180,24)" fg:x="151" fg:w="1"/><text x="69.5161%" y="590.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:351) (1 samples, 0.46%)</title><rect x="69.2661%" y="596" width="0.4587%" height="15" fill="rgb(254,24,2)" fg:x="151" fg:w="1"/><text x="69.5161%" y="606.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="69.7248%" y="388" width="0.4587%" height="15" fill="rgb(230,100,2)" fg:x="152" fg:w="1"/><text x="69.9748%" y="398.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="69.7248%" y="404" width="0.4587%" height="15" fill="rgb(219,142,25)" fg:x="152" fg:w="1"/><text x="69.9748%" y="414.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="69.7248%" y="420" width="0.4587%" height="15" fill="rgb(240,73,43)" fg:x="152" fg:w="1"/><text x="69.9748%" y="430.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="69.7248%" y="436" width="0.4587%" height="15" fill="rgb(214,114,15)" fg:x="152" fg:w="1"/><text x="69.9748%" y="446.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.46%)</title><rect x="69.7248%" y="452" width="0.4587%" height="15" fill="rgb(207,130,4)" fg:x="152" fg:w="1"/><text x="69.9748%" y="462.50"></text></g><g><title><module> (xarray/testing.py:1) (75 samples, 34.40%)</title><rect x="36.2385%" y="308" width="34.4037%" height="15" fill="rgb(221,25,40)" fg:x="79" fg:w="75"/><text x="36.4885%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="69.7248%" y="324" width="0.9174%" height="15" fill="rgb(241,184,7)" fg:x="152" fg:w="2"/><text x="69.9748%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="69.7248%" y="340" width="0.9174%" height="15" fill="rgb(235,159,4)" fg:x="152" fg:w="2"/><text x="69.9748%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="69.7248%" y="356" width="0.9174%" height="15" fill="rgb(214,87,48)" fg:x="152" fg:w="2"/><text x="69.9748%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="69.7248%" y="372" width="0.9174%" height="15" fill="rgb(246,198,24)" fg:x="152" fg:w="2"/><text x="69.9748%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="70.1835%" y="388" width="0.4587%" height="15" fill="rgb(209,66,40)" fg:x="153" fg:w="1"/><text x="70.4335%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="70.1835%" y="404" width="0.4587%" height="15" fill="rgb(233,147,39)" fg:x="153" fg:w="1"/><text x="70.4335%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="70.1835%" y="420" width="0.4587%" height="15" fill="rgb(231,145,52)" fg:x="153" fg:w="1"/><text x="70.4335%" y="430.50"></text></g><g><title><module> (xarray/core/formatting.py:1) (1 samples, 0.46%)</title><rect x="70.1835%" y="436" width="0.4587%" height="15" fill="rgb(206,20,26)" fg:x="153" fg:w="1"/><text x="70.4335%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="70.1835%" y="452" width="0.4587%" height="15" fill="rgb(238,220,4)" fg:x="153" fg:w="1"/><text x="70.4335%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="70.1835%" y="468" width="0.4587%" height="15" fill="rgb(252,195,42)" fg:x="153" fg:w="1"/><text x="70.4335%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="70.1835%" y="484" width="0.4587%" height="15" fill="rgb(209,10,6)" fg:x="153" fg:w="1"/><text x="70.4335%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="70.1835%" y="500" width="0.4587%" height="15" fill="rgb(229,3,52)" fg:x="153" fg:w="1"/><text x="70.4335%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="70.1835%" y="516" width="0.4587%" height="15" fill="rgb(253,49,37)" fg:x="153" fg:w="1"/><text x="70.4335%" y="526.50"></text></g><g><title><module> (xarray/core/indexing.py:1) (1 samples, 0.46%)</title><rect x="70.1835%" y="532" width="0.4587%" height="15" fill="rgb(240,103,49)" fg:x="153" fg:w="1"/><text x="70.4335%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="70.1835%" y="548" width="0.4587%" height="15" fill="rgb(250,182,30)" fg:x="153" fg:w="1"/><text x="70.4335%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="70.1835%" y="564" width="0.4587%" height="15" fill="rgb(248,8,30)" fg:x="153" fg:w="1"/><text x="70.4335%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="70.1835%" y="580" width="0.4587%" height="15" fill="rgb(237,120,30)" fg:x="153" fg:w="1"/><text x="70.4335%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="70.1835%" y="596" width="0.4587%" height="15" fill="rgb(221,146,34)" fg:x="153" fg:w="1"/><text x="70.4335%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="70.1835%" y="612" width="0.4587%" height="15" fill="rgb(242,55,13)" fg:x="153" fg:w="1"/><text x="70.4335%" y="622.50"></text></g><g><title><module> (xarray/core/types.py:1) (1 samples, 0.46%)</title><rect x="70.1835%" y="628" width="0.4587%" height="15" fill="rgb(242,112,31)" fg:x="153" fg:w="1"/><text x="70.4335%" y="638.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.46%)</title><rect x="70.1835%" y="644" width="0.4587%" height="15" fill="rgb(249,192,27)" fg:x="153" fg:w="1"/><text x="70.4335%" y="654.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.46%)</title><rect x="70.1835%" y="660" width="0.4587%" height="15" fill="rgb(208,204,44)" fg:x="153" fg:w="1"/><text x="70.4335%" y="670.50"></text></g><g><title>Union (typing.py:434) (1 samples, 0.46%)</title><rect x="70.1835%" y="676" width="0.4587%" height="15" fill="rgb(208,93,54)" fg:x="153" fg:w="1"/><text x="70.4335%" y="686.50"></text></g><g><title><genexpr> (typing.py:466) (1 samples, 0.46%)</title><rect x="70.1835%" y="692" width="0.4587%" height="15" fill="rgb(242,1,31)" fg:x="153" fg:w="1"/><text x="70.4335%" y="702.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.46%)</title><rect x="70.1835%" y="708" width="0.4587%" height="15" fill="rgb(241,83,25)" fg:x="153" fg:w="1"/><text x="70.4335%" y="718.50"></text></g><g><title>_type_convert (typing.py:128) (1 samples, 0.46%)</title><rect x="70.1835%" y="724" width="0.4587%" height="15" fill="rgb(205,169,50)" fg:x="153" fg:w="1"/><text x="70.4335%" y="734.50"></text></g><g><title>__init__ (typing.py:524) (1 samples, 0.46%)</title><rect x="70.1835%" y="740" width="0.4587%" height="15" fill="rgb(239,186,37)" fg:x="153" fg:w="1"/><text x="70.4335%" y="750.50"></text></g><g><title><module> (xarray/backends/common.py:1) (1 samples, 0.46%)</title><rect x="70.6422%" y="548" width="0.4587%" height="15" fill="rgb(205,221,10)" fg:x="154" fg:w="1"/><text x="70.8922%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="70.6422%" y="564" width="0.4587%" height="15" fill="rgb(218,196,15)" fg:x="154" fg:w="1"/><text x="70.8922%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="70.6422%" y="580" width="0.4587%" height="15" fill="rgb(218,196,35)" fg:x="154" fg:w="1"/><text x="70.8922%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="70.6422%" y="596" width="0.4587%" height="15" fill="rgb(233,63,24)" fg:x="154" fg:w="1"/><text x="70.8922%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="70.6422%" y="612" width="0.4587%" height="15" fill="rgb(225,8,4)" fg:x="154" fg:w="1"/><text x="70.8922%" y="622.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="70.6422%" y="628" width="0.4587%" height="15" fill="rgb(234,105,35)" fg:x="154" fg:w="1"/><text x="70.8922%" y="638.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="70.6422%" y="644" width="0.4587%" height="15" fill="rgb(236,21,32)" fg:x="154" fg:w="1"/><text x="70.8922%" y="654.50"></text></g><g><title><module> (dask/_compatibility.py:1) (1 samples, 0.46%)</title><rect x="71.1009%" y="980" width="0.4587%" height="15" fill="rgb(228,109,6)" fg:x="155" fg:w="1"/><text x="71.3509%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.1009%" y="996" width="0.4587%" height="15" fill="rgb(229,215,31)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.1009%" y="1012" width="0.4587%" height="15" fill="rgb(221,52,54)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.1009%" y="1028" width="0.4587%" height="15" fill="rgb(252,129,43)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.1009%" y="1044" width="0.4587%" height="15" fill="rgb(248,183,27)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1060" width="0.4587%" height="15" fill="rgb(250,0,22)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1070.50"></text></g><g><title><module> (importlib_metadata/__init__.py:1) (1 samples, 0.46%)</title><rect x="71.1009%" y="1076" width="0.4587%" height="15" fill="rgb(213,166,10)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="71.1009%" y="1092" width="0.4587%" height="15" fill="rgb(207,163,36)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1108" width="0.4587%" height="15" fill="rgb(208,122,22)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.1009%" y="1124" width="0.4587%" height="15" fill="rgb(207,104,49)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.1009%" y="1140" width="0.4587%" height="15" fill="rgb(248,211,50)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.1009%" y="1156" width="0.4587%" height="15" fill="rgb(217,13,45)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.1009%" y="1172" width="0.4587%" height="15" fill="rgb(211,216,49)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1188" width="0.4587%" height="15" fill="rgb(221,58,53)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1198.50"></text></g><g><title><module> (importlib_metadata/_adapters.py:1) (1 samples, 0.46%)</title><rect x="71.1009%" y="1204" width="0.4587%" height="15" fill="rgb(220,112,41)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.1009%" y="1220" width="0.4587%" height="15" fill="rgb(236,38,28)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.1009%" y="1236" width="0.4587%" height="15" fill="rgb(227,195,22)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.1009%" y="1252" width="0.4587%" height="15" fill="rgb(214,55,33)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.1009%" y="1268" width="0.4587%" height="15" fill="rgb(248,80,13)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1284" width="0.4587%" height="15" fill="rgb(238,52,6)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1294.50"></text></g><g><title><module> (email/message.py:5) (1 samples, 0.46%)</title><rect x="71.1009%" y="1300" width="0.4587%" height="15" fill="rgb(224,198,47)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1310.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="71.1009%" y="1316" width="0.4587%" height="15" fill="rgb(233,171,20)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1332" width="0.4587%" height="15" fill="rgb(241,30,25)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.1009%" y="1348" width="0.4587%" height="15" fill="rgb(207,171,38)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.1009%" y="1364" width="0.4587%" height="15" fill="rgb(234,70,1)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.1009%" y="1380" width="0.4587%" height="15" fill="rgb(232,178,18)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.1009%" y="1396" width="0.4587%" height="15" fill="rgb(241,78,40)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="71.1009%" y="1412" width="0.4587%" height="15" fill="rgb(222,35,25)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1422.50"></text></g><g><title><module> (email/utils.py:5) (1 samples, 0.46%)</title><rect x="71.1009%" y="1428" width="0.4587%" height="15" fill="rgb(207,92,16)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1438.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.1009%" y="1444" width="0.4587%" height="15" fill="rgb(216,59,51)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1454.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.1009%" y="1460" width="0.4587%" height="15" fill="rgb(213,80,28)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1470.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.1009%" y="1476" width="0.4587%" height="15" fill="rgb(220,93,7)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1486.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.1009%" y="1492" width="0.4587%" height="15" fill="rgb(225,24,44)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1502.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="71.1009%" y="1508" width="0.4587%" height="15" fill="rgb(243,74,40)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1518.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="71.1009%" y="1524" width="0.4587%" height="15" fill="rgb(228,39,7)" fg:x="155" fg:w="1"/><text x="71.3509%" y="1534.50"></text></g><g><title><module> (dask/base.py:1) (2 samples, 0.92%)</title><rect x="71.1009%" y="884" width="0.9174%" height="15" fill="rgb(227,79,8)" fg:x="155" fg:w="2"/><text x="71.3509%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="71.1009%" y="900" width="0.9174%" height="15" fill="rgb(236,58,11)" fg:x="155" fg:w="2"/><text x="71.3509%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="71.1009%" y="916" width="0.9174%" height="15" fill="rgb(249,63,35)" fg:x="155" fg:w="2"/><text x="71.3509%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="71.1009%" y="932" width="0.9174%" height="15" fill="rgb(252,114,16)" fg:x="155" fg:w="2"/><text x="71.3509%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="71.1009%" y="948" width="0.9174%" height="15" fill="rgb(254,151,24)" fg:x="155" fg:w="2"/><text x="71.3509%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="71.1009%" y="964" width="0.9174%" height="15" fill="rgb(253,54,39)" fg:x="155" fg:w="2"/><text x="71.3509%" y="974.50"></text></g><g><title><module> (dask/system.py:1) (1 samples, 0.46%)</title><rect x="71.5596%" y="980" width="0.4587%" height="15" fill="rgb(243,25,45)" fg:x="156" fg:w="1"/><text x="71.8096%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="71.5596%" y="996" width="0.4587%" height="15" fill="rgb(234,134,9)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="71.5596%" y="1012" width="0.4587%" height="15" fill="rgb(227,166,31)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="71.5596%" y="1028" width="0.4587%" height="15" fill="rgb(245,143,41)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="71.5596%" y="1044" width="0.4587%" height="15" fill="rgb(238,181,32)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1054.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="71.5596%" y="1060" width="0.4587%" height="15" fill="rgb(224,113,18)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1070.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="71.5596%" y="1076" width="0.4587%" height="15" fill="rgb(240,229,28)" fg:x="156" fg:w="1"/><text x="71.8096%" y="1086.50"></text></g><g><title>_bind_operator (dask/utils.py:1423) (1 samples, 0.46%)</title><rect x="72.0183%" y="900" width="0.4587%" height="15" fill="rgb(250,185,3)" fg:x="157" fg:w="1"/><text x="72.2683%" y="910.50"></text></g><g><title>_get_binary_operator (dask/delayed.py:654) (1 samples, 0.46%)</title><rect x="72.0183%" y="916" width="0.4587%" height="15" fill="rgb(212,59,25)" fg:x="157" fg:w="1"/><text x="72.2683%" y="926.50"></text></g><g><title>__call__ (toolz/functoolz.py:302) (1 samples, 0.46%)</title><rect x="72.0183%" y="932" width="0.4587%" height="15" fill="rgb(221,87,20)" fg:x="157" fg:w="1"/><text x="72.2683%" y="942.50"></text></g><g><title>delayed (dask/delayed.py:278) (1 samples, 0.46%)</title><rect x="72.0183%" y="948" width="0.4587%" height="15" fill="rgb(213,74,28)" fg:x="157" fg:w="1"/><text x="72.2683%" y="958.50"></text></g><g><title>tokenize (dask/delayed.py:257) (1 samples, 0.46%)</title><rect x="72.0183%" y="964" width="0.4587%" height="15" fill="rgb(224,132,34)" fg:x="157" fg:w="1"/><text x="72.2683%" y="974.50"></text></g><g><title>tokenize (dask/base.py:1026) (1 samples, 0.46%)</title><rect x="72.0183%" y="980" width="0.4587%" height="15" fill="rgb(222,101,24)" fg:x="157" fg:w="1"/><text x="72.2683%" y="990.50"></text></g><g><title>_md5 (dask/base.py:1022) (1 samples, 0.46%)</title><rect x="72.0183%" y="996" width="0.4587%" height="15" fill="rgb(254,142,4)" fg:x="157" fg:w="1"/><text x="72.2683%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="71.1009%" y="804" width="1.8349%" height="15" fill="rgb(230,229,49)" fg:x="155" fg:w="4"/><text x="71.3509%" y="814.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="71.1009%" y="820" width="1.8349%" height="15" fill="rgb(238,70,47)" fg:x="155" fg:w="4"/><text x="71.3509%" y="830.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="71.1009%" y="836" width="1.8349%" height="15" fill="rgb(231,160,17)" fg:x="155" fg:w="4"/><text x="71.3509%" y="846.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="71.1009%" y="852" width="1.8349%" height="15" fill="rgb(218,68,53)" fg:x="155" fg:w="4"/><text x="71.3509%" y="862.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="71.1009%" y="868" width="1.8349%" height="15" fill="rgb(236,111,10)" fg:x="155" fg:w="4"/><text x="71.3509%" y="878.50">_..</text></g><g><title><module> (dask/delayed.py:1) (2 samples, 0.92%)</title><rect x="72.0183%" y="884" width="0.9174%" height="15" fill="rgb(224,34,41)" fg:x="157" fg:w="2"/><text x="72.2683%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.4771%" y="900" width="0.4587%" height="15" fill="rgb(241,118,19)" fg:x="158" fg:w="1"/><text x="72.7271%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.4771%" y="916" width="0.4587%" height="15" fill="rgb(238,129,25)" fg:x="158" fg:w="1"/><text x="72.7271%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.4771%" y="932" width="0.4587%" height="15" fill="rgb(238,22,31)" fg:x="158" fg:w="1"/><text x="72.7271%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.4771%" y="948" width="0.4587%" height="15" fill="rgb(222,174,48)" fg:x="158" fg:w="1"/><text x="72.7271%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.4771%" y="964" width="0.4587%" height="15" fill="rgb(206,152,40)" fg:x="158" fg:w="1"/><text x="72.7271%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (1 samples, 0.46%)</title><rect x="72.4771%" y="980" width="0.4587%" height="15" fill="rgb(218,99,54)" fg:x="158" fg:w="1"/><text x="72.7271%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.4771%" y="996" width="0.4587%" height="15" fill="rgb(220,174,26)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.4771%" y="1012" width="0.4587%" height="15" fill="rgb(245,116,9)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.4771%" y="1028" width="0.4587%" height="15" fill="rgb(209,72,35)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.4771%" y="1044" width="0.4587%" height="15" fill="rgb(226,126,21)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.4771%" y="1060" width="0.4587%" height="15" fill="rgb(227,192,1)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (1 samples, 0.46%)</title><rect x="72.4771%" y="1076" width="0.4587%" height="15" fill="rgb(237,180,29)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.4771%" y="1092" width="0.4587%" height="15" fill="rgb(230,197,35)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.4771%" y="1108" width="0.4587%" height="15" fill="rgb(246,193,31)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.4771%" y="1124" width="0.4587%" height="15" fill="rgb(241,36,4)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.4771%" y="1140" width="0.4587%" height="15" fill="rgb(241,130,17)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.4771%" y="1156" width="0.4587%" height="15" fill="rgb(206,137,32)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (1 samples, 0.46%)</title><rect x="72.4771%" y="1172" width="0.4587%" height="15" fill="rgb(237,228,51)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.4771%" y="1188" width="0.4587%" height="15" fill="rgb(243,6,42)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.4771%" y="1204" width="0.4587%" height="15" fill="rgb(251,74,28)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.4771%" y="1220" width="0.4587%" height="15" fill="rgb(218,20,49)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.4771%" y="1236" width="0.4587%" height="15" fill="rgb(238,28,14)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.4771%" y="1252" width="0.4587%" height="15" fill="rgb(229,40,46)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (1 samples, 0.46%)</title><rect x="72.4771%" y="1268" width="0.4587%" height="15" fill="rgb(244,195,20)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.4771%" y="1284" width="0.4587%" height="15" fill="rgb(253,56,35)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.4771%" y="1300" width="0.4587%" height="15" fill="rgb(210,149,44)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1310.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="72.4771%" y="1316" width="0.4587%" height="15" fill="rgb(240,135,12)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1326.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="72.4771%" y="1332" width="0.4587%" height="15" fill="rgb(251,24,50)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1342.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="72.4771%" y="1348" width="0.4587%" height="15" fill="rgb(243,200,47)" fg:x="158" fg:w="1"/><text x="72.7271%" y="1358.50"></text></g><g><title><module> (dask/config.py:1) (1 samples, 0.46%)</title><rect x="72.9358%" y="916" width="0.4587%" height="15" fill="rgb(224,166,26)" fg:x="159" fg:w="1"/><text x="73.1858%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.9358%" y="932" width="0.4587%" height="15" fill="rgb(233,0,47)" fg:x="159" fg:w="1"/><text x="73.1858%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.9358%" y="948" width="0.4587%" height="15" fill="rgb(253,80,5)" fg:x="159" fg:w="1"/><text x="73.1858%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.9358%" y="964" width="0.4587%" height="15" fill="rgb(214,133,25)" fg:x="159" fg:w="1"/><text x="73.1858%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.9358%" y="980" width="0.4587%" height="15" fill="rgb(209,27,14)" fg:x="159" fg:w="1"/><text x="73.1858%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.9358%" y="996" width="0.4587%" height="15" fill="rgb(219,102,51)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (1 samples, 0.46%)</title><rect x="72.9358%" y="1012" width="0.4587%" height="15" fill="rgb(237,18,16)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.9358%" y="1028" width="0.4587%" height="15" fill="rgb(241,85,17)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.9358%" y="1044" width="0.4587%" height="15" fill="rgb(236,90,42)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.9358%" y="1060" width="0.4587%" height="15" fill="rgb(249,57,21)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.9358%" y="1076" width="0.4587%" height="15" fill="rgb(243,12,36)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.9358%" y="1092" width="0.4587%" height="15" fill="rgb(253,128,47)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (1 samples, 0.46%)</title><rect x="72.9358%" y="1108" width="0.4587%" height="15" fill="rgb(207,33,20)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="72.9358%" y="1124" width="0.4587%" height="15" fill="rgb(233,215,35)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="72.9358%" y="1140" width="0.4587%" height="15" fill="rgb(249,188,52)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="72.9358%" y="1156" width="0.4587%" height="15" fill="rgb(225,12,32)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="72.9358%" y="1172" width="0.4587%" height="15" fill="rgb(247,98,14)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="72.9358%" y="1188" width="0.4587%" height="15" fill="rgb(247,219,48)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1198.50"></text></g><g><title><module> (yaml/reader.py:18) (1 samples, 0.46%)</title><rect x="72.9358%" y="1204" width="0.4587%" height="15" fill="rgb(253,60,48)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1214.50"></text></g><g><title>Reader (yaml/reader.py:45) (1 samples, 0.46%)</title><rect x="72.9358%" y="1220" width="0.4587%" height="15" fill="rgb(245,15,52)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1230.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.46%)</title><rect x="72.9358%" y="1236" width="0.4587%" height="15" fill="rgb(220,133,28)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1246.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="72.9358%" y="1252" width="0.4587%" height="15" fill="rgb(217,180,4)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1262.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.46%)</title><rect x="72.9358%" y="1268" width="0.4587%" height="15" fill="rgb(251,24,1)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1278.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.46%)</title><rect x="72.9358%" y="1284" width="0.4587%" height="15" fill="rgb(212,185,49)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1294.50"></text></g><g><title>_compile_info (sre_compile.py:560) (1 samples, 0.46%)</title><rect x="72.9358%" y="1300" width="0.4587%" height="15" fill="rgb(215,175,22)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1310.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.46%)</title><rect x="72.9358%" y="1316" width="0.4587%" height="15" fill="rgb(250,205,14)" fg:x="159" fg:w="1"/><text x="73.1858%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (141 samples, 64.68%)</title><rect x="9.1743%" y="100" width="64.6789%" height="15" fill="rgb(225,211,22)" fg:x="20" fg:w="141"/><text x="9.4243%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (141 samples, 64.68%)</title><rect x="9.1743%" y="116" width="64.6789%" height="15" fill="rgb(251,179,42)" fg:x="20" fg:w="141"/><text x="9.4243%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (141 samples, 64.68%)</title><rect x="9.1743%" y="132" width="64.6789%" height="15" fill="rgb(208,216,51)" fg:x="20" fg:w="141"/><text x="9.4243%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (141 samples, 64.68%)</title><rect x="9.1743%" y="148" width="64.6789%" height="15" fill="rgb(235,36,11)" fg:x="20" fg:w="141"/><text x="9.4243%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (141 samples, 64.68%)</title><rect x="9.1743%" y="164" width="64.6789%" height="15" fill="rgb(213,189,28)" fg:x="20" fg:w="141"/><text x="9.4243%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (82 samples, 37.61%)</title><rect x="36.2385%" y="180" width="37.6147%" height="15" fill="rgb(227,203,42)" fg:x="79" fg:w="82"/><text x="36.4885%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (82 samples, 37.61%)</title><rect x="36.2385%" y="196" width="37.6147%" height="15" fill="rgb(244,72,36)" fg:x="79" fg:w="82"/><text x="36.4885%" y="206.50">_handle_fromlist (<frozen importlib._bootstrap>:1033)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 37.61%)</title><rect x="36.2385%" y="212" width="37.6147%" height="15" fill="rgb(213,53,17)" fg:x="79" fg:w="82"/><text x="36.4885%" y="222.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (82 samples, 37.61%)</title><rect x="36.2385%" y="228" width="37.6147%" height="15" fill="rgb(207,167,3)" fg:x="79" fg:w="82"/><text x="36.4885%" y="238.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (82 samples, 37.61%)</title><rect x="36.2385%" y="244" width="37.6147%" height="15" fill="rgb(216,98,30)" fg:x="79" fg:w="82"/><text x="36.4885%" y="254.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (82 samples, 37.61%)</title><rect x="36.2385%" y="260" width="37.6147%" height="15" fill="rgb(236,123,15)" fg:x="79" fg:w="82"/><text x="36.4885%" y="270.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (82 samples, 37.61%)</title><rect x="36.2385%" y="276" width="37.6147%" height="15" fill="rgb(248,81,50)" fg:x="79" fg:w="82"/><text x="36.4885%" y="286.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (82 samples, 37.61%)</title><rect x="36.2385%" y="292" width="37.6147%" height="15" fill="rgb(214,120,4)" fg:x="79" fg:w="82"/><text x="36.4885%" y="302.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/tutorial.py:1) (7 samples, 3.21%)</title><rect x="70.6422%" y="308" width="3.2110%" height="15" fill="rgb(208,179,34)" fg:x="154" fg:w="7"/><text x="70.8922%" y="318.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="70.6422%" y="324" width="3.2110%" height="15" fill="rgb(227,140,7)" fg:x="154" fg:w="7"/><text x="70.8922%" y="334.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="70.6422%" y="340" width="3.2110%" height="15" fill="rgb(214,22,6)" fg:x="154" fg:w="7"/><text x="70.8922%" y="350.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="70.6422%" y="356" width="3.2110%" height="15" fill="rgb(207,137,27)" fg:x="154" fg:w="7"/><text x="70.8922%" y="366.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="70.6422%" y="372" width="3.2110%" height="15" fill="rgb(210,8,46)" fg:x="154" fg:w="7"/><text x="70.8922%" y="382.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="70.6422%" y="388" width="3.2110%" height="15" fill="rgb(240,16,54)" fg:x="154" fg:w="7"/><text x="70.8922%" y="398.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="70.6422%" y="404" width="3.2110%" height="15" fill="rgb(211,209,29)" fg:x="154" fg:w="7"/><text x="70.8922%" y="414.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="70.6422%" y="420" width="3.2110%" height="15" fill="rgb(226,228,24)" fg:x="154" fg:w="7"/><text x="70.8922%" y="430.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="70.6422%" y="436" width="3.2110%" height="15" fill="rgb(222,84,9)" fg:x="154" fg:w="7"/><text x="70.8922%" y="446.50">_ca..</text></g><g><title><module> (xarray/backends/__init__.py:1) (7 samples, 3.21%)</title><rect x="70.6422%" y="452" width="3.2110%" height="15" fill="rgb(234,203,30)" fg:x="154" fg:w="7"/><text x="70.8922%" y="462.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="70.6422%" y="468" width="3.2110%" height="15" fill="rgb(238,109,14)" fg:x="154" fg:w="7"/><text x="70.8922%" y="478.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="70.6422%" y="484" width="3.2110%" height="15" fill="rgb(233,206,34)" fg:x="154" fg:w="7"/><text x="70.8922%" y="494.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="70.6422%" y="500" width="3.2110%" height="15" fill="rgb(220,167,47)" fg:x="154" fg:w="7"/><text x="70.8922%" y="510.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="70.6422%" y="516" width="3.2110%" height="15" fill="rgb(238,105,10)" fg:x="154" fg:w="7"/><text x="70.8922%" y="526.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="70.6422%" y="532" width="3.2110%" height="15" fill="rgb(213,227,17)" fg:x="154" fg:w="7"/><text x="70.8922%" y="542.50">_ca..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (6 samples, 2.75%)</title><rect x="71.1009%" y="548" width="2.7523%" height="15" fill="rgb(217,132,38)" fg:x="155" fg:w="6"/><text x="71.3509%" y="558.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="71.1009%" y="564" width="2.7523%" height="15" fill="rgb(242,146,4)" fg:x="155" fg:w="6"/><text x="71.3509%" y="574.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="71.1009%" y="580" width="2.7523%" height="15" fill="rgb(212,61,9)" fg:x="155" fg:w="6"/><text x="71.3509%" y="590.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="71.1009%" y="596" width="2.7523%" height="15" fill="rgb(247,126,22)" fg:x="155" fg:w="6"/><text x="71.3509%" y="606.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="71.1009%" y="612" width="2.7523%" height="15" fill="rgb(220,196,2)" fg:x="155" fg:w="6"/><text x="71.3509%" y="622.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="71.1009%" y="628" width="2.7523%" height="15" fill="rgb(208,46,4)" fg:x="155" fg:w="6"/><text x="71.3509%" y="638.50">_c..</text></g><g><title><module> (xarray/backends/locks.py:1) (6 samples, 2.75%)</title><rect x="71.1009%" y="644" width="2.7523%" height="15" fill="rgb(252,104,46)" fg:x="155" fg:w="6"/><text x="71.3509%" y="654.50"><m..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="71.1009%" y="660" width="2.7523%" height="15" fill="rgb(237,152,48)" fg:x="155" fg:w="6"/><text x="71.3509%" y="670.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="71.1009%" y="676" width="2.7523%" height="15" fill="rgb(221,59,37)" fg:x="155" fg:w="6"/><text x="71.3509%" y="686.50">_f..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="71.1009%" y="692" width="2.7523%" height="15" fill="rgb(209,202,51)" fg:x="155" fg:w="6"/><text x="71.3509%" y="702.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="71.1009%" y="708" width="2.7523%" height="15" fill="rgb(228,81,30)" fg:x="155" fg:w="6"/><text x="71.3509%" y="718.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="71.1009%" y="724" width="2.7523%" height="15" fill="rgb(227,42,39)" fg:x="155" fg:w="6"/><text x="71.3509%" y="734.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="71.1009%" y="740" width="2.7523%" height="15" fill="rgb(221,26,2)" fg:x="155" fg:w="6"/><text x="71.3509%" y="750.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="71.1009%" y="756" width="2.7523%" height="15" fill="rgb(254,61,31)" fg:x="155" fg:w="6"/><text x="71.3509%" y="766.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="71.1009%" y="772" width="2.7523%" height="15" fill="rgb(222,173,38)" fg:x="155" fg:w="6"/><text x="71.3509%" y="782.50">_c..</text></g><g><title><module> (dask/__init__.py:1) (6 samples, 2.75%)</title><rect x="71.1009%" y="788" width="2.7523%" height="15" fill="rgb(218,50,12)" fg:x="155" fg:w="6"/><text x="71.3509%" y="798.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="72.9358%" y="804" width="0.9174%" height="15" fill="rgb(223,88,40)" fg:x="159" fg:w="2"/><text x="73.1858%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="72.9358%" y="820" width="0.9174%" height="15" fill="rgb(237,54,19)" fg:x="159" fg:w="2"/><text x="73.1858%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="72.9358%" y="836" width="0.9174%" height="15" fill="rgb(251,129,25)" fg:x="159" fg:w="2"/><text x="73.1858%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="72.9358%" y="852" width="0.9174%" height="15" fill="rgb(238,97,19)" fg:x="159" fg:w="2"/><text x="73.1858%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="72.9358%" y="868" width="0.9174%" height="15" fill="rgb(240,169,18)" fg:x="159" fg:w="2"/><text x="73.1858%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="72.9358%" y="884" width="0.9174%" height="15" fill="rgb(230,187,49)" fg:x="159" fg:w="2"/><text x="73.1858%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="72.9358%" y="900" width="0.9174%" height="15" fill="rgb(209,44,26)" fg:x="159" fg:w="2"/><text x="73.1858%" y="910.50"></text></g><g><title><module> (dask/datasets.py:1) (1 samples, 0.46%)</title><rect x="73.3945%" y="916" width="0.4587%" height="15" fill="rgb(244,0,6)" fg:x="160" fg:w="1"/><text x="73.6445%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="73.3945%" y="932" width="0.4587%" height="15" fill="rgb(248,18,21)" fg:x="160" fg:w="1"/><text x="73.6445%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="73.3945%" y="948" width="0.4587%" height="15" fill="rgb(245,180,19)" fg:x="160" fg:w="1"/><text x="73.6445%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="73.3945%" y="964" width="0.4587%" height="15" fill="rgb(252,118,36)" fg:x="160" fg:w="1"/><text x="73.6445%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="73.3945%" y="980" width="0.4587%" height="15" fill="rgb(210,224,19)" fg:x="160" fg:w="1"/><text x="73.6445%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="73.3945%" y="996" width="0.4587%" height="15" fill="rgb(218,30,24)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (1 samples, 0.46%)</title><rect x="73.3945%" y="1012" width="0.4587%" height="15" fill="rgb(219,75,50)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="73.3945%" y="1028" width="0.4587%" height="15" fill="rgb(234,72,50)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="73.3945%" y="1044" width="0.4587%" height="15" fill="rgb(219,100,48)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="73.3945%" y="1060" width="0.4587%" height="15" fill="rgb(253,5,41)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="73.3945%" y="1076" width="0.4587%" height="15" fill="rgb(247,181,11)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="73.3945%" y="1092" width="0.4587%" height="15" fill="rgb(222,223,25)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (1 samples, 0.46%)</title><rect x="73.3945%" y="1108" width="0.4587%" height="15" fill="rgb(214,198,28)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="73.3945%" y="1124" width="0.4587%" height="15" fill="rgb(230,46,43)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="73.3945%" y="1140" width="0.4587%" height="15" fill="rgb(233,65,53)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="73.3945%" y="1156" width="0.4587%" height="15" fill="rgb(221,121,27)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="73.3945%" y="1172" width="0.4587%" height="15" fill="rgb(247,70,47)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="73.3945%" y="1188" width="0.4587%" height="15" fill="rgb(228,85,35)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="73.3945%" y="1204" width="0.4587%" height="15" fill="rgb(209,50,18)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1214.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="73.3945%" y="1220" width="0.4587%" height="15" fill="rgb(250,19,35)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1230.50"></text></g><g><title><module> (tlz/_build_tlz.py:1) (1 samples, 0.46%)</title><rect x="73.3945%" y="1236" width="0.4587%" height="15" fill="rgb(253,107,29)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1246.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="73.3945%" y="1252" width="0.4587%" height="15" fill="rgb(252,179,29)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1262.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="73.3945%" y="1268" width="0.4587%" height="15" fill="rgb(238,194,6)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1278.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="73.3945%" y="1284" width="0.4587%" height="15" fill="rgb(238,164,29)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1294.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="73.3945%" y="1300" width="0.4587%" height="15" fill="rgb(224,25,9)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1310.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="73.3945%" y="1316" width="0.4587%" height="15" fill="rgb(244,153,23)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1326.50"></text></g><g><title><module> (toolz/__init__.py:1) (1 samples, 0.46%)</title><rect x="73.3945%" y="1332" width="0.4587%" height="15" fill="rgb(212,203,14)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1342.50"></text></g><g><title>create_signature_registry (toolz/_signatures.py:661) (1 samples, 0.46%)</title><rect x="73.3945%" y="1348" width="0.4587%" height="15" fill="rgb(220,164,20)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1358.50"></text></g><g><title><genexpr> (toolz/_signatures.py:667) (1 samples, 0.46%)</title><rect x="73.3945%" y="1364" width="0.4587%" height="15" fill="rgb(222,203,48)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1374.50"></text></g><g><title>expand_sig (toolz/_signatures.py:624) (1 samples, 0.46%)</title><rect x="73.3945%" y="1380" width="0.4587%" height="15" fill="rgb(215,159,22)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1390.50"></text></g><g><title>signature_or_spec (toolz/_signatures.py:617) (1 samples, 0.46%)</title><rect x="73.3945%" y="1396" width="0.4587%" height="15" fill="rgb(216,183,47)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1406.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="73.3945%" y="1412" width="0.4587%" height="15" fill="rgb(229,195,25)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1422.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="73.3945%" y="1428" width="0.4587%" height="15" fill="rgb(224,132,51)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1438.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="73.3945%" y="1444" width="0.4587%" height="15" fill="rgb(240,63,7)" fg:x="160" fg:w="1"/><text x="73.6445%" y="1454.50"></text></g><g><title>__new__ (ssl.py:483) (1 samples, 0.46%)</title><rect x="73.8532%" y="948" width="0.4587%" height="15" fill="rgb(249,182,41)" fg:x="161" fg:w="1"/><text x="74.1032%" y="958.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (7 samples, 3.21%)</title><rect x="73.8532%" y="756" width="3.2110%" height="15" fill="rgb(243,47,26)" fg:x="161" fg:w="7"/><text x="74.1032%" y="766.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 3.21%)</title><rect x="73.8532%" y="772" width="3.2110%" height="15" fill="rgb(233,48,2)" fg:x="161" fg:w="7"/><text x="74.1032%" y="782.50">_ha..</text></g><g><title>__getattr__ (tornado/__init__.py:64) (7 samples, 3.21%)</title><rect x="73.8532%" y="788" width="3.2110%" height="15" fill="rgb(244,165,34)" fg:x="161" fg:w="7"/><text x="74.1032%" y="798.50">__g..</text></g><g><title>import_module (importlib/__init__.py:109) (7 samples, 3.21%)</title><rect x="73.8532%" y="804" width="3.2110%" height="15" fill="rgb(207,89,7)" fg:x="161" fg:w="7"/><text x="74.1032%" y="814.50">imp..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (7 samples, 3.21%)</title><rect x="73.8532%" y="820" width="3.2110%" height="15" fill="rgb(244,117,36)" fg:x="161" fg:w="7"/><text x="74.1032%" y="830.50">_gc..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="73.8532%" y="836" width="3.2110%" height="15" fill="rgb(226,144,34)" fg:x="161" fg:w="7"/><text x="74.1032%" y="846.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="73.8532%" y="852" width="3.2110%" height="15" fill="rgb(213,23,19)" fg:x="161" fg:w="7"/><text x="74.1032%" y="862.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="73.8532%" y="868" width="3.2110%" height="15" fill="rgb(217,75,12)" fg:x="161" fg:w="7"/><text x="74.1032%" y="878.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="73.8532%" y="884" width="3.2110%" height="15" fill="rgb(224,159,17)" fg:x="161" fg:w="7"/><text x="74.1032%" y="894.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="73.8532%" y="900" width="3.2110%" height="15" fill="rgb(217,118,1)" fg:x="161" fg:w="7"/><text x="74.1032%" y="910.50">_ca..</text></g><g><title><module> (tornado/netutil.py:16) (7 samples, 3.21%)</title><rect x="73.8532%" y="916" width="3.2110%" height="15" fill="rgb(232,180,48)" fg:x="161" fg:w="7"/><text x="74.1032%" y="926.50"><mo..</text></g><g><title>create_default_context (ssl.py:724) (7 samples, 3.21%)</title><rect x="73.8532%" y="932" width="3.2110%" height="15" fill="rgb(230,27,33)" fg:x="161" fg:w="7"/><text x="74.1032%" y="942.50">cre..</text></g><g><title>load_default_certs (ssl.py:570) (6 samples, 2.75%)</title><rect x="74.3119%" y="948" width="2.7523%" height="15" fill="rgb(205,31,21)" fg:x="162" fg:w="6"/><text x="74.5619%" y="958.50">lo..</text></g><g><title><module> (distributed/comm/ucx.py:1) (2 samples, 0.92%)</title><rect x="77.0642%" y="756" width="0.9174%" height="15" fill="rgb(253,59,4)" fg:x="168" fg:w="2"/><text x="77.3142%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="77.0642%" y="772" width="0.9174%" height="15" fill="rgb(224,201,9)" fg:x="168" fg:w="2"/><text x="77.3142%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="77.0642%" y="788" width="0.9174%" height="15" fill="rgb(229,206,30)" fg:x="168" fg:w="2"/><text x="77.3142%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="77.0642%" y="804" width="0.9174%" height="15" fill="rgb(212,67,47)" fg:x="168" fg:w="2"/><text x="77.3142%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="77.0642%" y="820" width="0.9174%" height="15" fill="rgb(211,96,50)" fg:x="168" fg:w="2"/><text x="77.3142%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="77.0642%" y="836" width="0.9174%" height="15" fill="rgb(252,114,18)" fg:x="168" fg:w="2"/><text x="77.3142%" y="846.50"></text></g><g><title><module> (unittest/mock.py:7) (2 samples, 0.92%)</title><rect x="77.0642%" y="852" width="0.9174%" height="15" fill="rgb(223,58,37)" fg:x="168" fg:w="2"/><text x="77.3142%" y="862.50"></text></g><g><title>signature (inspect.py:3111) (2 samples, 0.92%)</title><rect x="77.0642%" y="868" width="0.9174%" height="15" fill="rgb(237,70,4)" fg:x="168" fg:w="2"/><text x="77.3142%" y="878.50"></text></g><g><title>from_callable (inspect.py:2859) (2 samples, 0.92%)</title><rect x="77.0642%" y="884" width="0.9174%" height="15" fill="rgb(244,85,46)" fg:x="168" fg:w="2"/><text x="77.3142%" y="894.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (2 samples, 0.92%)</title><rect x="77.0642%" y="900" width="0.9174%" height="15" fill="rgb(223,39,52)" fg:x="168" fg:w="2"/><text x="77.3142%" y="910.50"></text></g><g><title>_signature_from_function (inspect.py:2152) (1 samples, 0.46%)</title><rect x="77.5229%" y="916" width="0.4587%" height="15" fill="rgb(218,200,14)" fg:x="169" fg:w="1"/><text x="77.7729%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 4.59%)</title><rect x="73.8532%" y="532" width="4.5872%" height="15" fill="rgb(208,171,16)" fg:x="161" fg:w="10"/><text x="74.1032%" y="542.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 4.59%)</title><rect x="73.8532%" y="548" width="4.5872%" height="15" fill="rgb(234,200,18)" fg:x="161" fg:w="10"/><text x="74.1032%" y="558.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 4.59%)</title><rect x="73.8532%" y="564" width="4.5872%" height="15" fill="rgb(228,45,11)" fg:x="161" fg:w="10"/><text x="74.1032%" y="574.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 4.59%)</title><rect x="73.8532%" y="580" width="4.5872%" height="15" fill="rgb(237,182,11)" fg:x="161" fg:w="10"/><text x="74.1032%" y="590.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 4.59%)</title><rect x="73.8532%" y="596" width="4.5872%" height="15" fill="rgb(241,175,49)" fg:x="161" fg:w="10"/><text x="74.1032%" y="606.50">_call..</text></g><g><title><module> (distributed/comm/__init__.py:1) (10 samples, 4.59%)</title><rect x="73.8532%" y="612" width="4.5872%" height="15" fill="rgb(247,38,35)" fg:x="161" fg:w="10"/><text x="74.1032%" y="622.50"><modu..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (10 samples, 4.59%)</title><rect x="73.8532%" y="628" width="4.5872%" height="15" fill="rgb(228,39,49)" fg:x="161" fg:w="10"/><text x="74.1032%" y="638.50">_regi..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 4.59%)</title><rect x="73.8532%" y="644" width="4.5872%" height="15" fill="rgb(226,101,26)" fg:x="161" fg:w="10"/><text x="74.1032%" y="654.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 4.59%)</title><rect x="73.8532%" y="660" width="4.5872%" height="15" fill="rgb(206,141,19)" fg:x="161" fg:w="10"/><text x="74.1032%" y="670.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 4.59%)</title><rect x="73.8532%" y="676" width="4.5872%" height="15" fill="rgb(211,200,13)" fg:x="161" fg:w="10"/><text x="74.1032%" y="686.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 4.59%)</title><rect x="73.8532%" y="692" width="4.5872%" height="15" fill="rgb(241,121,6)" fg:x="161" fg:w="10"/><text x="74.1032%" y="702.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 4.59%)</title><rect x="73.8532%" y="708" width="4.5872%" height="15" fill="rgb(234,221,29)" fg:x="161" fg:w="10"/><text x="74.1032%" y="718.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 4.59%)</title><rect x="73.8532%" y="724" width="4.5872%" height="15" fill="rgb(229,136,5)" fg:x="161" fg:w="10"/><text x="74.1032%" y="734.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 4.59%)</title><rect x="73.8532%" y="740" width="4.5872%" height="15" fill="rgb(238,36,11)" fg:x="161" fg:w="10"/><text x="74.1032%" y="750.50">_call..</text></g><g><title><module> (distributed/comm/ws.py:1) (1 samples, 0.46%)</title><rect x="77.9817%" y="756" width="0.4587%" height="15" fill="rgb(251,55,41)" fg:x="170" fg:w="1"/><text x="78.2317%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="77.9817%" y="772" width="0.4587%" height="15" fill="rgb(242,34,40)" fg:x="170" fg:w="1"/><text x="78.2317%" y="782.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (1 samples, 0.46%)</title><rect x="77.9817%" y="788" width="0.4587%" height="15" fill="rgb(215,42,17)" fg:x="170" fg:w="1"/><text x="78.2317%" y="798.50"></text></g><g><title>import_module (importlib/__init__.py:109) (1 samples, 0.46%)</title><rect x="77.9817%" y="804" width="0.4587%" height="15" fill="rgb(207,44,46)" fg:x="170" fg:w="1"/><text x="78.2317%" y="814.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (1 samples, 0.46%)</title><rect x="77.9817%" y="820" width="0.4587%" height="15" fill="rgb(211,206,28)" fg:x="170" fg:w="1"/><text x="78.2317%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="77.9817%" y="836" width="0.4587%" height="15" fill="rgb(237,167,16)" fg:x="170" fg:w="1"/><text x="78.2317%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="77.9817%" y="852" width="0.4587%" height="15" fill="rgb(233,66,6)" fg:x="170" fg:w="1"/><text x="78.2317%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="77.9817%" y="868" width="0.4587%" height="15" fill="rgb(246,123,29)" fg:x="170" fg:w="1"/><text x="78.2317%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="77.9817%" y="884" width="0.4587%" height="15" fill="rgb(209,62,40)" fg:x="170" fg:w="1"/><text x="78.2317%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="77.9817%" y="900" width="0.4587%" height="15" fill="rgb(218,4,25)" fg:x="170" fg:w="1"/><text x="78.2317%" y="910.50"></text></g><g><title><module> (tornado/web.py:16) (1 samples, 0.46%)</title><rect x="77.9817%" y="916" width="0.4587%" height="15" fill="rgb(253,91,49)" fg:x="170" fg:w="1"/><text x="78.2317%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="77.9817%" y="932" width="0.4587%" height="15" fill="rgb(228,155,29)" fg:x="170" fg:w="1"/><text x="78.2317%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="77.9817%" y="948" width="0.4587%" height="15" fill="rgb(243,57,37)" fg:x="170" fg:w="1"/><text x="78.2317%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="77.9817%" y="964" width="0.4587%" height="15" fill="rgb(244,167,17)" fg:x="170" fg:w="1"/><text x="78.2317%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="77.9817%" y="980" width="0.4587%" height="15" fill="rgb(207,181,38)" fg:x="170" fg:w="1"/><text x="78.2317%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="77.9817%" y="996" width="0.4587%" height="15" fill="rgb(211,8,23)" fg:x="170" fg:w="1"/><text x="78.2317%" y="1006.50"></text></g><g><title><module> (tornado/routing.py:15) (1 samples, 0.46%)</title><rect x="77.9817%" y="1012" width="0.4587%" height="15" fill="rgb(235,11,44)" fg:x="170" fg:w="1"/><text x="78.2317%" y="1022.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.46%)</title><rect x="78.4404%" y="1092" width="0.4587%" height="15" fill="rgb(248,18,52)" fg:x="171" fg:w="1"/><text x="78.6904%" y="1102.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.46%)</title><rect x="78.4404%" y="1108" width="0.4587%" height="15" fill="rgb(208,4,7)" fg:x="171" fg:w="1"/><text x="78.6904%" y="1118.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.46%)</title><rect x="78.4404%" y="1124" width="0.4587%" height="15" fill="rgb(240,17,39)" fg:x="171" fg:w="1"/><text x="78.6904%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="78.4404%" y="756" width="0.9174%" height="15" fill="rgb(207,170,3)" fg:x="171" fg:w="2"/><text x="78.6904%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="78.4404%" y="772" width="0.9174%" height="15" fill="rgb(236,100,52)" fg:x="171" fg:w="2"/><text x="78.6904%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="78.4404%" y="788" width="0.9174%" height="15" fill="rgb(246,78,51)" fg:x="171" fg:w="2"/><text x="78.6904%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="78.4404%" y="804" width="0.9174%" height="15" fill="rgb(211,17,15)" fg:x="171" fg:w="2"/><text x="78.6904%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="78.4404%" y="820" width="0.9174%" height="15" fill="rgb(209,59,46)" fg:x="171" fg:w="2"/><text x="78.6904%" y="830.50"></text></g><g><title><module> (click/__init__.py:1) (2 samples, 0.92%)</title><rect x="78.4404%" y="836" width="0.9174%" height="15" fill="rgb(210,92,25)" fg:x="171" fg:w="2"/><text x="78.6904%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="78.4404%" y="852" width="0.9174%" height="15" fill="rgb(238,174,52)" fg:x="171" fg:w="2"/><text x="78.6904%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="78.4404%" y="868" width="0.9174%" height="15" fill="rgb(230,73,7)" fg:x="171" fg:w="2"/><text x="78.6904%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="78.4404%" y="884" width="0.9174%" height="15" fill="rgb(243,124,40)" fg:x="171" fg:w="2"/><text x="78.6904%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="78.4404%" y="900" width="0.9174%" height="15" fill="rgb(244,170,11)" fg:x="171" fg:w="2"/><text x="78.6904%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="78.4404%" y="916" width="0.9174%" height="15" fill="rgb(207,114,54)" fg:x="171" fg:w="2"/><text x="78.6904%" y="926.50"></text></g><g><title><module> (click/core.py:1) (2 samples, 0.92%)</title><rect x="78.4404%" y="932" width="0.9174%" height="15" fill="rgb(205,42,20)" fg:x="171" fg:w="2"/><text x="78.6904%" y="942.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="78.4404%" y="948" width="0.9174%" height="15" fill="rgb(230,30,28)" fg:x="171" fg:w="2"/><text x="78.6904%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="78.4404%" y="964" width="0.9174%" height="15" fill="rgb(205,73,54)" fg:x="171" fg:w="2"/><text x="78.6904%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="78.4404%" y="980" width="0.9174%" height="15" fill="rgb(254,227,23)" fg:x="171" fg:w="2"/><text x="78.6904%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="78.4404%" y="996" width="0.9174%" height="15" fill="rgb(228,202,34)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="78.4404%" y="1012" width="0.9174%" height="15" fill="rgb(222,225,37)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="78.4404%" y="1028" width="0.9174%" height="15" fill="rgb(221,14,54)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="78.4404%" y="1044" width="0.9174%" height="15" fill="rgb(254,102,2)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1054.50"></text></g><g><title><module> (click/types.py:1) (2 samples, 0.92%)</title><rect x="78.4404%" y="1060" width="0.9174%" height="15" fill="rgb(232,104,17)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="78.4404%" y="1076" width="0.9174%" height="15" fill="rgb(250,220,14)" fg:x="171" fg:w="2"/><text x="78.6904%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="78.8991%" y="1092" width="0.4587%" height="15" fill="rgb(241,158,9)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1102.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="78.8991%" y="1108" width="0.4587%" height="15" fill="rgb(246,9,43)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1118.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="78.8991%" y="1124" width="0.4587%" height="15" fill="rgb(206,73,33)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1134.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="78.8991%" y="1140" width="0.4587%" height="15" fill="rgb(222,79,8)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1150.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="78.8991%" y="1156" width="0.4587%" height="15" fill="rgb(234,8,54)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1166.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.46%)</title><rect x="78.8991%" y="1172" width="0.4587%" height="15" fill="rgb(209,134,38)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1182.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.46%)</title><rect x="78.8991%" y="1188" width="0.4587%" height="15" fill="rgb(230,127,29)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1198.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.46%)</title><rect x="78.8991%" y="1204" width="0.4587%" height="15" fill="rgb(242,44,41)" fg:x="172" fg:w="1"/><text x="79.1491%" y="1214.50"></text></g><g><title><module> (distributed/core.py:1) (13 samples, 5.96%)</title><rect x="73.8532%" y="516" width="5.9633%" height="15" fill="rgb(222,56,43)" fg:x="161" fg:w="13"/><text x="74.1032%" y="526.50"><module>..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.38%)</title><rect x="78.4404%" y="532" width="1.3761%" height="15" fill="rgb(238,39,47)" fg:x="171" fg:w="3"/><text x="78.6904%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="78.4404%" y="548" width="1.3761%" height="15" fill="rgb(226,79,43)" fg:x="171" fg:w="3"/><text x="78.6904%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="78.4404%" y="564" width="1.3761%" height="15" fill="rgb(242,105,53)" fg:x="171" fg:w="3"/><text x="78.6904%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="78.4404%" y="580" width="1.3761%" height="15" fill="rgb(251,132,46)" fg:x="171" fg:w="3"/><text x="78.6904%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="78.4404%" y="596" width="1.3761%" height="15" fill="rgb(231,77,14)" fg:x="171" fg:w="3"/><text x="78.6904%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="78.4404%" y="612" width="1.3761%" height="15" fill="rgb(240,135,9)" fg:x="171" fg:w="3"/><text x="78.6904%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="78.4404%" y="628" width="1.3761%" height="15" fill="rgb(248,109,14)" fg:x="171" fg:w="3"/><text x="78.6904%" y="638.50"></text></g><g><title><module> (distributed/profile.py:1) (3 samples, 1.38%)</title><rect x="78.4404%" y="644" width="1.3761%" height="15" fill="rgb(227,146,52)" fg:x="171" fg:w="3"/><text x="78.6904%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="78.4404%" y="660" width="1.3761%" height="15" fill="rgb(232,54,3)" fg:x="171" fg:w="3"/><text x="78.6904%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="78.4404%" y="676" width="1.3761%" height="15" fill="rgb(229,201,43)" fg:x="171" fg:w="3"/><text x="78.6904%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="78.4404%" y="692" width="1.3761%" height="15" fill="rgb(252,161,33)" fg:x="171" fg:w="3"/><text x="78.6904%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="78.4404%" y="708" width="1.3761%" height="15" fill="rgb(226,146,40)" fg:x="171" fg:w="3"/><text x="78.6904%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="78.4404%" y="724" width="1.3761%" height="15" fill="rgb(219,47,25)" fg:x="171" fg:w="3"/><text x="78.6904%" y="734.50"></text></g><g><title><module> (distributed/utils.py:1) (3 samples, 1.38%)</title><rect x="78.4404%" y="740" width="1.3761%" height="15" fill="rgb(250,135,13)" fg:x="171" fg:w="3"/><text x="78.6904%" y="750.50"></text></g><g><title>install (tblib/pickling_support.py:75) (1 samples, 0.46%)</title><rect x="79.3578%" y="756" width="0.4587%" height="15" fill="rgb(219,229,18)" fg:x="173" fg:w="1"/><text x="79.6078%" y="766.50"></text></g><g><title>pickle (copyreg.py:12) (1 samples, 0.46%)</title><rect x="79.3578%" y="772" width="0.4587%" height="15" fill="rgb(217,152,27)" fg:x="173" fg:w="1"/><text x="79.6078%" y="782.50"></text></g><g><title><module> (distributed/threadpoolexecutor.py:1) (1 samples, 0.46%)</title><rect x="79.8165%" y="516" width="0.4587%" height="15" fill="rgb(225,71,47)" fg:x="174" fg:w="1"/><text x="80.0665%" y="526.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="79.8165%" y="532" width="0.4587%" height="15" fill="rgb(220,139,14)" fg:x="174" fg:w="1"/><text x="80.0665%" y="542.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="79.8165%" y="548" width="0.4587%" height="15" fill="rgb(247,54,32)" fg:x="174" fg:w="1"/><text x="80.0665%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="79.8165%" y="564" width="0.4587%" height="15" fill="rgb(252,131,39)" fg:x="174" fg:w="1"/><text x="80.0665%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="79.8165%" y="580" width="0.4587%" height="15" fill="rgb(210,108,39)" fg:x="174" fg:w="1"/><text x="80.0665%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="79.8165%" y="596" width="0.4587%" height="15" fill="rgb(205,23,29)" fg:x="174" fg:w="1"/><text x="80.0665%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="79.8165%" y="612" width="0.4587%" height="15" fill="rgb(246,139,46)" fg:x="174" fg:w="1"/><text x="80.0665%" y="622.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="79.8165%" y="628" width="0.4587%" height="15" fill="rgb(250,81,26)" fg:x="174" fg:w="1"/><text x="80.0665%" y="638.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="79.8165%" y="644" width="0.4587%" height="15" fill="rgb(214,104,7)" fg:x="174" fg:w="1"/><text x="80.0665%" y="654.50"></text></g><g><title><module> (distributed/worker_memory.py:1) (1 samples, 0.46%)</title><rect x="80.2752%" y="612" width="0.4587%" height="15" fill="rgb(233,189,8)" fg:x="175" fg:w="1"/><text x="80.5252%" y="622.50"></text></g><g><title>__init__ (distributed/utils.py:1905) (1 samples, 0.46%)</title><rect x="80.2752%" y="628" width="0.4587%" height="15" fill="rgb(228,141,17)" fg:x="175" fg:w="1"/><text x="80.5252%" y="638.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.46%)</title><rect x="80.2752%" y="644" width="0.4587%" height="15" fill="rgb(247,157,1)" fg:x="175" fg:w="1"/><text x="80.5252%" y="654.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="80.2752%" y="660" width="0.4587%" height="15" fill="rgb(249,225,5)" fg:x="175" fg:w="1"/><text x="80.5252%" y="670.50"></text></g><g><title>__and__ (enum.py:977) (1 samples, 0.46%)</title><rect x="80.2752%" y="676" width="0.4587%" height="15" fill="rgb(242,55,13)" fg:x="175" fg:w="1"/><text x="80.5252%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (16 samples, 7.34%)</title><rect x="73.8532%" y="500" width="7.3394%" height="15" fill="rgb(230,49,50)" fg:x="161" fg:w="16"/><text x="74.1032%" y="510.50">_call_with..</text></g><g><title><module> (distributed/worker.py:1) (2 samples, 0.92%)</title><rect x="80.2752%" y="516" width="0.9174%" height="15" fill="rgb(241,111,38)" fg:x="175" fg:w="2"/><text x="80.5252%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="80.2752%" y="532" width="0.9174%" height="15" fill="rgb(252,155,4)" fg:x="175" fg:w="2"/><text x="80.5252%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="80.2752%" y="548" width="0.9174%" height="15" fill="rgb(212,69,32)" fg:x="175" fg:w="2"/><text x="80.5252%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="80.2752%" y="564" width="0.9174%" height="15" fill="rgb(243,107,47)" fg:x="175" fg:w="2"/><text x="80.5252%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="80.2752%" y="580" width="0.9174%" height="15" fill="rgb(247,130,12)" fg:x="175" fg:w="2"/><text x="80.5252%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="80.2752%" y="596" width="0.9174%" height="15" fill="rgb(233,74,16)" fg:x="175" fg:w="2"/><text x="80.5252%" y="606.50"></text></g><g><title><module> (distributed/worker_state_machine.py:1) (1 samples, 0.46%)</title><rect x="80.7339%" y="612" width="0.4587%" height="15" fill="rgb(208,58,18)" fg:x="176" fg:w="1"/><text x="80.9839%" y="622.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.46%)</title><rect x="80.7339%" y="628" width="0.4587%" height="15" fill="rgb(242,225,1)" fg:x="176" fg:w="1"/><text x="80.9839%" y="638.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.46%)</title><rect x="80.7339%" y="644" width="0.4587%" height="15" fill="rgb(249,39,40)" fg:x="176" fg:w="1"/><text x="80.9839%" y="654.50"></text></g><g><title>_init_fn (dataclasses.py:489) (1 samples, 0.46%)</title><rect x="80.7339%" y="660" width="0.4587%" height="15" fill="rgb(207,72,44)" fg:x="176" fg:w="1"/><text x="80.9839%" y="670.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.46%)</title><rect x="80.7339%" y="676" width="0.4587%" height="15" fill="rgb(215,193,12)" fg:x="176" fg:w="1"/><text x="80.9839%" y="686.50"></text></g><g><title><module> (distributed/client.py:1) (17 samples, 7.80%)</title><rect x="73.8532%" y="420" width="7.7982%" height="15" fill="rgb(248,41,39)" fg:x="161" fg:w="17"/><text x="74.1032%" y="430.50"><module> (d..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 7.80%)</title><rect x="73.8532%" y="436" width="7.7982%" height="15" fill="rgb(253,85,4)" fg:x="161" fg:w="17"/><text x="74.1032%" y="446.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 7.80%)</title><rect x="73.8532%" y="452" width="7.7982%" height="15" fill="rgb(243,70,31)" fg:x="161" fg:w="17"/><text x="74.1032%" y="462.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 7.80%)</title><rect x="73.8532%" y="468" width="7.7982%" height="15" fill="rgb(253,195,26)" fg:x="161" fg:w="17"/><text x="74.1032%" y="478.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 7.80%)</title><rect x="73.8532%" y="484" width="7.7982%" height="15" fill="rgb(243,42,11)" fg:x="161" fg:w="17"/><text x="74.1032%" y="494.50">exec_module..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="81.1927%" y="500" width="0.4587%" height="15" fill="rgb(239,66,17)" fg:x="177" fg:w="1"/><text x="81.4427%" y="510.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="81.1927%" y="516" width="0.4587%" height="15" fill="rgb(217,132,21)" fg:x="177" fg:w="1"/><text x="81.4427%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (18 samples, 8.26%)</title><rect x="73.8532%" y="340" width="8.2569%" height="15" fill="rgb(252,202,21)" fg:x="161" fg:w="18"/><text x="74.1032%" y="350.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (18 samples, 8.26%)</title><rect x="73.8532%" y="356" width="8.2569%" height="15" fill="rgb(233,98,36)" fg:x="161" fg:w="18"/><text x="74.1032%" y="366.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (18 samples, 8.26%)</title><rect x="73.8532%" y="372" width="8.2569%" height="15" fill="rgb(216,153,54)" fg:x="161" fg:w="18"/><text x="74.1032%" y="382.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (18 samples, 8.26%)</title><rect x="73.8532%" y="388" width="8.2569%" height="15" fill="rgb(250,99,7)" fg:x="161" fg:w="18"/><text x="74.1032%" y="398.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (18 samples, 8.26%)</title><rect x="73.8532%" y="404" width="8.2569%" height="15" fill="rgb(207,56,50)" fg:x="161" fg:w="18"/><text x="74.1032%" y="414.50">_call_with_..</text></g><g><title><module> (tornado/ioloop.py:16) (1 samples, 0.46%)</title><rect x="81.6514%" y="420" width="0.4587%" height="15" fill="rgb(244,61,34)" fg:x="178" fg:w="1"/><text x="81.9014%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="81.6514%" y="436" width="0.4587%" height="15" fill="rgb(241,50,38)" fg:x="178" fg:w="1"/><text x="81.9014%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="81.6514%" y="452" width="0.4587%" height="15" fill="rgb(212,166,30)" fg:x="178" fg:w="1"/><text x="81.9014%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="81.6514%" y="468" width="0.4587%" height="15" fill="rgb(249,127,32)" fg:x="178" fg:w="1"/><text x="81.9014%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="81.6514%" y="484" width="0.4587%" height="15" fill="rgb(209,103,0)" fg:x="178" fg:w="1"/><text x="81.9014%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="81.6514%" y="500" width="0.4587%" height="15" fill="rgb(238,209,51)" fg:x="178" fg:w="1"/><text x="81.9014%" y="510.50"></text></g><g><title><module> (tornado/concurrent.py:15) (1 samples, 0.46%)</title><rect x="81.6514%" y="516" width="0.4587%" height="15" fill="rgb(237,56,23)" fg:x="178" fg:w="1"/><text x="81.9014%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="81.6514%" y="532" width="0.4587%" height="15" fill="rgb(215,153,46)" fg:x="178" fg:w="1"/><text x="81.9014%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="81.6514%" y="548" width="0.4587%" height="15" fill="rgb(224,49,31)" fg:x="178" fg:w="1"/><text x="81.9014%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="81.6514%" y="564" width="0.4587%" height="15" fill="rgb(250,18,42)" fg:x="178" fg:w="1"/><text x="81.9014%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="81.6514%" y="580" width="0.4587%" height="15" fill="rgb(215,176,39)" fg:x="178" fg:w="1"/><text x="81.9014%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="81.6514%" y="596" width="0.4587%" height="15" fill="rgb(223,77,29)" fg:x="178" fg:w="1"/><text x="81.9014%" y="606.50"></text></g><g><title><module> (tornado/log.py:15) (1 samples, 0.46%)</title><rect x="81.6514%" y="612" width="0.4587%" height="15" fill="rgb(234,94,52)" fg:x="178" fg:w="1"/><text x="81.9014%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="81.6514%" y="628" width="0.4587%" height="15" fill="rgb(220,154,50)" fg:x="178" fg:w="1"/><text x="81.9014%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="81.6514%" y="644" width="0.4587%" height="15" fill="rgb(212,11,10)" fg:x="178" fg:w="1"/><text x="81.9014%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="81.6514%" y="660" width="0.4587%" height="15" fill="rgb(205,166,19)" fg:x="178" fg:w="1"/><text x="81.9014%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="81.6514%" y="676" width="0.4587%" height="15" fill="rgb(244,198,16)" fg:x="178" fg:w="1"/><text x="81.9014%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="81.6514%" y="692" width="0.4587%" height="15" fill="rgb(219,69,12)" fg:x="178" fg:w="1"/><text x="81.9014%" y="702.50"></text></g><g><title><module> (curses/__init__.py:1) (1 samples, 0.46%)</title><rect x="81.6514%" y="708" width="0.4587%" height="15" fill="rgb(245,30,7)" fg:x="178" fg:w="1"/><text x="81.9014%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="81.6514%" y="724" width="0.4587%" height="15" fill="rgb(218,221,48)" fg:x="178" fg:w="1"/><text x="81.9014%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="81.6514%" y="740" width="0.4587%" height="15" fill="rgb(216,66,15)" fg:x="178" fg:w="1"/><text x="81.9014%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="81.6514%" y="756" width="0.4587%" height="15" fill="rgb(226,122,50)" fg:x="178" fg:w="1"/><text x="81.9014%" y="766.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.46%)</title><rect x="81.6514%" y="772" width="0.4587%" height="15" fill="rgb(239,156,16)" fg:x="178" fg:w="1"/><text x="81.9014%" y="782.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.46%)</title><rect x="81.6514%" y="788" width="0.4587%" height="15" fill="rgb(224,27,38)" fg:x="178" fg:w="1"/><text x="81.9014%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="81.6514%" y="804" width="0.4587%" height="15" fill="rgb(224,39,27)" fg:x="178" fg:w="1"/><text x="81.9014%" y="814.50"></text></g><g><title><module> (distributed/actor.py:1) (19 samples, 8.72%)</title><rect x="73.8532%" y="324" width="8.7156%" height="15" fill="rgb(215,92,29)" fg:x="161" fg:w="19"/><text x="74.1032%" y="334.50"><module> (di..</text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.46%)</title><rect x="82.1101%" y="340" width="0.4587%" height="15" fill="rgb(207,159,16)" fg:x="179" fg:w="1"/><text x="82.3601%" y="350.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.46%)</title><rect x="82.1101%" y="356" width="0.4587%" height="15" fill="rgb(238,163,47)" fg:x="179" fg:w="1"/><text x="82.3601%" y="366.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.46%)</title><rect x="82.1101%" y="372" width="0.4587%" height="15" fill="rgb(219,91,49)" fg:x="179" fg:w="1"/><text x="82.3601%" y="382.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.46%)</title><rect x="82.1101%" y="388" width="0.4587%" height="15" fill="rgb(227,167,31)" fg:x="179" fg:w="1"/><text x="82.3601%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (20 samples, 9.17%)</title><rect x="73.8532%" y="244" width="9.1743%" height="15" fill="rgb(234,80,54)" fg:x="161" fg:w="20"/><text x="74.1032%" y="254.50">_find_and_loa..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (20 samples, 9.17%)</title><rect x="73.8532%" y="260" width="9.1743%" height="15" fill="rgb(212,114,2)" fg:x="161" fg:w="20"/><text x="74.1032%" y="270.50">_find_and_loa..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (20 samples, 9.17%)</title><rect x="73.8532%" y="276" width="9.1743%" height="15" fill="rgb(234,50,24)" fg:x="161" fg:w="20"/><text x="74.1032%" y="286.50">_load_unlocke..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (20 samples, 9.17%)</title><rect x="73.8532%" y="292" width="9.1743%" height="15" fill="rgb(221,68,8)" fg:x="161" fg:w="20"/><text x="74.1032%" y="302.50">exec_module (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (20 samples, 9.17%)</title><rect x="73.8532%" y="308" width="9.1743%" height="15" fill="rgb(254,180,31)" fg:x="161" fg:w="20"/><text x="74.1032%" y="318.50">_call_with_fr..</text></g><g><title><module> (distributed/deploy/__init__.py:1) (1 samples, 0.46%)</title><rect x="82.5688%" y="324" width="0.4587%" height="15" fill="rgb(247,130,50)" fg:x="180" fg:w="1"/><text x="82.8188%" y="334.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="82.5688%" y="340" width="0.4587%" height="15" fill="rgb(211,109,4)" fg:x="180" fg:w="1"/><text x="82.8188%" y="350.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="82.5688%" y="356" width="0.4587%" height="15" fill="rgb(238,50,21)" fg:x="180" fg:w="1"/><text x="82.8188%" y="366.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="82.5688%" y="372" width="0.4587%" height="15" fill="rgb(225,57,45)" fg:x="180" fg:w="1"/><text x="82.8188%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="82.5688%" y="388" width="0.4587%" height="15" fill="rgb(209,196,50)" fg:x="180" fg:w="1"/><text x="82.8188%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="82.5688%" y="404" width="0.4587%" height="15" fill="rgb(242,140,13)" fg:x="180" fg:w="1"/><text x="82.8188%" y="414.50"></text></g><g><title><module> (distributed/deploy/local.py:1) (1 samples, 0.46%)</title><rect x="82.5688%" y="420" width="0.4587%" height="15" fill="rgb(217,111,7)" fg:x="180" fg:w="1"/><text x="82.8188%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="82.5688%" y="436" width="0.4587%" height="15" fill="rgb(253,193,51)" fg:x="180" fg:w="1"/><text x="82.8188%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="82.5688%" y="452" width="0.4587%" height="15" fill="rgb(252,70,29)" fg:x="180" fg:w="1"/><text x="82.8188%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="82.5688%" y="468" width="0.4587%" height="15" fill="rgb(232,127,12)" fg:x="180" fg:w="1"/><text x="82.8188%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="82.5688%" y="484" width="0.4587%" height="15" fill="rgb(211,180,21)" fg:x="180" fg:w="1"/><text x="82.8188%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="82.5688%" y="500" width="0.4587%" height="15" fill="rgb(229,72,13)" fg:x="180" fg:w="1"/><text x="82.8188%" y="510.50"></text></g><g><title><module> (distributed/deploy/spec.py:1) (1 samples, 0.46%)</title><rect x="82.5688%" y="516" width="0.4587%" height="15" fill="rgb(240,211,49)" fg:x="180" fg:w="1"/><text x="82.8188%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="82.5688%" y="532" width="0.4587%" height="15" fill="rgb(219,149,40)" fg:x="180" fg:w="1"/><text x="82.8188%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="82.5688%" y="548" width="0.4587%" height="15" fill="rgb(210,127,46)" fg:x="180" fg:w="1"/><text x="82.8188%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="82.5688%" y="564" width="0.4587%" height="15" fill="rgb(220,106,7)" fg:x="180" fg:w="1"/><text x="82.8188%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="82.5688%" y="580" width="0.4587%" height="15" fill="rgb(249,31,22)" fg:x="180" fg:w="1"/><text x="82.8188%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="82.5688%" y="596" width="0.4587%" height="15" fill="rgb(253,1,49)" fg:x="180" fg:w="1"/><text x="82.8188%" y="606.50"></text></g><g><title><module> (distributed/scheduler.py:1) (1 samples, 0.46%)</title><rect x="82.5688%" y="612" width="0.4587%" height="15" fill="rgb(227,144,33)" fg:x="180" fg:w="1"/><text x="82.8188%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="82.5688%" y="628" width="0.4587%" height="15" fill="rgb(249,163,44)" fg:x="180" fg:w="1"/><text x="82.8188%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="82.5688%" y="644" width="0.4587%" height="15" fill="rgb(234,15,39)" fg:x="180" fg:w="1"/><text x="82.8188%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="82.5688%" y="660" width="0.4587%" height="15" fill="rgb(207,66,16)" fg:x="180" fg:w="1"/><text x="82.8188%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="82.5688%" y="676" width="0.4587%" height="15" fill="rgb(233,112,24)" fg:x="180" fg:w="1"/><text x="82.8188%" y="686.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="82.5688%" y="692" width="0.4587%" height="15" fill="rgb(230,90,22)" fg:x="180" fg:w="1"/><text x="82.8188%" y="702.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="82.5688%" y="708" width="0.4587%" height="15" fill="rgb(229,61,13)" fg:x="180" fg:w="1"/><text x="82.8188%" y="718.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.46%)</title><rect x="83.0275%" y="596" width="0.4587%" height="15" fill="rgb(225,57,24)" fg:x="181" fg:w="1"/><text x="83.2775%" y="606.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.46%)</title><rect x="83.0275%" y="612" width="0.4587%" height="15" fill="rgb(208,169,48)" fg:x="181" fg:w="1"/><text x="83.2775%" y="622.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.46%)</title><rect x="83.0275%" y="628" width="0.4587%" height="15" fill="rgb(244,218,51)" fg:x="181" fg:w="1"/><text x="83.2775%" y="638.50"></text></g><g><title>scan_plain_spaces (yaml/scanner.py:1311) (1 samples, 0.46%)</title><rect x="83.0275%" y="644" width="0.4587%" height="15" fill="rgb(214,148,10)" fg:x="181" fg:w="1"/><text x="83.2775%" y="654.50"></text></g><g><title>prefix (yaml/reader.py:94) (1 samples, 0.46%)</title><rect x="83.0275%" y="660" width="0.4587%" height="15" fill="rgb(225,174,27)" fg:x="181" fg:w="1"/><text x="83.2775%" y="670.50"></text></g><g><title>check_event (yaml/parser.py:94) (5 samples, 2.29%)</title><rect x="83.0275%" y="548" width="2.2936%" height="15" fill="rgb(230,96,26)" fg:x="181" fg:w="5"/><text x="83.2775%" y="558.50">c..</text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (5 samples, 2.29%)</title><rect x="83.0275%" y="564" width="2.2936%" height="15" fill="rgb(232,10,30)" fg:x="181" fg:w="5"/><text x="83.2775%" y="574.50">p..</text></g><g><title>check_token (yaml/scanner.py:113) (5 samples, 2.29%)</title><rect x="83.0275%" y="580" width="2.2936%" height="15" fill="rgb(222,8,50)" fg:x="181" fg:w="5"/><text x="83.2775%" y="590.50">c..</text></g><g><title>need_more_tokens (yaml/scanner.py:145) (4 samples, 1.83%)</title><rect x="83.4862%" y="596" width="1.8349%" height="15" fill="rgb(213,81,27)" fg:x="182" fg:w="4"/><text x="83.7362%" y="606.50">n..</text></g><g><title>stale_possible_simple_keys (yaml/scanner.py:279) (4 samples, 1.83%)</title><rect x="83.4862%" y="612" width="1.8349%" height="15" fill="rgb(245,50,10)" fg:x="182" fg:w="4"/><text x="83.7362%" y="622.50">s..</text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.46%)</title><rect x="85.7798%" y="564" width="0.4587%" height="15" fill="rgb(216,100,18)" fg:x="187" fg:w="1"/><text x="86.0298%" y="574.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.46%)</title><rect x="85.7798%" y="580" width="0.4587%" height="15" fill="rgb(236,147,54)" fg:x="187" fg:w="1"/><text x="86.0298%" y="590.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.46%)</title><rect x="85.7798%" y="596" width="0.4587%" height="15" fill="rgb(205,143,26)" fg:x="187" fg:w="1"/><text x="86.0298%" y="606.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.46%)</title><rect x="85.7798%" y="612" width="0.4587%" height="15" fill="rgb(236,26,9)" fg:x="187" fg:w="1"/><text x="86.0298%" y="622.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.46%)</title><rect x="85.7798%" y="628" width="0.4587%" height="15" fill="rgb(221,165,53)" fg:x="187" fg:w="1"/><text x="86.0298%" y="638.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.46%)</title><rect x="85.7798%" y="644" width="0.4587%" height="15" fill="rgb(214,110,17)" fg:x="187" fg:w="1"/><text x="86.0298%" y="654.50"></text></g><g><title>get_mark (yaml/reader.py:114) (1 samples, 0.46%)</title><rect x="85.7798%" y="660" width="0.4587%" height="15" fill="rgb(237,197,12)" fg:x="187" fg:w="1"/><text x="86.0298%" y="670.50"></text></g><g><title>check_event (yaml/parser.py:94) (2 samples, 0.92%)</title><rect x="86.2385%" y="596" width="0.9174%" height="15" fill="rgb(205,84,17)" fg:x="188" fg:w="2"/><text x="86.4885%" y="606.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (2 samples, 0.92%)</title><rect x="86.2385%" y="612" width="0.9174%" height="15" fill="rgb(237,18,45)" fg:x="188" fg:w="2"/><text x="86.4885%" y="622.50"></text></g><g><title>check_token (yaml/scanner.py:113) (2 samples, 0.92%)</title><rect x="86.2385%" y="628" width="0.9174%" height="15" fill="rgb(221,87,14)" fg:x="188" fg:w="2"/><text x="86.4885%" y="638.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (2 samples, 0.92%)</title><rect x="86.2385%" y="644" width="0.9174%" height="15" fill="rgb(238,186,15)" fg:x="188" fg:w="2"/><text x="86.4885%" y="654.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 0.92%)</title><rect x="86.2385%" y="660" width="0.9174%" height="15" fill="rgb(208,115,11)" fg:x="188" fg:w="2"/><text x="86.4885%" y="670.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.46%)</title><rect x="86.6972%" y="676" width="0.4587%" height="15" fill="rgb(254,175,0)" fg:x="189" fg:w="1"/><text x="86.9472%" y="686.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.46%)</title><rect x="87.1560%" y="612" width="0.4587%" height="15" fill="rgb(227,24,42)" fg:x="190" fg:w="1"/><text x="87.4060%" y="622.50"></text></g><g><title>parse_block_sequence_first_entry (yaml/parser.py:376) (1 samples, 0.46%)</title><rect x="87.1560%" y="628" width="0.4587%" height="15" fill="rgb(223,211,37)" fg:x="190" fg:w="1"/><text x="87.4060%" y="638.50"></text></g><g><title>parse_block_sequence_entry (yaml/parser.py:381) (1 samples, 0.46%)</title><rect x="87.1560%" y="644" width="0.4587%" height="15" fill="rgb(235,49,27)" fg:x="190" fg:w="1"/><text x="87.4060%" y="654.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.46%)</title><rect x="87.1560%" y="660" width="0.4587%" height="15" fill="rgb(254,97,51)" fg:x="190" fg:w="1"/><text x="87.4060%" y="670.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.46%)</title><rect x="87.1560%" y="676" width="0.4587%" height="15" fill="rgb(249,51,40)" fg:x="190" fg:w="1"/><text x="87.4060%" y="686.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.46%)</title><rect x="87.1560%" y="692" width="0.4587%" height="15" fill="rgb(210,128,45)" fg:x="190" fg:w="1"/><text x="87.4060%" y="702.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.46%)</title><rect x="87.1560%" y="708" width="0.4587%" height="15" fill="rgb(224,137,50)" fg:x="190" fg:w="1"/><text x="87.4060%" y="718.50"></text></g><g><title>scan_plain_spaces (yaml/scanner.py:1311) (1 samples, 0.46%)</title><rect x="87.1560%" y="724" width="0.4587%" height="15" fill="rgb(242,15,9)" fg:x="190" fg:w="1"/><text x="87.4060%" y="734.50"></text></g><g><title>compute (dask/base.py:355) (31 samples, 14.22%)</title><rect x="73.8532%" y="100" width="14.2202%" height="15" fill="rgb(233,187,41)" fg:x="161" fg:w="31"/><text x="74.1032%" y="110.50">compute (dask/base.py:..</text></g><g><title>compute (dask/base.py:603) (31 samples, 14.22%)</title><rect x="73.8532%" y="116" width="14.2202%" height="15" fill="rgb(227,2,29)" fg:x="161" fg:w="31"/><text x="74.1032%" y="126.50">compute (dask/base.py:..</text></g><g><title>get_scheduler (dask/base.py:1449) (31 samples, 14.22%)</title><rect x="73.8532%" y="132" width="14.2202%" height="15" fill="rgb(222,70,3)" fg:x="161" fg:w="31"/><text x="74.1032%" y="142.50">get_scheduler (dask/ba..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (31 samples, 14.22%)</title><rect x="73.8532%" y="148" width="14.2202%" height="15" fill="rgb(213,11,42)" fg:x="161" fg:w="31"/><text x="74.1032%" y="158.50">_find_and_load (<froze..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (31 samples, 14.22%)</title><rect x="73.8532%" y="164" width="14.2202%" height="15" fill="rgb(225,150,9)" fg:x="161" fg:w="31"/><text x="74.1032%" y="174.50">_find_and_load_unlocke..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (31 samples, 14.22%)</title><rect x="73.8532%" y="180" width="14.2202%" height="15" fill="rgb(230,162,45)" fg:x="161" fg:w="31"/><text x="74.1032%" y="190.50">_load_unlocked (<froze..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (31 samples, 14.22%)</title><rect x="73.8532%" y="196" width="14.2202%" height="15" fill="rgb(222,14,52)" fg:x="161" fg:w="31"/><text x="74.1032%" y="206.50">exec_module (<frozen i..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (31 samples, 14.22%)</title><rect x="73.8532%" y="212" width="14.2202%" height="15" fill="rgb(254,198,14)" fg:x="161" fg:w="31"/><text x="74.1032%" y="222.50">_call_with_frames_remo..</text></g><g><title><module> (distributed/__init__.py:1) (31 samples, 14.22%)</title><rect x="73.8532%" y="228" width="14.2202%" height="15" fill="rgb(220,217,30)" fg:x="161" fg:w="31"/><text x="74.1032%" y="238.50"><module> (distributed/..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 5.05%)</title><rect x="83.0275%" y="244" width="5.0459%" height="15" fill="rgb(215,146,41)" fg:x="181" fg:w="11"/><text x="83.2775%" y="254.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="83.0275%" y="260" width="5.0459%" height="15" fill="rgb(217,27,36)" fg:x="181" fg:w="11"/><text x="83.2775%" y="270.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 5.05%)</title><rect x="83.0275%" y="276" width="5.0459%" height="15" fill="rgb(219,218,39)" fg:x="181" fg:w="11"/><text x="83.2775%" y="286.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 5.05%)</title><rect x="83.0275%" y="292" width="5.0459%" height="15" fill="rgb(219,4,42)" fg:x="181" fg:w="11"/><text x="83.2775%" y="302.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 5.05%)</title><rect x="83.0275%" y="308" width="5.0459%" height="15" fill="rgb(249,119,36)" fg:x="181" fg:w="11"/><text x="83.2775%" y="318.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 5.05%)</title><rect x="83.0275%" y="324" width="5.0459%" height="15" fill="rgb(209,23,33)" fg:x="181" fg:w="11"/><text x="83.2775%" y="334.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="83.0275%" y="340" width="5.0459%" height="15" fill="rgb(211,10,0)" fg:x="181" fg:w="11"/><text x="83.2775%" y="350.50">_call_..</text></g><g><title><module> (distributed/config.py:1) (11 samples, 5.05%)</title><rect x="83.0275%" y="356" width="5.0459%" height="15" fill="rgb(208,99,37)" fg:x="181" fg:w="11"/><text x="83.2775%" y="366.50"><modul..</text></g><g><title>safe_load (yaml/__init__.py:117) (11 samples, 5.05%)</title><rect x="83.0275%" y="372" width="5.0459%" height="15" fill="rgb(213,132,31)" fg:x="181" fg:w="11"/><text x="83.2775%" y="382.50">safe_l..</text></g><g><title>load (yaml/__init__.py:74) (11 samples, 5.05%)</title><rect x="83.0275%" y="388" width="5.0459%" height="15" fill="rgb(243,129,40)" fg:x="181" fg:w="11"/><text x="83.2775%" y="398.50">load (..</text></g><g><title>get_single_data (yaml/constructor.py:47) (11 samples, 5.05%)</title><rect x="83.0275%" y="404" width="5.0459%" height="15" fill="rgb(210,66,33)" fg:x="181" fg:w="11"/><text x="83.2775%" y="414.50">get_si..</text></g><g><title>get_single_node (yaml/composer.py:29) (11 samples, 5.05%)</title><rect x="83.0275%" y="420" width="5.0459%" height="15" fill="rgb(209,189,4)" fg:x="181" fg:w="11"/><text x="83.2775%" y="430.50">get_si..</text></g><g><title>compose_document (yaml/composer.py:50) (11 samples, 5.05%)</title><rect x="83.0275%" y="436" width="5.0459%" height="15" fill="rgb(214,107,37)" fg:x="181" fg:w="11"/><text x="83.2775%" y="446.50">compos..</text></g><g><title>compose_node (yaml/composer.py:63) (11 samples, 5.05%)</title><rect x="83.0275%" y="452" width="5.0459%" height="15" fill="rgb(245,88,54)" fg:x="181" fg:w="11"/><text x="83.2775%" y="462.50">compos..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (11 samples, 5.05%)</title><rect x="83.0275%" y="468" width="5.0459%" height="15" fill="rgb(205,146,20)" fg:x="181" fg:w="11"/><text x="83.2775%" y="478.50">compos..</text></g><g><title>compose_node (yaml/composer.py:63) (11 samples, 5.05%)</title><rect x="83.0275%" y="484" width="5.0459%" height="15" fill="rgb(220,161,25)" fg:x="181" fg:w="11"/><text x="83.2775%" y="494.50">compos..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (11 samples, 5.05%)</title><rect x="83.0275%" y="500" width="5.0459%" height="15" fill="rgb(215,152,15)" fg:x="181" fg:w="11"/><text x="83.2775%" y="510.50">compos..</text></g><g><title>compose_node (yaml/composer.py:63) (11 samples, 5.05%)</title><rect x="83.0275%" y="516" width="5.0459%" height="15" fill="rgb(233,192,44)" fg:x="181" fg:w="11"/><text x="83.2775%" y="526.50">compos..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (11 samples, 5.05%)</title><rect x="83.0275%" y="532" width="5.0459%" height="15" fill="rgb(240,170,46)" fg:x="181" fg:w="11"/><text x="83.2775%" y="542.50">compos..</text></g><g><title>compose_node (yaml/composer.py:63) (6 samples, 2.75%)</title><rect x="85.3211%" y="548" width="2.7523%" height="15" fill="rgb(207,104,33)" fg:x="186" fg:w="6"/><text x="85.5711%" y="558.50">co..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (4 samples, 1.83%)</title><rect x="86.2385%" y="564" width="1.8349%" height="15" fill="rgb(219,21,39)" fg:x="188" fg:w="4"/><text x="86.4885%" y="574.50">c..</text></g><g><title>compose_node (yaml/composer.py:63) (4 samples, 1.83%)</title><rect x="86.2385%" y="580" width="1.8349%" height="15" fill="rgb(214,133,29)" fg:x="188" fg:w="4"/><text x="86.4885%" y="590.50">c..</text></g><g><title>compose_sequence_node (yaml/composer.py:99) (2 samples, 0.92%)</title><rect x="87.1560%" y="596" width="0.9174%" height="15" fill="rgb(226,93,6)" fg:x="190" fg:w="2"/><text x="87.4060%" y="606.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.46%)</title><rect x="87.6147%" y="612" width="0.4587%" height="15" fill="rgb(252,222,34)" fg:x="191" fg:w="1"/><text x="87.8647%" y="622.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (1 samples, 0.46%)</title><rect x="87.6147%" y="628" width="0.4587%" height="15" fill="rgb(252,92,48)" fg:x="191" fg:w="1"/><text x="87.8647%" y="638.50"></text></g><g><title>compose_node (yaml/composer.py:63) (1 samples, 0.46%)</title><rect x="87.6147%" y="644" width="0.4587%" height="15" fill="rgb(245,223,24)" fg:x="191" fg:w="1"/><text x="87.8647%" y="654.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.46%)</title><rect x="87.6147%" y="660" width="0.4587%" height="15" fill="rgb(205,176,3)" fg:x="191" fg:w="1"/><text x="87.8647%" y="670.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.46%)</title><rect x="87.6147%" y="676" width="0.4587%" height="15" fill="rgb(235,151,15)" fg:x="191" fg:w="1"/><text x="87.8647%" y="686.50"></text></g><g><title>parse_block_node_or_indentless_sequence (yaml/parser.py:270) (1 samples, 0.46%)</title><rect x="87.6147%" y="692" width="0.4587%" height="15" fill="rgb(237,209,11)" fg:x="191" fg:w="1"/><text x="87.8647%" y="702.50"></text></g><g><title>parse_node (yaml/parser.py:273) (1 samples, 0.46%)</title><rect x="87.6147%" y="708" width="0.4587%" height="15" fill="rgb(243,227,24)" fg:x="191" fg:w="1"/><text x="87.8647%" y="718.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.46%)</title><rect x="87.6147%" y="724" width="0.4587%" height="15" fill="rgb(239,193,16)" fg:x="191" fg:w="1"/><text x="87.8647%" y="734.50"></text></g><g><title>need_more_tokens (yaml/scanner.py:145) (1 samples, 0.46%)</title><rect x="87.6147%" y="740" width="0.4587%" height="15" fill="rgb(231,27,9)" fg:x="191" fg:w="1"/><text x="87.8647%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="116" width="0.9174%" height="15" fill="rgb(219,169,10)" fg:x="192" fg:w="2"/><text x="88.3234%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="132" width="0.9174%" height="15" fill="rgb(244,229,43)" fg:x="192" fg:w="2"/><text x="88.3234%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="148" width="0.9174%" height="15" fill="rgb(254,38,20)" fg:x="192" fg:w="2"/><text x="88.3234%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="164" width="0.9174%" height="15" fill="rgb(250,47,30)" fg:x="192" fg:w="2"/><text x="88.3234%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="180" width="0.9174%" height="15" fill="rgb(224,124,36)" fg:x="192" fg:w="2"/><text x="88.3234%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (2 samples, 0.92%)</title><rect x="88.0734%" y="196" width="0.9174%" height="15" fill="rgb(246,68,51)" fg:x="192" fg:w="2"/><text x="88.3234%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="212" width="0.9174%" height="15" fill="rgb(253,43,49)" fg:x="192" fg:w="2"/><text x="88.3234%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="228" width="0.9174%" height="15" fill="rgb(219,54,36)" fg:x="192" fg:w="2"/><text x="88.3234%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="244" width="0.9174%" height="15" fill="rgb(227,133,34)" fg:x="192" fg:w="2"/><text x="88.3234%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="260" width="0.9174%" height="15" fill="rgb(247,227,15)" fg:x="192" fg:w="2"/><text x="88.3234%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="276" width="0.9174%" height="15" fill="rgb(229,96,14)" fg:x="192" fg:w="2"/><text x="88.3234%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (2 samples, 0.92%)</title><rect x="88.0734%" y="292" width="0.9174%" height="15" fill="rgb(220,79,17)" fg:x="192" fg:w="2"/><text x="88.3234%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="308" width="0.9174%" height="15" fill="rgb(205,131,53)" fg:x="192" fg:w="2"/><text x="88.3234%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="324" width="0.9174%" height="15" fill="rgb(209,50,29)" fg:x="192" fg:w="2"/><text x="88.3234%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="340" width="0.9174%" height="15" fill="rgb(245,86,46)" fg:x="192" fg:w="2"/><text x="88.3234%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="356" width="0.9174%" height="15" fill="rgb(235,66,46)" fg:x="192" fg:w="2"/><text x="88.3234%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="372" width="0.9174%" height="15" fill="rgb(232,148,31)" fg:x="192" fg:w="2"/><text x="88.3234%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (2 samples, 0.92%)</title><rect x="88.0734%" y="388" width="0.9174%" height="15" fill="rgb(217,149,8)" fg:x="192" fg:w="2"/><text x="88.3234%" y="398.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="404" width="0.9174%" height="15" fill="rgb(209,183,11)" fg:x="192" fg:w="2"/><text x="88.3234%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="420" width="0.9174%" height="15" fill="rgb(208,55,20)" fg:x="192" fg:w="2"/><text x="88.3234%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="436" width="0.9174%" height="15" fill="rgb(218,39,14)" fg:x="192" fg:w="2"/><text x="88.3234%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="452" width="0.9174%" height="15" fill="rgb(216,169,33)" fg:x="192" fg:w="2"/><text x="88.3234%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="468" width="0.9174%" height="15" fill="rgb(233,80,24)" fg:x="192" fg:w="2"/><text x="88.3234%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (2 samples, 0.92%)</title><rect x="88.0734%" y="484" width="0.9174%" height="15" fill="rgb(213,179,31)" fg:x="192" fg:w="2"/><text x="88.3234%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="500" width="0.9174%" height="15" fill="rgb(209,19,5)" fg:x="192" fg:w="2"/><text x="88.3234%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="516" width="0.9174%" height="15" fill="rgb(219,18,35)" fg:x="192" fg:w="2"/><text x="88.3234%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="532" width="0.9174%" height="15" fill="rgb(209,169,16)" fg:x="192" fg:w="2"/><text x="88.3234%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="548" width="0.9174%" height="15" fill="rgb(245,90,51)" fg:x="192" fg:w="2"/><text x="88.3234%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="564" width="0.9174%" height="15" fill="rgb(220,99,45)" fg:x="192" fg:w="2"/><text x="88.3234%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (2 samples, 0.92%)</title><rect x="88.0734%" y="580" width="0.9174%" height="15" fill="rgb(249,89,25)" fg:x="192" fg:w="2"/><text x="88.3234%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="596" width="0.9174%" height="15" fill="rgb(239,193,0)" fg:x="192" fg:w="2"/><text x="88.3234%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="612" width="0.9174%" height="15" fill="rgb(231,126,1)" fg:x="192" fg:w="2"/><text x="88.3234%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="628" width="0.9174%" height="15" fill="rgb(243,166,3)" fg:x="192" fg:w="2"/><text x="88.3234%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="644" width="0.9174%" height="15" fill="rgb(223,22,34)" fg:x="192" fg:w="2"/><text x="88.3234%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="660" width="0.9174%" height="15" fill="rgb(251,52,51)" fg:x="192" fg:w="2"/><text x="88.3234%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="676" width="0.9174%" height="15" fill="rgb(221,165,28)" fg:x="192" fg:w="2"/><text x="88.3234%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="692" width="0.9174%" height="15" fill="rgb(218,121,47)" fg:x="192" fg:w="2"/><text x="88.3234%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="708" width="0.9174%" height="15" fill="rgb(209,120,9)" fg:x="192" fg:w="2"/><text x="88.3234%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (2 samples, 0.92%)</title><rect x="88.0734%" y="724" width="0.9174%" height="15" fill="rgb(236,68,12)" fg:x="192" fg:w="2"/><text x="88.3234%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="88.0734%" y="740" width="0.9174%" height="15" fill="rgb(225,194,26)" fg:x="192" fg:w="2"/><text x="88.3234%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="88.0734%" y="756" width="0.9174%" height="15" fill="rgb(231,84,39)" fg:x="192" fg:w="2"/><text x="88.3234%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="88.0734%" y="772" width="0.9174%" height="15" fill="rgb(210,11,45)" fg:x="192" fg:w="2"/><text x="88.3234%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="88.0734%" y="788" width="0.9174%" height="15" fill="rgb(224,54,52)" fg:x="192" fg:w="2"/><text x="88.3234%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="88.0734%" y="804" width="0.9174%" height="15" fill="rgb(238,102,14)" fg:x="192" fg:w="2"/><text x="88.3234%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (2 samples, 0.92%)</title><rect x="88.0734%" y="820" width="0.9174%" height="15" fill="rgb(243,160,52)" fg:x="192" fg:w="2"/><text x="88.3234%" y="830.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.46%)</title><rect x="88.5321%" y="836" width="0.4587%" height="15" fill="rgb(216,114,19)" fg:x="193" fg:w="1"/><text x="88.7821%" y="846.50"></text></g><g><title>__getitem__ (typing.py:909) (1 samples, 0.46%)</title><rect x="88.5321%" y="852" width="0.4587%" height="15" fill="rgb(244,166,37)" fg:x="193" fg:w="1"/><text x="88.7821%" y="862.50"></text></g><g><title>copy_with (typing.py:841) (1 samples, 0.46%)</title><rect x="88.5321%" y="868" width="0.4587%" height="15" fill="rgb(246,29,44)" fg:x="193" fg:w="1"/><text x="88.7821%" y="878.50"></text></g><g><title>__init__ (typing.py:739) (1 samples, 0.46%)</title><rect x="88.5321%" y="884" width="0.4587%" height="15" fill="rgb(215,56,53)" fg:x="193" fg:w="1"/><text x="88.7821%" y="894.50"></text></g><g><title><genexpr> (typing.py:743) (1 samples, 0.46%)</title><rect x="88.5321%" y="900" width="0.4587%" height="15" fill="rgb(217,60,2)" fg:x="193" fg:w="1"/><text x="88.7821%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="88.9908%" y="532" width="0.4587%" height="15" fill="rgb(207,26,24)" fg:x="194" fg:w="1"/><text x="89.2408%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="88.9908%" y="548" width="0.4587%" height="15" fill="rgb(252,210,15)" fg:x="194" fg:w="1"/><text x="89.2408%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="89.4495%" y="980" width="0.4587%" height="15" fill="rgb(253,209,26)" fg:x="195" fg:w="1"/><text x="89.6995%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="89.4495%" y="996" width="0.4587%" height="15" fill="rgb(238,170,14)" fg:x="195" fg:w="1"/><text x="89.6995%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="89.4495%" y="1012" width="0.4587%" height="15" fill="rgb(216,178,15)" fg:x="195" fg:w="1"/><text x="89.6995%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="89.4495%" y="1028" width="0.4587%" height="15" fill="rgb(250,197,2)" fg:x="195" fg:w="1"/><text x="89.6995%" y="1038.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="89.4495%" y="1044" width="0.4587%" height="15" fill="rgb(212,70,42)" fg:x="195" fg:w="1"/><text x="89.6995%" y="1054.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.46%)</title><rect x="89.4495%" y="1060" width="0.4587%" height="15" fill="rgb(227,213,9)" fg:x="195" fg:w="1"/><text x="89.6995%" y="1070.50"></text></g><g><title><lambda> (pyparsing/util.py:284) (1 samples, 0.46%)</title><rect x="89.9083%" y="1300" width="0.4587%" height="15" fill="rgb(245,99,25)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1310.50"></text></g><g><title>_make_synonym_function (pyparsing/util.py:240) (1 samples, 0.46%)</title><rect x="89.9083%" y="1316" width="0.4587%" height="15" fill="rgb(250,82,29)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1326.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.46%)</title><rect x="89.9083%" y="1332" width="0.4587%" height="15" fill="rgb(241,226,54)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1342.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.46%)</title><rect x="89.9083%" y="1348" width="0.4587%" height="15" fill="rgb(221,99,41)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1358.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.46%)</title><rect x="89.9083%" y="1364" width="0.4587%" height="15" fill="rgb(213,90,21)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1374.50"></text></g><g><title>_signature_is_builtin (inspect.py:1866) (1 samples, 0.46%)</title><rect x="89.9083%" y="1380" width="0.4587%" height="15" fill="rgb(205,208,24)" fg:x="196" fg:w="1"/><text x="90.1583%" y="1390.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 0.92%)</title><rect x="89.9083%" y="980" width="0.9174%" height="15" fill="rgb(246,31,12)" fg:x="196" fg:w="2"/><text x="90.1583%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="89.9083%" y="996" width="0.9174%" height="15" fill="rgb(213,154,6)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="89.9083%" y="1012" width="0.9174%" height="15" fill="rgb(222,163,29)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="89.9083%" y="1028" width="0.9174%" height="15" fill="rgb(227,201,8)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="89.9083%" y="1044" width="0.9174%" height="15" fill="rgb(233,9,32)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="89.9083%" y="1060" width="0.9174%" height="15" fill="rgb(217,54,24)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="89.9083%" y="1076" width="0.9174%" height="15" fill="rgb(235,192,0)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (2 samples, 0.92%)</title><rect x="89.9083%" y="1092" width="0.9174%" height="15" fill="rgb(235,45,9)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="89.9083%" y="1108" width="0.9174%" height="15" fill="rgb(246,42,40)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="89.9083%" y="1124" width="0.9174%" height="15" fill="rgb(248,111,24)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="89.9083%" y="1140" width="0.9174%" height="15" fill="rgb(249,65,22)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="89.9083%" y="1156" width="0.9174%" height="15" fill="rgb(238,111,51)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="89.9083%" y="1172" width="0.9174%" height="15" fill="rgb(250,118,22)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (2 samples, 0.92%)</title><rect x="89.9083%" y="1188" width="0.9174%" height="15" fill="rgb(234,84,26)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="89.9083%" y="1204" width="0.9174%" height="15" fill="rgb(243,172,12)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="89.9083%" y="1220" width="0.9174%" height="15" fill="rgb(236,150,49)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="89.9083%" y="1236" width="0.9174%" height="15" fill="rgb(225,197,26)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="89.9083%" y="1252" width="0.9174%" height="15" fill="rgb(214,17,42)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="89.9083%" y="1268" width="0.9174%" height="15" fill="rgb(224,165,40)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1278.50"></text></g><g><title><module> (pyparsing/helpers.py:2) (2 samples, 0.92%)</title><rect x="89.9083%" y="1284" width="0.9174%" height="15" fill="rgb(246,100,4)" fg:x="196" fg:w="2"/><text x="90.1583%" y="1294.50"></text></g><g><title>__init__ (pyparsing/core.py:5706) (1 samples, 0.46%)</title><rect x="90.3670%" y="1300" width="0.4587%" height="15" fill="rgb(222,103,0)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1310.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:4577) (1 samples, 0.46%)</title><rect x="90.3670%" y="1316" width="0.4587%" height="15" fill="rgb(227,189,26)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1326.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (1 samples, 0.46%)</title><rect x="90.3670%" y="1332" width="0.4587%" height="15" fill="rgb(214,202,17)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1342.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (1 samples, 0.46%)</title><rect x="90.3670%" y="1348" width="0.4587%" height="15" fill="rgb(229,111,3)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1358.50"></text></g><g><title><listcomp> (pyparsing/core.py:3796) (1 samples, 0.46%)</title><rect x="90.3670%" y="1364" width="0.4587%" height="15" fill="rgb(229,172,15)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1374.50"></text></g><g><title>copy (pyparsing/core.py:522) (1 samples, 0.46%)</title><rect x="90.3670%" y="1380" width="0.4587%" height="15" fill="rgb(230,224,35)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1390.50"></text></g><g><title>copy (copy.py:66) (1 samples, 0.46%)</title><rect x="90.3670%" y="1396" width="0.4587%" height="15" fill="rgb(251,141,6)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1406.50"></text></g><g><title>_reconstruct (copy.py:258) (1 samples, 0.46%)</title><rect x="90.3670%" y="1412" width="0.4587%" height="15" fill="rgb(225,208,6)" fg:x="197" fg:w="1"/><text x="90.6170%" y="1422.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="89.4495%" y="788" width="1.8349%" height="15" fill="rgb(246,181,16)" fg:x="195" fg:w="4"/><text x="89.6995%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="89.4495%" y="804" width="1.8349%" height="15" fill="rgb(227,129,36)" fg:x="195" fg:w="4"/><text x="89.6995%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="89.4495%" y="820" width="1.8349%" height="15" fill="rgb(248,117,24)" fg:x="195" fg:w="4"/><text x="89.6995%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="89.4495%" y="836" width="1.8349%" height="15" fill="rgb(214,185,35)" fg:x="195" fg:w="4"/><text x="89.6995%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="89.4495%" y="852" width="1.8349%" height="15" fill="rgb(236,150,34)" fg:x="195" fg:w="4"/><text x="89.6995%" y="862.50">_..</text></g><g><title><module> (google_auth_httplib2.py:15) (4 samples, 1.83%)</title><rect x="89.4495%" y="868" width="1.8349%" height="15" fill="rgb(243,228,27)" fg:x="195" fg:w="4"/><text x="89.6995%" y="878.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 1.83%)</title><rect x="89.4495%" y="884" width="1.8349%" height="15" fill="rgb(245,77,44)" fg:x="195" fg:w="4"/><text x="89.6995%" y="894.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 1.83%)</title><rect x="89.4495%" y="900" width="1.8349%" height="15" fill="rgb(235,214,42)" fg:x="195" fg:w="4"/><text x="89.6995%" y="910.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="89.4495%" y="916" width="1.8349%" height="15" fill="rgb(221,74,3)" fg:x="195" fg:w="4"/><text x="89.6995%" y="926.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="89.4495%" y="932" width="1.8349%" height="15" fill="rgb(206,121,29)" fg:x="195" fg:w="4"/><text x="89.6995%" y="942.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="89.4495%" y="948" width="1.8349%" height="15" fill="rgb(249,131,53)" fg:x="195" fg:w="4"/><text x="89.6995%" y="958.50">_..</text></g><g><title><module> (httplib2/__init__.py:2) (4 samples, 1.83%)</title><rect x="89.4495%" y="964" width="1.8349%" height="15" fill="rgb(236,170,29)" fg:x="195" fg:w="4"/><text x="89.6995%" y="974.50"><..</text></g><g><title>compile (re.py:250) (1 samples, 0.46%)</title><rect x="90.8257%" y="980" width="0.4587%" height="15" fill="rgb(247,96,15)" fg:x="198" fg:w="1"/><text x="91.0757%" y="990.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.46%)</title><rect x="90.8257%" y="996" width="0.4587%" height="15" fill="rgb(211,210,7)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1006.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.46%)</title><rect x="90.8257%" y="1012" width="0.4587%" height="15" fill="rgb(240,88,50)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1022.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.46%)</title><rect x="90.8257%" y="1028" width="0.4587%" height="15" fill="rgb(209,229,26)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1038.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.46%)</title><rect x="90.8257%" y="1044" width="0.4587%" height="15" fill="rgb(210,68,23)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1054.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.46%)</title><rect x="90.8257%" y="1060" width="0.4587%" height="15" fill="rgb(229,180,13)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1070.50"></text></g><g><title>_compile_charset (sre_compile.py:265) (1 samples, 0.46%)</title><rect x="90.8257%" y="1076" width="0.4587%" height="15" fill="rgb(236,53,44)" fg:x="198" fg:w="1"/><text x="91.0757%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="91.2844%" y="916" width="0.4587%" height="15" fill="rgb(244,214,29)" fg:x="199" fg:w="1"/><text x="91.5344%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="91.2844%" y="932" width="0.4587%" height="15" fill="rgb(220,75,29)" fg:x="199" fg:w="1"/><text x="91.5344%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="91.2844%" y="948" width="0.4587%" height="15" fill="rgb(214,183,37)" fg:x="199" fg:w="1"/><text x="91.5344%" y="958.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="91.2844%" y="964" width="0.4587%" height="15" fill="rgb(239,117,29)" fg:x="199" fg:w="1"/><text x="91.5344%" y="974.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="91.2844%" y="980" width="0.4587%" height="15" fill="rgb(237,171,35)" fg:x="199" fg:w="1"/><text x="91.5344%" y="990.50"></text></g><g><title><module> (email/mime/multipart.py:5) (1 samples, 0.46%)</title><rect x="91.2844%" y="996" width="0.4587%" height="15" fill="rgb(229,178,53)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="91.2844%" y="1012" width="0.4587%" height="15" fill="rgb(210,102,19)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="91.2844%" y="1028" width="0.4587%" height="15" fill="rgb(235,127,22)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="91.2844%" y="1044" width="0.4587%" height="15" fill="rgb(244,31,31)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="91.2844%" y="1060" width="0.4587%" height="15" fill="rgb(231,43,21)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="91.2844%" y="1076" width="0.4587%" height="15" fill="rgb(217,131,35)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1086.50"></text></g><g><title><module> (email/mime/base.py:5) (1 samples, 0.46%)</title><rect x="91.2844%" y="1092" width="0.4587%" height="15" fill="rgb(221,149,4)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="91.2844%" y="1108" width="0.4587%" height="15" fill="rgb(232,170,28)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="91.2844%" y="1124" width="0.4587%" height="15" fill="rgb(238,56,10)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="91.2844%" y="1140" width="0.4587%" height="15" fill="rgb(235,196,14)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="91.2844%" y="1156" width="0.4587%" height="15" fill="rgb(216,45,48)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="91.2844%" y="1172" width="0.4587%" height="15" fill="rgb(238,213,17)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1182.50"></text></g><g><title><module> (email/policy.py:1) (1 samples, 0.46%)</title><rect x="91.2844%" y="1188" width="0.4587%" height="15" fill="rgb(212,13,2)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="91.2844%" y="1204" width="0.4587%" height="15" fill="rgb(240,114,20)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="91.2844%" y="1220" width="0.4587%" height="15" fill="rgb(228,41,40)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="91.2844%" y="1236" width="0.4587%" height="15" fill="rgb(244,132,35)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="91.2844%" y="1252" width="0.4587%" height="15" fill="rgb(253,189,4)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1262.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.46%)</title><rect x="91.2844%" y="1268" width="0.4587%" height="15" fill="rgb(224,37,19)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1278.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.46%)</title><rect x="91.2844%" y="1284" width="0.4587%" height="15" fill="rgb(235,223,18)" fg:x="199" fg:w="1"/><text x="91.5344%" y="1294.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="91.7431%" y="1588" width="0.4587%" height="15" fill="rgb(235,163,25)" fg:x="200" fg:w="1"/><text x="91.9931%" y="1598.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="91.7431%" y="1604" width="0.4587%" height="15" fill="rgb(217,145,28)" fg:x="200" fg:w="1"/><text x="91.9931%" y="1614.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="91.7431%" y="1620" width="0.4587%" height="15" fill="rgb(223,223,32)" fg:x="200" fg:w="1"/><text x="91.9931%" y="1630.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (1 samples, 0.46%)</title><rect x="91.7431%" y="1636" width="0.4587%" height="15" fill="rgb(227,189,39)" fg:x="200" fg:w="1"/><text x="91.9931%" y="1646.50"></text></g><g><title>_path_hooks (<frozen importlib._bootstrap_external>:1333) (1 samples, 0.46%)</title><rect x="91.7431%" y="1652" width="0.4587%" height="15" fill="rgb(248,10,22)" fg:x="200" fg:w="1"/><text x="91.9931%" y="1662.50"></text></g><g><title>ORAddress (pyasn1_modules/rfc2459.py:725) (1 samples, 0.46%)</title><rect x="92.2018%" y="1652" width="0.4587%" height="15" fill="rgb(248,46,39)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.46%)</title><rect x="92.2018%" y="1668" width="0.4587%" height="15" fill="rgb(248,113,48)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1678.50"></text></g><g><title>__computeTagToPosMap (pyasn1/type/namedtype.py:245) (1 samples, 0.46%)</title><rect x="92.2018%" y="1684" width="0.4587%" height="15" fill="rgb(245,16,25)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1694.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (1 samples, 0.46%)</title><rect x="92.2018%" y="1700" width="0.4587%" height="15" fill="rgb(249,152,16)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1710.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.46%)</title><rect x="92.2018%" y="1716" width="0.4587%" height="15" fill="rgb(250,16,1)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1726.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.46%)</title><rect x="92.2018%" y="1732" width="0.4587%" height="15" fill="rgb(249,138,3)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1742.50"></text></g><g><title>isValue (pyasn1/type/univ.py:2601) (1 samples, 0.46%)</title><rect x="92.2018%" y="1748" width="0.4587%" height="15" fill="rgb(227,71,41)" fg:x="201" fg:w="1"/><text x="92.4518%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (2 samples, 0.92%)</title><rect x="92.2018%" y="1636" width="0.9174%" height="15" fill="rgb(209,184,23)" fg:x="201" fg:w="2"/><text x="92.4518%" y="1646.50"></text></g><g><title>TBSCertificate (pyasn1_modules/rfc2459.py:1233) (1 samples, 0.46%)</title><rect x="92.6606%" y="1652" width="0.4587%" height="15" fill="rgb(223,215,31)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.46%)</title><rect x="92.6606%" y="1668" width="0.4587%" height="15" fill="rgb(210,146,28)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1678.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.46%)</title><rect x="92.6606%" y="1684" width="0.4587%" height="15" fill="rgb(209,183,41)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1694.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (1 samples, 0.46%)</title><rect x="92.6606%" y="1700" width="0.4587%" height="15" fill="rgb(209,224,45)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1710.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (1 samples, 0.46%)</title><rect x="92.6606%" y="1716" width="0.4587%" height="15" fill="rgb(224,209,51)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1726.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (1 samples, 0.46%)</title><rect x="92.6606%" y="1732" width="0.4587%" height="15" fill="rgb(223,17,39)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1742.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.46%)</title><rect x="92.6606%" y="1748" width="0.4587%" height="15" fill="rgb(234,204,37)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1758.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (1 samples, 0.46%)</title><rect x="92.6606%" y="1764" width="0.4587%" height="15" fill="rgb(236,120,5)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1774.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (1 samples, 0.46%)</title><rect x="92.6606%" y="1780" width="0.4587%" height="15" fill="rgb(248,97,27)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1790.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (1 samples, 0.46%)</title><rect x="92.6606%" y="1796" width="0.4587%" height="15" fill="rgb(240,66,17)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1806.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.46%)</title><rect x="92.6606%" y="1812" width="0.4587%" height="15" fill="rgb(210,79,3)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1822.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.46%)</title><rect x="92.6606%" y="1828" width="0.4587%" height="15" fill="rgb(214,176,27)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1838.50"></text></g><g><title>__repr__ (pyasn1/type/tag.py:196) (1 samples, 0.46%)</title><rect x="92.6606%" y="1844" width="0.4587%" height="15" fill="rgb(235,185,3)" fg:x="202" fg:w="1"/><text x="92.9106%" y="1854.50"></text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (1 samples, 0.46%)</title><rect x="93.1193%" y="1636" width="0.4587%" height="15" fill="rgb(227,24,12)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="93.1193%" y="1652" width="0.4587%" height="15" fill="rgb(252,169,48)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="93.1193%" y="1668" width="0.4587%" height="15" fill="rgb(212,65,1)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="93.1193%" y="1684" width="0.4587%" height="15" fill="rgb(242,39,24)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="93.1193%" y="1700" width="0.4587%" height="15" fill="rgb(249,32,23)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="93.1193%" y="1716" width="0.4587%" height="15" fill="rgb(251,195,23)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="93.1193%" y="1732" width="0.4587%" height="15" fill="rgb(236,174,8)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="93.1193%" y="1748" width="0.4587%" height="15" fill="rgb(220,197,8)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (1 samples, 0.46%)</title><rect x="93.1193%" y="1764" width="0.4587%" height="15" fill="rgb(240,108,37)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1774.50"></text></g><g><title>BindResponse (pyasn1_modules/rfc2251.py:284) (1 samples, 0.46%)</title><rect x="93.1193%" y="1780" width="0.4587%" height="15" fill="rgb(232,176,24)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1790.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.46%)</title><rect x="93.1193%" y="1796" width="0.4587%" height="15" fill="rgb(243,35,29)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1806.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (1 samples, 0.46%)</title><rect x="93.1193%" y="1812" width="0.4587%" height="15" fill="rgb(210,37,18)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1822.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (1 samples, 0.46%)</title><rect x="93.1193%" y="1828" width="0.4587%" height="15" fill="rgb(224,184,40)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1838.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (1 samples, 0.46%)</title><rect x="93.1193%" y="1844" width="0.4587%" height="15" fill="rgb(236,39,29)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1854.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (1 samples, 0.46%)</title><rect x="93.1193%" y="1860" width="0.4587%" height="15" fill="rgb(232,48,39)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1870.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:276) (1 samples, 0.46%)</title><rect x="93.1193%" y="1876" width="0.4587%" height="15" fill="rgb(236,34,42)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1886.50"></text></g><g><title>__repr__ (pyasn1/type/namedval.py:106) (1 samples, 0.46%)</title><rect x="93.1193%" y="1892" width="0.4587%" height="15" fill="rgb(243,106,37)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1902.50"></text></g><g><title><listcomp> (pyasn1/type/namedval.py:107) (1 samples, 0.46%)</title><rect x="93.1193%" y="1908" width="0.4587%" height="15" fill="rgb(218,96,6)" fg:x="203" fg:w="1"/><text x="93.3693%" y="1918.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="91.7431%" y="1556" width="2.2936%" height="15" fill="rgb(235,130,12)" fg:x="200" fg:w="5"/><text x="91.9931%" y="1566.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="91.7431%" y="1572" width="2.2936%" height="15" fill="rgb(231,95,0)" fg:x="200" fg:w="5"/><text x="91.9931%" y="1582.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 1.83%)</title><rect x="92.2018%" y="1588" width="1.8349%" height="15" fill="rgb(228,12,23)" fg:x="201" fg:w="4"/><text x="92.4518%" y="1598.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 1.83%)</title><rect x="92.2018%" y="1604" width="1.8349%" height="15" fill="rgb(216,12,1)" fg:x="201" fg:w="4"/><text x="92.4518%" y="1614.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 1.83%)</title><rect x="92.2018%" y="1620" width="1.8349%" height="15" fill="rgb(219,59,3)" fg:x="201" fg:w="4"/><text x="92.4518%" y="1630.50">_..</text></g><g><title><module> (rsa/__init__.py:14) (1 samples, 0.46%)</title><rect x="93.5780%" y="1636" width="0.4587%" height="15" fill="rgb(215,208,46)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1646.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="93.5780%" y="1652" width="0.4587%" height="15" fill="rgb(254,224,29)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="93.5780%" y="1668" width="0.4587%" height="15" fill="rgb(232,14,29)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1678.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="93.5780%" y="1684" width="0.4587%" height="15" fill="rgb(208,45,52)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1694.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="93.5780%" y="1700" width="0.4587%" height="15" fill="rgb(234,191,28)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1710.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="93.5780%" y="1716" width="0.4587%" height="15" fill="rgb(244,67,43)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1726.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="93.5780%" y="1732" width="0.4587%" height="15" fill="rgb(236,189,24)" fg:x="204" fg:w="1"/><text x="93.8280%" y="1742.50"></text></g><g><title><module> (ee/__init__.py:1) (12 samples, 5.50%)</title><rect x="88.9908%" y="516" width="5.5046%" height="15" fill="rgb(239,214,33)" fg:x="194" fg:w="12"/><text x="89.2408%" y="526.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 5.05%)</title><rect x="89.4495%" y="532" width="5.0459%" height="15" fill="rgb(226,176,41)" fg:x="195" fg:w="11"/><text x="89.6995%" y="542.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="89.4495%" y="548" width="5.0459%" height="15" fill="rgb(248,47,8)" fg:x="195" fg:w="11"/><text x="89.6995%" y="558.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 5.05%)</title><rect x="89.4495%" y="564" width="5.0459%" height="15" fill="rgb(218,81,44)" fg:x="195" fg:w="11"/><text x="89.6995%" y="574.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 5.05%)</title><rect x="89.4495%" y="580" width="5.0459%" height="15" fill="rgb(213,98,6)" fg:x="195" fg:w="11"/><text x="89.6995%" y="590.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 5.05%)</title><rect x="89.4495%" y="596" width="5.0459%" height="15" fill="rgb(222,85,22)" fg:x="195" fg:w="11"/><text x="89.6995%" y="606.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 5.05%)</title><rect x="89.4495%" y="612" width="5.0459%" height="15" fill="rgb(239,46,39)" fg:x="195" fg:w="11"/><text x="89.6995%" y="622.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="89.4495%" y="628" width="5.0459%" height="15" fill="rgb(237,12,29)" fg:x="195" fg:w="11"/><text x="89.6995%" y="638.50">_call_..</text></g><g><title><module> (ee/batch.py:1) (11 samples, 5.05%)</title><rect x="89.4495%" y="644" width="5.0459%" height="15" fill="rgb(214,77,8)" fg:x="195" fg:w="11"/><text x="89.6995%" y="654.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (11 samples, 5.05%)</title><rect x="89.4495%" y="660" width="5.0459%" height="15" fill="rgb(217,168,37)" fg:x="195" fg:w="11"/><text x="89.6995%" y="670.50">_handl..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="89.4495%" y="676" width="5.0459%" height="15" fill="rgb(221,217,23)" fg:x="195" fg:w="11"/><text x="89.6995%" y="686.50">_call_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (11 samples, 5.05%)</title><rect x="89.4495%" y="692" width="5.0459%" height="15" fill="rgb(243,229,36)" fg:x="195" fg:w="11"/><text x="89.6995%" y="702.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 5.05%)</title><rect x="89.4495%" y="708" width="5.0459%" height="15" fill="rgb(251,163,40)" fg:x="195" fg:w="11"/><text x="89.6995%" y="718.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 5.05%)</title><rect x="89.4495%" y="724" width="5.0459%" height="15" fill="rgb(237,222,12)" fg:x="195" fg:w="11"/><text x="89.6995%" y="734.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 5.05%)</title><rect x="89.4495%" y="740" width="5.0459%" height="15" fill="rgb(248,132,6)" fg:x="195" fg:w="11"/><text x="89.6995%" y="750.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 5.05%)</title><rect x="89.4495%" y="756" width="5.0459%" height="15" fill="rgb(227,167,50)" fg:x="195" fg:w="11"/><text x="89.6995%" y="766.50">_call_..</text></g><g><title><module> (ee/_cloud_api_utils.py:1) (11 samples, 5.05%)</title><rect x="89.4495%" y="772" width="5.0459%" height="15" fill="rgb(242,84,37)" fg:x="195" fg:w="11"/><text x="89.6995%" y="782.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 3.21%)</title><rect x="91.2844%" y="788" width="3.2110%" height="15" fill="rgb(212,4,50)" fg:x="199" fg:w="7"/><text x="91.5344%" y="798.50">_ha..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="91.2844%" y="804" width="3.2110%" height="15" fill="rgb(230,228,32)" fg:x="199" fg:w="7"/><text x="91.5344%" y="814.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.21%)</title><rect x="91.2844%" y="820" width="3.2110%" height="15" fill="rgb(248,217,23)" fg:x="199" fg:w="7"/><text x="91.5344%" y="830.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.21%)</title><rect x="91.2844%" y="836" width="3.2110%" height="15" fill="rgb(238,197,32)" fg:x="199" fg:w="7"/><text x="91.5344%" y="846.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.21%)</title><rect x="91.2844%" y="852" width="3.2110%" height="15" fill="rgb(236,106,1)" fg:x="199" fg:w="7"/><text x="91.5344%" y="862.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.21%)</title><rect x="91.2844%" y="868" width="3.2110%" height="15" fill="rgb(219,228,13)" fg:x="199" fg:w="7"/><text x="91.5344%" y="878.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.21%)</title><rect x="91.2844%" y="884" width="3.2110%" height="15" fill="rgb(238,30,35)" fg:x="199" fg:w="7"/><text x="91.5344%" y="894.50">_ca..</text></g><g><title><module> (googleapiclient/discovery.py:15) (7 samples, 3.21%)</title><rect x="91.2844%" y="900" width="3.2110%" height="15" fill="rgb(236,70,23)" fg:x="199" fg:w="7"/><text x="91.5344%" y="910.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.75%)</title><rect x="91.7431%" y="916" width="2.7523%" height="15" fill="rgb(249,104,48)" fg:x="200" fg:w="6"/><text x="91.9931%" y="926.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="932" width="2.7523%" height="15" fill="rgb(254,117,50)" fg:x="200" fg:w="6"/><text x="91.9931%" y="942.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="91.7431%" y="948" width="2.7523%" height="15" fill="rgb(223,152,4)" fg:x="200" fg:w="6"/><text x="91.9931%" y="958.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="91.7431%" y="964" width="2.7523%" height="15" fill="rgb(245,6,2)" fg:x="200" fg:w="6"/><text x="91.9931%" y="974.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="91.7431%" y="980" width="2.7523%" height="15" fill="rgb(249,150,24)" fg:x="200" fg:w="6"/><text x="91.9931%" y="990.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="91.7431%" y="996" width="2.7523%" height="15" fill="rgb(228,185,42)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1006.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1012" width="2.7523%" height="15" fill="rgb(226,39,33)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1022.50">_c..</text></g><g><title><module> (oauth2/service_account.py:15) (6 samples, 2.75%)</title><rect x="91.7431%" y="1028" width="2.7523%" height="15" fill="rgb(221,166,19)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1038.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.75%)</title><rect x="91.7431%" y="1044" width="2.7523%" height="15" fill="rgb(209,109,2)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1054.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1060" width="2.7523%" height="15" fill="rgb(252,216,26)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1070.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="91.7431%" y="1076" width="2.7523%" height="15" fill="rgb(227,173,36)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1086.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="91.7431%" y="1092" width="2.7523%" height="15" fill="rgb(209,90,7)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1102.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="91.7431%" y="1108" width="2.7523%" height="15" fill="rgb(250,194,11)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1118.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="91.7431%" y="1124" width="2.7523%" height="15" fill="rgb(220,72,50)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1134.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1140" width="2.7523%" height="15" fill="rgb(222,106,48)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1150.50">_c..</text></g><g><title><module> (auth/_service_account_info.py:15) (6 samples, 2.75%)</title><rect x="91.7431%" y="1156" width="2.7523%" height="15" fill="rgb(216,220,45)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1166.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.75%)</title><rect x="91.7431%" y="1172" width="2.7523%" height="15" fill="rgb(234,112,18)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1182.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1188" width="2.7523%" height="15" fill="rgb(206,179,9)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1198.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="91.7431%" y="1204" width="2.7523%" height="15" fill="rgb(215,115,40)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1214.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="91.7431%" y="1220" width="2.7523%" height="15" fill="rgb(222,69,34)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1230.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="91.7431%" y="1236" width="2.7523%" height="15" fill="rgb(209,161,10)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1246.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="91.7431%" y="1252" width="2.7523%" height="15" fill="rgb(217,6,38)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1262.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1268" width="2.7523%" height="15" fill="rgb(229,229,48)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1278.50">_c..</text></g><g><title><module> (auth/crypt/__init__.py:15) (6 samples, 2.75%)</title><rect x="91.7431%" y="1284" width="2.7523%" height="15" fill="rgb(225,21,28)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1294.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.75%)</title><rect x="91.7431%" y="1300" width="2.7523%" height="15" fill="rgb(206,33,13)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1310.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1316" width="2.7523%" height="15" fill="rgb(242,178,17)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1326.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="91.7431%" y="1332" width="2.7523%" height="15" fill="rgb(220,162,5)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1342.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="91.7431%" y="1348" width="2.7523%" height="15" fill="rgb(210,33,43)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1358.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="91.7431%" y="1364" width="2.7523%" height="15" fill="rgb(216,116,54)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1374.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="91.7431%" y="1380" width="2.7523%" height="15" fill="rgb(249,92,24)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1390.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1396" width="2.7523%" height="15" fill="rgb(231,189,14)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1406.50">_c..</text></g><g><title><module> (auth/crypt/rsa.py:15) (6 samples, 2.75%)</title><rect x="91.7431%" y="1412" width="2.7523%" height="15" fill="rgb(230,8,41)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1422.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (6 samples, 2.75%)</title><rect x="91.7431%" y="1428" width="2.7523%" height="15" fill="rgb(249,7,27)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1438.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1444" width="2.7523%" height="15" fill="rgb(232,86,5)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1454.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 2.75%)</title><rect x="91.7431%" y="1460" width="2.7523%" height="15" fill="rgb(224,175,18)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1470.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 2.75%)</title><rect x="91.7431%" y="1476" width="2.7523%" height="15" fill="rgb(220,129,12)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1486.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 2.75%)</title><rect x="91.7431%" y="1492" width="2.7523%" height="15" fill="rgb(210,19,36)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1502.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 2.75%)</title><rect x="91.7431%" y="1508" width="2.7523%" height="15" fill="rgb(219,96,14)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1518.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 2.75%)</title><rect x="91.7431%" y="1524" width="2.7523%" height="15" fill="rgb(249,106,1)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1534.50">_c..</text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (6 samples, 2.75%)</title><rect x="91.7431%" y="1540" width="2.7523%" height="15" fill="rgb(249,155,20)" fg:x="200" fg:w="6"/><text x="91.9931%" y="1550.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="94.0367%" y="1556" width="0.4587%" height="15" fill="rgb(244,168,9)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1566.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1572" width="0.4587%" height="15" fill="rgb(216,23,50)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="94.0367%" y="1588" width="0.4587%" height="15" fill="rgb(224,219,20)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="94.0367%" y="1604" width="0.4587%" height="15" fill="rgb(222,156,15)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="94.0367%" y="1620" width="0.4587%" height="15" fill="rgb(231,97,17)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="94.0367%" y="1636" width="0.4587%" height="15" fill="rgb(218,70,48)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1646.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1652" width="0.4587%" height="15" fill="rgb(212,196,52)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1662.50"></text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (1 samples, 0.46%)</title><rect x="94.0367%" y="1668" width="0.4587%" height="15" fill="rgb(243,203,18)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1678.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="94.0367%" y="1684" width="0.4587%" height="15" fill="rgb(252,125,41)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1694.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1700" width="0.4587%" height="15" fill="rgb(223,180,33)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1710.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="94.0367%" y="1716" width="0.4587%" height="15" fill="rgb(254,159,46)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1726.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="94.0367%" y="1732" width="0.4587%" height="15" fill="rgb(254,38,10)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1742.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="94.0367%" y="1748" width="0.4587%" height="15" fill="rgb(208,217,32)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="94.0367%" y="1764" width="0.4587%" height="15" fill="rgb(221,120,13)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1774.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1780" width="0.4587%" height="15" fill="rgb(246,54,52)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1790.50"></text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (1 samples, 0.46%)</title><rect x="94.0367%" y="1796" width="0.4587%" height="15" fill="rgb(242,34,25)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1806.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="94.0367%" y="1812" width="0.4587%" height="15" fill="rgb(247,209,9)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1822.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="94.0367%" y="1828" width="0.4587%" height="15" fill="rgb(228,71,26)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1838.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="94.0367%" y="1844" width="0.4587%" height="15" fill="rgb(222,145,49)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1854.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="94.0367%" y="1860" width="0.4587%" height="15" fill="rgb(218,121,17)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1870.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1876" width="0.4587%" height="15" fill="rgb(244,50,7)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1886.50"></text></g><g><title><module> (pyasn1/codec/streaming.py:7) (1 samples, 0.46%)</title><rect x="94.0367%" y="1892" width="0.4587%" height="15" fill="rgb(246,229,37)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1902.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="94.0367%" y="1908" width="0.4587%" height="15" fill="rgb(225,18,5)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1918.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="1924" width="0.4587%" height="15" fill="rgb(213,204,8)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1934.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="94.0367%" y="1940" width="0.4587%" height="15" fill="rgb(238,103,6)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1950.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="94.0367%" y="1956" width="0.4587%" height="15" fill="rgb(222,25,35)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1966.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="94.0367%" y="1972" width="0.4587%" height="15" fill="rgb(213,203,35)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1982.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="94.0367%" y="1988" width="0.4587%" height="15" fill="rgb(221,79,53)" fg:x="205" fg:w="1"/><text x="94.2867%" y="1998.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="2004" width="0.4587%" height="15" fill="rgb(243,200,35)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2014.50"></text></g><g><title><module> (pyasn1/type/univ.py:7) (1 samples, 0.46%)</title><rect x="94.0367%" y="2020" width="0.4587%" height="15" fill="rgb(248,60,25)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2030.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="94.0367%" y="2036" width="0.4587%" height="15" fill="rgb(227,53,46)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2046.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="94.0367%" y="2052" width="0.4587%" height="15" fill="rgb(216,120,32)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2062.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="94.0367%" y="2068" width="0.4587%" height="15" fill="rgb(220,134,1)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2078.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="94.0367%" y="2084" width="0.4587%" height="15" fill="rgb(237,168,5)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2094.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="94.0367%" y="2100" width="0.4587%" height="15" fill="rgb(231,100,33)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2110.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="94.0367%" y="2116" width="0.4587%" height="15" fill="rgb(236,177,47)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2126.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="94.0367%" y="2132" width="0.4587%" height="15" fill="rgb(235,7,49)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2142.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="94.0367%" y="2148" width="0.4587%" height="15" fill="rgb(232,119,22)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2158.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.46%)</title><rect x="94.0367%" y="2164" width="0.4587%" height="15" fill="rgb(254,73,53)" fg:x="205" fg:w="1"/><text x="94.2867%" y="2174.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.38%)</title><rect x="94.4954%" y="580" width="1.3761%" height="15" fill="rgb(251,35,20)" fg:x="206" fg:w="3"/><text x="94.7454%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="94.4954%" y="596" width="1.3761%" height="15" fill="rgb(241,119,20)" fg:x="206" fg:w="3"/><text x="94.7454%" y="606.50"></text></g><g><title><module> (pyproj/network.py:1) (3 samples, 1.38%)</title><rect x="94.4954%" y="612" width="1.3761%" height="15" fill="rgb(207,102,14)" fg:x="206" fg:w="3"/><text x="94.7454%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.38%)</title><rect x="94.4954%" y="628" width="1.3761%" height="15" fill="rgb(248,201,50)" fg:x="206" fg:w="3"/><text x="94.7454%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.38%)</title><rect x="94.4954%" y="644" width="1.3761%" height="15" fill="rgb(222,185,44)" fg:x="206" fg:w="3"/><text x="94.7454%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.38%)</title><rect x="94.4954%" y="660" width="1.3761%" height="15" fill="rgb(218,107,18)" fg:x="206" fg:w="3"/><text x="94.7454%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (3 samples, 1.38%)</title><rect x="94.4954%" y="676" width="1.3761%" height="15" fill="rgb(237,177,39)" fg:x="206" fg:w="3"/><text x="94.7454%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (3 samples, 1.38%)</title><rect x="94.4954%" y="692" width="1.3761%" height="15" fill="rgb(246,69,6)" fg:x="206" fg:w="3"/><text x="94.7454%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.38%)</title><rect x="94.4954%" y="708" width="1.3761%" height="15" fill="rgb(234,208,37)" fg:x="206" fg:w="3"/><text x="94.7454%" y="718.50"></text></g><g><title>build_engines (xarray/backends/plugins.py:106) (17 samples, 7.80%)</title><rect x="88.9908%" y="164" width="7.7982%" height="15" fill="rgb(225,4,6)" fg:x="194" fg:w="17"/><text x="89.2408%" y="174.50">build_engin..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (17 samples, 7.80%)</title><rect x="88.9908%" y="180" width="7.7982%" height="15" fill="rgb(233,45,0)" fg:x="194" fg:w="17"/><text x="89.2408%" y="190.50">backends_di..</text></g><g><title>load (importlib_metadata/__init__.py:178) (17 samples, 7.80%)</title><rect x="88.9908%" y="196" width="7.7982%" height="15" fill="rgb(226,136,5)" fg:x="194" fg:w="17"/><text x="89.2408%" y="206.50">load (impor..</text></g><g><title>import_module (importlib/__init__.py:109) (17 samples, 7.80%)</title><rect x="88.9908%" y="212" width="7.7982%" height="15" fill="rgb(211,91,47)" fg:x="194" fg:w="17"/><text x="89.2408%" y="222.50">import_modu..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (17 samples, 7.80%)</title><rect x="88.9908%" y="228" width="7.7982%" height="15" fill="rgb(242,88,51)" fg:x="194" fg:w="17"/><text x="89.2408%" y="238.50">_gcd_import..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 7.80%)</title><rect x="88.9908%" y="244" width="7.7982%" height="15" fill="rgb(230,91,28)" fg:x="194" fg:w="17"/><text x="89.2408%" y="254.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 7.80%)</title><rect x="88.9908%" y="260" width="7.7982%" height="15" fill="rgb(254,186,29)" fg:x="194" fg:w="17"/><text x="89.2408%" y="270.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 7.80%)</title><rect x="88.9908%" y="276" width="7.7982%" height="15" fill="rgb(238,6,4)" fg:x="194" fg:w="17"/><text x="89.2408%" y="286.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 7.80%)</title><rect x="88.9908%" y="292" width="7.7982%" height="15" fill="rgb(221,151,16)" fg:x="194" fg:w="17"/><text x="89.2408%" y="302.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 7.80%)</title><rect x="88.9908%" y="308" width="7.7982%" height="15" fill="rgb(251,143,52)" fg:x="194" fg:w="17"/><text x="89.2408%" y="318.50">_call_with_..</text></g><g><title><module> (xee/__init__.py:15) (17 samples, 7.80%)</title><rect x="88.9908%" y="324" width="7.7982%" height="15" fill="rgb(206,90,15)" fg:x="194" fg:w="17"/><text x="89.2408%" y="334.50"><module> (x..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 7.80%)</title><rect x="88.9908%" y="340" width="7.7982%" height="15" fill="rgb(218,35,8)" fg:x="194" fg:w="17"/><text x="89.2408%" y="350.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 7.80%)</title><rect x="88.9908%" y="356" width="7.7982%" height="15" fill="rgb(239,215,6)" fg:x="194" fg:w="17"/><text x="89.2408%" y="366.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 7.80%)</title><rect x="88.9908%" y="372" width="7.7982%" height="15" fill="rgb(245,116,39)" fg:x="194" fg:w="17"/><text x="89.2408%" y="382.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 7.80%)</title><rect x="88.9908%" y="388" width="7.7982%" height="15" fill="rgb(242,65,28)" fg:x="194" fg:w="17"/><text x="89.2408%" y="398.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 7.80%)</title><rect x="88.9908%" y="404" width="7.7982%" height="15" fill="rgb(252,132,53)" fg:x="194" fg:w="17"/><text x="89.2408%" y="414.50">_call_with_..</text></g><g><title><module> (xee/ext.py:15) (17 samples, 7.80%)</title><rect x="88.9908%" y="420" width="7.7982%" height="15" fill="rgb(224,159,50)" fg:x="194" fg:w="17"/><text x="89.2408%" y="430.50"><module> (x..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (17 samples, 7.80%)</title><rect x="88.9908%" y="436" width="7.7982%" height="15" fill="rgb(224,93,4)" fg:x="194" fg:w="17"/><text x="89.2408%" y="446.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (17 samples, 7.80%)</title><rect x="88.9908%" y="452" width="7.7982%" height="15" fill="rgb(208,81,34)" fg:x="194" fg:w="17"/><text x="89.2408%" y="462.50">_find_and_l..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (17 samples, 7.80%)</title><rect x="88.9908%" y="468" width="7.7982%" height="15" fill="rgb(233,92,54)" fg:x="194" fg:w="17"/><text x="89.2408%" y="478.50">_load_unloc..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (17 samples, 7.80%)</title><rect x="88.9908%" y="484" width="7.7982%" height="15" fill="rgb(237,21,14)" fg:x="194" fg:w="17"/><text x="89.2408%" y="494.50">exec_module..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (17 samples, 7.80%)</title><rect x="88.9908%" y="500" width="7.7982%" height="15" fill="rgb(249,128,51)" fg:x="194" fg:w="17"/><text x="89.2408%" y="510.50">_call_with_..</text></g><g><title><module> (pyproj/__init__.py:1) (5 samples, 2.29%)</title><rect x="94.4954%" y="516" width="2.2936%" height="15" fill="rgb(223,129,24)" fg:x="206" fg:w="5"/><text x="94.7454%" y="526.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.29%)</title><rect x="94.4954%" y="532" width="2.2936%" height="15" fill="rgb(231,168,25)" fg:x="206" fg:w="5"/><text x="94.7454%" y="542.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.29%)</title><rect x="94.4954%" y="548" width="2.2936%" height="15" fill="rgb(224,39,20)" fg:x="206" fg:w="5"/><text x="94.7454%" y="558.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.29%)</title><rect x="94.4954%" y="564" width="2.2936%" height="15" fill="rgb(225,152,53)" fg:x="206" fg:w="5"/><text x="94.7454%" y="574.50">_..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 0.92%)</title><rect x="95.8716%" y="580" width="0.9174%" height="15" fill="rgb(252,17,24)" fg:x="209" fg:w="2"/><text x="96.1216%" y="590.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 0.92%)</title><rect x="95.8716%" y="596" width="0.9174%" height="15" fill="rgb(250,114,30)" fg:x="209" fg:w="2"/><text x="96.1216%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="95.8716%" y="612" width="0.9174%" height="15" fill="rgb(229,5,4)" fg:x="209" fg:w="2"/><text x="96.1216%" y="622.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (18 samples, 8.26%)</title><rect x="88.9908%" y="132" width="8.2569%" height="15" fill="rgb(225,176,49)" fg:x="194" fg:w="18"/><text x="89.2408%" y="142.50">guess_engin..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (18 samples, 8.26%)</title><rect x="88.9908%" y="148" width="8.2569%" height="15" fill="rgb(224,221,49)" fg:x="194" fg:w="18"/><text x="89.2408%" y="158.50">list_engine..</text></g><g><title>entry_points (importlib/metadata.py:572) (1 samples, 0.46%)</title><rect x="96.7890%" y="164" width="0.4587%" height="15" fill="rgb(253,169,27)" fg:x="211" fg:w="1"/><text x="97.0390%" y="174.50"></text></g><g><title><genexpr> (importlib/metadata.py:577) (1 samples, 0.46%)</title><rect x="96.7890%" y="180" width="0.4587%" height="15" fill="rgb(211,206,16)" fg:x="211" fg:w="1"/><text x="97.0390%" y="190.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:485) (1 samples, 0.46%)</title><rect x="96.7890%" y="196" width="0.4587%" height="15" fill="rgb(244,87,35)" fg:x="211" fg:w="1"/><text x="97.0390%" y="206.50"></text></g><g><title>read_text (importlib_metadata/__init__.py:844) (1 samples, 0.46%)</title><rect x="96.7890%" y="212" width="0.4587%" height="15" fill="rgb(246,28,10)" fg:x="211" fg:w="1"/><text x="97.0390%" y="222.50"></text></g><g><title>read_text (pathlib.py:1262) (1 samples, 0.46%)</title><rect x="96.7890%" y="228" width="0.4587%" height="15" fill="rgb(229,12,44)" fg:x="211" fg:w="1"/><text x="97.0390%" y="238.50"></text></g><g><title>open (pathlib.py:1246) (1 samples, 0.46%)</title><rect x="96.7890%" y="244" width="0.4587%" height="15" fill="rgb(210,145,37)" fg:x="211" fg:w="1"/><text x="97.0390%" y="254.50"></text></g><g><title>_opener (pathlib.py:1118) (1 samples, 0.46%)</title><rect x="96.7890%" y="260" width="0.4587%" height="15" fill="rgb(227,112,52)" fg:x="211" fg:w="1"/><text x="97.0390%" y="270.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="97.2477%" y="356" width="0.4587%" height="15" fill="rgb(238,155,34)" fg:x="212" fg:w="1"/><text x="97.4977%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="97.2477%" y="372" width="0.4587%" height="15" fill="rgb(239,226,36)" fg:x="212" fg:w="1"/><text x="97.4977%" y="382.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.46%)</title><rect x="97.2477%" y="388" width="0.4587%" height="15" fill="rgb(230,16,23)" fg:x="212" fg:w="1"/><text x="97.4977%" y="398.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.46%)</title><rect x="97.2477%" y="404" width="0.4587%" height="15" fill="rgb(236,171,36)" fg:x="212" fg:w="1"/><text x="97.4977%" y="414.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.46%)</title><rect x="97.2477%" y="420" width="0.4587%" height="15" fill="rgb(221,22,14)" fg:x="212" fg:w="1"/><text x="97.4977%" y="430.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.46%)</title><rect x="97.2477%" y="436" width="0.4587%" height="15" fill="rgb(242,43,11)" fg:x="212" fg:w="1"/><text x="97.4977%" y="446.50"></text></g><g><title>thread (0x202738240) (214 samples, 98.17%)</title><rect x="0.0000%" y="68" width="98.1651%" height="15" fill="rgb(232,69,23)" fg:x="0" fg:w="214"/><text x="0.2500%" y="78.50">thread (0x202738240)</text></g><g><title><module> (sanity.py:3) (194 samples, 88.99%)</title><rect x="9.1743%" y="84" width="88.9908%" height="15" fill="rgb(216,180,54)" fg:x="20" fg:w="194"/><text x="9.4243%" y="94.50"><module> (sanity.py:3)</text></g><g><title>open_dataset (xarray/tutorial.py:81) (22 samples, 10.09%)</title><rect x="88.0734%" y="100" width="10.0917%" height="15" fill="rgb(216,5,24)" fg:x="192" fg:w="22"/><text x="88.3234%" y="110.50">open_dataset (x..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (20 samples, 9.17%)</title><rect x="88.9908%" y="116" width="9.1743%" height="15" fill="rgb(225,89,9)" fg:x="194" fg:w="20"/><text x="89.2408%" y="126.50">open_dataset ..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (2 samples, 0.92%)</title><rect x="97.2477%" y="132" width="0.9174%" height="15" fill="rgb(243,75,33)" fg:x="212" fg:w="2"/><text x="97.4977%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (2 samples, 0.92%)</title><rect x="97.2477%" y="148" width="0.9174%" height="15" fill="rgb(247,141,45)" fg:x="212" fg:w="2"/><text x="97.4977%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (2 samples, 0.92%)</title><rect x="97.2477%" y="164" width="0.9174%" height="15" fill="rgb(232,177,36)" fg:x="212" fg:w="2"/><text x="97.4977%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (2 samples, 0.92%)</title><rect x="97.2477%" y="180" width="0.9174%" height="15" fill="rgb(219,125,36)" fg:x="212" fg:w="2"/><text x="97.4977%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (2 samples, 0.92%)</title><rect x="97.2477%" y="196" width="0.9174%" height="15" fill="rgb(227,94,9)" fg:x="212" fg:w="2"/><text x="97.4977%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (2 samples, 0.92%)</title><rect x="97.2477%" y="212" width="0.9174%" height="15" fill="rgb(240,34,52)" fg:x="212" fg:w="2"/><text x="97.4977%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (2 samples, 0.92%)</title><rect x="97.2477%" y="228" width="0.9174%" height="15" fill="rgb(216,45,12)" fg:x="212" fg:w="2"/><text x="97.4977%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (2 samples, 0.92%)</title><rect x="97.2477%" y="244" width="0.9174%" height="15" fill="rgb(246,21,19)" fg:x="212" fg:w="2"/><text x="97.4977%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 0.92%)</title><rect x="97.2477%" y="260" width="0.9174%" height="15" fill="rgb(213,98,42)" fg:x="212" fg:w="2"/><text x="97.4977%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 0.92%)</title><rect x="97.2477%" y="276" width="0.9174%" height="15" fill="rgb(250,136,47)" fg:x="212" fg:w="2"/><text x="97.4977%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 0.92%)</title><rect x="97.2477%" y="292" width="0.9174%" height="15" fill="rgb(251,124,27)" fg:x="212" fg:w="2"/><text x="97.4977%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 0.92%)</title><rect x="97.2477%" y="308" width="0.9174%" height="15" fill="rgb(229,180,14)" fg:x="212" fg:w="2"/><text x="97.4977%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 0.92%)</title><rect x="97.2477%" y="324" width="0.9174%" height="15" fill="rgb(245,216,25)" fg:x="212" fg:w="2"/><text x="97.4977%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (2 samples, 0.92%)</title><rect x="97.2477%" y="340" width="0.9174%" height="15" fill="rgb(251,43,5)" fg:x="212" fg:w="2"/><text x="97.4977%" y="350.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.46%)</title><rect x="97.7064%" y="356" width="0.4587%" height="15" fill="rgb(250,128,24)" fg:x="213" fg:w="1"/><text x="97.9564%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="97.7064%" y="372" width="0.4587%" height="15" fill="rgb(217,117,27)" fg:x="213" fg:w="1"/><text x="97.9564%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.46%)</title><rect x="97.7064%" y="388" width="0.4587%" height="15" fill="rgb(245,147,4)" fg:x="213" fg:w="1"/><text x="97.9564%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.46%)</title><rect x="97.7064%" y="404" width="0.4587%" height="15" fill="rgb(242,201,35)" fg:x="213" fg:w="1"/><text x="97.9564%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.46%)</title><rect x="97.7064%" y="420" width="0.4587%" height="15" fill="rgb(218,181,1)" fg:x="213" fg:w="1"/><text x="97.9564%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.46%)</title><rect x="97.7064%" y="436" width="0.4587%" height="15" fill="rgb(222,6,29)" fg:x="213" fg:w="1"/><text x="97.9564%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.46%)</title><rect x="97.7064%" y="452" width="0.4587%" height="15" fill="rgb(208,186,3)" fg:x="213" fg:w="1"/><text x="97.9564%" y="462.50"></text></g><g><title><module> (scipy/io/wavfile.py:1) (1 samples, 0.46%)</title><rect x="97.7064%" y="468" width="0.4587%" height="15" fill="rgb(216,36,26)" fg:x="213" fg:w="1"/><text x="97.9564%" y="478.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.46%)</title><rect x="97.7064%" y="484" width="0.4587%" height="15" fill="rgb(248,201,23)" fg:x="213" fg:w="1"/><text x="97.9564%" y="494.50"></text></g><g><title>collections_to_dsk (dask/base.py:417) (1 samples, 0.46%)</title><rect x="98.1651%" y="452" width="0.4587%" height="15" fill="rgb(251,170,31)" fg:x="214" fg:w="1"/><text x="98.4151%" y="462.50"></text></g><g><title>optimize (dask/array/optimization.py:27) (1 samples, 0.46%)</title><rect x="98.1651%" y="468" width="0.4587%" height="15" fill="rgb(207,110,25)" fg:x="214" fg:w="1"/><text x="98.4151%" y="478.50"></text></g><g><title>flatten (dask/core.py:325) (1 samples, 0.46%)</title><rect x="98.1651%" y="484" width="0.4587%" height="15" fill="rgb(250,54,15)" fg:x="214" fg:w="1"/><text x="98.4151%" y="494.50"></text></g><g><title>flatten (dask/core.py:325) (1 samples, 0.46%)</title><rect x="98.1651%" y="500" width="0.4587%" height="15" fill="rgb(227,68,33)" fg:x="214" fg:w="1"/><text x="98.4151%" y="510.50"></text></g><g><title>flatten (dask/core.py:325) (1 samples, 0.46%)</title><rect x="98.1651%" y="516" width="0.4587%" height="15" fill="rgb(238,34,41)" fg:x="214" fg:w="1"/><text x="98.4151%" y="526.50"></text></g><g><title>thread (0x308157000) (2 samples, 0.92%)</title><rect x="98.1651%" y="68" width="0.9174%" height="15" fill="rgb(220,11,15)" fg:x="214" fg:w="2"/><text x="98.4151%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (2 samples, 0.92%)</title><rect x="98.1651%" y="84" width="0.9174%" height="15" fill="rgb(246,111,35)" fg:x="214" fg:w="2"/><text x="98.4151%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (2 samples, 0.92%)</title><rect x="98.1651%" y="100" width="0.9174%" height="15" fill="rgb(209,88,53)" fg:x="214" fg:w="2"/><text x="98.4151%" y="110.50"></text></g><g><title>run (threading.py:906) (2 samples, 0.92%)</title><rect x="98.1651%" y="116" width="0.9174%" height="15" fill="rgb(231,185,47)" fg:x="214" fg:w="2"/><text x="98.4151%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (2 samples, 0.92%)</title><rect x="98.1651%" y="132" width="0.9174%" height="15" fill="rgb(233,154,1)" fg:x="214" fg:w="2"/><text x="98.4151%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (2 samples, 0.92%)</title><rect x="98.1651%" y="148" width="0.9174%" height="15" fill="rgb(225,15,46)" fg:x="214" fg:w="2"/><text x="98.4151%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (2 samples, 0.92%)</title><rect x="98.1651%" y="164" width="0.9174%" height="15" fill="rgb(211,135,41)" fg:x="214" fg:w="2"/><text x="98.4151%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (2 samples, 0.92%)</title><rect x="98.1651%" y="180" width="0.9174%" height="15" fill="rgb(208,54,0)" fg:x="214" fg:w="2"/><text x="98.4151%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (2 samples, 0.92%)</title><rect x="98.1651%" y="196" width="0.9174%" height="15" fill="rgb(244,136,14)" fg:x="214" fg:w="2"/><text x="98.4151%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.92%)</title><rect x="98.1651%" y="212" width="0.9174%" height="15" fill="rgb(241,56,14)" fg:x="214" fg:w="2"/><text x="98.4151%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (2 samples, 0.92%)</title><rect x="98.1651%" y="228" width="0.9174%" height="15" fill="rgb(205,80,24)" fg:x="214" fg:w="2"/><text x="98.4151%" y="238.50"></text></g><g><title>get (dask/core.py:136) (2 samples, 0.92%)</title><rect x="98.1651%" y="244" width="0.9174%" height="15" fill="rgb(220,57,4)" fg:x="214" fg:w="2"/><text x="98.4151%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (2 samples, 0.92%)</title><rect x="98.1651%" y="260" width="0.9174%" height="15" fill="rgb(226,193,50)" fg:x="214" fg:w="2"/><text x="98.4151%" y="270.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (2 samples, 0.92%)</title><rect x="98.1651%" y="276" width="0.9174%" height="15" fill="rgb(231,168,22)" fg:x="214" fg:w="2"/><text x="98.4151%" y="286.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (2 samples, 0.92%)</title><rect x="98.1651%" y="292" width="0.9174%" height="15" fill="rgb(254,215,14)" fg:x="214" fg:w="2"/><text x="98.4151%" y="302.50"></text></g><g><title>f (qarray/df.py:105) (2 samples, 0.92%)</title><rect x="98.1651%" y="308" width="0.9174%" height="15" fill="rgb(211,115,16)" fg:x="214" fg:w="2"/><text x="98.4151%" y="318.50"></text></g><g><title>to_pd (qarray/df.py:72) (2 samples, 0.92%)</title><rect x="98.1651%" y="324" width="0.9174%" height="15" fill="rgb(236,210,16)" fg:x="214" fg:w="2"/><text x="98.4151%" y="334.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (2 samples, 0.92%)</title><rect x="98.1651%" y="340" width="0.9174%" height="15" fill="rgb(221,94,12)" fg:x="214" fg:w="2"/><text x="98.4151%" y="350.50"></text></g><g><title>values (xarray/core/dataarray.py:750) (2 samples, 0.92%)</title><rect x="98.1651%" y="356" width="0.9174%" height="15" fill="rgb(235,218,49)" fg:x="214" fg:w="2"/><text x="98.4151%" y="366.50"></text></g><g><title>values (xarray/core/variable.py:613) (2 samples, 0.92%)</title><rect x="98.1651%" y="372" width="0.9174%" height="15" fill="rgb(217,114,14)" fg:x="214" fg:w="2"/><text x="98.4151%" y="382.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (2 samples, 0.92%)</title><rect x="98.1651%" y="388" width="0.9174%" height="15" fill="rgb(216,145,22)" fg:x="214" fg:w="2"/><text x="98.4151%" y="398.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (2 samples, 0.92%)</title><rect x="98.1651%" y="404" width="0.9174%" height="15" fill="rgb(217,112,39)" fg:x="214" fg:w="2"/><text x="98.4151%" y="414.50"></text></g><g><title>compute (dask/base.py:355) (2 samples, 0.92%)</title><rect x="98.1651%" y="420" width="0.9174%" height="15" fill="rgb(225,85,32)" fg:x="214" fg:w="2"/><text x="98.4151%" y="430.50"></text></g><g><title>compute (dask/base.py:603) (2 samples, 0.92%)</title><rect x="98.1651%" y="436" width="0.9174%" height="15" fill="rgb(245,209,47)" fg:x="214" fg:w="2"/><text x="98.4151%" y="446.50"></text></g><g><title>get_scheduler (dask/base.py:1449) (1 samples, 0.46%)</title><rect x="98.6239%" y="452" width="0.4587%" height="15" fill="rgb(218,220,15)" fg:x="215" fg:w="1"/><text x="98.8739%" y="462.50"></text></g><g><title><genexpr> (dask/base.py:1531) (1 samples, 0.46%)</title><rect x="98.6239%" y="468" width="0.4587%" height="15" fill="rgb(222,202,31)" fg:x="215" fg:w="1"/><text x="98.8739%" y="478.50"></text></g><g><title>thread (0x30A15D000) (1 samples, 0.46%)</title><rect x="99.0826%" y="68" width="0.4587%" height="15" fill="rgb(243,203,4)" fg:x="216" fg:w="1"/><text x="99.3326%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.46%)</title><rect x="99.0826%" y="84" width="0.4587%" height="15" fill="rgb(237,92,17)" fg:x="216" fg:w="1"/><text x="99.3326%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.46%)</title><rect x="99.0826%" y="100" width="0.4587%" height="15" fill="rgb(231,119,7)" fg:x="216" fg:w="1"/><text x="99.3326%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.46%)</title><rect x="99.0826%" y="116" width="0.4587%" height="15" fill="rgb(237,82,41)" fg:x="216" fg:w="1"/><text x="99.3326%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.46%)</title><rect x="99.0826%" y="132" width="0.4587%" height="15" fill="rgb(226,81,48)" fg:x="216" fg:w="1"/><text x="99.3326%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.46%)</title><rect x="99.0826%" y="148" width="0.4587%" height="15" fill="rgb(234,70,51)" fg:x="216" fg:w="1"/><text x="99.3326%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.46%)</title><rect x="99.0826%" y="164" width="0.4587%" height="15" fill="rgb(251,86,4)" fg:x="216" fg:w="1"/><text x="99.3326%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.46%)</title><rect x="99.0826%" y="180" width="0.4587%" height="15" fill="rgb(244,144,28)" fg:x="216" fg:w="1"/><text x="99.3326%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.46%)</title><rect x="99.0826%" y="196" width="0.4587%" height="15" fill="rgb(232,161,39)" fg:x="216" fg:w="1"/><text x="99.3326%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.46%)</title><rect x="99.0826%" y="212" width="0.4587%" height="15" fill="rgb(247,34,51)" fg:x="216" fg:w="1"/><text x="99.3326%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (1 samples, 0.46%)</title><rect x="99.0826%" y="228" width="0.4587%" height="15" fill="rgb(225,132,2)" fg:x="216" fg:w="1"/><text x="99.3326%" y="238.50"></text></g><g><title>get (dask/core.py:136) (1 samples, 0.46%)</title><rect x="99.0826%" y="244" width="0.4587%" height="15" fill="rgb(209,159,44)" fg:x="216" fg:w="1"/><text x="99.3326%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.46%)</title><rect x="99.0826%" y="260" width="0.4587%" height="15" fill="rgb(251,214,1)" fg:x="216" fg:w="1"/><text x="99.3326%" y="270.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (1 samples, 0.46%)</title><rect x="99.0826%" y="276" width="0.4587%" height="15" fill="rgb(247,84,47)" fg:x="216" fg:w="1"/><text x="99.3326%" y="286.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (1 samples, 0.46%)</title><rect x="99.0826%" y="292" width="0.4587%" height="15" fill="rgb(240,111,43)" fg:x="216" fg:w="1"/><text x="99.3326%" y="302.50"></text></g><g><title>f (qarray/df.py:105) (1 samples, 0.46%)</title><rect x="99.0826%" y="308" width="0.4587%" height="15" fill="rgb(215,214,35)" fg:x="216" fg:w="1"/><text x="99.3326%" y="318.50"></text></g><g><title>to_pd (qarray/df.py:72) (1 samples, 0.46%)</title><rect x="99.0826%" y="324" width="0.4587%" height="15" fill="rgb(248,207,23)" fg:x="216" fg:w="1"/><text x="99.3326%" y="334.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (1 samples, 0.46%)</title><rect x="99.0826%" y="340" width="0.4587%" height="15" fill="rgb(214,186,4)" fg:x="216" fg:w="1"/><text x="99.3326%" y="350.50"></text></g><g><title>values (xarray/core/dataarray.py:750) (1 samples, 0.46%)</title><rect x="99.0826%" y="356" width="0.4587%" height="15" fill="rgb(220,133,22)" fg:x="216" fg:w="1"/><text x="99.3326%" y="366.50"></text></g><g><title>values (xarray/core/variable.py:613) (1 samples, 0.46%)</title><rect x="99.0826%" y="372" width="0.4587%" height="15" fill="rgb(239,134,19)" fg:x="216" fg:w="1"/><text x="99.3326%" y="382.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (1 samples, 0.46%)</title><rect x="99.0826%" y="388" width="0.4587%" height="15" fill="rgb(250,140,9)" fg:x="216" fg:w="1"/><text x="99.3326%" y="398.50"></text></g><g><title>__array__ (dask/array/core.py:1699) (1 samples, 0.46%)</title><rect x="99.0826%" y="404" width="0.4587%" height="15" fill="rgb(225,59,14)" fg:x="216" fg:w="1"/><text x="99.3326%" y="414.50"></text></g><g><title>compute (dask/base.py:355) (1 samples, 0.46%)</title><rect x="99.0826%" y="420" width="0.4587%" height="15" fill="rgb(214,152,51)" fg:x="216" fg:w="1"/><text x="99.3326%" y="430.50"></text></g><g><title>compute (dask/base.py:603) (1 samples, 0.46%)</title><rect x="99.0826%" y="436" width="0.4587%" height="15" fill="rgb(251,227,43)" fg:x="216" fg:w="1"/><text x="99.3326%" y="446.50"></text></g><g><title>get_scheduler (dask/base.py:1449) (1 samples, 0.46%)</title><rect x="99.0826%" y="452" width="0.4587%" height="15" fill="rgb(241,96,17)" fg:x="216" fg:w="1"/><text x="99.3326%" y="462.50"></text></g><g><title>get_client (distributed/worker.py:2728) (1 samples, 0.46%)</title><rect x="99.0826%" y="468" width="0.4587%" height="15" fill="rgb(234,198,43)" fg:x="216" fg:w="1"/><text x="99.3326%" y="478.50"></text></g><g><title>current (distributed/client.py:1066) (1 samples, 0.46%)</title><rect x="99.0826%" y="484" width="0.4587%" height="15" fill="rgb(220,108,29)" fg:x="216" fg:w="1"/><text x="99.3326%" y="494.50"></text></g><g><title>default_client (distributed/client.py:5758) (1 samples, 0.46%)</title><rect x="99.0826%" y="500" width="0.4587%" height="15" fill="rgb(226,163,33)" fg:x="216" fg:w="1"/><text x="99.3326%" y="510.50"></text></g><g><title>_get_global_client (distributed/client.py:142) (1 samples, 0.46%)</title><rect x="99.0826%" y="516" width="0.4587%" height="15" fill="rgb(205,194,45)" fg:x="216" fg:w="1"/><text x="99.3326%" y="526.50"></text></g><g><title>keys (weakref.py:219) (1 samples, 0.46%)</title><rect x="99.0826%" y="532" width="0.4587%" height="15" fill="rgb(206,143,44)" fg:x="216" fg:w="1"/><text x="99.3326%" y="542.50"></text></g><g><title>__init__ (_weakrefset.py:17) (1 samples, 0.46%)</title><rect x="99.0826%" y="548" width="0.4587%" height="15" fill="rgb(236,136,36)" fg:x="216" fg:w="1"/><text x="99.3326%" y="558.50"></text></g><g><title>all (218 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(249,172,42)" fg:x="0" fg:w="218"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x30B160000) (1 samples, 0.46%)</title><rect x="99.5413%" y="68" width="0.4587%" height="15" fill="rgb(216,139,23)" fg:x="217" fg:w="1"/><text x="99.7913%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.46%)</title><rect x="99.5413%" y="84" width="0.4587%" height="15" fill="rgb(207,166,20)" fg:x="217" fg:w="1"/><text x="99.7913%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.46%)</title><rect x="99.5413%" y="100" width="0.4587%" height="15" fill="rgb(210,209,22)" fg:x="217" fg:w="1"/><text x="99.7913%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.46%)</title><rect x="99.5413%" y="116" width="0.4587%" height="15" fill="rgb(232,118,20)" fg:x="217" fg:w="1"/><text x="99.7913%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.46%)</title><rect x="99.5413%" y="132" width="0.4587%" height="15" fill="rgb(238,113,42)" fg:x="217" fg:w="1"/><text x="99.7913%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.46%)</title><rect x="99.5413%" y="148" width="0.4587%" height="15" fill="rgb(231,42,5)" fg:x="217" fg:w="1"/><text x="99.7913%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.46%)</title><rect x="99.5413%" y="164" width="0.4587%" height="15" fill="rgb(243,166,24)" fg:x="217" fg:w="1"/><text x="99.7913%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.46%)</title><rect x="99.5413%" y="180" width="0.4587%" height="15" fill="rgb(237,226,12)" fg:x="217" fg:w="1"/><text x="99.7913%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.46%)</title><rect x="99.5413%" y="196" width="0.4587%" height="15" fill="rgb(229,133,24)" fg:x="217" fg:w="1"/><text x="99.7913%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.46%)</title><rect x="99.5413%" y="212" width="0.4587%" height="15" fill="rgb(238,33,43)" fg:x="217" fg:w="1"/><text x="99.7913%" y="222.50"></text></g><g><title>getter (dask/array/core.py:106) (1 samples, 0.46%)</title><rect x="99.5413%" y="228" width="0.4587%" height="15" fill="rgb(227,59,38)" fg:x="217" fg:w="1"/><text x="99.7913%" y="238.50"></text></g><g><title>__array__ (xarray/core/indexing.py:486) (1 samples, 0.46%)</title><rect x="99.5413%" y="244" width="0.4587%" height="15" fill="rgb(230,97,0)" fg:x="217" fg:w="1"/><text x="99.7913%" y="254.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:489) (1 samples, 0.46%)</title><rect x="99.5413%" y="260" width="0.4587%" height="15" fill="rgb(250,173,50)" fg:x="217" fg:w="1"/><text x="99.7913%" y="270.50"></text></g><g><title>get_duck_array (xarray/core/indexing.py:698) (1 samples, 0.46%)</title><rect x="99.5413%" y="276" width="0.4587%" height="15" fill="rgb(240,15,50)" fg:x="217" fg:w="1"/><text x="99.7913%" y="286.50"></text></g><g><title>_ensure_cached (xarray/core/indexing.py:692) (1 samples, 0.46%)</title><rect x="99.5413%" y="292" width="0.4587%" height="15" fill="rgb(221,93,22)" fg:x="217" fg:w="1"/><text x="99.7913%" y="302.50"></text></g><g><title>as_indexable (xarray/core/indexing.py:712) (1 samples, 0.46%)</title><rect x="99.5413%" y="308" width="0.4587%" height="15" fill="rgb(245,180,53)" fg:x="217" fg:w="1"/><text x="99.7913%" y="318.50"></text></g></svg></svg> \ No newline at end of file diff --git a/perf_tests/sanity.py-2024-03-03T07:49:44+05:30.svg b/perf_tests/sanity.py-2024-03-03T07:49:44+05:30.svg new file mode 100644 index 0000000..010b8a5 --- /dev/null +++ b/perf_tests/sanity.py-2024-03-03T07:49:44+05:30.svg @@ -0,0 +1,415 @@ +<?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="2442" onload="init(evt)" viewBox="0 0 1200 2442" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); } +#title { text-anchor:middle; font-size:17px; } +#matched { text-anchor:end; } +#search { text-anchor:end; opacity:0.1; cursor:pointer; } +#search:hover, #search.show { opacity:1; } +#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } +#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[ + var nametype = 'Function:'; + var fontsize = 12; + var fontwidth = 0.59; + var xpad = 10; + var inverted = true; + var searchcolor = 'rgb(230,0,230)'; + var fluiddrawing = true; + var truncate_text_right = false; + ]]><![CDATA["use strict"; +var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; +function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + frames = document.getElementById("frames"); + total_samples = parseInt(frames.attributes.total_samples.value); + searching = 0; + + // Use GET parameters to restore a flamegraph's state. + var restore_state = function() { + 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); + }; + + if (fluiddrawing) { + // Make width dynamic so the SVG fits its parent's width. + svg.removeAttribute("width"); + // Edge requires us to have a viewBox that gets updated with size changes. + var isEdge = /Edge\/\d./i.test(navigator.userAgent); + var update_for_width_change = function() { + if (isEdge) { + svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; + } + + // Keep consistent padding on left and right of frames container. + frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; + + // Text truncation needs to be adjusted for the current width. + var el = frames.children; + for(var i = 0; i < el.length; i++) { + update_text(el[i]); + } + + // Keep search elements at a fixed distance from right edge. + var svgWidth = svg.width.baseVal.value; + searchbtn.attributes.x.value = svgWidth - xpad; + matchedtxt.attributes.x.value = svgWidth - xpad; + }; + window.addEventListener('resize', function() { + update_for_width_change(); + }); + // This needs to be done asynchronously for Safari to work. + setTimeout(function() { + unzoom(); + update_for_width_change(); + restore_state(); + if (!isEdge) { + svg.removeAttribute("viewBox"); + } + }, 0); + } else { + restore_state(); + } +} +// 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(); + zoom(target); + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { + var params = get_params() + params.x = el.attributes["fg:x"].value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") { + 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)); + } + else if (e.target.id == "search") search_prompt(); +}, false) +// mouse-over for info +// show +window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = nametype + " " + g_to_text(target); +}, false) +// clear +window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; +}, false) +// ctrl-F for search +window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } +}, false) +// functions +function 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]; + return; +} +function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); +} +function orig_save(e, attr, val) { + if (e.attributes["fg:orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("fg:orig_" + attr, val); +} +function orig_load(e, attr) { + if (e.attributes["fg:orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; + e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); + // Smaller than this size won't fit anything + if (w < 2 * fontsize * fontwidth) { + t.textContent = ""; + return; + } + t.textContent = txt; + // Fit in full text width + if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) + return; + if (truncate_text_right) { + // Truncate the right side of the text. + for (var x = txt.length - 2; x > 0; x--) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + } else { + // Truncate the left side of the text. + for (var x = 2; x < txt.length; x++) { + if (t.getSubStringLength(x - 2, txt.length) <= w) { + t.textContent = ".." + txt.substring(x, txt.length); + return; + } + } + } + t.textContent = ""; +} +// zoom +function zoom_reset(e) { + if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples); + } + 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, zoomed_width_samples) { + if (e.tagName == "text") { + var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value); + e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value)); + } else if (e.tagName == "rect") { + e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples); + e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples); + } + if (e.childNodes == undefined) return; + for(var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x, zoomed_width_samples); + } +} +function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + e.attributes.x.value = "0.0%"; + } + if (e.attributes.width != undefined) { + e.attributes.width.value = "100.0%"; + } + } + 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 = parseInt(attr["fg:w"].value); + var xmin = parseInt(attr["fg:x"].value); + var xmax = xmin + width; + var ymin = parseFloat(attr.y.value); + unzoombtn.classList.remove("hide"); + var el = frames.children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseInt(a["fg:x"].value); + var ew = parseInt(a["fg:w"].value); + // Is it an ancestor + if (!inverted) { + var upstack = parseFloat(a.y.value) > ymin; + } else { + var upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew) >= 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 >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, width); + update_text(e); + } + } + } +} +function unzoom() { + unzoombtn.classList.add("hide"); + var el = frames.children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + update_text(el[i]); + } +} +// search +function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + 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_)", ""); + if (term != null) { + search(term) + } + } else { + reset_search(); + searching = 0; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } +} +function search(term) { + var re = new RegExp(term); + var el = frames.children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + // Skip over frames which are either not visible, or below the zoomed-to frame + if (e.classList.contains("hide") || e.classList.contains("parent")) { + continue; + } + 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 = parseInt(rect.attributes["fg:w"].value); + if (w > maxwidth) + maxwidth = w; + if (func.match(re)) { + // highlight + var x = parseInt(rect.attributes["fg:x"].value); + orig_save(rect, "fill"); + rect.attributes.fill.value = searchcolor; + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = term; + 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. + for (var k in keys) { + var x = parseInt(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw) { + 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 + "%"; +} +function format_percent(n) { + return n.toFixed(4) + "%"; +} +]]></script><rect x="0" y="0" width="100%" height="2442" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record ./sanity.py --function --threads</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="2431.00"> </text><svg id="frames" x="10" width="1180" total_samples="176"><g><title><module> (sqlglot/dialects/databricks.py:1) (1 samples, 0.57%)</title><rect x="10.7955%" y="708" width="0.5682%" height="15" fill="rgb(227,0,7)" fg:x="19" fg:w="1"/><text x="11.0455%" y="718.50"></text></g><g><title>Databricks (sqlglot/dialects/databricks.py:10) (1 samples, 0.57%)</title><rect x="10.7955%" y="724" width="0.5682%" height="15" fill="rgb(217,0,24)" fg:x="19" fg:w="1"/><text x="11.0455%" y="734.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.57%)</title><rect x="10.7955%" y="740" width="0.5682%" height="15" fill="rgb(221,193,54)" fg:x="19" fg:w="1"/><text x="11.0455%" y="750.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.57%)</title><rect x="10.7955%" y="756" width="0.5682%" height="15" fill="rgb(248,212,6)" fg:x="19" fg:w="1"/><text x="11.0455%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="10.7955%" y="484" width="1.1364%" height="15" fill="rgb(208,68,35)" fg:x="19" fg:w="2"/><text x="11.0455%" y="494.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="10.7955%" y="500" width="1.1364%" height="15" fill="rgb(232,128,0)" fg:x="19" fg:w="2"/><text x="11.0455%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="10.7955%" y="516" width="1.1364%" height="15" fill="rgb(207,160,47)" fg:x="19" fg:w="2"/><text x="11.0455%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="10.7955%" y="532" width="1.1364%" height="15" fill="rgb(228,23,34)" fg:x="19" fg:w="2"/><text x="11.0455%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="10.7955%" y="548" width="1.1364%" height="15" fill="rgb(218,30,26)" fg:x="19" fg:w="2"/><text x="11.0455%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="10.7955%" y="564" width="1.1364%" height="15" fill="rgb(220,122,19)" fg:x="19" fg:w="2"/><text x="11.0455%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="10.7955%" y="580" width="1.1364%" height="15" fill="rgb(250,228,42)" fg:x="19" fg:w="2"/><text x="11.0455%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="10.7955%" y="596" width="1.1364%" height="15" fill="rgb(240,193,28)" fg:x="19" fg:w="2"/><text x="11.0455%" y="606.50"></text></g><g><title><module> (sqlglot/dialects/__init__.py:1) (2 samples, 1.14%)</title><rect x="10.7955%" y="612" width="1.1364%" height="15" fill="rgb(216,20,37)" fg:x="19" fg:w="2"/><text x="11.0455%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="10.7955%" y="628" width="1.1364%" height="15" fill="rgb(206,188,39)" fg:x="19" fg:w="2"/><text x="11.0455%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="10.7955%" y="644" width="1.1364%" height="15" fill="rgb(217,207,13)" fg:x="19" fg:w="2"/><text x="11.0455%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="10.7955%" y="660" width="1.1364%" height="15" fill="rgb(231,73,38)" fg:x="19" fg:w="2"/><text x="11.0455%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="10.7955%" y="676" width="1.1364%" height="15" fill="rgb(225,20,46)" fg:x="19" fg:w="2"/><text x="11.0455%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="10.7955%" y="692" width="1.1364%" height="15" fill="rgb(210,31,41)" fg:x="19" fg:w="2"/><text x="11.0455%" y="702.50"></text></g><g><title><module> (sqlglot/dialects/doris.py:1) (1 samples, 0.57%)</title><rect x="11.3636%" y="708" width="0.5682%" height="15" fill="rgb(221,200,47)" fg:x="20" fg:w="1"/><text x="11.6136%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="11.3636%" y="724" width="0.5682%" height="15" fill="rgb(226,26,5)" fg:x="20" fg:w="1"/><text x="11.6136%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="11.3636%" y="740" width="0.5682%" height="15" fill="rgb(249,33,26)" fg:x="20" fg:w="1"/><text x="11.6136%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="11.3636%" y="756" width="0.5682%" height="15" fill="rgb(235,183,28)" fg:x="20" fg:w="1"/><text x="11.6136%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="11.3636%" y="772" width="0.5682%" height="15" fill="rgb(221,5,38)" fg:x="20" fg:w="1"/><text x="11.6136%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="11.3636%" y="788" width="0.5682%" height="15" fill="rgb(247,18,42)" fg:x="20" fg:w="1"/><text x="11.6136%" y="798.50"></text></g><g><title><module> (sqlglot/dialects/mysql.py:1) (1 samples, 0.57%)</title><rect x="11.3636%" y="804" width="0.5682%" height="15" fill="rgb(241,131,45)" fg:x="20" fg:w="1"/><text x="11.6136%" y="814.50"></text></g><g><title>MySQL (sqlglot/dialects/mysql.py:126) (1 samples, 0.57%)</title><rect x="11.3636%" y="820" width="0.5682%" height="15" fill="rgb(249,31,29)" fg:x="20" fg:w="1"/><text x="11.6136%" y="830.50"></text></g><g><title>__new__ (sqlglot/tokens.py:398) (1 samples, 0.57%)</title><rect x="11.3636%" y="836" width="0.5682%" height="15" fill="rgb(225,111,53)" fg:x="20" fg:w="1"/><text x="11.6136%" y="846.50"></text></g><g><title>new_trie (sqlglot/trie.py:13) (1 samples, 0.57%)</title><rect x="11.3636%" y="852" width="0.5682%" height="15" fill="rgb(238,160,17)" fg:x="20" fg:w="1"/><text x="11.6136%" y="862.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:437) (1 samples, 0.57%)</title><rect x="11.3636%" y="868" width="0.5682%" height="15" fill="rgb(214,148,48)" fg:x="20" fg:w="1"/><text x="11.6136%" y="878.50"></text></g><g><title><genexpr> (sqlglot/tokens.py:445) (1 samples, 0.57%)</title><rect x="11.3636%" y="884" width="0.5682%" height="15" fill="rgb(232,36,49)" fg:x="20" fg:w="1"/><text x="11.6136%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="10.7955%" y="372" width="1.7045%" height="15" fill="rgb(209,103,24)" fg:x="19" fg:w="3"/><text x="11.0455%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="10.7955%" y="388" width="1.7045%" height="15" fill="rgb(229,88,8)" fg:x="19" fg:w="3"/><text x="11.0455%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="10.7955%" y="404" width="1.7045%" height="15" fill="rgb(213,181,19)" fg:x="19" fg:w="3"/><text x="11.0455%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="10.7955%" y="420" width="1.7045%" height="15" fill="rgb(254,191,54)" fg:x="19" fg:w="3"/><text x="11.0455%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="10.7955%" y="436" width="1.7045%" height="15" fill="rgb(241,83,37)" fg:x="19" fg:w="3"/><text x="11.0455%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="10.7955%" y="452" width="1.7045%" height="15" fill="rgb(233,36,39)" fg:x="19" fg:w="3"/><text x="11.0455%" y="462.50"></text></g><g><title><module> (sqlglot/__init__.py:1) (3 samples, 1.70%)</title><rect x="10.7955%" y="468" width="1.7045%" height="15" fill="rgb(226,3,54)" fg:x="19" fg:w="3"/><text x="11.0455%" y="478.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="11.9318%" y="484" width="0.5682%" height="15" fill="rgb(245,192,40)" fg:x="21" fg:w="1"/><text x="12.1818%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="11.9318%" y="500" width="0.5682%" height="15" fill="rgb(238,167,29)" fg:x="21" fg:w="1"/><text x="12.1818%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="11.9318%" y="516" width="0.5682%" height="15" fill="rgb(232,182,51)" fg:x="21" fg:w="1"/><text x="12.1818%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="11.9318%" y="532" width="0.5682%" height="15" fill="rgb(231,60,39)" fg:x="21" fg:w="1"/><text x="12.1818%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="11.9318%" y="548" width="0.5682%" height="15" fill="rgb(208,69,12)" fg:x="21" fg:w="1"/><text x="12.1818%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="11.9318%" y="564" width="0.5682%" height="15" fill="rgb(235,93,37)" fg:x="21" fg:w="1"/><text x="12.1818%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="11.9318%" y="580" width="0.5682%" height="15" fill="rgb(213,116,39)" fg:x="21" fg:w="1"/><text x="12.1818%" y="590.50"></text></g><g><title><module> (sqlglot/expressions.py:1) (1 samples, 0.57%)</title><rect x="11.9318%" y="596" width="0.5682%" height="15" fill="rgb(222,207,29)" fg:x="21" fg:w="1"/><text x="12.1818%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="11.9318%" y="612" width="0.5682%" height="15" fill="rgb(206,96,30)" fg:x="21" fg:w="1"/><text x="12.1818%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="11.9318%" y="628" width="0.5682%" height="15" fill="rgb(218,138,4)" fg:x="21" fg:w="1"/><text x="12.1818%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="11.9318%" y="644" width="0.5682%" height="15" fill="rgb(250,191,14)" fg:x="21" fg:w="1"/><text x="12.1818%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="11.9318%" y="660" width="0.5682%" height="15" fill="rgb(239,60,40)" fg:x="21" fg:w="1"/><text x="12.1818%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="11.9318%" y="676" width="0.5682%" height="15" fill="rgb(206,27,48)" fg:x="21" fg:w="1"/><text x="12.1818%" y="686.50"></text></g><g><title><module> (sqlglot/tokens.py:1) (1 samples, 0.57%)</title><rect x="11.9318%" y="692" width="0.5682%" height="15" fill="rgb(225,35,8)" fg:x="21" fg:w="1"/><text x="12.1818%" y="702.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.57%)</title><rect x="11.9318%" y="708" width="0.5682%" height="15" fill="rgb(250,213,24)" fg:x="21" fg:w="1"/><text x="12.1818%" y="718.50"></text></g><g><title><module> (qarray/core.py:1) (4 samples, 2.27%)</title><rect x="10.7955%" y="276" width="2.2727%" height="15" fill="rgb(247,123,22)" fg:x="19" fg:w="4"/><text x="11.0455%" y="286.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="10.7955%" y="292" width="2.2727%" height="15" fill="rgb(231,138,38)" fg:x="19" fg:w="4"/><text x="11.0455%" y="302.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="10.7955%" y="308" width="2.2727%" height="15" fill="rgb(231,145,46)" fg:x="19" fg:w="4"/><text x="11.0455%" y="318.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="10.7955%" y="324" width="2.2727%" height="15" fill="rgb(251,118,11)" fg:x="19" fg:w="4"/><text x="11.0455%" y="334.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="10.7955%" y="340" width="2.2727%" height="15" fill="rgb(217,147,25)" fg:x="19" fg:w="4"/><text x="11.0455%" y="350.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="10.7955%" y="356" width="2.2727%" height="15" fill="rgb(247,81,37)" fg:x="19" fg:w="4"/><text x="11.0455%" y="366.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="372" width="0.5682%" height="15" fill="rgb(209,12,38)" fg:x="22" fg:w="1"/><text x="12.7500%" y="382.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="12.5000%" y="388" width="0.5682%" height="15" fill="rgb(227,1,9)" fg:x="22" fg:w="1"/><text x="12.7500%" y="398.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="404" width="0.5682%" height="15" fill="rgb(248,47,43)" fg:x="22" fg:w="1"/><text x="12.7500%" y="414.50"></text></g><g><title><module> (sqlglot/executor/__init__.py:1) (1 samples, 0.57%)</title><rect x="12.5000%" y="420" width="0.5682%" height="15" fill="rgb(221,10,30)" fg:x="22" fg:w="1"/><text x="12.7500%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="12.5000%" y="436" width="0.5682%" height="15" fill="rgb(210,229,1)" fg:x="22" fg:w="1"/><text x="12.7500%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="12.5000%" y="452" width="0.5682%" height="15" fill="rgb(222,148,37)" fg:x="22" fg:w="1"/><text x="12.7500%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="468" width="0.5682%" height="15" fill="rgb(234,67,33)" fg:x="22" fg:w="1"/><text x="12.7500%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="12.5000%" y="484" width="0.5682%" height="15" fill="rgb(247,98,35)" fg:x="22" fg:w="1"/><text x="12.7500%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="500" width="0.5682%" height="15" fill="rgb(247,138,52)" fg:x="22" fg:w="1"/><text x="12.7500%" y="510.50"></text></g><g><title><module> (sqlglot/executor/python.py:1) (1 samples, 0.57%)</title><rect x="12.5000%" y="516" width="0.5682%" height="15" fill="rgb(213,79,30)" fg:x="22" fg:w="1"/><text x="12.7500%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="12.5000%" y="532" width="0.5682%" height="15" fill="rgb(246,177,23)" fg:x="22" fg:w="1"/><text x="12.7500%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="12.5000%" y="548" width="0.5682%" height="15" fill="rgb(230,62,27)" fg:x="22" fg:w="1"/><text x="12.7500%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="564" width="0.5682%" height="15" fill="rgb(216,154,8)" fg:x="22" fg:w="1"/><text x="12.7500%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="12.5000%" y="580" width="0.5682%" height="15" fill="rgb(244,35,45)" fg:x="22" fg:w="1"/><text x="12.7500%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="596" width="0.5682%" height="15" fill="rgb(251,115,12)" fg:x="22" fg:w="1"/><text x="12.7500%" y="606.50"></text></g><g><title><module> (sqlglot/executor/context.py:1) (1 samples, 0.57%)</title><rect x="12.5000%" y="612" width="0.5682%" height="15" fill="rgb(240,54,50)" fg:x="22" fg:w="1"/><text x="12.7500%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="12.5000%" y="628" width="0.5682%" height="15" fill="rgb(233,84,52)" fg:x="22" fg:w="1"/><text x="12.7500%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="12.5000%" y="644" width="0.5682%" height="15" fill="rgb(207,117,47)" fg:x="22" fg:w="1"/><text x="12.7500%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="660" width="0.5682%" height="15" fill="rgb(249,43,39)" fg:x="22" fg:w="1"/><text x="12.7500%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="12.5000%" y="676" width="0.5682%" height="15" fill="rgb(209,38,44)" fg:x="22" fg:w="1"/><text x="12.7500%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="692" width="0.5682%" height="15" fill="rgb(236,212,23)" fg:x="22" fg:w="1"/><text x="12.7500%" y="702.50"></text></g><g><title><module> (sqlglot/executor/env.py:1) (1 samples, 0.57%)</title><rect x="12.5000%" y="708" width="0.5682%" height="15" fill="rgb(242,79,21)" fg:x="22" fg:w="1"/><text x="12.7500%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="12.5000%" y="724" width="0.5682%" height="15" fill="rgb(211,96,35)" fg:x="22" fg:w="1"/><text x="12.7500%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="12.5000%" y="740" width="0.5682%" height="15" fill="rgb(253,215,40)" fg:x="22" fg:w="1"/><text x="12.7500%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="756" width="0.5682%" height="15" fill="rgb(211,81,21)" fg:x="22" fg:w="1"/><text x="12.7500%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="12.5000%" y="772" width="0.5682%" height="15" fill="rgb(208,190,38)" fg:x="22" fg:w="1"/><text x="12.7500%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="788" width="0.5682%" height="15" fill="rgb(235,213,38)" fg:x="22" fg:w="1"/><text x="12.7500%" y="798.50"></text></g><g><title><module> (statistics.py:1) (1 samples, 0.57%)</title><rect x="12.5000%" y="804" width="0.5682%" height="15" fill="rgb(237,122,38)" fg:x="22" fg:w="1"/><text x="12.7500%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="12.5000%" y="820" width="0.5682%" height="15" fill="rgb(244,218,35)" fg:x="22" fg:w="1"/><text x="12.7500%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="12.5000%" y="836" width="0.5682%" height="15" fill="rgb(240,68,47)" fg:x="22" fg:w="1"/><text x="12.7500%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="12.5000%" y="852" width="0.5682%" height="15" fill="rgb(210,16,53)" fg:x="22" fg:w="1"/><text x="12.7500%" y="862.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="12.5000%" y="868" width="0.5682%" height="15" fill="rgb(235,124,12)" fg:x="22" fg:w="1"/><text x="12.7500%" y="878.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="12.5000%" y="884" width="0.5682%" height="15" fill="rgb(224,169,11)" fg:x="22" fg:w="1"/><text x="12.7500%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="12.5000%" y="900" width="0.5682%" height="15" fill="rgb(250,166,2)" fg:x="22" fg:w="1"/><text x="12.7500%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="13.0682%" y="388" width="0.5682%" height="15" fill="rgb(242,216,29)" fg:x="23" fg:w="1"/><text x="13.3182%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="13.0682%" y="404" width="0.5682%" height="15" fill="rgb(230,116,27)" fg:x="23" fg:w="1"/><text x="13.3182%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="13.0682%" y="420" width="0.5682%" height="15" fill="rgb(228,99,48)" fg:x="23" fg:w="1"/><text x="13.3182%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="13.0682%" y="436" width="0.5682%" height="15" fill="rgb(253,11,6)" fg:x="23" fg:w="1"/><text x="13.3182%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="13.0682%" y="452" width="0.5682%" height="15" fill="rgb(247,143,39)" fg:x="23" fg:w="1"/><text x="13.3182%" y="462.50"></text></g><g><title><module> (dask/dataframe/groupby.py:1) (1 samples, 0.57%)</title><rect x="13.0682%" y="468" width="0.5682%" height="15" fill="rgb(236,97,10)" fg:x="23" fg:w="1"/><text x="13.3182%" y="478.50"></text></g><g><title>_GroupBy (dask/dataframe/groupby.py:1390) (1 samples, 0.57%)</title><rect x="13.0682%" y="484" width="0.5682%" height="15" fill="rgb(233,208,19)" fg:x="23" fg:w="1"/><text x="13.3182%" y="494.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.57%)</title><rect x="13.0682%" y="500" width="0.5682%" height="15" fill="rgb(216,164,2)" fg:x="23" fg:w="1"/><text x="13.3182%" y="510.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.57%)</title><rect x="13.0682%" y="516" width="0.5682%" height="15" fill="rgb(220,129,5)" fg:x="23" fg:w="1"/><text x="13.3182%" y="526.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.57%)</title><rect x="13.0682%" y="532" width="0.5682%" height="15" fill="rgb(242,17,10)" fg:x="23" fg:w="1"/><text x="13.3182%" y="542.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.57%)</title><rect x="13.0682%" y="548" width="0.5682%" height="15" fill="rgb(242,107,0)" fg:x="23" fg:w="1"/><text x="13.3182%" y="558.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="13.6364%" y="452" width="0.5682%" height="15" fill="rgb(251,28,31)" fg:x="24" fg:w="1"/><text x="13.8864%" y="462.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="13.6364%" y="468" width="0.5682%" height="15" fill="rgb(233,223,10)" fg:x="24" fg:w="1"/><text x="13.8864%" y="478.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="13.6364%" y="484" width="0.5682%" height="15" fill="rgb(215,21,27)" fg:x="24" fg:w="1"/><text x="13.8864%" y="494.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.57%)</title><rect x="13.6364%" y="500" width="0.5682%" height="15" fill="rgb(232,23,21)" fg:x="24" fg:w="1"/><text x="13.8864%" y="510.50"></text></g><g><title>_relax_case (<frozen importlib._bootstrap_external>:64) (1 samples, 0.57%)</title><rect x="13.6364%" y="516" width="0.5682%" height="15" fill="rgb(244,5,23)" fg:x="24" fg:w="1"/><text x="13.8864%" y="526.50"></text></g><g><title><module> (scipy/sparse/linalg/_isolve/iterative.py:1) (2 samples, 1.14%)</title><rect x="14.2045%" y="1572" width="1.1364%" height="15" fill="rgb(226,81,46)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1582.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="14.2045%" y="1588" width="1.1364%" height="15" fill="rgb(247,70,30)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1598.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="14.2045%" y="1604" width="1.1364%" height="15" fill="rgb(212,68,19)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1614.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="14.2045%" y="1620" width="1.1364%" height="15" fill="rgb(240,187,13)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1630.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="14.2045%" y="1636" width="1.1364%" height="15" fill="rgb(223,113,26)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1646.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 1.14%)</title><rect x="14.2045%" y="1652" width="1.1364%" height="15" fill="rgb(206,192,2)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1662.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 1.14%)</title><rect x="14.2045%" y="1668" width="1.1364%" height="15" fill="rgb(241,108,4)" fg:x="25" fg:w="2"/><text x="14.4545%" y="1678.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.57%)</title><rect x="15.3409%" y="1732" width="0.5682%" height="15" fill="rgb(247,173,49)" fg:x="27" fg:w="1"/><text x="15.5909%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="15.3409%" y="1748" width="0.5682%" height="15" fill="rgb(224,114,35)" fg:x="27" fg:w="1"/><text x="15.5909%" y="1758.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.57%)</title><rect x="15.9091%" y="1828" width="0.5682%" height="15" fill="rgb(245,159,27)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="15.9091%" y="1844" width="0.5682%" height="15" fill="rgb(245,172,44)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1854.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="15.9091%" y="1860" width="0.5682%" height="15" fill="rgb(236,23,11)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1870.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="15.9091%" y="1876" width="0.5682%" height="15" fill="rgb(205,117,38)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1886.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="15.9091%" y="1892" width="0.5682%" height="15" fill="rgb(237,72,25)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1902.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="15.9091%" y="1908" width="0.5682%" height="15" fill="rgb(244,70,9)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1918.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="15.9091%" y="1924" width="0.5682%" height="15" fill="rgb(217,125,39)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1934.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="15.9091%" y="1940" width="0.5682%" height="15" fill="rgb(235,36,10)" fg:x="28" fg:w="1"/><text x="16.1591%" y="1950.50"></text></g><g><title><module> (scipy/linalg/_matfuncs.py:4) (3 samples, 1.70%)</title><rect x="15.9091%" y="1764" width="1.7045%" height="15" fill="rgb(251,123,47)" fg:x="28" fg:w="3"/><text x="16.1591%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="15.9091%" y="1780" width="1.7045%" height="15" fill="rgb(221,13,13)" fg:x="28" fg:w="3"/><text x="16.1591%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="15.9091%" y="1796" width="1.7045%" height="15" fill="rgb(238,131,9)" fg:x="28" fg:w="3"/><text x="16.1591%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="15.9091%" y="1812" width="1.7045%" height="15" fill="rgb(211,50,8)" fg:x="28" fg:w="3"/><text x="16.1591%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="16.4773%" y="1828" width="1.1364%" height="15" fill="rgb(245,182,24)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="16.4773%" y="1844" width="1.1364%" height="15" fill="rgb(242,14,37)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1854.50"></text></g><g><title><module> (scipy/linalg/_matfuncs_sqrtm.py:1) (2 samples, 1.14%)</title><rect x="16.4773%" y="1860" width="1.1364%" height="15" fill="rgb(246,228,12)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1870.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="16.4773%" y="1876" width="1.1364%" height="15" fill="rgb(213,55,15)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1886.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="16.4773%" y="1892" width="1.1364%" height="15" fill="rgb(209,9,3)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1902.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="16.4773%" y="1908" width="1.1364%" height="15" fill="rgb(230,59,30)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1918.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 1.14%)</title><rect x="16.4773%" y="1924" width="1.1364%" height="15" fill="rgb(209,121,21)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1934.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 1.14%)</title><rect x="16.4773%" y="1940" width="1.1364%" height="15" fill="rgb(220,109,13)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="16.4773%" y="1956" width="1.1364%" height="15" fill="rgb(232,18,1)" fg:x="29" fg:w="2"/><text x="16.7273%" y="1966.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="15.9091%" y="1732" width="2.2727%" height="15" fill="rgb(215,41,42)" fg:x="28" fg:w="4"/><text x="16.1591%" y="1742.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="15.9091%" y="1748" width="2.2727%" height="15" fill="rgb(224,123,36)" fg:x="28" fg:w="4"/><text x="16.1591%" y="1758.50">_..</text></g><g><title><module> (scipy/linalg/_misc.py:1) (1 samples, 0.57%)</title><rect x="17.6136%" y="1764" width="0.5682%" height="15" fill="rgb(240,125,3)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1774.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="17.6136%" y="1780" width="0.5682%" height="15" fill="rgb(205,98,50)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="17.6136%" y="1796" width="0.5682%" height="15" fill="rgb(205,185,37)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1806.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="17.6136%" y="1812" width="0.5682%" height="15" fill="rgb(238,207,15)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1822.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="17.6136%" y="1828" width="0.5682%" height="15" fill="rgb(213,199,42)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1838.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="17.6136%" y="1844" width="0.5682%" height="15" fill="rgb(235,201,11)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1854.50"></text></g><g><title><module> (scipy/linalg/blas.py:1) (1 samples, 0.57%)</title><rect x="17.6136%" y="1860" width="0.5682%" height="15" fill="rgb(207,46,11)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1870.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="17.6136%" y="1876" width="0.5682%" height="15" fill="rgb(241,35,35)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1886.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="17.6136%" y="1892" width="0.5682%" height="15" fill="rgb(243,32,47)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1902.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="17.6136%" y="1908" width="0.5682%" height="15" fill="rgb(247,202,23)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1918.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="17.6136%" y="1924" width="0.5682%" height="15" fill="rgb(219,102,11)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1934.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="17.6136%" y="1940" width="0.5682%" height="15" fill="rgb(243,110,44)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1950.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="17.6136%" y="1956" width="0.5682%" height="15" fill="rgb(222,74,54)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1966.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="17.6136%" y="1972" width="0.5682%" height="15" fill="rgb(216,99,12)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1982.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="17.6136%" y="1988" width="0.5682%" height="15" fill="rgb(226,22,26)" fg:x="31" fg:w="1"/><text x="17.8636%" y="1998.50"></text></g><g><title><module> (dask/array/chunk_types.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="964" width="4.5455%" height="15" fill="rgb(217,163,10)" fg:x="25" fg:w="8"/><text x="14.4545%" y="974.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="980" width="4.5455%" height="15" fill="rgb(213,25,53)" fg:x="25" fg:w="8"/><text x="14.4545%" y="990.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="996" width="4.5455%" height="15" fill="rgb(252,105,26)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1006.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1012" width="4.5455%" height="15" fill="rgb(220,39,43)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1022.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1028" width="4.5455%" height="15" fill="rgb(229,68,48)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1038.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1044" width="4.5455%" height="15" fill="rgb(252,8,32)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1054.50">_call..</text></g><g><title><module> (scipy/sparse/__init__.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="1060" width="4.5455%" height="15" fill="rgb(223,20,43)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1070.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 4.55%)</title><rect x="14.2045%" y="1076" width="4.5455%" height="15" fill="rgb(229,81,49)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1086.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1092" width="4.5455%" height="15" fill="rgb(236,28,36)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1102.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="1108" width="4.5455%" height="15" fill="rgb(249,185,26)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1118.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="1124" width="4.5455%" height="15" fill="rgb(249,174,33)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1134.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1140" width="4.5455%" height="15" fill="rgb(233,201,37)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1150.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1156" width="4.5455%" height="15" fill="rgb(221,78,26)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1166.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1172" width="4.5455%" height="15" fill="rgb(250,127,30)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1182.50">_call..</text></g><g><title><module> (scipy/sparse/csgraph/__init__.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="1188" width="4.5455%" height="15" fill="rgb(230,49,44)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1198.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="1204" width="4.5455%" height="15" fill="rgb(229,67,23)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1214.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="1220" width="4.5455%" height="15" fill="rgb(249,83,47)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1230.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1236" width="4.5455%" height="15" fill="rgb(215,43,3)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1246.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1252" width="4.5455%" height="15" fill="rgb(238,154,13)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1262.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1268" width="4.5455%" height="15" fill="rgb(219,56,2)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1278.50">_call..</text></g><g><title><module> (scipy/sparse/csgraph/_laplacian.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="1284" width="4.5455%" height="15" fill="rgb(233,0,4)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1294.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="1300" width="4.5455%" height="15" fill="rgb(235,30,7)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1310.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="1316" width="4.5455%" height="15" fill="rgb(250,79,13)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1326.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1332" width="4.5455%" height="15" fill="rgb(211,146,34)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1342.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1348" width="4.5455%" height="15" fill="rgb(228,22,38)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1358.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1364" width="4.5455%" height="15" fill="rgb(235,168,5)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1374.50">_call..</text></g><g><title><module> (scipy/sparse/linalg/__init__.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="1380" width="4.5455%" height="15" fill="rgb(221,155,16)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1390.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="1396" width="4.5455%" height="15" fill="rgb(215,215,53)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1406.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="1412" width="4.5455%" height="15" fill="rgb(223,4,10)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1422.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1428" width="4.5455%" height="15" fill="rgb(234,103,6)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1438.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1444" width="4.5455%" height="15" fill="rgb(227,97,0)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1454.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1460" width="4.5455%" height="15" fill="rgb(234,150,53)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1470.50">_call..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/__init__.py:1) (8 samples, 4.55%)</title><rect x="14.2045%" y="1476" width="4.5455%" height="15" fill="rgb(228,201,54)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1486.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="14.2045%" y="1492" width="4.5455%" height="15" fill="rgb(222,22,37)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1502.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="14.2045%" y="1508" width="4.5455%" height="15" fill="rgb(237,53,32)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1518.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="14.2045%" y="1524" width="4.5455%" height="15" fill="rgb(233,25,53)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1534.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="14.2045%" y="1540" width="4.5455%" height="15" fill="rgb(210,40,34)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1550.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="14.2045%" y="1556" width="4.5455%" height="15" fill="rgb(241,220,44)" fg:x="25" fg:w="8"/><text x="14.4545%" y="1566.50">_call..</text></g><g><title><module> (scipy/sparse/linalg/_isolve/lgmres.py:4) (6 samples, 3.41%)</title><rect x="15.3409%" y="1572" width="3.4091%" height="15" fill="rgb(235,28,35)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1582.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="15.3409%" y="1588" width="3.4091%" height="15" fill="rgb(210,56,17)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1598.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="15.3409%" y="1604" width="3.4091%" height="15" fill="rgb(224,130,29)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1614.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="15.3409%" y="1620" width="3.4091%" height="15" fill="rgb(235,212,8)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1630.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="15.3409%" y="1636" width="3.4091%" height="15" fill="rgb(223,33,50)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1646.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="15.3409%" y="1652" width="3.4091%" height="15" fill="rgb(219,149,13)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1662.50">_ca..</text></g><g><title><module> (scipy/linalg/__init__.py:1) (6 samples, 3.41%)</title><rect x="15.3409%" y="1668" width="3.4091%" height="15" fill="rgb(250,156,29)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1678.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="15.3409%" y="1684" width="3.4091%" height="15" fill="rgb(216,193,19)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1694.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="15.3409%" y="1700" width="3.4091%" height="15" fill="rgb(216,135,14)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1710.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="15.3409%" y="1716" width="3.4091%" height="15" fill="rgb(241,47,5)" fg:x="27" fg:w="6"/><text x="15.5909%" y="1726.50">_lo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="18.1818%" y="1732" width="0.5682%" height="15" fill="rgb(233,42,35)" fg:x="32" fg:w="1"/><text x="18.4318%" y="1742.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="18.1818%" y="1748" width="0.5682%" height="15" fill="rgb(231,13,6)" fg:x="32" fg:w="1"/><text x="18.4318%" y="1758.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="18.1818%" y="1764" width="0.5682%" height="15" fill="rgb(207,181,40)" fg:x="32" fg:w="1"/><text x="18.4318%" y="1774.50"></text></g><g><title><module> (dask/array/utils.py:1) (1 samples, 0.57%)</title><rect x="18.7500%" y="964" width="0.5682%" height="15" fill="rgb(254,173,49)" fg:x="33" fg:w="1"/><text x="19.0000%" y="974.50"></text></g><g><title>__new__ (importlib_metadata/__init__.py:339) (1 samples, 0.57%)</title><rect x="19.3182%" y="1044" width="0.5682%" height="15" fill="rgb(221,1,38)" fg:x="34" fg:w="1"/><text x="19.5682%" y="1054.50"></text></g><g><title><setcomp> (importlib_metadata/__init__.py:343) (1 samples, 0.57%)</title><rect x="19.3182%" y="1060" width="0.5682%" height="15" fill="rgb(206,124,46)" fg:x="34" fg:w="1"/><text x="19.5682%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (11 samples, 6.25%)</title><rect x="14.2045%" y="900" width="6.2500%" height="15" fill="rgb(249,21,11)" fg:x="25" fg:w="11"/><text x="14.4545%" y="910.50">_find_an..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (11 samples, 6.25%)</title><rect x="14.2045%" y="916" width="6.2500%" height="15" fill="rgb(222,201,40)" fg:x="25" fg:w="11"/><text x="14.4545%" y="926.50">_load_un..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (11 samples, 6.25%)</title><rect x="14.2045%" y="932" width="6.2500%" height="15" fill="rgb(235,61,29)" fg:x="25" fg:w="11"/><text x="14.4545%" y="942.50">exec_mod..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 6.25%)</title><rect x="14.2045%" y="948" width="6.2500%" height="15" fill="rgb(219,207,3)" fg:x="25" fg:w="11"/><text x="14.4545%" y="958.50">_call_wi..</text></g><g><title><module> (dask/sizeof.py:1) (2 samples, 1.14%)</title><rect x="19.3182%" y="964" width="1.1364%" height="15" fill="rgb(222,56,46)" fg:x="34" fg:w="2"/><text x="19.5682%" y="974.50"></text></g><g><title>_register_entry_point_plugins (dask/sizeof.py:261) (2 samples, 1.14%)</title><rect x="19.3182%" y="980" width="1.1364%" height="15" fill="rgb(239,76,54)" fg:x="34" fg:w="2"/><text x="19.5682%" y="990.50"></text></g><g><title>entry_points (importlib_metadata/__init__.py:936) (2 samples, 1.14%)</title><rect x="19.3182%" y="996" width="1.1364%" height="15" fill="rgb(231,124,27)" fg:x="34" fg:w="2"/><text x="19.5682%" y="1006.50"></text></g><g><title><genexpr> (importlib_metadata/__init__.py:945) (2 samples, 1.14%)</title><rect x="19.3182%" y="1012" width="1.1364%" height="15" fill="rgb(249,195,6)" fg:x="34" fg:w="2"/><text x="19.5682%" y="1022.50"></text></g><g><title>unique_everseen (importlib_metadata/_itertools.py:4) (2 samples, 1.14%)</title><rect x="19.3182%" y="1028" width="1.1364%" height="15" fill="rgb(237,174,47)" fg:x="34" fg:w="2"/><text x="19.5682%" y="1038.50"></text></g><g><title>normalized_name (importlib_metadata/_py39compat.py:13) (1 samples, 0.57%)</title><rect x="19.8864%" y="1044" width="0.5682%" height="15" fill="rgb(206,201,31)" fg:x="35" fg:w="1"/><text x="20.1364%" y="1054.50"></text></g><g><title>_normalized_name (importlib_metadata/__init__.py:861) (1 samples, 0.57%)</title><rect x="19.8864%" y="1060" width="0.5682%" height="15" fill="rgb(231,57,52)" fg:x="35" fg:w="1"/><text x="20.1364%" y="1070.50"></text></g><g><title><module> (dask/array/backends.py:1) (12 samples, 6.82%)</title><rect x="14.2045%" y="772" width="6.8182%" height="15" fill="rgb(248,177,22)" fg:x="25" fg:w="12"/><text x="14.4545%" y="782.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 6.82%)</title><rect x="14.2045%" y="788" width="6.8182%" height="15" fill="rgb(215,211,37)" fg:x="25" fg:w="12"/><text x="14.4545%" y="798.50">_find_and..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (12 samples, 6.82%)</title><rect x="14.2045%" y="804" width="6.8182%" height="15" fill="rgb(241,128,51)" fg:x="25" fg:w="12"/><text x="14.4545%" y="814.50">_find_and..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (12 samples, 6.82%)</title><rect x="14.2045%" y="820" width="6.8182%" height="15" fill="rgb(227,165,31)" fg:x="25" fg:w="12"/><text x="14.4545%" y="830.50">_load_unl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (12 samples, 6.82%)</title><rect x="14.2045%" y="836" width="6.8182%" height="15" fill="rgb(228,167,24)" fg:x="25" fg:w="12"/><text x="14.4545%" y="846.50">exec_modu..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (12 samples, 6.82%)</title><rect x="14.2045%" y="852" width="6.8182%" height="15" fill="rgb(228,143,12)" fg:x="25" fg:w="12"/><text x="14.4545%" y="862.50">_call_wit..</text></g><g><title><module> (dask/array/core.py:1) (12 samples, 6.82%)</title><rect x="14.2045%" y="868" width="6.8182%" height="15" fill="rgb(249,149,8)" fg:x="25" fg:w="12"/><text x="14.4545%" y="878.50"><module> ..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (12 samples, 6.82%)</title><rect x="14.2045%" y="884" width="6.8182%" height="15" fill="rgb(243,35,44)" fg:x="25" fg:w="12"/><text x="14.4545%" y="894.50">_find_and..</text></g><g><title>cb (<frozen importlib._bootstrap>:185) (1 samples, 0.57%)</title><rect x="20.4545%" y="900" width="0.5682%" height="15" fill="rgb(246,89,9)" fg:x="36" fg:w="1"/><text x="20.7045%" y="910.50"></text></g><g><title><module> (dask/array/creation.py:1) (1 samples, 0.57%)</title><rect x="21.0227%" y="868" width="0.5682%" height="15" fill="rgb(233,213,13)" fg:x="37" fg:w="1"/><text x="21.2727%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="21.0227%" y="884" width="0.5682%" height="15" fill="rgb(233,141,41)" fg:x="37" fg:w="1"/><text x="21.2727%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="21.0227%" y="900" width="0.5682%" height="15" fill="rgb(239,167,4)" fg:x="37" fg:w="1"/><text x="21.2727%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="21.0227%" y="916" width="0.5682%" height="15" fill="rgb(209,217,16)" fg:x="37" fg:w="1"/><text x="21.2727%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="21.0227%" y="932" width="0.5682%" height="15" fill="rgb(219,88,35)" fg:x="37" fg:w="1"/><text x="21.2727%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="21.0227%" y="948" width="0.5682%" height="15" fill="rgb(220,193,23)" fg:x="37" fg:w="1"/><text x="21.2727%" y="958.50"></text></g><g><title><module> (dask/array/ufunc.py:1) (1 samples, 0.57%)</title><rect x="21.0227%" y="964" width="0.5682%" height="15" fill="rgb(230,90,52)" fg:x="37" fg:w="1"/><text x="21.2727%" y="974.50"></text></g><g><title>__init__ (dask/array/ufunc.py:83) (1 samples, 0.57%)</title><rect x="21.0227%" y="980" width="0.5682%" height="15" fill="rgb(252,106,19)" fg:x="37" fg:w="1"/><text x="21.2727%" y="990.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.57%)</title><rect x="21.0227%" y="996" width="0.5682%" height="15" fill="rgb(206,74,20)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1006.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.57%)</title><rect x="21.0227%" y="1012" width="0.5682%" height="15" fill="rgb(230,138,44)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1022.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.57%)</title><rect x="21.0227%" y="1028" width="0.5682%" height="15" fill="rgb(235,182,43)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1038.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.57%)</title><rect x="21.0227%" y="1044" width="0.5682%" height="15" fill="rgb(242,16,51)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1054.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.57%)</title><rect x="21.0227%" y="1060" width="0.5682%" height="15" fill="rgb(248,9,4)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1070.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.57%)</title><rect x="21.0227%" y="1076" width="0.5682%" height="15" fill="rgb(210,31,22)" fg:x="37" fg:w="1"/><text x="21.2727%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.57%)</title><rect x="21.5909%" y="1348" width="0.5682%" height="15" fill="rgb(239,54,39)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1358.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="21.5909%" y="1364" width="0.5682%" height="15" fill="rgb(230,99,41)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="21.5909%" y="1380" width="0.5682%" height="15" fill="rgb(253,106,12)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="21.5909%" y="1396" width="0.5682%" height="15" fill="rgb(213,46,41)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="21.5909%" y="1412" width="0.5682%" height="15" fill="rgb(215,133,35)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1422.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="21.5909%" y="1428" width="0.5682%" height="15" fill="rgb(213,28,5)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1438.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="21.5909%" y="1444" width="0.5682%" height="15" fill="rgb(215,77,49)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1454.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="21.5909%" y="1460" width="0.5682%" height="15" fill="rgb(248,100,22)" fg:x="38" fg:w="1"/><text x="21.8409%" y="1470.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="21.5909%" y="1044" width="1.1364%" height="15" fill="rgb(208,67,9)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1054.50"></text></g><g><title><module> (scipy/fft/__init__.py:1) (2 samples, 1.14%)</title><rect x="21.5909%" y="1060" width="1.1364%" height="15" fill="rgb(219,133,21)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="21.5909%" y="1076" width="1.1364%" height="15" fill="rgb(246,46,29)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="21.5909%" y="1092" width="1.1364%" height="15" fill="rgb(246,185,52)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="21.5909%" y="1108" width="1.1364%" height="15" fill="rgb(252,136,11)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="21.5909%" y="1124" width="1.1364%" height="15" fill="rgb(219,138,53)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="21.5909%" y="1140" width="1.1364%" height="15" fill="rgb(211,51,23)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1150.50"></text></g><g><title><module> (scipy/fft/_fftlog.py:1) (2 samples, 1.14%)</title><rect x="21.5909%" y="1156" width="1.1364%" height="15" fill="rgb(247,221,28)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="21.5909%" y="1172" width="1.1364%" height="15" fill="rgb(251,222,45)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="21.5909%" y="1188" width="1.1364%" height="15" fill="rgb(217,162,53)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1198.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="21.5909%" y="1204" width="1.1364%" height="15" fill="rgb(229,93,14)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1214.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="21.5909%" y="1220" width="1.1364%" height="15" fill="rgb(209,67,49)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="21.5909%" y="1236" width="1.1364%" height="15" fill="rgb(213,87,29)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1246.50"></text></g><g><title><module> (scipy/special/__init__.py:1) (2 samples, 1.14%)</title><rect x="21.5909%" y="1252" width="1.1364%" height="15" fill="rgb(205,151,52)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1262.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="21.5909%" y="1268" width="1.1364%" height="15" fill="rgb(253,215,39)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="21.5909%" y="1284" width="1.1364%" height="15" fill="rgb(221,220,41)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1294.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="21.5909%" y="1300" width="1.1364%" height="15" fill="rgb(218,133,21)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="21.5909%" y="1316" width="1.1364%" height="15" fill="rgb(221,193,43)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1326.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="21.5909%" y="1332" width="1.1364%" height="15" fill="rgb(240,128,52)" fg:x="38" fg:w="2"/><text x="21.8409%" y="1342.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="22.1591%" y="1348" width="0.5682%" height="15" fill="rgb(253,114,12)" fg:x="39" fg:w="1"/><text x="22.4091%" y="1358.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="22.1591%" y="1364" width="0.5682%" height="15" fill="rgb(215,223,47)" fg:x="39" fg:w="1"/><text x="22.4091%" y="1374.50"></text></g><g><title>path_stats (<frozen importlib._bootstrap_external>:1077) (1 samples, 0.57%)</title><rect x="22.1591%" y="1380" width="0.5682%" height="15" fill="rgb(248,225,23)" fg:x="39" fg:w="1"/><text x="22.4091%" y="1390.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.57%)</title><rect x="22.1591%" y="1396" width="0.5682%" height="15" fill="rgb(250,108,0)" fg:x="39" fg:w="1"/><text x="22.4091%" y="1406.50"></text></g><g><title><module> (dask/array/fft.py:1) (4 samples, 2.27%)</title><rect x="21.0227%" y="772" width="2.2727%" height="15" fill="rgb(228,208,7)" fg:x="37" fg:w="4"/><text x="21.2727%" y="782.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="21.0227%" y="788" width="2.2727%" height="15" fill="rgb(244,45,10)" fg:x="37" fg:w="4"/><text x="21.2727%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="21.0227%" y="804" width="2.2727%" height="15" fill="rgb(207,125,25)" fg:x="37" fg:w="4"/><text x="21.2727%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="21.0227%" y="820" width="2.2727%" height="15" fill="rgb(210,195,18)" fg:x="37" fg:w="4"/><text x="21.2727%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="21.0227%" y="836" width="2.2727%" height="15" fill="rgb(249,80,12)" fg:x="37" fg:w="4"/><text x="21.2727%" y="846.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="21.0227%" y="852" width="2.2727%" height="15" fill="rgb(221,65,9)" fg:x="37" fg:w="4"/><text x="21.2727%" y="862.50">_..</text></g><g><title><module> (scipy/fftpack/__init__.py:1) (3 samples, 1.70%)</title><rect x="21.5909%" y="868" width="1.7045%" height="15" fill="rgb(235,49,36)" fg:x="38" fg:w="3"/><text x="21.8409%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="21.5909%" y="884" width="1.7045%" height="15" fill="rgb(225,32,20)" fg:x="38" fg:w="3"/><text x="21.8409%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="21.5909%" y="900" width="1.7045%" height="15" fill="rgb(215,141,46)" fg:x="38" fg:w="3"/><text x="21.8409%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="21.5909%" y="916" width="1.7045%" height="15" fill="rgb(250,160,47)" fg:x="38" fg:w="3"/><text x="21.8409%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="21.5909%" y="932" width="1.7045%" height="15" fill="rgb(216,222,40)" fg:x="38" fg:w="3"/><text x="21.8409%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="21.5909%" y="948" width="1.7045%" height="15" fill="rgb(234,217,39)" fg:x="38" fg:w="3"/><text x="21.8409%" y="958.50"></text></g><g><title><module> (scipy/fftpack/_basic.py:1) (3 samples, 1.70%)</title><rect x="21.5909%" y="964" width="1.7045%" height="15" fill="rgb(207,178,40)" fg:x="38" fg:w="3"/><text x="21.8409%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="21.5909%" y="980" width="1.7045%" height="15" fill="rgb(221,136,13)" fg:x="38" fg:w="3"/><text x="21.8409%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="21.5909%" y="996" width="1.7045%" height="15" fill="rgb(249,199,10)" fg:x="38" fg:w="3"/><text x="21.8409%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="21.5909%" y="1012" width="1.7045%" height="15" fill="rgb(249,222,13)" fg:x="38" fg:w="3"/><text x="21.8409%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="21.5909%" y="1028" width="1.7045%" height="15" fill="rgb(244,185,38)" fg:x="38" fg:w="3"/><text x="21.8409%" y="1038.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="22.7273%" y="1044" width="0.5682%" height="15" fill="rgb(236,202,9)" fg:x="40" fg:w="1"/><text x="22.9773%" y="1054.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="22.7273%" y="1060" width="0.5682%" height="15" fill="rgb(250,229,37)" fg:x="40" fg:w="1"/><text x="22.9773%" y="1070.50"></text></g><g><title><module> (dask/array/linalg.py:1) (1 samples, 0.57%)</title><rect x="23.2955%" y="772" width="0.5682%" height="15" fill="rgb(206,174,23)" fg:x="41" fg:w="1"/><text x="23.5455%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="23.2955%" y="788" width="0.5682%" height="15" fill="rgb(211,33,43)" fg:x="41" fg:w="1"/><text x="23.5455%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="23.2955%" y="804" width="0.5682%" height="15" fill="rgb(245,58,50)" fg:x="41" fg:w="1"/><text x="23.5455%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="23.2955%" y="820" width="0.5682%" height="15" fill="rgb(244,68,36)" fg:x="41" fg:w="1"/><text x="23.5455%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="23.2955%" y="836" width="0.5682%" height="15" fill="rgb(232,229,15)" fg:x="41" fg:w="1"/><text x="23.5455%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="23.2955%" y="852" width="0.5682%" height="15" fill="rgb(254,30,23)" fg:x="41" fg:w="1"/><text x="23.5455%" y="862.50"></text></g><g><title><module> (dask/array/random.py:1) (1 samples, 0.57%)</title><rect x="23.2955%" y="868" width="0.5682%" height="15" fill="rgb(235,160,14)" fg:x="41" fg:w="1"/><text x="23.5455%" y="878.50"></text></g><g><title>Generator (dask/array/random.py:29) (1 samples, 0.57%)</title><rect x="23.2955%" y="884" width="0.5682%" height="15" fill="rgb(212,155,44)" fg:x="41" fg:w="1"/><text x="23.5455%" y="894.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.57%)</title><rect x="23.2955%" y="900" width="0.5682%" height="15" fill="rgb(226,2,50)" fg:x="41" fg:w="1"/><text x="23.5455%" y="910.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.57%)</title><rect x="23.2955%" y="916" width="0.5682%" height="15" fill="rgb(234,177,6)" fg:x="41" fg:w="1"/><text x="23.5455%" y="926.50"></text></g><g><title>get_named_args (dask/utils.py:693) (1 samples, 0.57%)</title><rect x="23.2955%" y="932" width="0.5682%" height="15" fill="rgb(217,24,9)" fg:x="41" fg:w="1"/><text x="23.5455%" y="942.50"></text></g><g><title>signature (inspect.py:3111) (1 samples, 0.57%)</title><rect x="23.2955%" y="948" width="0.5682%" height="15" fill="rgb(220,13,46)" fg:x="41" fg:w="1"/><text x="23.5455%" y="958.50"></text></g><g><title>from_callable (inspect.py:2859) (1 samples, 0.57%)</title><rect x="23.2955%" y="964" width="0.5682%" height="15" fill="rgb(239,221,27)" fg:x="41" fg:w="1"/><text x="23.5455%" y="974.50"></text></g><g><title>_signature_from_callable (inspect.py:2246) (1 samples, 0.57%)</title><rect x="23.2955%" y="980" width="0.5682%" height="15" fill="rgb(222,198,25)" fg:x="41" fg:w="1"/><text x="23.5455%" y="990.50"></text></g><g><title>extra_titles (dask/utils.py:809) (1 samples, 0.57%)</title><rect x="23.8636%" y="916" width="0.5682%" height="15" fill="rgb(211,99,13)" fg:x="42" fg:w="1"/><text x="24.1136%" y="926.50"></text></g><g><title><dictcomp> (dask/utils.py:811) (1 samples, 0.57%)</title><rect x="23.8636%" y="932" width="0.5682%" height="15" fill="rgb(232,111,31)" fg:x="42" fg:w="1"/><text x="24.1136%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="23.8636%" y="852" width="1.1364%" height="15" fill="rgb(245,82,37)" fg:x="42" fg:w="2"/><text x="24.1136%" y="862.50"></text></g><g><title><module> (dask/array/routines.py:1) (2 samples, 1.14%)</title><rect x="23.8636%" y="868" width="1.1364%" height="15" fill="rgb(227,149,46)" fg:x="42" fg:w="2"/><text x="24.1136%" y="878.50"></text></g><g><title>wrapper (dask/utils.py:978) (2 samples, 1.14%)</title><rect x="23.8636%" y="884" width="1.1364%" height="15" fill="rgb(218,36,50)" fg:x="42" fg:w="2"/><text x="24.1136%" y="894.50"></text></g><g><title>_derived_from (dask/utils.py:885) (2 samples, 1.14%)</title><rect x="23.8636%" y="900" width="1.1364%" height="15" fill="rgb(226,80,48)" fg:x="42" fg:w="2"/><text x="24.1136%" y="910.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.57%)</title><rect x="24.4318%" y="916" width="0.5682%" height="15" fill="rgb(238,224,15)" fg:x="43" fg:w="1"/><text x="24.6818%" y="926.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.57%)</title><rect x="24.4318%" y="932" width="0.5682%" height="15" fill="rgb(241,136,10)" fg:x="43" fg:w="1"/><text x="24.6818%" y="942.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.57%)</title><rect x="24.4318%" y="948" width="0.5682%" height="15" fill="rgb(208,32,45)" fg:x="43" fg:w="1"/><text x="24.6818%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 11.93%)</title><rect x="14.2045%" y="548" width="11.9318%" height="15" fill="rgb(207,135,9)" fg:x="25" fg:w="21"/><text x="14.4545%" y="558.50">_call_with_frames_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 11.93%)</title><rect x="14.2045%" y="564" width="11.9318%" height="15" fill="rgb(206,86,44)" fg:x="25" fg:w="21"/><text x="14.4545%" y="574.50">_find_and_load (<f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 11.93%)</title><rect x="14.2045%" y="580" width="11.9318%" height="15" fill="rgb(245,177,15)" fg:x="25" fg:w="21"/><text x="14.4545%" y="590.50">_find_and_load_unl..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 11.93%)</title><rect x="14.2045%" y="596" width="11.9318%" height="15" fill="rgb(206,64,50)" fg:x="25" fg:w="21"/><text x="14.4545%" y="606.50">_load_unlocked (<f..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 11.93%)</title><rect x="14.2045%" y="612" width="11.9318%" height="15" fill="rgb(234,36,40)" fg:x="25" fg:w="21"/><text x="14.4545%" y="622.50">exec_module (<froz..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 11.93%)</title><rect x="14.2045%" y="628" width="11.9318%" height="15" fill="rgb(213,64,8)" fg:x="25" fg:w="21"/><text x="14.4545%" y="638.50">_call_with_frames_..</text></g><g><title><module> (dask/array/__init__.py:1) (21 samples, 11.93%)</title><rect x="14.2045%" y="644" width="11.9318%" height="15" fill="rgb(210,75,36)" fg:x="25" fg:w="21"/><text x="14.4545%" y="654.50"><module> (dask/arr..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (21 samples, 11.93%)</title><rect x="14.2045%" y="660" width="11.9318%" height="15" fill="rgb(229,88,21)" fg:x="25" fg:w="21"/><text x="14.4545%" y="670.50">_handle_fromlist (..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 11.93%)</title><rect x="14.2045%" y="676" width="11.9318%" height="15" fill="rgb(252,204,47)" fg:x="25" fg:w="21"/><text x="14.4545%" y="686.50">_call_with_frames_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (21 samples, 11.93%)</title><rect x="14.2045%" y="692" width="11.9318%" height="15" fill="rgb(208,77,27)" fg:x="25" fg:w="21"/><text x="14.4545%" y="702.50">_find_and_load (<f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (21 samples, 11.93%)</title><rect x="14.2045%" y="708" width="11.9318%" height="15" fill="rgb(221,76,26)" fg:x="25" fg:w="21"/><text x="14.4545%" y="718.50">_find_and_load_unl..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (21 samples, 11.93%)</title><rect x="14.2045%" y="724" width="11.9318%" height="15" fill="rgb(225,139,18)" fg:x="25" fg:w="21"/><text x="14.4545%" y="734.50">_load_unlocked (<f..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (21 samples, 11.93%)</title><rect x="14.2045%" y="740" width="11.9318%" height="15" fill="rgb(230,137,11)" fg:x="25" fg:w="21"/><text x="14.4545%" y="750.50">exec_module (<froz..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (21 samples, 11.93%)</title><rect x="14.2045%" y="756" width="11.9318%" height="15" fill="rgb(212,28,1)" fg:x="25" fg:w="21"/><text x="14.4545%" y="766.50">_call_with_frames_..</text></g><g><title><module> (dask/array/ma.py:1) (4 samples, 2.27%)</title><rect x="23.8636%" y="772" width="2.2727%" height="15" fill="rgb(248,164,17)" fg:x="42" fg:w="4"/><text x="24.1136%" y="782.50"><..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="23.8636%" y="788" width="2.2727%" height="15" fill="rgb(222,171,42)" fg:x="42" fg:w="4"/><text x="24.1136%" y="798.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="23.8636%" y="804" width="2.2727%" height="15" fill="rgb(243,84,45)" fg:x="42" fg:w="4"/><text x="24.1136%" y="814.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="23.8636%" y="820" width="2.2727%" height="15" fill="rgb(252,49,23)" fg:x="42" fg:w="4"/><text x="24.1136%" y="830.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="23.8636%" y="836" width="2.2727%" height="15" fill="rgb(215,19,7)" fg:x="42" fg:w="4"/><text x="24.1136%" y="846.50">e..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 1.14%)</title><rect x="25.0000%" y="852" width="1.1364%" height="15" fill="rgb(238,81,41)" fg:x="44" fg:w="2"/><text x="25.2500%" y="862.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 1.14%)</title><rect x="25.0000%" y="868" width="1.1364%" height="15" fill="rgb(210,199,37)" fg:x="44" fg:w="2"/><text x="25.2500%" y="878.50"></text></g><g><title>DataFrame (dask/dataframe/core.py:5011) (1 samples, 0.57%)</title><rect x="26.1364%" y="612" width="0.5682%" height="15" fill="rgb(244,192,49)" fg:x="46" fg:w="1"/><text x="26.3864%" y="622.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.57%)</title><rect x="26.1364%" y="628" width="0.5682%" height="15" fill="rgb(226,211,11)" fg:x="46" fg:w="1"/><text x="26.3864%" y="638.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.57%)</title><rect x="26.1364%" y="644" width="0.5682%" height="15" fill="rgb(236,162,54)" fg:x="46" fg:w="1"/><text x="26.3864%" y="654.50"></text></g><g><title>unsupported_arguments (dask/utils.py:870) (1 samples, 0.57%)</title><rect x="26.1364%" y="660" width="0.5682%" height="15" fill="rgb(220,229,9)" fg:x="46" fg:w="1"/><text x="26.3864%" y="670.50"></text></g><g><title><listcomp> (dask/utils.py:874) (1 samples, 0.57%)</title><rect x="26.1364%" y="676" width="0.5682%" height="15" fill="rgb(250,87,22)" fg:x="46" fg:w="1"/><text x="26.3864%" y="686.50"></text></g><g><title>match (re.py:188) (1 samples, 0.57%)</title><rect x="26.1364%" y="692" width="0.5682%" height="15" fill="rgb(239,43,17)" fg:x="46" fg:w="1"/><text x="26.3864%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="26.1364%" y="708" width="0.5682%" height="15" fill="rgb(231,177,25)" fg:x="46" fg:w="1"/><text x="26.3864%" y="718.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.57%)</title><rect x="26.1364%" y="724" width="0.5682%" height="15" fill="rgb(219,179,1)" fg:x="46" fg:w="1"/><text x="26.3864%" y="734.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.57%)</title><rect x="26.1364%" y="740" width="0.5682%" height="15" fill="rgb(238,219,53)" fg:x="46" fg:w="1"/><text x="26.3864%" y="750.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.57%)</title><rect x="26.1364%" y="756" width="0.5682%" height="15" fill="rgb(232,167,36)" fg:x="46" fg:w="1"/><text x="26.3864%" y="766.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.57%)</title><rect x="26.1364%" y="772" width="0.5682%" height="15" fill="rgb(244,19,51)" fg:x="46" fg:w="1"/><text x="26.3864%" y="782.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.57%)</title><rect x="26.1364%" y="788" width="0.5682%" height="15" fill="rgb(224,6,22)" fg:x="46" fg:w="1"/><text x="26.3864%" y="798.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.57%)</title><rect x="27.8409%" y="740" width="0.5682%" height="15" fill="rgb(224,145,5)" fg:x="49" fg:w="1"/><text x="28.0909%" y="750.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.57%)</title><rect x="27.8409%" y="756" width="0.5682%" height="15" fill="rgb(234,130,49)" fg:x="49" fg:w="1"/><text x="28.0909%" y="766.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.57%)</title><rect x="27.8409%" y="772" width="0.5682%" height="15" fill="rgb(254,6,2)" fg:x="49" fg:w="1"/><text x="28.0909%" y="782.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.57%)</title><rect x="27.8409%" y="788" width="0.5682%" height="15" fill="rgb(208,96,46)" fg:x="49" fg:w="1"/><text x="28.0909%" y="798.50"></text></g><g><title>_Frame (dask/dataframe/core.py:437) (4 samples, 2.27%)</title><rect x="26.7045%" y="612" width="2.2727%" height="15" fill="rgb(239,3,39)" fg:x="47" fg:w="4"/><text x="26.9545%" y="622.50">_..</text></g><g><title>wrapper (dask/utils.py:978) (4 samples, 2.27%)</title><rect x="26.7045%" y="628" width="2.2727%" height="15" fill="rgb(233,210,1)" fg:x="47" fg:w="4"/><text x="26.9545%" y="638.50">w..</text></g><g><title>_derived_from (dask/utils.py:885) (4 samples, 2.27%)</title><rect x="26.7045%" y="644" width="2.2727%" height="15" fill="rgb(244,137,37)" fg:x="47" fg:w="4"/><text x="26.9545%" y="654.50">_..</text></g><g><title>unsupported_arguments (dask/utils.py:870) (4 samples, 2.27%)</title><rect x="26.7045%" y="660" width="2.2727%" height="15" fill="rgb(240,136,2)" fg:x="47" fg:w="4"/><text x="26.9545%" y="670.50">u..</text></g><g><title><listcomp> (dask/utils.py:874) (4 samples, 2.27%)</title><rect x="26.7045%" y="676" width="2.2727%" height="15" fill="rgb(239,18,37)" fg:x="47" fg:w="4"/><text x="26.9545%" y="686.50"><..</text></g><g><title>match (re.py:188) (4 samples, 2.27%)</title><rect x="26.7045%" y="692" width="2.2727%" height="15" fill="rgb(218,185,22)" fg:x="47" fg:w="4"/><text x="26.9545%" y="702.50">m..</text></g><g><title>_compile (re.py:289) (3 samples, 1.70%)</title><rect x="27.2727%" y="708" width="1.7045%" height="15" fill="rgb(225,218,4)" fg:x="48" fg:w="3"/><text x="27.5227%" y="718.50"></text></g><g><title>compile (sre_compile.py:783) (2 samples, 1.14%)</title><rect x="27.8409%" y="724" width="1.1364%" height="15" fill="rgb(230,182,32)" fg:x="49" fg:w="2"/><text x="28.0909%" y="734.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.57%)</title><rect x="28.4091%" y="740" width="0.5682%" height="15" fill="rgb(242,56,43)" fg:x="50" fg:w="1"/><text x="28.6591%" y="750.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="28.4091%" y="756" width="0.5682%" height="15" fill="rgb(233,99,24)" fg:x="50" fg:w="1"/><text x="28.6591%" y="766.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="28.4091%" y="772" width="0.5682%" height="15" fill="rgb(234,209,42)" fg:x="50" fg:w="1"/><text x="28.6591%" y="782.50"></text></g><g><title><module> (asyncio/base_events.py:1) (1 samples, 0.57%)</title><rect x="28.9773%" y="1220" width="0.5682%" height="15" fill="rgb(227,7,12)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1230.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="28.9773%" y="1236" width="0.5682%" height="15" fill="rgb(245,203,43)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1246.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="28.9773%" y="1252" width="0.5682%" height="15" fill="rgb(238,205,33)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1262.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="28.9773%" y="1268" width="0.5682%" height="15" fill="rgb(231,56,7)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1278.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="28.9773%" y="1284" width="0.5682%" height="15" fill="rgb(244,186,29)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1294.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="28.9773%" y="1300" width="0.5682%" height="15" fill="rgb(234,111,31)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1310.50"></text></g><g><title><module> (ssl.py:4) (1 samples, 0.57%)</title><rect x="28.9773%" y="1316" width="0.5682%" height="15" fill="rgb(241,149,10)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1326.50"></text></g><g><title>_convert_ (enum.py:528) (1 samples, 0.57%)</title><rect x="28.9773%" y="1332" width="0.5682%" height="15" fill="rgb(249,206,44)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1342.50"></text></g><g><title>__call__ (enum.py:358) (1 samples, 0.57%)</title><rect x="28.9773%" y="1348" width="0.5682%" height="15" fill="rgb(251,153,30)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1358.50"></text></g><g><title>_create_ (enum.py:475) (1 samples, 0.57%)</title><rect x="28.9773%" y="1364" width="0.5682%" height="15" fill="rgb(239,152,38)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1374.50"></text></g><g><title>__setitem__ (enum.py:88) (1 samples, 0.57%)</title><rect x="28.9773%" y="1380" width="0.5682%" height="15" fill="rgb(249,139,47)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1390.50"></text></g><g><title>_is_private (enum.py:44) (1 samples, 0.57%)</title><rect x="28.9773%" y="1396" width="0.5682%" height="15" fill="rgb(244,64,35)" fg:x="51" fg:w="1"/><text x="29.2273%" y="1406.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="612" width="1.1364%" height="15" fill="rgb(216,46,15)" fg:x="51" fg:w="2"/><text x="29.2273%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="628" width="1.1364%" height="15" fill="rgb(250,74,19)" fg:x="51" fg:w="2"/><text x="29.2273%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="644" width="1.1364%" height="15" fill="rgb(249,42,33)" fg:x="51" fg:w="2"/><text x="29.2273%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="660" width="1.1364%" height="15" fill="rgb(242,149,17)" fg:x="51" fg:w="2"/><text x="29.2273%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="676" width="1.1364%" height="15" fill="rgb(244,29,21)" fg:x="51" fg:w="2"/><text x="29.2273%" y="686.50"></text></g><g><title><module> (dask/bag/__init__.py:1) (2 samples, 1.14%)</title><rect x="28.9773%" y="692" width="1.1364%" height="15" fill="rgb(220,130,37)" fg:x="51" fg:w="2"/><text x="29.2273%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="708" width="1.1364%" height="15" fill="rgb(211,67,2)" fg:x="51" fg:w="2"/><text x="29.2273%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="724" width="1.1364%" height="15" fill="rgb(235,68,52)" fg:x="51" fg:w="2"/><text x="29.2273%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="740" width="1.1364%" height="15" fill="rgb(246,142,3)" fg:x="51" fg:w="2"/><text x="29.2273%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="756" width="1.1364%" height="15" fill="rgb(241,25,7)" fg:x="51" fg:w="2"/><text x="29.2273%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="772" width="1.1364%" height="15" fill="rgb(242,119,39)" fg:x="51" fg:w="2"/><text x="29.2273%" y="782.50"></text></g><g><title><module> (dask/bag/avro.py:1) (2 samples, 1.14%)</title><rect x="28.9773%" y="788" width="1.1364%" height="15" fill="rgb(241,98,45)" fg:x="51" fg:w="2"/><text x="29.2273%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="804" width="1.1364%" height="15" fill="rgb(254,28,30)" fg:x="51" fg:w="2"/><text x="29.2273%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="820" width="1.1364%" height="15" fill="rgb(241,142,54)" fg:x="51" fg:w="2"/><text x="29.2273%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="836" width="1.1364%" height="15" fill="rgb(222,85,15)" fg:x="51" fg:w="2"/><text x="29.2273%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="852" width="1.1364%" height="15" fill="rgb(210,85,47)" fg:x="51" fg:w="2"/><text x="29.2273%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="868" width="1.1364%" height="15" fill="rgb(224,206,25)" fg:x="51" fg:w="2"/><text x="29.2273%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="884" width="1.1364%" height="15" fill="rgb(243,201,19)" fg:x="51" fg:w="2"/><text x="29.2273%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="900" width="1.1364%" height="15" fill="rgb(236,59,4)" fg:x="51" fg:w="2"/><text x="29.2273%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="916" width="1.1364%" height="15" fill="rgb(254,179,45)" fg:x="51" fg:w="2"/><text x="29.2273%" y="926.50"></text></g><g><title><module> (fsspec/__init__.py:1) (2 samples, 1.14%)</title><rect x="28.9773%" y="932" width="1.1364%" height="15" fill="rgb(226,14,10)" fg:x="51" fg:w="2"/><text x="29.2273%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="948" width="1.1364%" height="15" fill="rgb(244,27,41)" fg:x="51" fg:w="2"/><text x="29.2273%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="964" width="1.1364%" height="15" fill="rgb(235,35,32)" fg:x="51" fg:w="2"/><text x="29.2273%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="980" width="1.1364%" height="15" fill="rgb(218,68,31)" fg:x="51" fg:w="2"/><text x="29.2273%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="996" width="1.1364%" height="15" fill="rgb(207,120,37)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="1012" width="1.1364%" height="15" fill="rgb(227,98,0)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1022.50"></text></g><g><title><module> (fsspec/exceptions.py:1) (2 samples, 1.14%)</title><rect x="28.9773%" y="1028" width="1.1364%" height="15" fill="rgb(207,7,3)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="1044" width="1.1364%" height="15" fill="rgb(206,98,19)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1054.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="1060" width="1.1364%" height="15" fill="rgb(217,5,26)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1070.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="1076" width="1.1364%" height="15" fill="rgb(235,190,38)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1086.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="1092" width="1.1364%" height="15" fill="rgb(247,86,24)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="1108" width="1.1364%" height="15" fill="rgb(205,101,16)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1118.50"></text></g><g><title><module> (asyncio/__init__.py:1) (2 samples, 1.14%)</title><rect x="28.9773%" y="1124" width="1.1364%" height="15" fill="rgb(246,168,33)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="28.9773%" y="1140" width="1.1364%" height="15" fill="rgb(231,114,1)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1150.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="28.9773%" y="1156" width="1.1364%" height="15" fill="rgb(207,184,53)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1166.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="28.9773%" y="1172" width="1.1364%" height="15" fill="rgb(224,95,51)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1182.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="28.9773%" y="1188" width="1.1364%" height="15" fill="rgb(212,188,45)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1198.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="28.9773%" y="1204" width="1.1364%" height="15" fill="rgb(223,154,38)" fg:x="51" fg:w="2"/><text x="29.2273%" y="1214.50"></text></g><g><title><module> (asyncio/unix_events.py:1) (1 samples, 0.57%)</title><rect x="29.5455%" y="1220" width="0.5682%" height="15" fill="rgb(251,22,52)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1230.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="29.5455%" y="1236" width="0.5682%" height="15" fill="rgb(229,209,22)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="29.5455%" y="1252" width="0.5682%" height="15" fill="rgb(234,138,34)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1262.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="29.5455%" y="1268" width="0.5682%" height="15" fill="rgb(212,95,11)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1278.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="29.5455%" y="1284" width="0.5682%" height="15" fill="rgb(240,179,47)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1294.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="29.5455%" y="1300" width="0.5682%" height="15" fill="rgb(240,163,11)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1310.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="29.5455%" y="1316" width="0.5682%" height="15" fill="rgb(236,37,12)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="29.5455%" y="1332" width="0.5682%" height="15" fill="rgb(232,164,16)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1342.50"></text></g><g><title><module> (asyncio/selector_events.py:1) (1 samples, 0.57%)</title><rect x="29.5455%" y="1348" width="0.5682%" height="15" fill="rgb(244,205,15)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1358.50"></text></g><g><title>_SelectorSocketTransport (asyncio/selector_events.py:755) (1 samples, 0.57%)</title><rect x="29.5455%" y="1364" width="0.5682%" height="15" fill="rgb(223,117,47)" fg:x="52" fg:w="1"/><text x="29.7955%" y="1374.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="26.1364%" y="580" width="4.5455%" height="15" fill="rgb(244,107,35)" fg:x="46" fg:w="8"/><text x="26.3864%" y="590.50">_call..</text></g><g><title><module> (dask/dataframe/core.py:1) (8 samples, 4.55%)</title><rect x="26.1364%" y="596" width="4.5455%" height="15" fill="rgb(205,140,8)" fg:x="46" fg:w="8"/><text x="26.3864%" y="606.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="30.1136%" y="612" width="0.5682%" height="15" fill="rgb(228,84,46)" fg:x="53" fg:w="1"/><text x="30.3636%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="628" width="0.5682%" height="15" fill="rgb(254,188,9)" fg:x="53" fg:w="1"/><text x="30.3636%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="30.1136%" y="644" width="0.5682%" height="15" fill="rgb(206,112,54)" fg:x="53" fg:w="1"/><text x="30.3636%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="30.1136%" y="660" width="0.5682%" height="15" fill="rgb(216,84,49)" fg:x="53" fg:w="1"/><text x="30.3636%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="30.1136%" y="676" width="0.5682%" height="15" fill="rgb(214,194,35)" fg:x="53" fg:w="1"/><text x="30.3636%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="30.1136%" y="692" width="0.5682%" height="15" fill="rgb(249,28,3)" fg:x="53" fg:w="1"/><text x="30.3636%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="708" width="0.5682%" height="15" fill="rgb(222,56,52)" fg:x="53" fg:w="1"/><text x="30.3636%" y="718.50"></text></g><g><title><module> (dask/dataframe/methods.py:1) (1 samples, 0.57%)</title><rect x="30.1136%" y="724" width="0.5682%" height="15" fill="rgb(245,217,50)" fg:x="53" fg:w="1"/><text x="30.3636%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="30.1136%" y="740" width="0.5682%" height="15" fill="rgb(213,201,24)" fg:x="53" fg:w="1"/><text x="30.3636%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="30.1136%" y="756" width="0.5682%" height="15" fill="rgb(248,116,28)" fg:x="53" fg:w="1"/><text x="30.3636%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="30.1136%" y="772" width="0.5682%" height="15" fill="rgb(219,72,43)" fg:x="53" fg:w="1"/><text x="30.3636%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="30.1136%" y="788" width="0.5682%" height="15" fill="rgb(209,138,14)" fg:x="53" fg:w="1"/><text x="30.3636%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="804" width="0.5682%" height="15" fill="rgb(222,18,33)" fg:x="53" fg:w="1"/><text x="30.3636%" y="814.50"></text></g><g><title><module> (dask/dataframe/utils.py:1) (1 samples, 0.57%)</title><rect x="30.1136%" y="820" width="0.5682%" height="15" fill="rgb(213,199,7)" fg:x="53" fg:w="1"/><text x="30.3636%" y="830.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="30.1136%" y="836" width="0.5682%" height="15" fill="rgb(250,110,10)" fg:x="53" fg:w="1"/><text x="30.3636%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="852" width="0.5682%" height="15" fill="rgb(248,123,6)" fg:x="53" fg:w="1"/><text x="30.3636%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="30.1136%" y="868" width="0.5682%" height="15" fill="rgb(206,91,31)" fg:x="53" fg:w="1"/><text x="30.3636%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="30.1136%" y="884" width="0.5682%" height="15" fill="rgb(211,154,13)" fg:x="53" fg:w="1"/><text x="30.3636%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="30.1136%" y="900" width="0.5682%" height="15" fill="rgb(225,148,7)" fg:x="53" fg:w="1"/><text x="30.3636%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="30.1136%" y="916" width="0.5682%" height="15" fill="rgb(220,160,43)" fg:x="53" fg:w="1"/><text x="30.3636%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="932" width="0.5682%" height="15" fill="rgb(213,52,39)" fg:x="53" fg:w="1"/><text x="30.3636%" y="942.50"></text></g><g><title><module> (dask/dataframe/_dtypes.py:1) (1 samples, 0.57%)</title><rect x="30.1136%" y="948" width="0.5682%" height="15" fill="rgb(243,137,7)" fg:x="53" fg:w="1"/><text x="30.3636%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="30.1136%" y="964" width="0.5682%" height="15" fill="rgb(230,79,13)" fg:x="53" fg:w="1"/><text x="30.3636%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="30.1136%" y="980" width="0.5682%" height="15" fill="rgb(247,105,23)" fg:x="53" fg:w="1"/><text x="30.3636%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="30.1136%" y="996" width="0.5682%" height="15" fill="rgb(223,179,41)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1006.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="30.1136%" y="1012" width="0.5682%" height="15" fill="rgb(218,9,34)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="1028" width="0.5682%" height="15" fill="rgb(222,106,8)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1038.50"></text></g><g><title><module> (dask/dataframe/extensions.py:1) (1 samples, 0.57%)</title><rect x="30.1136%" y="1044" width="0.5682%" height="15" fill="rgb(211,220,0)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1054.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="30.1136%" y="1060" width="0.5682%" height="15" fill="rgb(229,52,16)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1070.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="30.1136%" y="1076" width="0.5682%" height="15" fill="rgb(212,155,18)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1086.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="30.1136%" y="1092" width="0.5682%" height="15" fill="rgb(242,21,14)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1102.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="30.1136%" y="1108" width="0.5682%" height="15" fill="rgb(222,19,48)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="30.1136%" y="1124" width="0.5682%" height="15" fill="rgb(232,45,27)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1134.50"></text></g><g><title><module> (dask/dataframe/accessor.py:1) (1 samples, 0.57%)</title><rect x="30.1136%" y="1140" width="0.5682%" height="15" fill="rgb(249,103,42)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1150.50"></text></g><g><title>__init_subclass__ (dask/dataframe/accessor.py:70) (1 samples, 0.57%)</title><rect x="30.1136%" y="1156" width="0.5682%" height="15" fill="rgb(246,81,33)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1166.50"></text></g><g><title>_bind_method (dask/dataframe/accessor.py:12) (1 samples, 0.57%)</title><rect x="30.1136%" y="1172" width="0.5682%" height="15" fill="rgb(252,33,42)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1182.50"></text></g><g><title>wrapper (dask/utils.py:978) (1 samples, 0.57%)</title><rect x="30.1136%" y="1188" width="0.5682%" height="15" fill="rgb(209,212,41)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1198.50"></text></g><g><title>_derived_from (dask/utils.py:885) (1 samples, 0.57%)</title><rect x="30.1136%" y="1204" width="0.5682%" height="15" fill="rgb(207,154,6)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1214.50"></text></g><g><title>skip_doctest (dask/utils.py:803) (1 samples, 0.57%)</title><rect x="30.1136%" y="1220" width="0.5682%" height="15" fill="rgb(223,64,47)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1230.50"></text></g><g><title><listcomp> (dask/utils.py:806) (1 samples, 0.57%)</title><rect x="30.1136%" y="1236" width="0.5682%" height="15" fill="rgb(211,161,38)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1246.50"></text></g><g><title>_skip_doctest (dask/utils.py:789) (1 samples, 0.57%)</title><rect x="30.1136%" y="1252" width="0.5682%" height="15" fill="rgb(219,138,40)" fg:x="53" fg:w="1"/><text x="30.3636%" y="1262.50"></text></g><g><title><module> (dask/dataframe/backends.py:1) (30 samples, 17.05%)</title><rect x="14.2045%" y="500" width="17.0455%" height="15" fill="rgb(241,228,46)" fg:x="25" fg:w="30"/><text x="14.4545%" y="510.50"><module> (dask/dataframe/b..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (30 samples, 17.05%)</title><rect x="14.2045%" y="516" width="17.0455%" height="15" fill="rgb(223,209,38)" fg:x="25" fg:w="30"/><text x="14.4545%" y="526.50">_find_and_load (<frozen im..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (30 samples, 17.05%)</title><rect x="14.2045%" y="532" width="17.0455%" height="15" fill="rgb(236,164,45)" fg:x="25" fg:w="30"/><text x="14.4545%" y="542.50">_find_and_load_unlocked (<..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 5.11%)</title><rect x="26.1364%" y="548" width="5.1136%" height="15" fill="rgb(231,15,5)" fg:x="46" fg:w="9"/><text x="26.3864%" y="558.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 5.11%)</title><rect x="26.1364%" y="564" width="5.1136%" height="15" fill="rgb(252,35,15)" fg:x="46" fg:w="9"/><text x="26.3864%" y="574.50">exec_m..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="30.6818%" y="580" width="0.5682%" height="15" fill="rgb(248,181,18)" fg:x="54" fg:w="1"/><text x="30.9318%" y="590.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="30.6818%" y="596" width="0.5682%" height="15" fill="rgb(233,39,42)" fg:x="54" fg:w="1"/><text x="30.9318%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (31 samples, 17.61%)</title><rect x="14.2045%" y="468" width="17.6136%" height="15" fill="rgb(238,110,33)" fg:x="25" fg:w="31"/><text x="14.4545%" y="478.50">exec_module (<frozen import..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (31 samples, 17.61%)</title><rect x="14.2045%" y="484" width="17.6136%" height="15" fill="rgb(233,195,10)" fg:x="25" fg:w="31"/><text x="14.4545%" y="494.50">_call_with_frames_removed (..</text></g><g><title><module> (dask/dataframe/rolling.py:1) (1 samples, 0.57%)</title><rect x="31.2500%" y="500" width="0.5682%" height="15" fill="rgb(254,105,3)" fg:x="55" fg:w="1"/><text x="31.5000%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="31.2500%" y="516" width="0.5682%" height="15" fill="rgb(221,225,9)" fg:x="55" fg:w="1"/><text x="31.5000%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="31.2500%" y="532" width="0.5682%" height="15" fill="rgb(224,227,45)" fg:x="55" fg:w="1"/><text x="31.5000%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="31.2500%" y="548" width="0.5682%" height="15" fill="rgb(229,198,43)" fg:x="55" fg:w="1"/><text x="31.5000%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="31.2500%" y="564" width="0.5682%" height="15" fill="rgb(206,209,35)" fg:x="55" fg:w="1"/><text x="31.5000%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="31.2500%" y="580" width="0.5682%" height="15" fill="rgb(245,195,53)" fg:x="55" fg:w="1"/><text x="31.5000%" y="590.50"></text></g><g><title><module> (dask/dataframe/io/__init__.py:1) (1 samples, 0.57%)</title><rect x="31.2500%" y="596" width="0.5682%" height="15" fill="rgb(240,92,26)" fg:x="55" fg:w="1"/><text x="31.5000%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="31.2500%" y="612" width="0.5682%" height="15" fill="rgb(207,40,23)" fg:x="55" fg:w="1"/><text x="31.5000%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="31.2500%" y="628" width="0.5682%" height="15" fill="rgb(223,111,35)" fg:x="55" fg:w="1"/><text x="31.5000%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="31.2500%" y="644" width="0.5682%" height="15" fill="rgb(229,147,28)" fg:x="55" fg:w="1"/><text x="31.5000%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="31.2500%" y="660" width="0.5682%" height="15" fill="rgb(211,29,28)" fg:x="55" fg:w="1"/><text x="31.5000%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="31.2500%" y="676" width="0.5682%" height="15" fill="rgb(228,72,33)" fg:x="55" fg:w="1"/><text x="31.5000%" y="686.50"></text></g><g><title><module> (dask/dataframe/io/orc/__init__.py:1) (1 samples, 0.57%)</title><rect x="31.2500%" y="692" width="0.5682%" height="15" fill="rgb(205,214,31)" fg:x="55" fg:w="1"/><text x="31.5000%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="31.2500%" y="708" width="0.5682%" height="15" fill="rgb(224,111,15)" fg:x="55" fg:w="1"/><text x="31.5000%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="31.2500%" y="724" width="0.5682%" height="15" fill="rgb(253,21,26)" fg:x="55" fg:w="1"/><text x="31.5000%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="31.2500%" y="740" width="0.5682%" height="15" fill="rgb(245,139,43)" fg:x="55" fg:w="1"/><text x="31.5000%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="31.2500%" y="756" width="0.5682%" height="15" fill="rgb(252,170,7)" fg:x="55" fg:w="1"/><text x="31.5000%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="31.2500%" y="772" width="0.5682%" height="15" fill="rgb(231,118,14)" fg:x="55" fg:w="1"/><text x="31.5000%" y="782.50"></text></g><g><title><module> (dask/dataframe/io/orc/core.py:1) (1 samples, 0.57%)</title><rect x="31.2500%" y="788" width="0.5682%" height="15" fill="rgb(238,83,0)" fg:x="55" fg:w="1"/><text x="31.5000%" y="798.50"></text></g><g><title><module> (qarray/__init__.py:1) (38 samples, 21.59%)</title><rect x="10.7955%" y="180" width="21.5909%" height="15" fill="rgb(221,39,39)" fg:x="19" fg:w="38"/><text x="11.0455%" y="190.50"><module> (qarray/__init__.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (38 samples, 21.59%)</title><rect x="10.7955%" y="196" width="21.5909%" height="15" fill="rgb(222,119,46)" fg:x="19" fg:w="38"/><text x="11.0455%" y="206.50">_find_and_load (<frozen importlib...</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (38 samples, 21.59%)</title><rect x="10.7955%" y="212" width="21.5909%" height="15" fill="rgb(222,165,49)" fg:x="19" fg:w="38"/><text x="11.0455%" y="222.50">_find_and_load_unlocked (<frozen i..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (38 samples, 21.59%)</title><rect x="10.7955%" y="228" width="21.5909%" height="15" fill="rgb(219,113,52)" fg:x="19" fg:w="38"/><text x="11.0455%" y="238.50">_load_unlocked (<frozen importlib...</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (38 samples, 21.59%)</title><rect x="10.7955%" y="244" width="21.5909%" height="15" fill="rgb(214,7,15)" fg:x="19" fg:w="38"/><text x="11.0455%" y="254.50">exec_module (<frozen importlib._bo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (38 samples, 21.59%)</title><rect x="10.7955%" y="260" width="21.5909%" height="15" fill="rgb(235,32,4)" fg:x="19" fg:w="38"/><text x="11.0455%" y="270.50">_call_with_frames_removed (<frozen..</text></g><g><title><module> (qarray/df.py:1) (34 samples, 19.32%)</title><rect x="13.0682%" y="276" width="19.3182%" height="15" fill="rgb(238,90,54)" fg:x="23" fg:w="34"/><text x="13.3182%" y="286.50"><module> (qarray/df.py:1)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (34 samples, 19.32%)</title><rect x="13.0682%" y="292" width="19.3182%" height="15" fill="rgb(213,208,19)" fg:x="23" fg:w="34"/><text x="13.3182%" y="302.50">_find_and_load (<frozen import..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (34 samples, 19.32%)</title><rect x="13.0682%" y="308" width="19.3182%" height="15" fill="rgb(233,156,4)" fg:x="23" fg:w="34"/><text x="13.3182%" y="318.50">_find_and_load_unlocked (<froz..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (34 samples, 19.32%)</title><rect x="13.0682%" y="324" width="19.3182%" height="15" fill="rgb(207,194,5)" fg:x="23" fg:w="34"/><text x="13.3182%" y="334.50">_load_unlocked (<frozen import..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (34 samples, 19.32%)</title><rect x="13.0682%" y="340" width="19.3182%" height="15" fill="rgb(206,111,30)" fg:x="23" fg:w="34"/><text x="13.3182%" y="350.50">exec_module (<frozen importlib..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (34 samples, 19.32%)</title><rect x="13.0682%" y="356" width="19.3182%" height="15" fill="rgb(243,70,54)" fg:x="23" fg:w="34"/><text x="13.3182%" y="366.50">_call_with_frames_removed (<fr..</text></g><g><title><module> (dask/dataframe/__init__.py:1) (34 samples, 19.32%)</title><rect x="13.0682%" y="372" width="19.3182%" height="15" fill="rgb(242,28,8)" fg:x="23" fg:w="34"/><text x="13.3182%" y="382.50"><module> (dask/dataframe/__ini..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (33 samples, 18.75%)</title><rect x="13.6364%" y="388" width="18.7500%" height="15" fill="rgb(219,106,18)" fg:x="24" fg:w="33"/><text x="13.8864%" y="398.50">_handle_fromlist (<frozen imp..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (33 samples, 18.75%)</title><rect x="13.6364%" y="404" width="18.7500%" height="15" fill="rgb(244,222,10)" fg:x="24" fg:w="33"/><text x="13.8864%" y="414.50">_call_with_frames_removed (<f..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (33 samples, 18.75%)</title><rect x="13.6364%" y="420" width="18.7500%" height="15" fill="rgb(236,179,52)" fg:x="24" fg:w="33"/><text x="13.8864%" y="430.50">_find_and_load (<frozen impor..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (33 samples, 18.75%)</title><rect x="13.6364%" y="436" width="18.7500%" height="15" fill="rgb(213,23,39)" fg:x="24" fg:w="33"/><text x="13.8864%" y="446.50">_find_and_load_unlocked (<fro..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (32 samples, 18.18%)</title><rect x="14.2045%" y="452" width="18.1818%" height="15" fill="rgb(238,48,10)" fg:x="25" fg:w="32"/><text x="14.4545%" y="462.50">_load_unlocked (<frozen impo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="31.8182%" y="468" width="0.5682%" height="15" fill="rgb(251,196,23)" fg:x="56" fg:w="1"/><text x="32.0682%" y="478.50"></text></g><g><title>_new_module (<frozen importlib._bootstrap>:35) (1 samples, 0.57%)</title><rect x="31.8182%" y="484" width="0.5682%" height="15" fill="rgb(250,152,24)" fg:x="56" fg:w="1"/><text x="32.0682%" y="494.50"></text></g><g><title><module> (numpy/core/_add_newdocs.py:1) (1 samples, 0.57%)</title><rect x="32.3864%" y="772" width="0.5682%" height="15" fill="rgb(209,150,17)" fg:x="57" fg:w="1"/><text x="32.6364%" y="782.50"></text></g><g><title>add_newdoc (numpy/core/function_base.py:497) (1 samples, 0.57%)</title><rect x="32.3864%" y="788" width="0.5682%" height="15" fill="rgb(234,202,34)" fg:x="57" fg:w="1"/><text x="32.6364%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="32.3864%" y="804" width="0.5682%" height="15" fill="rgb(253,148,53)" fg:x="57" fg:w="1"/><text x="32.6364%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="32.3864%" y="820" width="0.5682%" height="15" fill="rgb(218,129,16)" fg:x="57" fg:w="1"/><text x="32.6364%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="32.3864%" y="836" width="0.5682%" height="15" fill="rgb(216,85,19)" fg:x="57" fg:w="1"/><text x="32.6364%" y="846.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="32.3864%" y="852" width="0.5682%" height="15" fill="rgb(235,228,7)" fg:x="57" fg:w="1"/><text x="32.6364%" y="862.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="32.3864%" y="868" width="0.5682%" height="15" fill="rgb(245,175,0)" fg:x="57" fg:w="1"/><text x="32.6364%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="32.3864%" y="884" width="0.5682%" height="15" fill="rgb(208,168,36)" fg:x="57" fg:w="1"/><text x="32.6364%" y="894.50"></text></g><g><title><module> (numpy/core/_internal.py:1) (1 samples, 0.57%)</title><rect x="32.9545%" y="772" width="0.5682%" height="15" fill="rgb(246,171,24)" fg:x="58" fg:w="1"/><text x="33.2045%" y="782.50"></text></g><g><title><module> (numpy/core/multiarray.py:1) (2 samples, 1.14%)</title><rect x="33.5227%" y="772" width="1.1364%" height="15" fill="rgb(215,142,24)" fg:x="59" fg:w="2"/><text x="33.7727%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="33.5227%" y="788" width="1.1364%" height="15" fill="rgb(250,187,7)" fg:x="59" fg:w="2"/><text x="33.7727%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="33.5227%" y="804" width="1.1364%" height="15" fill="rgb(228,66,33)" fg:x="59" fg:w="2"/><text x="33.7727%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="33.5227%" y="820" width="1.1364%" height="15" fill="rgb(234,215,21)" fg:x="59" fg:w="2"/><text x="33.7727%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="33.5227%" y="836" width="1.1364%" height="15" fill="rgb(222,191,20)" fg:x="59" fg:w="2"/><text x="33.7727%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="33.5227%" y="852" width="1.1364%" height="15" fill="rgb(245,79,54)" fg:x="59" fg:w="2"/><text x="33.7727%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="33.5227%" y="868" width="1.1364%" height="15" fill="rgb(240,10,37)" fg:x="59" fg:w="2"/><text x="33.7727%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="33.5227%" y="884" width="1.1364%" height="15" fill="rgb(214,192,32)" fg:x="59" fg:w="2"/><text x="33.7727%" y="894.50"></text></g><g><title><module> (numpy/core/overrides.py:1) (2 samples, 1.14%)</title><rect x="33.5227%" y="900" width="1.1364%" height="15" fill="rgb(209,36,54)" fg:x="59" fg:w="2"/><text x="33.7727%" y="910.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="33.5227%" y="916" width="1.1364%" height="15" fill="rgb(220,10,11)" fg:x="59" fg:w="2"/><text x="33.7727%" y="926.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="33.5227%" y="932" width="1.1364%" height="15" fill="rgb(221,106,17)" fg:x="59" fg:w="2"/><text x="33.7727%" y="942.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="33.5227%" y="948" width="1.1364%" height="15" fill="rgb(251,142,44)" fg:x="59" fg:w="2"/><text x="33.7727%" y="958.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 1.14%)</title><rect x="33.5227%" y="964" width="1.1364%" height="15" fill="rgb(238,13,15)" fg:x="59" fg:w="2"/><text x="33.7727%" y="974.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 1.14%)</title><rect x="33.5227%" y="980" width="1.1364%" height="15" fill="rgb(208,107,27)" fg:x="59" fg:w="2"/><text x="33.7727%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="33.5227%" y="996" width="1.1364%" height="15" fill="rgb(205,136,37)" fg:x="59" fg:w="2"/><text x="33.7727%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.0909%" y="1012" width="0.5682%" height="15" fill="rgb(250,205,27)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.0909%" y="1028" width="0.5682%" height="15" fill="rgb(210,80,43)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="34.0909%" y="1044" width="0.5682%" height="15" fill="rgb(247,160,36)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="34.0909%" y="1060" width="0.5682%" height="15" fill="rgb(234,13,49)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.0909%" y="1076" width="0.5682%" height="15" fill="rgb(234,122,0)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1086.50"></text></g><g><title><module> (datetime.py:1) (1 samples, 0.57%)</title><rect x="34.0909%" y="1092" width="0.5682%" height="15" fill="rgb(207,146,38)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.0909%" y="1108" width="0.5682%" height="15" fill="rgb(207,177,25)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.0909%" y="1124" width="0.5682%" height="15" fill="rgb(211,178,42)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="34.0909%" y="1140" width="0.5682%" height="15" fill="rgb(230,69,54)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1150.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="34.0909%" y="1156" width="0.5682%" height="15" fill="rgb(214,135,41)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1166.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="34.0909%" y="1172" width="0.5682%" height="15" fill="rgb(237,67,25)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.0909%" y="1188" width="0.5682%" height="15" fill="rgb(222,189,50)" fg:x="60" fg:w="1"/><text x="34.3409%" y="1198.50"></text></g><g><title><module> (numpy/core/numeric.py:1) (1 samples, 0.57%)</title><rect x="34.6591%" y="772" width="0.5682%" height="15" fill="rgb(245,148,34)" fg:x="61" fg:w="1"/><text x="34.9091%" y="782.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="34.6591%" y="788" width="0.5682%" height="15" fill="rgb(222,29,6)" fg:x="61" fg:w="1"/><text x="34.9091%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="804" width="0.5682%" height="15" fill="rgb(221,189,43)" fg:x="61" fg:w="1"/><text x="34.9091%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.6591%" y="820" width="0.5682%" height="15" fill="rgb(207,36,27)" fg:x="61" fg:w="1"/><text x="34.9091%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.6591%" y="836" width="0.5682%" height="15" fill="rgb(217,90,24)" fg:x="61" fg:w="1"/><text x="34.9091%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="34.6591%" y="852" width="0.5682%" height="15" fill="rgb(224,66,35)" fg:x="61" fg:w="1"/><text x="34.9091%" y="862.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="34.6591%" y="868" width="0.5682%" height="15" fill="rgb(221,13,50)" fg:x="61" fg:w="1"/><text x="34.9091%" y="878.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="884" width="0.5682%" height="15" fill="rgb(236,68,49)" fg:x="61" fg:w="1"/><text x="34.9091%" y="894.50"></text></g><g><title><module> (numpy/core/shape_base.py:1) (1 samples, 0.57%)</title><rect x="34.6591%" y="900" width="0.5682%" height="15" fill="rgb(229,146,28)" fg:x="61" fg:w="1"/><text x="34.9091%" y="910.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="34.6591%" y="916" width="0.5682%" height="15" fill="rgb(225,31,38)" fg:x="61" fg:w="1"/><text x="34.9091%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="932" width="0.5682%" height="15" fill="rgb(250,208,3)" fg:x="61" fg:w="1"/><text x="34.9091%" y="942.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.6591%" y="948" width="0.5682%" height="15" fill="rgb(246,54,23)" fg:x="61" fg:w="1"/><text x="34.9091%" y="958.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.6591%" y="964" width="0.5682%" height="15" fill="rgb(243,76,11)" fg:x="61" fg:w="1"/><text x="34.9091%" y="974.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="34.6591%" y="980" width="0.5682%" height="15" fill="rgb(245,21,50)" fg:x="61" fg:w="1"/><text x="34.9091%" y="990.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="34.6591%" y="996" width="0.5682%" height="15" fill="rgb(228,9,43)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="1012" width="0.5682%" height="15" fill="rgb(208,100,47)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1022.50"></text></g><g><title><module> (numpy/core/fromnumeric.py:1) (1 samples, 0.57%)</title><rect x="34.6591%" y="1028" width="0.5682%" height="15" fill="rgb(232,26,8)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1038.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="34.6591%" y="1044" width="0.5682%" height="15" fill="rgb(216,166,38)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="1060" width="0.5682%" height="15" fill="rgb(251,202,51)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.6591%" y="1076" width="0.5682%" height="15" fill="rgb(254,216,34)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.6591%" y="1092" width="0.5682%" height="15" fill="rgb(251,32,27)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="34.6591%" y="1108" width="0.5682%" height="15" fill="rgb(208,127,28)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="34.6591%" y="1124" width="0.5682%" height="15" fill="rgb(224,137,22)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="34.6591%" y="1140" width="0.5682%" height="15" fill="rgb(254,70,32)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1150.50"></text></g><g><title><module> (numpy/core/_methods.py:1) (1 samples, 0.57%)</title><rect x="34.6591%" y="1156" width="0.5682%" height="15" fill="rgb(229,75,37)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="34.6591%" y="1172" width="0.5682%" height="15" fill="rgb(252,64,23)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="34.6591%" y="1188" width="0.5682%" height="15" fill="rgb(232,162,48)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1198.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="34.6591%" y="1204" width="0.5682%" height="15" fill="rgb(246,160,12)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1214.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="34.6591%" y="1220" width="0.5682%" height="15" fill="rgb(247,166,0)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1230.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="34.6591%" y="1236" width="0.5682%" height="15" fill="rgb(249,219,21)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1246.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.57%)</title><rect x="34.6591%" y="1252" width="0.5682%" height="15" fill="rgb(205,209,3)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1262.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.57%)</title><rect x="34.6591%" y="1268" width="0.5682%" height="15" fill="rgb(243,44,1)" fg:x="61" fg:w="1"/><text x="34.9091%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="32.3864%" y="756" width="3.4091%" height="15" fill="rgb(206,159,16)" fg:x="57" fg:w="6"/><text x="32.6364%" y="766.50">_ca..</text></g><g><title><module> (numpy/core/numerictypes.py:1) (1 samples, 0.57%)</title><rect x="35.2273%" y="772" width="0.5682%" height="15" fill="rgb(244,77,30)" fg:x="62" fg:w="1"/><text x="35.4773%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="35.2273%" y="788" width="0.5682%" height="15" fill="rgb(218,69,12)" fg:x="62" fg:w="1"/><text x="35.4773%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="35.2273%" y="804" width="0.5682%" height="15" fill="rgb(212,87,7)" fg:x="62" fg:w="1"/><text x="35.4773%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="35.2273%" y="820" width="0.5682%" height="15" fill="rgb(245,114,25)" fg:x="62" fg:w="1"/><text x="35.4773%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="35.2273%" y="836" width="0.5682%" height="15" fill="rgb(210,61,42)" fg:x="62" fg:w="1"/><text x="35.4773%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="35.2273%" y="852" width="0.5682%" height="15" fill="rgb(211,52,33)" fg:x="62" fg:w="1"/><text x="35.4773%" y="862.50"></text></g><g><title><module> (numpy/core/_type_aliases.py:1) (1 samples, 0.57%)</title><rect x="35.2273%" y="868" width="0.5682%" height="15" fill="rgb(234,58,33)" fg:x="62" fg:w="1"/><text x="35.4773%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="35.2273%" y="884" width="0.5682%" height="15" fill="rgb(220,115,36)" fg:x="62" fg:w="1"/><text x="35.4773%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="35.2273%" y="900" width="0.5682%" height="15" fill="rgb(243,153,54)" fg:x="62" fg:w="1"/><text x="35.4773%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="35.2273%" y="916" width="0.5682%" height="15" fill="rgb(251,47,18)" fg:x="62" fg:w="1"/><text x="35.4773%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="35.2273%" y="932" width="0.5682%" height="15" fill="rgb(242,102,42)" fg:x="62" fg:w="1"/><text x="35.4773%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="35.2273%" y="948" width="0.5682%" height="15" fill="rgb(234,31,38)" fg:x="62" fg:w="1"/><text x="35.4773%" y="958.50"></text></g><g><title><module> (numpy/compat/__init__.py:1) (1 samples, 0.57%)</title><rect x="35.2273%" y="964" width="0.5682%" height="15" fill="rgb(221,117,51)" fg:x="62" fg:w="1"/><text x="35.4773%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="35.2273%" y="980" width="0.5682%" height="15" fill="rgb(212,20,18)" fg:x="62" fg:w="1"/><text x="35.4773%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="35.2273%" y="996" width="0.5682%" height="15" fill="rgb(245,133,36)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="35.2273%" y="1012" width="0.5682%" height="15" fill="rgb(212,6,19)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="35.2273%" y="1028" width="0.5682%" height="15" fill="rgb(218,1,36)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="35.2273%" y="1044" width="0.5682%" height="15" fill="rgb(246,84,54)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="35.2273%" y="1060" width="0.5682%" height="15" fill="rgb(242,110,6)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="35.2273%" y="1076" width="0.5682%" height="15" fill="rgb(214,47,5)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1086.50"></text></g><g><title><module> (numpy/compat/py3k.py:1) (1 samples, 0.57%)</title><rect x="35.2273%" y="1092" width="0.5682%" height="15" fill="rgb(218,159,25)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="35.2273%" y="1108" width="0.5682%" height="15" fill="rgb(215,211,28)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="35.2273%" y="1124" width="0.5682%" height="15" fill="rgb(238,59,32)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="35.2273%" y="1140" width="0.5682%" height="15" fill="rgb(226,82,3)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="35.2273%" y="1156" width="0.5682%" height="15" fill="rgb(240,164,32)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="35.2273%" y="1172" width="0.5682%" height="15" fill="rgb(232,46,7)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1182.50"></text></g><g><title><module> (pickle.py:1) (1 samples, 0.57%)</title><rect x="35.2273%" y="1188" width="0.5682%" height="15" fill="rgb(229,129,53)" fg:x="62" fg:w="1"/><text x="35.4773%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="32.3864%" y="420" width="3.9773%" height="15" fill="rgb(234,188,29)" fg:x="57" fg:w="7"/><text x="32.6364%" y="430.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="32.3864%" y="436" width="3.9773%" height="15" fill="rgb(246,141,4)" fg:x="57" fg:w="7"/><text x="32.6364%" y="446.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.98%)</title><rect x="32.3864%" y="452" width="3.9773%" height="15" fill="rgb(229,23,39)" fg:x="57" fg:w="7"/><text x="32.6364%" y="462.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.98%)</title><rect x="32.3864%" y="468" width="3.9773%" height="15" fill="rgb(206,12,3)" fg:x="57" fg:w="7"/><text x="32.6364%" y="478.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="32.3864%" y="484" width="3.9773%" height="15" fill="rgb(252,226,20)" fg:x="57" fg:w="7"/><text x="32.6364%" y="494.50">_cal..</text></g><g><title><module> (numpy/__config__.py:3) (7 samples, 3.98%)</title><rect x="32.3864%" y="500" width="3.9773%" height="15" fill="rgb(216,123,35)" fg:x="57" fg:w="7"/><text x="32.6364%" y="510.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="32.3864%" y="516" width="3.9773%" height="15" fill="rgb(212,68,40)" fg:x="57" fg:w="7"/><text x="32.6364%" y="526.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="32.3864%" y="532" width="3.9773%" height="15" fill="rgb(254,125,32)" fg:x="57" fg:w="7"/><text x="32.6364%" y="542.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="32.3864%" y="548" width="3.9773%" height="15" fill="rgb(253,97,22)" fg:x="57" fg:w="7"/><text x="32.6364%" y="558.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="32.3864%" y="564" width="3.9773%" height="15" fill="rgb(241,101,14)" fg:x="57" fg:w="7"/><text x="32.6364%" y="574.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="32.3864%" y="580" width="3.9773%" height="15" fill="rgb(238,103,29)" fg:x="57" fg:w="7"/><text x="32.6364%" y="590.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.98%)</title><rect x="32.3864%" y="596" width="3.9773%" height="15" fill="rgb(233,195,47)" fg:x="57" fg:w="7"/><text x="32.6364%" y="606.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.98%)</title><rect x="32.3864%" y="612" width="3.9773%" height="15" fill="rgb(246,218,30)" fg:x="57" fg:w="7"/><text x="32.6364%" y="622.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="32.3864%" y="628" width="3.9773%" height="15" fill="rgb(219,145,47)" fg:x="57" fg:w="7"/><text x="32.6364%" y="638.50">_cal..</text></g><g><title><module> (numpy/core/__init__.py:1) (7 samples, 3.98%)</title><rect x="32.3864%" y="644" width="3.9773%" height="15" fill="rgb(243,12,26)" fg:x="57" fg:w="7"/><text x="32.6364%" y="654.50"><mod..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (7 samples, 3.98%)</title><rect x="32.3864%" y="660" width="3.9773%" height="15" fill="rgb(214,87,16)" fg:x="57" fg:w="7"/><text x="32.6364%" y="670.50">_han..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="32.3864%" y="676" width="3.9773%" height="15" fill="rgb(208,99,42)" fg:x="57" fg:w="7"/><text x="32.6364%" y="686.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="32.3864%" y="692" width="3.9773%" height="15" fill="rgb(253,99,2)" fg:x="57" fg:w="7"/><text x="32.6364%" y="702.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="32.3864%" y="708" width="3.9773%" height="15" fill="rgb(220,168,23)" fg:x="57" fg:w="7"/><text x="32.6364%" y="718.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.98%)</title><rect x="32.3864%" y="724" width="3.9773%" height="15" fill="rgb(242,38,24)" fg:x="57" fg:w="7"/><text x="32.6364%" y="734.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.98%)</title><rect x="32.3864%" y="740" width="3.9773%" height="15" fill="rgb(225,182,9)" fg:x="57" fg:w="7"/><text x="32.6364%" y="750.50">exec..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="35.7955%" y="756" width="0.5682%" height="15" fill="rgb(243,178,37)" fg:x="63" fg:w="1"/><text x="36.0455%" y="766.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="35.7955%" y="772" width="0.5682%" height="15" fill="rgb(232,139,19)" fg:x="63" fg:w="1"/><text x="36.0455%" y="782.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="36.3636%" y="612" width="0.5682%" height="15" fill="rgb(225,201,24)" fg:x="64" fg:w="1"/><text x="36.6136%" y="622.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="36.3636%" y="628" width="0.5682%" height="15" fill="rgb(221,47,46)" fg:x="64" fg:w="1"/><text x="36.6136%" y="638.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="36.3636%" y="644" width="0.5682%" height="15" fill="rgb(249,23,13)" fg:x="64" fg:w="1"/><text x="36.6136%" y="654.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.57%)</title><rect x="36.3636%" y="660" width="0.5682%" height="15" fill="rgb(219,9,5)" fg:x="64" fg:w="1"/><text x="36.6136%" y="670.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1509) (1 samples, 0.57%)</title><rect x="36.3636%" y="676" width="0.5682%" height="15" fill="rgb(254,171,16)" fg:x="64" fg:w="1"/><text x="36.6136%" y="686.50"></text></g><g><title>spec_from_file_location (<frozen importlib._bootstrap_external>:696) (1 samples, 0.57%)</title><rect x="36.3636%" y="692" width="0.5682%" height="15" fill="rgb(230,171,20)" fg:x="64" fg:w="1"/><text x="36.6136%" y="702.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.57%)</title><rect x="36.9318%" y="820" width="0.5682%" height="15" fill="rgb(210,71,41)" fg:x="65" fg:w="1"/><text x="37.1818%" y="830.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.57%)</title><rect x="36.9318%" y="836" width="0.5682%" height="15" fill="rgb(206,173,20)" fg:x="65" fg:w="1"/><text x="37.1818%" y="846.50"></text></g><g><title>__init__ (<frozen importlib._bootstrap>:58) (1 samples, 0.57%)</title><rect x="36.9318%" y="852" width="0.5682%" height="15" fill="rgb(233,88,34)" fg:x="65" fg:w="1"/><text x="37.1818%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="36.9318%" y="740" width="1.1364%" height="15" fill="rgb(223,209,46)" fg:x="65" fg:w="2"/><text x="37.1818%" y="750.50"></text></g><g><title><module> (numpy/matrixlib/__init__.py:1) (2 samples, 1.14%)</title><rect x="36.9318%" y="756" width="1.1364%" height="15" fill="rgb(250,43,18)" fg:x="65" fg:w="2"/><text x="37.1818%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="36.9318%" y="772" width="1.1364%" height="15" fill="rgb(208,13,10)" fg:x="65" fg:w="2"/><text x="37.1818%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="36.9318%" y="788" width="1.1364%" height="15" fill="rgb(212,200,36)" fg:x="65" fg:w="2"/><text x="37.1818%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="36.9318%" y="804" width="1.1364%" height="15" fill="rgb(225,90,30)" fg:x="65" fg:w="2"/><text x="37.1818%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="37.5000%" y="820" width="0.5682%" height="15" fill="rgb(236,182,39)" fg:x="66" fg:w="1"/><text x="37.7500%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="37.5000%" y="836" width="0.5682%" height="15" fill="rgb(212,144,35)" fg:x="66" fg:w="1"/><text x="37.7500%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="37.5000%" y="852" width="0.5682%" height="15" fill="rgb(228,63,44)" fg:x="66" fg:w="1"/><text x="37.7500%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="868" width="0.5682%" height="15" fill="rgb(228,109,6)" fg:x="66" fg:w="1"/><text x="37.7500%" y="878.50"></text></g><g><title><module> (numpy/matrixlib/defmatrix.py:1) (1 samples, 0.57%)</title><rect x="37.5000%" y="884" width="0.5682%" height="15" fill="rgb(238,117,24)" fg:x="66" fg:w="1"/><text x="37.7500%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="37.5000%" y="900" width="0.5682%" height="15" fill="rgb(242,26,26)" fg:x="66" fg:w="1"/><text x="37.7500%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="37.5000%" y="916" width="0.5682%" height="15" fill="rgb(221,92,48)" fg:x="66" fg:w="1"/><text x="37.7500%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="37.5000%" y="932" width="0.5682%" height="15" fill="rgb(209,209,32)" fg:x="66" fg:w="1"/><text x="37.7500%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="37.5000%" y="948" width="0.5682%" height="15" fill="rgb(221,70,22)" fg:x="66" fg:w="1"/><text x="37.7500%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="964" width="0.5682%" height="15" fill="rgb(248,145,5)" fg:x="66" fg:w="1"/><text x="37.7500%" y="974.50"></text></g><g><title><module> (numpy/linalg/__init__.py:1) (1 samples, 0.57%)</title><rect x="37.5000%" y="980" width="0.5682%" height="15" fill="rgb(226,116,26)" fg:x="66" fg:w="1"/><text x="37.7500%" y="990.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="37.5000%" y="996" width="0.5682%" height="15" fill="rgb(244,5,17)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1006.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="1012" width="0.5682%" height="15" fill="rgb(252,159,33)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="37.5000%" y="1028" width="0.5682%" height="15" fill="rgb(206,71,0)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="37.5000%" y="1044" width="0.5682%" height="15" fill="rgb(233,118,54)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="37.5000%" y="1060" width="0.5682%" height="15" fill="rgb(234,83,48)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="37.5000%" y="1076" width="0.5682%" height="15" fill="rgb(228,3,54)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="1092" width="0.5682%" height="15" fill="rgb(226,155,13)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1102.50"></text></g><g><title><module> (numpy/linalg/linalg.py:1) (1 samples, 0.57%)</title><rect x="37.5000%" y="1108" width="0.5682%" height="15" fill="rgb(241,28,37)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="37.5000%" y="1124" width="0.5682%" height="15" fill="rgb(233,93,10)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="1140" width="0.5682%" height="15" fill="rgb(225,113,19)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="37.5000%" y="1156" width="0.5682%" height="15" fill="rgb(241,2,18)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="37.5000%" y="1172" width="0.5682%" height="15" fill="rgb(228,207,21)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="37.5000%" y="1188" width="0.5682%" height="15" fill="rgb(213,211,35)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1198.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="37.5000%" y="1204" width="0.5682%" height="15" fill="rgb(209,83,10)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1214.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="37.5000%" y="1220" width="0.5682%" height="15" fill="rgb(209,164,1)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1230.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="37.5000%" y="1236" width="0.5682%" height="15" fill="rgb(213,184,43)" fg:x="66" fg:w="1"/><text x="37.7500%" y="1246.50"></text></g><g><title><module> (numpy/lib/index_tricks.py:1) (3 samples, 1.70%)</title><rect x="36.9318%" y="660" width="1.7045%" height="15" fill="rgb(231,61,34)" fg:x="65" fg:w="3"/><text x="37.1818%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="36.9318%" y="676" width="1.7045%" height="15" fill="rgb(235,75,3)" fg:x="65" fg:w="3"/><text x="37.1818%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="36.9318%" y="692" width="1.7045%" height="15" fill="rgb(220,106,47)" fg:x="65" fg:w="3"/><text x="37.1818%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="36.9318%" y="708" width="1.7045%" height="15" fill="rgb(210,196,33)" fg:x="65" fg:w="3"/><text x="37.1818%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="36.9318%" y="724" width="1.7045%" height="15" fill="rgb(229,154,42)" fg:x="65" fg:w="3"/><text x="37.1818%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="38.0682%" y="740" width="0.5682%" height="15" fill="rgb(228,114,26)" fg:x="67" fg:w="1"/><text x="38.3182%" y="750.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="38.0682%" y="756" width="0.5682%" height="15" fill="rgb(208,144,1)" fg:x="67" fg:w="1"/><text x="38.3182%" y="766.50"></text></g><g><title><module> (numpy/lib/__init__.py:1) (5 samples, 2.84%)</title><rect x="36.3636%" y="532" width="2.8409%" height="15" fill="rgb(239,112,37)" fg:x="64" fg:w="5"/><text x="36.6136%" y="542.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 2.84%)</title><rect x="36.3636%" y="548" width="2.8409%" height="15" fill="rgb(210,96,50)" fg:x="64" fg:w="5"/><text x="36.6136%" y="558.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.84%)</title><rect x="36.3636%" y="564" width="2.8409%" height="15" fill="rgb(222,178,2)" fg:x="64" fg:w="5"/><text x="36.6136%" y="574.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.84%)</title><rect x="36.3636%" y="580" width="2.8409%" height="15" fill="rgb(226,74,18)" fg:x="64" fg:w="5"/><text x="36.6136%" y="590.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.84%)</title><rect x="36.3636%" y="596" width="2.8409%" height="15" fill="rgb(225,67,54)" fg:x="64" fg:w="5"/><text x="36.6136%" y="606.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="36.9318%" y="612" width="2.2727%" height="15" fill="rgb(251,92,32)" fg:x="65" fg:w="4"/><text x="37.1818%" y="622.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="36.9318%" y="628" width="2.2727%" height="15" fill="rgb(228,149,22)" fg:x="65" fg:w="4"/><text x="37.1818%" y="638.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="36.9318%" y="644" width="2.2727%" height="15" fill="rgb(243,54,13)" fg:x="65" fg:w="4"/><text x="37.1818%" y="654.50">_..</text></g><g><title><module> (numpy/lib/utils.py:1) (1 samples, 0.57%)</title><rect x="38.6364%" y="660" width="0.5682%" height="15" fill="rgb(243,180,28)" fg:x="68" fg:w="1"/><text x="38.8864%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="38.6364%" y="676" width="0.5682%" height="15" fill="rgb(208,167,24)" fg:x="68" fg:w="1"/><text x="38.8864%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="38.6364%" y="692" width="0.5682%" height="15" fill="rgb(245,73,45)" fg:x="68" fg:w="1"/><text x="38.8864%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="38.6364%" y="708" width="0.5682%" height="15" fill="rgb(237,203,48)" fg:x="68" fg:w="1"/><text x="38.8864%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="38.6364%" y="724" width="0.5682%" height="15" fill="rgb(211,197,16)" fg:x="68" fg:w="1"/><text x="38.8864%" y="734.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="38.6364%" y="740" width="0.5682%" height="15" fill="rgb(243,99,51)" fg:x="68" fg:w="1"/><text x="38.8864%" y="750.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="38.6364%" y="756" width="0.5682%" height="15" fill="rgb(215,123,29)" fg:x="68" fg:w="1"/><text x="38.8864%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="39.2045%" y="628" width="0.5682%" height="15" fill="rgb(239,186,37)" fg:x="69" fg:w="1"/><text x="39.4545%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="39.2045%" y="644" width="0.5682%" height="15" fill="rgb(252,136,39)" fg:x="69" fg:w="1"/><text x="39.4545%" y="654.50"></text></g><g><title><module> (numpy/ma/core.py:1) (1 samples, 0.57%)</title><rect x="39.2045%" y="660" width="0.5682%" height="15" fill="rgb(223,213,32)" fg:x="69" fg:w="1"/><text x="39.4545%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="39.2045%" y="676" width="0.5682%" height="15" fill="rgb(233,115,5)" fg:x="69" fg:w="1"/><text x="39.4545%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="39.2045%" y="692" width="0.5682%" height="15" fill="rgb(207,226,44)" fg:x="69" fg:w="1"/><text x="39.4545%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="39.2045%" y="708" width="0.5682%" height="15" fill="rgb(208,126,0)" fg:x="69" fg:w="1"/><text x="39.4545%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="39.2045%" y="724" width="0.5682%" height="15" fill="rgb(244,66,21)" fg:x="69" fg:w="1"/><text x="39.4545%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="39.2045%" y="740" width="0.5682%" height="15" fill="rgb(222,97,12)" fg:x="69" fg:w="1"/><text x="39.4545%" y="750.50"></text></g><g><title><module> (inspect.py:1) (1 samples, 0.57%)</title><rect x="39.2045%" y="756" width="0.5682%" height="15" fill="rgb(219,213,19)" fg:x="69" fg:w="1"/><text x="39.4545%" y="766.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="39.2045%" y="772" width="0.5682%" height="15" fill="rgb(252,169,30)" fg:x="69" fg:w="1"/><text x="39.4545%" y="782.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="39.2045%" y="788" width="0.5682%" height="15" fill="rgb(206,32,51)" fg:x="69" fg:w="1"/><text x="39.4545%" y="798.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="39.2045%" y="804" width="0.5682%" height="15" fill="rgb(250,172,42)" fg:x="69" fg:w="1"/><text x="39.4545%" y="814.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="39.2045%" y="820" width="0.5682%" height="15" fill="rgb(209,34,43)" fg:x="69" fg:w="1"/><text x="39.4545%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="39.2045%" y="836" width="0.5682%" height="15" fill="rgb(223,11,35)" fg:x="69" fg:w="1"/><text x="39.4545%" y="846.50"></text></g><g><title><module> (dis.py:1) (1 samples, 0.57%)</title><rect x="39.2045%" y="852" width="0.5682%" height="15" fill="rgb(251,219,26)" fg:x="69" fg:w="1"/><text x="39.4545%" y="862.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="39.2045%" y="868" width="0.5682%" height="15" fill="rgb(231,119,3)" fg:x="69" fg:w="1"/><text x="39.4545%" y="878.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="39.2045%" y="884" width="0.5682%" height="15" fill="rgb(216,97,11)" fg:x="69" fg:w="1"/><text x="39.4545%" y="894.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="39.2045%" y="900" width="0.5682%" height="15" fill="rgb(223,59,9)" fg:x="69" fg:w="1"/><text x="39.4545%" y="910.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="39.2045%" y="916" width="0.5682%" height="15" fill="rgb(233,93,31)" fg:x="69" fg:w="1"/><text x="39.4545%" y="926.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="39.2045%" y="932" width="0.5682%" height="15" fill="rgb(239,81,33)" fg:x="69" fg:w="1"/><text x="39.4545%" y="942.50"></text></g><g><title><module> (opcode.py:2) (1 samples, 0.57%)</title><rect x="39.2045%" y="948" width="0.5682%" height="15" fill="rgb(213,120,34)" fg:x="69" fg:w="1"/><text x="39.4545%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="39.2045%" y="964" width="0.5682%" height="15" fill="rgb(243,49,53)" fg:x="69" fg:w="1"/><text x="39.4545%" y="974.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="39.2045%" y="980" width="0.5682%" height="15" fill="rgb(247,216,33)" fg:x="69" fg:w="1"/><text x="39.4545%" y="990.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="39.2045%" y="996" width="0.5682%" height="15" fill="rgb(226,26,14)" fg:x="69" fg:w="1"/><text x="39.4545%" y="1006.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="39.2045%" y="1012" width="0.5682%" height="15" fill="rgb(215,49,53)" fg:x="69" fg:w="1"/><text x="39.4545%" y="1022.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="39.2045%" y="1028" width="0.5682%" height="15" fill="rgb(245,162,40)" fg:x="69" fg:w="1"/><text x="39.4545%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="39.2045%" y="1044" width="0.5682%" height="15" fill="rgb(229,68,17)" fg:x="69" fg:w="1"/><text x="39.4545%" y="1054.50"></text></g><g><title><module> (numpy/ma/__init__.py:1) (2 samples, 1.14%)</title><rect x="39.2045%" y="532" width="1.1364%" height="15" fill="rgb(213,182,10)" fg:x="69" fg:w="2"/><text x="39.4545%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="39.2045%" y="548" width="1.1364%" height="15" fill="rgb(245,125,30)" fg:x="69" fg:w="2"/><text x="39.4545%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="39.2045%" y="564" width="1.1364%" height="15" fill="rgb(232,202,2)" fg:x="69" fg:w="2"/><text x="39.4545%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="39.2045%" y="580" width="1.1364%" height="15" fill="rgb(237,140,51)" fg:x="69" fg:w="2"/><text x="39.4545%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="39.2045%" y="596" width="1.1364%" height="15" fill="rgb(236,157,25)" fg:x="69" fg:w="2"/><text x="39.4545%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="39.2045%" y="612" width="1.1364%" height="15" fill="rgb(219,209,0)" fg:x="69" fg:w="2"/><text x="39.4545%" y="622.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="39.7727%" y="628" width="0.5682%" height="15" fill="rgb(240,116,54)" fg:x="70" fg:w="1"/><text x="40.0227%" y="638.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.57%)</title><rect x="39.7727%" y="644" width="0.5682%" height="15" fill="rgb(216,10,36)" fg:x="70" fg:w="1"/><text x="40.0227%" y="654.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.57%)</title><rect x="39.7727%" y="660" width="0.5682%" height="15" fill="rgb(222,72,44)" fg:x="70" fg:w="1"/><text x="40.0227%" y="670.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.57%)</title><rect x="39.7727%" y="676" width="0.5682%" height="15" fill="rgb(232,159,9)" fg:x="70" fg:w="1"/><text x="40.0227%" y="686.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.57%)</title><rect x="39.7727%" y="692" width="0.5682%" height="15" fill="rgb(210,39,32)" fg:x="70" fg:w="1"/><text x="40.0227%" y="702.50"></text></g><g><title>_path_split (<frozen importlib._bootstrap_external>:127) (1 samples, 0.57%)</title><rect x="39.7727%" y="708" width="0.5682%" height="15" fill="rgb(216,194,45)" fg:x="70" fg:w="1"/><text x="40.0227%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (1 samples, 0.57%)</title><rect x="40.3409%" y="804" width="0.5682%" height="15" fill="rgb(218,18,35)" fg:x="71" fg:w="1"/><text x="40.5909%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="40.3409%" y="820" width="0.5682%" height="15" fill="rgb(207,83,51)" fg:x="71" fg:w="1"/><text x="40.5909%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="40.3409%" y="836" width="0.5682%" height="15" fill="rgb(225,63,43)" fg:x="71" fg:w="1"/><text x="40.5909%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="40.3409%" y="852" width="0.5682%" height="15" fill="rgb(207,57,36)" fg:x="71" fg:w="1"/><text x="40.5909%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="40.3409%" y="868" width="0.5682%" height="15" fill="rgb(216,99,33)" fg:x="71" fg:w="1"/><text x="40.5909%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="40.3409%" y="884" width="0.5682%" height="15" fill="rgb(225,42,16)" fg:x="71" fg:w="1"/><text x="40.5909%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="40.3409%" y="900" width="0.5682%" height="15" fill="rgb(220,201,45)" fg:x="71" fg:w="1"/><text x="40.5909%" y="910.50"></text></g><g><title><module> (secrets.py:1) (1 samples, 0.57%)</title><rect x="40.3409%" y="916" width="0.5682%" height="15" fill="rgb(225,33,4)" fg:x="71" fg:w="1"/><text x="40.5909%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="40.3409%" y="932" width="0.5682%" height="15" fill="rgb(224,33,50)" fg:x="71" fg:w="1"/><text x="40.5909%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="40.3409%" y="948" width="0.5682%" height="15" fill="rgb(246,198,51)" fg:x="71" fg:w="1"/><text x="40.5909%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="40.3409%" y="964" width="0.5682%" height="15" fill="rgb(205,22,4)" fg:x="71" fg:w="1"/><text x="40.5909%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="40.3409%" y="980" width="0.5682%" height="15" fill="rgb(206,3,8)" fg:x="71" fg:w="1"/><text x="40.5909%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="40.3409%" y="996" width="0.5682%" height="15" fill="rgb(251,23,15)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1006.50"></text></g><g><title><module> (hmac.py:1) (1 samples, 0.57%)</title><rect x="40.3409%" y="1012" width="0.5682%" height="15" fill="rgb(252,88,28)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="40.3409%" y="1028" width="0.5682%" height="15" fill="rgb(212,127,14)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="40.3409%" y="1044" width="0.5682%" height="15" fill="rgb(247,145,37)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="40.3409%" y="1060" width="0.5682%" height="15" fill="rgb(209,117,53)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1070.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="40.3409%" y="1076" width="0.5682%" height="15" fill="rgb(212,90,42)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1086.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="40.3409%" y="1092" width="0.5682%" height="15" fill="rgb(218,164,37)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="40.3409%" y="1108" width="0.5682%" height="15" fill="rgb(246,65,34)" fg:x="71" fg:w="1"/><text x="40.5909%" y="1118.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 5.11%)</title><rect x="36.3636%" y="516" width="5.1136%" height="15" fill="rgb(231,100,33)" fg:x="64" fg:w="9"/><text x="36.6136%" y="526.50">_call_..</text></g><g><title><module> (numpy/random/__init__.py:1) (2 samples, 1.14%)</title><rect x="40.3409%" y="532" width="1.1364%" height="15" fill="rgb(228,126,14)" fg:x="71" fg:w="2"/><text x="40.5909%" y="542.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="40.3409%" y="548" width="1.1364%" height="15" fill="rgb(215,173,21)" fg:x="71" fg:w="2"/><text x="40.5909%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="40.3409%" y="564" width="1.1364%" height="15" fill="rgb(210,6,40)" fg:x="71" fg:w="2"/><text x="40.5909%" y="574.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="40.3409%" y="580" width="1.1364%" height="15" fill="rgb(212,48,18)" fg:x="71" fg:w="2"/><text x="40.5909%" y="590.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="40.3409%" y="596" width="1.1364%" height="15" fill="rgb(230,214,11)" fg:x="71" fg:w="2"/><text x="40.5909%" y="606.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="40.3409%" y="612" width="1.1364%" height="15" fill="rgb(254,105,39)" fg:x="71" fg:w="2"/><text x="40.5909%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="40.3409%" y="628" width="1.1364%" height="15" fill="rgb(245,158,5)" fg:x="71" fg:w="2"/><text x="40.5909%" y="638.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="40.3409%" y="644" width="1.1364%" height="15" fill="rgb(249,208,11)" fg:x="71" fg:w="2"/><text x="40.5909%" y="654.50"></text></g><g><title><module> (numpy/random/_pickle.py:1) (2 samples, 1.14%)</title><rect x="40.3409%" y="660" width="1.1364%" height="15" fill="rgb(210,39,28)" fg:x="71" fg:w="2"/><text x="40.5909%" y="670.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="40.3409%" y="676" width="1.1364%" height="15" fill="rgb(211,56,53)" fg:x="71" fg:w="2"/><text x="40.5909%" y="686.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="40.3409%" y="692" width="1.1364%" height="15" fill="rgb(226,201,30)" fg:x="71" fg:w="2"/><text x="40.5909%" y="702.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="40.3409%" y="708" width="1.1364%" height="15" fill="rgb(239,101,34)" fg:x="71" fg:w="2"/><text x="40.5909%" y="718.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="40.3409%" y="724" width="1.1364%" height="15" fill="rgb(226,209,5)" fg:x="71" fg:w="2"/><text x="40.5909%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="40.3409%" y="740" width="1.1364%" height="15" fill="rgb(250,105,47)" fg:x="71" fg:w="2"/><text x="40.5909%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="40.3409%" y="756" width="1.1364%" height="15" fill="rgb(230,72,3)" fg:x="71" fg:w="2"/><text x="40.5909%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="40.3409%" y="772" width="1.1364%" height="15" fill="rgb(232,218,39)" fg:x="71" fg:w="2"/><text x="40.5909%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="40.3409%" y="788" width="1.1364%" height="15" fill="rgb(248,166,6)" fg:x="71" fg:w="2"/><text x="40.5909%" y="798.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="40.9091%" y="804" width="0.5682%" height="15" fill="rgb(247,89,20)" fg:x="72" fg:w="1"/><text x="41.1591%" y="814.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="40.9091%" y="820" width="0.5682%" height="15" fill="rgb(248,130,54)" fg:x="72" fg:w="1"/><text x="41.1591%" y="830.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="40.9091%" y="836" width="0.5682%" height="15" fill="rgb(234,196,4)" fg:x="72" fg:w="1"/><text x="41.1591%" y="846.50"></text></g><g><title><module> (numpy/__init__.py:1) (17 samples, 9.66%)</title><rect x="32.3864%" y="404" width="9.6591%" height="15" fill="rgb(250,143,31)" fg:x="57" fg:w="17"/><text x="32.6364%" y="414.50"><module> (nump..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 5.68%)</title><rect x="36.3636%" y="420" width="5.6818%" height="15" fill="rgb(211,110,34)" fg:x="64" fg:w="10"/><text x="36.6136%" y="430.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="36.3636%" y="436" width="5.6818%" height="15" fill="rgb(215,124,48)" fg:x="64" fg:w="10"/><text x="36.6136%" y="446.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="36.3636%" y="452" width="5.6818%" height="15" fill="rgb(216,46,13)" fg:x="64" fg:w="10"/><text x="36.6136%" y="462.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="36.3636%" y="468" width="5.6818%" height="15" fill="rgb(205,184,25)" fg:x="64" fg:w="10"/><text x="36.6136%" y="478.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="36.3636%" y="484" width="5.6818%" height="15" fill="rgb(228,1,10)" fg:x="64" fg:w="10"/><text x="36.6136%" y="494.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 5.68%)</title><rect x="36.3636%" y="500" width="5.6818%" height="15" fill="rgb(213,116,27)" fg:x="64" fg:w="10"/><text x="36.6136%" y="510.50">exec_mo..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="41.4773%" y="516" width="0.5682%" height="15" fill="rgb(241,95,50)" fg:x="73" fg:w="1"/><text x="41.7273%" y="526.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="41.4773%" y="532" width="0.5682%" height="15" fill="rgb(238,48,32)" fg:x="73" fg:w="1"/><text x="41.7273%" y="542.50"></text></g><g><title><module> (pandas/_config/__init__.py:1) (1 samples, 0.57%)</title><rect x="42.0455%" y="500" width="0.5682%" height="15" fill="rgb(235,113,49)" fg:x="74" fg:w="1"/><text x="42.2955%" y="510.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="42.0455%" y="516" width="0.5682%" height="15" fill="rgb(205,127,43)" fg:x="74" fg:w="1"/><text x="42.2955%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="42.0455%" y="532" width="0.5682%" height="15" fill="rgb(250,162,2)" fg:x="74" fg:w="1"/><text x="42.2955%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="42.0455%" y="548" width="0.5682%" height="15" fill="rgb(220,13,41)" fg:x="74" fg:w="1"/><text x="42.2955%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="42.0455%" y="564" width="0.5682%" height="15" fill="rgb(249,221,25)" fg:x="74" fg:w="1"/><text x="42.2955%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="42.0455%" y="580" width="0.5682%" height="15" fill="rgb(215,208,19)" fg:x="74" fg:w="1"/><text x="42.2955%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="42.0455%" y="596" width="0.5682%" height="15" fill="rgb(236,175,2)" fg:x="74" fg:w="1"/><text x="42.2955%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="42.0455%" y="612" width="0.5682%" height="15" fill="rgb(241,52,2)" fg:x="74" fg:w="1"/><text x="42.2955%" y="622.50"></text></g><g><title><module> (pandas/_config/config.py:1) (1 samples, 0.57%)</title><rect x="42.0455%" y="628" width="0.5682%" height="15" fill="rgb(248,140,14)" fg:x="74" fg:w="1"/><text x="42.2955%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="42.0455%" y="644" width="0.5682%" height="15" fill="rgb(253,22,42)" fg:x="74" fg:w="1"/><text x="42.2955%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="42.0455%" y="660" width="0.5682%" height="15" fill="rgb(234,61,47)" fg:x="74" fg:w="1"/><text x="42.2955%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="42.0455%" y="676" width="0.5682%" height="15" fill="rgb(208,226,15)" fg:x="74" fg:w="1"/><text x="42.2955%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="42.0455%" y="692" width="0.5682%" height="15" fill="rgb(217,221,4)" fg:x="74" fg:w="1"/><text x="42.2955%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="42.0455%" y="708" width="0.5682%" height="15" fill="rgb(212,174,34)" fg:x="74" fg:w="1"/><text x="42.2955%" y="718.50"></text></g><g><title><module> (pandas/_typing.py:1) (1 samples, 0.57%)</title><rect x="42.0455%" y="724" width="0.5682%" height="15" fill="rgb(253,83,4)" fg:x="74" fg:w="1"/><text x="42.2955%" y="734.50"></text></g><g><title>__new__ (abc.py:105) (1 samples, 0.57%)</title><rect x="42.0455%" y="740" width="0.5682%" height="15" fill="rgb(250,195,49)" fg:x="74" fg:w="1"/><text x="42.2955%" y="750.50"></text></g><g><title>_fill_cache (<frozen importlib._bootstrap_external>:1565) (1 samples, 0.57%)</title><rect x="42.6136%" y="612" width="0.5682%" height="15" fill="rgb(241,192,25)" fg:x="75" fg:w="1"/><text x="42.8636%" y="622.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (2 samples, 1.14%)</title><rect x="42.6136%" y="548" width="1.1364%" height="15" fill="rgb(208,124,10)" fg:x="75" fg:w="2"/><text x="42.8636%" y="558.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (2 samples, 1.14%)</title><rect x="42.6136%" y="564" width="1.1364%" height="15" fill="rgb(222,33,0)" fg:x="75" fg:w="2"/><text x="42.8636%" y="574.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (2 samples, 1.14%)</title><rect x="42.6136%" y="580" width="1.1364%" height="15" fill="rgb(234,209,28)" fg:x="75" fg:w="2"/><text x="42.8636%" y="590.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (2 samples, 1.14%)</title><rect x="42.6136%" y="596" width="1.1364%" height="15" fill="rgb(224,11,23)" fg:x="75" fg:w="2"/><text x="42.8636%" y="606.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.57%)</title><rect x="43.1818%" y="612" width="0.5682%" height="15" fill="rgb(232,99,1)" fg:x="76" fg:w="1"/><text x="43.4318%" y="622.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="43.7500%" y="756" width="1.1364%" height="15" fill="rgb(237,95,45)" fg:x="77" fg:w="2"/><text x="44.0000%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="43.7500%" y="772" width="1.1364%" height="15" fill="rgb(208,109,11)" fg:x="77" fg:w="2"/><text x="44.0000%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="43.7500%" y="788" width="1.1364%" height="15" fill="rgb(216,190,48)" fg:x="77" fg:w="2"/><text x="44.0000%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="43.7500%" y="804" width="1.1364%" height="15" fill="rgb(251,171,36)" fg:x="77" fg:w="2"/><text x="44.0000%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="43.7500%" y="820" width="1.1364%" height="15" fill="rgb(230,62,22)" fg:x="77" fg:w="2"/><text x="44.0000%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="43.7500%" y="836" width="1.1364%" height="15" fill="rgb(225,114,35)" fg:x="77" fg:w="2"/><text x="44.0000%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="43.7500%" y="852" width="1.1364%" height="15" fill="rgb(215,118,42)" fg:x="77" fg:w="2"/><text x="44.0000%" y="862.50"></text></g><g><title><module> (queue.py:1) (2 samples, 1.14%)</title><rect x="43.7500%" y="868" width="1.1364%" height="15" fill="rgb(243,119,21)" fg:x="77" fg:w="2"/><text x="44.0000%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="43.7500%" y="884" width="1.1364%" height="15" fill="rgb(252,177,53)" fg:x="77" fg:w="2"/><text x="44.0000%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="43.7500%" y="900" width="1.1364%" height="15" fill="rgb(237,209,29)" fg:x="77" fg:w="2"/><text x="44.0000%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="43.7500%" y="916" width="1.1364%" height="15" fill="rgb(212,65,23)" fg:x="77" fg:w="2"/><text x="44.0000%" y="926.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 1.14%)</title><rect x="43.7500%" y="932" width="1.1364%" height="15" fill="rgb(230,222,46)" fg:x="77" fg:w="2"/><text x="44.0000%" y="942.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 1.14%)</title><rect x="43.7500%" y="948" width="1.1364%" height="15" fill="rgb(215,135,32)" fg:x="77" fg:w="2"/><text x="44.0000%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="43.7500%" y="964" width="1.1364%" height="15" fill="rgb(246,101,22)" fg:x="77" fg:w="2"/><text x="44.0000%" y="974.50"></text></g><g><title><module> (pandas/compat/__init__.py:1) (15 samples, 8.52%)</title><rect x="42.6136%" y="500" width="8.5227%" height="15" fill="rgb(206,107,13)" fg:x="75" fg:w="15"/><text x="42.8636%" y="510.50"><module> (pa..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 8.52%)</title><rect x="42.6136%" y="516" width="8.5227%" height="15" fill="rgb(250,100,44)" fg:x="75" fg:w="15"/><text x="42.8636%" y="526.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 8.52%)</title><rect x="42.6136%" y="532" width="8.5227%" height="15" fill="rgb(231,147,38)" fg:x="75" fg:w="15"/><text x="42.8636%" y="542.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="43.7500%" y="548" width="7.3864%" height="15" fill="rgb(229,8,40)" fg:x="77" fg:w="13"/><text x="44.0000%" y="558.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="43.7500%" y="564" width="7.3864%" height="15" fill="rgb(221,135,30)" fg:x="77" fg:w="13"/><text x="44.0000%" y="574.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="43.7500%" y="580" width="7.3864%" height="15" fill="rgb(249,193,18)" fg:x="77" fg:w="13"/><text x="44.0000%" y="590.50">_call_with..</text></g><g><title><module> (pandas/compat/pyarrow.py:1) (13 samples, 7.39%)</title><rect x="43.7500%" y="596" width="7.3864%" height="15" fill="rgb(209,133,39)" fg:x="77" fg:w="13"/><text x="44.0000%" y="606.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="43.7500%" y="612" width="7.3864%" height="15" fill="rgb(232,100,14)" fg:x="77" fg:w="13"/><text x="44.0000%" y="622.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="43.7500%" y="628" width="7.3864%" height="15" fill="rgb(224,185,1)" fg:x="77" fg:w="13"/><text x="44.0000%" y="638.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="43.7500%" y="644" width="7.3864%" height="15" fill="rgb(223,139,8)" fg:x="77" fg:w="13"/><text x="44.0000%" y="654.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="43.7500%" y="660" width="7.3864%" height="15" fill="rgb(232,213,38)" fg:x="77" fg:w="13"/><text x="44.0000%" y="670.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="43.7500%" y="676" width="7.3864%" height="15" fill="rgb(207,94,22)" fg:x="77" fg:w="13"/><text x="44.0000%" y="686.50">_call_with..</text></g><g><title><module> (pyarrow/__init__.py:20) (13 samples, 7.39%)</title><rect x="43.7500%" y="692" width="7.3864%" height="15" fill="rgb(219,183,54)" fg:x="77" fg:w="13"/><text x="44.0000%" y="702.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="43.7500%" y="708" width="7.3864%" height="15" fill="rgb(216,185,54)" fg:x="77" fg:w="13"/><text x="44.0000%" y="718.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="43.7500%" y="724" width="7.3864%" height="15" fill="rgb(254,217,39)" fg:x="77" fg:w="13"/><text x="44.0000%" y="734.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="43.7500%" y="740" width="7.3864%" height="15" fill="rgb(240,178,23)" fg:x="77" fg:w="13"/><text x="44.0000%" y="750.50">_load_unlo..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (11 samples, 6.25%)</title><rect x="44.8864%" y="756" width="6.2500%" height="15" fill="rgb(218,11,47)" fg:x="79" fg:w="11"/><text x="45.1364%" y="766.50">module_f..</text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (11 samples, 6.25%)</title><rect x="44.8864%" y="772" width="6.2500%" height="15" fill="rgb(218,51,51)" fg:x="79" fg:w="11"/><text x="45.1364%" y="782.50">create_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (11 samples, 6.25%)</title><rect x="44.8864%" y="788" width="6.2500%" height="15" fill="rgb(238,126,27)" fg:x="79" fg:w="11"/><text x="45.1364%" y="798.50">_call_wi..</text></g><g><title><module> (pandas/core/algorithms.py:1) (1 samples, 0.57%)</title><rect x="51.1364%" y="596" width="0.5682%" height="15" fill="rgb(249,202,22)" fg:x="90" fg:w="1"/><text x="51.3864%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="51.1364%" y="612" width="0.5682%" height="15" fill="rgb(254,195,49)" fg:x="90" fg:w="1"/><text x="51.3864%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="51.1364%" y="628" width="0.5682%" height="15" fill="rgb(208,123,14)" fg:x="90" fg:w="1"/><text x="51.3864%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="51.1364%" y="644" width="0.5682%" height="15" fill="rgb(224,200,8)" fg:x="90" fg:w="1"/><text x="51.3864%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="51.1364%" y="660" width="0.5682%" height="15" fill="rgb(217,61,36)" fg:x="90" fg:w="1"/><text x="51.3864%" y="670.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="51.1364%" y="676" width="0.5682%" height="15" fill="rgb(206,35,45)" fg:x="90" fg:w="1"/><text x="51.3864%" y="686.50"></text></g><g><title><module> (pandas/core/array_algos/take.py:1) (1 samples, 0.57%)</title><rect x="51.1364%" y="692" width="0.5682%" height="15" fill="rgb(217,65,33)" fg:x="90" fg:w="1"/><text x="51.3864%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="51.1364%" y="708" width="0.5682%" height="15" fill="rgb(222,158,48)" fg:x="90" fg:w="1"/><text x="51.3864%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="51.1364%" y="724" width="0.5682%" height="15" fill="rgb(254,2,54)" fg:x="90" fg:w="1"/><text x="51.3864%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="51.1364%" y="740" width="0.5682%" height="15" fill="rgb(250,143,38)" fg:x="90" fg:w="1"/><text x="51.3864%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="51.1364%" y="756" width="0.5682%" height="15" fill="rgb(248,25,0)" fg:x="90" fg:w="1"/><text x="51.3864%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="51.1364%" y="772" width="0.5682%" height="15" fill="rgb(206,152,27)" fg:x="90" fg:w="1"/><text x="51.3864%" y="782.50"></text></g><g><title><module> (pandas/core/construction.py:1) (1 samples, 0.57%)</title><rect x="51.1364%" y="788" width="0.5682%" height="15" fill="rgb(240,77,30)" fg:x="90" fg:w="1"/><text x="51.3864%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="51.1364%" y="804" width="0.5682%" height="15" fill="rgb(231,5,3)" fg:x="90" fg:w="1"/><text x="51.3864%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="51.1364%" y="820" width="0.5682%" height="15" fill="rgb(207,226,32)" fg:x="90" fg:w="1"/><text x="51.3864%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="51.1364%" y="836" width="0.5682%" height="15" fill="rgb(222,207,47)" fg:x="90" fg:w="1"/><text x="51.3864%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="51.1364%" y="852" width="0.5682%" height="15" fill="rgb(229,115,45)" fg:x="90" fg:w="1"/><text x="51.3864%" y="862.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="51.1364%" y="868" width="0.5682%" height="15" fill="rgb(224,191,6)" fg:x="90" fg:w="1"/><text x="51.3864%" y="878.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="51.1364%" y="884" width="0.5682%" height="15" fill="rgb(230,227,24)" fg:x="90" fg:w="1"/><text x="51.3864%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="52.2727%" y="1044" width="1.1364%" height="15" fill="rgb(228,80,19)" fg:x="92" fg:w="2"/><text x="52.5227%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="52.2727%" y="1060" width="1.1364%" height="15" fill="rgb(247,229,0)" fg:x="92" fg:w="2"/><text x="52.5227%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="52.2727%" y="996" width="1.7045%" height="15" fill="rgb(237,194,15)" fg:x="92" fg:w="3"/><text x="52.5227%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="52.2727%" y="1012" width="1.7045%" height="15" fill="rgb(219,203,20)" fg:x="92" fg:w="3"/><text x="52.5227%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="52.2727%" y="1028" width="1.7045%" height="15" fill="rgb(234,128,8)" fg:x="92" fg:w="3"/><text x="52.5227%" y="1038.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="53.4091%" y="1044" width="0.5682%" height="15" fill="rgb(248,202,8)" fg:x="94" fg:w="1"/><text x="53.6591%" y="1054.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="53.4091%" y="1060" width="0.5682%" height="15" fill="rgb(206,104,37)" fg:x="94" fg:w="1"/><text x="53.6591%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="53.4091%" y="1076" width="0.5682%" height="15" fill="rgb(223,8,27)" fg:x="94" fg:w="1"/><text x="53.6591%" y="1086.50"></text></g><g><title>_decorate_compute_function (pyarrow/compute.py:120) (1 samples, 0.57%)</title><rect x="53.9773%" y="1028" width="0.5682%" height="15" fill="rgb(216,217,28)" fg:x="95" fg:w="1"/><text x="54.2273%" y="1038.50"></text></g><g><title>_scrape_options_class_doc (pyarrow/compute.py:113) (1 samples, 0.57%)</title><rect x="53.9773%" y="1044" width="0.5682%" height="15" fill="rgb(249,199,1)" fg:x="95" fg:w="1"/><text x="54.2273%" y="1054.50"></text></g><g><title>__init__ (pyarrow/vendored/docscrape.py:146) (1 samples, 0.57%)</title><rect x="53.9773%" y="1060" width="0.5682%" height="15" fill="rgb(240,85,17)" fg:x="95" fg:w="1"/><text x="54.2273%" y="1070.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.57%)</title><rect x="53.9773%" y="1076" width="0.5682%" height="15" fill="rgb(206,108,45)" fg:x="95" fg:w="1"/><text x="54.2273%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="51.7045%" y="676" width="3.9773%" height="15" fill="rgb(245,210,41)" fg:x="91" fg:w="7"/><text x="51.9545%" y="686.50">_cal..</text></g><g><title><module> (pandas/core/arrays/arrow/__init__.py:1) (7 samples, 3.98%)</title><rect x="51.7045%" y="692" width="3.9773%" height="15" fill="rgb(206,13,37)" fg:x="91" fg:w="7"/><text x="51.9545%" y="702.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="51.7045%" y="708" width="3.9773%" height="15" fill="rgb(250,61,18)" fg:x="91" fg:w="7"/><text x="51.9545%" y="718.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="51.7045%" y="724" width="3.9773%" height="15" fill="rgb(235,172,48)" fg:x="91" fg:w="7"/><text x="51.9545%" y="734.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.98%)</title><rect x="51.7045%" y="740" width="3.9773%" height="15" fill="rgb(249,201,17)" fg:x="91" fg:w="7"/><text x="51.9545%" y="750.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.98%)</title><rect x="51.7045%" y="756" width="3.9773%" height="15" fill="rgb(219,208,6)" fg:x="91" fg:w="7"/><text x="51.9545%" y="766.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="51.7045%" y="772" width="3.9773%" height="15" fill="rgb(248,31,23)" fg:x="91" fg:w="7"/><text x="51.9545%" y="782.50">_cal..</text></g><g><title><module> (pandas/core/arrays/arrow/array.py:1) (7 samples, 3.98%)</title><rect x="51.7045%" y="788" width="3.9773%" height="15" fill="rgb(245,15,42)" fg:x="91" fg:w="7"/><text x="51.9545%" y="798.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="51.7045%" y="804" width="3.9773%" height="15" fill="rgb(222,217,39)" fg:x="91" fg:w="7"/><text x="51.9545%" y="814.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="52.2727%" y="820" width="3.4091%" height="15" fill="rgb(210,219,27)" fg:x="92" fg:w="6"/><text x="52.5227%" y="830.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="52.2727%" y="836" width="3.4091%" height="15" fill="rgb(252,166,36)" fg:x="92" fg:w="6"/><text x="52.5227%" y="846.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="52.2727%" y="852" width="3.4091%" height="15" fill="rgb(245,132,34)" fg:x="92" fg:w="6"/><text x="52.5227%" y="862.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="52.2727%" y="868" width="3.4091%" height="15" fill="rgb(236,54,3)" fg:x="92" fg:w="6"/><text x="52.5227%" y="878.50">_ca..</text></g><g><title><module> (pandas/core/arrays/_arrow_string_mixins.py:1) (6 samples, 3.41%)</title><rect x="52.2727%" y="884" width="3.4091%" height="15" fill="rgb(241,173,43)" fg:x="92" fg:w="6"/><text x="52.5227%" y="894.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="52.2727%" y="900" width="3.4091%" height="15" fill="rgb(215,190,9)" fg:x="92" fg:w="6"/><text x="52.5227%" y="910.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="52.2727%" y="916" width="3.4091%" height="15" fill="rgb(242,101,16)" fg:x="92" fg:w="6"/><text x="52.5227%" y="926.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="52.2727%" y="932" width="3.4091%" height="15" fill="rgb(223,190,21)" fg:x="92" fg:w="6"/><text x="52.5227%" y="942.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="52.2727%" y="948" width="3.4091%" height="15" fill="rgb(215,228,25)" fg:x="92" fg:w="6"/><text x="52.5227%" y="958.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="52.2727%" y="964" width="3.4091%" height="15" fill="rgb(225,36,22)" fg:x="92" fg:w="6"/><text x="52.5227%" y="974.50">_ca..</text></g><g><title><module> (pyarrow/compute.py:18) (6 samples, 3.41%)</title><rect x="52.2727%" y="980" width="3.4091%" height="15" fill="rgb(251,106,46)" fg:x="92" fg:w="6"/><text x="52.5227%" y="990.50"><mo..</text></g><g><title>_make_global_functions (pyarrow/compute.py:306) (3 samples, 1.70%)</title><rect x="53.9773%" y="996" width="1.7045%" height="15" fill="rgb(208,90,1)" fg:x="95" fg:w="3"/><text x="54.2273%" y="1006.50"></text></g><g><title>_wrap_function (pyarrow/compute.py:290) (3 samples, 1.70%)</title><rect x="53.9773%" y="1012" width="1.7045%" height="15" fill="rgb(243,10,4)" fg:x="95" fg:w="3"/><text x="54.2273%" y="1022.50"></text></g><g><title>_make_signature (pyarrow/compute.py:267) (2 samples, 1.14%)</title><rect x="54.5455%" y="1028" width="1.1364%" height="15" fill="rgb(212,137,27)" fg:x="96" fg:w="2"/><text x="54.7955%" y="1038.50"></text></g><g><title>__init__ (inspect.py:2498) (1 samples, 0.57%)</title><rect x="55.1136%" y="1044" width="0.5682%" height="15" fill="rgb(231,220,49)" fg:x="97" fg:w="1"/><text x="55.3636%" y="1054.50"></text></g><g><title><module> (pandas/core/arrays/__init__.py:1) (8 samples, 4.55%)</title><rect x="51.7045%" y="596" width="4.5455%" height="15" fill="rgb(237,96,20)" fg:x="91" fg:w="8"/><text x="51.9545%" y="606.50"><modu..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="51.7045%" y="612" width="4.5455%" height="15" fill="rgb(239,229,30)" fg:x="91" fg:w="8"/><text x="51.9545%" y="622.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="51.7045%" y="628" width="4.5455%" height="15" fill="rgb(219,65,33)" fg:x="91" fg:w="8"/><text x="51.9545%" y="638.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="51.7045%" y="644" width="4.5455%" height="15" fill="rgb(243,134,7)" fg:x="91" fg:w="8"/><text x="51.9545%" y="654.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="51.7045%" y="660" width="4.5455%" height="15" fill="rgb(216,177,54)" fg:x="91" fg:w="8"/><text x="51.9545%" y="670.50">exec_..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="55.6818%" y="676" width="0.5682%" height="15" fill="rgb(211,160,20)" fg:x="98" fg:w="1"/><text x="55.9318%" y="686.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="55.6818%" y="692" width="0.5682%" height="15" fill="rgb(239,85,39)" fg:x="98" fg:w="1"/><text x="55.9318%" y="702.50"></text></g><g><title>SeriesGroupBy (pandas/core/groupby/generic.py:152) (1 samples, 0.57%)</title><rect x="56.2500%" y="708" width="0.5682%" height="15" fill="rgb(232,125,22)" fg:x="99" fg:w="1"/><text x="56.5000%" y="718.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.57%)</title><rect x="56.2500%" y="724" width="0.5682%" height="15" fill="rgb(244,57,34)" fg:x="99" fg:w="1"/><text x="56.5000%" y="734.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (1 samples, 0.57%)</title><rect x="56.2500%" y="740" width="0.5682%" height="15" fill="rgb(214,203,32)" fg:x="99" fg:w="1"/><text x="56.5000%" y="750.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.57%)</title><rect x="56.2500%" y="756" width="0.5682%" height="15" fill="rgb(207,58,43)" fg:x="99" fg:w="1"/><text x="56.5000%" y="766.50"></text></g><g><title>DataFrame (pandas/core/frame.py:491) (4 samples, 2.27%)</title><rect x="56.8182%" y="804" width="2.2727%" height="15" fill="rgb(215,193,15)" fg:x="100" fg:w="4"/><text x="57.0682%" y="814.50">D..</text></g><g><title>__call__ (pandas/util/_decorators.py:484) (4 samples, 2.27%)</title><rect x="56.8182%" y="820" width="2.2727%" height="15" fill="rgb(232,15,44)" fg:x="100" fg:w="4"/><text x="57.0682%" y="830.50">_..</text></g><g><title>dedent (textwrap.py:414) (4 samples, 2.27%)</title><rect x="56.8182%" y="836" width="2.2727%" height="15" fill="rgb(212,3,48)" fg:x="100" fg:w="4"/><text x="57.0682%" y="846.50">d..</text></g><g><title>NDFrame (pandas/core/generic.py:238) (1 samples, 0.57%)</title><rect x="59.0909%" y="900" width="0.5682%" height="15" fill="rgb(218,128,7)" fg:x="104" fg:w="1"/><text x="59.3409%" y="910.50"></text></g><g><title><module> (pandas/core/methods/describe.py:1) (1 samples, 0.57%)</title><rect x="59.6591%" y="980" width="0.5682%" height="15" fill="rgb(226,216,39)" fg:x="105" fg:w="1"/><text x="59.9091%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="59.6591%" y="996" width="0.5682%" height="15" fill="rgb(243,47,51)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="59.6591%" y="1012" width="0.5682%" height="15" fill="rgb(241,183,40)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1022.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="59.6591%" y="1028" width="0.5682%" height="15" fill="rgb(231,217,32)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1038.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="59.6591%" y="1044" width="0.5682%" height="15" fill="rgb(229,61,38)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1054.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.57%)</title><rect x="59.6591%" y="1060" width="0.5682%" height="15" fill="rgb(225,210,5)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1070.50"></text></g><g><title>_get_module_lock (<frozen importlib._bootstrap>:166) (1 samples, 0.57%)</title><rect x="59.6591%" y="1076" width="0.5682%" height="15" fill="rgb(231,79,45)" fg:x="105" fg:w="1"/><text x="59.9091%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="59.6591%" y="900" width="1.1364%" height="15" fill="rgb(224,100,7)" fg:x="105" fg:w="2"/><text x="59.9091%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="59.6591%" y="916" width="1.1364%" height="15" fill="rgb(241,198,18)" fg:x="105" fg:w="2"/><text x="59.9091%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="59.6591%" y="932" width="1.1364%" height="15" fill="rgb(252,97,53)" fg:x="105" fg:w="2"/><text x="59.9091%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="59.6591%" y="948" width="1.1364%" height="15" fill="rgb(220,88,7)" fg:x="105" fg:w="2"/><text x="59.9091%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="59.6591%" y="964" width="1.1364%" height="15" fill="rgb(213,176,14)" fg:x="105" fg:w="2"/><text x="59.9091%" y="974.50"></text></g><g><title><module> (pandas/core/window/__init__.py:1) (1 samples, 0.57%)</title><rect x="60.2273%" y="980" width="0.5682%" height="15" fill="rgb(246,73,7)" fg:x="106" fg:w="1"/><text x="60.4773%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="60.2273%" y="996" width="0.5682%" height="15" fill="rgb(245,64,36)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="60.2273%" y="1012" width="0.5682%" height="15" fill="rgb(245,80,10)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="60.2273%" y="1028" width="0.5682%" height="15" fill="rgb(232,107,50)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="60.2273%" y="1044" width="0.5682%" height="15" fill="rgb(253,3,0)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="60.2273%" y="1060" width="0.5682%" height="15" fill="rgb(212,99,53)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1070.50"></text></g><g><title><module> (pandas/core/window/ewm.py:1) (1 samples, 0.57%)</title><rect x="60.2273%" y="1076" width="0.5682%" height="15" fill="rgb(249,111,54)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="60.2273%" y="1092" width="0.5682%" height="15" fill="rgb(249,55,30)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="60.2273%" y="1108" width="0.5682%" height="15" fill="rgb(237,47,42)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="60.2273%" y="1124" width="0.5682%" height="15" fill="rgb(211,20,18)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="60.2273%" y="1140" width="0.5682%" height="15" fill="rgb(231,203,46)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="60.2273%" y="1156" width="0.5682%" height="15" fill="rgb(237,142,3)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1166.50"></text></g><g><title><module> (pandas/core/indexers/objects.py:1) (1 samples, 0.57%)</title><rect x="60.2273%" y="1172" width="0.5682%" height="15" fill="rgb(241,107,1)" fg:x="106" fg:w="1"/><text x="60.4773%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (35 samples, 19.89%)</title><rect x="42.0455%" y="420" width="19.8864%" height="15" fill="rgb(229,83,13)" fg:x="74" fg:w="35"/><text x="42.2955%" y="430.50">_find_and_load (<frozen importl..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (35 samples, 19.89%)</title><rect x="42.0455%" y="436" width="19.8864%" height="15" fill="rgb(241,91,40)" fg:x="74" fg:w="35"/><text x="42.2955%" y="446.50">_find_and_load_unlocked (<froze..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (35 samples, 19.89%)</title><rect x="42.0455%" y="452" width="19.8864%" height="15" fill="rgb(225,3,45)" fg:x="74" fg:w="35"/><text x="42.2955%" y="462.50">_load_unlocked (<frozen importl..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (35 samples, 19.89%)</title><rect x="42.0455%" y="468" width="19.8864%" height="15" fill="rgb(244,223,14)" fg:x="74" fg:w="35"/><text x="42.2955%" y="478.50">exec_module (<frozen importlib...</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (35 samples, 19.89%)</title><rect x="42.0455%" y="484" width="19.8864%" height="15" fill="rgb(224,124,37)" fg:x="74" fg:w="35"/><text x="42.2955%" y="494.50">_call_with_frames_removed (<fro..</text></g><g><title><module> (pandas/core/api.py:1) (19 samples, 10.80%)</title><rect x="51.1364%" y="500" width="10.7955%" height="15" fill="rgb(251,171,30)" fg:x="90" fg:w="19"/><text x="51.3864%" y="510.50"><module> (pandas..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 10.80%)</title><rect x="51.1364%" y="516" width="10.7955%" height="15" fill="rgb(236,46,54)" fg:x="90" fg:w="19"/><text x="51.3864%" y="526.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 10.80%)</title><rect x="51.1364%" y="532" width="10.7955%" height="15" fill="rgb(245,213,5)" fg:x="90" fg:w="19"/><text x="51.3864%" y="542.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 10.80%)</title><rect x="51.1364%" y="548" width="10.7955%" height="15" fill="rgb(230,144,27)" fg:x="90" fg:w="19"/><text x="51.3864%" y="558.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 10.80%)</title><rect x="51.1364%" y="564" width="10.7955%" height="15" fill="rgb(220,86,6)" fg:x="90" fg:w="19"/><text x="51.3864%" y="574.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 10.80%)</title><rect x="51.1364%" y="580" width="10.7955%" height="15" fill="rgb(240,20,13)" fg:x="90" fg:w="19"/><text x="51.3864%" y="590.50">_call_with_frame..</text></g><g><title><module> (pandas/core/groupby/__init__.py:1) (10 samples, 5.68%)</title><rect x="56.2500%" y="596" width="5.6818%" height="15" fill="rgb(217,89,34)" fg:x="99" fg:w="10"/><text x="56.5000%" y="606.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="56.2500%" y="612" width="5.6818%" height="15" fill="rgb(229,13,5)" fg:x="99" fg:w="10"/><text x="56.5000%" y="622.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="56.2500%" y="628" width="5.6818%" height="15" fill="rgb(244,67,35)" fg:x="99" fg:w="10"/><text x="56.5000%" y="638.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="56.2500%" y="644" width="5.6818%" height="15" fill="rgb(221,40,2)" fg:x="99" fg:w="10"/><text x="56.5000%" y="654.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 5.68%)</title><rect x="56.2500%" y="660" width="5.6818%" height="15" fill="rgb(237,157,21)" fg:x="99" fg:w="10"/><text x="56.5000%" y="670.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="56.2500%" y="676" width="5.6818%" height="15" fill="rgb(222,94,11)" fg:x="99" fg:w="10"/><text x="56.5000%" y="686.50">_call_w..</text></g><g><title><module> (pandas/core/groupby/generic.py:1) (10 samples, 5.68%)</title><rect x="56.2500%" y="692" width="5.6818%" height="15" fill="rgb(249,113,6)" fg:x="99" fg:w="10"/><text x="56.5000%" y="702.50"><module..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (9 samples, 5.11%)</title><rect x="56.8182%" y="708" width="5.1136%" height="15" fill="rgb(238,137,36)" fg:x="100" fg:w="9"/><text x="57.0682%" y="718.50">_find_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (9 samples, 5.11%)</title><rect x="56.8182%" y="724" width="5.1136%" height="15" fill="rgb(210,102,26)" fg:x="100" fg:w="9"/><text x="57.0682%" y="734.50">_find_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (9 samples, 5.11%)</title><rect x="56.8182%" y="740" width="5.1136%" height="15" fill="rgb(218,30,30)" fg:x="100" fg:w="9"/><text x="57.0682%" y="750.50">_load_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 5.11%)</title><rect x="56.8182%" y="756" width="5.1136%" height="15" fill="rgb(214,67,26)" fg:x="100" fg:w="9"/><text x="57.0682%" y="766.50">exec_m..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (9 samples, 5.11%)</title><rect x="56.8182%" y="772" width="5.1136%" height="15" fill="rgb(251,9,53)" fg:x="100" fg:w="9"/><text x="57.0682%" y="782.50">_call_..</text></g><g><title><module> (pandas/core/frame.py:1) (9 samples, 5.11%)</title><rect x="56.8182%" y="788" width="5.1136%" height="15" fill="rgb(228,204,25)" fg:x="100" fg:w="9"/><text x="57.0682%" y="798.50"><modul..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.84%)</title><rect x="59.0909%" y="804" width="2.8409%" height="15" fill="rgb(207,153,8)" fg:x="104" fg:w="5"/><text x="59.3409%" y="814.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.84%)</title><rect x="59.0909%" y="820" width="2.8409%" height="15" fill="rgb(242,9,16)" fg:x="104" fg:w="5"/><text x="59.3409%" y="830.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.84%)</title><rect x="59.0909%" y="836" width="2.8409%" height="15" fill="rgb(217,211,10)" fg:x="104" fg:w="5"/><text x="59.3409%" y="846.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.84%)</title><rect x="59.0909%" y="852" width="2.8409%" height="15" fill="rgb(219,228,52)" fg:x="104" fg:w="5"/><text x="59.3409%" y="862.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.84%)</title><rect x="59.0909%" y="868" width="2.8409%" height="15" fill="rgb(231,92,29)" fg:x="104" fg:w="5"/><text x="59.3409%" y="878.50">_c..</text></g><g><title><module> (pandas/core/generic.py:2) (5 samples, 2.84%)</title><rect x="59.0909%" y="884" width="2.8409%" height="15" fill="rgb(232,8,23)" fg:x="104" fg:w="5"/><text x="59.3409%" y="894.50"><m..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="60.7955%" y="900" width="1.1364%" height="15" fill="rgb(216,211,34)" fg:x="107" fg:w="2"/><text x="61.0455%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="60.7955%" y="916" width="1.1364%" height="15" fill="rgb(236,151,0)" fg:x="107" fg:w="2"/><text x="61.0455%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="60.7955%" y="932" width="1.1364%" height="15" fill="rgb(209,168,3)" fg:x="107" fg:w="2"/><text x="61.0455%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="60.7955%" y="948" width="1.1364%" height="15" fill="rgb(208,129,28)" fg:x="107" fg:w="2"/><text x="61.0455%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="60.7955%" y="964" width="1.1364%" height="15" fill="rgb(229,78,22)" fg:x="107" fg:w="2"/><text x="61.0455%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="60.7955%" y="980" width="1.1364%" height="15" fill="rgb(228,187,13)" fg:x="107" fg:w="2"/><text x="61.0455%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="60.7955%" y="996" width="1.1364%" height="15" fill="rgb(240,119,24)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1006.50"></text></g><g><title><module> (pandas/core/indexing.py:1) (2 samples, 1.14%)</title><rect x="60.7955%" y="1012" width="1.1364%" height="15" fill="rgb(209,194,42)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="60.7955%" y="1028" width="1.1364%" height="15" fill="rgb(247,200,46)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="60.7955%" y="1044" width="1.1364%" height="15" fill="rgb(218,76,16)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="60.7955%" y="1060" width="1.1364%" height="15" fill="rgb(225,21,48)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="60.7955%" y="1076" width="1.1364%" height="15" fill="rgb(239,223,50)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="60.7955%" y="1092" width="1.1364%" height="15" fill="rgb(244,45,21)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1102.50"></text></g><g><title><module> (pandas/core/indexes/api.py:1) (2 samples, 1.14%)</title><rect x="60.7955%" y="1108" width="1.1364%" height="15" fill="rgb(232,33,43)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="60.7955%" y="1124" width="1.1364%" height="15" fill="rgb(209,8,3)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="60.7955%" y="1140" width="1.1364%" height="15" fill="rgb(214,25,53)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="60.7955%" y="1156" width="1.1364%" height="15" fill="rgb(254,186,54)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="60.7955%" y="1172" width="1.1364%" height="15" fill="rgb(208,174,49)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="60.7955%" y="1188" width="1.1364%" height="15" fill="rgb(233,191,51)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1198.50"></text></g><g><title><module> (pandas/core/indexes/period.py:1) (2 samples, 1.14%)</title><rect x="60.7955%" y="1204" width="1.1364%" height="15" fill="rgb(222,134,10)" fg:x="107" fg:w="2"/><text x="61.0455%" y="1214.50"></text></g><g><title>PeriodIndex (pandas/core/indexes/period.py:77) (1 samples, 0.57%)</title><rect x="61.3636%" y="1220" width="0.5682%" height="15" fill="rgb(230,226,20)" fg:x="108" fg:w="1"/><text x="61.6136%" y="1230.50"></text></g><g><title>decorator (pandas/util/_decorators.py:363) (1 samples, 0.57%)</title><rect x="61.3636%" y="1236" width="0.5682%" height="15" fill="rgb(251,111,25)" fg:x="108" fg:w="1"/><text x="61.6136%" y="1246.50"></text></g><g><title><listcomp> (pandas/util/_decorators.py:387) (1 samples, 0.57%)</title><rect x="61.3636%" y="1252" width="0.5682%" height="15" fill="rgb(224,40,46)" fg:x="108" fg:w="1"/><text x="61.6136%" y="1262.50"></text></g><g><title>dedent (textwrap.py:414) (1 samples, 0.57%)</title><rect x="61.3636%" y="1268" width="0.5682%" height="15" fill="rgb(236,108,47)" fg:x="108" fg:w="1"/><text x="61.6136%" y="1278.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="61.9318%" y="420" width="0.5682%" height="15" fill="rgb(234,93,0)" fg:x="109" fg:w="1"/><text x="62.1818%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="61.9318%" y="436" width="0.5682%" height="15" fill="rgb(224,213,32)" fg:x="109" fg:w="1"/><text x="62.1818%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="61.9318%" y="452" width="0.5682%" height="15" fill="rgb(251,11,48)" fg:x="109" fg:w="1"/><text x="62.1818%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="61.9318%" y="468" width="0.5682%" height="15" fill="rgb(236,173,5)" fg:x="109" fg:w="1"/><text x="62.1818%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="61.9318%" y="484" width="0.5682%" height="15" fill="rgb(230,95,12)" fg:x="109" fg:w="1"/><text x="62.1818%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="61.9318%" y="500" width="0.5682%" height="15" fill="rgb(232,209,1)" fg:x="109" fg:w="1"/><text x="62.1818%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="61.9318%" y="516" width="0.5682%" height="15" fill="rgb(232,6,1)" fg:x="109" fg:w="1"/><text x="62.1818%" y="526.50"></text></g><g><title><module> (pandas/api/__init__.py:1) (1 samples, 0.57%)</title><rect x="61.9318%" y="532" width="0.5682%" height="15" fill="rgb(210,224,50)" fg:x="109" fg:w="1"/><text x="62.1818%" y="542.50"></text></g><g><title><module> (pandas/__init__.py:1) (37 samples, 21.02%)</title><rect x="42.0455%" y="404" width="21.0227%" height="15" fill="rgb(228,127,35)" fg:x="74" fg:w="37"/><text x="42.2955%" y="414.50"><module> (pandas/__init__.py:1)</text></g><g><title>_lock_unlock_module (<frozen importlib._bootstrap>:203) (1 samples, 0.57%)</title><rect x="62.5000%" y="420" width="0.5682%" height="15" fill="rgb(245,102,45)" fg:x="110" fg:w="1"/><text x="62.7500%" y="430.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (56 samples, 31.82%)</title><rect x="32.3864%" y="388" width="31.8182%" height="15" fill="rgb(214,1,49)" fg:x="57" fg:w="56"/><text x="32.6364%" y="398.50">_call_with_frames_removed (<frozen importlib._boots..</text></g><g><title><module> (xarray/core/coordinates.py:1) (2 samples, 1.14%)</title><rect x="63.0682%" y="404" width="1.1364%" height="15" fill="rgb(226,163,40)" fg:x="111" fg:w="2"/><text x="63.3182%" y="414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="63.0682%" y="420" width="1.1364%" height="15" fill="rgb(239,212,28)" fg:x="111" fg:w="2"/><text x="63.3182%" y="430.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="63.0682%" y="436" width="1.1364%" height="15" fill="rgb(220,20,13)" fg:x="111" fg:w="2"/><text x="63.3182%" y="446.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="63.0682%" y="452" width="1.1364%" height="15" fill="rgb(210,164,35)" fg:x="111" fg:w="2"/><text x="63.3182%" y="462.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="63.0682%" y="468" width="1.1364%" height="15" fill="rgb(248,109,41)" fg:x="111" fg:w="2"/><text x="63.3182%" y="478.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="63.0682%" y="484" width="1.1364%" height="15" fill="rgb(238,23,50)" fg:x="111" fg:w="2"/><text x="63.3182%" y="494.50"></text></g><g><title><module> (xarray/core/alignment.py:1) (2 samples, 1.14%)</title><rect x="63.0682%" y="500" width="1.1364%" height="15" fill="rgb(211,48,49)" fg:x="111" fg:w="2"/><text x="63.3182%" y="510.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="63.0682%" y="516" width="1.1364%" height="15" fill="rgb(223,36,21)" fg:x="111" fg:w="2"/><text x="63.3182%" y="526.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="63.0682%" y="532" width="1.1364%" height="15" fill="rgb(207,123,46)" fg:x="111" fg:w="2"/><text x="63.3182%" y="542.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="63.0682%" y="548" width="1.1364%" height="15" fill="rgb(240,218,32)" fg:x="111" fg:w="2"/><text x="63.3182%" y="558.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="63.0682%" y="564" width="1.1364%" height="15" fill="rgb(252,5,43)" fg:x="111" fg:w="2"/><text x="63.3182%" y="574.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="63.0682%" y="580" width="1.1364%" height="15" fill="rgb(252,84,19)" fg:x="111" fg:w="2"/><text x="63.3182%" y="590.50"></text></g><g><title><module> (xarray/core/variable.py:1) (2 samples, 1.14%)</title><rect x="63.0682%" y="596" width="1.1364%" height="15" fill="rgb(243,152,39)" fg:x="111" fg:w="2"/><text x="63.3182%" y="606.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="63.6364%" y="612" width="0.5682%" height="15" fill="rgb(234,160,15)" fg:x="112" fg:w="1"/><text x="63.8864%" y="622.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="63.6364%" y="628" width="0.5682%" height="15" fill="rgb(237,34,20)" fg:x="112" fg:w="1"/><text x="63.8864%" y="638.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="63.6364%" y="644" width="0.5682%" height="15" fill="rgb(229,97,13)" fg:x="112" fg:w="1"/><text x="63.8864%" y="654.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="63.6364%" y="660" width="0.5682%" height="15" fill="rgb(234,71,50)" fg:x="112" fg:w="1"/><text x="63.8864%" y="670.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="63.6364%" y="676" width="0.5682%" height="15" fill="rgb(253,155,4)" fg:x="112" fg:w="1"/><text x="63.8864%" y="686.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="63.6364%" y="692" width="0.5682%" height="15" fill="rgb(222,185,37)" fg:x="112" fg:w="1"/><text x="63.8864%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (57 samples, 32.39%)</title><rect x="32.3864%" y="324" width="32.3864%" height="15" fill="rgb(251,177,13)" fg:x="57" fg:w="57"/><text x="32.6364%" y="334.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (57 samples, 32.39%)</title><rect x="32.3864%" y="340" width="32.3864%" height="15" fill="rgb(250,179,40)" fg:x="57" fg:w="57"/><text x="32.6364%" y="350.50">_find_and_load_unlocked (<frozen importlib._bootstra..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (57 samples, 32.39%)</title><rect x="32.3864%" y="356" width="32.3864%" height="15" fill="rgb(242,44,2)" fg:x="57" fg:w="57"/><text x="32.6364%" y="366.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (57 samples, 32.39%)</title><rect x="32.3864%" y="372" width="32.3864%" height="15" fill="rgb(216,177,13)" fg:x="57" fg:w="57"/><text x="32.6364%" y="382.50">exec_module (<frozen importlib._bootstrap_external>:..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="64.2045%" y="388" width="0.5682%" height="15" fill="rgb(216,106,43)" fg:x="113" fg:w="1"/><text x="64.4545%" y="398.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="64.2045%" y="404" width="0.5682%" height="15" fill="rgb(216,183,2)" fg:x="113" fg:w="1"/><text x="64.4545%" y="414.50"></text></g><g><title><module> (xarray/testing.py:1) (58 samples, 32.95%)</title><rect x="32.3864%" y="308" width="32.9545%" height="15" fill="rgb(249,75,3)" fg:x="57" fg:w="58"/><text x="32.6364%" y="318.50"><module> (xarray/testing.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="64.7727%" y="324" width="0.5682%" height="15" fill="rgb(219,67,39)" fg:x="114" fg:w="1"/><text x="65.0227%" y="334.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="64.7727%" y="340" width="0.5682%" height="15" fill="rgb(253,228,2)" fg:x="114" fg:w="1"/><text x="65.0227%" y="350.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="64.7727%" y="356" width="0.5682%" height="15" fill="rgb(235,138,27)" fg:x="114" fg:w="1"/><text x="65.0227%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="64.7727%" y="372" width="0.5682%" height="15" fill="rgb(236,97,51)" fg:x="114" fg:w="1"/><text x="65.0227%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="64.7727%" y="388" width="0.5682%" height="15" fill="rgb(240,80,30)" fg:x="114" fg:w="1"/><text x="65.0227%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="64.7727%" y="404" width="0.5682%" height="15" fill="rgb(230,178,19)" fg:x="114" fg:w="1"/><text x="65.0227%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="64.7727%" y="420" width="0.5682%" height="15" fill="rgb(210,190,27)" fg:x="114" fg:w="1"/><text x="65.0227%" y="430.50"></text></g><g><title><module> (xarray/core/formatting.py:1) (1 samples, 0.57%)</title><rect x="64.7727%" y="436" width="0.5682%" height="15" fill="rgb(222,107,31)" fg:x="114" fg:w="1"/><text x="65.0227%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="64.7727%" y="452" width="0.5682%" height="15" fill="rgb(216,127,34)" fg:x="114" fg:w="1"/><text x="65.0227%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="64.7727%" y="468" width="0.5682%" height="15" fill="rgb(234,116,52)" fg:x="114" fg:w="1"/><text x="65.0227%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="64.7727%" y="484" width="0.5682%" height="15" fill="rgb(222,124,15)" fg:x="114" fg:w="1"/><text x="65.0227%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="64.7727%" y="500" width="0.5682%" height="15" fill="rgb(231,179,28)" fg:x="114" fg:w="1"/><text x="65.0227%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="64.7727%" y="516" width="0.5682%" height="15" fill="rgb(226,93,45)" fg:x="114" fg:w="1"/><text x="65.0227%" y="526.50"></text></g><g><title><module> (xarray/core/indexing.py:1) (1 samples, 0.57%)</title><rect x="64.7727%" y="532" width="0.5682%" height="15" fill="rgb(215,8,51)" fg:x="114" fg:w="1"/><text x="65.0227%" y="542.50"></text></g><g><title>dataclass (dataclasses.py:998) (1 samples, 0.57%)</title><rect x="64.7727%" y="548" width="0.5682%" height="15" fill="rgb(223,106,5)" fg:x="114" fg:w="1"/><text x="65.0227%" y="558.50"></text></g><g><title>wrap (dataclasses.py:1012) (1 samples, 0.57%)</title><rect x="64.7727%" y="564" width="0.5682%" height="15" fill="rgb(250,191,5)" fg:x="114" fg:w="1"/><text x="65.0227%" y="574.50"></text></g><g><title>_process_class (dataclasses.py:809) (1 samples, 0.57%)</title><rect x="64.7727%" y="580" width="0.5682%" height="15" fill="rgb(242,132,44)" fg:x="114" fg:w="1"/><text x="65.0227%" y="590.50"></text></g><g><title>_repr_fn (dataclasses.py:539) (1 samples, 0.57%)</title><rect x="64.7727%" y="596" width="0.5682%" height="15" fill="rgb(251,152,29)" fg:x="114" fg:w="1"/><text x="65.0227%" y="606.50"></text></g><g><title>_create_fn (dataclasses.py:377) (1 samples, 0.57%)</title><rect x="64.7727%" y="612" width="0.5682%" height="15" fill="rgb(218,179,5)" fg:x="114" fg:w="1"/><text x="65.0227%" y="622.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="65.3409%" y="500" width="0.5682%" height="15" fill="rgb(227,67,19)" fg:x="115" fg:w="1"/><text x="65.5909%" y="510.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="65.3409%" y="516" width="0.5682%" height="15" fill="rgb(233,119,31)" fg:x="115" fg:w="1"/><text x="65.5909%" y="526.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="65.3409%" y="532" width="0.5682%" height="15" fill="rgb(241,120,22)" fg:x="115" fg:w="1"/><text x="65.5909%" y="542.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.57%)</title><rect x="65.3409%" y="548" width="0.5682%" height="15" fill="rgb(224,102,30)" fg:x="115" fg:w="1"/><text x="65.5909%" y="558.50"></text></g><g><title>_path_isfile (<frozen importlib._bootstrap_external>:154) (1 samples, 0.57%)</title><rect x="65.3409%" y="564" width="0.5682%" height="15" fill="rgb(210,164,37)" fg:x="115" fg:w="1"/><text x="65.5909%" y="574.50"></text></g><g><title>_path_is_mode_type (<frozen importlib._bootstrap_external>:145) (1 samples, 0.57%)</title><rect x="65.3409%" y="580" width="0.5682%" height="15" fill="rgb(226,191,16)" fg:x="115" fg:w="1"/><text x="65.5909%" y="590.50"></text></g><g><title>_path_stat (<frozen importlib._bootstrap_external>:135) (1 samples, 0.57%)</title><rect x="65.3409%" y="596" width="0.5682%" height="15" fill="rgb(214,40,45)" fg:x="115" fg:w="1"/><text x="65.5909%" y="606.50"></text></g><g><title><module> (dask/base.py:1) (1 samples, 0.57%)</title><rect x="65.9091%" y="884" width="0.5682%" height="15" fill="rgb(244,29,26)" fg:x="116" fg:w="1"/><text x="66.1591%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="65.9091%" y="900" width="0.5682%" height="15" fill="rgb(216,16,5)" fg:x="116" fg:w="1"/><text x="66.1591%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="65.9091%" y="916" width="0.5682%" height="15" fill="rgb(249,76,35)" fg:x="116" fg:w="1"/><text x="66.1591%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="65.9091%" y="932" width="0.5682%" height="15" fill="rgb(207,11,44)" fg:x="116" fg:w="1"/><text x="66.1591%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="65.9091%" y="948" width="0.5682%" height="15" fill="rgb(228,190,49)" fg:x="116" fg:w="1"/><text x="66.1591%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="964" width="0.5682%" height="15" fill="rgb(214,173,12)" fg:x="116" fg:w="1"/><text x="66.1591%" y="974.50"></text></g><g><title><module> (dask/_compatibility.py:1) (1 samples, 0.57%)</title><rect x="65.9091%" y="980" width="0.5682%" height="15" fill="rgb(218,26,35)" fg:x="116" fg:w="1"/><text x="66.1591%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="65.9091%" y="996" width="0.5682%" height="15" fill="rgb(220,200,19)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="65.9091%" y="1012" width="0.5682%" height="15" fill="rgb(239,95,49)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="65.9091%" y="1028" width="0.5682%" height="15" fill="rgb(235,85,53)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="65.9091%" y="1044" width="0.5682%" height="15" fill="rgb(233,133,31)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1060" width="0.5682%" height="15" fill="rgb(218,25,20)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1070.50"></text></g><g><title><module> (importlib_metadata/__init__.py:1) (1 samples, 0.57%)</title><rect x="65.9091%" y="1076" width="0.5682%" height="15" fill="rgb(252,210,38)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1086.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="65.9091%" y="1092" width="0.5682%" height="15" fill="rgb(242,134,21)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1102.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1108" width="0.5682%" height="15" fill="rgb(213,28,48)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="65.9091%" y="1124" width="0.5682%" height="15" fill="rgb(250,196,2)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="65.9091%" y="1140" width="0.5682%" height="15" fill="rgb(227,5,17)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="65.9091%" y="1156" width="0.5682%" height="15" fill="rgb(221,226,24)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="65.9091%" y="1172" width="0.5682%" height="15" fill="rgb(211,5,48)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1188" width="0.5682%" height="15" fill="rgb(219,150,6)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1198.50"></text></g><g><title><module> (importlib_metadata/_adapters.py:1) (1 samples, 0.57%)</title><rect x="65.9091%" y="1204" width="0.5682%" height="15" fill="rgb(251,46,16)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1214.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="65.9091%" y="1220" width="0.5682%" height="15" fill="rgb(220,204,40)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1230.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="65.9091%" y="1236" width="0.5682%" height="15" fill="rgb(211,85,2)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1246.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="65.9091%" y="1252" width="0.5682%" height="15" fill="rgb(229,17,7)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1262.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="65.9091%" y="1268" width="0.5682%" height="15" fill="rgb(239,72,28)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1278.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1284" width="0.5682%" height="15" fill="rgb(230,47,54)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1294.50"></text></g><g><title><module> (email/message.py:5) (1 samples, 0.57%)</title><rect x="65.9091%" y="1300" width="0.5682%" height="15" fill="rgb(214,50,8)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1310.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="65.9091%" y="1316" width="0.5682%" height="15" fill="rgb(216,198,43)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1326.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1332" width="0.5682%" height="15" fill="rgb(234,20,35)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1342.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="65.9091%" y="1348" width="0.5682%" height="15" fill="rgb(254,45,19)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1358.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="65.9091%" y="1364" width="0.5682%" height="15" fill="rgb(219,14,44)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1374.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="65.9091%" y="1380" width="0.5682%" height="15" fill="rgb(217,220,26)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1390.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="65.9091%" y="1396" width="0.5682%" height="15" fill="rgb(213,158,28)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1406.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="65.9091%" y="1412" width="0.5682%" height="15" fill="rgb(252,51,52)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1422.50"></text></g><g><title><module> (email/utils.py:5) (1 samples, 0.57%)</title><rect x="65.9091%" y="1428" width="0.5682%" height="15" fill="rgb(246,89,16)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1438.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.57%)</title><rect x="65.9091%" y="1444" width="0.5682%" height="15" fill="rgb(216,158,49)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1454.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="65.9091%" y="1460" width="0.5682%" height="15" fill="rgb(236,107,19)" fg:x="116" fg:w="1"/><text x="66.1591%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="65.9091%" y="804" width="1.1364%" height="15" fill="rgb(228,185,30)" fg:x="116" fg:w="2"/><text x="66.1591%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="65.9091%" y="820" width="1.1364%" height="15" fill="rgb(246,134,8)" fg:x="116" fg:w="2"/><text x="66.1591%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="65.9091%" y="836" width="1.1364%" height="15" fill="rgb(214,143,50)" fg:x="116" fg:w="2"/><text x="66.1591%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="65.9091%" y="852" width="1.1364%" height="15" fill="rgb(228,75,8)" fg:x="116" fg:w="2"/><text x="66.1591%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="65.9091%" y="868" width="1.1364%" height="15" fill="rgb(207,175,4)" fg:x="116" fg:w="2"/><text x="66.1591%" y="878.50"></text></g><g><title><module> (dask/delayed.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="884" width="0.5682%" height="15" fill="rgb(205,108,24)" fg:x="117" fg:w="1"/><text x="66.7273%" y="894.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="900" width="0.5682%" height="15" fill="rgb(244,120,49)" fg:x="117" fg:w="1"/><text x="66.7273%" y="910.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="916" width="0.5682%" height="15" fill="rgb(223,47,38)" fg:x="117" fg:w="1"/><text x="66.7273%" y="926.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="932" width="0.5682%" height="15" fill="rgb(229,179,11)" fg:x="117" fg:w="1"/><text x="66.7273%" y="942.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="948" width="0.5682%" height="15" fill="rgb(231,122,1)" fg:x="117" fg:w="1"/><text x="66.7273%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="964" width="0.5682%" height="15" fill="rgb(245,119,9)" fg:x="117" fg:w="1"/><text x="66.7273%" y="974.50"></text></g><g><title><module> (dask/highlevelgraph.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="980" width="0.5682%" height="15" fill="rgb(241,163,25)" fg:x="117" fg:w="1"/><text x="66.7273%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="996" width="0.5682%" height="15" fill="rgb(217,214,3)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1012" width="0.5682%" height="15" fill="rgb(240,86,28)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1028" width="0.5682%" height="15" fill="rgb(215,47,9)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1044" width="0.5682%" height="15" fill="rgb(252,25,45)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1060" width="0.5682%" height="15" fill="rgb(251,164,9)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1070.50"></text></g><g><title><module> (dask/widgets/__init__.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1076" width="0.5682%" height="15" fill="rgb(233,194,0)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1086.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1092" width="0.5682%" height="15" fill="rgb(249,111,24)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1102.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1108" width="0.5682%" height="15" fill="rgb(250,223,3)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1118.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1124" width="0.5682%" height="15" fill="rgb(236,178,37)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1134.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1140" width="0.5682%" height="15" fill="rgb(241,158,50)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1150.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1156" width="0.5682%" height="15" fill="rgb(213,121,41)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1166.50"></text></g><g><title><module> (dask/widgets/widgets.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1172" width="0.5682%" height="15" fill="rgb(240,92,3)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1182.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1188" width="0.5682%" height="15" fill="rgb(205,123,3)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1204" width="0.5682%" height="15" fill="rgb(205,97,47)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1214.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1220" width="0.5682%" height="15" fill="rgb(247,152,14)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1236" width="0.5682%" height="15" fill="rgb(248,195,53)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1246.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1252" width="0.5682%" height="15" fill="rgb(226,201,16)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1262.50"></text></g><g><title><module> (jinja2/__init__.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1268" width="0.5682%" height="15" fill="rgb(205,98,0)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1278.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1284" width="0.5682%" height="15" fill="rgb(214,191,48)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1300" width="0.5682%" height="15" fill="rgb(237,112,39)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1310.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1316" width="0.5682%" height="15" fill="rgb(247,203,27)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1326.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1332" width="0.5682%" height="15" fill="rgb(235,124,28)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1342.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1348" width="0.5682%" height="15" fill="rgb(208,207,46)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1358.50"></text></g><g><title><module> (jinja2/environment.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1364" width="0.5682%" height="15" fill="rgb(234,176,4)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1374.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1380" width="0.5682%" height="15" fill="rgb(230,133,28)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1396" width="0.5682%" height="15" fill="rgb(211,137,40)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1406.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1412" width="0.5682%" height="15" fill="rgb(254,35,13)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1422.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1428" width="0.5682%" height="15" fill="rgb(225,49,51)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1438.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1444" width="0.5682%" height="15" fill="rgb(251,10,15)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1454.50"></text></g><g><title><module> (jinja2/defaults.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1460" width="0.5682%" height="15" fill="rgb(228,207,15)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1470.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1476" width="0.5682%" height="15" fill="rgb(241,99,19)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1492" width="0.5682%" height="15" fill="rgb(207,104,49)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1502.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1508" width="0.5682%" height="15" fill="rgb(234,99,18)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1518.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1524" width="0.5682%" height="15" fill="rgb(213,191,49)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1534.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1540" width="0.5682%" height="15" fill="rgb(210,226,19)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1550.50"></text></g><g><title><module> (jinja2/filters.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1556" width="0.5682%" height="15" fill="rgb(229,97,18)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1566.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="66.4773%" y="1572" width="0.5682%" height="15" fill="rgb(211,167,15)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1582.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="66.4773%" y="1588" width="0.5682%" height="15" fill="rgb(210,169,34)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1598.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="66.4773%" y="1604" width="0.5682%" height="15" fill="rgb(241,121,31)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1614.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="66.4773%" y="1620" width="0.5682%" height="15" fill="rgb(232,40,11)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1630.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="66.4773%" y="1636" width="0.5682%" height="15" fill="rgb(205,86,26)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1646.50"></text></g><g><title><module> (jinja2/async_utils.py:1) (1 samples, 0.57%)</title><rect x="66.4773%" y="1652" width="0.5682%" height="15" fill="rgb(231,126,28)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1662.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.57%)</title><rect x="66.4773%" y="1668" width="0.5682%" height="15" fill="rgb(219,221,18)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1678.50"></text></g><g><title>__getitem__ (typing.py:832) (1 samples, 0.57%)</title><rect x="66.4773%" y="1684" width="0.5682%" height="15" fill="rgb(211,40,0)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1694.50"></text></g><g><title><genexpr> (typing.py:837) (1 samples, 0.57%)</title><rect x="66.4773%" y="1700" width="0.5682%" height="15" fill="rgb(239,85,43)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1710.50"></text></g><g><title>_type_check (typing.py:137) (1 samples, 0.57%)</title><rect x="66.4773%" y="1716" width="0.5682%" height="15" fill="rgb(231,55,21)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1726.50"></text></g><g><title>__eq__ (typing.py:565) (1 samples, 0.57%)</title><rect x="66.4773%" y="1732" width="0.5682%" height="15" fill="rgb(225,184,43)" fg:x="117" fg:w="1"/><text x="66.7273%" y="1742.50"></text></g><g><title><module> (yaml/dumper.py:2) (2 samples, 1.14%)</title><rect x="67.0455%" y="1108" width="1.1364%" height="15" fill="rgb(251,158,41)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="67.0455%" y="1124" width="1.1364%" height="15" fill="rgb(234,159,37)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="67.0455%" y="1140" width="1.1364%" height="15" fill="rgb(216,204,22)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="67.0455%" y="1156" width="1.1364%" height="15" fill="rgb(214,17,3)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="67.0455%" y="1172" width="1.1364%" height="15" fill="rgb(212,111,17)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1182.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 1.14%)</title><rect x="67.0455%" y="1188" width="1.1364%" height="15" fill="rgb(221,157,24)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1198.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (2 samples, 1.14%)</title><rect x="67.0455%" y="1204" width="1.1364%" height="15" fill="rgb(252,16,13)" fg:x="118" fg:w="2"/><text x="67.2955%" y="1214.50"></text></g><g><title><module> (dask/config.py:1) (3 samples, 1.70%)</title><rect x="67.0455%" y="916" width="1.7045%" height="15" fill="rgb(221,62,2)" fg:x="118" fg:w="3"/><text x="67.2955%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="67.0455%" y="932" width="1.7045%" height="15" fill="rgb(247,87,22)" fg:x="118" fg:w="3"/><text x="67.2955%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="67.0455%" y="948" width="1.7045%" height="15" fill="rgb(215,73,9)" fg:x="118" fg:w="3"/><text x="67.2955%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="67.0455%" y="964" width="1.7045%" height="15" fill="rgb(207,175,33)" fg:x="118" fg:w="3"/><text x="67.2955%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="67.0455%" y="980" width="1.7045%" height="15" fill="rgb(243,129,54)" fg:x="118" fg:w="3"/><text x="67.2955%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="67.0455%" y="996" width="1.7045%" height="15" fill="rgb(227,119,45)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1006.50"></text></g><g><title><module> (yaml/__init__.py:2) (3 samples, 1.70%)</title><rect x="67.0455%" y="1012" width="1.7045%" height="15" fill="rgb(205,109,36)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="67.0455%" y="1028" width="1.7045%" height="15" fill="rgb(205,6,39)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="67.0455%" y="1044" width="1.7045%" height="15" fill="rgb(221,32,16)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="67.0455%" y="1060" width="1.7045%" height="15" fill="rgb(228,144,50)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="67.0455%" y="1076" width="1.7045%" height="15" fill="rgb(229,201,53)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="67.0455%" y="1092" width="1.7045%" height="15" fill="rgb(249,153,27)" fg:x="118" fg:w="3"/><text x="67.2955%" y="1102.50"></text></g><g><title><module> (yaml/loader.py:2) (1 samples, 0.57%)</title><rect x="68.1818%" y="1108" width="0.5682%" height="15" fill="rgb(227,106,25)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1118.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="68.1818%" y="1124" width="0.5682%" height="15" fill="rgb(230,65,29)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="68.1818%" y="1140" width="0.5682%" height="15" fill="rgb(221,57,46)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1150.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="68.1818%" y="1156" width="0.5682%" height="15" fill="rgb(229,161,17)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1166.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="68.1818%" y="1172" width="0.5682%" height="15" fill="rgb(222,213,11)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1182.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="68.1818%" y="1188" width="0.5682%" height="15" fill="rgb(235,35,13)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1198.50"></text></g><g><title><module> (yaml/reader.py:18) (1 samples, 0.57%)</title><rect x="68.1818%" y="1204" width="0.5682%" height="15" fill="rgb(233,158,34)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1214.50"></text></g><g><title>Reader (yaml/reader.py:45) (1 samples, 0.57%)</title><rect x="68.1818%" y="1220" width="0.5682%" height="15" fill="rgb(215,151,48)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1230.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.57%)</title><rect x="68.1818%" y="1236" width="0.5682%" height="15" fill="rgb(229,84,14)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1246.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="68.1818%" y="1252" width="0.5682%" height="15" fill="rgb(229,68,14)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1262.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.57%)</title><rect x="68.1818%" y="1268" width="0.5682%" height="15" fill="rgb(243,106,26)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1278.50"></text></g><g><title>_code (sre_compile.py:622) (1 samples, 0.57%)</title><rect x="68.1818%" y="1284" width="0.5682%" height="15" fill="rgb(206,45,38)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1294.50"></text></g><g><title>_compile (sre_compile.py:87) (1 samples, 0.57%)</title><rect x="68.1818%" y="1300" width="0.5682%" height="15" fill="rgb(226,6,15)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1310.50"></text></g><g><title>_optimize_charset (sre_compile.py:292) (1 samples, 0.57%)</title><rect x="68.1818%" y="1316" width="0.5682%" height="15" fill="rgb(232,22,54)" fg:x="120" fg:w="1"/><text x="68.4318%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (103 samples, 58.52%)</title><rect x="10.7955%" y="100" width="58.5227%" height="15" fill="rgb(229,222,32)" fg:x="19" fg:w="103"/><text x="11.0455%" y="110.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (103 samples, 58.52%)</title><rect x="10.7955%" y="116" width="58.5227%" height="15" fill="rgb(228,62,29)" fg:x="19" fg:w="103"/><text x="11.0455%" y="126.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (103 samples, 58.52%)</title><rect x="10.7955%" y="132" width="58.5227%" height="15" fill="rgb(251,103,34)" fg:x="19" fg:w="103"/><text x="11.0455%" y="142.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (103 samples, 58.52%)</title><rect x="10.7955%" y="148" width="58.5227%" height="15" fill="rgb(233,12,30)" fg:x="19" fg:w="103"/><text x="11.0455%" y="158.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (103 samples, 58.52%)</title><rect x="10.7955%" y="164" width="58.5227%" height="15" fill="rgb(238,52,0)" fg:x="19" fg:w="103"/><text x="11.0455%" y="174.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/__init__.py:1) (65 samples, 36.93%)</title><rect x="32.3864%" y="180" width="36.9318%" height="15" fill="rgb(223,98,5)" fg:x="57" fg:w="65"/><text x="32.6364%" y="190.50"><module> (xarray/__init__.py:1)</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (65 samples, 36.93%)</title><rect x="32.3864%" y="196" width="36.9318%" height="15" fill="rgb(228,75,37)" fg:x="57" fg:w="65"/><text x="32.6364%" y="206.50">_handle_fromlist (<frozen importlib._bootstrap>:1033)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (65 samples, 36.93%)</title><rect x="32.3864%" y="212" width="36.9318%" height="15" fill="rgb(205,115,49)" fg:x="57" fg:w="65"/><text x="32.6364%" y="222.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (65 samples, 36.93%)</title><rect x="32.3864%" y="228" width="36.9318%" height="15" fill="rgb(250,154,43)" fg:x="57" fg:w="65"/><text x="32.6364%" y="238.50">_find_and_load (<frozen importlib._bootstrap>:1002)</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (65 samples, 36.93%)</title><rect x="32.3864%" y="244" width="36.9318%" height="15" fill="rgb(226,43,29)" fg:x="57" fg:w="65"/><text x="32.6364%" y="254.50">_find_and_load_unlocked (<frozen importlib._bootstrap>:967)</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (65 samples, 36.93%)</title><rect x="32.3864%" y="260" width="36.9318%" height="15" fill="rgb(249,228,39)" fg:x="57" fg:w="65"/><text x="32.6364%" y="270.50">_load_unlocked (<frozen importlib._bootstrap>:659)</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (65 samples, 36.93%)</title><rect x="32.3864%" y="276" width="36.9318%" height="15" fill="rgb(216,79,43)" fg:x="57" fg:w="65"/><text x="32.6364%" y="286.50">exec_module (<frozen importlib._bootstrap_external>:844)</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (65 samples, 36.93%)</title><rect x="32.3864%" y="292" width="36.9318%" height="15" fill="rgb(228,95,12)" fg:x="57" fg:w="65"/><text x="32.6364%" y="302.50">_call_with_frames_removed (<frozen importlib._bootstrap>:220)</text></g><g><title><module> (xarray/tutorial.py:1) (7 samples, 3.98%)</title><rect x="65.3409%" y="308" width="3.9773%" height="15" fill="rgb(249,221,15)" fg:x="115" fg:w="7"/><text x="65.5909%" y="318.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="65.3409%" y="324" width="3.9773%" height="15" fill="rgb(233,34,13)" fg:x="115" fg:w="7"/><text x="65.5909%" y="334.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="65.3409%" y="340" width="3.9773%" height="15" fill="rgb(214,103,39)" fg:x="115" fg:w="7"/><text x="65.5909%" y="350.50">_fin..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="65.3409%" y="356" width="3.9773%" height="15" fill="rgb(251,126,39)" fg:x="115" fg:w="7"/><text x="65.5909%" y="366.50">_cal..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="65.3409%" y="372" width="3.9773%" height="15" fill="rgb(214,216,36)" fg:x="115" fg:w="7"/><text x="65.5909%" y="382.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="65.3409%" y="388" width="3.9773%" height="15" fill="rgb(220,221,8)" fg:x="115" fg:w="7"/><text x="65.5909%" y="398.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (7 samples, 3.98%)</title><rect x="65.3409%" y="404" width="3.9773%" height="15" fill="rgb(240,216,3)" fg:x="115" fg:w="7"/><text x="65.5909%" y="414.50">_loa..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (7 samples, 3.98%)</title><rect x="65.3409%" y="420" width="3.9773%" height="15" fill="rgb(232,218,17)" fg:x="115" fg:w="7"/><text x="65.5909%" y="430.50">exec..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (7 samples, 3.98%)</title><rect x="65.3409%" y="436" width="3.9773%" height="15" fill="rgb(229,163,45)" fg:x="115" fg:w="7"/><text x="65.5909%" y="446.50">_cal..</text></g><g><title><module> (xarray/backends/__init__.py:1) (7 samples, 3.98%)</title><rect x="65.3409%" y="452" width="3.9773%" height="15" fill="rgb(231,110,42)" fg:x="115" fg:w="7"/><text x="65.5909%" y="462.50"><mod..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (7 samples, 3.98%)</title><rect x="65.3409%" y="468" width="3.9773%" height="15" fill="rgb(208,170,48)" fg:x="115" fg:w="7"/><text x="65.5909%" y="478.50">_fin..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (7 samples, 3.98%)</title><rect x="65.3409%" y="484" width="3.9773%" height="15" fill="rgb(239,116,25)" fg:x="115" fg:w="7"/><text x="65.5909%" y="494.50">_fin..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="65.9091%" y="500" width="3.4091%" height="15" fill="rgb(219,200,50)" fg:x="116" fg:w="6"/><text x="66.1591%" y="510.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="65.9091%" y="516" width="3.4091%" height="15" fill="rgb(245,200,0)" fg:x="116" fg:w="6"/><text x="66.1591%" y="526.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="65.9091%" y="532" width="3.4091%" height="15" fill="rgb(245,119,33)" fg:x="116" fg:w="6"/><text x="66.1591%" y="542.50">_ca..</text></g><g><title><module> (xarray/backends/file_manager.py:1) (6 samples, 3.41%)</title><rect x="65.9091%" y="548" width="3.4091%" height="15" fill="rgb(231,125,12)" fg:x="116" fg:w="6"/><text x="66.1591%" y="558.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="65.9091%" y="564" width="3.4091%" height="15" fill="rgb(216,96,41)" fg:x="116" fg:w="6"/><text x="66.1591%" y="574.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="65.9091%" y="580" width="3.4091%" height="15" fill="rgb(248,43,45)" fg:x="116" fg:w="6"/><text x="66.1591%" y="590.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="65.9091%" y="596" width="3.4091%" height="15" fill="rgb(217,222,7)" fg:x="116" fg:w="6"/><text x="66.1591%" y="606.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="65.9091%" y="612" width="3.4091%" height="15" fill="rgb(233,28,6)" fg:x="116" fg:w="6"/><text x="66.1591%" y="622.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="65.9091%" y="628" width="3.4091%" height="15" fill="rgb(231,218,15)" fg:x="116" fg:w="6"/><text x="66.1591%" y="638.50">_ca..</text></g><g><title><module> (xarray/backends/locks.py:1) (6 samples, 3.41%)</title><rect x="65.9091%" y="644" width="3.4091%" height="15" fill="rgb(226,171,48)" fg:x="116" fg:w="6"/><text x="66.1591%" y="654.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="65.9091%" y="660" width="3.4091%" height="15" fill="rgb(235,201,9)" fg:x="116" fg:w="6"/><text x="66.1591%" y="670.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="65.9091%" y="676" width="3.4091%" height="15" fill="rgb(217,80,15)" fg:x="116" fg:w="6"/><text x="66.1591%" y="686.50">_fi..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="65.9091%" y="692" width="3.4091%" height="15" fill="rgb(219,152,8)" fg:x="116" fg:w="6"/><text x="66.1591%" y="702.50">_ca..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="65.9091%" y="708" width="3.4091%" height="15" fill="rgb(243,107,38)" fg:x="116" fg:w="6"/><text x="66.1591%" y="718.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="65.9091%" y="724" width="3.4091%" height="15" fill="rgb(231,17,5)" fg:x="116" fg:w="6"/><text x="66.1591%" y="734.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="65.9091%" y="740" width="3.4091%" height="15" fill="rgb(209,25,54)" fg:x="116" fg:w="6"/><text x="66.1591%" y="750.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="65.9091%" y="756" width="3.4091%" height="15" fill="rgb(219,0,2)" fg:x="116" fg:w="6"/><text x="66.1591%" y="766.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="65.9091%" y="772" width="3.4091%" height="15" fill="rgb(246,9,5)" fg:x="116" fg:w="6"/><text x="66.1591%" y="782.50">_ca..</text></g><g><title><module> (dask/__init__.py:1) (6 samples, 3.41%)</title><rect x="65.9091%" y="788" width="3.4091%" height="15" fill="rgb(226,159,4)" fg:x="116" fg:w="6"/><text x="66.1591%" y="798.50"><mo..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 2.27%)</title><rect x="67.0455%" y="804" width="2.2727%" height="15" fill="rgb(219,175,34)" fg:x="118" fg:w="4"/><text x="67.2955%" y="814.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="67.0455%" y="820" width="2.2727%" height="15" fill="rgb(236,10,46)" fg:x="118" fg:w="4"/><text x="67.2955%" y="830.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="67.0455%" y="836" width="2.2727%" height="15" fill="rgb(240,211,16)" fg:x="118" fg:w="4"/><text x="67.2955%" y="846.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="67.0455%" y="852" width="2.2727%" height="15" fill="rgb(205,3,43)" fg:x="118" fg:w="4"/><text x="67.2955%" y="862.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="67.0455%" y="868" width="2.2727%" height="15" fill="rgb(245,7,22)" fg:x="118" fg:w="4"/><text x="67.2955%" y="878.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="67.0455%" y="884" width="2.2727%" height="15" fill="rgb(239,132,32)" fg:x="118" fg:w="4"/><text x="67.2955%" y="894.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="67.0455%" y="900" width="2.2727%" height="15" fill="rgb(228,202,34)" fg:x="118" fg:w="4"/><text x="67.2955%" y="910.50">_..</text></g><g><title><module> (dask/datasets.py:1) (1 samples, 0.57%)</title><rect x="68.7500%" y="916" width="0.5682%" height="15" fill="rgb(254,200,22)" fg:x="121" fg:w="1"/><text x="69.0000%" y="926.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="68.7500%" y="932" width="0.5682%" height="15" fill="rgb(219,10,39)" fg:x="121" fg:w="1"/><text x="69.0000%" y="942.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="68.7500%" y="948" width="0.5682%" height="15" fill="rgb(226,210,39)" fg:x="121" fg:w="1"/><text x="69.0000%" y="958.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="68.7500%" y="964" width="0.5682%" height="15" fill="rgb(208,219,16)" fg:x="121" fg:w="1"/><text x="69.0000%" y="974.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="68.7500%" y="980" width="0.5682%" height="15" fill="rgb(216,158,51)" fg:x="121" fg:w="1"/><text x="69.0000%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="68.7500%" y="996" width="0.5682%" height="15" fill="rgb(233,14,44)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1006.50"></text></g><g><title><module> (dask/utils.py:1) (1 samples, 0.57%)</title><rect x="68.7500%" y="1012" width="0.5682%" height="15" fill="rgb(237,97,39)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1022.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="68.7500%" y="1028" width="0.5682%" height="15" fill="rgb(218,198,43)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="68.7500%" y="1044" width="0.5682%" height="15" fill="rgb(231,104,20)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1054.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="68.7500%" y="1060" width="0.5682%" height="15" fill="rgb(254,36,13)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1070.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="68.7500%" y="1076" width="0.5682%" height="15" fill="rgb(248,14,50)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1086.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="68.7500%" y="1092" width="0.5682%" height="15" fill="rgb(217,107,29)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1102.50"></text></g><g><title><module> (tlz/__init__.py:1) (1 samples, 0.57%)</title><rect x="68.7500%" y="1108" width="0.5682%" height="15" fill="rgb(251,169,33)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1118.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="68.7500%" y="1124" width="0.5682%" height="15" fill="rgb(217,108,32)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="68.7500%" y="1140" width="0.5682%" height="15" fill="rgb(219,66,42)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1150.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="68.7500%" y="1156" width="0.5682%" height="15" fill="rgb(206,180,7)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1166.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="68.7500%" y="1172" width="0.5682%" height="15" fill="rgb(208,226,31)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1182.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="68.7500%" y="1188" width="0.5682%" height="15" fill="rgb(218,26,49)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1198.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="68.7500%" y="1204" width="0.5682%" height="15" fill="rgb(233,197,48)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1214.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="68.7500%" y="1220" width="0.5682%" height="15" fill="rgb(252,181,51)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1230.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="68.7500%" y="1236" width="0.5682%" height="15" fill="rgb(253,90,19)" fg:x="121" fg:w="1"/><text x="69.0000%" y="1246.50"></text></g><g><title><module> (distributed/comm/tcp.py:1) (3 samples, 1.70%)</title><rect x="69.8864%" y="756" width="1.7045%" height="15" fill="rgb(215,171,30)" fg:x="123" fg:w="3"/><text x="70.1364%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="69.8864%" y="772" width="1.7045%" height="15" fill="rgb(214,222,9)" fg:x="123" fg:w="3"/><text x="70.1364%" y="782.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (3 samples, 1.70%)</title><rect x="69.8864%" y="788" width="1.7045%" height="15" fill="rgb(223,3,22)" fg:x="123" fg:w="3"/><text x="70.1364%" y="798.50"></text></g><g><title>import_module (importlib/__init__.py:109) (3 samples, 1.70%)</title><rect x="69.8864%" y="804" width="1.7045%" height="15" fill="rgb(225,196,46)" fg:x="123" fg:w="3"/><text x="70.1364%" y="814.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (3 samples, 1.70%)</title><rect x="69.8864%" y="820" width="1.7045%" height="15" fill="rgb(209,110,37)" fg:x="123" fg:w="3"/><text x="70.1364%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="69.8864%" y="836" width="1.7045%" height="15" fill="rgb(249,89,12)" fg:x="123" fg:w="3"/><text x="70.1364%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="69.8864%" y="852" width="1.7045%" height="15" fill="rgb(226,27,33)" fg:x="123" fg:w="3"/><text x="70.1364%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="69.8864%" y="868" width="1.7045%" height="15" fill="rgb(213,82,22)" fg:x="123" fg:w="3"/><text x="70.1364%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="69.8864%" y="884" width="1.7045%" height="15" fill="rgb(248,140,0)" fg:x="123" fg:w="3"/><text x="70.1364%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="69.8864%" y="900" width="1.7045%" height="15" fill="rgb(228,106,3)" fg:x="123" fg:w="3"/><text x="70.1364%" y="910.50"></text></g><g><title><module> (tornado/netutil.py:16) (3 samples, 1.70%)</title><rect x="69.8864%" y="916" width="1.7045%" height="15" fill="rgb(209,23,37)" fg:x="123" fg:w="3"/><text x="70.1364%" y="926.50"></text></g><g><title>create_default_context (ssl.py:724) (3 samples, 1.70%)</title><rect x="69.8864%" y="932" width="1.7045%" height="15" fill="rgb(241,93,50)" fg:x="123" fg:w="3"/><text x="70.1364%" y="942.50"></text></g><g><title>load_default_certs (ssl.py:570) (3 samples, 1.70%)</title><rect x="69.8864%" y="948" width="1.7045%" height="15" fill="rgb(253,46,43)" fg:x="123" fg:w="3"/><text x="70.1364%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.84%)</title><rect x="69.8864%" y="532" width="2.8409%" height="15" fill="rgb(226,206,43)" fg:x="123" fg:w="5"/><text x="70.1364%" y="542.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.84%)</title><rect x="69.8864%" y="548" width="2.8409%" height="15" fill="rgb(217,54,7)" fg:x="123" fg:w="5"/><text x="70.1364%" y="558.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.84%)</title><rect x="69.8864%" y="564" width="2.8409%" height="15" fill="rgb(223,5,52)" fg:x="123" fg:w="5"/><text x="70.1364%" y="574.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.84%)</title><rect x="69.8864%" y="580" width="2.8409%" height="15" fill="rgb(206,52,46)" fg:x="123" fg:w="5"/><text x="70.1364%" y="590.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.84%)</title><rect x="69.8864%" y="596" width="2.8409%" height="15" fill="rgb(253,136,11)" fg:x="123" fg:w="5"/><text x="70.1364%" y="606.50">_c..</text></g><g><title><module> (distributed/comm/__init__.py:1) (5 samples, 2.84%)</title><rect x="69.8864%" y="612" width="2.8409%" height="15" fill="rgb(208,106,33)" fg:x="123" fg:w="5"/><text x="70.1364%" y="622.50"><m..</text></g><g><title>_register_transports (distributed/comm/__init__.py:19) (5 samples, 2.84%)</title><rect x="69.8864%" y="628" width="2.8409%" height="15" fill="rgb(206,54,4)" fg:x="123" fg:w="5"/><text x="70.1364%" y="638.50">_r..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (5 samples, 2.84%)</title><rect x="69.8864%" y="644" width="2.8409%" height="15" fill="rgb(213,3,15)" fg:x="123" fg:w="5"/><text x="70.1364%" y="654.50">_h..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.84%)</title><rect x="69.8864%" y="660" width="2.8409%" height="15" fill="rgb(252,211,39)" fg:x="123" fg:w="5"/><text x="70.1364%" y="670.50">_c..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (5 samples, 2.84%)</title><rect x="69.8864%" y="676" width="2.8409%" height="15" fill="rgb(223,6,36)" fg:x="123" fg:w="5"/><text x="70.1364%" y="686.50">_f..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (5 samples, 2.84%)</title><rect x="69.8864%" y="692" width="2.8409%" height="15" fill="rgb(252,169,45)" fg:x="123" fg:w="5"/><text x="70.1364%" y="702.50">_f..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (5 samples, 2.84%)</title><rect x="69.8864%" y="708" width="2.8409%" height="15" fill="rgb(212,48,26)" fg:x="123" fg:w="5"/><text x="70.1364%" y="718.50">_l..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (5 samples, 2.84%)</title><rect x="69.8864%" y="724" width="2.8409%" height="15" fill="rgb(251,102,48)" fg:x="123" fg:w="5"/><text x="70.1364%" y="734.50">ex..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (5 samples, 2.84%)</title><rect x="69.8864%" y="740" width="2.8409%" height="15" fill="rgb(243,208,16)" fg:x="123" fg:w="5"/><text x="70.1364%" y="750.50">_c..</text></g><g><title><module> (distributed/comm/ws.py:1) (2 samples, 1.14%)</title><rect x="71.5909%" y="756" width="1.1364%" height="15" fill="rgb(219,96,24)" fg:x="126" fg:w="2"/><text x="71.8409%" y="766.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="71.5909%" y="772" width="1.1364%" height="15" fill="rgb(219,33,29)" fg:x="126" fg:w="2"/><text x="71.8409%" y="782.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (2 samples, 1.14%)</title><rect x="71.5909%" y="788" width="1.1364%" height="15" fill="rgb(223,176,5)" fg:x="126" fg:w="2"/><text x="71.8409%" y="798.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 1.14%)</title><rect x="71.5909%" y="804" width="1.1364%" height="15" fill="rgb(228,140,14)" fg:x="126" fg:w="2"/><text x="71.8409%" y="814.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 1.14%)</title><rect x="71.5909%" y="820" width="1.1364%" height="15" fill="rgb(217,179,31)" fg:x="126" fg:w="2"/><text x="71.8409%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="71.5909%" y="836" width="1.1364%" height="15" fill="rgb(230,9,30)" fg:x="126" fg:w="2"/><text x="71.8409%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="71.5909%" y="852" width="1.1364%" height="15" fill="rgb(230,136,20)" fg:x="126" fg:w="2"/><text x="71.8409%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="71.5909%" y="868" width="1.1364%" height="15" fill="rgb(215,210,22)" fg:x="126" fg:w="2"/><text x="71.8409%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="71.5909%" y="884" width="1.1364%" height="15" fill="rgb(218,43,5)" fg:x="126" fg:w="2"/><text x="71.8409%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="71.5909%" y="900" width="1.1364%" height="15" fill="rgb(216,11,5)" fg:x="126" fg:w="2"/><text x="71.8409%" y="910.50"></text></g><g><title><module> (tornado/web.py:16) (2 samples, 1.14%)</title><rect x="71.5909%" y="916" width="1.1364%" height="15" fill="rgb(209,82,29)" fg:x="126" fg:w="2"/><text x="71.8409%" y="926.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="71.5909%" y="932" width="1.1364%" height="15" fill="rgb(244,115,12)" fg:x="126" fg:w="2"/><text x="71.8409%" y="942.50"></text></g><g><title>__getattr__ (tornado/__init__.py:64) (2 samples, 1.14%)</title><rect x="71.5909%" y="948" width="1.1364%" height="15" fill="rgb(222,82,18)" fg:x="126" fg:w="2"/><text x="71.8409%" y="958.50"></text></g><g><title>import_module (importlib/__init__.py:109) (2 samples, 1.14%)</title><rect x="71.5909%" y="964" width="1.1364%" height="15" fill="rgb(249,227,8)" fg:x="126" fg:w="2"/><text x="71.8409%" y="974.50"></text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (2 samples, 1.14%)</title><rect x="71.5909%" y="980" width="1.1364%" height="15" fill="rgb(253,141,45)" fg:x="126" fg:w="2"/><text x="71.8409%" y="990.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="71.5909%" y="996" width="1.1364%" height="15" fill="rgb(234,184,4)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1006.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="71.5909%" y="1012" width="1.1364%" height="15" fill="rgb(218,194,23)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1022.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="71.5909%" y="1028" width="1.1364%" height="15" fill="rgb(235,66,41)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1038.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="71.5909%" y="1044" width="1.1364%" height="15" fill="rgb(245,217,1)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1054.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="71.5909%" y="1060" width="1.1364%" height="15" fill="rgb(229,91,1)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1070.50"></text></g><g><title><module> (tornado/template.py:16) (2 samples, 1.14%)</title><rect x="71.5909%" y="1076" width="1.1364%" height="15" fill="rgb(207,101,30)" fg:x="126" fg:w="2"/><text x="71.8409%" y="1086.50"></text></g><g><title>Template (tornado/template.py:252) (1 samples, 0.57%)</title><rect x="72.1591%" y="1092" width="0.5682%" height="15" fill="rgb(223,82,49)" fg:x="127" fg:w="1"/><text x="72.4091%" y="1102.50"></text></g><g><title>inner (typing.py:271) (1 samples, 0.57%)</title><rect x="72.1591%" y="1108" width="0.5682%" height="15" fill="rgb(218,167,17)" fg:x="127" fg:w="1"/><text x="72.4091%" y="1118.50"></text></g><g><title>__getitem__ (typing.py:352) (1 samples, 0.57%)</title><rect x="72.1591%" y="1124" width="0.5682%" height="15" fill="rgb(208,103,14)" fg:x="127" fg:w="1"/><text x="72.4091%" y="1134.50"></text></g><g><title>Optional (typing.py:472) (1 samples, 0.57%)</title><rect x="72.1591%" y="1140" width="0.5682%" height="15" fill="rgb(238,20,8)" fg:x="127" fg:w="1"/><text x="72.4091%" y="1150.50"></text></g><g><title>__repr__ (typing.py:337) (1 samples, 0.57%)</title><rect x="72.1591%" y="1156" width="0.5682%" height="15" fill="rgb(218,80,54)" fg:x="127" fg:w="1"/><text x="72.4091%" y="1166.50"></text></g><g><title><module> (distributed/profile.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="644" width="0.5682%" height="15" fill="rgb(240,144,17)" fg:x="128" fg:w="1"/><text x="72.9773%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="660" width="0.5682%" height="15" fill="rgb(245,27,50)" fg:x="128" fg:w="1"/><text x="72.9773%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="676" width="0.5682%" height="15" fill="rgb(251,51,7)" fg:x="128" fg:w="1"/><text x="72.9773%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="72.7273%" y="692" width="0.5682%" height="15" fill="rgb(245,217,29)" fg:x="128" fg:w="1"/><text x="72.9773%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="72.7273%" y="708" width="0.5682%" height="15" fill="rgb(221,176,29)" fg:x="128" fg:w="1"/><text x="72.9773%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="724" width="0.5682%" height="15" fill="rgb(212,180,24)" fg:x="128" fg:w="1"/><text x="72.9773%" y="734.50"></text></g><g><title><module> (distributed/utils.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="740" width="0.5682%" height="15" fill="rgb(254,24,2)" fg:x="128" fg:w="1"/><text x="72.9773%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="756" width="0.5682%" height="15" fill="rgb(230,100,2)" fg:x="128" fg:w="1"/><text x="72.9773%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="772" width="0.5682%" height="15" fill="rgb(219,142,25)" fg:x="128" fg:w="1"/><text x="72.9773%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="72.7273%" y="788" width="0.5682%" height="15" fill="rgb(240,73,43)" fg:x="128" fg:w="1"/><text x="72.9773%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="72.7273%" y="804" width="0.5682%" height="15" fill="rgb(214,114,15)" fg:x="128" fg:w="1"/><text x="72.9773%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="820" width="0.5682%" height="15" fill="rgb(207,130,4)" fg:x="128" fg:w="1"/><text x="72.9773%" y="830.50"></text></g><g><title><module> (click/__init__.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="836" width="0.5682%" height="15" fill="rgb(221,25,40)" fg:x="128" fg:w="1"/><text x="72.9773%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="852" width="0.5682%" height="15" fill="rgb(241,184,7)" fg:x="128" fg:w="1"/><text x="72.9773%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="868" width="0.5682%" height="15" fill="rgb(235,159,4)" fg:x="128" fg:w="1"/><text x="72.9773%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="72.7273%" y="884" width="0.5682%" height="15" fill="rgb(214,87,48)" fg:x="128" fg:w="1"/><text x="72.9773%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="72.7273%" y="900" width="0.5682%" height="15" fill="rgb(246,198,24)" fg:x="128" fg:w="1"/><text x="72.9773%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="916" width="0.5682%" height="15" fill="rgb(209,66,40)" fg:x="128" fg:w="1"/><text x="72.9773%" y="926.50"></text></g><g><title><module> (click/core.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="932" width="0.5682%" height="15" fill="rgb(233,147,39)" fg:x="128" fg:w="1"/><text x="72.9773%" y="942.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="72.7273%" y="948" width="0.5682%" height="15" fill="rgb(231,145,52)" fg:x="128" fg:w="1"/><text x="72.9773%" y="958.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="964" width="0.5682%" height="15" fill="rgb(206,20,26)" fg:x="128" fg:w="1"/><text x="72.9773%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="980" width="0.5682%" height="15" fill="rgb(238,220,4)" fg:x="128" fg:w="1"/><text x="72.9773%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="996" width="0.5682%" height="15" fill="rgb(252,195,42)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="72.7273%" y="1012" width="0.5682%" height="15" fill="rgb(209,10,6)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="72.7273%" y="1028" width="0.5682%" height="15" fill="rgb(229,3,52)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1038.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="1044" width="0.5682%" height="15" fill="rgb(253,49,37)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1054.50"></text></g><g><title><module> (click/types.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="1060" width="0.5682%" height="15" fill="rgb(240,103,49)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="1076" width="0.5682%" height="15" fill="rgb(250,182,30)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1086.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="1092" width="0.5682%" height="15" fill="rgb(248,8,30)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1102.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="72.7273%" y="1108" width="0.5682%" height="15" fill="rgb(237,120,30)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1118.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="72.7273%" y="1124" width="0.5682%" height="15" fill="rgb(221,146,34)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1134.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="72.7273%" y="1140" width="0.5682%" height="15" fill="rgb(242,55,13)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1150.50"></text></g><g><title><module> (click/exceptions.py:1) (1 samples, 0.57%)</title><rect x="72.7273%" y="1156" width="0.5682%" height="15" fill="rgb(242,112,31)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1166.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="72.7273%" y="1172" width="0.5682%" height="15" fill="rgb(249,192,27)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="72.7273%" y="1188" width="0.5682%" height="15" fill="rgb(208,204,44)" fg:x="128" fg:w="1"/><text x="72.9773%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="73.2955%" y="756" width="0.5682%" height="15" fill="rgb(208,93,54)" fg:x="129" fg:w="1"/><text x="73.5455%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="73.2955%" y="772" width="0.5682%" height="15" fill="rgb(242,1,31)" fg:x="129" fg:w="1"/><text x="73.5455%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="73.2955%" y="788" width="0.5682%" height="15" fill="rgb(241,83,25)" fg:x="129" fg:w="1"/><text x="73.5455%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="73.2955%" y="804" width="0.5682%" height="15" fill="rgb(205,169,50)" fg:x="129" fg:w="1"/><text x="73.5455%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="73.2955%" y="820" width="0.5682%" height="15" fill="rgb(239,186,37)" fg:x="129" fg:w="1"/><text x="73.5455%" y="830.50"></text></g><g><title><module> (msgpack/__init__.py:1) (1 samples, 0.57%)</title><rect x="73.2955%" y="836" width="0.5682%" height="15" fill="rgb(205,221,10)" fg:x="129" fg:w="1"/><text x="73.5455%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="73.2955%" y="852" width="0.5682%" height="15" fill="rgb(218,196,15)" fg:x="129" fg:w="1"/><text x="73.5455%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="73.2955%" y="868" width="0.5682%" height="15" fill="rgb(218,196,35)" fg:x="129" fg:w="1"/><text x="73.5455%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="73.2955%" y="884" width="0.5682%" height="15" fill="rgb(233,63,24)" fg:x="129" fg:w="1"/><text x="73.5455%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="73.2955%" y="900" width="0.5682%" height="15" fill="rgb(225,8,4)" fg:x="129" fg:w="1"/><text x="73.5455%" y="910.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="73.2955%" y="916" width="0.5682%" height="15" fill="rgb(234,105,35)" fg:x="129" fg:w="1"/><text x="73.5455%" y="926.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="73.2955%" y="932" width="0.5682%" height="15" fill="rgb(236,21,32)" fg:x="129" fg:w="1"/><text x="73.5455%" y="942.50"></text></g><g><title><module> (distributed/core.py:1) (9 samples, 5.11%)</title><rect x="69.8864%" y="516" width="5.1136%" height="15" fill="rgb(228,109,6)" fg:x="123" fg:w="9"/><text x="70.1364%" y="526.50"><modul..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 2.27%)</title><rect x="72.7273%" y="532" width="2.2727%" height="15" fill="rgb(229,215,31)" fg:x="128" fg:w="4"/><text x="72.9773%" y="542.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="72.7273%" y="548" width="2.2727%" height="15" fill="rgb(221,52,54)" fg:x="128" fg:w="4"/><text x="72.9773%" y="558.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="72.7273%" y="564" width="2.2727%" height="15" fill="rgb(252,129,43)" fg:x="128" fg:w="4"/><text x="72.9773%" y="574.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="72.7273%" y="580" width="2.2727%" height="15" fill="rgb(248,183,27)" fg:x="128" fg:w="4"/><text x="72.9773%" y="590.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="72.7273%" y="596" width="2.2727%" height="15" fill="rgb(250,0,22)" fg:x="128" fg:w="4"/><text x="72.9773%" y="606.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="72.7273%" y="612" width="2.2727%" height="15" fill="rgb(213,166,10)" fg:x="128" fg:w="4"/><text x="72.9773%" y="622.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="72.7273%" y="628" width="2.2727%" height="15" fill="rgb(207,163,36)" fg:x="128" fg:w="4"/><text x="72.9773%" y="638.50">_..</text></g><g><title><module> (distributed/protocol/__init__.py:1) (3 samples, 1.70%)</title><rect x="73.2955%" y="644" width="1.7045%" height="15" fill="rgb(208,122,22)" fg:x="129" fg:w="3"/><text x="73.5455%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="73.2955%" y="660" width="1.7045%" height="15" fill="rgb(207,104,49)" fg:x="129" fg:w="3"/><text x="73.5455%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="73.2955%" y="676" width="1.7045%" height="15" fill="rgb(248,211,50)" fg:x="129" fg:w="3"/><text x="73.5455%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="73.2955%" y="692" width="1.7045%" height="15" fill="rgb(217,13,45)" fg:x="129" fg:w="3"/><text x="73.5455%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="73.2955%" y="708" width="1.7045%" height="15" fill="rgb(211,216,49)" fg:x="129" fg:w="3"/><text x="73.5455%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="73.2955%" y="724" width="1.7045%" height="15" fill="rgb(221,58,53)" fg:x="129" fg:w="3"/><text x="73.5455%" y="734.50"></text></g><g><title><module> (distributed/protocol/core.py:1) (3 samples, 1.70%)</title><rect x="73.2955%" y="740" width="1.7045%" height="15" fill="rgb(220,112,41)" fg:x="129" fg:w="3"/><text x="73.5455%" y="750.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="73.8636%" y="756" width="1.1364%" height="15" fill="rgb(236,38,28)" fg:x="130" fg:w="2"/><text x="74.1136%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="73.8636%" y="772" width="1.1364%" height="15" fill="rgb(227,195,22)" fg:x="130" fg:w="2"/><text x="74.1136%" y="782.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="73.8636%" y="788" width="1.1364%" height="15" fill="rgb(214,55,33)" fg:x="130" fg:w="2"/><text x="74.1136%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="73.8636%" y="804" width="1.1364%" height="15" fill="rgb(248,80,13)" fg:x="130" fg:w="2"/><text x="74.1136%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="73.8636%" y="820" width="1.1364%" height="15" fill="rgb(238,52,6)" fg:x="130" fg:w="2"/><text x="74.1136%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="73.8636%" y="836" width="1.1364%" height="15" fill="rgb(224,198,47)" fg:x="130" fg:w="2"/><text x="74.1136%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="73.8636%" y="852" width="1.1364%" height="15" fill="rgb(233,171,20)" fg:x="130" fg:w="2"/><text x="74.1136%" y="862.50"></text></g><g><title><module> (distributed/protocol/pickle.py:1) (2 samples, 1.14%)</title><rect x="73.8636%" y="868" width="1.1364%" height="15" fill="rgb(241,30,25)" fg:x="130" fg:w="2"/><text x="74.1136%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="73.8636%" y="884" width="1.1364%" height="15" fill="rgb(207,171,38)" fg:x="130" fg:w="2"/><text x="74.1136%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="73.8636%" y="900" width="1.1364%" height="15" fill="rgb(234,70,1)" fg:x="130" fg:w="2"/><text x="74.1136%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="73.8636%" y="916" width="1.1364%" height="15" fill="rgb(232,178,18)" fg:x="130" fg:w="2"/><text x="74.1136%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="73.8636%" y="932" width="1.1364%" height="15" fill="rgb(241,78,40)" fg:x="130" fg:w="2"/><text x="74.1136%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="73.8636%" y="948" width="1.1364%" height="15" fill="rgb(222,35,25)" fg:x="130" fg:w="2"/><text x="74.1136%" y="958.50"></text></g><g><title><module> (distributed/protocol/serialize.py:1) (2 samples, 1.14%)</title><rect x="73.8636%" y="964" width="1.1364%" height="15" fill="rgb(207,92,16)" fg:x="130" fg:w="2"/><text x="74.1136%" y="974.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="73.8636%" y="980" width="1.1364%" height="15" fill="rgb(216,59,51)" fg:x="130" fg:w="2"/><text x="74.1136%" y="990.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="73.8636%" y="996" width="1.1364%" height="15" fill="rgb(213,80,28)" fg:x="130" fg:w="2"/><text x="74.1136%" y="1006.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="73.8636%" y="1012" width="1.1364%" height="15" fill="rgb(220,93,7)" fg:x="130" fg:w="2"/><text x="74.1136%" y="1022.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="73.8636%" y="1028" width="1.1364%" height="15" fill="rgb(225,24,44)" fg:x="130" fg:w="2"/><text x="74.1136%" y="1038.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (2 samples, 1.14%)</title><rect x="73.8636%" y="1044" width="1.1364%" height="15" fill="rgb(243,74,40)" fg:x="130" fg:w="2"/><text x="74.1136%" y="1054.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (2 samples, 1.14%)</title><rect x="73.8636%" y="1060" width="1.1364%" height="15" fill="rgb(228,39,7)" fg:x="130" fg:w="2"/><text x="74.1136%" y="1070.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="69.8864%" y="436" width="5.6818%" height="15" fill="rgb(227,79,8)" fg:x="123" fg:w="10"/><text x="70.1364%" y="446.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="69.8864%" y="452" width="5.6818%" height="15" fill="rgb(236,58,11)" fg:x="123" fg:w="10"/><text x="70.1364%" y="462.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="69.8864%" y="468" width="5.6818%" height="15" fill="rgb(249,63,35)" fg:x="123" fg:w="10"/><text x="70.1364%" y="478.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 5.68%)</title><rect x="69.8864%" y="484" width="5.6818%" height="15" fill="rgb(252,114,16)" fg:x="123" fg:w="10"/><text x="70.1364%" y="494.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="69.8864%" y="500" width="5.6818%" height="15" fill="rgb(254,151,24)" fg:x="123" fg:w="10"/><text x="70.1364%" y="510.50">_call_w..</text></g><g><title><module> (distributed/worker.py:1) (1 samples, 0.57%)</title><rect x="75.0000%" y="516" width="0.5682%" height="15" fill="rgb(253,54,39)" fg:x="132" fg:w="1"/><text x="75.2500%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="75.0000%" y="532" width="0.5682%" height="15" fill="rgb(243,25,45)" fg:x="132" fg:w="1"/><text x="75.2500%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="75.0000%" y="548" width="0.5682%" height="15" fill="rgb(234,134,9)" fg:x="132" fg:w="1"/><text x="75.2500%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="75.0000%" y="564" width="0.5682%" height="15" fill="rgb(227,166,31)" fg:x="132" fg:w="1"/><text x="75.2500%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="75.0000%" y="580" width="0.5682%" height="15" fill="rgb(245,143,41)" fg:x="132" fg:w="1"/><text x="75.2500%" y="590.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="75.0000%" y="596" width="0.5682%" height="15" fill="rgb(238,181,32)" fg:x="132" fg:w="1"/><text x="75.2500%" y="606.50"></text></g><g><title>_compile_bytecode (<frozen importlib._bootstrap_external>:645) (1 samples, 0.57%)</title><rect x="75.0000%" y="612" width="0.5682%" height="15" fill="rgb(224,113,18)" fg:x="132" fg:w="1"/><text x="75.2500%" y="622.50"></text></g><g><title>BaseSpecifier (packaging/specifiers.py:52) (1 samples, 0.57%)</title><rect x="75.5682%" y="948" width="0.5682%" height="15" fill="rgb(240,229,28)" fg:x="133" fg:w="1"/><text x="75.8182%" y="958.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="69.3182%" y="244" width="7.3864%" height="15" fill="rgb(250,185,3)" fg:x="122" fg:w="13"/><text x="69.5682%" y="254.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="69.3182%" y="260" width="7.3864%" height="15" fill="rgb(212,59,25)" fg:x="122" fg:w="13"/><text x="69.5682%" y="270.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="69.3182%" y="276" width="7.3864%" height="15" fill="rgb(221,87,20)" fg:x="122" fg:w="13"/><text x="69.5682%" y="286.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="69.3182%" y="292" width="7.3864%" height="15" fill="rgb(213,74,28)" fg:x="122" fg:w="13"/><text x="69.5682%" y="302.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="69.3182%" y="308" width="7.3864%" height="15" fill="rgb(224,132,34)" fg:x="122" fg:w="13"/><text x="69.5682%" y="318.50">_call_with..</text></g><g><title><module> (distributed/actor.py:1) (13 samples, 7.39%)</title><rect x="69.3182%" y="324" width="7.3864%" height="15" fill="rgb(222,101,24)" fg:x="122" fg:w="13"/><text x="69.5682%" y="334.50"><module> (..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="69.3182%" y="340" width="7.3864%" height="15" fill="rgb(254,142,4)" fg:x="122" fg:w="13"/><text x="69.5682%" y="350.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="69.3182%" y="356" width="7.3864%" height="15" fill="rgb(230,229,49)" fg:x="122" fg:w="13"/><text x="69.5682%" y="366.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="69.3182%" y="372" width="7.3864%" height="15" fill="rgb(238,70,47)" fg:x="122" fg:w="13"/><text x="69.5682%" y="382.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="69.3182%" y="388" width="7.3864%" height="15" fill="rgb(231,160,17)" fg:x="122" fg:w="13"/><text x="69.5682%" y="398.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="69.3182%" y="404" width="7.3864%" height="15" fill="rgb(218,68,53)" fg:x="122" fg:w="13"/><text x="69.5682%" y="414.50">_call_with..</text></g><g><title><module> (distributed/client.py:1) (13 samples, 7.39%)</title><rect x="69.3182%" y="420" width="7.3864%" height="15" fill="rgb(236,111,10)" fg:x="122" fg:w="13"/><text x="69.5682%" y="430.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="75.5682%" y="436" width="1.1364%" height="15" fill="rgb(224,34,41)" fg:x="133" fg:w="2"/><text x="75.8182%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="452" width="1.1364%" height="15" fill="rgb(241,118,19)" fg:x="133" fg:w="2"/><text x="75.8182%" y="462.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="75.5682%" y="468" width="1.1364%" height="15" fill="rgb(238,129,25)" fg:x="133" fg:w="2"/><text x="75.8182%" y="478.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="75.5682%" y="484" width="1.1364%" height="15" fill="rgb(238,22,31)" fg:x="133" fg:w="2"/><text x="75.8182%" y="494.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="75.5682%" y="500" width="1.1364%" height="15" fill="rgb(222,174,48)" fg:x="133" fg:w="2"/><text x="75.8182%" y="510.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="75.5682%" y="516" width="1.1364%" height="15" fill="rgb(206,152,40)" fg:x="133" fg:w="2"/><text x="75.8182%" y="526.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="532" width="1.1364%" height="15" fill="rgb(218,99,54)" fg:x="133" fg:w="2"/><text x="75.8182%" y="542.50"></text></g><g><title><module> (distributed/versions.py:1) (2 samples, 1.14%)</title><rect x="75.5682%" y="548" width="1.1364%" height="15" fill="rgb(220,174,26)" fg:x="133" fg:w="2"/><text x="75.8182%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="75.5682%" y="564" width="1.1364%" height="15" fill="rgb(245,116,9)" fg:x="133" fg:w="2"/><text x="75.8182%" y="574.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="75.5682%" y="580" width="1.1364%" height="15" fill="rgb(209,72,35)" fg:x="133" fg:w="2"/><text x="75.8182%" y="590.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="75.5682%" y="596" width="1.1364%" height="15" fill="rgb(226,126,21)" fg:x="133" fg:w="2"/><text x="75.8182%" y="606.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="75.5682%" y="612" width="1.1364%" height="15" fill="rgb(227,192,1)" fg:x="133" fg:w="2"/><text x="75.8182%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="628" width="1.1364%" height="15" fill="rgb(237,180,29)" fg:x="133" fg:w="2"/><text x="75.8182%" y="638.50"></text></g><g><title><module> (packaging/requirements.py:5) (2 samples, 1.14%)</title><rect x="75.5682%" y="644" width="1.1364%" height="15" fill="rgb(230,197,35)" fg:x="133" fg:w="2"/><text x="75.8182%" y="654.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="75.5682%" y="660" width="1.1364%" height="15" fill="rgb(246,193,31)" fg:x="133" fg:w="2"/><text x="75.8182%" y="670.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="75.5682%" y="676" width="1.1364%" height="15" fill="rgb(241,36,4)" fg:x="133" fg:w="2"/><text x="75.8182%" y="686.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="75.5682%" y="692" width="1.1364%" height="15" fill="rgb(241,130,17)" fg:x="133" fg:w="2"/><text x="75.8182%" y="702.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="75.5682%" y="708" width="1.1364%" height="15" fill="rgb(206,137,32)" fg:x="133" fg:w="2"/><text x="75.8182%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="724" width="1.1364%" height="15" fill="rgb(237,228,51)" fg:x="133" fg:w="2"/><text x="75.8182%" y="734.50"></text></g><g><title><module> (packaging/_parser.py:1) (2 samples, 1.14%)</title><rect x="75.5682%" y="740" width="1.1364%" height="15" fill="rgb(243,6,42)" fg:x="133" fg:w="2"/><text x="75.8182%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="75.5682%" y="756" width="1.1364%" height="15" fill="rgb(251,74,28)" fg:x="133" fg:w="2"/><text x="75.8182%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="75.5682%" y="772" width="1.1364%" height="15" fill="rgb(218,20,49)" fg:x="133" fg:w="2"/><text x="75.8182%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="75.5682%" y="788" width="1.1364%" height="15" fill="rgb(238,28,14)" fg:x="133" fg:w="2"/><text x="75.8182%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="75.5682%" y="804" width="1.1364%" height="15" fill="rgb(229,40,46)" fg:x="133" fg:w="2"/><text x="75.8182%" y="814.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="820" width="1.1364%" height="15" fill="rgb(244,195,20)" fg:x="133" fg:w="2"/><text x="75.8182%" y="830.50"></text></g><g><title><module> (packaging/_tokenizer.py:1) (2 samples, 1.14%)</title><rect x="75.5682%" y="836" width="1.1364%" height="15" fill="rgb(253,56,35)" fg:x="133" fg:w="2"/><text x="75.8182%" y="846.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="75.5682%" y="852" width="1.1364%" height="15" fill="rgb(210,149,44)" fg:x="133" fg:w="2"/><text x="75.8182%" y="862.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="75.5682%" y="868" width="1.1364%" height="15" fill="rgb(240,135,12)" fg:x="133" fg:w="2"/><text x="75.8182%" y="878.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="75.5682%" y="884" width="1.1364%" height="15" fill="rgb(251,24,50)" fg:x="133" fg:w="2"/><text x="75.8182%" y="894.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="75.5682%" y="900" width="1.1364%" height="15" fill="rgb(243,200,47)" fg:x="133" fg:w="2"/><text x="75.8182%" y="910.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="75.5682%" y="916" width="1.1364%" height="15" fill="rgb(224,166,26)" fg:x="133" fg:w="2"/><text x="75.8182%" y="926.50"></text></g><g><title><module> (packaging/specifiers.py:4) (2 samples, 1.14%)</title><rect x="75.5682%" y="932" width="1.1364%" height="15" fill="rgb(233,0,47)" fg:x="133" fg:w="2"/><text x="75.8182%" y="942.50"></text></g><g><title>Specifier (packaging/specifiers.py:107) (1 samples, 0.57%)</title><rect x="76.1364%" y="948" width="0.5682%" height="15" fill="rgb(253,80,5)" fg:x="134" fg:w="1"/><text x="76.3864%" y="958.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.57%)</title><rect x="76.1364%" y="964" width="0.5682%" height="15" fill="rgb(214,133,25)" fg:x="134" fg:w="1"/><text x="76.3864%" y="974.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="76.1364%" y="980" width="0.5682%" height="15" fill="rgb(209,27,14)" fg:x="134" fg:w="1"/><text x="76.3864%" y="990.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.57%)</title><rect x="76.1364%" y="996" width="0.5682%" height="15" fill="rgb(219,102,51)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1006.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.57%)</title><rect x="76.1364%" y="1012" width="0.5682%" height="15" fill="rgb(237,18,16)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="76.1364%" y="1028" width="0.5682%" height="15" fill="rgb(241,85,17)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="76.1364%" y="1044" width="0.5682%" height="15" fill="rgb(236,90,42)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="76.1364%" y="1060" width="0.5682%" height="15" fill="rgb(249,57,21)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1070.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="76.1364%" y="1076" width="0.5682%" height="15" fill="rgb(243,12,36)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1086.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="76.1364%" y="1092" width="0.5682%" height="15" fill="rgb(253,128,47)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1102.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="76.1364%" y="1108" width="0.5682%" height="15" fill="rgb(207,33,20)" fg:x="134" fg:w="1"/><text x="76.3864%" y="1118.50"></text></g><g><title>initialize_logging (distributed/config.py:171) (1 samples, 0.57%)</title><rect x="76.7045%" y="372" width="0.5682%" height="15" fill="rgb(233,215,35)" fg:x="135" fg:w="1"/><text x="76.9545%" y="382.50"></text></g><g><title>_initialize_logging_old_style (distributed/config.py:86) (1 samples, 0.57%)</title><rect x="76.7045%" y="388" width="0.5682%" height="15" fill="rgb(249,188,52)" fg:x="135" fg:w="1"/><text x="76.9545%" y="398.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.57%)</title><rect x="77.2727%" y="548" width="0.5682%" height="15" fill="rgb(225,12,32)" fg:x="136" fg:w="1"/><text x="77.5227%" y="558.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (1 samples, 0.57%)</title><rect x="77.2727%" y="564" width="0.5682%" height="15" fill="rgb(247,98,14)" fg:x="136" fg:w="1"/><text x="77.5227%" y="574.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.57%)</title><rect x="77.2727%" y="580" width="0.5682%" height="15" fill="rgb(247,219,48)" fg:x="136" fg:w="1"/><text x="77.5227%" y="590.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.57%)</title><rect x="77.2727%" y="596" width="0.5682%" height="15" fill="rgb(253,60,48)" fg:x="136" fg:w="1"/><text x="77.5227%" y="606.50"></text></g><g><title>check_value (yaml/scanner.py:721) (1 samples, 0.57%)</title><rect x="77.2727%" y="612" width="0.5682%" height="15" fill="rgb(245,15,52)" fg:x="136" fg:w="1"/><text x="77.5227%" y="622.50"></text></g><g><title>peek (yaml/reader.py:87) (1 samples, 0.57%)</title><rect x="77.2727%" y="628" width="0.5682%" height="15" fill="rgb(220,133,28)" fg:x="136" fg:w="1"/><text x="77.5227%" y="638.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.57%)</title><rect x="79.5455%" y="628" width="0.5682%" height="15" fill="rgb(217,180,4)" fg:x="140" fg:w="1"/><text x="79.7955%" y="638.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.57%)</title><rect x="79.5455%" y="644" width="0.5682%" height="15" fill="rgb(251,24,1)" fg:x="140" fg:w="1"/><text x="79.7955%" y="654.50"></text></g><g><title>__init__ (yaml/tokens.py:98) (1 samples, 0.57%)</title><rect x="79.5455%" y="660" width="0.5682%" height="15" fill="rgb(212,185,49)" fg:x="140" fg:w="1"/><text x="79.7955%" y="670.50"></text></g><g><title>check_event (yaml/parser.py:94) (5 samples, 2.84%)</title><rect x="78.4091%" y="564" width="2.8409%" height="15" fill="rgb(215,175,22)" fg:x="138" fg:w="5"/><text x="78.6591%" y="574.50">ch..</text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (5 samples, 2.84%)</title><rect x="78.4091%" y="580" width="2.8409%" height="15" fill="rgb(250,205,14)" fg:x="138" fg:w="5"/><text x="78.6591%" y="590.50">pa..</text></g><g><title>check_token (yaml/scanner.py:113) (4 samples, 2.27%)</title><rect x="78.9773%" y="596" width="2.2727%" height="15" fill="rgb(225,211,22)" fg:x="139" fg:w="4"/><text x="79.2273%" y="606.50">c..</text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (4 samples, 2.27%)</title><rect x="78.9773%" y="612" width="2.2727%" height="15" fill="rgb(251,179,42)" fg:x="139" fg:w="4"/><text x="79.2273%" y="622.50">f..</text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (2 samples, 1.14%)</title><rect x="80.1136%" y="628" width="1.1364%" height="15" fill="rgb(208,216,51)" fg:x="141" fg:w="2"/><text x="80.3636%" y="638.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.57%)</title><rect x="80.6818%" y="644" width="0.5682%" height="15" fill="rgb(235,36,11)" fg:x="142" fg:w="1"/><text x="80.9318%" y="654.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.57%)</title><rect x="81.2500%" y="580" width="0.5682%" height="15" fill="rgb(213,189,28)" fg:x="143" fg:w="1"/><text x="81.5000%" y="590.50"></text></g><g><title>parse_block_mapping_key (yaml/parser.py:427) (1 samples, 0.57%)</title><rect x="81.2500%" y="596" width="0.5682%" height="15" fill="rgb(227,203,42)" fg:x="143" fg:w="1"/><text x="81.5000%" y="606.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.57%)</title><rect x="81.2500%" y="612" width="0.5682%" height="15" fill="rgb(244,72,36)" fg:x="143" fg:w="1"/><text x="81.5000%" y="622.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.57%)</title><rect x="81.2500%" y="628" width="0.5682%" height="15" fill="rgb(213,53,17)" fg:x="143" fg:w="1"/><text x="81.5000%" y="638.50"></text></g><g><title>scan_to_next_token (yaml/scanner.py:752) (1 samples, 0.57%)</title><rect x="81.2500%" y="644" width="0.5682%" height="15" fill="rgb(207,167,3)" fg:x="143" fg:w="1"/><text x="81.5000%" y="654.50"></text></g><g><title>forward (yaml/reader.py:99) (1 samples, 0.57%)</title><rect x="81.2500%" y="660" width="0.5682%" height="15" fill="rgb(216,98,30)" fg:x="143" fg:w="1"/><text x="81.5000%" y="670.50"></text></g><g><title>check_event (yaml/parser.py:94) (1 samples, 0.57%)</title><rect x="81.8182%" y="596" width="0.5682%" height="15" fill="rgb(236,123,15)" fg:x="144" fg:w="1"/><text x="82.0682%" y="606.50"></text></g><g><title>parse_block_mapping_value (yaml/parser.py:446) (1 samples, 0.57%)</title><rect x="81.8182%" y="612" width="0.5682%" height="15" fill="rgb(248,81,50)" fg:x="144" fg:w="1"/><text x="82.0682%" y="622.50"></text></g><g><title>check_token (yaml/scanner.py:113) (1 samples, 0.57%)</title><rect x="81.8182%" y="628" width="0.5682%" height="15" fill="rgb(214,120,4)" fg:x="144" fg:w="1"/><text x="82.0682%" y="638.50"></text></g><g><title>fetch_more_tokens (yaml/scanner.py:156) (1 samples, 0.57%)</title><rect x="81.8182%" y="644" width="0.5682%" height="15" fill="rgb(208,179,34)" fg:x="144" fg:w="1"/><text x="82.0682%" y="654.50"></text></g><g><title>fetch_plain (yaml/scanner.py:668) (1 samples, 0.57%)</title><rect x="81.8182%" y="660" width="0.5682%" height="15" fill="rgb(227,140,7)" fg:x="144" fg:w="1"/><text x="82.0682%" y="670.50"></text></g><g><title>scan_plain (yaml/scanner.py:1270) (1 samples, 0.57%)</title><rect x="81.8182%" y="676" width="0.5682%" height="15" fill="rgb(214,22,6)" fg:x="144" fg:w="1"/><text x="82.0682%" y="686.50"></text></g><g><title>scan_plain_spaces (yaml/scanner.py:1311) (1 samples, 0.57%)</title><rect x="81.8182%" y="692" width="0.5682%" height="15" fill="rgb(207,137,27)" fg:x="144" fg:w="1"/><text x="82.0682%" y="702.50"></text></g><g><title>prefix (yaml/reader.py:94) (1 samples, 0.57%)</title><rect x="81.8182%" y="708" width="0.5682%" height="15" fill="rgb(210,8,46)" fg:x="144" fg:w="1"/><text x="82.0682%" y="718.50"></text></g><g><title>compose_mapping_node (yaml/composer.py:117) (3 samples, 1.70%)</title><rect x="81.2500%" y="564" width="1.7045%" height="15" fill="rgb(240,16,54)" fg:x="143" fg:w="3"/><text x="81.5000%" y="574.50"></text></g><g><title>compose_node (yaml/composer.py:63) (2 samples, 1.14%)</title><rect x="81.8182%" y="580" width="1.1364%" height="15" fill="rgb(211,209,29)" fg:x="144" fg:w="2"/><text x="82.0682%" y="590.50"></text></g><g><title>descend_resolver (yaml/resolver.py:91) (1 samples, 0.57%)</title><rect x="82.3864%" y="596" width="0.5682%" height="15" fill="rgb(226,228,24)" fg:x="145" fg:w="1"/><text x="82.6364%" y="606.50"></text></g><g><title>compute (dask/base.py:355) (28 samples, 15.91%)</title><rect x="69.3182%" y="100" width="15.9091%" height="15" fill="rgb(222,84,9)" fg:x="122" fg:w="28"/><text x="69.5682%" y="110.50">compute (dask/base.py:35..</text></g><g><title>compute (dask/base.py:603) (28 samples, 15.91%)</title><rect x="69.3182%" y="116" width="15.9091%" height="15" fill="rgb(234,203,30)" fg:x="122" fg:w="28"/><text x="69.5682%" y="126.50">compute (dask/base.py:60..</text></g><g><title>get_scheduler (dask/base.py:1449) (28 samples, 15.91%)</title><rect x="69.3182%" y="132" width="15.9091%" height="15" fill="rgb(238,109,14)" fg:x="122" fg:w="28"/><text x="69.5682%" y="142.50">get_scheduler (dask/base..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (28 samples, 15.91%)</title><rect x="69.3182%" y="148" width="15.9091%" height="15" fill="rgb(233,206,34)" fg:x="122" fg:w="28"/><text x="69.5682%" y="158.50">_find_and_load (<frozen ..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (28 samples, 15.91%)</title><rect x="69.3182%" y="164" width="15.9091%" height="15" fill="rgb(220,167,47)" fg:x="122" fg:w="28"/><text x="69.5682%" y="174.50">_find_and_load_unlocked ..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (28 samples, 15.91%)</title><rect x="69.3182%" y="180" width="15.9091%" height="15" fill="rgb(238,105,10)" fg:x="122" fg:w="28"/><text x="69.5682%" y="190.50">_load_unlocked (<frozen ..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (28 samples, 15.91%)</title><rect x="69.3182%" y="196" width="15.9091%" height="15" fill="rgb(213,227,17)" fg:x="122" fg:w="28"/><text x="69.5682%" y="206.50">exec_module (<frozen imp..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (28 samples, 15.91%)</title><rect x="69.3182%" y="212" width="15.9091%" height="15" fill="rgb(217,132,38)" fg:x="122" fg:w="28"/><text x="69.5682%" y="222.50">_call_with_frames_remove..</text></g><g><title><module> (distributed/__init__.py:1) (28 samples, 15.91%)</title><rect x="69.3182%" y="228" width="15.9091%" height="15" fill="rgb(242,146,4)" fg:x="122" fg:w="28"/><text x="69.5682%" y="238.50"><module> (distributed/__..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (15 samples, 8.52%)</title><rect x="76.7045%" y="244" width="8.5227%" height="15" fill="rgb(212,61,9)" fg:x="135" fg:w="15"/><text x="76.9545%" y="254.50">_handle_from..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 8.52%)</title><rect x="76.7045%" y="260" width="8.5227%" height="15" fill="rgb(247,126,22)" fg:x="135" fg:w="15"/><text x="76.9545%" y="270.50">_call_with_f..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (15 samples, 8.52%)</title><rect x="76.7045%" y="276" width="8.5227%" height="15" fill="rgb(220,196,2)" fg:x="135" fg:w="15"/><text x="76.9545%" y="286.50">_find_and_lo..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (15 samples, 8.52%)</title><rect x="76.7045%" y="292" width="8.5227%" height="15" fill="rgb(208,46,4)" fg:x="135" fg:w="15"/><text x="76.9545%" y="302.50">_find_and_lo..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (15 samples, 8.52%)</title><rect x="76.7045%" y="308" width="8.5227%" height="15" fill="rgb(252,104,46)" fg:x="135" fg:w="15"/><text x="76.9545%" y="318.50">_load_unlock..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (15 samples, 8.52%)</title><rect x="76.7045%" y="324" width="8.5227%" height="15" fill="rgb(237,152,48)" fg:x="135" fg:w="15"/><text x="76.9545%" y="334.50">exec_module ..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (15 samples, 8.52%)</title><rect x="76.7045%" y="340" width="8.5227%" height="15" fill="rgb(221,59,37)" fg:x="135" fg:w="15"/><text x="76.9545%" y="350.50">_call_with_f..</text></g><g><title><module> (distributed/config.py:1) (15 samples, 8.52%)</title><rect x="76.7045%" y="356" width="8.5227%" height="15" fill="rgb(209,202,51)" fg:x="135" fg:w="15"/><text x="76.9545%" y="366.50"><module> (di..</text></g><g><title>safe_load (yaml/__init__.py:117) (14 samples, 7.95%)</title><rect x="77.2727%" y="372" width="7.9545%" height="15" fill="rgb(228,81,30)" fg:x="136" fg:w="14"/><text x="77.5227%" y="382.50">safe_load (..</text></g><g><title>load (yaml/__init__.py:74) (14 samples, 7.95%)</title><rect x="77.2727%" y="388" width="7.9545%" height="15" fill="rgb(227,42,39)" fg:x="136" fg:w="14"/><text x="77.5227%" y="398.50">load (yaml/..</text></g><g><title>get_single_data (yaml/constructor.py:47) (14 samples, 7.95%)</title><rect x="77.2727%" y="404" width="7.9545%" height="15" fill="rgb(221,26,2)" fg:x="136" fg:w="14"/><text x="77.5227%" y="414.50">get_single_..</text></g><g><title>get_single_node (yaml/composer.py:29) (14 samples, 7.95%)</title><rect x="77.2727%" y="420" width="7.9545%" height="15" fill="rgb(254,61,31)" fg:x="136" fg:w="14"/><text x="77.5227%" y="430.50">get_single_..</text></g><g><title>compose_document (yaml/composer.py:50) (14 samples, 7.95%)</title><rect x="77.2727%" y="436" width="7.9545%" height="15" fill="rgb(222,173,38)" fg:x="136" fg:w="14"/><text x="77.5227%" y="446.50">compose_doc..</text></g><g><title>compose_node (yaml/composer.py:63) (14 samples, 7.95%)</title><rect x="77.2727%" y="452" width="7.9545%" height="15" fill="rgb(218,50,12)" fg:x="136" fg:w="14"/><text x="77.5227%" y="462.50">compose_nod..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (14 samples, 7.95%)</title><rect x="77.2727%" y="468" width="7.9545%" height="15" fill="rgb(223,88,40)" fg:x="136" fg:w="14"/><text x="77.5227%" y="478.50">compose_map..</text></g><g><title>compose_node (yaml/composer.py:63) (14 samples, 7.95%)</title><rect x="77.2727%" y="484" width="7.9545%" height="15" fill="rgb(237,54,19)" fg:x="136" fg:w="14"/><text x="77.5227%" y="494.50">compose_nod..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (14 samples, 7.95%)</title><rect x="77.2727%" y="500" width="7.9545%" height="15" fill="rgb(251,129,25)" fg:x="136" fg:w="14"/><text x="77.5227%" y="510.50">compose_map..</text></g><g><title>compose_node (yaml/composer.py:63) (14 samples, 7.95%)</title><rect x="77.2727%" y="516" width="7.9545%" height="15" fill="rgb(238,97,19)" fg:x="136" fg:w="14"/><text x="77.5227%" y="526.50">compose_nod..</text></g><g><title>compose_mapping_node (yaml/composer.py:117) (14 samples, 7.95%)</title><rect x="77.2727%" y="532" width="7.9545%" height="15" fill="rgb(240,169,18)" fg:x="136" fg:w="14"/><text x="77.5227%" y="542.50">compose_map..</text></g><g><title>compose_node (yaml/composer.py:63) (13 samples, 7.39%)</title><rect x="77.8409%" y="548" width="7.3864%" height="15" fill="rgb(230,187,49)" fg:x="137" fg:w="13"/><text x="78.0909%" y="558.50">compose_no..</text></g><g><title>compose_sequence_node (yaml/composer.py:99) (4 samples, 2.27%)</title><rect x="82.9545%" y="564" width="2.2727%" height="15" fill="rgb(209,44,26)" fg:x="146" fg:w="4"/><text x="83.2045%" y="574.50">c..</text></g><g><title>check_event (yaml/parser.py:94) (4 samples, 2.27%)</title><rect x="82.9545%" y="580" width="2.2727%" height="15" fill="rgb(244,0,6)" fg:x="146" fg:w="4"/><text x="83.2045%" y="590.50">c..</text></g><g><title>parse_flow_sequence_first_entry (yaml/parser.py:471) (4 samples, 2.27%)</title><rect x="82.9545%" y="596" width="2.2727%" height="15" fill="rgb(248,18,21)" fg:x="146" fg:w="4"/><text x="83.2045%" y="606.50">p..</text></g><g><title>parse_flow_sequence_entry (yaml/parser.py:476) (4 samples, 2.27%)</title><rect x="82.9545%" y="612" width="2.2727%" height="15" fill="rgb(245,180,19)" fg:x="146" fg:w="4"/><text x="83.2045%" y="622.50">p..</text></g><g><title>check_token (yaml/scanner.py:113) (4 samples, 2.27%)</title><rect x="82.9545%" y="628" width="2.2727%" height="15" fill="rgb(252,118,36)" fg:x="146" fg:w="4"/><text x="83.2045%" y="638.50">c..</text></g><g><title>need_more_tokens (yaml/scanner.py:145) (4 samples, 2.27%)</title><rect x="82.9545%" y="644" width="2.2727%" height="15" fill="rgb(210,224,19)" fg:x="146" fg:w="4"/><text x="83.2045%" y="654.50">n..</text></g><g><title>stale_possible_simple_keys (yaml/scanner.py:279) (4 samples, 2.27%)</title><rect x="82.9545%" y="660" width="2.2727%" height="15" fill="rgb(218,30,24)" fg:x="146" fg:w="4"/><text x="83.2045%" y="670.50">s..</text></g><g><title><module> (requests/exceptions.py:1) (1 samples, 0.57%)</title><rect x="85.2273%" y="484" width="0.5682%" height="15" fill="rgb(219,75,50)" fg:x="150" fg:w="1"/><text x="85.4773%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.2273%" y="500" width="0.5682%" height="15" fill="rgb(234,72,50)" fg:x="150" fg:w="1"/><text x="85.4773%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.2273%" y="516" width="0.5682%" height="15" fill="rgb(219,100,48)" fg:x="150" fg:w="1"/><text x="85.4773%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.2273%" y="532" width="0.5682%" height="15" fill="rgb(253,5,41)" fg:x="150" fg:w="1"/><text x="85.4773%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.2273%" y="548" width="0.5682%" height="15" fill="rgb(247,181,11)" fg:x="150" fg:w="1"/><text x="85.4773%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.2273%" y="564" width="0.5682%" height="15" fill="rgb(222,223,25)" fg:x="150" fg:w="1"/><text x="85.4773%" y="574.50"></text></g><g><title><module> (requests/compat.py:1) (1 samples, 0.57%)</title><rect x="85.2273%" y="580" width="0.5682%" height="15" fill="rgb(214,198,28)" fg:x="150" fg:w="1"/><text x="85.4773%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.2273%" y="596" width="0.5682%" height="15" fill="rgb(230,46,43)" fg:x="150" fg:w="1"/><text x="85.4773%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.2273%" y="612" width="0.5682%" height="15" fill="rgb(233,65,53)" fg:x="150" fg:w="1"/><text x="85.4773%" y="622.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.2273%" y="628" width="0.5682%" height="15" fill="rgb(221,121,27)" fg:x="150" fg:w="1"/><text x="85.4773%" y="638.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.2273%" y="644" width="0.5682%" height="15" fill="rgb(247,70,47)" fg:x="150" fg:w="1"/><text x="85.4773%" y="654.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.2273%" y="660" width="0.5682%" height="15" fill="rgb(228,85,35)" fg:x="150" fg:w="1"/><text x="85.4773%" y="670.50"></text></g><g><title><module> (http/cookies.py:39) (1 samples, 0.57%)</title><rect x="85.2273%" y="676" width="0.5682%" height="15" fill="rgb(209,50,18)" fg:x="150" fg:w="1"/><text x="85.4773%" y="686.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.57%)</title><rect x="85.2273%" y="692" width="0.5682%" height="15" fill="rgb(250,19,35)" fg:x="150" fg:w="1"/><text x="85.4773%" y="702.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="85.2273%" y="708" width="0.5682%" height="15" fill="rgb(253,107,29)" fg:x="150" fg:w="1"/><text x="85.4773%" y="718.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.57%)</title><rect x="85.2273%" y="724" width="0.5682%" height="15" fill="rgb(252,179,29)" fg:x="150" fg:w="1"/><text x="85.4773%" y="734.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.57%)</title><rect x="85.2273%" y="740" width="0.5682%" height="15" fill="rgb(238,194,6)" fg:x="150" fg:w="1"/><text x="85.4773%" y="750.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.2273%" y="756" width="0.5682%" height="15" fill="rgb(238,164,29)" fg:x="150" fg:w="1"/><text x="85.4773%" y="766.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.2273%" y="772" width="0.5682%" height="15" fill="rgb(224,25,9)" fg:x="150" fg:w="1"/><text x="85.4773%" y="782.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.2273%" y="788" width="0.5682%" height="15" fill="rgb(244,153,23)" fg:x="150" fg:w="1"/><text x="85.4773%" y="798.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.2273%" y="804" width="0.5682%" height="15" fill="rgb(212,203,14)" fg:x="150" fg:w="1"/><text x="85.4773%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="85.2273%" y="404" width="1.1364%" height="15" fill="rgb(220,164,20)" fg:x="150" fg:w="2"/><text x="85.4773%" y="414.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="85.2273%" y="420" width="1.1364%" height="15" fill="rgb(222,203,48)" fg:x="150" fg:w="2"/><text x="85.4773%" y="430.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="85.2273%" y="436" width="1.1364%" height="15" fill="rgb(215,159,22)" fg:x="150" fg:w="2"/><text x="85.4773%" y="446.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="85.2273%" y="452" width="1.1364%" height="15" fill="rgb(216,183,47)" fg:x="150" fg:w="2"/><text x="85.4773%" y="462.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="85.2273%" y="468" width="1.1364%" height="15" fill="rgb(229,195,25)" fg:x="150" fg:w="2"/><text x="85.4773%" y="478.50"></text></g><g><title><module> (urllib3/__init__.py:1) (1 samples, 0.57%)</title><rect x="85.7955%" y="484" width="0.5682%" height="15" fill="rgb(224,132,51)" fg:x="151" fg:w="1"/><text x="86.0455%" y="494.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.7955%" y="500" width="0.5682%" height="15" fill="rgb(240,63,7)" fg:x="151" fg:w="1"/><text x="86.0455%" y="510.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.7955%" y="516" width="0.5682%" height="15" fill="rgb(249,182,41)" fg:x="151" fg:w="1"/><text x="86.0455%" y="526.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.7955%" y="532" width="0.5682%" height="15" fill="rgb(243,47,26)" fg:x="151" fg:w="1"/><text x="86.0455%" y="542.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.7955%" y="548" width="0.5682%" height="15" fill="rgb(233,48,2)" fg:x="151" fg:w="1"/><text x="86.0455%" y="558.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.7955%" y="564" width="0.5682%" height="15" fill="rgb(244,165,34)" fg:x="151" fg:w="1"/><text x="86.0455%" y="574.50"></text></g><g><title><module> (urllib3/_base_connection.py:1) (1 samples, 0.57%)</title><rect x="85.7955%" y="580" width="0.5682%" height="15" fill="rgb(207,89,7)" fg:x="151" fg:w="1"/><text x="86.0455%" y="590.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.7955%" y="596" width="0.5682%" height="15" fill="rgb(244,117,36)" fg:x="151" fg:w="1"/><text x="86.0455%" y="606.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.7955%" y="612" width="0.5682%" height="15" fill="rgb(226,144,34)" fg:x="151" fg:w="1"/><text x="86.0455%" y="622.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.7955%" y="628" width="0.5682%" height="15" fill="rgb(213,23,19)" fg:x="151" fg:w="1"/><text x="86.0455%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.7955%" y="644" width="0.5682%" height="15" fill="rgb(217,75,12)" fg:x="151" fg:w="1"/><text x="86.0455%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.7955%" y="660" width="0.5682%" height="15" fill="rgb(224,159,17)" fg:x="151" fg:w="1"/><text x="86.0455%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.7955%" y="676" width="0.5682%" height="15" fill="rgb(217,118,1)" fg:x="151" fg:w="1"/><text x="86.0455%" y="686.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.7955%" y="692" width="0.5682%" height="15" fill="rgb(232,180,48)" fg:x="151" fg:w="1"/><text x="86.0455%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.7955%" y="708" width="0.5682%" height="15" fill="rgb(230,27,33)" fg:x="151" fg:w="1"/><text x="86.0455%" y="718.50"></text></g><g><title><module> (urllib3/util/__init__.py:2) (1 samples, 0.57%)</title><rect x="85.7955%" y="724" width="0.5682%" height="15" fill="rgb(205,31,21)" fg:x="151" fg:w="1"/><text x="86.0455%" y="734.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.7955%" y="740" width="0.5682%" height="15" fill="rgb(253,59,4)" fg:x="151" fg:w="1"/><text x="86.0455%" y="750.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.7955%" y="756" width="0.5682%" height="15" fill="rgb(224,201,9)" fg:x="151" fg:w="1"/><text x="86.0455%" y="766.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.7955%" y="772" width="0.5682%" height="15" fill="rgb(229,206,30)" fg:x="151" fg:w="1"/><text x="86.0455%" y="782.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.7955%" y="788" width="0.5682%" height="15" fill="rgb(212,67,47)" fg:x="151" fg:w="1"/><text x="86.0455%" y="798.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.7955%" y="804" width="0.5682%" height="15" fill="rgb(211,96,50)" fg:x="151" fg:w="1"/><text x="86.0455%" y="814.50"></text></g><g><title><module> (urllib3/util/ssl_.py:1) (1 samples, 0.57%)</title><rect x="85.7955%" y="820" width="0.5682%" height="15" fill="rgb(252,114,18)" fg:x="151" fg:w="1"/><text x="86.0455%" y="830.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="85.7955%" y="836" width="0.5682%" height="15" fill="rgb(223,58,37)" fg:x="151" fg:w="1"/><text x="86.0455%" y="846.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="85.7955%" y="852" width="0.5682%" height="15" fill="rgb(237,70,4)" fg:x="151" fg:w="1"/><text x="86.0455%" y="862.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="85.7955%" y="868" width="0.5682%" height="15" fill="rgb(244,85,46)" fg:x="151" fg:w="1"/><text x="86.0455%" y="878.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="85.7955%" y="884" width="0.5682%" height="15" fill="rgb(223,39,52)" fg:x="151" fg:w="1"/><text x="86.0455%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="85.7955%" y="900" width="0.5682%" height="15" fill="rgb(218,200,14)" fg:x="151" fg:w="1"/><text x="86.0455%" y="910.50"></text></g><g><title><module> (urllib3/util/url.py:1) (1 samples, 0.57%)</title><rect x="85.7955%" y="916" width="0.5682%" height="15" fill="rgb(208,171,16)" fg:x="151" fg:w="1"/><text x="86.0455%" y="926.50"></text></g><g><title>compile (re.py:250) (1 samples, 0.57%)</title><rect x="85.7955%" y="932" width="0.5682%" height="15" fill="rgb(234,200,18)" fg:x="151" fg:w="1"/><text x="86.0455%" y="942.50"></text></g><g><title>_compile (re.py:289) (1 samples, 0.57%)</title><rect x="85.7955%" y="948" width="0.5682%" height="15" fill="rgb(228,45,11)" fg:x="151" fg:w="1"/><text x="86.0455%" y="958.50"></text></g><g><title>compile (sre_compile.py:783) (1 samples, 0.57%)</title><rect x="85.7955%" y="964" width="0.5682%" height="15" fill="rgb(237,182,11)" fg:x="151" fg:w="1"/><text x="86.0455%" y="974.50"></text></g><g><title>parse (sre_parse.py:944) (1 samples, 0.57%)</title><rect x="85.7955%" y="980" width="0.5682%" height="15" fill="rgb(241,175,49)" fg:x="151" fg:w="1"/><text x="86.0455%" y="990.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.7955%" y="996" width="0.5682%" height="15" fill="rgb(247,38,35)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1006.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.7955%" y="1012" width="0.5682%" height="15" fill="rgb(228,39,49)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1022.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.7955%" y="1028" width="0.5682%" height="15" fill="rgb(226,101,26)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1038.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.7955%" y="1044" width="0.5682%" height="15" fill="rgb(206,141,19)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1054.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.7955%" y="1060" width="0.5682%" height="15" fill="rgb(211,200,13)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1070.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.7955%" y="1076" width="0.5682%" height="15" fill="rgb(241,121,6)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1086.50"></text></g><g><title>_parse_sub (sre_parse.py:436) (1 samples, 0.57%)</title><rect x="85.7955%" y="1092" width="0.5682%" height="15" fill="rgb(234,221,29)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1102.50"></text></g><g><title>_parse (sre_parse.py:494) (1 samples, 0.57%)</title><rect x="85.7955%" y="1108" width="0.5682%" height="15" fill="rgb(229,136,5)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1118.50"></text></g><g><title>__getitem__ (sre_parse.py:165) (1 samples, 0.57%)</title><rect x="85.7955%" y="1124" width="0.5682%" height="15" fill="rgb(238,36,11)" fg:x="151" fg:w="1"/><text x="86.0455%" y="1134.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="85.2273%" y="116" width="1.7045%" height="15" fill="rgb(251,55,41)" fg:x="150" fg:w="3"/><text x="85.4773%" y="126.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="85.2273%" y="132" width="1.7045%" height="15" fill="rgb(242,34,40)" fg:x="150" fg:w="3"/><text x="85.4773%" y="142.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="85.2273%" y="148" width="1.7045%" height="15" fill="rgb(215,42,17)" fg:x="150" fg:w="3"/><text x="85.4773%" y="158.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="85.2273%" y="164" width="1.7045%" height="15" fill="rgb(207,44,46)" fg:x="150" fg:w="3"/><text x="85.4773%" y="174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="85.2273%" y="180" width="1.7045%" height="15" fill="rgb(211,206,28)" fg:x="150" fg:w="3"/><text x="85.4773%" y="190.50"></text></g><g><title><module> (pooch/__init__.py:10) (3 samples, 1.70%)</title><rect x="85.2273%" y="196" width="1.7045%" height="15" fill="rgb(237,167,16)" fg:x="150" fg:w="3"/><text x="85.4773%" y="206.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="85.2273%" y="212" width="1.7045%" height="15" fill="rgb(233,66,6)" fg:x="150" fg:w="3"/><text x="85.4773%" y="222.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="85.2273%" y="228" width="1.7045%" height="15" fill="rgb(246,123,29)" fg:x="150" fg:w="3"/><text x="85.4773%" y="238.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="85.2273%" y="244" width="1.7045%" height="15" fill="rgb(209,62,40)" fg:x="150" fg:w="3"/><text x="85.4773%" y="254.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="85.2273%" y="260" width="1.7045%" height="15" fill="rgb(218,4,25)" fg:x="150" fg:w="3"/><text x="85.4773%" y="270.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="85.2273%" y="276" width="1.7045%" height="15" fill="rgb(253,91,49)" fg:x="150" fg:w="3"/><text x="85.4773%" y="286.50"></text></g><g><title><module> (pooch/core.py:7) (3 samples, 1.70%)</title><rect x="85.2273%" y="292" width="1.7045%" height="15" fill="rgb(228,155,29)" fg:x="150" fg:w="3"/><text x="85.4773%" y="302.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="85.2273%" y="308" width="1.7045%" height="15" fill="rgb(243,57,37)" fg:x="150" fg:w="3"/><text x="85.4773%" y="318.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="85.2273%" y="324" width="1.7045%" height="15" fill="rgb(244,167,17)" fg:x="150" fg:w="3"/><text x="85.4773%" y="334.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="85.2273%" y="340" width="1.7045%" height="15" fill="rgb(207,181,38)" fg:x="150" fg:w="3"/><text x="85.4773%" y="350.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="85.2273%" y="356" width="1.7045%" height="15" fill="rgb(211,8,23)" fg:x="150" fg:w="3"/><text x="85.4773%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="85.2273%" y="372" width="1.7045%" height="15" fill="rgb(235,11,44)" fg:x="150" fg:w="3"/><text x="85.4773%" y="382.50"></text></g><g><title><module> (requests/__init__.py:6) (3 samples, 1.70%)</title><rect x="85.2273%" y="388" width="1.7045%" height="15" fill="rgb(248,18,52)" fg:x="150" fg:w="3"/><text x="85.4773%" y="398.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="86.3636%" y="404" width="0.5682%" height="15" fill="rgb(208,4,7)" fg:x="152" fg:w="1"/><text x="86.6136%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="86.3636%" y="420" width="0.5682%" height="15" fill="rgb(240,17,39)" fg:x="152" fg:w="1"/><text x="86.6136%" y="430.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="86.3636%" y="436" width="0.5682%" height="15" fill="rgb(207,170,3)" fg:x="152" fg:w="1"/><text x="86.6136%" y="446.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="86.3636%" y="452" width="0.5682%" height="15" fill="rgb(236,100,52)" fg:x="152" fg:w="1"/><text x="86.6136%" y="462.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="86.3636%" y="468" width="0.5682%" height="15" fill="rgb(246,78,51)" fg:x="152" fg:w="1"/><text x="86.6136%" y="478.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="86.3636%" y="484" width="0.5682%" height="15" fill="rgb(211,17,15)" fg:x="152" fg:w="1"/><text x="86.6136%" y="494.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="86.3636%" y="500" width="0.5682%" height="15" fill="rgb(209,59,46)" fg:x="152" fg:w="1"/><text x="86.6136%" y="510.50"></text></g><g><title><module> (requests/packages.py:1) (1 samples, 0.57%)</title><rect x="86.3636%" y="516" width="0.5682%" height="15" fill="rgb(210,92,25)" fg:x="152" fg:w="1"/><text x="86.6136%" y="526.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="86.3636%" y="532" width="0.5682%" height="15" fill="rgb(238,174,52)" fg:x="152" fg:w="1"/><text x="86.6136%" y="542.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="86.3636%" y="548" width="0.5682%" height="15" fill="rgb(230,73,7)" fg:x="152" fg:w="1"/><text x="86.6136%" y="558.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="86.3636%" y="564" width="0.5682%" height="15" fill="rgb(243,124,40)" fg:x="152" fg:w="1"/><text x="86.6136%" y="574.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="86.3636%" y="580" width="0.5682%" height="15" fill="rgb(244,170,11)" fg:x="152" fg:w="1"/><text x="86.6136%" y="590.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="86.3636%" y="596" width="0.5682%" height="15" fill="rgb(207,114,54)" fg:x="152" fg:w="1"/><text x="86.6136%" y="606.50"></text></g><g><title><module> (idna/__init__.py:1) (1 samples, 0.57%)</title><rect x="86.3636%" y="612" width="0.5682%" height="15" fill="rgb(205,42,20)" fg:x="152" fg:w="1"/><text x="86.6136%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="86.3636%" y="628" width="0.5682%" height="15" fill="rgb(230,30,28)" fg:x="152" fg:w="1"/><text x="86.6136%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="86.3636%" y="644" width="0.5682%" height="15" fill="rgb(205,73,54)" fg:x="152" fg:w="1"/><text x="86.6136%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="86.3636%" y="660" width="0.5682%" height="15" fill="rgb(254,227,23)" fg:x="152" fg:w="1"/><text x="86.6136%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="86.3636%" y="676" width="0.5682%" height="15" fill="rgb(228,202,34)" fg:x="152" fg:w="1"/><text x="86.6136%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="86.3636%" y="692" width="0.5682%" height="15" fill="rgb(222,225,37)" fg:x="152" fg:w="1"/><text x="86.6136%" y="702.50"></text></g><g><title><module> (idna/core.py:1) (1 samples, 0.57%)</title><rect x="86.3636%" y="708" width="0.5682%" height="15" fill="rgb(221,14,54)" fg:x="152" fg:w="1"/><text x="86.6136%" y="718.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="86.3636%" y="724" width="0.5682%" height="15" fill="rgb(254,102,2)" fg:x="152" fg:w="1"/><text x="86.6136%" y="734.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="86.3636%" y="740" width="0.5682%" height="15" fill="rgb(232,104,17)" fg:x="152" fg:w="1"/><text x="86.6136%" y="750.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="86.3636%" y="756" width="0.5682%" height="15" fill="rgb(250,220,14)" fg:x="152" fg:w="1"/><text x="86.6136%" y="766.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="86.3636%" y="772" width="0.5682%" height="15" fill="rgb(241,158,9)" fg:x="152" fg:w="1"/><text x="86.6136%" y="782.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="86.3636%" y="788" width="0.5682%" height="15" fill="rgb(246,9,43)" fg:x="152" fg:w="1"/><text x="86.6136%" y="798.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="86.3636%" y="804" width="0.5682%" height="15" fill="rgb(206,73,33)" fg:x="152" fg:w="1"/><text x="86.6136%" y="814.50"></text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="86.3636%" y="820" width="0.5682%" height="15" fill="rgb(222,79,8)" fg:x="152" fg:w="1"/><text x="86.6136%" y="830.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="86.3636%" y="836" width="0.5682%" height="15" fill="rgb(234,8,54)" fg:x="152" fg:w="1"/><text x="86.6136%" y="846.50"></text></g><g><title><module> (pyparsing/common.py:2) (1 samples, 0.57%)</title><rect x="86.9318%" y="1284" width="0.5682%" height="15" fill="rgb(209,134,38)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1294.50"></text></g><g><title>pyparsing_common (pyparsing/common.py:8) (1 samples, 0.57%)</title><rect x="86.9318%" y="1300" width="0.5682%" height="15" fill="rgb(230,127,29)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:5706) (1 samples, 0.57%)</title><rect x="86.9318%" y="1316" width="0.5682%" height="15" fill="rgb(242,44,41)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1326.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:4577) (1 samples, 0.57%)</title><rect x="86.9318%" y="1332" width="0.5682%" height="15" fill="rgb(222,56,43)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1342.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:4577) (1 samples, 0.57%)</title><rect x="86.9318%" y="1348" width="0.5682%" height="15" fill="rgb(238,39,47)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1358.50"></text></g><g><title>leave_whitespace (pyparsing/core.py:3788) (1 samples, 0.57%)</title><rect x="86.9318%" y="1364" width="0.5682%" height="15" fill="rgb(226,79,43)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1374.50"></text></g><g><title><listcomp> (pyparsing/core.py:3796) (1 samples, 0.57%)</title><rect x="86.9318%" y="1380" width="0.5682%" height="15" fill="rgb(242,105,53)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1390.50"></text></g><g><title>copy (pyparsing/core.py:3880) (1 samples, 0.57%)</title><rect x="86.9318%" y="1396" width="0.5682%" height="15" fill="rgb(251,132,46)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1406.50"></text></g><g><title>copy (pyparsing/core.py:522) (1 samples, 0.57%)</title><rect x="86.9318%" y="1412" width="0.5682%" height="15" fill="rgb(231,77,14)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1422.50"></text></g><g><title>copy (copy.py:66) (1 samples, 0.57%)</title><rect x="86.9318%" y="1428" width="0.5682%" height="15" fill="rgb(240,135,9)" fg:x="153" fg:w="1"/><text x="87.1818%" y="1438.50"></text></g><g><title>__add__ (pyparsing/core.py:1410) (1 samples, 0.57%)</title><rect x="87.5000%" y="1300" width="0.5682%" height="15" fill="rgb(248,109,14)" fg:x="154" fg:w="1"/><text x="87.7500%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:3948) (1 samples, 0.57%)</title><rect x="87.5000%" y="1316" width="0.5682%" height="15" fill="rgb(227,146,52)" fg:x="154" fg:w="1"/><text x="87.7500%" y="1326.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="86.9318%" y="788" width="1.7045%" height="15" fill="rgb(232,54,3)" fg:x="153" fg:w="3"/><text x="87.1818%" y="798.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="86.9318%" y="804" width="1.7045%" height="15" fill="rgb(229,201,43)" fg:x="153" fg:w="3"/><text x="87.1818%" y="814.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="86.9318%" y="820" width="1.7045%" height="15" fill="rgb(252,161,33)" fg:x="153" fg:w="3"/><text x="87.1818%" y="830.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="86.9318%" y="836" width="1.7045%" height="15" fill="rgb(226,146,40)" fg:x="153" fg:w="3"/><text x="87.1818%" y="846.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="852" width="1.7045%" height="15" fill="rgb(219,47,25)" fg:x="153" fg:w="3"/><text x="87.1818%" y="862.50"></text></g><g><title><module> (google_auth_httplib2.py:15) (3 samples, 1.70%)</title><rect x="86.9318%" y="868" width="1.7045%" height="15" fill="rgb(250,135,13)" fg:x="153" fg:w="3"/><text x="87.1818%" y="878.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="86.9318%" y="884" width="1.7045%" height="15" fill="rgb(219,229,18)" fg:x="153" fg:w="3"/><text x="87.1818%" y="894.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="86.9318%" y="900" width="1.7045%" height="15" fill="rgb(217,152,27)" fg:x="153" fg:w="3"/><text x="87.1818%" y="910.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="86.9318%" y="916" width="1.7045%" height="15" fill="rgb(225,71,47)" fg:x="153" fg:w="3"/><text x="87.1818%" y="926.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="86.9318%" y="932" width="1.7045%" height="15" fill="rgb(220,139,14)" fg:x="153" fg:w="3"/><text x="87.1818%" y="942.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="948" width="1.7045%" height="15" fill="rgb(247,54,32)" fg:x="153" fg:w="3"/><text x="87.1818%" y="958.50"></text></g><g><title><module> (httplib2/__init__.py:2) (3 samples, 1.70%)</title><rect x="86.9318%" y="964" width="1.7045%" height="15" fill="rgb(252,131,39)" fg:x="153" fg:w="3"/><text x="87.1818%" y="974.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="86.9318%" y="980" width="1.7045%" height="15" fill="rgb(210,108,39)" fg:x="153" fg:w="3"/><text x="87.1818%" y="990.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="996" width="1.7045%" height="15" fill="rgb(205,23,29)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1006.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="86.9318%" y="1012" width="1.7045%" height="15" fill="rgb(246,139,46)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1022.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="86.9318%" y="1028" width="1.7045%" height="15" fill="rgb(250,81,26)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1038.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="86.9318%" y="1044" width="1.7045%" height="15" fill="rgb(214,104,7)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1054.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="86.9318%" y="1060" width="1.7045%" height="15" fill="rgb(233,189,8)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1070.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="1076" width="1.7045%" height="15" fill="rgb(228,141,17)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1086.50"></text></g><g><title><module> (httplib2/auth.py:1) (3 samples, 1.70%)</title><rect x="86.9318%" y="1092" width="1.7045%" height="15" fill="rgb(247,157,1)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1102.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="86.9318%" y="1108" width="1.7045%" height="15" fill="rgb(249,225,5)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1118.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="86.9318%" y="1124" width="1.7045%" height="15" fill="rgb(242,55,13)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1134.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="86.9318%" y="1140" width="1.7045%" height="15" fill="rgb(230,49,50)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1150.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="86.9318%" y="1156" width="1.7045%" height="15" fill="rgb(241,111,38)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1166.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="1172" width="1.7045%" height="15" fill="rgb(252,155,4)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1182.50"></text></g><g><title><module> (pyparsing/__init__.py:25) (3 samples, 1.70%)</title><rect x="86.9318%" y="1188" width="1.7045%" height="15" fill="rgb(212,69,32)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1198.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="86.9318%" y="1204" width="1.7045%" height="15" fill="rgb(243,107,47)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1214.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="86.9318%" y="1220" width="1.7045%" height="15" fill="rgb(247,130,12)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1230.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="86.9318%" y="1236" width="1.7045%" height="15" fill="rgb(233,74,16)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1246.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="86.9318%" y="1252" width="1.7045%" height="15" fill="rgb(208,58,18)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1262.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="86.9318%" y="1268" width="1.7045%" height="15" fill="rgb(242,225,1)" fg:x="153" fg:w="3"/><text x="87.1818%" y="1278.50"></text></g><g><title><module> (pyparsing/core.py:5) (2 samples, 1.14%)</title><rect x="87.5000%" y="1284" width="1.1364%" height="15" fill="rgb(249,39,40)" fg:x="154" fg:w="2"/><text x="87.7500%" y="1294.50"></text></g><g><title>__init__ (pyparsing/core.py:5706) (1 samples, 0.57%)</title><rect x="88.0682%" y="1300" width="0.5682%" height="15" fill="rgb(207,72,44)" fg:x="155" fg:w="1"/><text x="88.3182%" y="1310.50"></text></g><g><title>__init__ (pyparsing/core.py:5682) (1 samples, 0.57%)</title><rect x="88.0682%" y="1316" width="0.5682%" height="15" fill="rgb(215,193,12)" fg:x="155" fg:w="1"/><text x="88.3182%" y="1326.50"></text></g><g><title>__init__ (pyparsing/core.py:4540) (1 samples, 0.57%)</title><rect x="88.0682%" y="1332" width="0.5682%" height="15" fill="rgb(248,41,39)" fg:x="155" fg:w="1"/><text x="88.3182%" y="1342.50"></text></g><g><title>Certificate (pyasn1_modules/rfc2459.py:1252) (1 samples, 0.57%)</title><rect x="88.6364%" y="1652" width="0.5682%" height="15" fill="rgb(253,85,4)" fg:x="156" fg:w="1"/><text x="88.8864%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.57%)</title><rect x="88.6364%" y="1668" width="0.5682%" height="15" fill="rgb(243,70,31)" fg:x="156" fg:w="1"/><text x="88.8864%" y="1678.50"></text></g><g><title>__computeAmbiguousTypes (pyasn1/type/namedtype.py:269) (1 samples, 0.57%)</title><rect x="88.6364%" y="1684" width="0.5682%" height="15" fill="rgb(253,195,26)" fg:x="156" fg:w="1"/><text x="88.8864%" y="1694.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (1 samples, 0.57%)</title><rect x="88.6364%" y="1700" width="0.5682%" height="15" fill="rgb(243,42,11)" fg:x="156" fg:w="1"/><text x="88.8864%" y="1710.50"></text></g><g><title>__computeNameToPosMap (pyasn1/type/namedtype.py:260) (1 samples, 0.57%)</title><rect x="88.6364%" y="1716" width="0.5682%" height="15" fill="rgb(239,66,17)" fg:x="156" fg:w="1"/><text x="88.8864%" y="1726.50"></text></g><g><title><module> (pyasn1_modules/rfc2459.py:19) (2 samples, 1.14%)</title><rect x="88.6364%" y="1636" width="1.1364%" height="15" fill="rgb(217,132,21)" fg:x="156" fg:w="2"/><text x="88.8864%" y="1646.50"></text></g><g><title>X520StateOrProvinceName (pyasn1_modules/rfc2459.py:162) (1 samples, 0.57%)</title><rect x="89.2045%" y="1652" width="0.5682%" height="15" fill="rgb(252,202,21)" fg:x="157" fg:w="1"/><text x="89.4545%" y="1662.50"></text></g><g><title>__init__ (pyasn1/type/univ.py:797) (1 samples, 0.57%)</title><rect x="89.2045%" y="1668" width="0.5682%" height="15" fill="rgb(233,98,36)" fg:x="157" fg:w="1"/><text x="89.4545%" y="1678.50"></text></g><g><title>__init__ (pyasn1/type/base.py:261) (1 samples, 0.57%)</title><rect x="89.2045%" y="1684" width="0.5682%" height="15" fill="rgb(216,153,54)" fg:x="157" fg:w="1"/><text x="89.4545%" y="1694.50"></text></g><g><title>__setattr__ (pyasn1/type/base.py:62) (1 samples, 0.57%)</title><rect x="89.2045%" y="1700" width="0.5682%" height="15" fill="rgb(250,99,7)" fg:x="157" fg:w="1"/><text x="89.4545%" y="1710.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (1 samples, 0.57%)</title><rect x="89.7727%" y="1956" width="0.5682%" height="15" fill="rgb(207,56,50)" fg:x="158" fg:w="1"/><text x="90.0227%" y="1966.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (1 samples, 0.57%)</title><rect x="89.7727%" y="1972" width="0.5682%" height="15" fill="rgb(244,61,34)" fg:x="158" fg:w="1"/><text x="90.0227%" y="1982.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (1 samples, 0.57%)</title><rect x="89.7727%" y="1988" width="0.5682%" height="15" fill="rgb(241,50,38)" fg:x="158" fg:w="1"/><text x="90.0227%" y="1998.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.57%)</title><rect x="89.7727%" y="2004" width="0.5682%" height="15" fill="rgb(212,166,30)" fg:x="158" fg:w="1"/><text x="90.0227%" y="2014.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (1 samples, 0.57%)</title><rect x="89.7727%" y="2020" width="0.5682%" height="15" fill="rgb(249,127,32)" fg:x="158" fg:w="1"/><text x="90.0227%" y="2030.50"></text></g><g><title>__repr__ (pyasn1/type/constraint.py:39) (1 samples, 0.57%)</title><rect x="89.7727%" y="2036" width="0.5682%" height="15" fill="rgb(209,103,0)" fg:x="158" fg:w="1"/><text x="90.0227%" y="2046.50"></text></g><g><title><listcomp> (pyasn1/type/constraint.py:44) (1 samples, 0.57%)</title><rect x="89.7727%" y="2052" width="0.5682%" height="15" fill="rgb(238,209,51)" fg:x="158" fg:w="1"/><text x="90.0227%" y="2062.50"></text></g><g><title>__repr__ (pyasn1/type/constraint.py:39) (1 samples, 0.57%)</title><rect x="89.7727%" y="2068" width="0.5682%" height="15" fill="rgb(237,56,23)" fg:x="158" fg:w="1"/><text x="90.0227%" y="2078.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="88.6364%" y="1556" width="2.2727%" height="15" fill="rgb(215,153,46)" fg:x="156" fg:w="4"/><text x="88.8864%" y="1566.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="88.6364%" y="1572" width="2.2727%" height="15" fill="rgb(224,49,31)" fg:x="156" fg:w="4"/><text x="88.8864%" y="1582.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="88.6364%" y="1588" width="2.2727%" height="15" fill="rgb(250,18,42)" fg:x="156" fg:w="4"/><text x="88.8864%" y="1598.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="88.6364%" y="1604" width="2.2727%" height="15" fill="rgb(215,176,39)" fg:x="156" fg:w="4"/><text x="88.8864%" y="1614.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="88.6364%" y="1620" width="2.2727%" height="15" fill="rgb(223,77,29)" fg:x="156" fg:w="4"/><text x="88.8864%" y="1630.50">_..</text></g><g><title><module> (pyasn1_modules/rfc5208.py:14) (2 samples, 1.14%)</title><rect x="89.7727%" y="1636" width="1.1364%" height="15" fill="rgb(234,94,52)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1646.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (2 samples, 1.14%)</title><rect x="89.7727%" y="1652" width="1.1364%" height="15" fill="rgb(220,154,50)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1662.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="89.7727%" y="1668" width="1.1364%" height="15" fill="rgb(212,11,10)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1678.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="89.7727%" y="1684" width="1.1364%" height="15" fill="rgb(205,166,19)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1694.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="89.7727%" y="1700" width="1.1364%" height="15" fill="rgb(244,198,16)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1710.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="89.7727%" y="1716" width="1.1364%" height="15" fill="rgb(219,69,12)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1726.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="89.7727%" y="1732" width="1.1364%" height="15" fill="rgb(245,30,7)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1742.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="89.7727%" y="1748" width="1.1364%" height="15" fill="rgb(218,221,48)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1758.50"></text></g><g><title><module> (pyasn1_modules/rfc2251.py:15) (2 samples, 1.14%)</title><rect x="89.7727%" y="1764" width="1.1364%" height="15" fill="rgb(216,66,15)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1774.50"></text></g><g><title>SearchRequest (pyasn1_modules/rfc2251.py:257) (2 samples, 1.14%)</title><rect x="89.7727%" y="1780" width="1.1364%" height="15" fill="rgb(226,122,50)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1790.50"></text></g><g><title>__init__ (pyasn1/type/namedtype.py:154) (2 samples, 1.14%)</title><rect x="89.7727%" y="1796" width="1.1364%" height="15" fill="rgb(239,156,16)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1806.50"></text></g><g><title>__computeTagMaps (pyasn1/type/namedtype.py:472) (2 samples, 1.14%)</title><rect x="89.7727%" y="1812" width="1.1364%" height="15" fill="rgb(224,27,38)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1822.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (2 samples, 1.14%)</title><rect x="89.7727%" y="1828" width="1.1364%" height="15" fill="rgb(224,39,27)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1838.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (2 samples, 1.14%)</title><rect x="89.7727%" y="1844" width="1.1364%" height="15" fill="rgb(215,92,29)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1854.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (2 samples, 1.14%)</title><rect x="89.7727%" y="1860" width="1.1364%" height="15" fill="rgb(207,159,16)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1870.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (2 samples, 1.14%)</title><rect x="89.7727%" y="1876" width="1.1364%" height="15" fill="rgb(238,163,47)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1886.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:175) (2 samples, 1.14%)</title><rect x="89.7727%" y="1892" width="1.1364%" height="15" fill="rgb(219,91,49)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1902.50"></text></g><g><title><listcomp> (pyasn1/type/namedtype.py:176) (2 samples, 1.14%)</title><rect x="89.7727%" y="1908" width="1.1364%" height="15" fill="rgb(227,167,31)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1918.50"></text></g><g><title>__repr__ (pyasn1/type/namedtype.py:48) (2 samples, 1.14%)</title><rect x="89.7727%" y="1924" width="1.1364%" height="15" fill="rgb(234,80,54)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1934.50"></text></g><g><title>__repr__ (pyasn1/type/base.py:533) (2 samples, 1.14%)</title><rect x="89.7727%" y="1940" width="1.1364%" height="15" fill="rgb(212,114,2)" fg:x="158" fg:w="2"/><text x="90.0227%" y="1950.50"></text></g><g><title>__repr__ (pyasn1/type/tag.py:196) (1 samples, 0.57%)</title><rect x="90.3409%" y="1956" width="0.5682%" height="15" fill="rgb(234,50,24)" fg:x="159" fg:w="1"/><text x="90.5909%" y="1966.50"></text></g><g><title>__enter__ (<frozen importlib._bootstrap>:156) (1 samples, 0.57%)</title><rect x="90.9091%" y="2340" width="0.5682%" height="15" fill="rgb(221,68,8)" fg:x="160" fg:w="1"/><text x="91.1591%" y="2350.50"></text></g><g><title>acquire (<frozen importlib._bootstrap>:87) (1 samples, 0.57%)</title><rect x="90.9091%" y="2356" width="0.5682%" height="15" fill="rgb(254,180,31)" fg:x="160" fg:w="1"/><text x="91.1591%" y="2366.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="91.4773%" y="2356" width="0.5682%" height="15" fill="rgb(247,130,50)" fg:x="161" fg:w="1"/><text x="91.7273%" y="2366.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="91.4773%" y="2372" width="0.5682%" height="15" fill="rgb(211,109,4)" fg:x="161" fg:w="1"/><text x="91.7273%" y="2382.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="91.4773%" y="2388" width="0.5682%" height="15" fill="rgb(238,50,21)" fg:x="161" fg:w="1"/><text x="91.7273%" y="2398.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1514) (1 samples, 0.57%)</title><rect x="91.4773%" y="2404" width="0.5682%" height="15" fill="rgb(225,57,45)" fg:x="161" fg:w="1"/><text x="91.7273%" y="2414.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="90.9091%" y="1812" width="1.7045%" height="15" fill="rgb(209,196,50)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1822.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="90.9091%" y="1828" width="1.7045%" height="15" fill="rgb(242,140,13)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1838.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="90.9091%" y="1844" width="1.7045%" height="15" fill="rgb(217,111,7)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1854.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="90.9091%" y="1860" width="1.7045%" height="15" fill="rgb(253,193,51)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1870.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="1876" width="1.7045%" height="15" fill="rgb(252,70,29)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1886.50"></text></g><g><title><module> (pyasn1/codec/streaming.py:7) (3 samples, 1.70%)</title><rect x="90.9091%" y="1892" width="1.7045%" height="15" fill="rgb(232,127,12)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1902.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="90.9091%" y="1908" width="1.7045%" height="15" fill="rgb(211,180,21)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1918.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="1924" width="1.7045%" height="15" fill="rgb(229,72,13)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1934.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="90.9091%" y="1940" width="1.7045%" height="15" fill="rgb(240,211,49)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1950.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="90.9091%" y="1956" width="1.7045%" height="15" fill="rgb(219,149,40)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1966.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="90.9091%" y="1972" width="1.7045%" height="15" fill="rgb(210,127,46)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1982.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="90.9091%" y="1988" width="1.7045%" height="15" fill="rgb(220,106,7)" fg:x="160" fg:w="3"/><text x="91.1591%" y="1998.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2004" width="1.7045%" height="15" fill="rgb(249,31,22)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2014.50"></text></g><g><title><module> (pyasn1/type/univ.py:7) (3 samples, 1.70%)</title><rect x="90.9091%" y="2020" width="1.7045%" height="15" fill="rgb(253,1,49)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2030.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="90.9091%" y="2036" width="1.7045%" height="15" fill="rgb(227,144,33)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2046.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2052" width="1.7045%" height="15" fill="rgb(249,163,44)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2062.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="90.9091%" y="2068" width="1.7045%" height="15" fill="rgb(234,15,39)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2078.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="90.9091%" y="2084" width="1.7045%" height="15" fill="rgb(207,66,16)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2094.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="90.9091%" y="2100" width="1.7045%" height="15" fill="rgb(233,112,24)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2110.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="90.9091%" y="2116" width="1.7045%" height="15" fill="rgb(230,90,22)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2126.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2132" width="1.7045%" height="15" fill="rgb(229,61,13)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2142.50"></text></g><g><title><module> (pyasn1/codec/ber/eoo.py:7) (3 samples, 1.70%)</title><rect x="90.9091%" y="2148" width="1.7045%" height="15" fill="rgb(225,57,24)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2158.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="90.9091%" y="2164" width="1.7045%" height="15" fill="rgb(208,169,48)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2174.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2180" width="1.7045%" height="15" fill="rgb(244,218,51)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2190.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="90.9091%" y="2196" width="1.7045%" height="15" fill="rgb(214,148,10)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2206.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="90.9091%" y="2212" width="1.7045%" height="15" fill="rgb(225,174,27)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2222.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="90.9091%" y="2228" width="1.7045%" height="15" fill="rgb(230,96,26)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2238.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="90.9091%" y="2244" width="1.7045%" height="15" fill="rgb(232,10,30)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2254.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2260" width="1.7045%" height="15" fill="rgb(222,8,50)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2270.50"></text></g><g><title><module> (pyasn1/type/base.py:7) (3 samples, 1.70%)</title><rect x="90.9091%" y="2276" width="1.7045%" height="15" fill="rgb(213,81,27)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2286.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (3 samples, 1.70%)</title><rect x="90.9091%" y="2292" width="1.7045%" height="15" fill="rgb(245,50,10)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2302.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="90.9091%" y="2308" width="1.7045%" height="15" fill="rgb(216,100,18)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2318.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="90.9091%" y="2324" width="1.7045%" height="15" fill="rgb(236,147,54)" fg:x="160" fg:w="3"/><text x="91.1591%" y="2334.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="91.4773%" y="2340" width="1.1364%" height="15" fill="rgb(205,143,26)" fg:x="161" fg:w="2"/><text x="91.7273%" y="2350.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="92.0455%" y="2356" width="0.5682%" height="15" fill="rgb(236,26,9)" fg:x="162" fg:w="1"/><text x="92.2955%" y="2366.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="92.0455%" y="2372" width="0.5682%" height="15" fill="rgb(221,165,53)" fg:x="162" fg:w="1"/><text x="92.2955%" y="2382.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="92.0455%" y="2388" width="0.5682%" height="15" fill="rgb(214,110,17)" fg:x="162" fg:w="1"/><text x="92.2955%" y="2398.50"></text></g><g><title><module> (pyasn1/type/constraint.py:9) (1 samples, 0.57%)</title><rect x="92.0455%" y="2404" width="0.5682%" height="15" fill="rgb(237,197,12)" fg:x="162" fg:w="1"/><text x="92.2955%" y="2414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1140" width="4.5455%" height="15" fill="rgb(205,84,17)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1150.50">_call..</text></g><g><title><module> (auth/_service_account_info.py:15) (8 samples, 4.55%)</title><rect x="88.6364%" y="1156" width="4.5455%" height="15" fill="rgb(237,18,45)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1166.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 4.55%)</title><rect x="88.6364%" y="1172" width="4.5455%" height="15" fill="rgb(221,87,14)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1182.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1188" width="4.5455%" height="15" fill="rgb(238,186,15)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1198.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="88.6364%" y="1204" width="4.5455%" height="15" fill="rgb(208,115,11)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1214.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="88.6364%" y="1220" width="4.5455%" height="15" fill="rgb(254,175,0)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1230.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="88.6364%" y="1236" width="4.5455%" height="15" fill="rgb(227,24,42)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1246.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="88.6364%" y="1252" width="4.5455%" height="15" fill="rgb(223,211,37)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1262.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1268" width="4.5455%" height="15" fill="rgb(235,49,27)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1278.50">_call..</text></g><g><title><module> (auth/crypt/__init__.py:15) (8 samples, 4.55%)</title><rect x="88.6364%" y="1284" width="4.5455%" height="15" fill="rgb(254,97,51)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1294.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 4.55%)</title><rect x="88.6364%" y="1300" width="4.5455%" height="15" fill="rgb(249,51,40)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1310.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1316" width="4.5455%" height="15" fill="rgb(210,128,45)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1326.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="88.6364%" y="1332" width="4.5455%" height="15" fill="rgb(224,137,50)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1342.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="88.6364%" y="1348" width="4.5455%" height="15" fill="rgb(242,15,9)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1358.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="88.6364%" y="1364" width="4.5455%" height="15" fill="rgb(233,187,41)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1374.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="88.6364%" y="1380" width="4.5455%" height="15" fill="rgb(227,2,29)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1390.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1396" width="4.5455%" height="15" fill="rgb(222,70,3)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1406.50">_call..</text></g><g><title><module> (auth/crypt/rsa.py:15) (8 samples, 4.55%)</title><rect x="88.6364%" y="1412" width="4.5455%" height="15" fill="rgb(213,11,42)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1422.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (8 samples, 4.55%)</title><rect x="88.6364%" y="1428" width="4.5455%" height="15" fill="rgb(225,150,9)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1438.50">_hand..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1444" width="4.5455%" height="15" fill="rgb(230,162,45)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1454.50">_call..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (8 samples, 4.55%)</title><rect x="88.6364%" y="1460" width="4.5455%" height="15" fill="rgb(222,14,52)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1470.50">_find..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (8 samples, 4.55%)</title><rect x="88.6364%" y="1476" width="4.5455%" height="15" fill="rgb(254,198,14)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1486.50">_find..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (8 samples, 4.55%)</title><rect x="88.6364%" y="1492" width="4.5455%" height="15" fill="rgb(220,217,30)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1502.50">_load..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (8 samples, 4.55%)</title><rect x="88.6364%" y="1508" width="4.5455%" height="15" fill="rgb(215,146,41)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1518.50">exec_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (8 samples, 4.55%)</title><rect x="88.6364%" y="1524" width="4.5455%" height="15" fill="rgb(217,27,36)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1534.50">_call..</text></g><g><title><module> (auth/crypt/_python_rsa.py:15) (8 samples, 4.55%)</title><rect x="88.6364%" y="1540" width="4.5455%" height="15" fill="rgb(219,218,39)" fg:x="156" fg:w="8"/><text x="88.8864%" y="1550.50"><modu..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 2.27%)</title><rect x="90.9091%" y="1556" width="2.2727%" height="15" fill="rgb(219,4,42)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1566.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="90.9091%" y="1572" width="2.2727%" height="15" fill="rgb(249,119,36)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1582.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="90.9091%" y="1588" width="2.2727%" height="15" fill="rgb(209,23,33)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="90.9091%" y="1604" width="2.2727%" height="15" fill="rgb(211,10,0)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1614.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="90.9091%" y="1620" width="2.2727%" height="15" fill="rgb(208,99,37)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1630.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="90.9091%" y="1636" width="2.2727%" height="15" fill="rgb(213,132,31)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1646.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="90.9091%" y="1652" width="2.2727%" height="15" fill="rgb(243,129,40)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1662.50">_..</text></g><g><title><module> (pyasn1/codec/der/decoder.py:7) (4 samples, 2.27%)</title><rect x="90.9091%" y="1668" width="2.2727%" height="15" fill="rgb(210,66,33)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1678.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (4 samples, 2.27%)</title><rect x="90.9091%" y="1684" width="2.2727%" height="15" fill="rgb(209,189,4)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1694.50">_..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="90.9091%" y="1700" width="2.2727%" height="15" fill="rgb(214,107,37)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1710.50">_..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (4 samples, 2.27%)</title><rect x="90.9091%" y="1716" width="2.2727%" height="15" fill="rgb(245,88,54)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1726.50">_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (4 samples, 2.27%)</title><rect x="90.9091%" y="1732" width="2.2727%" height="15" fill="rgb(205,146,20)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1742.50">_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (4 samples, 2.27%)</title><rect x="90.9091%" y="1748" width="2.2727%" height="15" fill="rgb(220,161,25)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1758.50">_..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (4 samples, 2.27%)</title><rect x="90.9091%" y="1764" width="2.2727%" height="15" fill="rgb(215,152,15)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1774.50">e..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (4 samples, 2.27%)</title><rect x="90.9091%" y="1780" width="2.2727%" height="15" fill="rgb(233,192,44)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1790.50">_..</text></g><g><title><module> (pyasn1/codec/cer/decoder.py:7) (4 samples, 2.27%)</title><rect x="90.9091%" y="1796" width="2.2727%" height="15" fill="rgb(240,170,46)" fg:x="160" fg:w="4"/><text x="91.1591%" y="1806.50"><..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="92.6136%" y="1812" width="0.5682%" height="15" fill="rgb(207,104,33)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1822.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="92.6136%" y="1828" width="0.5682%" height="15" fill="rgb(219,21,39)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1838.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="92.6136%" y="1844" width="0.5682%" height="15" fill="rgb(214,133,29)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1854.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="92.6136%" y="1860" width="0.5682%" height="15" fill="rgb(226,93,6)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1870.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="92.6136%" y="1876" width="0.5682%" height="15" fill="rgb(252,222,34)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1886.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="92.6136%" y="1892" width="0.5682%" height="15" fill="rgb(252,92,48)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1902.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="92.6136%" y="1908" width="0.5682%" height="15" fill="rgb(245,223,24)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1918.50"></text></g><g><title><module> (pyasn1/codec/ber/decoder.py:7) (1 samples, 0.57%)</title><rect x="92.6136%" y="1924" width="0.5682%" height="15" fill="rgb(205,176,3)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1934.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="92.6136%" y="1940" width="0.5682%" height="15" fill="rgb(235,151,15)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1950.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="92.6136%" y="1956" width="0.5682%" height="15" fill="rgb(237,209,11)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1966.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="92.6136%" y="1972" width="0.5682%" height="15" fill="rgb(243,227,24)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1982.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="92.6136%" y="1988" width="0.5682%" height="15" fill="rgb(239,193,16)" fg:x="163" fg:w="1"/><text x="92.8636%" y="1998.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="92.6136%" y="2004" width="0.5682%" height="15" fill="rgb(231,27,9)" fg:x="163" fg:w="1"/><text x="92.8636%" y="2014.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="92.6136%" y="2020" width="0.5682%" height="15" fill="rgb(219,169,10)" fg:x="163" fg:w="1"/><text x="92.8636%" y="2030.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="92.6136%" y="2036" width="0.5682%" height="15" fill="rgb(244,229,43)" fg:x="163" fg:w="1"/><text x="92.8636%" y="2046.50"></text></g><g><title><module> (pyasn1/type/char.py:7) (1 samples, 0.57%)</title><rect x="92.6136%" y="2052" width="0.5682%" height="15" fill="rgb(254,38,20)" fg:x="163" fg:w="1"/><text x="92.8636%" y="2062.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (9 samples, 5.11%)</title><rect x="88.6364%" y="1124" width="5.1136%" height="15" fill="rgb(250,47,30)" fg:x="156" fg:w="9"/><text x="88.8864%" y="1134.50">exec_m..</text></g><g><title>get_code (<frozen importlib._bootstrap_external>:916) (1 samples, 0.57%)</title><rect x="93.1818%" y="1140" width="0.5682%" height="15" fill="rgb(224,124,36)" fg:x="164" fg:w="1"/><text x="93.4318%" y="1150.50"></text></g><g><title>get_data (<frozen importlib._bootstrap_external>:1036) (1 samples, 0.57%)</title><rect x="93.1818%" y="1156" width="0.5682%" height="15" fill="rgb(246,68,51)" fg:x="164" fg:w="1"/><text x="93.4318%" y="1166.50"></text></g><g><title><module> (ee/__init__.py:1) (13 samples, 7.39%)</title><rect x="86.9318%" y="516" width="7.3864%" height="15" fill="rgb(253,43,49)" fg:x="153" fg:w="13"/><text x="87.1818%" y="526.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (13 samples, 7.39%)</title><rect x="86.9318%" y="532" width="7.3864%" height="15" fill="rgb(219,54,36)" fg:x="153" fg:w="13"/><text x="87.1818%" y="542.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="86.9318%" y="548" width="7.3864%" height="15" fill="rgb(227,133,34)" fg:x="153" fg:w="13"/><text x="87.1818%" y="558.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="86.9318%" y="564" width="7.3864%" height="15" fill="rgb(247,227,15)" fg:x="153" fg:w="13"/><text x="87.1818%" y="574.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="86.9318%" y="580" width="7.3864%" height="15" fill="rgb(229,96,14)" fg:x="153" fg:w="13"/><text x="87.1818%" y="590.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="86.9318%" y="596" width="7.3864%" height="15" fill="rgb(220,79,17)" fg:x="153" fg:w="13"/><text x="87.1818%" y="606.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="86.9318%" y="612" width="7.3864%" height="15" fill="rgb(205,131,53)" fg:x="153" fg:w="13"/><text x="87.1818%" y="622.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="86.9318%" y="628" width="7.3864%" height="15" fill="rgb(209,50,29)" fg:x="153" fg:w="13"/><text x="87.1818%" y="638.50">_call_with..</text></g><g><title><module> (ee/batch.py:1) (13 samples, 7.39%)</title><rect x="86.9318%" y="644" width="7.3864%" height="15" fill="rgb(245,86,46)" fg:x="153" fg:w="13"/><text x="87.1818%" y="654.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (13 samples, 7.39%)</title><rect x="86.9318%" y="660" width="7.3864%" height="15" fill="rgb(235,66,46)" fg:x="153" fg:w="13"/><text x="87.1818%" y="670.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="86.9318%" y="676" width="7.3864%" height="15" fill="rgb(232,148,31)" fg:x="153" fg:w="13"/><text x="87.1818%" y="686.50">_call_with..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (13 samples, 7.39%)</title><rect x="86.9318%" y="692" width="7.3864%" height="15" fill="rgb(217,149,8)" fg:x="153" fg:w="13"/><text x="87.1818%" y="702.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (13 samples, 7.39%)</title><rect x="86.9318%" y="708" width="7.3864%" height="15" fill="rgb(209,183,11)" fg:x="153" fg:w="13"/><text x="87.1818%" y="718.50">_find_and_..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (13 samples, 7.39%)</title><rect x="86.9318%" y="724" width="7.3864%" height="15" fill="rgb(208,55,20)" fg:x="153" fg:w="13"/><text x="87.1818%" y="734.50">_load_unlo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (13 samples, 7.39%)</title><rect x="86.9318%" y="740" width="7.3864%" height="15" fill="rgb(218,39,14)" fg:x="153" fg:w="13"/><text x="87.1818%" y="750.50">exec_modul..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (13 samples, 7.39%)</title><rect x="86.9318%" y="756" width="7.3864%" height="15" fill="rgb(216,169,33)" fg:x="153" fg:w="13"/><text x="87.1818%" y="766.50">_call_with..</text></g><g><title><module> (ee/_cloud_api_utils.py:1) (13 samples, 7.39%)</title><rect x="86.9318%" y="772" width="7.3864%" height="15" fill="rgb(233,80,24)" fg:x="153" fg:w="13"/><text x="87.1818%" y="782.50"><module> (..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 5.68%)</title><rect x="88.6364%" y="788" width="5.6818%" height="15" fill="rgb(213,179,31)" fg:x="156" fg:w="10"/><text x="88.8864%" y="798.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="88.6364%" y="804" width="5.6818%" height="15" fill="rgb(209,19,5)" fg:x="156" fg:w="10"/><text x="88.8864%" y="814.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="88.6364%" y="820" width="5.6818%" height="15" fill="rgb(219,18,35)" fg:x="156" fg:w="10"/><text x="88.8864%" y="830.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="88.6364%" y="836" width="5.6818%" height="15" fill="rgb(209,169,16)" fg:x="156" fg:w="10"/><text x="88.8864%" y="846.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="88.6364%" y="852" width="5.6818%" height="15" fill="rgb(245,90,51)" fg:x="156" fg:w="10"/><text x="88.8864%" y="862.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 5.68%)</title><rect x="88.6364%" y="868" width="5.6818%" height="15" fill="rgb(220,99,45)" fg:x="156" fg:w="10"/><text x="88.8864%" y="878.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="88.6364%" y="884" width="5.6818%" height="15" fill="rgb(249,89,25)" fg:x="156" fg:w="10"/><text x="88.8864%" y="894.50">_call_w..</text></g><g><title><module> (googleapiclient/discovery.py:15) (10 samples, 5.68%)</title><rect x="88.6364%" y="900" width="5.6818%" height="15" fill="rgb(239,193,0)" fg:x="156" fg:w="10"/><text x="88.8864%" y="910.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 5.68%)</title><rect x="88.6364%" y="916" width="5.6818%" height="15" fill="rgb(231,126,1)" fg:x="156" fg:w="10"/><text x="88.8864%" y="926.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="88.6364%" y="932" width="5.6818%" height="15" fill="rgb(243,166,3)" fg:x="156" fg:w="10"/><text x="88.8864%" y="942.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="88.6364%" y="948" width="5.6818%" height="15" fill="rgb(223,22,34)" fg:x="156" fg:w="10"/><text x="88.8864%" y="958.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="88.6364%" y="964" width="5.6818%" height="15" fill="rgb(251,52,51)" fg:x="156" fg:w="10"/><text x="88.8864%" y="974.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="88.6364%" y="980" width="5.6818%" height="15" fill="rgb(221,165,28)" fg:x="156" fg:w="10"/><text x="88.8864%" y="990.50">_load_u..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (10 samples, 5.68%)</title><rect x="88.6364%" y="996" width="5.6818%" height="15" fill="rgb(218,121,47)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1006.50">exec_mo..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="88.6364%" y="1012" width="5.6818%" height="15" fill="rgb(209,120,9)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1022.50">_call_w..</text></g><g><title><module> (oauth2/service_account.py:15) (10 samples, 5.68%)</title><rect x="88.6364%" y="1028" width="5.6818%" height="15" fill="rgb(236,68,12)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1038.50"><module..</text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (10 samples, 5.68%)</title><rect x="88.6364%" y="1044" width="5.6818%" height="15" fill="rgb(225,194,26)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1054.50">_handle..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (10 samples, 5.68%)</title><rect x="88.6364%" y="1060" width="5.6818%" height="15" fill="rgb(231,84,39)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1070.50">_call_w..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (10 samples, 5.68%)</title><rect x="88.6364%" y="1076" width="5.6818%" height="15" fill="rgb(210,11,45)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1086.50">_find_a..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (10 samples, 5.68%)</title><rect x="88.6364%" y="1092" width="5.6818%" height="15" fill="rgb(224,54,52)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1102.50">_find_a..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (10 samples, 5.68%)</title><rect x="88.6364%" y="1108" width="5.6818%" height="15" fill="rgb(238,102,14)" fg:x="156" fg:w="10"/><text x="88.8864%" y="1118.50">_load_u..</text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="93.7500%" y="1124" width="0.5682%" height="15" fill="rgb(243,160,52)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1134.50"></text></g><g><title>_init_module_attrs (<frozen importlib._bootstrap>:486) (1 samples, 0.57%)</title><rect x="93.7500%" y="1140" width="0.5682%" height="15" fill="rgb(216,114,19)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1150.50"></text></g><g><title>cached (<frozen importlib._bootstrap>:385) (1 samples, 0.57%)</title><rect x="93.7500%" y="1156" width="0.5682%" height="15" fill="rgb(244,166,37)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1166.50"></text></g><g><title>_get_cached (<frozen importlib._bootstrap_external>:491) (1 samples, 0.57%)</title><rect x="93.7500%" y="1172" width="0.5682%" height="15" fill="rgb(246,29,44)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1182.50"></text></g><g><title>cache_from_source (<frozen importlib._bootstrap_external>:361) (1 samples, 0.57%)</title><rect x="93.7500%" y="1188" width="0.5682%" height="15" fill="rgb(215,56,53)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1198.50"></text></g><g><title>_path_join (<frozen importlib._bootstrap_external>:121) (1 samples, 0.57%)</title><rect x="93.7500%" y="1204" width="0.5682%" height="15" fill="rgb(217,60,2)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1214.50"></text></g><g><title><listcomp> (<frozen importlib._bootstrap_external>:123) (1 samples, 0.57%)</title><rect x="93.7500%" y="1220" width="0.5682%" height="15" fill="rgb(207,26,24)" fg:x="165" fg:w="1"/><text x="94.0000%" y="1230.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="94.3182%" y="676" width="1.1364%" height="15" fill="rgb(252,210,15)" fg:x="166" fg:w="2"/><text x="94.5682%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="94.3182%" y="692" width="1.1364%" height="15" fill="rgb(253,209,26)" fg:x="166" fg:w="2"/><text x="94.5682%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="94.3182%" y="708" width="1.1364%" height="15" fill="rgb(238,170,14)" fg:x="166" fg:w="2"/><text x="94.5682%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="94.3182%" y="724" width="1.1364%" height="15" fill="rgb(216,178,15)" fg:x="166" fg:w="2"/><text x="94.5682%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="94.3182%" y="740" width="1.1364%" height="15" fill="rgb(250,197,2)" fg:x="166" fg:w="2"/><text x="94.5682%" y="750.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="94.3182%" y="756" width="1.1364%" height="15" fill="rgb(212,70,42)" fg:x="166" fg:w="2"/><text x="94.5682%" y="766.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="94.3182%" y="772" width="1.1364%" height="15" fill="rgb(227,213,9)" fg:x="166" fg:w="2"/><text x="94.5682%" y="782.50"></text></g><g><title><module> (pyproj/geod.py:1) (2 samples, 1.14%)</title><rect x="94.3182%" y="788" width="1.1364%" height="15" fill="rgb(245,99,25)" fg:x="166" fg:w="2"/><text x="94.5682%" y="798.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="94.3182%" y="804" width="1.1364%" height="15" fill="rgb(250,82,29)" fg:x="166" fg:w="2"/><text x="94.5682%" y="814.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="94.3182%" y="820" width="1.1364%" height="15" fill="rgb(241,226,54)" fg:x="166" fg:w="2"/><text x="94.5682%" y="830.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="94.3182%" y="836" width="1.1364%" height="15" fill="rgb(221,99,41)" fg:x="166" fg:w="2"/><text x="94.5682%" y="846.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="94.3182%" y="852" width="1.1364%" height="15" fill="rgb(213,90,21)" fg:x="166" fg:w="2"/><text x="94.5682%" y="862.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="94.3182%" y="868" width="1.1364%" height="15" fill="rgb(205,208,24)" fg:x="166" fg:w="2"/><text x="94.5682%" y="878.50"></text></g><g><title>namedtuple (collections/__init__.py:345) (2 samples, 1.14%)</title><rect x="94.3182%" y="884" width="1.1364%" height="15" fill="rgb(246,31,12)" fg:x="166" fg:w="2"/><text x="94.5682%" y="894.50"></text></g><g><title><module> (pyproj/crs/__init__.py:1) (3 samples, 1.70%)</title><rect x="94.3182%" y="612" width="1.7045%" height="15" fill="rgb(213,154,6)" fg:x="166" fg:w="3"/><text x="94.5682%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="94.3182%" y="628" width="1.7045%" height="15" fill="rgb(222,163,29)" fg:x="166" fg:w="3"/><text x="94.5682%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="94.3182%" y="644" width="1.7045%" height="15" fill="rgb(227,201,8)" fg:x="166" fg:w="3"/><text x="94.5682%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="94.3182%" y="660" width="1.7045%" height="15" fill="rgb(233,9,32)" fg:x="166" fg:w="3"/><text x="94.5682%" y="670.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="95.4545%" y="676" width="0.5682%" height="15" fill="rgb(217,54,24)" fg:x="168" fg:w="1"/><text x="95.7045%" y="686.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="95.4545%" y="692" width="0.5682%" height="15" fill="rgb(235,192,0)" fg:x="168" fg:w="1"/><text x="95.7045%" y="702.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="95.4545%" y="708" width="0.5682%" height="15" fill="rgb(235,45,9)" fg:x="168" fg:w="1"/><text x="95.7045%" y="718.50"></text></g><g><title><module> (pyproj/network.py:1) (2 samples, 1.14%)</title><rect x="96.0227%" y="612" width="1.1364%" height="15" fill="rgb(246,42,40)" fg:x="169" fg:w="2"/><text x="96.2727%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="96.0227%" y="628" width="1.1364%" height="15" fill="rgb(248,111,24)" fg:x="169" fg:w="2"/><text x="96.2727%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="96.0227%" y="644" width="1.1364%" height="15" fill="rgb(249,65,22)" fg:x="169" fg:w="2"/><text x="96.2727%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="96.0227%" y="660" width="1.1364%" height="15" fill="rgb(238,111,51)" fg:x="169" fg:w="2"/><text x="96.2727%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:1179) (2 samples, 1.14%)</title><rect x="96.0227%" y="676" width="1.1364%" height="15" fill="rgb(250,118,22)" fg:x="169" fg:w="2"/><text x="96.2727%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="96.0227%" y="692" width="1.1364%" height="15" fill="rgb(234,84,26)" fg:x="169" fg:w="2"/><text x="96.2727%" y="702.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="96.0227%" y="708" width="1.1364%" height="15" fill="rgb(243,172,12)" fg:x="169" fg:w="2"/><text x="96.2727%" y="718.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="96.0227%" y="724" width="1.1364%" height="15" fill="rgb(236,150,49)" fg:x="169" fg:w="2"/><text x="96.2727%" y="734.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="96.0227%" y="740" width="1.1364%" height="15" fill="rgb(225,197,26)" fg:x="169" fg:w="2"/><text x="96.2727%" y="750.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (2 samples, 1.14%)</title><rect x="96.0227%" y="756" width="1.1364%" height="15" fill="rgb(214,17,42)" fg:x="169" fg:w="2"/><text x="96.2727%" y="766.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (2 samples, 1.14%)</title><rect x="96.0227%" y="772" width="1.1364%" height="15" fill="rgb(224,165,40)" fg:x="169" fg:w="2"/><text x="96.2727%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="96.0227%" y="788" width="1.1364%" height="15" fill="rgb(246,100,4)" fg:x="169" fg:w="2"/><text x="96.2727%" y="798.50"></text></g><g><title>guess_engine (xarray/backends/plugins.py:147) (19 samples, 10.80%)</title><rect x="86.9318%" y="132" width="10.7955%" height="15" fill="rgb(222,103,0)" fg:x="153" fg:w="19"/><text x="87.1818%" y="142.50">guess_engine (xa..</text></g><g><title>list_engines (xarray/backends/plugins.py:119) (19 samples, 10.80%)</title><rect x="86.9318%" y="148" width="10.7955%" height="15" fill="rgb(227,189,26)" fg:x="153" fg:w="19"/><text x="87.1818%" y="158.50">list_engines (xa..</text></g><g><title>build_engines (xarray/backends/plugins.py:106) (19 samples, 10.80%)</title><rect x="86.9318%" y="164" width="10.7955%" height="15" fill="rgb(214,202,17)" fg:x="153" fg:w="19"/><text x="87.1818%" y="174.50">build_engines (x..</text></g><g><title>backends_dict_from_pkg (xarray/backends/plugins.py:70) (19 samples, 10.80%)</title><rect x="86.9318%" y="180" width="10.7955%" height="15" fill="rgb(229,111,3)" fg:x="153" fg:w="19"/><text x="87.1818%" y="190.50">backends_dict_fr..</text></g><g><title>load (importlib_metadata/__init__.py:178) (19 samples, 10.80%)</title><rect x="86.9318%" y="196" width="10.7955%" height="15" fill="rgb(229,172,15)" fg:x="153" fg:w="19"/><text x="87.1818%" y="206.50">load (importlib_..</text></g><g><title>import_module (importlib/__init__.py:109) (19 samples, 10.80%)</title><rect x="86.9318%" y="212" width="10.7955%" height="15" fill="rgb(230,224,35)" fg:x="153" fg:w="19"/><text x="87.1818%" y="222.50">import_module (i..</text></g><g><title>_gcd_import (<frozen importlib._bootstrap>:1018) (19 samples, 10.80%)</title><rect x="86.9318%" y="228" width="10.7955%" height="15" fill="rgb(251,141,6)" fg:x="153" fg:w="19"/><text x="87.1818%" y="238.50">_gcd_import (<fr..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 10.80%)</title><rect x="86.9318%" y="244" width="10.7955%" height="15" fill="rgb(225,208,6)" fg:x="153" fg:w="19"/><text x="87.1818%" y="254.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 10.80%)</title><rect x="86.9318%" y="260" width="10.7955%" height="15" fill="rgb(246,181,16)" fg:x="153" fg:w="19"/><text x="87.1818%" y="270.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 10.80%)</title><rect x="86.9318%" y="276" width="10.7955%" height="15" fill="rgb(227,129,36)" fg:x="153" fg:w="19"/><text x="87.1818%" y="286.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 10.80%)</title><rect x="86.9318%" y="292" width="10.7955%" height="15" fill="rgb(248,117,24)" fg:x="153" fg:w="19"/><text x="87.1818%" y="302.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 10.80%)</title><rect x="86.9318%" y="308" width="10.7955%" height="15" fill="rgb(214,185,35)" fg:x="153" fg:w="19"/><text x="87.1818%" y="318.50">_call_with_frame..</text></g><g><title><module> (xee/__init__.py:15) (19 samples, 10.80%)</title><rect x="86.9318%" y="324" width="10.7955%" height="15" fill="rgb(236,150,34)" fg:x="153" fg:w="19"/><text x="87.1818%" y="334.50"><module> (xee/__..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 10.80%)</title><rect x="86.9318%" y="340" width="10.7955%" height="15" fill="rgb(243,228,27)" fg:x="153" fg:w="19"/><text x="87.1818%" y="350.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 10.80%)</title><rect x="86.9318%" y="356" width="10.7955%" height="15" fill="rgb(245,77,44)" fg:x="153" fg:w="19"/><text x="87.1818%" y="366.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 10.80%)</title><rect x="86.9318%" y="372" width="10.7955%" height="15" fill="rgb(235,214,42)" fg:x="153" fg:w="19"/><text x="87.1818%" y="382.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 10.80%)</title><rect x="86.9318%" y="388" width="10.7955%" height="15" fill="rgb(221,74,3)" fg:x="153" fg:w="19"/><text x="87.1818%" y="398.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 10.80%)</title><rect x="86.9318%" y="404" width="10.7955%" height="15" fill="rgb(206,121,29)" fg:x="153" fg:w="19"/><text x="87.1818%" y="414.50">_call_with_frame..</text></g><g><title><module> (xee/ext.py:15) (19 samples, 10.80%)</title><rect x="86.9318%" y="420" width="10.7955%" height="15" fill="rgb(249,131,53)" fg:x="153" fg:w="19"/><text x="87.1818%" y="430.50"><module> (xee/ex..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (19 samples, 10.80%)</title><rect x="86.9318%" y="436" width="10.7955%" height="15" fill="rgb(236,170,29)" fg:x="153" fg:w="19"/><text x="87.1818%" y="446.50">_find_and_load (..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (19 samples, 10.80%)</title><rect x="86.9318%" y="452" width="10.7955%" height="15" fill="rgb(247,96,15)" fg:x="153" fg:w="19"/><text x="87.1818%" y="462.50">_find_and_load_u..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (19 samples, 10.80%)</title><rect x="86.9318%" y="468" width="10.7955%" height="15" fill="rgb(211,210,7)" fg:x="153" fg:w="19"/><text x="87.1818%" y="478.50">_load_unlocked (..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (19 samples, 10.80%)</title><rect x="86.9318%" y="484" width="10.7955%" height="15" fill="rgb(240,88,50)" fg:x="153" fg:w="19"/><text x="87.1818%" y="494.50">exec_module (<fr..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (19 samples, 10.80%)</title><rect x="86.9318%" y="500" width="10.7955%" height="15" fill="rgb(209,229,26)" fg:x="153" fg:w="19"/><text x="87.1818%" y="510.50">_call_with_frame..</text></g><g><title><module> (pyproj/__init__.py:1) (6 samples, 3.41%)</title><rect x="94.3182%" y="516" width="3.4091%" height="15" fill="rgb(210,68,23)" fg:x="166" fg:w="6"/><text x="94.5682%" y="526.50"><mo..</text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (6 samples, 3.41%)</title><rect x="94.3182%" y="532" width="3.4091%" height="15" fill="rgb(229,180,13)" fg:x="166" fg:w="6"/><text x="94.5682%" y="542.50">_fi..</text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (6 samples, 3.41%)</title><rect x="94.3182%" y="548" width="3.4091%" height="15" fill="rgb(236,53,44)" fg:x="166" fg:w="6"/><text x="94.5682%" y="558.50">_fi..</text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (6 samples, 3.41%)</title><rect x="94.3182%" y="564" width="3.4091%" height="15" fill="rgb(244,214,29)" fg:x="166" fg:w="6"/><text x="94.5682%" y="574.50">_lo..</text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (6 samples, 3.41%)</title><rect x="94.3182%" y="580" width="3.4091%" height="15" fill="rgb(220,75,29)" fg:x="166" fg:w="6"/><text x="94.5682%" y="590.50">exe..</text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (6 samples, 3.41%)</title><rect x="94.3182%" y="596" width="3.4091%" height="15" fill="rgb(214,183,37)" fg:x="166" fg:w="6"/><text x="94.5682%" y="606.50">_ca..</text></g><g><title><module> (pyproj/proj.py:1) (1 samples, 0.57%)</title><rect x="97.1591%" y="612" width="0.5682%" height="15" fill="rgb(239,117,29)" fg:x="171" fg:w="1"/><text x="97.4091%" y="622.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="97.1591%" y="628" width="0.5682%" height="15" fill="rgb(237,171,35)" fg:x="171" fg:w="1"/><text x="97.4091%" y="638.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="97.1591%" y="644" width="0.5682%" height="15" fill="rgb(229,178,53)" fg:x="171" fg:w="1"/><text x="97.4091%" y="654.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="97.1591%" y="660" width="0.5682%" height="15" fill="rgb(210,102,19)" fg:x="171" fg:w="1"/><text x="97.4091%" y="670.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="97.1591%" y="676" width="0.5682%" height="15" fill="rgb(235,127,22)" fg:x="171" fg:w="1"/><text x="97.4091%" y="686.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="97.1591%" y="692" width="0.5682%" height="15" fill="rgb(244,31,31)" fg:x="171" fg:w="1"/><text x="97.4091%" y="702.50"></text></g><g><title><module> (pyproj/transformer.py:1) (1 samples, 0.57%)</title><rect x="97.1591%" y="708" width="0.5682%" height="15" fill="rgb(231,43,21)" fg:x="171" fg:w="1"/><text x="97.4091%" y="718.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="97.1591%" y="724" width="0.5682%" height="15" fill="rgb(217,131,35)" fg:x="171" fg:w="1"/><text x="97.4091%" y="734.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="97.1591%" y="740" width="0.5682%" height="15" fill="rgb(221,149,4)" fg:x="171" fg:w="1"/><text x="97.4091%" y="750.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="97.1591%" y="756" width="0.5682%" height="15" fill="rgb(232,170,28)" fg:x="171" fg:w="1"/><text x="97.4091%" y="766.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="97.1591%" y="772" width="0.5682%" height="15" fill="rgb(238,56,10)" fg:x="171" fg:w="1"/><text x="97.4091%" y="782.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="97.1591%" y="788" width="0.5682%" height="15" fill="rgb(235,196,14)" fg:x="171" fg:w="1"/><text x="97.4091%" y="798.50"></text></g><g><title><module> (pyproj/sync.py:1) (1 samples, 0.57%)</title><rect x="97.1591%" y="804" width="0.5682%" height="15" fill="rgb(216,45,48)" fg:x="171" fg:w="1"/><text x="97.4091%" y="814.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="97.1591%" y="820" width="0.5682%" height="15" fill="rgb(238,213,17)" fg:x="171" fg:w="1"/><text x="97.4091%" y="830.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="97.1591%" y="836" width="0.5682%" height="15" fill="rgb(212,13,2)" fg:x="171" fg:w="1"/><text x="97.4091%" y="846.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="97.1591%" y="852" width="0.5682%" height="15" fill="rgb(240,114,20)" fg:x="171" fg:w="1"/><text x="97.4091%" y="862.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="97.1591%" y="868" width="0.5682%" height="15" fill="rgb(228,41,40)" fg:x="171" fg:w="1"/><text x="97.4091%" y="878.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="97.1591%" y="884" width="0.5682%" height="15" fill="rgb(244,132,35)" fg:x="171" fg:w="1"/><text x="97.4091%" y="894.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="97.1591%" y="900" width="0.5682%" height="15" fill="rgb(253,189,4)" fg:x="171" fg:w="1"/><text x="97.4091%" y="910.50"></text></g><g><title>_find_spec (<frozen importlib._bootstrap>:901) (1 samples, 0.57%)</title><rect x="97.7273%" y="484" width="0.5682%" height="15" fill="rgb(224,37,19)" fg:x="172" fg:w="1"/><text x="97.9773%" y="494.50"></text></g><g><title>find_spec (<frozen importlib._bootstrap_external>:1415) (1 samples, 0.57%)</title><rect x="97.7273%" y="500" width="0.5682%" height="15" fill="rgb(235,223,18)" fg:x="172" fg:w="1"/><text x="97.9773%" y="510.50"></text></g><g><title>_get_spec (<frozen importlib._bootstrap_external>:1383) (1 samples, 0.57%)</title><rect x="97.7273%" y="516" width="0.5682%" height="15" fill="rgb(235,163,25)" fg:x="172" fg:w="1"/><text x="97.9773%" y="526.50"></text></g><g><title>_path_importer_cache (<frozen importlib._bootstrap_external>:1346) (1 samples, 0.57%)</title><rect x="97.7273%" y="532" width="0.5682%" height="15" fill="rgb(217,145,28)" fg:x="172" fg:w="1"/><text x="97.9773%" y="542.50"></text></g><g><title>_path_hooks (<frozen importlib._bootstrap_external>:1333) (1 samples, 0.57%)</title><rect x="97.7273%" y="548" width="0.5682%" height="15" fill="rgb(223,223,32)" fg:x="172" fg:w="1"/><text x="97.9773%" y="558.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="97.7273%" y="356" width="1.1364%" height="15" fill="rgb(227,189,39)" fg:x="172" fg:w="2"/><text x="97.9773%" y="366.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="97.7273%" y="372" width="1.1364%" height="15" fill="rgb(248,10,22)" fg:x="172" fg:w="2"/><text x="97.9773%" y="382.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (2 samples, 1.14%)</title><rect x="97.7273%" y="388" width="1.1364%" height="15" fill="rgb(248,46,39)" fg:x="172" fg:w="2"/><text x="97.9773%" y="398.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (2 samples, 1.14%)</title><rect x="97.7273%" y="404" width="1.1364%" height="15" fill="rgb(248,113,48)" fg:x="172" fg:w="2"/><text x="97.9773%" y="414.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (2 samples, 1.14%)</title><rect x="97.7273%" y="420" width="1.1364%" height="15" fill="rgb(245,16,25)" fg:x="172" fg:w="2"/><text x="97.9773%" y="430.50"></text></g><g><title><module> (scipy/io/matlab/__init__.py:1) (2 samples, 1.14%)</title><rect x="97.7273%" y="436" width="1.1364%" height="15" fill="rgb(249,152,16)" fg:x="172" fg:w="2"/><text x="97.9773%" y="446.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (2 samples, 1.14%)</title><rect x="97.7273%" y="452" width="1.1364%" height="15" fill="rgb(250,16,1)" fg:x="172" fg:w="2"/><text x="97.9773%" y="462.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (2 samples, 1.14%)</title><rect x="97.7273%" y="468" width="1.1364%" height="15" fill="rgb(249,138,3)" fg:x="172" fg:w="2"/><text x="97.9773%" y="478.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="98.2955%" y="484" width="0.5682%" height="15" fill="rgb(227,71,41)" fg:x="173" fg:w="1"/><text x="98.5455%" y="494.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="98.2955%" y="500" width="0.5682%" height="15" fill="rgb(209,184,23)" fg:x="173" fg:w="1"/><text x="98.5455%" y="510.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="98.2955%" y="516" width="0.5682%" height="15" fill="rgb(223,215,31)" fg:x="173" fg:w="1"/><text x="98.5455%" y="526.50"></text></g><g><title><module> (scipy/io/matlab/_mio.py:1) (1 samples, 0.57%)</title><rect x="98.2955%" y="532" width="0.5682%" height="15" fill="rgb(210,146,28)" fg:x="173" fg:w="1"/><text x="98.5455%" y="542.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="98.2955%" y="548" width="0.5682%" height="15" fill="rgb(209,183,41)" fg:x="173" fg:w="1"/><text x="98.5455%" y="558.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="98.2955%" y="564" width="0.5682%" height="15" fill="rgb(209,224,45)" fg:x="173" fg:w="1"/><text x="98.5455%" y="574.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="98.2955%" y="580" width="0.5682%" height="15" fill="rgb(224,209,51)" fg:x="173" fg:w="1"/><text x="98.5455%" y="590.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="98.2955%" y="596" width="0.5682%" height="15" fill="rgb(223,17,39)" fg:x="173" fg:w="1"/><text x="98.5455%" y="606.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="98.2955%" y="612" width="0.5682%" height="15" fill="rgb(234,204,37)" fg:x="173" fg:w="1"/><text x="98.5455%" y="622.50"></text></g><g><title><module> (scipy/io/matlab/_mio4.py:1) (1 samples, 0.57%)</title><rect x="98.2955%" y="628" width="0.5682%" height="15" fill="rgb(236,120,5)" fg:x="173" fg:w="1"/><text x="98.5455%" y="638.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="98.2955%" y="644" width="0.5682%" height="15" fill="rgb(248,97,27)" fg:x="173" fg:w="1"/><text x="98.5455%" y="654.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="98.2955%" y="660" width="0.5682%" height="15" fill="rgb(240,66,17)" fg:x="173" fg:w="1"/><text x="98.5455%" y="670.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="98.2955%" y="676" width="0.5682%" height="15" fill="rgb(210,79,3)" fg:x="173" fg:w="1"/><text x="98.5455%" y="686.50"></text></g><g><title>module_from_spec (<frozen importlib._bootstrap>:558) (1 samples, 0.57%)</title><rect x="98.2955%" y="692" width="0.5682%" height="15" fill="rgb(214,176,27)" fg:x="173" fg:w="1"/><text x="98.5455%" y="702.50"></text></g><g><title>create_module (<frozen importlib._bootstrap_external>:1171) (1 samples, 0.57%)</title><rect x="98.2955%" y="708" width="0.5682%" height="15" fill="rgb(235,185,3)" fg:x="173" fg:w="1"/><text x="98.5455%" y="718.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="98.2955%" y="724" width="0.5682%" height="15" fill="rgb(227,24,12)" fg:x="173" fg:w="1"/><text x="98.5455%" y="734.50"></text></g><g><title>thread (0x202FDE240) (175 samples, 99.43%)</title><rect x="0.0000%" y="68" width="99.4318%" height="15" fill="rgb(252,169,48)" fg:x="0" fg:w="175"/><text x="0.2500%" y="78.50">thread (0x202FDE240)</text></g><g><title><module> (sanity.py:3) (156 samples, 88.64%)</title><rect x="10.7955%" y="84" width="88.6364%" height="15" fill="rgb(212,65,1)" fg:x="19" fg:w="156"/><text x="11.0455%" y="94.50"><module> (sanity.py:3)</text></g><g><title>open_dataset (xarray/tutorial.py:81) (25 samples, 14.20%)</title><rect x="85.2273%" y="100" width="14.2045%" height="15" fill="rgb(242,39,24)" fg:x="150" fg:w="25"/><text x="85.4773%" y="110.50">open_dataset (xarray/t..</text></g><g><title>open_dataset (xarray/backends/api.py:392) (22 samples, 12.50%)</title><rect x="86.9318%" y="116" width="12.5000%" height="15" fill="rgb(249,32,23)" fg:x="153" fg:w="22"/><text x="87.1818%" y="126.50">open_dataset (xarra..</text></g><g><title>open_dataset (xarray/backends/scipy_.py:291) (3 samples, 1.70%)</title><rect x="97.7273%" y="132" width="1.7045%" height="15" fill="rgb(251,195,23)" fg:x="172" fg:w="3"/><text x="97.9773%" y="142.50"></text></g><g><title>open_dataset (xarray/backends/store.py:29) (3 samples, 1.70%)</title><rect x="97.7273%" y="148" width="1.7045%" height="15" fill="rgb(236,174,8)" fg:x="172" fg:w="3"/><text x="97.9773%" y="158.50"></text></g><g><title>load (xarray/backends/common.py:188) (3 samples, 1.70%)</title><rect x="97.7273%" y="164" width="1.7045%" height="15" fill="rgb(220,197,8)" fg:x="172" fg:w="3"/><text x="97.9773%" y="174.50"></text></g><g><title>get_variables (xarray/backends/scipy_.py:179) (3 samples, 1.70%)</title><rect x="97.7273%" y="180" width="1.7045%" height="15" fill="rgb(240,108,37)" fg:x="172" fg:w="3"/><text x="97.9773%" y="190.50"></text></g><g><title>ds (xarray/backends/scipy_.py:168) (3 samples, 1.70%)</title><rect x="97.7273%" y="196" width="1.7045%" height="15" fill="rgb(232,176,24)" fg:x="172" fg:w="3"/><text x="97.9773%" y="206.50"></text></g><g><title>acquire (xarray/backends/file_manager.py:178) (3 samples, 1.70%)</title><rect x="97.7273%" y="212" width="1.7045%" height="15" fill="rgb(243,35,29)" fg:x="172" fg:w="3"/><text x="97.9773%" y="222.50"></text></g><g><title>_acquire_with_cache_info (xarray/backends/file_manager.py:207) (3 samples, 1.70%)</title><rect x="97.7273%" y="228" width="1.7045%" height="15" fill="rgb(210,37,18)" fg:x="172" fg:w="3"/><text x="97.9773%" y="238.50"></text></g><g><title>_open_scipy_netcdf (xarray/backends/scipy_.py:87) (3 samples, 1.70%)</title><rect x="97.7273%" y="244" width="1.7045%" height="15" fill="rgb(224,184,40)" fg:x="172" fg:w="3"/><text x="97.9773%" y="254.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (3 samples, 1.70%)</title><rect x="97.7273%" y="260" width="1.7045%" height="15" fill="rgb(236,39,29)" fg:x="172" fg:w="3"/><text x="97.9773%" y="270.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (3 samples, 1.70%)</title><rect x="97.7273%" y="276" width="1.7045%" height="15" fill="rgb(232,48,39)" fg:x="172" fg:w="3"/><text x="97.9773%" y="286.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (3 samples, 1.70%)</title><rect x="97.7273%" y="292" width="1.7045%" height="15" fill="rgb(236,34,42)" fg:x="172" fg:w="3"/><text x="97.9773%" y="302.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (3 samples, 1.70%)</title><rect x="97.7273%" y="308" width="1.7045%" height="15" fill="rgb(243,106,37)" fg:x="172" fg:w="3"/><text x="97.9773%" y="318.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (3 samples, 1.70%)</title><rect x="97.7273%" y="324" width="1.7045%" height="15" fill="rgb(218,96,6)" fg:x="172" fg:w="3"/><text x="97.9773%" y="334.50"></text></g><g><title><module> (scipy/io/__init__.py:1) (3 samples, 1.70%)</title><rect x="97.7273%" y="340" width="1.7045%" height="15" fill="rgb(235,130,12)" fg:x="172" fg:w="3"/><text x="97.9773%" y="350.50"></text></g><g><title>_handle_fromlist (<frozen importlib._bootstrap>:1033) (1 samples, 0.57%)</title><rect x="98.8636%" y="356" width="0.5682%" height="15" fill="rgb(231,95,0)" fg:x="174" fg:w="1"/><text x="99.1136%" y="366.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="98.8636%" y="372" width="0.5682%" height="15" fill="rgb(228,12,23)" fg:x="174" fg:w="1"/><text x="99.1136%" y="382.50"></text></g><g><title>_find_and_load (<frozen importlib._bootstrap>:1002) (1 samples, 0.57%)</title><rect x="98.8636%" y="388" width="0.5682%" height="15" fill="rgb(216,12,1)" fg:x="174" fg:w="1"/><text x="99.1136%" y="398.50"></text></g><g><title>_find_and_load_unlocked (<frozen importlib._bootstrap>:967) (1 samples, 0.57%)</title><rect x="98.8636%" y="404" width="0.5682%" height="15" fill="rgb(219,59,3)" fg:x="174" fg:w="1"/><text x="99.1136%" y="414.50"></text></g><g><title>_load_unlocked (<frozen importlib._bootstrap>:659) (1 samples, 0.57%)</title><rect x="98.8636%" y="420" width="0.5682%" height="15" fill="rgb(215,208,46)" fg:x="174" fg:w="1"/><text x="99.1136%" y="430.50"></text></g><g><title>exec_module (<frozen importlib._bootstrap_external>:844) (1 samples, 0.57%)</title><rect x="98.8636%" y="436" width="0.5682%" height="15" fill="rgb(254,224,29)" fg:x="174" fg:w="1"/><text x="99.1136%" y="446.50"></text></g><g><title>_call_with_frames_removed (<frozen importlib._bootstrap>:220) (1 samples, 0.57%)</title><rect x="98.8636%" y="452" width="0.5682%" height="15" fill="rgb(232,14,29)" fg:x="174" fg:w="1"/><text x="99.1136%" y="462.50"></text></g><g><title><module> (scipy/io/wavfile.py:1) (1 samples, 0.57%)</title><rect x="98.8636%" y="468" width="0.5682%" height="15" fill="rgb(208,45,52)" fg:x="174" fg:w="1"/><text x="99.1136%" y="478.50"></text></g><g><title>__new__ (enum.py:179) (1 samples, 0.57%)</title><rect x="98.8636%" y="484" width="0.5682%" height="15" fill="rgb(234,191,28)" fg:x="174" fg:w="1"/><text x="99.1136%" y="494.50"></text></g><g><title>all (176 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(244,67,43)" fg:x="0" fg:w="176"/><text x="0.2500%" y="62.50"></text></g><g><title>thread (0x308278000) (1 samples, 0.57%)</title><rect x="99.4318%" y="68" width="0.5682%" height="15" fill="rgb(236,189,24)" fg:x="175" fg:w="1"/><text x="99.6818%" y="78.50"></text></g><g><title>_bootstrap (threading.py:923) (1 samples, 0.57%)</title><rect x="99.4318%" y="84" width="0.5682%" height="15" fill="rgb(239,214,33)" fg:x="175" fg:w="1"/><text x="99.6818%" y="94.50"></text></g><g><title>_bootstrap_inner (threading.py:963) (1 samples, 0.57%)</title><rect x="99.4318%" y="100" width="0.5682%" height="15" fill="rgb(226,176,41)" fg:x="175" fg:w="1"/><text x="99.6818%" y="110.50"></text></g><g><title>run (threading.py:906) (1 samples, 0.57%)</title><rect x="99.4318%" y="116" width="0.5682%" height="15" fill="rgb(248,47,8)" fg:x="175" fg:w="1"/><text x="99.6818%" y="126.50"></text></g><g><title>_worker (concurrent/futures/thread.py:69) (1 samples, 0.57%)</title><rect x="99.4318%" y="132" width="0.5682%" height="15" fill="rgb(218,81,44)" fg:x="175" fg:w="1"/><text x="99.6818%" y="142.50"></text></g><g><title>run (concurrent/futures/thread.py:53) (1 samples, 0.57%)</title><rect x="99.4318%" y="148" width="0.5682%" height="15" fill="rgb(213,98,6)" fg:x="175" fg:w="1"/><text x="99.6818%" y="158.50"></text></g><g><title>batch_execute_tasks (dask/local.py:235) (1 samples, 0.57%)</title><rect x="99.4318%" y="164" width="0.5682%" height="15" fill="rgb(222,85,22)" fg:x="175" fg:w="1"/><text x="99.6818%" y="174.50"></text></g><g><title><listcomp> (dask/local.py:239) (1 samples, 0.57%)</title><rect x="99.4318%" y="180" width="0.5682%" height="15" fill="rgb(239,46,39)" fg:x="175" fg:w="1"/><text x="99.6818%" y="190.50"></text></g><g><title>execute_task (dask/local.py:215) (1 samples, 0.57%)</title><rect x="99.4318%" y="196" width="0.5682%" height="15" fill="rgb(237,12,29)" fg:x="175" fg:w="1"/><text x="99.6818%" y="206.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.57%)</title><rect x="99.4318%" y="212" width="0.5682%" height="15" fill="rgb(214,77,8)" fg:x="175" fg:w="1"/><text x="99.6818%" y="222.50"></text></g><g><title>__call__ (dask/optimization.py:992) (1 samples, 0.57%)</title><rect x="99.4318%" y="228" width="0.5682%" height="15" fill="rgb(217,168,37)" fg:x="175" fg:w="1"/><text x="99.6818%" y="238.50"></text></g><g><title>get (dask/core.py:136) (1 samples, 0.57%)</title><rect x="99.4318%" y="244" width="0.5682%" height="15" fill="rgb(221,217,23)" fg:x="175" fg:w="1"/><text x="99.6818%" y="254.50"></text></g><g><title>_execute_task (dask/core.py:90) (1 samples, 0.57%)</title><rect x="99.4318%" y="260" width="0.5682%" height="15" fill="rgb(243,229,36)" fg:x="175" fg:w="1"/><text x="99.6818%" y="270.50"></text></g><g><title>__call__ (dask/dataframe/io/io.py:831) (1 samples, 0.57%)</title><rect x="99.4318%" y="276" width="0.5682%" height="15" fill="rgb(251,163,40)" fg:x="175" fg:w="1"/><text x="99.6818%" y="286.50"></text></g><g><title>apply_and_enforce (dask/dataframe/core.py:7380) (1 samples, 0.57%)</title><rect x="99.4318%" y="292" width="0.5682%" height="15" fill="rgb(237,222,12)" fg:x="175" fg:w="1"/><text x="99.6818%" y="302.50"></text></g><g><title>f (qarray/df.py:105) (1 samples, 0.57%)</title><rect x="99.4318%" y="308" width="0.5682%" height="15" fill="rgb(248,132,6)" fg:x="175" fg:w="1"/><text x="99.6818%" y="318.50"></text></g><g><title>to_pd (qarray/df.py:72) (1 samples, 0.57%)</title><rect x="99.4318%" y="324" width="0.5682%" height="15" fill="rgb(227,167,50)" fg:x="175" fg:w="1"/><text x="99.6818%" y="334.50"></text></g><g><title>unbounded_unravel (qarray/core.py:28) (1 samples, 0.57%)</title><rect x="99.4318%" y="340" width="0.5682%" height="15" fill="rgb(242,84,37)" fg:x="175" fg:w="1"/><text x="99.6818%" y="350.50"></text></g><g><title><genexpr> (qarray/core.py:40) (1 samples, 0.57%)</title><rect x="99.4318%" y="356" width="0.5682%" height="15" fill="rgb(212,4,50)" fg:x="175" fg:w="1"/><text x="99.6818%" y="366.50"></text></g><g><title>values (xarray/core/dataarray.py:750) (1 samples, 0.57%)</title><rect x="99.4318%" y="372" width="0.5682%" height="15" fill="rgb(230,228,32)" fg:x="175" fg:w="1"/><text x="99.6818%" y="382.50"></text></g><g><title>values (xarray/core/variable.py:613) (1 samples, 0.57%)</title><rect x="99.4318%" y="388" width="0.5682%" height="15" fill="rgb(248,217,23)" fg:x="175" fg:w="1"/><text x="99.6818%" y="398.50"></text></g><g><title>_as_array_or_item (xarray/core/variable.py:295) (1 samples, 0.57%)</title><rect x="99.4318%" y="404" width="0.5682%" height="15" fill="rgb(238,197,32)" fg:x="175" fg:w="1"/><text x="99.6818%" y="414.50"></text></g><g><title>__array__ (xarray/core/indexing.py:1492) (1 samples, 0.57%)</title><rect x="99.4318%" y="420" width="0.5682%" height="15" fill="rgb(236,106,1)" fg:x="175" fg:w="1"/><text x="99.6818%" y="430.50"></text></g></svg></svg> \ No newline at end of file diff --git a/qarray/df.py b/qarray/df.py index 3dd4bb4..dec4392 100644 --- a/qarray/df.py +++ b/qarray/df.py @@ -1,6 +1,7 @@ import itertools import typing as t +import dask import dask.dataframe as dd import numpy as np import pandas as pd @@ -12,6 +13,12 @@ Block = t.Dict[str, slice] Chunks = t.Dict[str, int] +# Turn on Dask-Expr +dask.config.set({'dataframe.query-planning-warning': False}) +dask.config.set({"dataframe.query-planning": True}) +# Turn on Copy-On-Write (needs Pandas 2.0). +pd.options.mode.copy_on_write = True + # Borrowed from Xarray def _get_chunk_slicer(dim: t.Hashable, chunk_index: t.Mapping, @@ -123,6 +130,3 @@ def f(b: Block) -> pd.DataFrame: divisions=divisions, token=token, ) - -# TODO(alxmrs): Try dask expressions dataframe: -# https://github.com/dask-contrib/dask-expr \ No newline at end of file