Created
June 1, 2021 18:14
-
-
Save benfred/458b0783ff97bd15225acf26c1d2e8c5 to your computer and use it in GitHub Desktop.
astroid.svg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="5690" onload="init(evt)" viewBox="0 0 1200 5690" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css"> | |
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); } | |
#title { text-anchor:middle; font-size:17px; } | |
#search { 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"); | |
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); | |
if (!isEdge) { | |
svg.removeAttribute("viewBox"); | |
} | |
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 - 100; | |
matchedtxt.attributes.x.value = svgWidth - xpad - 100; | |
}; | |
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(); | |
}, 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._orig_x) { | |
var params = get_params() | |
params.x = el.attributes._orig_x.value; | |
params.y = el.attributes.y.value; | |
history.replaceState(null, null, parse_params(params)); | |
} | |
} | |
else if (e.target.id == "unzoom") { | |
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["_orig_" + attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_" + attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_" + attr].value; | |
e.removeAttribute("_orig_" + attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes.width.value) * 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.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i = 0, c = e.childNodes; i < c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes.x != undefined) { | |
orig_save(e, "x"); | |
e.attributes.x.value = format_percent((parseFloat(e.attributes.x.value) - x) * ratio); | |
if (e.tagName == "text") { | |
e.attributes.x.value = format_percent(parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value) + (100 * 3 / frames.attributes.width.value)); | |
} | |
} | |
if (e.attributes.width != undefined) { | |
orig_save(e, "width"); | |
e.attributes.width.value = format_percent(parseFloat(e.attributes.width.value) * ratio); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i = 0, c = e.childNodes; i < c.length; i++) { | |
zoom_child(c[i], x, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes.x != undefined) { | |
orig_save(e, "x"); | |
e.attributes.x.value = "0.0%"; | |
} | |
if (e.attributes.width != undefined) { | |
orig_save(e, "width"); | |
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 = parseFloat(attr.width.value); | |
var xmin = parseFloat(attr.x.value); | |
var xmax = xmin + width; | |
var ymin = parseFloat(attr.y.value); | |
var ratio = 100 / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.001; | |
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 = parseFloat(a.x.value); | |
var ew = parseFloat(a.width.value); | |
// Is it an ancestor | |
if (!inverted) { | |
var upstack = parseFloat(a.y.value) > ymin; | |
} else { | |
var upstack = parseFloat(a.y.value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.classList.add("parent"); | |
zoom_parent(e); | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.classList.add("hide"); | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.classList.add("hide"); | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
update_text(e); | |
} | |
} | |
} | |
} | |
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]; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes.width.value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes.x.value); | |
orig_save(rect, "fill"); | |
rect.attributes.fill.value = 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. | |
var fudge = 0.0001; // JavaScript floating point | |
for (var k in keys) { | |
var x = parseFloat(keys[k]); | |
var w = matches[keys[k]]; | |
if (x >= lastx + lastw - fudge) { | |
count += w; | |
lastx = x; | |
lastw = w; | |
} | |
} | |
// display matched percent | |
matchedtxt.classList.remove("hide"); | |
var pct = 100 * count / maxwidth; | |
if (pct != 100) pct = pct.toFixed(1); | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
function format_percent(n) { | |
return n.toFixed(4) + "%"; | |
} | |
]]></script><rect x="0" y="0" width="100%" height="5690" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record -o astroid.svg -p 13952</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="1090" y="24.00">Search</text><text id="matched" x="1090" y="5679.00"> </text><svg id="frames" x="10" width="1180"><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (7 samples, 0.13%)</title><rect x="0.1081%" y="3332" width="0.1261%" height="15" fill="rgb(227,0,7)"/><text x="0.3581%" y="3342.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (7 samples, 0.13%)</title><rect x="0.1081%" y="3348" width="0.1261%" height="15" fill="rgb(217,0,24)"/><text x="0.3581%" y="3358.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="0.1081%" y="3364" width="0.1261%" height="15" fill="rgb(221,193,54)"/><text x="0.3581%" y="3374.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="0.1081%" y="3380" width="0.1261%" height="15" fill="rgb(248,212,6)"/><text x="0.3581%" y="3390.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="0.1081%" y="3396" width="0.1261%" height="15" fill="rgb(208,68,35)"/><text x="0.3581%" y="3406.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="0.1081%" y="3412" width="0.1261%" height="15" fill="rgb(232,128,0)"/><text x="0.3581%" y="3422.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="0.1081%" y="3428" width="0.1261%" height="15" fill="rgb(207,160,47)"/><text x="0.3581%" y="3438.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="0.1081%" y="3444" width="0.1261%" height="15" fill="rgb(228,23,34)"/><text x="0.3581%" y="3454.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="0.1081%" y="3460" width="0.1261%" height="15" fill="rgb(218,30,26)"/><text x="0.3581%" y="3470.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="0.1081%" y="3476" width="0.1261%" height="15" fill="rgb(220,122,19)"/><text x="0.3581%" y="3486.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="0.1081%" y="3492" width="0.1261%" height="15" fill="rgb(250,228,42)"/><text x="0.3581%" y="3502.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="0.1081%" y="3508" width="0.1261%" height="15" fill="rgb(240,193,28)"/><text x="0.3581%" y="3518.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="0.1081%" y="3524" width="0.1261%" height="15" fill="rgb(216,20,37)"/><text x="0.3581%" y="3534.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="0.1081%" y="3540" width="0.1261%" height="15" fill="rgb(206,188,39)"/><text x="0.3581%" y="3550.50"></text></g><g><title>_infer_stmts (astroid/bases.py:134) (6 samples, 0.11%)</title><rect x="0.1261%" y="3556" width="0.1081%" height="15" fill="rgb(217,207,13)"/><text x="0.3761%" y="3566.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (6 samples, 0.11%)</title><rect x="0.2342%" y="3332" width="0.1081%" height="15" fill="rgb(231,73,38)"/><text x="0.4842%" y="3342.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="0.2342%" y="3348" width="0.1081%" height="15" fill="rgb(225,20,46)"/><text x="0.4842%" y="3358.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="0.2342%" y="3364" width="0.1081%" height="15" fill="rgb(210,31,41)"/><text x="0.4842%" y="3374.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="0.0180%" y="2916" width="0.3963%" height="15" fill="rgb(221,200,47)"/><text x="0.2680%" y="2926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="0.0180%" y="2932" width="0.3963%" height="15" fill="rgb(226,26,5)"/><text x="0.2680%" y="2942.50"></text></g><g><title>infer_call (astroid/inference.py:229) (20 samples, 0.36%)</title><rect x="0.0540%" y="2948" width="0.3603%" height="15" fill="rgb(249,33,26)"/><text x="0.3040%" y="2958.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="0.0540%" y="2964" width="0.3603%" height="15" fill="rgb(235,183,28)"/><text x="0.3040%" y="2974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="0.0540%" y="2980" width="0.3603%" height="15" fill="rgb(221,5,38)"/><text x="0.3040%" y="2990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="0.0540%" y="2996" width="0.3603%" height="15" fill="rgb(247,18,42)"/><text x="0.3040%" y="3006.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="0.0540%" y="3012" width="0.3603%" height="15" fill="rgb(241,131,45)"/><text x="0.3040%" y="3022.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="0.1081%" y="3028" width="0.3063%" height="15" fill="rgb(249,31,29)"/><text x="0.3581%" y="3038.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (17 samples, 0.31%)</title><rect x="0.1081%" y="3044" width="0.3063%" height="15" fill="rgb(225,111,53)"/><text x="0.3581%" y="3054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="0.1081%" y="3060" width="0.3063%" height="15" fill="rgb(238,160,17)"/><text x="0.3581%" y="3070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="0.1081%" y="3076" width="0.3063%" height="15" fill="rgb(214,148,48)"/><text x="0.3581%" y="3086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="0.1081%" y="3092" width="0.3063%" height="15" fill="rgb(232,36,49)"/><text x="0.3581%" y="3102.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (17 samples, 0.31%)</title><rect x="0.1081%" y="3108" width="0.3063%" height="15" fill="rgb(209,103,24)"/><text x="0.3581%" y="3118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="0.1081%" y="3124" width="0.3063%" height="15" fill="rgb(229,88,8)"/><text x="0.3581%" y="3134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="0.1081%" y="3140" width="0.3063%" height="15" fill="rgb(213,181,19)"/><text x="0.3581%" y="3150.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (17 samples, 0.31%)</title><rect x="0.1081%" y="3156" width="0.3063%" height="15" fill="rgb(254,191,54)"/><text x="0.3581%" y="3166.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (17 samples, 0.31%)</title><rect x="0.1081%" y="3172" width="0.3063%" height="15" fill="rgb(241,83,37)"/><text x="0.3581%" y="3182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="0.1081%" y="3188" width="0.3063%" height="15" fill="rgb(233,36,39)"/><text x="0.3581%" y="3198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (17 samples, 0.31%)</title><rect x="0.1081%" y="3204" width="0.3063%" height="15" fill="rgb(226,3,54)"/><text x="0.3581%" y="3214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="0.1081%" y="3220" width="0.3063%" height="15" fill="rgb(245,192,40)"/><text x="0.3581%" y="3230.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="0.1081%" y="3236" width="0.3063%" height="15" fill="rgb(238,167,29)"/><text x="0.3581%" y="3246.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (17 samples, 0.31%)</title><rect x="0.1081%" y="3252" width="0.3063%" height="15" fill="rgb(232,182,51)"/><text x="0.3581%" y="3262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="0.1081%" y="3268" width="0.3063%" height="15" fill="rgb(231,60,39)"/><text x="0.3581%" y="3278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="0.1081%" y="3284" width="0.3063%" height="15" fill="rgb(208,69,12)"/><text x="0.3581%" y="3294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="0.1081%" y="3300" width="0.3063%" height="15" fill="rgb(235,93,37)"/><text x="0.3581%" y="3310.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="0.1081%" y="3316" width="0.3063%" height="15" fill="rgb(213,116,39)"/><text x="0.3581%" y="3326.50"></text></g><g><title>igetattr (astroid/bases.py:221) (8 samples, 0.14%)</title><rect x="0.6305%" y="4068" width="0.1441%" height="15" fill="rgb(222,207,29)"/><text x="0.8805%" y="4078.50"></text></g><g><title>getattr (astroid/bases.py:182) (8 samples, 0.14%)</title><rect x="0.6305%" y="4084" width="0.1441%" height="15" fill="rgb(206,96,30)"/><text x="0.8805%" y="4094.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (8 samples, 0.14%)</title><rect x="0.6305%" y="4100" width="0.1441%" height="15" fill="rgb(218,138,4)"/><text x="0.8805%" y="4110.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (8 samples, 0.14%)</title><rect x="0.6305%" y="4116" width="0.1441%" height="15" fill="rgb(250,191,14)"/><text x="0.8805%" y="4126.50"></text></g><g><title>infer_call (astroid/inference.py:223) (15 samples, 0.27%)</title><rect x="0.5945%" y="3988" width="0.2702%" height="15" fill="rgb(239,60,40)"/><text x="0.8445%" y="3998.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="0.5945%" y="4004" width="0.2702%" height="15" fill="rgb(206,27,48)"/><text x="0.8445%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="0.5945%" y="4020" width="0.2702%" height="15" fill="rgb(225,35,8)"/><text x="0.8445%" y="4030.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="0.5945%" y="4036" width="0.2702%" height="15" fill="rgb(250,213,24)"/><text x="0.8445%" y="4046.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="0.6305%" y="4052" width="0.2342%" height="15" fill="rgb(247,123,22)"/><text x="0.8805%" y="4062.50"></text></g><g><title>infer_call (astroid/inference.py:223) (10 samples, 0.18%)</title><rect x="0.8647%" y="4068" width="0.1801%" height="15" fill="rgb(231,138,38)"/><text x="1.1147%" y="4078.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="0.8647%" y="4084" width="0.1801%" height="15" fill="rgb(231,145,46)"/><text x="1.1147%" y="4094.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="0.8647%" y="4100" width="0.1801%" height="15" fill="rgb(251,118,11)"/><text x="1.1147%" y="4110.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="0.8647%" y="4116" width="0.1801%" height="15" fill="rgb(217,147,25)"/><text x="1.1147%" y="4126.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (9 samples, 0.16%)</title><rect x="0.8827%" y="4132" width="0.1621%" height="15" fill="rgb(247,81,37)"/><text x="1.1327%" y="4142.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (7 samples, 0.13%)</title><rect x="0.9188%" y="4148" width="0.1261%" height="15" fill="rgb(209,12,38)"/><text x="1.1688%" y="4158.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (7 samples, 0.13%)</title><rect x="0.9188%" y="4164" width="0.1261%" height="15" fill="rgb(227,1,9)"/><text x="1.1688%" y="4174.50"></text></g><g><title>__repr__ (astroid/node_classes.py:432) (7 samples, 0.13%)</title><rect x="0.9188%" y="4180" width="0.1261%" height="15" fill="rgb(248,47,43)"/><text x="1.1688%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (12 samples, 0.22%)</title><rect x="0.8647%" y="4004" width="0.2162%" height="15" fill="rgb(221,10,30)"/><text x="1.1147%" y="4014.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="0.8647%" y="4020" width="0.2162%" height="15" fill="rgb(210,229,1)"/><text x="1.1147%" y="4030.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="0.8647%" y="4036" width="0.2162%" height="15" fill="rgb(222,148,37)"/><text x="1.1147%" y="4046.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="0.8647%" y="4052" width="0.2162%" height="15" fill="rgb(234,67,33)"/><text x="1.1147%" y="4062.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (37 samples, 0.67%)</title><rect x="0.5945%" y="3956" width="0.6665%" height="15" fill="rgb(247,98,35)"/><text x="0.8445%" y="3966.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (37 samples, 0.67%)</title><rect x="0.5945%" y="3972" width="0.6665%" height="15" fill="rgb(247,138,52)"/><text x="0.8445%" y="3982.50"></text></g><g><title>infer_call (astroid/inference.py:229) (22 samples, 0.40%)</title><rect x="0.8647%" y="3988" width="0.3963%" height="15" fill="rgb(213,79,30)"/><text x="1.1147%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4244" width="0.1621%" height="15" fill="rgb(246,177,23)"/><text x="1.5110%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4260" width="0.1621%" height="15" fill="rgb(230,62,27)"/><text x="1.5110%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="1.2610%" y="4276" width="0.1621%" height="15" fill="rgb(216,154,8)"/><text x="1.5110%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4292" width="0.1621%" height="15" fill="rgb(244,35,45)"/><text x="1.5110%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4308" width="0.1621%" height="15" fill="rgb(251,115,12)"/><text x="1.5110%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4324" width="0.1621%" height="15" fill="rgb(240,54,50)"/><text x="1.5110%" y="4334.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="1.2610%" y="4340" width="0.1621%" height="15" fill="rgb(233,84,52)"/><text x="1.5110%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4356" width="0.1621%" height="15" fill="rgb(207,117,47)"/><text x="1.5110%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4372" width="0.1621%" height="15" fill="rgb(249,43,39)"/><text x="1.5110%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4388" width="0.1621%" height="15" fill="rgb(209,38,44)"/><text x="1.5110%" y="4398.50"></text></g><g><title>infer_call (astroid/inference.py:223) (9 samples, 0.16%)</title><rect x="1.2610%" y="4404" width="0.1621%" height="15" fill="rgb(236,212,23)"/><text x="1.5110%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4420" width="0.1621%" height="15" fill="rgb(242,79,21)"/><text x="1.5110%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4436" width="0.1621%" height="15" fill="rgb(211,96,35)"/><text x="1.5110%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4452" width="0.1621%" height="15" fill="rgb(253,215,40)"/><text x="1.5110%" y="4462.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (9 samples, 0.16%)</title><rect x="1.2610%" y="4468" width="0.1621%" height="15" fill="rgb(211,81,21)"/><text x="1.5110%" y="4478.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4484" width="0.1621%" height="15" fill="rgb(208,190,38)"/><text x="1.5110%" y="4494.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4500" width="0.1621%" height="15" fill="rgb(235,213,38)"/><text x="1.5110%" y="4510.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4516" width="0.1621%" height="15" fill="rgb(237,122,38)"/><text x="1.5110%" y="4526.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="1.2610%" y="4532" width="0.1621%" height="15" fill="rgb(244,218,35)"/><text x="1.5110%" y="4542.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4548" width="0.1621%" height="15" fill="rgb(240,68,47)"/><text x="1.5110%" y="4558.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4564" width="0.1621%" height="15" fill="rgb(210,16,53)"/><text x="1.5110%" y="4574.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4580" width="0.1621%" height="15" fill="rgb(235,124,12)"/><text x="1.5110%" y="4590.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="1.2610%" y="4596" width="0.1621%" height="15" fill="rgb(224,169,11)"/><text x="1.5110%" y="4606.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4612" width="0.1621%" height="15" fill="rgb(250,166,2)"/><text x="1.5110%" y="4622.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4628" width="0.1621%" height="15" fill="rgb(242,216,29)"/><text x="1.5110%" y="4638.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4644" width="0.1621%" height="15" fill="rgb(230,116,27)"/><text x="1.5110%" y="4654.50"></text></g><g><title>infer_call (astroid/inference.py:223) (9 samples, 0.16%)</title><rect x="1.2610%" y="4660" width="0.1621%" height="15" fill="rgb(228,99,48)"/><text x="1.5110%" y="4670.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4676" width="0.1621%" height="15" fill="rgb(253,11,6)"/><text x="1.5110%" y="4686.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4692" width="0.1621%" height="15" fill="rgb(247,143,39)"/><text x="1.5110%" y="4702.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4708" width="0.1621%" height="15" fill="rgb(236,97,10)"/><text x="1.5110%" y="4718.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (9 samples, 0.16%)</title><rect x="1.2610%" y="4724" width="0.1621%" height="15" fill="rgb(233,208,19)"/><text x="1.5110%" y="4734.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="1.2610%" y="4740" width="0.1621%" height="15" fill="rgb(216,164,2)"/><text x="1.5110%" y="4750.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.2610%" y="4756" width="0.1621%" height="15" fill="rgb(220,129,5)"/><text x="1.5110%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="1.2610%" y="4772" width="0.1621%" height="15" fill="rgb(242,17,10)"/><text x="1.5110%" y="4782.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (9 samples, 0.16%)</title><rect x="1.2610%" y="4788" width="0.1621%" height="15" fill="rgb(242,107,0)"/><text x="1.5110%" y="4798.50"></text></g><g><title>igetattr (astroid/bases.py:233) (9 samples, 0.16%)</title><rect x="1.2610%" y="4804" width="0.1621%" height="15" fill="rgb(251,28,31)"/><text x="1.5110%" y="4814.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (9 samples, 0.16%)</title><rect x="1.2610%" y="4820" width="0.1621%" height="15" fill="rgb(233,223,10)"/><text x="1.5110%" y="4830.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (8 samples, 0.14%)</title><rect x="1.2790%" y="4836" width="0.1441%" height="15" fill="rgb(215,21,27)"/><text x="1.5290%" y="4846.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (8 samples, 0.14%)</title><rect x="1.2790%" y="4852" width="0.1441%" height="15" fill="rgb(232,23,21)"/><text x="1.5290%" y="4862.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="1.2790%" y="4868" width="0.1441%" height="15" fill="rgb(244,5,23)"/><text x="1.5290%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="1.2790%" y="4884" width="0.1441%" height="15" fill="rgb(226,81,46)"/><text x="1.5290%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="1.2790%" y="4900" width="0.1441%" height="15" fill="rgb(247,70,30)"/><text x="1.5290%" y="4910.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="1.2790%" y="4916" width="0.1441%" height="15" fill="rgb(212,68,19)"/><text x="1.5290%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="1.2790%" y="4932" width="0.1441%" height="15" fill="rgb(240,187,13)"/><text x="1.5290%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="1.2790%" y="4948" width="0.1441%" height="15" fill="rgb(223,113,26)"/><text x="1.5290%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="1.2790%" y="4964" width="0.1441%" height="15" fill="rgb(206,192,2)"/><text x="1.5290%" y="4974.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="1.3151%" y="4980" width="0.1081%" height="15" fill="rgb(241,108,4)"/><text x="1.5651%" y="4990.50"></text></g><g><title>igetattr (astroid/bases.py:233) (6 samples, 0.11%)</title><rect x="1.3151%" y="4996" width="0.1081%" height="15" fill="rgb(247,173,49)"/><text x="1.5651%" y="5006.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (6 samples, 0.11%)</title><rect x="1.3151%" y="5012" width="0.1081%" height="15" fill="rgb(224,114,35)"/><text x="1.5651%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="1.6574%" y="5300" width="0.1621%" height="15" fill="rgb(245,159,27)"/><text x="1.9074%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="1.6754%" y="5316" width="0.1441%" height="15" fill="rgb(245,172,44)"/><text x="1.9254%" y="5326.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="1.6574%" y="5268" width="0.1982%" height="15" fill="rgb(236,23,11)"/><text x="1.9074%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="1.6574%" y="5284" width="0.1982%" height="15" fill="rgb(205,117,38)"/><text x="1.9074%" y="5294.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (20 samples, 0.36%)</title><rect x="1.6033%" y="5204" width="0.3603%" height="15" fill="rgb(237,72,25)"/><text x="1.8533%" y="5214.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (20 samples, 0.36%)</title><rect x="1.6033%" y="5220" width="0.3603%" height="15" fill="rgb(244,70,9)"/><text x="1.8533%" y="5230.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (20 samples, 0.36%)</title><rect x="1.6033%" y="5236" width="0.3603%" height="15" fill="rgb(217,125,39)"/><text x="1.8533%" y="5246.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (17 samples, 0.31%)</title><rect x="1.6574%" y="5252" width="0.3063%" height="15" fill="rgb(235,36,10)"/><text x="1.9074%" y="5262.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (12 samples, 0.22%)</title><rect x="1.9636%" y="5204" width="0.2162%" height="15" fill="rgb(251,123,47)"/><text x="2.2136%" y="5214.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="1.9636%" y="5220" width="0.2162%" height="15" fill="rgb(221,13,13)"/><text x="2.2136%" y="5230.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="1.9636%" y="5236" width="0.2162%" height="15" fill="rgb(238,131,9)"/><text x="2.2136%" y="5246.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (10 samples, 0.18%)</title><rect x="1.9996%" y="5252" width="0.1801%" height="15" fill="rgb(211,50,8)"/><text x="2.2496%" y="5262.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="2.0537%" y="5268" width="0.1261%" height="15" fill="rgb(245,182,24)"/><text x="2.3037%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (50 samples, 0.90%)</title><rect x="1.4412%" y="5156" width="0.9007%" height="15" fill="rgb(242,14,37)"/><text x="1.6912%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (50 samples, 0.90%)</title><rect x="1.4412%" y="5172" width="0.9007%" height="15" fill="rgb(246,228,12)"/><text x="1.6912%" y="5182.50"></text></g><g><title>infer_call (astroid/inference.py:229) (46 samples, 0.83%)</title><rect x="1.5132%" y="5188" width="0.8287%" height="15" fill="rgb(213,55,15)"/><text x="1.7632%" y="5198.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (6 samples, 0.11%)</title><rect x="2.2338%" y="5204" width="0.1081%" height="15" fill="rgb(209,9,3)"/><text x="2.4838%" y="5214.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (6 samples, 0.11%)</title><rect x="2.2338%" y="5220" width="0.1081%" height="15" fill="rgb(230,59,30)"/><text x="2.4838%" y="5230.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="2.3419%" y="5268" width="0.1261%" height="15" fill="rgb(209,121,21)"/><text x="2.5919%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="2.3419%" y="5284" width="0.1261%" height="15" fill="rgb(220,109,13)"/><text x="2.5919%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="2.3419%" y="5300" width="0.1261%" height="15" fill="rgb(232,18,1)"/><text x="2.5919%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="2.3419%" y="5316" width="0.1261%" height="15" fill="rgb(215,41,42)"/><text x="2.5919%" y="5326.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="2.3419%" y="5332" width="0.1261%" height="15" fill="rgb(224,123,36)"/><text x="2.5919%" y="5342.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="2.3419%" y="5348" width="0.1261%" height="15" fill="rgb(240,125,3)"/><text x="2.5919%" y="5358.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (7 samples, 0.13%)</title><rect x="2.3419%" y="5364" width="0.1261%" height="15" fill="rgb(205,98,50)"/><text x="2.5919%" y="5374.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (77 samples, 1.39%)</title><rect x="1.4232%" y="4916" width="1.3871%" height="15" fill="rgb(205,185,37)"/><text x="1.6732%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (77 samples, 1.39%)</title><rect x="1.4232%" y="4932" width="1.3871%" height="15" fill="rgb(238,207,15)"/><text x="1.6732%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (77 samples, 1.39%)</title><rect x="1.4232%" y="4948" width="1.3871%" height="15" fill="rgb(213,199,42)"/><text x="1.6732%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (77 samples, 1.39%)</title><rect x="1.4232%" y="4964" width="1.3871%" height="15" fill="rgb(235,201,11)"/><text x="1.6732%" y="4974.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (77 samples, 1.39%)</title><rect x="1.4232%" y="4980" width="1.3871%" height="15" fill="rgb(207,46,11)"/><text x="1.6732%" y="4990.50"></text></g><g><title>igetattr (astroid/bases.py:233) (77 samples, 1.39%)</title><rect x="1.4232%" y="4996" width="1.3871%" height="15" fill="rgb(241,35,35)"/><text x="1.6732%" y="5006.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (77 samples, 1.39%)</title><rect x="1.4232%" y="5012" width="1.3871%" height="15" fill="rgb(243,32,47)"/><text x="1.6732%" y="5022.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (77 samples, 1.39%)</title><rect x="1.4232%" y="5028" width="1.3871%" height="15" fill="rgb(247,202,23)"/><text x="1.6732%" y="5038.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (77 samples, 1.39%)</title><rect x="1.4232%" y="5044" width="1.3871%" height="15" fill="rgb(219,102,11)"/><text x="1.6732%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (77 samples, 1.39%)</title><rect x="1.4232%" y="5060" width="1.3871%" height="15" fill="rgb(243,110,44)"/><text x="1.6732%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (77 samples, 1.39%)</title><rect x="1.4232%" y="5076" width="1.3871%" height="15" fill="rgb(222,74,54)"/><text x="1.6732%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (77 samples, 1.39%)</title><rect x="1.4232%" y="5092" width="1.3871%" height="15" fill="rgb(216,99,12)"/><text x="1.6732%" y="5102.50"></text></g><g><title>infer_call (astroid/inference.py:229) (77 samples, 1.39%)</title><rect x="1.4232%" y="5108" width="1.3871%" height="15" fill="rgb(226,22,26)"/><text x="1.6732%" y="5118.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (77 samples, 1.39%)</title><rect x="1.4232%" y="5124" width="1.3871%" height="15" fill="rgb(217,163,10)"/><text x="1.6732%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (76 samples, 1.37%)</title><rect x="1.4412%" y="5140" width="1.3691%" height="15" fill="rgb(213,25,53)"/><text x="1.6912%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (26 samples, 0.47%)</title><rect x="2.3419%" y="5156" width="0.4684%" height="15" fill="rgb(252,105,26)"/><text x="2.5919%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="2.3419%" y="5172" width="0.4684%" height="15" fill="rgb(220,39,43)"/><text x="2.5919%" y="5182.50"></text></g><g><title>infer_call (astroid/inference.py:229) (26 samples, 0.47%)</title><rect x="2.3419%" y="5188" width="0.4684%" height="15" fill="rgb(229,68,48)"/><text x="2.5919%" y="5198.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (26 samples, 0.47%)</title><rect x="2.3419%" y="5204" width="0.4684%" height="15" fill="rgb(252,8,32)"/><text x="2.5919%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="2.3419%" y="5220" width="0.4684%" height="15" fill="rgb(223,20,43)"/><text x="2.5919%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="2.3419%" y="5236" width="0.4684%" height="15" fill="rgb(229,81,49)"/><text x="2.5919%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="2.3419%" y="5252" width="0.4684%" height="15" fill="rgb(236,28,36)"/><text x="2.5919%" y="5262.50"></text></g><g><title>infer_call (astroid/inference.py:229) (19 samples, 0.34%)</title><rect x="2.4680%" y="5268" width="0.3423%" height="15" fill="rgb(249,185,26)"/><text x="2.7180%" y="5278.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (12 samples, 0.22%)</title><rect x="2.9905%" y="5236" width="0.2162%" height="15" fill="rgb(249,174,33)"/><text x="3.2405%" y="5246.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (11 samples, 0.20%)</title><rect x="3.0085%" y="5252" width="0.1982%" height="15" fill="rgb(233,201,37)"/><text x="3.2585%" y="5262.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="3.0805%" y="5268" width="0.1261%" height="15" fill="rgb(221,78,26)"/><text x="3.3305%" y="5278.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="3.0805%" y="5284" width="0.1261%" height="15" fill="rgb(250,127,30)"/><text x="3.3305%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="3.0805%" y="5300" width="0.1261%" height="15" fill="rgb(230,49,44)"/><text x="3.3305%" y="5310.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (13 samples, 0.23%)</title><rect x="2.9905%" y="5220" width="0.2342%" height="15" fill="rgb(229,67,23)"/><text x="3.2405%" y="5230.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (11 samples, 0.20%)</title><rect x="3.2246%" y="5220" width="0.1982%" height="15" fill="rgb(249,83,47)"/><text x="3.4746%" y="5230.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="3.2246%" y="5236" width="0.1982%" height="15" fill="rgb(215,43,3)"/><text x="3.4746%" y="5246.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="3.2246%" y="5252" width="0.1982%" height="15" fill="rgb(238,154,13)"/><text x="3.4746%" y="5262.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="3.3147%" y="5268" width="0.1081%" height="15" fill="rgb(219,56,2)"/><text x="3.5647%" y="5278.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="3.4769%" y="5236" width="0.1261%" height="15" fill="rgb(233,0,4)"/><text x="3.7269%" y="5246.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (6 samples, 0.11%)</title><rect x="3.4949%" y="5252" width="0.1081%" height="15" fill="rgb(235,30,7)"/><text x="3.7449%" y="5262.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (11 samples, 0.20%)</title><rect x="3.4228%" y="5220" width="0.1982%" height="15" fill="rgb(250,79,13)"/><text x="3.6728%" y="5230.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (8 samples, 0.14%)</title><rect x="3.6390%" y="5268" width="0.1441%" height="15" fill="rgb(211,146,34)"/><text x="3.8890%" y="5278.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (8 samples, 0.14%)</title><rect x="3.6390%" y="5284" width="0.1441%" height="15" fill="rgb(228,22,38)"/><text x="3.8890%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="3.6750%" y="5300" width="0.1081%" height="15" fill="rgb(235,168,5)"/><text x="3.9250%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="3.6750%" y="5316" width="0.1081%" height="15" fill="rgb(221,155,16)"/><text x="3.9250%" y="5326.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (135 samples, 2.43%)</title><rect x="1.4232%" y="4724" width="2.4320%" height="15" fill="rgb(215,215,53)"/><text x="1.6732%" y="4734.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (135 samples, 2.43%)</title><rect x="1.4232%" y="4740" width="2.4320%" height="15" fill="rgb(223,4,10)"/><text x="1.6732%" y="4750.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (135 samples, 2.43%)</title><rect x="1.4232%" y="4756" width="2.4320%" height="15" fill="rgb(234,103,6)"/><text x="1.6732%" y="4766.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (135 samples, 2.43%)</title><rect x="1.4232%" y="4772" width="2.4320%" height="15" fill="rgb(227,97,0)"/><text x="1.6732%" y="4782.50">wr..</text></g><g><title>infer_attribute (astroid/inference.py:316) (135 samples, 2.43%)</title><rect x="1.4232%" y="4788" width="2.4320%" height="15" fill="rgb(234,150,53)"/><text x="1.6732%" y="4798.50">in..</text></g><g><title>igetattr (astroid/bases.py:233) (135 samples, 2.43%)</title><rect x="1.4232%" y="4804" width="2.4320%" height="15" fill="rgb(228,201,54)"/><text x="1.6732%" y="4814.50">ig..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (135 samples, 2.43%)</title><rect x="1.4232%" y="4820" width="2.4320%" height="15" fill="rgb(222,22,37)"/><text x="1.6732%" y="4830.50">_w..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (135 samples, 2.43%)</title><rect x="1.4232%" y="4836" width="2.4320%" height="15" fill="rgb(237,53,32)"/><text x="1.6732%" y="4846.50">ig..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (135 samples, 2.43%)</title><rect x="1.4232%" y="4852" width="2.4320%" height="15" fill="rgb(233,25,53)"/><text x="1.6732%" y="4862.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (135 samples, 2.43%)</title><rect x="1.4232%" y="4868" width="2.4320%" height="15" fill="rgb(210,40,34)"/><text x="1.6732%" y="4878.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (135 samples, 2.43%)</title><rect x="1.4232%" y="4884" width="2.4320%" height="15" fill="rgb(241,220,44)"/><text x="1.6732%" y="4894.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (135 samples, 2.43%)</title><rect x="1.4232%" y="4900" width="2.4320%" height="15" fill="rgb(235,28,35)"/><text x="1.6732%" y="4910.50">wr..</text></g><g><title>infer_attribute (astroid/inference.py:316) (58 samples, 1.04%)</title><rect x="2.8103%" y="4916" width="1.0449%" height="15" fill="rgb(210,56,17)"/><text x="3.0603%" y="4926.50"></text></g><g><title>igetattr (astroid/bases.py:233) (54 samples, 0.97%)</title><rect x="2.8824%" y="4932" width="0.9728%" height="15" fill="rgb(224,130,29)"/><text x="3.1324%" y="4942.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (54 samples, 0.97%)</title><rect x="2.8824%" y="4948" width="0.9728%" height="15" fill="rgb(235,212,8)"/><text x="3.1324%" y="4958.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (52 samples, 0.94%)</title><rect x="2.9184%" y="4964" width="0.9368%" height="15" fill="rgb(223,33,50)"/><text x="3.1684%" y="4974.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (52 samples, 0.94%)</title><rect x="2.9184%" y="4980" width="0.9368%" height="15" fill="rgb(219,149,13)"/><text x="3.1684%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (52 samples, 0.94%)</title><rect x="2.9184%" y="4996" width="0.9368%" height="15" fill="rgb(250,156,29)"/><text x="3.1684%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (49 samples, 0.88%)</title><rect x="2.9724%" y="5012" width="0.8827%" height="15" fill="rgb(216,193,19)"/><text x="3.2224%" y="5022.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (49 samples, 0.88%)</title><rect x="2.9724%" y="5028" width="0.8827%" height="15" fill="rgb(216,135,14)"/><text x="3.2224%" y="5038.50"></text></g><g><title>infer_call (astroid/inference.py:229) (49 samples, 0.88%)</title><rect x="2.9724%" y="5044" width="0.8827%" height="15" fill="rgb(241,47,5)"/><text x="3.2224%" y="5054.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (49 samples, 0.88%)</title><rect x="2.9724%" y="5060" width="0.8827%" height="15" fill="rgb(233,42,35)"/><text x="3.2224%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (49 samples, 0.88%)</title><rect x="2.9724%" y="5076" width="0.8827%" height="15" fill="rgb(231,13,6)"/><text x="3.2224%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (49 samples, 0.88%)</title><rect x="2.9724%" y="5092" width="0.8827%" height="15" fill="rgb(207,181,40)"/><text x="3.2224%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (49 samples, 0.88%)</title><rect x="2.9724%" y="5108" width="0.8827%" height="15" fill="rgb(254,173,49)"/><text x="3.2224%" y="5118.50"></text></g><g><title>infer_call (astroid/inference.py:229) (49 samples, 0.88%)</title><rect x="2.9724%" y="5124" width="0.8827%" height="15" fill="rgb(221,1,38)"/><text x="3.2224%" y="5134.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (49 samples, 0.88%)</title><rect x="2.9724%" y="5140" width="0.8827%" height="15" fill="rgb(206,124,46)"/><text x="3.2224%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (49 samples, 0.88%)</title><rect x="2.9724%" y="5156" width="0.8827%" height="15" fill="rgb(249,21,11)"/><text x="3.2224%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (49 samples, 0.88%)</title><rect x="2.9724%" y="5172" width="0.8827%" height="15" fill="rgb(222,201,40)"/><text x="3.2224%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (49 samples, 0.88%)</title><rect x="2.9724%" y="5188" width="0.8827%" height="15" fill="rgb(235,61,29)"/><text x="3.2224%" y="5198.50"></text></g><g><title>infer_call (astroid/inference.py:229) (48 samples, 0.86%)</title><rect x="2.9905%" y="5204" width="0.8647%" height="15" fill="rgb(219,207,3)"/><text x="3.2405%" y="5214.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (12 samples, 0.22%)</title><rect x="3.6390%" y="5220" width="0.2162%" height="15" fill="rgb(222,56,46)"/><text x="3.8890%" y="5230.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (12 samples, 0.22%)</title><rect x="3.6390%" y="5236" width="0.2162%" height="15" fill="rgb(239,76,54)"/><text x="3.8890%" y="5246.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (12 samples, 0.22%)</title><rect x="3.6390%" y="5252" width="0.2162%" height="15" fill="rgb(231,124,27)"/><text x="3.8890%" y="5262.50"></text></g><g><title>infer_call (astroid/inference.py:223) (139 samples, 2.50%)</title><rect x="1.4232%" y="4660" width="2.5041%" height="15" fill="rgb(249,195,6)"/><text x="1.6732%" y="4670.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (139 samples, 2.50%)</title><rect x="1.4232%" y="4676" width="2.5041%" height="15" fill="rgb(237,174,47)"/><text x="1.6732%" y="4686.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (139 samples, 2.50%)</title><rect x="1.4232%" y="4692" width="2.5041%" height="15" fill="rgb(206,201,31)"/><text x="1.6732%" y="4702.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (139 samples, 2.50%)</title><rect x="1.4232%" y="4708" width="2.5041%" height="15" fill="rgb(231,57,52)"/><text x="1.6732%" y="4718.50">wr..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (8 samples, 0.14%)</title><rect x="3.9993%" y="5108" width="0.1441%" height="15" fill="rgb(248,177,22)"/><text x="4.2493%" y="5118.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="3.9993%" y="5124" width="0.1441%" height="15" fill="rgb(215,211,37)"/><text x="4.2493%" y="5134.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="4.0173%" y="5140" width="0.1261%" height="15" fill="rgb(241,128,51)"/><text x="4.2673%" y="5150.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="4.0173%" y="5156" width="0.1261%" height="15" fill="rgb(227,165,31)"/><text x="4.2673%" y="5166.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="4.0173%" y="5172" width="0.1261%" height="15" fill="rgb(228,167,24)"/><text x="4.2673%" y="5182.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="4.0173%" y="5188" width="0.1261%" height="15" fill="rgb(228,143,12)"/><text x="4.2673%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="4.0173%" y="5204" width="0.1261%" height="15" fill="rgb(249,149,8)"/><text x="4.2673%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="4.0173%" y="5220" width="0.1261%" height="15" fill="rgb(243,35,44)"/><text x="4.2673%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="4.0173%" y="5236" width="0.1261%" height="15" fill="rgb(246,89,9)"/><text x="4.2673%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="4.0173%" y="5252" width="0.1261%" height="15" fill="rgb(233,213,13)"/><text x="4.2673%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="4.0173%" y="5268" width="0.1261%" height="15" fill="rgb(233,141,41)"/><text x="4.2673%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="4.0173%" y="5284" width="0.1261%" height="15" fill="rgb(239,167,4)"/><text x="4.2673%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:95) (6 samples, 0.11%)</title><rect x="4.0353%" y="5300" width="0.1081%" height="15" fill="rgb(209,217,16)"/><text x="4.2853%" y="5310.50"></text></g><g><title>infer_call (astroid/inference.py:223) (13 samples, 0.23%)</title><rect x="3.9272%" y="4996" width="0.2342%" height="15" fill="rgb(219,88,35)"/><text x="4.1772%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="3.9272%" y="5012" width="0.2342%" height="15" fill="rgb(220,193,23)"/><text x="4.1772%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="3.9272%" y="5028" width="0.2342%" height="15" fill="rgb(230,90,52)"/><text x="4.1772%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="3.9272%" y="5044" width="0.2342%" height="15" fill="rgb(252,106,19)"/><text x="4.1772%" y="5054.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="3.9272%" y="5060" width="0.2342%" height="15" fill="rgb(206,74,20)"/><text x="4.1772%" y="5070.50"></text></g><g><title>igetattr (astroid/bases.py:233) (9 samples, 0.16%)</title><rect x="3.9993%" y="5076" width="0.1621%" height="15" fill="rgb(230,138,44)"/><text x="4.2493%" y="5086.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (9 samples, 0.16%)</title><rect x="3.9993%" y="5092" width="0.1621%" height="15" fill="rgb(235,182,43)"/><text x="4.2493%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (14 samples, 0.25%)</title><rect x="3.9272%" y="4932" width="0.2522%" height="15" fill="rgb(242,16,51)"/><text x="4.1772%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="3.9272%" y="4948" width="0.2522%" height="15" fill="rgb(248,9,4)"/><text x="4.1772%" y="4958.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="3.9272%" y="4964" width="0.2522%" height="15" fill="rgb(210,31,22)"/><text x="4.1772%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="3.9272%" y="4980" width="0.2522%" height="15" fill="rgb(239,54,39)"/><text x="4.1772%" y="4990.50"></text></g><g><title>infer_call (astroid/inference.py:223) (18 samples, 0.32%)</title><rect x="3.9272%" y="4868" width="0.3243%" height="15" fill="rgb(230,99,41)"/><text x="4.1772%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="3.9272%" y="4884" width="0.3243%" height="15" fill="rgb(253,106,12)"/><text x="4.1772%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="3.9272%" y="4900" width="0.3243%" height="15" fill="rgb(213,46,41)"/><text x="4.1772%" y="4910.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="3.9272%" y="4916" width="0.3243%" height="15" fill="rgb(215,133,35)"/><text x="4.1772%" y="4926.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (9 samples, 0.16%)</title><rect x="4.2695%" y="5156" width="0.1621%" height="15" fill="rgb(213,28,5)"/><text x="4.5195%" y="5166.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="4.2695%" y="5172" width="0.1621%" height="15" fill="rgb(215,77,49)"/><text x="4.5195%" y="5182.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (9 samples, 0.16%)</title><rect x="4.2695%" y="5188" width="0.1621%" height="15" fill="rgb(248,100,22)"/><text x="4.5195%" y="5198.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (9 samples, 0.16%)</title><rect x="4.2695%" y="5204" width="0.1621%" height="15" fill="rgb(208,67,9)"/><text x="4.5195%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="4.2695%" y="5220" width="0.1621%" height="15" fill="rgb(219,133,21)"/><text x="4.5195%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="4.2695%" y="5236" width="0.1621%" height="15" fill="rgb(246,46,29)"/><text x="4.5195%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="4.2695%" y="5252" width="0.1621%" height="15" fill="rgb(246,185,52)"/><text x="4.5195%" y="5262.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="4.2875%" y="5268" width="0.1441%" height="15" fill="rgb(252,136,11)"/><text x="4.5375%" y="5278.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (8 samples, 0.14%)</title><rect x="4.2875%" y="5284" width="0.1441%" height="15" fill="rgb(219,138,53)"/><text x="4.5375%" y="5294.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:598) (7 samples, 0.13%)</title><rect x="4.3055%" y="5300" width="0.1261%" height="15" fill="rgb(211,51,23)"/><text x="4.5555%" y="5310.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (7 samples, 0.13%)</title><rect x="4.3055%" y="5316" width="0.1261%" height="15" fill="rgb(247,221,28)"/><text x="4.5555%" y="5326.50"></text></g><g><title>__init__ (astroid/exceptions.py:34) (7 samples, 0.13%)</title><rect x="4.3055%" y="5332" width="0.1261%" height="15" fill="rgb(251,222,45)"/><text x="4.5555%" y="5342.50"></text></g><g><title>infer_call (astroid/inference.py:223) (12 samples, 0.22%)</title><rect x="4.2515%" y="5076" width="0.2162%" height="15" fill="rgb(217,162,53)"/><text x="4.5015%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="4.2515%" y="5092" width="0.2162%" height="15" fill="rgb(229,93,14)"/><text x="4.5015%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="4.2515%" y="5108" width="0.2162%" height="15" fill="rgb(209,67,49)"/><text x="4.5015%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="4.2515%" y="5124" width="0.2162%" height="15" fill="rgb(213,87,29)"/><text x="4.5015%" y="5134.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="4.2695%" y="5140" width="0.1982%" height="15" fill="rgb(205,151,52)"/><text x="4.5195%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (35 samples, 0.63%)</title><rect x="3.9272%" y="4804" width="0.6305%" height="15" fill="rgb(253,215,39)"/><text x="4.1772%" y="4814.50"></text></g><g><title>infer (astroid/node_classes.py:380) (35 samples, 0.63%)</title><rect x="3.9272%" y="4820" width="0.6305%" height="15" fill="rgb(221,220,41)"/><text x="4.1772%" y="4830.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (35 samples, 0.63%)</title><rect x="3.9272%" y="4836" width="0.6305%" height="15" fill="rgb(218,133,21)"/><text x="4.1772%" y="4846.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (35 samples, 0.63%)</title><rect x="3.9272%" y="4852" width="0.6305%" height="15" fill="rgb(221,193,43)"/><text x="4.1772%" y="4862.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="4.2515%" y="4868" width="0.3063%" height="15" fill="rgb(240,128,52)"/><text x="4.5015%" y="4878.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (17 samples, 0.31%)</title><rect x="4.2515%" y="4884" width="0.3063%" height="15" fill="rgb(253,114,12)"/><text x="4.5015%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="4.2515%" y="4900" width="0.3063%" height="15" fill="rgb(215,223,47)"/><text x="4.5015%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="4.2515%" y="4916" width="0.3063%" height="15" fill="rgb(248,225,23)"/><text x="4.5015%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="4.2515%" y="4932" width="0.3063%" height="15" fill="rgb(250,108,0)"/><text x="4.5015%" y="4942.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (17 samples, 0.31%)</title><rect x="4.2515%" y="4948" width="0.3063%" height="15" fill="rgb(228,208,7)"/><text x="4.5015%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="4.2515%" y="4964" width="0.3063%" height="15" fill="rgb(244,45,10)"/><text x="4.5015%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="4.2515%" y="4980" width="0.3063%" height="15" fill="rgb(207,125,25)"/><text x="4.5015%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="4.2515%" y="4996" width="0.3063%" height="15" fill="rgb(210,195,18)"/><text x="4.5015%" y="5006.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (17 samples, 0.31%)</title><rect x="4.2515%" y="5012" width="0.3063%" height="15" fill="rgb(249,80,12)"/><text x="4.5015%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="4.2515%" y="5028" width="0.3063%" height="15" fill="rgb(221,65,9)"/><text x="4.5015%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="4.2515%" y="5044" width="0.3063%" height="15" fill="rgb(235,49,36)"/><text x="4.5015%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="4.2515%" y="5060" width="0.3063%" height="15" fill="rgb(225,32,20)"/><text x="4.5015%" y="5070.50"></text></g><g><title>infer_call (astroid/inference.py:223) (40 samples, 0.72%)</title><rect x="3.9272%" y="4740" width="0.7206%" height="15" fill="rgb(215,141,46)"/><text x="4.1772%" y="4750.50"></text></g><g><title>infer (astroid/node_classes.py:380) (40 samples, 0.72%)</title><rect x="3.9272%" y="4756" width="0.7206%" height="15" fill="rgb(250,160,47)"/><text x="4.1772%" y="4766.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (40 samples, 0.72%)</title><rect x="3.9272%" y="4772" width="0.7206%" height="15" fill="rgb(216,222,40)"/><text x="4.1772%" y="4782.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (40 samples, 0.72%)</title><rect x="3.9272%" y="4788" width="0.7206%" height="15" fill="rgb(234,217,39)"/><text x="4.1772%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (43 samples, 0.77%)</title><rect x="3.9272%" y="4708" width="0.7746%" height="15" fill="rgb(207,178,40)"/><text x="4.1772%" y="4718.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (43 samples, 0.77%)</title><rect x="3.9272%" y="4724" width="0.7746%" height="15" fill="rgb(221,136,13)"/><text x="4.1772%" y="4734.50"></text></g><g><title>infer_call (astroid/inference.py:223) (192 samples, 3.46%)</title><rect x="1.2610%" y="4068" width="3.4588%" height="15" fill="rgb(249,199,10)"/><text x="1.5110%" y="4078.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (192 samples, 3.46%)</title><rect x="1.2610%" y="4084" width="3.4588%" height="15" fill="rgb(249,222,13)"/><text x="1.5110%" y="4094.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (192 samples, 3.46%)</title><rect x="1.2610%" y="4100" width="3.4588%" height="15" fill="rgb(244,185,38)"/><text x="1.5110%" y="4110.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (192 samples, 3.46%)</title><rect x="1.2610%" y="4116" width="3.4588%" height="15" fill="rgb(236,202,9)"/><text x="1.5110%" y="4126.50">wra..</text></g><g><title>infer_attribute (astroid/inference.py:289) (192 samples, 3.46%)</title><rect x="1.2610%" y="4132" width="3.4588%" height="15" fill="rgb(250,229,37)"/><text x="1.5110%" y="4142.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (192 samples, 3.46%)</title><rect x="1.2610%" y="4148" width="3.4588%" height="15" fill="rgb(206,174,23)"/><text x="1.5110%" y="4158.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (192 samples, 3.46%)</title><rect x="1.2610%" y="4164" width="3.4588%" height="15" fill="rgb(211,33,43)"/><text x="1.5110%" y="4174.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (192 samples, 3.46%)</title><rect x="1.2610%" y="4180" width="3.4588%" height="15" fill="rgb(245,58,50)"/><text x="1.5110%" y="4190.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (192 samples, 3.46%)</title><rect x="1.2610%" y="4196" width="3.4588%" height="15" fill="rgb(244,68,36)"/><text x="1.5110%" y="4206.50">inf..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (192 samples, 3.46%)</title><rect x="1.2610%" y="4212" width="3.4588%" height="15" fill="rgb(232,229,15)"/><text x="1.5110%" y="4222.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (192 samples, 3.46%)</title><rect x="1.2610%" y="4228" width="3.4588%" height="15" fill="rgb(254,30,23)"/><text x="1.5110%" y="4238.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4244" width="3.2967%" height="15" fill="rgb(235,160,14)"/><text x="1.6732%" y="4254.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4260" width="3.2967%" height="15" fill="rgb(212,155,44)"/><text x="1.6732%" y="4270.50">wra..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (183 samples, 3.30%)</title><rect x="1.4232%" y="4276" width="3.2967%" height="15" fill="rgb(226,2,50)"/><text x="1.6732%" y="4286.50">_in..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4292" width="3.2967%" height="15" fill="rgb(234,177,6)"/><text x="1.6732%" y="4302.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4308" width="3.2967%" height="15" fill="rgb(217,24,9)"/><text x="1.6732%" y="4318.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4324" width="3.2967%" height="15" fill="rgb(220,13,46)"/><text x="1.6732%" y="4334.50">wra..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (183 samples, 3.30%)</title><rect x="1.4232%" y="4340" width="3.2967%" height="15" fill="rgb(239,221,27)"/><text x="1.6732%" y="4350.50">_in..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4356" width="3.2967%" height="15" fill="rgb(222,198,25)"/><text x="1.6732%" y="4366.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4372" width="3.2967%" height="15" fill="rgb(211,99,13)"/><text x="1.6732%" y="4382.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4388" width="3.2967%" height="15" fill="rgb(232,111,31)"/><text x="1.6732%" y="4398.50">wra..</text></g><g><title>infer_call (astroid/inference.py:223) (183 samples, 3.30%)</title><rect x="1.4232%" y="4404" width="3.2967%" height="15" fill="rgb(245,82,37)"/><text x="1.6732%" y="4414.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4420" width="3.2967%" height="15" fill="rgb(227,149,46)"/><text x="1.6732%" y="4430.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4436" width="3.2967%" height="15" fill="rgb(218,36,50)"/><text x="1.6732%" y="4446.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4452" width="3.2967%" height="15" fill="rgb(226,80,48)"/><text x="1.6732%" y="4462.50">wra..</text></g><g><title>infer_attribute (astroid/inference.py:289) (183 samples, 3.30%)</title><rect x="1.4232%" y="4468" width="3.2967%" height="15" fill="rgb(238,224,15)"/><text x="1.6732%" y="4478.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4484" width="3.2967%" height="15" fill="rgb(241,136,10)"/><text x="1.6732%" y="4494.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4500" width="3.2967%" height="15" fill="rgb(208,32,45)"/><text x="1.6732%" y="4510.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4516" width="3.2967%" height="15" fill="rgb(207,135,9)"/><text x="1.6732%" y="4526.50">wra..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (183 samples, 3.30%)</title><rect x="1.4232%" y="4532" width="3.2967%" height="15" fill="rgb(206,86,44)"/><text x="1.6732%" y="4542.50">_in..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4548" width="3.2967%" height="15" fill="rgb(245,177,15)"/><text x="1.6732%" y="4558.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4564" width="3.2967%" height="15" fill="rgb(206,64,50)"/><text x="1.6732%" y="4574.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4580" width="3.2967%" height="15" fill="rgb(234,36,40)"/><text x="1.6732%" y="4590.50">wra..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (183 samples, 3.30%)</title><rect x="1.4232%" y="4596" width="3.2967%" height="15" fill="rgb(213,64,8)"/><text x="1.6732%" y="4606.50">_in..</text></g><g><title>infer (astroid/node_classes.py:380) (183 samples, 3.30%)</title><rect x="1.4232%" y="4612" width="3.2967%" height="15" fill="rgb(210,75,36)"/><text x="1.6732%" y="4622.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (183 samples, 3.30%)</title><rect x="1.4232%" y="4628" width="3.2967%" height="15" fill="rgb(229,88,21)"/><text x="1.6732%" y="4638.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (183 samples, 3.30%)</title><rect x="1.4232%" y="4644" width="3.2967%" height="15" fill="rgb(252,204,47)"/><text x="1.6732%" y="4654.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (44 samples, 0.79%)</title><rect x="3.9272%" y="4660" width="0.7926%" height="15" fill="rgb(208,77,27)"/><text x="4.1772%" y="4670.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (44 samples, 0.79%)</title><rect x="3.9272%" y="4676" width="0.7926%" height="15" fill="rgb(221,76,26)"/><text x="4.1772%" y="4686.50"></text></g><g><title>infer (astroid/node_classes.py:380) (44 samples, 0.79%)</title><rect x="3.9272%" y="4692" width="0.7926%" height="15" fill="rgb(225,139,18)"/><text x="4.1772%" y="4702.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="4.7739%" y="4228" width="0.1081%" height="15" fill="rgb(230,137,11)"/><text x="5.0239%" y="4238.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="4.7739%" y="4244" width="0.1081%" height="15" fill="rgb(212,28,1)"/><text x="5.0239%" y="4254.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="4.7739%" y="4260" width="0.1081%" height="15" fill="rgb(248,164,17)"/><text x="5.0239%" y="4270.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="4.7739%" y="4276" width="0.1081%" height="15" fill="rgb(222,171,42)"/><text x="5.0239%" y="4286.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="4.7739%" y="4292" width="0.1081%" height="15" fill="rgb(243,84,45)"/><text x="5.0239%" y="4302.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="4.7739%" y="4308" width="0.1081%" height="15" fill="rgb(252,49,23)"/><text x="5.0239%" y="4318.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="4.7739%" y="4324" width="0.1081%" height="15" fill="rgb(215,19,7)"/><text x="5.0239%" y="4334.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="4.7739%" y="4340" width="0.1081%" height="15" fill="rgb(238,81,41)"/><text x="5.0239%" y="4350.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="4.7739%" y="4356" width="0.1081%" height="15" fill="rgb(210,199,37)"/><text x="5.0239%" y="4366.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="4.7739%" y="4372" width="0.1081%" height="15" fill="rgb(244,192,49)"/><text x="5.0239%" y="4382.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="4.7739%" y="4388" width="0.1081%" height="15" fill="rgb(226,211,11)"/><text x="5.0239%" y="4398.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="4.7739%" y="4404" width="0.1081%" height="15" fill="rgb(236,162,54)"/><text x="5.0239%" y="4414.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="4.7739%" y="4420" width="0.1081%" height="15" fill="rgb(220,229,9)"/><text x="5.0239%" y="4430.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (6 samples, 0.11%)</title><rect x="4.7739%" y="4436" width="0.1081%" height="15" fill="rgb(250,87,22)"/><text x="5.0239%" y="4446.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="4.7739%" y="4452" width="0.1081%" height="15" fill="rgb(239,43,17)"/><text x="5.0239%" y="4462.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="4.7559%" y="4196" width="0.1621%" height="15" fill="rgb(231,177,25)"/><text x="5.0059%" y="4206.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="4.7739%" y="4212" width="0.1441%" height="15" fill="rgb(219,179,1)"/><text x="5.0239%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="4.9180%" y="4260" width="0.1441%" height="15" fill="rgb(238,219,53)"/><text x="5.1680%" y="4270.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="4.9541%" y="4276" width="0.1081%" height="15" fill="rgb(232,167,36)"/><text x="5.2041%" y="4286.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="4.9541%" y="4292" width="0.1081%" height="15" fill="rgb(244,19,51)"/><text x="5.2041%" y="4302.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="4.9541%" y="4308" width="0.1081%" height="15" fill="rgb(224,6,22)"/><text x="5.2041%" y="4318.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="4.9541%" y="4324" width="0.1081%" height="15" fill="rgb(224,145,5)"/><text x="5.2041%" y="4334.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="4.9541%" y="4340" width="0.1081%" height="15" fill="rgb(234,130,49)"/><text x="5.2041%" y="4350.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="4.9541%" y="4356" width="0.1081%" height="15" fill="rgb(254,6,2)"/><text x="5.2041%" y="4366.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (6 samples, 0.11%)</title><rect x="4.9541%" y="4372" width="0.1081%" height="15" fill="rgb(208,96,46)"/><text x="5.2041%" y="4382.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (6 samples, 0.11%)</title><rect x="4.9541%" y="4388" width="0.1081%" height="15" fill="rgb(239,3,39)"/><text x="5.2041%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4404" width="0.1081%" height="15" fill="rgb(233,210,1)"/><text x="5.2041%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4420" width="0.1081%" height="15" fill="rgb(244,137,37)"/><text x="5.2041%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4436" width="0.1081%" height="15" fill="rgb(240,136,2)"/><text x="5.2041%" y="4446.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4452" width="0.1081%" height="15" fill="rgb(239,18,37)"/><text x="5.2041%" y="4462.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4468" width="0.1081%" height="15" fill="rgb(218,185,22)"/><text x="5.2041%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4484" width="0.1081%" height="15" fill="rgb(225,218,4)"/><text x="5.2041%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4500" width="0.1081%" height="15" fill="rgb(230,182,32)"/><text x="5.2041%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4516" width="0.1081%" height="15" fill="rgb(242,56,43)"/><text x="5.2041%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4532" width="0.1081%" height="15" fill="rgb(233,99,24)"/><text x="5.2041%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4548" width="0.1081%" height="15" fill="rgb(234,209,42)"/><text x="5.2041%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4564" width="0.1081%" height="15" fill="rgb(227,7,12)"/><text x="5.2041%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4580" width="0.1081%" height="15" fill="rgb(245,203,43)"/><text x="5.2041%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4596" width="0.1081%" height="15" fill="rgb(238,205,33)"/><text x="5.2041%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4612" width="0.1081%" height="15" fill="rgb(231,56,7)"/><text x="5.2041%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4628" width="0.1081%" height="15" fill="rgb(244,186,29)"/><text x="5.2041%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4644" width="0.1081%" height="15" fill="rgb(234,111,31)"/><text x="5.2041%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4660" width="0.1081%" height="15" fill="rgb(241,149,10)"/><text x="5.2041%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4676" width="0.1081%" height="15" fill="rgb(249,206,44)"/><text x="5.2041%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4692" width="0.1081%" height="15" fill="rgb(251,153,30)"/><text x="5.2041%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4708" width="0.1081%" height="15" fill="rgb(239,152,38)"/><text x="5.2041%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="4.9541%" y="4724" width="0.1081%" height="15" fill="rgb(249,139,47)"/><text x="5.2041%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="4.9541%" y="4740" width="0.1081%" height="15" fill="rgb(244,64,35)"/><text x="5.2041%" y="4750.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="5.4224%" y="4660" width="0.1081%" height="15" fill="rgb(216,46,15)"/><text x="5.6724%" y="4670.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (10 samples, 0.18%)</title><rect x="5.4044%" y="4596" width="0.1801%" height="15" fill="rgb(250,74,19)"/><text x="5.6544%" y="4606.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (10 samples, 0.18%)</title><rect x="5.4044%" y="4612" width="0.1801%" height="15" fill="rgb(249,42,33)"/><text x="5.6544%" y="4622.50"></text></g><g><title>infer (astroid/node_classes.py:366) (10 samples, 0.18%)</title><rect x="5.4044%" y="4628" width="0.1801%" height="15" fill="rgb(242,149,17)"/><text x="5.6544%" y="4638.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="5.4044%" y="4644" width="0.1801%" height="15" fill="rgb(244,29,21)"/><text x="5.6544%" y="4654.50"></text></g><g><title>igetattr (astroid/bases.py:233) (14 samples, 0.25%)</title><rect x="5.3864%" y="4516" width="0.2522%" height="15" fill="rgb(220,130,37)"/><text x="5.6364%" y="4526.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (14 samples, 0.25%)</title><rect x="5.3864%" y="4532" width="0.2522%" height="15" fill="rgb(211,67,2)"/><text x="5.6364%" y="4542.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (14 samples, 0.25%)</title><rect x="5.3864%" y="4548" width="0.2522%" height="15" fill="rgb(235,68,52)"/><text x="5.6364%" y="4558.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (14 samples, 0.25%)</title><rect x="5.3864%" y="4564" width="0.2522%" height="15" fill="rgb(246,142,3)"/><text x="5.6364%" y="4574.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (13 samples, 0.23%)</title><rect x="5.4044%" y="4580" width="0.2342%" height="15" fill="rgb(241,25,7)"/><text x="5.6544%" y="4590.50"></text></g><g><title>infer_call (astroid/inference.py:223) (24 samples, 0.43%)</title><rect x="5.2243%" y="4436" width="0.4324%" height="15" fill="rgb(242,119,39)"/><text x="5.4743%" y="4446.50"></text></g><g><title>infer (astroid/node_classes.py:380) (24 samples, 0.43%)</title><rect x="5.2243%" y="4452" width="0.4324%" height="15" fill="rgb(241,98,45)"/><text x="5.4743%" y="4462.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (24 samples, 0.43%)</title><rect x="5.2243%" y="4468" width="0.4324%" height="15" fill="rgb(254,28,30)"/><text x="5.4743%" y="4478.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (24 samples, 0.43%)</title><rect x="5.2243%" y="4484" width="0.4324%" height="15" fill="rgb(241,142,54)"/><text x="5.4743%" y="4494.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (19 samples, 0.34%)</title><rect x="5.3144%" y="4500" width="0.3423%" height="15" fill="rgb(222,85,15)"/><text x="5.5644%" y="4510.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (36 samples, 0.65%)</title><rect x="5.1883%" y="4404" width="0.6485%" height="15" fill="rgb(210,85,47)"/><text x="5.4383%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (34 samples, 0.61%)</title><rect x="5.2243%" y="4420" width="0.6125%" height="15" fill="rgb(224,206,25)"/><text x="5.4743%" y="4430.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="5.6566%" y="4436" width="0.1801%" height="15" fill="rgb(243,201,19)"/><text x="5.9066%" y="4446.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (52 samples, 0.94%)</title><rect x="4.9180%" y="4228" width="0.9368%" height="15" fill="rgb(236,59,4)"/><text x="5.1680%" y="4238.50"></text></g><g><title>infer (astroid/node_classes.py:380) (52 samples, 0.94%)</title><rect x="4.9180%" y="4244" width="0.9368%" height="15" fill="rgb(254,179,45)"/><text x="5.1680%" y="4254.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (44 samples, 0.79%)</title><rect x="5.0622%" y="4260" width="0.7926%" height="15" fill="rgb(226,14,10)"/><text x="5.3122%" y="4270.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (44 samples, 0.79%)</title><rect x="5.0622%" y="4276" width="0.7926%" height="15" fill="rgb(244,27,41)"/><text x="5.3122%" y="4286.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (44 samples, 0.79%)</title><rect x="5.0622%" y="4292" width="0.7926%" height="15" fill="rgb(235,35,32)"/><text x="5.3122%" y="4302.50"></text></g><g><title>infer (astroid/node_classes.py:380) (44 samples, 0.79%)</title><rect x="5.0622%" y="4308" width="0.7926%" height="15" fill="rgb(218,68,31)"/><text x="5.3122%" y="4318.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (44 samples, 0.79%)</title><rect x="5.0622%" y="4324" width="0.7926%" height="15" fill="rgb(207,120,37)"/><text x="5.3122%" y="4334.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (44 samples, 0.79%)</title><rect x="5.0622%" y="4340" width="0.7926%" height="15" fill="rgb(227,98,0)"/><text x="5.3122%" y="4350.50"></text></g><g><title>infer_call (astroid/inference.py:229) (42 samples, 0.76%)</title><rect x="5.0982%" y="4356" width="0.7566%" height="15" fill="rgb(207,7,3)"/><text x="5.3482%" y="4366.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (40 samples, 0.72%)</title><rect x="5.1342%" y="4372" width="0.7206%" height="15" fill="rgb(206,98,19)"/><text x="5.3842%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:380) (37 samples, 0.67%)</title><rect x="5.1883%" y="4388" width="0.6665%" height="15" fill="rgb(217,5,26)"/><text x="5.4383%" y="4398.50"></text></g><g><title>infer_call (astroid/inference.py:223) (11 samples, 0.20%)</title><rect x="5.8728%" y="4308" width="0.1982%" height="15" fill="rgb(235,190,38)"/><text x="6.1228%" y="4318.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="5.8728%" y="4324" width="0.1982%" height="15" fill="rgb(247,86,24)"/><text x="6.1228%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="5.8728%" y="4340" width="0.1982%" height="15" fill="rgb(205,101,16)"/><text x="6.1228%" y="4350.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="5.8728%" y="4356" width="0.1982%" height="15" fill="rgb(246,168,33)"/><text x="6.1228%" y="4366.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="5.9269%" y="4372" width="0.1441%" height="15" fill="rgb(231,114,1)"/><text x="6.1769%" y="4382.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="5.8728%" y="4276" width="0.3243%" height="15" fill="rgb(207,184,53)"/><text x="6.1228%" y="4286.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="5.8728%" y="4292" width="0.3243%" height="15" fill="rgb(224,95,51)"/><text x="6.1228%" y="4302.50"></text></g><g><title>infer_call (astroid/inference.py:229) (7 samples, 0.13%)</title><rect x="6.0710%" y="4308" width="0.1261%" height="15" fill="rgb(212,188,45)"/><text x="6.3210%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (7 samples, 0.13%)</title><rect x="6.0710%" y="4324" width="0.1261%" height="15" fill="rgb(223,154,38)"/><text x="6.3210%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="6.0710%" y="4340" width="0.1261%" height="15" fill="rgb(251,22,52)"/><text x="6.3210%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="6.0710%" y="4356" width="0.1261%" height="15" fill="rgb(229,209,22)"/><text x="6.3210%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="6.0710%" y="4372" width="0.1261%" height="15" fill="rgb(234,138,34)"/><text x="6.3210%" y="4382.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="6.1971%" y="4340" width="0.4143%" height="15" fill="rgb(212,95,11)"/><text x="6.4471%" y="4350.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="6.2151%" y="4356" width="0.3963%" height="15" fill="rgb(240,179,47)"/><text x="6.4651%" y="4366.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (22 samples, 0.40%)</title><rect x="6.2151%" y="4372" width="0.3963%" height="15" fill="rgb(240,163,11)"/><text x="6.4651%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="6.2151%" y="4388" width="0.3963%" height="15" fill="rgb(236,37,12)"/><text x="6.4651%" y="4398.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="6.2151%" y="4404" width="0.3963%" height="15" fill="rgb(232,164,16)"/><text x="6.4651%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="6.2151%" y="4420" width="0.3963%" height="15" fill="rgb(244,205,15)"/><text x="6.4651%" y="4430.50"></text></g><g><title>infer_call (astroid/inference.py:229) (22 samples, 0.40%)</title><rect x="6.2151%" y="4436" width="0.3963%" height="15" fill="rgb(223,117,47)"/><text x="6.4651%" y="4446.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (22 samples, 0.40%)</title><rect x="6.2151%" y="4452" width="0.3963%" height="15" fill="rgb(244,107,35)"/><text x="6.4651%" y="4462.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (22 samples, 0.40%)</title><rect x="6.2151%" y="4468" width="0.3963%" height="15" fill="rgb(205,140,8)"/><text x="6.4651%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (22 samples, 0.40%)</title><rect x="6.2151%" y="4484" width="0.3963%" height="15" fill="rgb(228,84,46)"/><text x="6.4651%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (22 samples, 0.40%)</title><rect x="6.2151%" y="4500" width="0.3963%" height="15" fill="rgb(254,188,9)"/><text x="6.4651%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (22 samples, 0.40%)</title><rect x="6.2151%" y="4516" width="0.3963%" height="15" fill="rgb(206,112,54)"/><text x="6.4651%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (21 samples, 0.38%)</title><rect x="6.2331%" y="4532" width="0.3783%" height="15" fill="rgb(216,84,49)"/><text x="6.4831%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (21 samples, 0.38%)</title><rect x="6.2331%" y="4548" width="0.3783%" height="15" fill="rgb(214,194,35)"/><text x="6.4831%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (20 samples, 0.36%)</title><rect x="6.2511%" y="4564" width="0.3603%" height="15" fill="rgb(249,28,3)"/><text x="6.5011%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (20 samples, 0.36%)</title><rect x="6.2511%" y="4580" width="0.3603%" height="15" fill="rgb(222,56,52)"/><text x="6.5011%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (20 samples, 0.36%)</title><rect x="6.2511%" y="4596" width="0.3603%" height="15" fill="rgb(245,217,50)"/><text x="6.5011%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (20 samples, 0.36%)</title><rect x="6.2511%" y="4612" width="0.3603%" height="15" fill="rgb(213,201,24)"/><text x="6.5011%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (20 samples, 0.36%)</title><rect x="6.2511%" y="4628" width="0.3603%" height="15" fill="rgb(248,116,28)"/><text x="6.5011%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (20 samples, 0.36%)</title><rect x="6.2511%" y="4644" width="0.3603%" height="15" fill="rgb(219,72,43)"/><text x="6.5011%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="6.2872%" y="4660" width="0.3243%" height="15" fill="rgb(209,138,14)"/><text x="6.5372%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="6.2872%" y="4676" width="0.3243%" height="15" fill="rgb(222,18,33)"/><text x="6.5372%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (16 samples, 0.29%)</title><rect x="6.3232%" y="4692" width="0.2882%" height="15" fill="rgb(213,199,7)"/><text x="6.5732%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="6.3232%" y="4708" width="0.2882%" height="15" fill="rgb(250,110,10)"/><text x="6.5732%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="6.4133%" y="4724" width="0.1982%" height="15" fill="rgb(248,123,6)"/><text x="6.6633%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="6.4133%" y="4740" width="0.1982%" height="15" fill="rgb(206,91,31)"/><text x="6.6633%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="6.4133%" y="4756" width="0.1982%" height="15" fill="rgb(211,154,13)"/><text x="6.6633%" y="4766.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="6.4133%" y="4772" width="0.1982%" height="15" fill="rgb(225,148,7)"/><text x="6.6633%" y="4782.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="6.4133%" y="4788" width="0.1982%" height="15" fill="rgb(220,160,43)"/><text x="6.6633%" y="4798.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="6.4133%" y="4804" width="0.1982%" height="15" fill="rgb(213,52,39)"/><text x="6.6633%" y="4814.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (9 samples, 0.16%)</title><rect x="6.4493%" y="4820" width="0.1621%" height="15" fill="rgb(243,137,7)"/><text x="6.6993%" y="4830.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="6.4493%" y="4836" width="0.1621%" height="15" fill="rgb(230,79,13)"/><text x="6.6993%" y="4846.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="6.4853%" y="4852" width="0.1261%" height="15" fill="rgb(247,105,23)"/><text x="6.7353%" y="4862.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="6.4853%" y="4868" width="0.1261%" height="15" fill="rgb(223,179,41)"/><text x="6.7353%" y="4878.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="6.4853%" y="4884" width="0.1261%" height="15" fill="rgb(218,9,34)"/><text x="6.7353%" y="4894.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="6.5033%" y="4900" width="0.1081%" height="15" fill="rgb(222,106,8)"/><text x="6.7533%" y="4910.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (8 samples, 0.14%)</title><rect x="6.6114%" y="4452" width="0.1441%" height="15" fill="rgb(211,220,0)"/><text x="6.8614%" y="4462.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4468" width="0.1441%" height="15" fill="rgb(229,52,16)"/><text x="6.8614%" y="4478.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4484" width="0.1441%" height="15" fill="rgb(212,155,18)"/><text x="6.8614%" y="4494.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4500" width="0.1441%" height="15" fill="rgb(242,21,14)"/><text x="6.8614%" y="4510.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4516" width="0.1441%" height="15" fill="rgb(222,19,48)"/><text x="6.8614%" y="4526.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4532" width="0.1441%" height="15" fill="rgb(232,45,27)"/><text x="6.8614%" y="4542.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4548" width="0.1441%" height="15" fill="rgb(249,103,42)"/><text x="6.8614%" y="4558.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4564" width="0.1441%" height="15" fill="rgb(246,81,33)"/><text x="6.8614%" y="4574.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4580" width="0.1441%" height="15" fill="rgb(252,33,42)"/><text x="6.8614%" y="4590.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4596" width="0.1441%" height="15" fill="rgb(209,212,41)"/><text x="6.8614%" y="4606.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4612" width="0.1441%" height="15" fill="rgb(207,154,6)"/><text x="6.8614%" y="4622.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4628" width="0.1441%" height="15" fill="rgb(223,64,47)"/><text x="6.8614%" y="4638.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4644" width="0.1441%" height="15" fill="rgb(211,161,38)"/><text x="6.8614%" y="4654.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="6.6114%" y="4660" width="0.1441%" height="15" fill="rgb(219,138,40)"/><text x="6.8614%" y="4670.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (33 samples, 0.59%)</title><rect x="6.1971%" y="4308" width="0.5945%" height="15" fill="rgb(241,228,46)"/><text x="6.4471%" y="4318.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="6.1971%" y="4324" width="0.5945%" height="15" fill="rgb(223,209,38)"/><text x="6.4471%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (10 samples, 0.18%)</title><rect x="6.6114%" y="4340" width="0.1801%" height="15" fill="rgb(236,164,45)"/><text x="6.8614%" y="4350.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="6.6114%" y="4356" width="0.1801%" height="15" fill="rgb(231,15,5)"/><text x="6.8614%" y="4366.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="6.6114%" y="4372" width="0.1801%" height="15" fill="rgb(252,35,15)"/><text x="6.8614%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="6.6114%" y="4388" width="0.1801%" height="15" fill="rgb(248,181,18)"/><text x="6.8614%" y="4398.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (10 samples, 0.18%)</title><rect x="6.6114%" y="4404" width="0.1801%" height="15" fill="rgb(233,39,42)"/><text x="6.8614%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="6.6114%" y="4420" width="0.1801%" height="15" fill="rgb(238,110,33)"/><text x="6.8614%" y="4430.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="6.6114%" y="4436" width="0.1801%" height="15" fill="rgb(233,195,10)"/><text x="6.8614%" y="4446.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="6.7916%" y="4356" width="0.2702%" height="15" fill="rgb(254,105,3)"/><text x="7.0416%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="6.7916%" y="4372" width="0.2702%" height="15" fill="rgb(221,225,9)"/><text x="7.0416%" y="4382.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="6.8816%" y="4388" width="0.1801%" height="15" fill="rgb(224,227,45)"/><text x="7.1316%" y="4398.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="6.9537%" y="4404" width="0.1081%" height="15" fill="rgb(229,198,43)"/><text x="7.2037%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="6.9537%" y="4420" width="0.1081%" height="15" fill="rgb(206,209,35)"/><text x="7.2037%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="6.9537%" y="4436" width="0.1081%" height="15" fill="rgb(245,195,53)"/><text x="7.2037%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="6.9537%" y="4452" width="0.1081%" height="15" fill="rgb(240,92,26)"/><text x="7.2037%" y="4462.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="7.0798%" y="4420" width="0.1801%" height="15" fill="rgb(207,40,23)"/><text x="7.3298%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="7.0798%" y="4436" width="0.1801%" height="15" fill="rgb(223,111,35)"/><text x="7.3298%" y="4446.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="7.0798%" y="4452" width="0.1801%" height="15" fill="rgb(229,147,28)"/><text x="7.3298%" y="4462.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="7.0798%" y="4468" width="0.1801%" height="15" fill="rgb(211,29,28)"/><text x="7.3298%" y="4478.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="7.0798%" y="4484" width="0.1801%" height="15" fill="rgb(228,72,33)"/><text x="7.3298%" y="4494.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="7.0798%" y="4500" width="0.1801%" height="15" fill="rgb(205,214,31)"/><text x="7.3298%" y="4510.50"></text></g><g><title>infer_call (astroid/inference.py:229) (8 samples, 0.14%)</title><rect x="7.1158%" y="4516" width="0.1441%" height="15" fill="rgb(224,111,15)"/><text x="7.3658%" y="4526.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (8 samples, 0.14%)</title><rect x="7.1158%" y="4532" width="0.1441%" height="15" fill="rgb(253,21,26)"/><text x="7.3658%" y="4542.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (8 samples, 0.14%)</title><rect x="7.1158%" y="4548" width="0.1441%" height="15" fill="rgb(245,139,43)"/><text x="7.3658%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4564" width="0.1441%" height="15" fill="rgb(252,170,7)"/><text x="7.3658%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="7.1158%" y="4580" width="0.1441%" height="15" fill="rgb(231,118,14)"/><text x="7.3658%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4596" width="0.1441%" height="15" fill="rgb(238,83,0)"/><text x="7.3658%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="7.1158%" y="4612" width="0.1441%" height="15" fill="rgb(221,39,39)"/><text x="7.3658%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4628" width="0.1441%" height="15" fill="rgb(222,119,46)"/><text x="7.3658%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="7.1158%" y="4644" width="0.1441%" height="15" fill="rgb(222,165,49)"/><text x="7.3658%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4660" width="0.1441%" height="15" fill="rgb(219,113,52)"/><text x="7.3658%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="7.1158%" y="4676" width="0.1441%" height="15" fill="rgb(214,7,15)"/><text x="7.3658%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4692" width="0.1441%" height="15" fill="rgb(235,32,4)"/><text x="7.3658%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="7.1158%" y="4708" width="0.1441%" height="15" fill="rgb(238,90,54)"/><text x="7.3658%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="7.1158%" y="4724" width="0.1441%" height="15" fill="rgb(213,208,19)"/><text x="7.3658%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4740" width="0.1261%" height="15" fill="rgb(233,156,4)"/><text x="7.3838%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="7.1338%" y="4756" width="0.1261%" height="15" fill="rgb(207,194,5)"/><text x="7.3838%" y="4766.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4772" width="0.1261%" height="15" fill="rgb(206,111,30)"/><text x="7.3838%" y="4782.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="7.1338%" y="4788" width="0.1261%" height="15" fill="rgb(243,70,54)"/><text x="7.3838%" y="4798.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4804" width="0.1261%" height="15" fill="rgb(242,28,8)"/><text x="7.3838%" y="4814.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="7.1338%" y="4820" width="0.1261%" height="15" fill="rgb(219,106,18)"/><text x="7.3838%" y="4830.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4836" width="0.1261%" height="15" fill="rgb(244,222,10)"/><text x="7.3838%" y="4846.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="7.1338%" y="4852" width="0.1261%" height="15" fill="rgb(236,179,52)"/><text x="7.3838%" y="4862.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4868" width="0.1261%" height="15" fill="rgb(213,23,39)"/><text x="7.3838%" y="4878.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="7.1338%" y="4884" width="0.1261%" height="15" fill="rgb(238,48,10)"/><text x="7.3838%" y="4894.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="7.1338%" y="4900" width="0.1261%" height="15" fill="rgb(251,196,23)"/><text x="7.3838%" y="4910.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="7.2600%" y="4612" width="0.1801%" height="15" fill="rgb(250,152,24)"/><text x="7.5100%" y="4622.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="7.2780%" y="4628" width="0.1621%" height="15" fill="rgb(209,150,17)"/><text x="7.5280%" y="4638.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="7.2780%" y="4644" width="0.1621%" height="15" fill="rgb(234,202,34)"/><text x="7.5280%" y="4654.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="7.2960%" y="4660" width="0.1441%" height="15" fill="rgb(253,148,53)"/><text x="7.5460%" y="4670.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="7.3140%" y="4676" width="0.1261%" height="15" fill="rgb(218,129,16)"/><text x="7.5640%" y="4686.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (6 samples, 0.11%)</title><rect x="7.3320%" y="4692" width="0.1081%" height="15" fill="rgb(216,85,19)"/><text x="7.5820%" y="4702.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (11 samples, 0.20%)</title><rect x="7.2600%" y="4532" width="0.1982%" height="15" fill="rgb(235,228,7)"/><text x="7.5100%" y="4542.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="7.2600%" y="4548" width="0.1982%" height="15" fill="rgb(245,175,0)"/><text x="7.5100%" y="4558.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="7.2600%" y="4564" width="0.1982%" height="15" fill="rgb(208,168,36)"/><text x="7.5100%" y="4574.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="7.2600%" y="4580" width="0.1982%" height="15" fill="rgb(246,171,24)"/><text x="7.5100%" y="4590.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="7.2600%" y="4596" width="0.1982%" height="15" fill="rgb(215,142,24)"/><text x="7.5100%" y="4606.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (25 samples, 0.45%)</title><rect x="7.0798%" y="4388" width="0.4504%" height="15" fill="rgb(250,187,7)"/><text x="7.3298%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (25 samples, 0.45%)</title><rect x="7.0798%" y="4404" width="0.4504%" height="15" fill="rgb(228,66,33)"/><text x="7.3298%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (15 samples, 0.27%)</title><rect x="7.2600%" y="4420" width="0.2702%" height="15" fill="rgb(234,215,21)"/><text x="7.5100%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="7.2600%" y="4436" width="0.2702%" height="15" fill="rgb(222,191,20)"/><text x="7.5100%" y="4446.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (15 samples, 0.27%)</title><rect x="7.2600%" y="4452" width="0.2702%" height="15" fill="rgb(245,79,54)"/><text x="7.5100%" y="4462.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="7.2600%" y="4468" width="0.2702%" height="15" fill="rgb(240,10,37)"/><text x="7.5100%" y="4478.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (15 samples, 0.27%)</title><rect x="7.2600%" y="4484" width="0.2702%" height="15" fill="rgb(214,192,32)"/><text x="7.5100%" y="4494.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="7.2600%" y="4500" width="0.2702%" height="15" fill="rgb(209,36,54)"/><text x="7.5100%" y="4510.50"></text></g><g><title>infer_call (astroid/inference.py:229) (15 samples, 0.27%)</title><rect x="7.2600%" y="4516" width="0.2702%" height="15" fill="rgb(220,10,11)"/><text x="7.5100%" y="4526.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="7.5302%" y="4468" width="0.1441%" height="15" fill="rgb(221,106,17)"/><text x="7.7802%" y="4478.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="7.5302%" y="4484" width="0.1441%" height="15" fill="rgb(251,142,44)"/><text x="7.7802%" y="4494.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="7.5302%" y="4500" width="0.1441%" height="15" fill="rgb(238,13,15)"/><text x="7.7802%" y="4510.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="7.5302%" y="4516" width="0.1441%" height="15" fill="rgb(208,107,27)"/><text x="7.7802%" y="4526.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="7.5302%" y="4532" width="0.1441%" height="15" fill="rgb(205,136,37)"/><text x="7.7802%" y="4542.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (8 samples, 0.14%)</title><rect x="7.5302%" y="4548" width="0.1441%" height="15" fill="rgb(250,205,27)"/><text x="7.7802%" y="4558.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (6 samples, 0.11%)</title><rect x="7.5662%" y="4564" width="0.1081%" height="15" fill="rgb(210,80,43)"/><text x="7.8162%" y="4574.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (6 samples, 0.11%)</title><rect x="7.5662%" y="4580" width="0.1081%" height="15" fill="rgb(247,160,36)"/><text x="7.8162%" y="4590.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="7.5662%" y="4596" width="0.1081%" height="15" fill="rgb(234,13,49)"/><text x="7.8162%" y="4606.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="7.5662%" y="4612" width="0.1081%" height="15" fill="rgb(234,122,0)"/><text x="7.8162%" y="4622.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="7.5662%" y="4628" width="0.1081%" height="15" fill="rgb(207,146,38)"/><text x="7.8162%" y="4638.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="7.5302%" y="4436" width="0.1621%" height="15" fill="rgb(207,177,25)"/><text x="7.7802%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="7.5302%" y="4452" width="0.1621%" height="15" fill="rgb(211,178,42)"/><text x="7.7802%" y="4462.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="7.6923%" y="4500" width="0.1261%" height="15" fill="rgb(230,69,54)"/><text x="7.9423%" y="4510.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="7.7103%" y="4516" width="0.1081%" height="15" fill="rgb(214,135,41)"/><text x="7.9603%" y="4526.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="7.7103%" y="4532" width="0.1081%" height="15" fill="rgb(237,67,25)"/><text x="7.9603%" y="4542.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="7.7103%" y="4548" width="0.1081%" height="15" fill="rgb(222,189,50)"/><text x="7.9603%" y="4558.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="7.7103%" y="4564" width="0.1081%" height="15" fill="rgb(245,148,34)"/><text x="7.9603%" y="4574.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="7.7103%" y="4580" width="0.1081%" height="15" fill="rgb(222,29,6)"/><text x="7.9603%" y="4590.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="7.7103%" y="4596" width="0.1081%" height="15" fill="rgb(221,189,43)"/><text x="7.9603%" y="4606.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (6 samples, 0.11%)</title><rect x="7.7103%" y="4612" width="0.1081%" height="15" fill="rgb(207,36,27)"/><text x="7.9603%" y="4622.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (6 samples, 0.11%)</title><rect x="7.7103%" y="4628" width="0.1081%" height="15" fill="rgb(217,90,24)"/><text x="7.9603%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4644" width="0.1081%" height="15" fill="rgb(224,66,35)"/><text x="7.9603%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="7.7103%" y="4660" width="0.1081%" height="15" fill="rgb(221,13,50)"/><text x="7.9603%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4676" width="0.1081%" height="15" fill="rgb(236,68,49)"/><text x="7.9603%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="7.7103%" y="4692" width="0.1081%" height="15" fill="rgb(229,146,28)"/><text x="7.9603%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4708" width="0.1081%" height="15" fill="rgb(225,31,38)"/><text x="7.9603%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="7.7103%" y="4724" width="0.1081%" height="15" fill="rgb(250,208,3)"/><text x="7.9603%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4740" width="0.1081%" height="15" fill="rgb(246,54,23)"/><text x="7.9603%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="7.7103%" y="4756" width="0.1081%" height="15" fill="rgb(243,76,11)"/><text x="7.9603%" y="4766.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4772" width="0.1081%" height="15" fill="rgb(245,21,50)"/><text x="7.9603%" y="4782.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="7.7103%" y="4788" width="0.1081%" height="15" fill="rgb(228,9,43)"/><text x="7.9603%" y="4798.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="7.7103%" y="4804" width="0.1081%" height="15" fill="rgb(208,100,47)"/><text x="7.9603%" y="4814.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="7.6923%" y="4468" width="0.1801%" height="15" fill="rgb(232,26,8)"/><text x="7.9423%" y="4478.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="7.6923%" y="4484" width="0.1801%" height="15" fill="rgb(216,166,38)"/><text x="7.9423%" y="4494.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (413 samples, 7.44%)</title><rect x="0.4504%" y="3780" width="7.4401%" height="15" fill="rgb(251,202,51)"/><text x="0.7004%" y="3790.50">_infer_stm..</text></g><g><title>infer (astroid/node_classes.py:380) (413 samples, 7.44%)</title><rect x="0.4504%" y="3796" width="7.4401%" height="15" fill="rgb(254,216,34)"/><text x="0.7004%" y="3806.50">infer (ast..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (410 samples, 7.39%)</title><rect x="0.5044%" y="3812" width="7.3861%" height="15" fill="rgb(251,32,27)"/><text x="0.7544%" y="3822.50">raise_if_n..</text></g><g><title>wrapped (astroid/decorators.py:99) (410 samples, 7.39%)</title><rect x="0.5044%" y="3828" width="7.3861%" height="15" fill="rgb(208,127,28)"/><text x="0.7544%" y="3838.50">wrapped (a..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (410 samples, 7.39%)</title><rect x="0.5044%" y="3844" width="7.3861%" height="15" fill="rgb(224,137,22)"/><text x="0.7544%" y="3854.50">_infer_stm..</text></g><g><title>infer (astroid/node_classes.py:380) (410 samples, 7.39%)</title><rect x="0.5044%" y="3860" width="7.3861%" height="15" fill="rgb(254,70,32)"/><text x="0.7544%" y="3870.50">infer (ast..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (410 samples, 7.39%)</title><rect x="0.5044%" y="3876" width="7.3861%" height="15" fill="rgb(229,75,37)"/><text x="0.7544%" y="3886.50">raise_if_n..</text></g><g><title>wrapped (astroid/decorators.py:99) (410 samples, 7.39%)</title><rect x="0.5044%" y="3892" width="7.3861%" height="15" fill="rgb(252,64,23)"/><text x="0.7544%" y="3902.50">wrapped (a..</text></g><g><title>infer_call (astroid/inference.py:229) (405 samples, 7.30%)</title><rect x="0.5945%" y="3908" width="7.2960%" height="15" fill="rgb(232,162,48)"/><text x="0.8445%" y="3918.50">infer_call..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (405 samples, 7.30%)</title><rect x="0.5945%" y="3924" width="7.2960%" height="15" fill="rgb(246,160,12)"/><text x="0.8445%" y="3934.50">infer_call..</text></g><g><title>infer (astroid/node_classes.py:380) (405 samples, 7.30%)</title><rect x="0.5945%" y="3940" width="7.2960%" height="15" fill="rgb(247,166,0)"/><text x="0.8445%" y="3950.50">infer (ast..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (368 samples, 6.63%)</title><rect x="1.2610%" y="3956" width="6.6294%" height="15" fill="rgb(249,219,21)"/><text x="1.5110%" y="3966.50">raise_if_..</text></g><g><title>wrapped (astroid/decorators.py:99) (368 samples, 6.63%)</title><rect x="1.2610%" y="3972" width="6.6294%" height="15" fill="rgb(205,209,3)"/><text x="1.5110%" y="3982.50">wrapped (..</text></g><g><title>infer_call (astroid/inference.py:229) (368 samples, 6.63%)</title><rect x="1.2610%" y="3988" width="6.6294%" height="15" fill="rgb(243,44,1)"/><text x="1.5110%" y="3998.50">infer_cal..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (368 samples, 6.63%)</title><rect x="1.2610%" y="4004" width="6.6294%" height="15" fill="rgb(206,159,16)"/><text x="1.5110%" y="4014.50">infer_cal..</text></g><g><title>infer (astroid/node_classes.py:380) (368 samples, 6.63%)</title><rect x="1.2610%" y="4020" width="6.6294%" height="15" fill="rgb(244,77,30)"/><text x="1.5110%" y="4030.50">infer (as..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (368 samples, 6.63%)</title><rect x="1.2610%" y="4036" width="6.6294%" height="15" fill="rgb(218,69,12)"/><text x="1.5110%" y="4046.50">raise_if_..</text></g><g><title>wrapped (astroid/decorators.py:99) (368 samples, 6.63%)</title><rect x="1.2610%" y="4052" width="6.6294%" height="15" fill="rgb(212,87,7)"/><text x="1.5110%" y="4062.50">wrapped (..</text></g><g><title>infer_call (astroid/inference.py:229) (176 samples, 3.17%)</title><rect x="4.7199%" y="4068" width="3.1706%" height="15" fill="rgb(245,114,25)"/><text x="4.9699%" y="4078.50">inf..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (176 samples, 3.17%)</title><rect x="4.7199%" y="4084" width="3.1706%" height="15" fill="rgb(210,61,42)"/><text x="4.9699%" y="4094.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (176 samples, 3.17%)</title><rect x="4.7199%" y="4100" width="3.1706%" height="15" fill="rgb(211,52,33)"/><text x="4.9699%" y="4110.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (176 samples, 3.17%)</title><rect x="4.7199%" y="4116" width="3.1706%" height="15" fill="rgb(234,58,33)"/><text x="4.9699%" y="4126.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (176 samples, 3.17%)</title><rect x="4.7199%" y="4132" width="3.1706%" height="15" fill="rgb(220,115,36)"/><text x="4.9699%" y="4142.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (174 samples, 3.13%)</title><rect x="4.7559%" y="4148" width="3.1346%" height="15" fill="rgb(243,153,54)"/><text x="5.0059%" y="4158.50">inf..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (174 samples, 3.13%)</title><rect x="4.7559%" y="4164" width="3.1346%" height="15" fill="rgb(251,47,18)"/><text x="5.0059%" y="4174.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (174 samples, 3.13%)</title><rect x="4.7559%" y="4180" width="3.1346%" height="15" fill="rgb(242,102,42)"/><text x="5.0059%" y="4190.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (165 samples, 2.97%)</title><rect x="4.9180%" y="4196" width="2.9724%" height="15" fill="rgb(234,31,38)"/><text x="5.1680%" y="4206.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (165 samples, 2.97%)</title><rect x="4.9180%" y="4212" width="2.9724%" height="15" fill="rgb(221,117,51)"/><text x="5.1680%" y="4222.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (113 samples, 2.04%)</title><rect x="5.8548%" y="4228" width="2.0357%" height="15" fill="rgb(212,20,18)"/><text x="6.1048%" y="4238.50">i..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (112 samples, 2.02%)</title><rect x="5.8728%" y="4244" width="2.0177%" height="15" fill="rgb(245,133,36)"/><text x="6.1228%" y="4254.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (112 samples, 2.02%)</title><rect x="5.8728%" y="4260" width="2.0177%" height="15" fill="rgb(212,6,19)"/><text x="6.1228%" y="4270.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (94 samples, 1.69%)</title><rect x="6.1971%" y="4276" width="1.6934%" height="15" fill="rgb(218,1,36)"/><text x="6.4471%" y="4286.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (94 samples, 1.69%)</title><rect x="6.1971%" y="4292" width="1.6934%" height="15" fill="rgb(246,84,54)"/><text x="6.4471%" y="4302.50"></text></g><g><title>infer_call (astroid/inference.py:229) (61 samples, 1.10%)</title><rect x="6.7916%" y="4308" width="1.0989%" height="15" fill="rgb(242,110,6)"/><text x="7.0416%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (61 samples, 1.10%)</title><rect x="6.7916%" y="4324" width="1.0989%" height="15" fill="rgb(214,47,5)"/><text x="7.0416%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (61 samples, 1.10%)</title><rect x="6.7916%" y="4340" width="1.0989%" height="15" fill="rgb(218,159,25)"/><text x="7.0416%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (46 samples, 0.83%)</title><rect x="7.0618%" y="4356" width="0.8287%" height="15" fill="rgb(215,211,28)"/><text x="7.3118%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (45 samples, 0.81%)</title><rect x="7.0798%" y="4372" width="0.8107%" height="15" fill="rgb(238,59,32)"/><text x="7.3298%" y="4382.50"></text></g><g><title>infer_call (astroid/inference.py:229) (20 samples, 0.36%)</title><rect x="7.5302%" y="4388" width="0.3603%" height="15" fill="rgb(226,82,3)"/><text x="7.7802%" y="4398.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="7.5302%" y="4404" width="0.3603%" height="15" fill="rgb(240,164,32)"/><text x="7.7802%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="7.5302%" y="4420" width="0.3603%" height="15" fill="rgb(232,46,7)"/><text x="7.7802%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (11 samples, 0.20%)</title><rect x="7.6923%" y="4436" width="0.1982%" height="15" fill="rgb(229,129,53)"/><text x="7.9423%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="7.6923%" y="4452" width="0.1982%" height="15" fill="rgb(234,188,29)"/><text x="7.9423%" y="4462.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="7.9805%" y="3940" width="0.1081%" height="15" fill="rgb(246,141,4)"/><text x="8.2305%" y="3950.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="7.9805%" y="3956" width="0.1081%" height="15" fill="rgb(229,23,39)"/><text x="8.2305%" y="3966.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (433 samples, 7.80%)</title><rect x="0.4324%" y="3508" width="7.8004%" height="15" fill="rgb(206,12,3)"/><text x="0.6824%" y="3518.50">infer_attri..</text></g><g><title>infer (astroid/node_classes.py:380) (433 samples, 7.80%)</title><rect x="0.4324%" y="3524" width="7.8004%" height="15" fill="rgb(252,226,20)"/><text x="0.6824%" y="3534.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (433 samples, 7.80%)</title><rect x="0.4324%" y="3540" width="7.8004%" height="15" fill="rgb(216,123,35)"/><text x="0.6824%" y="3550.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (433 samples, 7.80%)</title><rect x="0.4324%" y="3556" width="7.8004%" height="15" fill="rgb(212,68,40)"/><text x="0.6824%" y="3566.50">wrapped (as..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (433 samples, 7.80%)</title><rect x="0.4324%" y="3572" width="7.8004%" height="15" fill="rgb(254,125,32)"/><text x="0.6824%" y="3582.50">_infer_stmt..</text></g><g><title>infer (astroid/node_classes.py:380) (433 samples, 7.80%)</title><rect x="0.4324%" y="3588" width="7.8004%" height="15" fill="rgb(253,97,22)"/><text x="0.6824%" y="3598.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (433 samples, 7.80%)</title><rect x="0.4324%" y="3604" width="7.8004%" height="15" fill="rgb(241,101,14)"/><text x="0.6824%" y="3614.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (433 samples, 7.80%)</title><rect x="0.4324%" y="3620" width="7.8004%" height="15" fill="rgb(238,103,29)"/><text x="0.6824%" y="3630.50">wrapped (as..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (433 samples, 7.80%)</title><rect x="0.4324%" y="3636" width="7.8004%" height="15" fill="rgb(233,195,47)"/><text x="0.6824%" y="3646.50">_infer_stmt..</text></g><g><title>infer (astroid/node_classes.py:380) (433 samples, 7.80%)</title><rect x="0.4324%" y="3652" width="7.8004%" height="15" fill="rgb(246,218,30)"/><text x="0.6824%" y="3662.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (433 samples, 7.80%)</title><rect x="0.4324%" y="3668" width="7.8004%" height="15" fill="rgb(219,145,47)"/><text x="0.6824%" y="3678.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (433 samples, 7.80%)</title><rect x="0.4324%" y="3684" width="7.8004%" height="15" fill="rgb(243,12,26)"/><text x="0.6824%" y="3694.50">wrapped (as..</text></g><g><title>infer_call (astroid/inference.py:229) (433 samples, 7.80%)</title><rect x="0.4324%" y="3700" width="7.8004%" height="15" fill="rgb(214,87,16)"/><text x="0.6824%" y="3710.50">infer_call ..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (433 samples, 7.80%)</title><rect x="0.4324%" y="3716" width="7.8004%" height="15" fill="rgb(208,99,42)"/><text x="0.6824%" y="3726.50">infer_call_..</text></g><g><title>infer (astroid/node_classes.py:380) (433 samples, 7.80%)</title><rect x="0.4324%" y="3732" width="7.8004%" height="15" fill="rgb(253,99,2)"/><text x="0.6824%" y="3742.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (432 samples, 7.78%)</title><rect x="0.4504%" y="3748" width="7.7824%" height="15" fill="rgb(220,168,23)"/><text x="0.7004%" y="3758.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (432 samples, 7.78%)</title><rect x="0.4504%" y="3764" width="7.7824%" height="15" fill="rgb(242,38,24)"/><text x="0.7004%" y="3774.50">wrapped (as..</text></g><g><title>infer_call (astroid/inference.py:229) (19 samples, 0.34%)</title><rect x="7.8905%" y="3780" width="0.3423%" height="15" fill="rgb(225,182,9)"/><text x="8.1405%" y="3790.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (19 samples, 0.34%)</title><rect x="7.8905%" y="3796" width="0.3423%" height="15" fill="rgb(243,178,37)"/><text x="8.1405%" y="3806.50"></text></g><g><title>infer (astroid/node_classes.py:380) (19 samples, 0.34%)</title><rect x="7.8905%" y="3812" width="0.3423%" height="15" fill="rgb(232,139,19)"/><text x="8.1405%" y="3822.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (17 samples, 0.31%)</title><rect x="7.9265%" y="3828" width="0.3063%" height="15" fill="rgb(225,201,24)"/><text x="8.1765%" y="3838.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="7.9265%" y="3844" width="0.3063%" height="15" fill="rgb(221,47,46)"/><text x="8.1765%" y="3854.50"></text></g><g><title>infer_call (astroid/inference.py:229) (15 samples, 0.27%)</title><rect x="7.9625%" y="3860" width="0.2702%" height="15" fill="rgb(249,23,13)"/><text x="8.2125%" y="3870.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (15 samples, 0.27%)</title><rect x="7.9625%" y="3876" width="0.2702%" height="15" fill="rgb(219,9,5)"/><text x="8.2125%" y="3886.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="7.9625%" y="3892" width="0.2702%" height="15" fill="rgb(254,171,16)"/><text x="8.2125%" y="3902.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="7.9805%" y="3908" width="0.2522%" height="15" fill="rgb(230,171,20)"/><text x="8.2305%" y="3918.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="7.9805%" y="3924" width="0.2522%" height="15" fill="rgb(210,71,41)"/><text x="8.2305%" y="3934.50"></text></g><g><title>infer_call (astroid/inference.py:229) (8 samples, 0.14%)</title><rect x="8.0886%" y="3940" width="0.1441%" height="15" fill="rgb(206,173,20)"/><text x="8.3386%" y="3950.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (8 samples, 0.14%)</title><rect x="8.0886%" y="3956" width="0.1441%" height="15" fill="rgb(233,88,34)"/><text x="8.3386%" y="3966.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="8.0886%" y="3972" width="0.1441%" height="15" fill="rgb(223,209,46)"/><text x="8.3386%" y="3982.50"></text></g><g><title>igetattr (astroid/bases.py:221) (6 samples, 0.11%)</title><rect x="8.2328%" y="3524" width="0.1081%" height="15" fill="rgb(250,43,18)"/><text x="8.4828%" y="3534.50"></text></g><g><title>getattr (astroid/bases.py:182) (6 samples, 0.11%)</title><rect x="8.2328%" y="3540" width="0.1081%" height="15" fill="rgb(208,13,10)"/><text x="8.4828%" y="3550.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (6 samples, 0.11%)</title><rect x="8.2328%" y="3556" width="0.1081%" height="15" fill="rgb(212,200,36)"/><text x="8.4828%" y="3566.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (6 samples, 0.11%)</title><rect x="8.2328%" y="3572" width="0.1081%" height="15" fill="rgb(225,90,30)"/><text x="8.4828%" y="3582.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="8.3408%" y="3556" width="0.1261%" height="15" fill="rgb(236,182,39)"/><text x="8.5908%" y="3566.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (7 samples, 0.13%)</title><rect x="8.3408%" y="3572" width="0.1261%" height="15" fill="rgb(212,144,35)"/><text x="8.5908%" y="3582.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="8.3408%" y="3588" width="0.1261%" height="15" fill="rgb(228,63,44)"/><text x="8.5908%" y="3598.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2320) (6 samples, 0.11%)</title><rect x="8.3589%" y="3604" width="0.1081%" height="15" fill="rgb(228,109,6)"/><text x="8.6089%" y="3614.50"></text></g><g><title>__getattribute__ (astroid/util.py:44) (6 samples, 0.11%)</title><rect x="8.3589%" y="3620" width="0.1081%" height="15" fill="rgb(238,117,24)"/><text x="8.6089%" y="3630.50"></text></g><g><title>infer_call (astroid/inference.py:223) (447 samples, 8.05%)</title><rect x="0.4324%" y="3444" width="8.0526%" height="15" fill="rgb(242,26,26)"/><text x="0.6824%" y="3454.50">infer_call ..</text></g><g><title>infer (astroid/node_classes.py:380) (447 samples, 8.05%)</title><rect x="0.4324%" y="3460" width="8.0526%" height="15" fill="rgb(221,92,48)"/><text x="0.6824%" y="3470.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (447 samples, 8.05%)</title><rect x="0.4324%" y="3476" width="8.0526%" height="15" fill="rgb(209,209,32)"/><text x="0.6824%" y="3486.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (447 samples, 8.05%)</title><rect x="0.4324%" y="3492" width="8.0526%" height="15" fill="rgb(221,70,22)"/><text x="0.6824%" y="3502.50">wrapped (as..</text></g><g><title>infer_attribute (astroid/inference.py:316) (14 samples, 0.25%)</title><rect x="8.2328%" y="3508" width="0.2522%" height="15" fill="rgb(248,145,5)"/><text x="8.4828%" y="3518.50"></text></g><g><title>igetattr (astroid/bases.py:233) (8 samples, 0.14%)</title><rect x="8.3408%" y="3524" width="0.1441%" height="15" fill="rgb(226,116,26)"/><text x="8.5908%" y="3534.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (8 samples, 0.14%)</title><rect x="8.3408%" y="3540" width="0.1441%" height="15" fill="rgb(244,5,17)"/><text x="8.5908%" y="3550.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (13 samples, 0.23%)</title><rect x="8.5210%" y="3524" width="0.2342%" height="15" fill="rgb(252,159,33)"/><text x="8.7710%" y="3534.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="8.5210%" y="3540" width="0.2342%" height="15" fill="rgb(206,71,0)"/><text x="8.7710%" y="3550.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="8.5210%" y="3556" width="0.2342%" height="15" fill="rgb(233,118,54)"/><text x="8.7710%" y="3566.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="8.5930%" y="3572" width="0.1621%" height="15" fill="rgb(234,83,48)"/><text x="8.8430%" y="3582.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="8.5930%" y="3588" width="0.1621%" height="15" fill="rgb(228,3,54)"/><text x="8.8430%" y="3598.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="8.5930%" y="3604" width="0.1621%" height="15" fill="rgb(226,155,13)"/><text x="8.8430%" y="3614.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="8.5930%" y="3620" width="0.1621%" height="15" fill="rgb(241,28,37)"/><text x="8.8430%" y="3630.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="8.5930%" y="3636" width="0.1621%" height="15" fill="rgb(233,93,10)"/><text x="8.8430%" y="3646.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="8.6471%" y="3652" width="0.1081%" height="15" fill="rgb(225,113,19)"/><text x="8.8971%" y="3662.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="8.6471%" y="3668" width="0.1081%" height="15" fill="rgb(241,2,18)"/><text x="8.8971%" y="3678.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="8.6471%" y="3684" width="0.1081%" height="15" fill="rgb(228,207,21)"/><text x="8.8971%" y="3694.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="8.6471%" y="3700" width="0.1081%" height="15" fill="rgb(213,211,35)"/><text x="8.8971%" y="3710.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="8.6471%" y="3716" width="0.1081%" height="15" fill="rgb(209,83,10)"/><text x="8.8971%" y="3726.50"></text></g><g><title>igetattr (astroid/bases.py:221) (8 samples, 0.14%)</title><rect x="8.7732%" y="3604" width="0.1441%" height="15" fill="rgb(209,164,1)"/><text x="9.0232%" y="3614.50"></text></g><g><title>getattr (astroid/bases.py:182) (8 samples, 0.14%)</title><rect x="8.7732%" y="3620" width="0.1441%" height="15" fill="rgb(213,184,43)"/><text x="9.0232%" y="3630.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (8 samples, 0.14%)</title><rect x="8.7732%" y="3636" width="0.1441%" height="15" fill="rgb(231,61,34)"/><text x="9.0232%" y="3646.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (8 samples, 0.14%)</title><rect x="8.7732%" y="3652" width="0.1441%" height="15" fill="rgb(235,75,3)"/><text x="9.0232%" y="3662.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (8 samples, 0.14%)</title><rect x="8.7732%" y="3668" width="0.1441%" height="15" fill="rgb(220,106,47)"/><text x="9.0232%" y="3678.50"></text></g><g><title>infer_call (astroid/inference.py:223) (14 samples, 0.25%)</title><rect x="8.7552%" y="3524" width="0.2522%" height="15" fill="rgb(210,196,33)"/><text x="9.0052%" y="3534.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="8.7552%" y="3540" width="0.2522%" height="15" fill="rgb(229,154,42)"/><text x="9.0052%" y="3550.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="8.7552%" y="3556" width="0.2522%" height="15" fill="rgb(228,114,26)"/><text x="9.0052%" y="3566.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="8.7552%" y="3572" width="0.2522%" height="15" fill="rgb(208,144,1)"/><text x="9.0052%" y="3582.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="8.7732%" y="3588" width="0.2342%" height="15" fill="rgb(239,112,37)"/><text x="9.0232%" y="3598.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="8.5030%" y="3492" width="0.5765%" height="15" fill="rgb(210,96,50)"/><text x="8.7530%" y="3502.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="8.5030%" y="3508" width="0.5765%" height="15" fill="rgb(222,178,2)"/><text x="8.7530%" y="3518.50"></text></g><g><title>igetattr (astroid/bases.py:221) (7 samples, 0.13%)</title><rect x="9.1515%" y="3732" width="0.1261%" height="15" fill="rgb(226,74,18)"/><text x="9.4015%" y="3742.50"></text></g><g><title>getattr (astroid/bases.py:182) (7 samples, 0.13%)</title><rect x="9.1515%" y="3748" width="0.1261%" height="15" fill="rgb(225,67,54)"/><text x="9.4015%" y="3758.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (7 samples, 0.13%)</title><rect x="9.1515%" y="3764" width="0.1261%" height="15" fill="rgb(251,92,32)"/><text x="9.4015%" y="3774.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (7 samples, 0.13%)</title><rect x="9.1515%" y="3780" width="0.1261%" height="15" fill="rgb(228,149,22)"/><text x="9.4015%" y="3790.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (10 samples, 0.18%)</title><rect x="9.3677%" y="3828" width="0.1801%" height="15" fill="rgb(243,54,13)"/><text x="9.6177%" y="3838.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (10 samples, 0.18%)</title><rect x="9.3677%" y="3844" width="0.1801%" height="15" fill="rgb(243,180,28)"/><text x="9.6177%" y="3854.50"></text></g><g><title>infer (astroid/node_classes.py:366) (10 samples, 0.18%)</title><rect x="9.3677%" y="3860" width="0.1801%" height="15" fill="rgb(208,167,24)"/><text x="9.6177%" y="3870.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (10 samples, 0.18%)</title><rect x="9.3677%" y="3876" width="0.1801%" height="15" fill="rgb(245,73,45)"/><text x="9.6177%" y="3886.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="9.5478%" y="3828" width="0.1081%" height="15" fill="rgb(237,203,48)"/><text x="9.7978%" y="3838.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="9.5478%" y="3844" width="0.1081%" height="15" fill="rgb(211,197,16)"/><text x="9.7978%" y="3854.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="9.6559%" y="3828" width="0.1261%" height="15" fill="rgb(243,99,51)"/><text x="9.9059%" y="3838.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="9.6559%" y="3844" width="0.1261%" height="15" fill="rgb(215,123,29)"/><text x="9.9059%" y="3854.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (7 samples, 0.13%)</title><rect x="9.6559%" y="3860" width="0.1261%" height="15" fill="rgb(239,186,37)"/><text x="9.9059%" y="3870.50"></text></g><g><title><genexpr> (astroid/scoped_nodes.py:2773) (7 samples, 0.13%)</title><rect x="9.6559%" y="3876" width="0.1261%" height="15" fill="rgb(252,136,39)"/><text x="9.9059%" y="3886.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="9.6559%" y="3892" width="0.1261%" height="15" fill="rgb(223,213,32)"/><text x="9.9059%" y="3902.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="9.6559%" y="3908" width="0.1261%" height="15" fill="rgb(233,115,5)"/><text x="9.9059%" y="3918.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (29 samples, 0.52%)</title><rect x="9.2776%" y="3764" width="0.5224%" height="15" fill="rgb(207,226,44)"/><text x="9.5276%" y="3774.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (29 samples, 0.52%)</title><rect x="9.2776%" y="3780" width="0.5224%" height="15" fill="rgb(208,126,0)"/><text x="9.5276%" y="3790.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (26 samples, 0.47%)</title><rect x="9.3317%" y="3796" width="0.4684%" height="15" fill="rgb(244,66,21)"/><text x="9.5817%" y="3806.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (24 samples, 0.43%)</title><rect x="9.3677%" y="3812" width="0.4324%" height="15" fill="rgb(222,97,12)"/><text x="9.6177%" y="3822.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="9.8000%" y="3764" width="0.1261%" height="15" fill="rgb(219,213,19)"/><text x="10.0500%" y="3774.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (7 samples, 0.13%)</title><rect x="9.8000%" y="3780" width="0.1261%" height="15" fill="rgb(252,169,30)"/><text x="10.0500%" y="3790.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="9.8000%" y="3796" width="0.1261%" height="15" fill="rgb(206,32,51)"/><text x="10.0500%" y="3806.50"></text></g><g><title>has_dynamic_getattr (astroid/scoped_nodes.py:2642) (9 samples, 0.16%)</title><rect x="9.9261%" y="3780" width="0.1621%" height="15" fill="rgb(250,172,42)"/><text x="10.1761%" y="3790.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (9 samples, 0.16%)</title><rect x="9.9261%" y="3796" width="0.1621%" height="15" fill="rgb(209,34,43)"/><text x="10.1761%" y="3806.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (8 samples, 0.14%)</title><rect x="9.9442%" y="3812" width="0.1441%" height="15" fill="rgb(223,11,35)"/><text x="10.1942%" y="3822.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (8 samples, 0.14%)</title><rect x="9.9442%" y="3828" width="0.1441%" height="15" fill="rgb(251,219,26)"/><text x="10.1942%" y="3838.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (6 samples, 0.11%)</title><rect x="9.9802%" y="3844" width="0.1081%" height="15" fill="rgb(231,119,3)"/><text x="10.2302%" y="3854.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (6 samples, 0.11%)</title><rect x="9.9802%" y="3860" width="0.1081%" height="15" fill="rgb(216,97,11)"/><text x="10.2302%" y="3870.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (6 samples, 0.11%)</title><rect x="9.9802%" y="3876" width="0.1081%" height="15" fill="rgb(223,59,9)"/><text x="10.2302%" y="3886.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (6 samples, 0.11%)</title><rect x="10.0883%" y="3812" width="0.1081%" height="15" fill="rgb(233,93,31)"/><text x="10.3383%" y="3822.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="10.0883%" y="3828" width="0.1081%" height="15" fill="rgb(239,81,33)"/><text x="10.3383%" y="3838.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="10.0883%" y="3844" width="0.1081%" height="15" fill="rgb(213,120,34)"/><text x="10.3383%" y="3854.50"></text></g><g><title>igetattr (astroid/bases.py:233) (52 samples, 0.94%)</title><rect x="9.2776%" y="3732" width="0.9368%" height="15" fill="rgb(243,49,53)"/><text x="9.5276%" y="3742.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (52 samples, 0.94%)</title><rect x="9.2776%" y="3748" width="0.9368%" height="15" fill="rgb(247,216,33)"/><text x="9.5276%" y="3758.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2617) (16 samples, 0.29%)</title><rect x="9.9261%" y="3764" width="0.2882%" height="15" fill="rgb(226,26,14)"/><text x="10.1761%" y="3774.50"></text></g><g><title>has_dynamic_getattr (astroid/scoped_nodes.py:2646) (7 samples, 0.13%)</title><rect x="10.0883%" y="3780" width="0.1261%" height="15" fill="rgb(215,49,53)"/><text x="10.3383%" y="3790.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (7 samples, 0.13%)</title><rect x="10.0883%" y="3796" width="0.1261%" height="15" fill="rgb(245,162,40)"/><text x="10.3383%" y="3806.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (60 samples, 1.08%)</title><rect x="9.1515%" y="3716" width="1.0809%" height="15" fill="rgb(229,68,17)"/><text x="9.4015%" y="3726.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (64 samples, 1.15%)</title><rect x="9.0975%" y="3556" width="1.1529%" height="15" fill="rgb(213,182,10)"/><text x="9.3475%" y="3566.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (62 samples, 1.12%)</title><rect x="9.1335%" y="3572" width="1.1169%" height="15" fill="rgb(245,125,30)"/><text x="9.3835%" y="3582.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (62 samples, 1.12%)</title><rect x="9.1335%" y="3588" width="1.1169%" height="15" fill="rgb(232,202,2)"/><text x="9.3835%" y="3598.50"></text></g><g><title>infer (astroid/node_classes.py:380) (62 samples, 1.12%)</title><rect x="9.1335%" y="3604" width="1.1169%" height="15" fill="rgb(237,140,51)"/><text x="9.3835%" y="3614.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (62 samples, 1.12%)</title><rect x="9.1335%" y="3620" width="1.1169%" height="15" fill="rgb(236,157,25)"/><text x="9.3835%" y="3630.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (62 samples, 1.12%)</title><rect x="9.1335%" y="3636" width="1.1169%" height="15" fill="rgb(219,209,0)"/><text x="9.3835%" y="3646.50"></text></g><g><title>infer_call (astroid/inference.py:223) (62 samples, 1.12%)</title><rect x="9.1335%" y="3652" width="1.1169%" height="15" fill="rgb(240,116,54)"/><text x="9.3835%" y="3662.50"></text></g><g><title>infer (astroid/node_classes.py:380) (62 samples, 1.12%)</title><rect x="9.1335%" y="3668" width="1.1169%" height="15" fill="rgb(216,10,36)"/><text x="9.3835%" y="3678.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (62 samples, 1.12%)</title><rect x="9.1335%" y="3684" width="1.1169%" height="15" fill="rgb(222,72,44)"/><text x="9.3835%" y="3694.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (62 samples, 1.12%)</title><rect x="9.1335%" y="3700" width="1.1169%" height="15" fill="rgb(232,159,9)"/><text x="9.3835%" y="3710.50"></text></g><g><title>igetattr (astroid/bases.py:221) (7 samples, 0.13%)</title><rect x="10.2684%" y="3732" width="0.1261%" height="15" fill="rgb(210,39,32)"/><text x="10.5184%" y="3742.50"></text></g><g><title>getattr (astroid/bases.py:182) (7 samples, 0.13%)</title><rect x="10.2684%" y="3748" width="0.1261%" height="15" fill="rgb(216,194,45)"/><text x="10.5184%" y="3758.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (7 samples, 0.13%)</title><rect x="10.2684%" y="3764" width="0.1261%" height="15" fill="rgb(218,18,35)"/><text x="10.5184%" y="3774.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (7 samples, 0.13%)</title><rect x="10.2684%" y="3780" width="0.1261%" height="15" fill="rgb(207,83,51)"/><text x="10.5184%" y="3790.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (10 samples, 0.18%)</title><rect x="10.4306%" y="3764" width="0.1801%" height="15" fill="rgb(225,63,43)"/><text x="10.6806%" y="3774.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (10 samples, 0.18%)</title><rect x="10.4306%" y="3780" width="0.1801%" height="15" fill="rgb(207,57,36)"/><text x="10.6806%" y="3790.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (10 samples, 0.18%)</title><rect x="10.4306%" y="3796" width="0.1801%" height="15" fill="rgb(216,99,33)"/><text x="10.6806%" y="3806.50"></text></g><g><title>infer_call (astroid/inference.py:223) (24 samples, 0.43%)</title><rect x="10.2504%" y="3652" width="0.4324%" height="15" fill="rgb(225,42,16)"/><text x="10.5004%" y="3662.50"></text></g><g><title>infer (astroid/node_classes.py:380) (24 samples, 0.43%)</title><rect x="10.2504%" y="3668" width="0.4324%" height="15" fill="rgb(220,201,45)"/><text x="10.5004%" y="3678.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (24 samples, 0.43%)</title><rect x="10.2504%" y="3684" width="0.4324%" height="15" fill="rgb(225,33,4)"/><text x="10.5004%" y="3694.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (24 samples, 0.43%)</title><rect x="10.2504%" y="3700" width="0.4324%" height="15" fill="rgb(224,33,50)"/><text x="10.5004%" y="3710.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (23 samples, 0.41%)</title><rect x="10.2684%" y="3716" width="0.4143%" height="15" fill="rgb(246,198,51)"/><text x="10.5184%" y="3726.50"></text></g><g><title>igetattr (astroid/bases.py:233) (16 samples, 0.29%)</title><rect x="10.3945%" y="3732" width="0.2882%" height="15" fill="rgb(205,22,4)"/><text x="10.6445%" y="3742.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (16 samples, 0.29%)</title><rect x="10.3945%" y="3748" width="0.2882%" height="15" fill="rgb(206,3,8)"/><text x="10.6445%" y="3758.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (9 samples, 0.16%)</title><rect x="10.8989%" y="3924" width="0.1621%" height="15" fill="rgb(251,23,15)"/><text x="11.1489%" y="3934.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (9 samples, 0.16%)</title><rect x="10.8989%" y="3940" width="0.1621%" height="15" fill="rgb(252,88,28)"/><text x="11.1489%" y="3950.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (8 samples, 0.14%)</title><rect x="10.9170%" y="3956" width="0.1441%" height="15" fill="rgb(212,127,14)"/><text x="11.1670%" y="3966.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (12 samples, 0.22%)</title><rect x="10.8809%" y="3908" width="0.2162%" height="15" fill="rgb(247,145,37)"/><text x="11.1309%" y="3918.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (14 samples, 0.25%)</title><rect x="10.8809%" y="3860" width="0.2522%" height="15" fill="rgb(209,117,53)"/><text x="11.1309%" y="3870.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="10.8809%" y="3876" width="0.2522%" height="15" fill="rgb(212,90,42)"/><text x="11.1309%" y="3886.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="10.8809%" y="3892" width="0.2522%" height="15" fill="rgb(218,164,37)"/><text x="11.1309%" y="3902.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (19 samples, 0.34%)</title><rect x="10.8269%" y="3796" width="0.3423%" height="15" fill="rgb(246,65,34)"/><text x="11.0769%" y="3806.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="10.8449%" y="3812" width="0.3243%" height="15" fill="rgb(231,100,33)"/><text x="11.0949%" y="3822.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="10.8449%" y="3828" width="0.3243%" height="15" fill="rgb(228,126,14)"/><text x="11.0949%" y="3838.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="10.8629%" y="3844" width="0.3063%" height="15" fill="rgb(215,173,21)"/><text x="11.1129%" y="3854.50"></text></g><g><title>infer_attribute (astroid/inference.py:303) (6 samples, 0.11%)</title><rect x="11.1692%" y="3796" width="0.1081%" height="15" fill="rgb(210,6,40)"/><text x="11.4192%" y="3806.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="11.5114%" y="3940" width="0.1441%" height="15" fill="rgb(212,48,18)"/><text x="11.7614%" y="3950.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="11.5114%" y="3956" width="0.1441%" height="15" fill="rgb(230,214,11)"/><text x="11.7614%" y="3966.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="11.5114%" y="3972" width="0.1441%" height="15" fill="rgb(254,105,39)"/><text x="11.7614%" y="3982.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="11.4934%" y="3908" width="0.2342%" height="15" fill="rgb(245,158,5)"/><text x="11.7434%" y="3918.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="11.4934%" y="3924" width="0.2342%" height="15" fill="rgb(249,208,11)"/><text x="11.7434%" y="3934.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (17 samples, 0.31%)</title><rect x="11.4754%" y="3876" width="0.3063%" height="15" fill="rgb(210,39,28)"/><text x="11.7254%" y="3886.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="11.4934%" y="3892" width="0.2882%" height="15" fill="rgb(211,56,53)"/><text x="11.7434%" y="3902.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (13 samples, 0.23%)</title><rect x="11.8717%" y="4004" width="0.2342%" height="15" fill="rgb(226,201,30)"/><text x="12.1217%" y="4014.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (7 samples, 0.13%)</title><rect x="11.9798%" y="4020" width="0.1261%" height="15" fill="rgb(239,101,34)"/><text x="12.2298%" y="4030.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (19 samples, 0.34%)</title><rect x="11.7997%" y="3924" width="0.3423%" height="15" fill="rgb(226,209,5)"/><text x="12.0497%" y="3934.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="11.8357%" y="3940" width="0.3063%" height="15" fill="rgb(250,105,47)"/><text x="12.0857%" y="3950.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (15 samples, 0.27%)</title><rect x="11.8717%" y="3956" width="0.2702%" height="15" fill="rgb(230,72,3)"/><text x="12.1217%" y="3966.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="11.8717%" y="3972" width="0.2702%" height="15" fill="rgb(232,218,39)"/><text x="12.1217%" y="3982.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="11.8717%" y="3988" width="0.2702%" height="15" fill="rgb(248,166,6)"/><text x="12.1217%" y="3998.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (22 samples, 0.40%)</title><rect x="11.7817%" y="3892" width="0.3963%" height="15" fill="rgb(247,89,20)"/><text x="12.0317%" y="3902.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="11.7817%" y="3908" width="0.3963%" height="15" fill="rgb(248,130,54)"/><text x="12.0317%" y="3918.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="12.3041%" y="3972" width="0.1261%" height="15" fill="rgb(234,196,4)"/><text x="12.5541%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="12.3041%" y="3988" width="0.1261%" height="15" fill="rgb(250,143,31)"/><text x="12.5541%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="12.3041%" y="4004" width="0.1261%" height="15" fill="rgb(211,110,34)"/><text x="12.5541%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="12.2681%" y="3940" width="0.2882%" height="15" fill="rgb(215,124,48)"/><text x="12.5181%" y="3950.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="12.2681%" y="3956" width="0.2882%" height="15" fill="rgb(216,46,13)"/><text x="12.5181%" y="3966.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="12.4302%" y="3972" width="0.1261%" height="15" fill="rgb(205,184,25)"/><text x="12.6802%" y="3982.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (20 samples, 0.36%)</title><rect x="12.2140%" y="3908" width="0.3603%" height="15" fill="rgb(228,1,10)"/><text x="12.4640%" y="3918.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="12.2681%" y="3924" width="0.3063%" height="15" fill="rgb(213,116,27)"/><text x="12.5181%" y="3934.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (30 samples, 0.54%)</title><rect x="12.1960%" y="3892" width="0.5404%" height="15" fill="rgb(241,95,50)"/><text x="12.4460%" y="3902.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (6 samples, 0.11%)</title><rect x="12.6284%" y="3908" width="0.1081%" height="15" fill="rgb(238,48,32)"/><text x="12.8784%" y="3918.50"></text></g><g><title>getattr (astroid/bases.py:182) (89 samples, 1.60%)</title><rect x="11.4034%" y="3828" width="1.6033%" height="15" fill="rgb(235,113,49)"/><text x="11.6534%" y="3838.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (89 samples, 1.60%)</title><rect x="11.4034%" y="3844" width="1.6033%" height="15" fill="rgb(205,127,43)"/><text x="11.6534%" y="3854.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (87 samples, 1.57%)</title><rect x="11.4394%" y="3860" width="1.5673%" height="15" fill="rgb(250,162,2)"/><text x="11.6894%" y="3870.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (68 samples, 1.23%)</title><rect x="11.7817%" y="3876" width="1.2250%" height="15" fill="rgb(220,13,41)"/><text x="12.0317%" y="3886.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (15 samples, 0.27%)</title><rect x="12.7364%" y="3892" width="0.2702%" height="15" fill="rgb(249,221,25)"/><text x="12.9864%" y="3902.50"></text></g><g><title>__exit__ (contextlib.py:120) (13 samples, 0.23%)</title><rect x="12.7725%" y="3908" width="0.2342%" height="15" fill="rgb(215,208,19)"/><text x="13.0225%" y="3918.50"></text></g><g><title>restore_path (astroid/context.py:116) (11 samples, 0.20%)</title><rect x="12.8085%" y="3924" width="0.1982%" height="15" fill="rgb(236,175,2)"/><text x="13.0585%" y="3934.50"></text></g><g><title>igetattr (astroid/bases.py:221) (90 samples, 1.62%)</title><rect x="11.4034%" y="3812" width="1.6213%" height="15" fill="rgb(241,52,2)"/><text x="11.6534%" y="3822.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="13.1328%" y="4020" width="0.1261%" height="15" fill="rgb(248,140,14)"/><text x="13.3828%" y="4030.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="13.1148%" y="3940" width="0.1621%" height="15" fill="rgb(253,22,42)"/><text x="13.3648%" y="3950.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="13.1148%" y="3956" width="0.1621%" height="15" fill="rgb(234,61,47)"/><text x="13.3648%" y="3966.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="13.1148%" y="3972" width="0.1621%" height="15" fill="rgb(208,226,15)"/><text x="13.3648%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="13.1328%" y="3988" width="0.1441%" height="15" fill="rgb(217,221,4)"/><text x="13.3828%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="13.1328%" y="4004" width="0.1441%" height="15" fill="rgb(212,174,34)"/><text x="13.3828%" y="4014.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (14 samples, 0.25%)</title><rect x="13.0427%" y="3892" width="0.2522%" height="15" fill="rgb(253,83,4)"/><text x="13.2927%" y="3902.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (13 samples, 0.23%)</title><rect x="13.0607%" y="3908" width="0.2342%" height="15" fill="rgb(250,195,49)"/><text x="13.3107%" y="3918.50"></text></g><g><title>infer (astroid/node_classes.py:366) (13 samples, 0.23%)</title><rect x="13.0607%" y="3924" width="0.2342%" height="15" fill="rgb(241,192,25)"/><text x="13.3107%" y="3934.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (15 samples, 0.27%)</title><rect x="13.2949%" y="3892" width="0.2702%" height="15" fill="rgb(208,124,10)"/><text x="13.5449%" y="3902.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (13 samples, 0.23%)</title><rect x="13.3309%" y="3908" width="0.2342%" height="15" fill="rgb(222,33,0)"/><text x="13.5809%" y="3918.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="13.3850%" y="3924" width="0.1801%" height="15" fill="rgb(234,209,28)"/><text x="13.6350%" y="3934.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="13.3850%" y="3940" width="0.1801%" height="15" fill="rgb(224,11,23)"/><text x="13.6350%" y="3950.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="13.4570%" y="3956" width="0.1081%" height="15" fill="rgb(232,99,1)"/><text x="13.7070%" y="3966.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="13.4570%" y="3972" width="0.1081%" height="15" fill="rgb(237,95,45)"/><text x="13.7070%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="13.4570%" y="3988" width="0.1081%" height="15" fill="rgb(208,109,11)"/><text x="13.7070%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="13.4570%" y="4004" width="0.1081%" height="15" fill="rgb(216,190,48)"/><text x="13.7070%" y="4014.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="13.4570%" y="4020" width="0.1081%" height="15" fill="rgb(251,171,36)"/><text x="13.7070%" y="4030.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="13.5651%" y="3956" width="0.1441%" height="15" fill="rgb(230,62,22)"/><text x="13.8151%" y="3966.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="13.5651%" y="3972" width="0.1441%" height="15" fill="rgb(225,114,35)"/><text x="13.8151%" y="3982.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="13.5651%" y="3988" width="0.1441%" height="15" fill="rgb(215,118,42)"/><text x="13.8151%" y="3998.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="13.5651%" y="4004" width="0.1441%" height="15" fill="rgb(243,119,21)"/><text x="13.8151%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="13.5651%" y="4020" width="0.1441%" height="15" fill="rgb(252,177,53)"/><text x="13.8151%" y="4030.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="13.5651%" y="4036" width="0.1441%" height="15" fill="rgb(237,209,29)"/><text x="13.8151%" y="4046.50"></text></g><g><title>infer_import_from (astroid/inference.py:280) (7 samples, 0.13%)</title><rect x="13.5831%" y="4052" width="0.1261%" height="15" fill="rgb(212,65,23)"/><text x="13.8331%" y="4062.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (7 samples, 0.13%)</title><rect x="13.5831%" y="4068" width="0.1261%" height="15" fill="rgb(230,222,46)"/><text x="13.8331%" y="4078.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (11 samples, 0.20%)</title><rect x="13.5651%" y="3908" width="0.1982%" height="15" fill="rgb(215,135,32)"/><text x="13.8151%" y="3918.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (11 samples, 0.20%)</title><rect x="13.5651%" y="3924" width="0.1982%" height="15" fill="rgb(246,101,22)"/><text x="13.8151%" y="3934.50"></text></g><g><title>infer (astroid/node_classes.py:366) (11 samples, 0.20%)</title><rect x="13.5651%" y="3940" width="0.1982%" height="15" fill="rgb(206,107,13)"/><text x="13.8151%" y="3950.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="13.7993%" y="3940" width="0.1441%" height="15" fill="rgb(250,100,44)"/><text x="14.0493%" y="3950.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="13.7993%" y="3956" width="0.1441%" height="15" fill="rgb(231,147,38)"/><text x="14.0493%" y="3966.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="13.8173%" y="3972" width="0.1261%" height="15" fill="rgb(229,8,40)"/><text x="14.0673%" y="3982.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (11 samples, 0.20%)</title><rect x="13.7633%" y="3908" width="0.1982%" height="15" fill="rgb(221,135,30)"/><text x="14.0133%" y="3918.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="13.7813%" y="3924" width="0.1801%" height="15" fill="rgb(249,193,18)"/><text x="14.0313%" y="3934.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:582) (6 samples, 0.11%)</title><rect x="14.0876%" y="4100" width="0.1081%" height="15" fill="rgb(209,133,39)"/><text x="14.3376%" y="4110.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (7 samples, 0.13%)</title><rect x="14.0876%" y="4084" width="0.1261%" height="15" fill="rgb(232,100,14)"/><text x="14.3376%" y="4094.50"></text></g><g><title><genexpr> (astroid/scoped_nodes.py:2773) (11 samples, 0.20%)</title><rect x="14.0335%" y="3956" width="0.1982%" height="15" fill="rgb(224,185,1)"/><text x="14.2835%" y="3966.50"></text></g><g><title>infer (astroid/node_classes.py:366) (11 samples, 0.20%)</title><rect x="14.0335%" y="3972" width="0.1982%" height="15" fill="rgb(223,139,8)"/><text x="14.2835%" y="3982.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="14.0335%" y="3988" width="0.1982%" height="15" fill="rgb(232,213,38)"/><text x="14.2835%" y="3998.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="14.0335%" y="4004" width="0.1982%" height="15" fill="rgb(207,94,22)"/><text x="14.2835%" y="4014.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="14.0335%" y="4020" width="0.1982%" height="15" fill="rgb(219,183,54)"/><text x="14.2835%" y="4030.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="14.0335%" y="4036" width="0.1982%" height="15" fill="rgb(216,185,54)"/><text x="14.2835%" y="4046.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="14.0335%" y="4052" width="0.1982%" height="15" fill="rgb(254,217,39)"/><text x="14.2835%" y="4062.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (11 samples, 0.20%)</title><rect x="14.0335%" y="4068" width="0.1982%" height="15" fill="rgb(240,178,23)"/><text x="14.2835%" y="4078.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (16 samples, 0.29%)</title><rect x="13.9614%" y="3924" width="0.2882%" height="15" fill="rgb(218,11,47)"/><text x="14.2114%" y="3934.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (12 samples, 0.22%)</title><rect x="14.0335%" y="3940" width="0.2162%" height="15" fill="rgb(218,51,51)"/><text x="14.2835%" y="3950.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (18 samples, 0.32%)</title><rect x="13.9614%" y="3908" width="0.3243%" height="15" fill="rgb(238,126,27)"/><text x="14.2114%" y="3918.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (72 samples, 1.30%)</title><rect x="13.0427%" y="3876" width="1.2971%" height="15" fill="rgb(249,202,22)"/><text x="13.2927%" y="3886.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (43 samples, 0.77%)</title><rect x="13.5651%" y="3892" width="0.7746%" height="15" fill="rgb(254,195,49)"/><text x="13.8151%" y="3902.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (73 samples, 1.32%)</title><rect x="13.0427%" y="3844" width="1.3151%" height="15" fill="rgb(208,123,14)"/><text x="13.2927%" y="3854.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (73 samples, 1.32%)</title><rect x="13.0427%" y="3860" width="1.3151%" height="15" fill="rgb(224,200,8)"/><text x="13.2927%" y="3870.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="14.4839%" y="3924" width="0.1081%" height="15" fill="rgb(217,61,36)"/><text x="14.7339%" y="3934.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="14.4839%" y="3892" width="0.1261%" height="15" fill="rgb(206,35,45)"/><text x="14.7339%" y="3902.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="14.4839%" y="3908" width="0.1261%" height="15" fill="rgb(217,65,33)"/><text x="14.7339%" y="3918.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (9 samples, 0.16%)</title><rect x="14.6280%" y="3892" width="0.1621%" height="15" fill="rgb(222,158,48)"/><text x="14.8780%" y="3902.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="14.6460%" y="3908" width="0.1441%" height="15" fill="rgb(254,2,54)"/><text x="14.8960%" y="3918.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="14.6460%" y="3924" width="0.1441%" height="15" fill="rgb(250,143,38)"/><text x="14.8960%" y="3934.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (20 samples, 0.36%)</title><rect x="14.4659%" y="3876" width="0.3603%" height="15" fill="rgb(248,25,0)"/><text x="14.7159%" y="3886.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (103 samples, 1.86%)</title><rect x="13.0247%" y="3828" width="1.8555%" height="15" fill="rgb(206,152,27)"/><text x="13.2747%" y="3838.50">_..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (29 samples, 0.52%)</title><rect x="14.3578%" y="3844" width="0.5224%" height="15" fill="rgb(240,77,30)"/><text x="14.6078%" y="3854.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (28 samples, 0.50%)</title><rect x="14.3758%" y="3860" width="0.5044%" height="15" fill="rgb(231,5,3)"/><text x="14.6258%" y="3870.50"></text></g><g><title>igetattr (astroid/bases.py:233) (104 samples, 1.87%)</title><rect x="13.0247%" y="3812" width="1.8735%" height="15" fill="rgb(207,226,32)"/><text x="13.2747%" y="3822.50">i..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (7 samples, 0.13%)</title><rect x="14.8982%" y="3812" width="0.1261%" height="15" fill="rgb(222,207,47)"/><text x="15.1482%" y="3822.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (7 samples, 0.13%)</title><rect x="14.8982%" y="3828" width="0.1261%" height="15" fill="rgb(229,115,45)"/><text x="15.1482%" y="3838.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="14.9162%" y="3844" width="0.1081%" height="15" fill="rgb(224,191,6)"/><text x="15.1662%" y="3854.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="14.9162%" y="3860" width="0.1081%" height="15" fill="rgb(230,227,24)"/><text x="15.1662%" y="3870.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="14.9162%" y="3876" width="0.1081%" height="15" fill="rgb(228,80,19)"/><text x="15.1662%" y="3886.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="14.9162%" y="3892" width="0.1081%" height="15" fill="rgb(247,229,0)"/><text x="15.1662%" y="3902.50"></text></g><g><title>infer_call (astroid/inference.py:223) (238 samples, 4.29%)</title><rect x="10.8269%" y="3732" width="4.2875%" height="15" fill="rgb(237,194,15)"/><text x="11.0769%" y="3742.50">infer..</text></g><g><title>infer (astroid/node_classes.py:380) (238 samples, 4.29%)</title><rect x="10.8269%" y="3748" width="4.2875%" height="15" fill="rgb(219,203,20)"/><text x="11.0769%" y="3758.50">infer..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (238 samples, 4.29%)</title><rect x="10.8269%" y="3764" width="4.2875%" height="15" fill="rgb(234,128,8)"/><text x="11.0769%" y="3774.50">raise..</text></g><g><title>wrapped (astroid/decorators.py:99) (238 samples, 4.29%)</title><rect x="10.8269%" y="3780" width="4.2875%" height="15" fill="rgb(248,202,8)"/><text x="11.0769%" y="3790.50">wrapp..</text></g><g><title>infer_attribute (astroid/inference.py:316) (211 samples, 3.80%)</title><rect x="11.3133%" y="3796" width="3.8011%" height="15" fill="rgb(206,104,37)"/><text x="11.5633%" y="3806.50">infe..</text></g><g><title>infer_call (astroid/inference.py:223) (11 samples, 0.20%)</title><rect x="15.2945%" y="3940" width="0.1982%" height="15" fill="rgb(223,8,27)"/><text x="15.5445%" y="3950.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="15.2945%" y="3956" width="0.1982%" height="15" fill="rgb(216,217,28)"/><text x="15.5445%" y="3966.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="15.2945%" y="3972" width="0.1982%" height="15" fill="rgb(249,199,1)"/><text x="15.5445%" y="3982.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="15.2945%" y="3988" width="0.1982%" height="15" fill="rgb(240,85,17)"/><text x="15.5445%" y="3998.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (9 samples, 0.16%)</title><rect x="15.3306%" y="4004" width="0.1621%" height="15" fill="rgb(206,108,45)"/><text x="15.5806%" y="4014.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="15.5648%" y="4308" width="0.1081%" height="15" fill="rgb(245,210,41)"/><text x="15.8148%" y="4318.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="15.5648%" y="4324" width="0.1081%" height="15" fill="rgb(206,13,37)"/><text x="15.8148%" y="4334.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="15.5648%" y="4340" width="0.1081%" height="15" fill="rgb(250,61,18)"/><text x="15.8148%" y="4350.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (8 samples, 0.14%)</title><rect x="15.5467%" y="4260" width="0.1441%" height="15" fill="rgb(235,172,48)"/><text x="15.7967%" y="4270.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="15.5467%" y="4276" width="0.1441%" height="15" fill="rgb(249,201,17)"/><text x="15.7967%" y="4286.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="15.5467%" y="4292" width="0.1441%" height="15" fill="rgb(219,208,6)"/><text x="15.7967%" y="4302.50"></text></g><g><title>infer_call (astroid/inference.py:223) (17 samples, 0.31%)</title><rect x="15.4927%" y="4148" width="0.3063%" height="15" fill="rgb(248,31,23)"/><text x="15.7427%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="15.4927%" y="4164" width="0.3063%" height="15" fill="rgb(245,15,42)"/><text x="15.7427%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="15.4927%" y="4180" width="0.3063%" height="15" fill="rgb(222,217,39)"/><text x="15.7427%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="15.4927%" y="4196" width="0.3063%" height="15" fill="rgb(210,219,27)"/><text x="15.7427%" y="4206.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (17 samples, 0.31%)</title><rect x="15.4927%" y="4212" width="0.3063%" height="15" fill="rgb(252,166,36)"/><text x="15.7427%" y="4222.50"></text></g><g><title>igetattr (astroid/bases.py:233) (14 samples, 0.25%)</title><rect x="15.5467%" y="4228" width="0.2522%" height="15" fill="rgb(245,132,34)"/><text x="15.7967%" y="4238.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (14 samples, 0.25%)</title><rect x="15.5467%" y="4244" width="0.2522%" height="15" fill="rgb(236,54,3)"/><text x="15.7967%" y="4254.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (6 samples, 0.11%)</title><rect x="15.6909%" y="4260" width="0.1081%" height="15" fill="rgb(241,173,43)"/><text x="15.9409%" y="4270.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="15.6909%" y="4276" width="0.1081%" height="15" fill="rgb(215,190,9)"/><text x="15.9409%" y="4286.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (18 samples, 0.32%)</title><rect x="15.4927%" y="4084" width="0.3243%" height="15" fill="rgb(242,101,16)"/><text x="15.7427%" y="4094.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="15.4927%" y="4100" width="0.3243%" height="15" fill="rgb(223,190,21)"/><text x="15.7427%" y="4110.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="15.4927%" y="4116" width="0.3243%" height="15" fill="rgb(215,228,25)"/><text x="15.7427%" y="4126.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="15.4927%" y="4132" width="0.3243%" height="15" fill="rgb(225,36,22)"/><text x="15.7427%" y="4142.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2577) (9 samples, 0.16%)</title><rect x="15.9070%" y="4132" width="0.1621%" height="15" fill="rgb(251,106,46)"/><text x="16.1570%" y="4142.50"></text></g><g><title><listcomp> (astroid/scoped_nodes.py:2580) (9 samples, 0.16%)</title><rect x="15.9070%" y="4148" width="0.1621%" height="15" fill="rgb(208,90,1)"/><text x="16.1570%" y="4158.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (46 samples, 0.83%)</title><rect x="15.4927%" y="4020" width="0.8287%" height="15" fill="rgb(243,10,4)"/><text x="15.7427%" y="4030.50"></text></g><g><title>infer (astroid/node_classes.py:380) (46 samples, 0.83%)</title><rect x="15.4927%" y="4036" width="0.8287%" height="15" fill="rgb(212,137,27)"/><text x="15.7427%" y="4046.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (46 samples, 0.83%)</title><rect x="15.4927%" y="4052" width="0.8287%" height="15" fill="rgb(231,220,49)"/><text x="15.7427%" y="4062.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (46 samples, 0.83%)</title><rect x="15.4927%" y="4068" width="0.8287%" height="15" fill="rgb(237,96,20)"/><text x="15.7427%" y="4078.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (28 samples, 0.50%)</title><rect x="15.8170%" y="4084" width="0.5044%" height="15" fill="rgb(239,229,30)"/><text x="16.0670%" y="4094.50"></text></g><g><title>igetattr (astroid/bases.py:233) (28 samples, 0.50%)</title><rect x="15.8170%" y="4100" width="0.5044%" height="15" fill="rgb(219,65,33)"/><text x="16.0670%" y="4110.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (28 samples, 0.50%)</title><rect x="15.8170%" y="4116" width="0.5044%" height="15" fill="rgb(243,134,7)"/><text x="16.0670%" y="4126.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (14 samples, 0.25%)</title><rect x="16.0692%" y="4132" width="0.2522%" height="15" fill="rgb(216,177,54)"/><text x="16.3192%" y="4142.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (13 samples, 0.23%)</title><rect x="16.0872%" y="4148" width="0.2342%" height="15" fill="rgb(211,160,20)"/><text x="16.3372%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="16.0872%" y="4164" width="0.2342%" height="15" fill="rgb(239,85,39)"/><text x="16.3372%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="16.0872%" y="4180" width="0.2342%" height="15" fill="rgb(232,125,22)"/><text x="16.3372%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="16.0872%" y="4196" width="0.2342%" height="15" fill="rgb(244,57,34)"/><text x="16.3372%" y="4206.50"></text></g><g><title>infer_call (astroid/inference.py:229) (13 samples, 0.23%)</title><rect x="16.0872%" y="4212" width="0.2342%" height="15" fill="rgb(214,203,32)"/><text x="16.3372%" y="4222.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (6 samples, 0.11%)</title><rect x="16.2133%" y="4228" width="0.1081%" height="15" fill="rgb(207,58,43)"/><text x="16.4633%" y="4238.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (6 samples, 0.11%)</title><rect x="16.2133%" y="4244" width="0.1081%" height="15" fill="rgb(215,193,15)"/><text x="16.4633%" y="4254.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (6 samples, 0.11%)</title><rect x="16.2133%" y="4260" width="0.1081%" height="15" fill="rgb(232,15,44)"/><text x="16.4633%" y="4270.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (6 samples, 0.11%)</title><rect x="16.2133%" y="4276" width="0.1081%" height="15" fill="rgb(212,3,48)"/><text x="16.4633%" y="4286.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2972) (6 samples, 0.11%)</title><rect x="16.2133%" y="4292" width="0.1081%" height="15" fill="rgb(218,128,7)"/><text x="16.4633%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="16.3214%" y="4148" width="0.1081%" height="15" fill="rgb(226,216,39)"/><text x="16.5714%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="16.3214%" y="4164" width="0.1081%" height="15" fill="rgb(243,47,51)"/><text x="16.5714%" y="4174.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="16.3214%" y="4116" width="0.1261%" height="15" fill="rgb(241,183,40)"/><text x="16.5714%" y="4126.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="16.3214%" y="4132" width="0.1261%" height="15" fill="rgb(231,217,32)"/><text x="16.5714%" y="4142.50"></text></g><g><title>igetattr (astroid/bases.py:221) (8 samples, 0.14%)</title><rect x="16.3214%" y="4036" width="0.1441%" height="15" fill="rgb(229,61,38)"/><text x="16.5714%" y="4046.50"></text></g><g><title>getattr (astroid/bases.py:182) (8 samples, 0.14%)</title><rect x="16.3214%" y="4052" width="0.1441%" height="15" fill="rgb(225,210,5)"/><text x="16.5714%" y="4062.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (8 samples, 0.14%)</title><rect x="16.3214%" y="4068" width="0.1441%" height="15" fill="rgb(231,79,45)"/><text x="16.5714%" y="4078.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (8 samples, 0.14%)</title><rect x="16.3214%" y="4084" width="0.1441%" height="15" fill="rgb(224,100,7)"/><text x="16.5714%" y="4094.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (8 samples, 0.14%)</title><rect x="16.3214%" y="4100" width="0.1441%" height="15" fill="rgb(241,198,18)"/><text x="16.5714%" y="4110.50"></text></g><g><title>infer (astroid/node_classes.py:374) (10 samples, 0.18%)</title><rect x="16.7177%" y="4308" width="0.1801%" height="15" fill="rgb(252,97,53)"/><text x="16.9677%" y="4318.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="16.7177%" y="4292" width="0.1982%" height="15" fill="rgb(220,88,7)"/><text x="16.9677%" y="4302.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (92 samples, 1.66%)</title><rect x="15.2945%" y="3876" width="1.6574%" height="15" fill="rgb(213,176,14)"/><text x="15.5445%" y="3886.50"></text></g><g><title>infer (astroid/node_classes.py:380) (92 samples, 1.66%)</title><rect x="15.2945%" y="3892" width="1.6574%" height="15" fill="rgb(246,73,7)"/><text x="15.5445%" y="3902.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (92 samples, 1.66%)</title><rect x="15.2945%" y="3908" width="1.6574%" height="15" fill="rgb(245,64,36)"/><text x="15.5445%" y="3918.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (92 samples, 1.66%)</title><rect x="15.2945%" y="3924" width="1.6574%" height="15" fill="rgb(245,80,10)"/><text x="15.5445%" y="3934.50"></text></g><g><title>infer_call (astroid/inference.py:229) (81 samples, 1.46%)</title><rect x="15.4927%" y="3940" width="1.4592%" height="15" fill="rgb(232,107,50)"/><text x="15.7427%" y="3950.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (81 samples, 1.46%)</title><rect x="15.4927%" y="3956" width="1.4592%" height="15" fill="rgb(253,3,0)"/><text x="15.7427%" y="3966.50"></text></g><g><title>infer (astroid/node_classes.py:380) (81 samples, 1.46%)</title><rect x="15.4927%" y="3972" width="1.4592%" height="15" fill="rgb(212,99,53)"/><text x="15.7427%" y="3982.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (81 samples, 1.46%)</title><rect x="15.4927%" y="3988" width="1.4592%" height="15" fill="rgb(249,111,54)"/><text x="15.7427%" y="3998.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (81 samples, 1.46%)</title><rect x="15.4927%" y="4004" width="1.4592%" height="15" fill="rgb(249,55,30)"/><text x="15.7427%" y="4014.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (35 samples, 0.63%)</title><rect x="16.3214%" y="4020" width="0.6305%" height="15" fill="rgb(237,47,42)"/><text x="16.5714%" y="4030.50"></text></g><g><title>igetattr (astroid/bases.py:233) (27 samples, 0.49%)</title><rect x="16.4655%" y="4036" width="0.4864%" height="15" fill="rgb(211,20,18)"/><text x="16.7155%" y="4046.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (27 samples, 0.49%)</title><rect x="16.4655%" y="4052" width="0.4864%" height="15" fill="rgb(231,203,46)"/><text x="16.7155%" y="4062.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (20 samples, 0.36%)</title><rect x="16.5916%" y="4068" width="0.3603%" height="15" fill="rgb(237,142,3)"/><text x="16.8416%" y="4078.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="16.5916%" y="4084" width="0.3603%" height="15" fill="rgb(241,107,1)"/><text x="16.8416%" y="4094.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="16.5916%" y="4100" width="0.3603%" height="15" fill="rgb(229,83,13)"/><text x="16.8416%" y="4110.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="16.5916%" y="4116" width="0.3603%" height="15" fill="rgb(241,91,40)"/><text x="16.8416%" y="4126.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="16.5916%" y="4132" width="0.3603%" height="15" fill="rgb(225,3,45)"/><text x="16.8416%" y="4142.50"></text></g><g><title>infer_subscript (astroid/inference.py:364) (20 samples, 0.36%)</title><rect x="16.5916%" y="4148" width="0.3603%" height="15" fill="rgb(244,223,14)"/><text x="16.8416%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="16.5916%" y="4164" width="0.3603%" height="15" fill="rgb(224,124,37)"/><text x="16.8416%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="16.5916%" y="4180" width="0.3603%" height="15" fill="rgb(251,171,30)"/><text x="16.8416%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="16.5916%" y="4196" width="0.3603%" height="15" fill="rgb(236,46,54)"/><text x="16.8416%" y="4206.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (16 samples, 0.29%)</title><rect x="16.6637%" y="4212" width="0.2882%" height="15" fill="rgb(245,213,5)"/><text x="16.9137%" y="4222.50"></text></g><g><title>igetattr (astroid/bases.py:221) (16 samples, 0.29%)</title><rect x="16.6637%" y="4228" width="0.2882%" height="15" fill="rgb(230,144,27)"/><text x="16.9137%" y="4238.50"></text></g><g><title>getattr (astroid/bases.py:182) (16 samples, 0.29%)</title><rect x="16.6637%" y="4244" width="0.2882%" height="15" fill="rgb(220,86,6)"/><text x="16.9137%" y="4254.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (16 samples, 0.29%)</title><rect x="16.6637%" y="4260" width="0.2882%" height="15" fill="rgb(240,20,13)"/><text x="16.9137%" y="4270.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (16 samples, 0.29%)</title><rect x="16.6637%" y="4276" width="0.2882%" height="15" fill="rgb(217,89,34)"/><text x="16.9137%" y="4286.50"></text></g><g><title>infer_call (astroid/inference.py:223) (104 samples, 1.87%)</title><rect x="15.2765%" y="3812" width="1.8735%" height="15" fill="rgb(229,13,5)"/><text x="15.5265%" y="3822.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (104 samples, 1.87%)</title><rect x="15.2765%" y="3828" width="1.8735%" height="15" fill="rgb(244,67,35)"/><text x="15.5265%" y="3838.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (104 samples, 1.87%)</title><rect x="15.2765%" y="3844" width="1.8735%" height="15" fill="rgb(221,40,2)"/><text x="15.5265%" y="3854.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (104 samples, 1.87%)</title><rect x="15.2765%" y="3860" width="1.8735%" height="15" fill="rgb(237,157,21)"/><text x="15.5265%" y="3870.50">w..</text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="16.9519%" y="3876" width="0.1982%" height="15" fill="rgb(222,94,11)"/><text x="17.2019%" y="3886.50"></text></g><g><title>igetattr (astroid/bases.py:233) (7 samples, 0.13%)</title><rect x="17.0240%" y="3892" width="0.1261%" height="15" fill="rgb(249,113,6)"/><text x="17.2740%" y="3902.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (7 samples, 0.13%)</title><rect x="17.0240%" y="3908" width="0.1261%" height="15" fill="rgb(238,137,36)"/><text x="17.2740%" y="3918.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="17.1681%" y="3828" width="0.1081%" height="15" fill="rgb(210,102,26)"/><text x="17.4181%" y="3838.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="17.1681%" y="3844" width="0.1081%" height="15" fill="rgb(218,30,30)"/><text x="17.4181%" y="3854.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="17.1681%" y="3860" width="0.1081%" height="15" fill="rgb(214,67,26)"/><text x="17.4181%" y="3870.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="17.1681%" y="3876" width="0.1081%" height="15" fill="rgb(251,9,53)"/><text x="17.4181%" y="3886.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (6 samples, 0.11%)</title><rect x="17.3482%" y="3876" width="0.1081%" height="15" fill="rgb(228,204,25)"/><text x="17.5982%" y="3886.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (126 samples, 2.27%)</title><rect x="15.2045%" y="3748" width="2.2699%" height="15" fill="rgb(207,153,8)"/><text x="15.4545%" y="3758.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (126 samples, 2.27%)</title><rect x="15.2045%" y="3764" width="2.2699%" height="15" fill="rgb(242,9,16)"/><text x="15.4545%" y="3774.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (126 samples, 2.27%)</title><rect x="15.2045%" y="3780" width="2.2699%" height="15" fill="rgb(217,211,10)"/><text x="15.4545%" y="3790.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (126 samples, 2.27%)</title><rect x="15.2045%" y="3796" width="2.2699%" height="15" fill="rgb(219,228,52)"/><text x="15.4545%" y="3806.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (18 samples, 0.32%)</title><rect x="17.1501%" y="3812" width="0.3243%" height="15" fill="rgb(231,92,29)"/><text x="17.4001%" y="3822.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (7 samples, 0.13%)</title><rect x="17.3482%" y="3828" width="0.1261%" height="15" fill="rgb(232,8,23)"/><text x="17.5982%" y="3838.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (7 samples, 0.13%)</title><rect x="17.3482%" y="3844" width="0.1261%" height="15" fill="rgb(216,211,34)"/><text x="17.5982%" y="3854.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (7 samples, 0.13%)</title><rect x="17.3482%" y="3860" width="0.1261%" height="15" fill="rgb(236,151,0)"/><text x="17.5982%" y="3870.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (9 samples, 0.16%)</title><rect x="17.5104%" y="3748" width="0.1621%" height="15" fill="rgb(209,168,3)"/><text x="17.7604%" y="3758.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="17.5104%" y="3764" width="0.1621%" height="15" fill="rgb(208,129,28)"/><text x="17.7604%" y="3774.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (9 samples, 0.16%)</title><rect x="17.5104%" y="3780" width="0.1621%" height="15" fill="rgb(229,78,22)"/><text x="17.7604%" y="3790.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="17.5464%" y="3796" width="0.1261%" height="15" fill="rgb(228,187,13)"/><text x="17.7964%" y="3806.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (8 samples, 0.14%)</title><rect x="17.7085%" y="3780" width="0.1441%" height="15" fill="rgb(240,119,24)"/><text x="17.9585%" y="3790.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (8 samples, 0.14%)</title><rect x="17.7085%" y="3796" width="0.1441%" height="15" fill="rgb(209,194,42)"/><text x="17.9585%" y="3806.50"></text></g><g><title>__exit__ (contextlib.py:120) (8 samples, 0.14%)</title><rect x="17.7085%" y="3812" width="0.1441%" height="15" fill="rgb(247,200,46)"/><text x="17.9585%" y="3822.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (6 samples, 0.11%)</title><rect x="17.8526%" y="3796" width="0.1081%" height="15" fill="rgb(218,76,16)"/><text x="18.1026%" y="3806.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="17.8526%" y="3812" width="0.1081%" height="15" fill="rgb(225,21,48)"/><text x="18.1026%" y="3822.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (16 samples, 0.29%)</title><rect x="17.7085%" y="3764" width="0.2882%" height="15" fill="rgb(239,223,50)"/><text x="17.9585%" y="3774.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (8 samples, 0.14%)</title><rect x="17.8526%" y="3780" width="0.1441%" height="15" fill="rgb(244,45,21)"/><text x="18.1026%" y="3790.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (19 samples, 0.34%)</title><rect x="17.6725%" y="3748" width="0.3423%" height="15" fill="rgb(232,33,43)"/><text x="17.9225%" y="3758.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (408 samples, 7.35%)</title><rect x="10.7548%" y="3700" width="7.3500%" height="15" fill="rgb(209,8,3)"/><text x="11.0048%" y="3710.50">raise_if_n..</text></g><g><title>wrapped (astroid/decorators.py:99) (406 samples, 7.31%)</title><rect x="10.7908%" y="3716" width="7.3140%" height="15" fill="rgb(214,25,53)"/><text x="11.0408%" y="3726.50">wrapped (a..</text></g><g><title>infer_call (astroid/inference.py:229) (166 samples, 2.99%)</title><rect x="15.1144%" y="3732" width="2.9905%" height="15" fill="rgb(254,186,54)"/><text x="15.3644%" y="3742.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="18.1048%" y="3748" width="0.1261%" height="15" fill="rgb(208,174,49)"/><text x="18.3548%" y="3758.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="18.1048%" y="3764" width="0.1261%" height="15" fill="rgb(233,191,51)"/><text x="18.3548%" y="3774.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="18.1048%" y="3732" width="0.1441%" height="15" fill="rgb(222,134,10)"/><text x="18.3548%" y="3742.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="18.2670%" y="3780" width="0.2882%" height="15" fill="rgb(230,226,20)"/><text x="18.5170%" y="3790.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="18.2670%" y="3796" width="0.2882%" height="15" fill="rgb(251,111,25)"/><text x="18.5170%" y="3806.50"></text></g><g><title>infer_call (astroid/inference.py:229) (7 samples, 0.13%)</title><rect x="18.4291%" y="3812" width="0.1261%" height="15" fill="rgb(224,40,46)"/><text x="18.6791%" y="3822.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (7 samples, 0.13%)</title><rect x="18.4291%" y="3828" width="0.1261%" height="15" fill="rgb(236,108,47)"/><text x="18.6791%" y="3838.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="18.4291%" y="3844" width="0.1261%" height="15" fill="rgb(234,93,0)"/><text x="18.6791%" y="3854.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="18.4291%" y="3860" width="0.1261%" height="15" fill="rgb(224,213,32)"/><text x="18.6791%" y="3870.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="18.4291%" y="3876" width="0.1261%" height="15" fill="rgb(251,11,48)"/><text x="18.6791%" y="3886.50"></text></g><g><title>infer_call (astroid/inference.py:229) (7 samples, 0.13%)</title><rect x="18.4291%" y="3892" width="0.1261%" height="15" fill="rgb(236,173,5)"/><text x="18.6791%" y="3902.50"></text></g><g><title>igetattr (astroid/bases.py:221) (6 samples, 0.11%)</title><rect x="18.7354%" y="4804" width="0.1081%" height="15" fill="rgb(230,95,12)"/><text x="18.9854%" y="4814.50"></text></g><g><title>getattr (astroid/bases.py:182) (6 samples, 0.11%)</title><rect x="18.7354%" y="4820" width="0.1081%" height="15" fill="rgb(232,209,1)"/><text x="18.9854%" y="4830.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (6 samples, 0.11%)</title><rect x="18.7354%" y="4836" width="0.1081%" height="15" fill="rgb(232,6,1)"/><text x="18.9854%" y="4846.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (6 samples, 0.11%)</title><rect x="18.7354%" y="4852" width="0.1081%" height="15" fill="rgb(210,224,50)"/><text x="18.9854%" y="4862.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="18.7354%" y="4868" width="0.1081%" height="15" fill="rgb(228,127,35)"/><text x="18.9854%" y="4878.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="18.7354%" y="4724" width="0.1982%" height="15" fill="rgb(245,102,45)"/><text x="18.9854%" y="4734.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="18.7354%" y="4740" width="0.1982%" height="15" fill="rgb(214,1,49)"/><text x="18.9854%" y="4750.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="18.7354%" y="4756" width="0.1982%" height="15" fill="rgb(226,163,40)"/><text x="18.9854%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="18.7354%" y="4772" width="0.1982%" height="15" fill="rgb(239,212,28)"/><text x="18.9854%" y="4782.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="18.7354%" y="4788" width="0.1982%" height="15" fill="rgb(220,20,13)"/><text x="18.9854%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="19.0056%" y="4868" width="0.1261%" height="15" fill="rgb(210,164,35)"/><text x="19.2556%" y="4878.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="19.0056%" y="4884" width="0.1261%" height="15" fill="rgb(248,109,41)"/><text x="19.2556%" y="4894.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="19.0056%" y="4900" width="0.1261%" height="15" fill="rgb(238,23,50)"/><text x="19.2556%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="19.0056%" y="4916" width="0.1261%" height="15" fill="rgb(211,48,49)"/><text x="19.2556%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="19.0056%" y="4932" width="0.1261%" height="15" fill="rgb(223,36,21)"/><text x="19.2556%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="19.0056%" y="4948" width="0.1261%" height="15" fill="rgb(207,123,46)"/><text x="19.2556%" y="4958.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="19.0056%" y="4964" width="0.1261%" height="15" fill="rgb(240,218,32)"/><text x="19.2556%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="19.0056%" y="4980" width="0.1261%" height="15" fill="rgb(252,5,43)"/><text x="19.2556%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="19.0056%" y="4996" width="0.1261%" height="15" fill="rgb(252,84,19)"/><text x="19.2556%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="19.0056%" y="5012" width="0.1261%" height="15" fill="rgb(243,152,39)"/><text x="19.2556%" y="5022.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (6 samples, 0.11%)</title><rect x="19.0236%" y="5028" width="0.1081%" height="15" fill="rgb(234,160,15)"/><text x="19.2736%" y="5038.50"></text></g><g><title>copy_context (astroid/context.py:148) (6 samples, 0.11%)</title><rect x="19.0236%" y="5044" width="0.1081%" height="15" fill="rgb(237,34,20)"/><text x="19.2736%" y="5054.50"></text></g><g><title>clone (astroid/context.py:106) (6 samples, 0.11%)</title><rect x="19.0236%" y="5060" width="0.1081%" height="15" fill="rgb(229,97,13)"/><text x="19.2736%" y="5070.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (8 samples, 0.14%)</title><rect x="19.0056%" y="4772" width="0.1441%" height="15" fill="rgb(234,71,50)"/><text x="19.2556%" y="4782.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="19.0056%" y="4788" width="0.1441%" height="15" fill="rgb(253,155,4)"/><text x="19.2556%" y="4798.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="19.0056%" y="4804" width="0.1441%" height="15" fill="rgb(222,185,37)"/><text x="19.2556%" y="4814.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (8 samples, 0.14%)</title><rect x="19.0056%" y="4820" width="0.1441%" height="15" fill="rgb(251,177,13)"/><text x="19.2556%" y="4830.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="19.0056%" y="4836" width="0.1441%" height="15" fill="rgb(250,179,40)"/><text x="19.2556%" y="4846.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="19.0056%" y="4852" width="0.1441%" height="15" fill="rgb(242,44,2)"/><text x="19.2556%" y="4862.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="18.6093%" y="3988" width="0.5945%" height="15" fill="rgb(216,177,13)"/><text x="18.8593%" y="3998.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="18.6093%" y="4004" width="0.5945%" height="15" fill="rgb(216,106,43)"/><text x="18.8593%" y="4014.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (32 samples, 0.58%)</title><rect x="18.6273%" y="4020" width="0.5765%" height="15" fill="rgb(216,183,2)"/><text x="18.8773%" y="4030.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4036" width="0.5765%" height="15" fill="rgb(249,75,3)"/><text x="18.8773%" y="4046.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4052" width="0.5765%" height="15" fill="rgb(219,67,39)"/><text x="18.8773%" y="4062.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4068" width="0.5765%" height="15" fill="rgb(253,228,2)"/><text x="18.8773%" y="4078.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (32 samples, 0.58%)</title><rect x="18.6273%" y="4084" width="0.5765%" height="15" fill="rgb(235,138,27)"/><text x="18.8773%" y="4094.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4100" width="0.5765%" height="15" fill="rgb(236,97,51)"/><text x="18.8773%" y="4110.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4116" width="0.5765%" height="15" fill="rgb(240,80,30)"/><text x="18.8773%" y="4126.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4132" width="0.5765%" height="15" fill="rgb(230,178,19)"/><text x="18.8773%" y="4142.50"></text></g><g><title>infer_call (astroid/inference.py:223) (32 samples, 0.58%)</title><rect x="18.6273%" y="4148" width="0.5765%" height="15" fill="rgb(210,190,27)"/><text x="18.8773%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4164" width="0.5765%" height="15" fill="rgb(222,107,31)"/><text x="18.8773%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4180" width="0.5765%" height="15" fill="rgb(216,127,34)"/><text x="18.8773%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4196" width="0.5765%" height="15" fill="rgb(234,116,52)"/><text x="18.8773%" y="4206.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (32 samples, 0.58%)</title><rect x="18.6273%" y="4212" width="0.5765%" height="15" fill="rgb(222,124,15)"/><text x="18.8773%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4228" width="0.5765%" height="15" fill="rgb(231,179,28)"/><text x="18.8773%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4244" width="0.5765%" height="15" fill="rgb(226,93,45)"/><text x="18.8773%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4260" width="0.5765%" height="15" fill="rgb(215,8,51)"/><text x="18.8773%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (32 samples, 0.58%)</title><rect x="18.6273%" y="4276" width="0.5765%" height="15" fill="rgb(223,106,5)"/><text x="18.8773%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4292" width="0.5765%" height="15" fill="rgb(250,191,5)"/><text x="18.8773%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4308" width="0.5765%" height="15" fill="rgb(242,132,44)"/><text x="18.8773%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4324" width="0.5765%" height="15" fill="rgb(251,152,29)"/><text x="18.8773%" y="4334.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (32 samples, 0.58%)</title><rect x="18.6273%" y="4340" width="0.5765%" height="15" fill="rgb(218,179,5)"/><text x="18.8773%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4356" width="0.5765%" height="15" fill="rgb(227,67,19)"/><text x="18.8773%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4372" width="0.5765%" height="15" fill="rgb(233,119,31)"/><text x="18.8773%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4388" width="0.5765%" height="15" fill="rgb(241,120,22)"/><text x="18.8773%" y="4398.50"></text></g><g><title>infer_call (astroid/inference.py:223) (32 samples, 0.58%)</title><rect x="18.6273%" y="4404" width="0.5765%" height="15" fill="rgb(224,102,30)"/><text x="18.8773%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4420" width="0.5765%" height="15" fill="rgb(210,164,37)"/><text x="18.8773%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4436" width="0.5765%" height="15" fill="rgb(226,191,16)"/><text x="18.8773%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4452" width="0.5765%" height="15" fill="rgb(214,40,45)"/><text x="18.8773%" y="4462.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (32 samples, 0.58%)</title><rect x="18.6273%" y="4468" width="0.5765%" height="15" fill="rgb(244,29,26)"/><text x="18.8773%" y="4478.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="18.6273%" y="4484" width="0.5765%" height="15" fill="rgb(216,16,5)"/><text x="18.8773%" y="4494.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="18.6273%" y="4500" width="0.5765%" height="15" fill="rgb(249,76,35)"/><text x="18.8773%" y="4510.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="18.6273%" y="4516" width="0.5765%" height="15" fill="rgb(207,11,44)"/><text x="18.8773%" y="4526.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (32 samples, 0.58%)</title><rect x="18.6273%" y="4532" width="0.5765%" height="15" fill="rgb(228,190,49)"/><text x="18.8773%" y="4542.50"></text></g><g><title>igetattr (astroid/bases.py:233) (30 samples, 0.54%)</title><rect x="18.6633%" y="4548" width="0.5404%" height="15" fill="rgb(214,173,12)"/><text x="18.9133%" y="4558.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (30 samples, 0.54%)</title><rect x="18.6633%" y="4564" width="0.5404%" height="15" fill="rgb(218,26,35)"/><text x="18.9133%" y="4574.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (27 samples, 0.49%)</title><rect x="18.7173%" y="4580" width="0.4864%" height="15" fill="rgb(220,200,19)"/><text x="18.9673%" y="4590.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (27 samples, 0.49%)</title><rect x="18.7173%" y="4596" width="0.4864%" height="15" fill="rgb(239,95,49)"/><text x="18.9673%" y="4606.50"></text></g><g><title>infer (astroid/node_classes.py:380) (27 samples, 0.49%)</title><rect x="18.7173%" y="4612" width="0.4864%" height="15" fill="rgb(235,85,53)"/><text x="18.9673%" y="4622.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (27 samples, 0.49%)</title><rect x="18.7173%" y="4628" width="0.4864%" height="15" fill="rgb(233,133,31)"/><text x="18.9673%" y="4638.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="18.7354%" y="4644" width="0.4684%" height="15" fill="rgb(218,25,20)"/><text x="18.9854%" y="4654.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (26 samples, 0.47%)</title><rect x="18.7354%" y="4660" width="0.4684%" height="15" fill="rgb(252,210,38)"/><text x="18.9854%" y="4670.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="18.7354%" y="4676" width="0.4684%" height="15" fill="rgb(242,134,21)"/><text x="18.9854%" y="4686.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="18.7354%" y="4692" width="0.4684%" height="15" fill="rgb(213,28,48)"/><text x="18.9854%" y="4702.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="18.7354%" y="4708" width="0.4684%" height="15" fill="rgb(250,196,2)"/><text x="18.9854%" y="4718.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (15 samples, 0.27%)</title><rect x="18.9335%" y="4724" width="0.2702%" height="15" fill="rgb(227,5,17)"/><text x="19.1835%" y="4734.50"></text></g><g><title>igetattr (astroid/bases.py:233) (11 samples, 0.20%)</title><rect x="19.0056%" y="4740" width="0.1982%" height="15" fill="rgb(221,226,24)"/><text x="19.2556%" y="4750.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (11 samples, 0.20%)</title><rect x="19.0056%" y="4756" width="0.1982%" height="15" fill="rgb(211,5,48)"/><text x="19.2556%" y="4766.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2583) (6 samples, 0.11%)</title><rect x="19.2398%" y="4580" width="0.1081%" height="15" fill="rgb(219,150,6)"/><text x="19.4898%" y="4590.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (8 samples, 0.14%)</title><rect x="19.6541%" y="5044" width="0.1441%" height="15" fill="rgb(251,46,16)"/><text x="19.9041%" y="5054.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (8 samples, 0.14%)</title><rect x="19.6541%" y="5060" width="0.1441%" height="15" fill="rgb(220,204,40)"/><text x="19.9041%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="19.6541%" y="5076" width="0.1441%" height="15" fill="rgb(211,85,2)"/><text x="19.9041%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="19.6541%" y="5092" width="0.1441%" height="15" fill="rgb(229,17,7)"/><text x="19.9041%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="19.6541%" y="5108" width="0.1441%" height="15" fill="rgb(239,72,28)"/><text x="19.9041%" y="5118.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (8 samples, 0.14%)</title><rect x="19.6541%" y="5124" width="0.1441%" height="15" fill="rgb(230,47,54)"/><text x="19.9041%" y="5134.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (9 samples, 0.16%)</title><rect x="19.8162%" y="5060" width="0.1621%" height="15" fill="rgb(214,50,8)"/><text x="20.0662%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="19.8162%" y="5076" width="0.1621%" height="15" fill="rgb(216,198,43)"/><text x="20.0662%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="19.8162%" y="5092" width="0.1621%" height="15" fill="rgb(234,20,35)"/><text x="20.0662%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="19.8162%" y="5108" width="0.1621%" height="15" fill="rgb(254,45,19)"/><text x="20.0662%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="19.8162%" y="5124" width="0.1621%" height="15" fill="rgb(219,14,44)"/><text x="20.0662%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="19.8162%" y="5140" width="0.1621%" height="15" fill="rgb(217,220,26)"/><text x="20.0662%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="19.8162%" y="5156" width="0.1621%" height="15" fill="rgb(213,158,28)"/><text x="20.0662%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="19.8162%" y="5172" width="0.1621%" height="15" fill="rgb(252,51,52)"/><text x="20.0662%" y="5182.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (27 samples, 0.49%)</title><rect x="19.6541%" y="5012" width="0.4864%" height="15" fill="rgb(246,89,16)"/><text x="19.9041%" y="5022.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (27 samples, 0.49%)</title><rect x="19.6541%" y="5028" width="0.4864%" height="15" fill="rgb(216,158,49)"/><text x="19.9041%" y="5038.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (18 samples, 0.32%)</title><rect x="19.8162%" y="5044" width="0.3243%" height="15" fill="rgb(236,107,19)"/><text x="20.0662%" y="5054.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (9 samples, 0.16%)</title><rect x="19.9784%" y="5060" width="0.1621%" height="15" fill="rgb(228,185,30)"/><text x="20.2284%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="20.1765%" y="5140" width="0.1441%" height="15" fill="rgb(246,134,8)"/><text x="20.4265%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="20.2126%" y="5156" width="0.1081%" height="15" fill="rgb(214,143,50)"/><text x="20.4626%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="20.2126%" y="5172" width="0.1081%" height="15" fill="rgb(228,75,8)"/><text x="20.4626%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="20.2126%" y="5188" width="0.1081%" height="15" fill="rgb(207,175,4)"/><text x="20.4626%" y="5198.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="20.2126%" y="5204" width="0.1081%" height="15" fill="rgb(205,108,24)"/><text x="20.4626%" y="5214.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (13 samples, 0.23%)</title><rect x="20.1405%" y="5028" width="0.2342%" height="15" fill="rgb(244,120,49)"/><text x="20.3905%" y="5038.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (13 samples, 0.23%)</title><rect x="20.1405%" y="5044" width="0.2342%" height="15" fill="rgb(223,47,38)"/><text x="20.3905%" y="5054.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (11 samples, 0.20%)</title><rect x="20.1765%" y="5060" width="0.1982%" height="15" fill="rgb(229,179,11)"/><text x="20.4265%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="20.1765%" y="5076" width="0.1982%" height="15" fill="rgb(231,122,1)"/><text x="20.4265%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="20.1765%" y="5092" width="0.1982%" height="15" fill="rgb(245,119,9)"/><text x="20.4265%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="20.1765%" y="5108" width="0.1982%" height="15" fill="rgb(241,163,25)"/><text x="20.4265%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="20.1765%" y="5124" width="0.1982%" height="15" fill="rgb(217,214,3)"/><text x="20.4265%" y="5134.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (12 samples, 0.22%)</title><rect x="20.3747%" y="5044" width="0.2162%" height="15" fill="rgb(240,86,28)"/><text x="20.6247%" y="5054.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="20.3747%" y="5060" width="0.2162%" height="15" fill="rgb(215,47,9)"/><text x="20.6247%" y="5070.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="20.3747%" y="5076" width="0.2162%" height="15" fill="rgb(252,25,45)"/><text x="20.6247%" y="5086.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (9 samples, 0.16%)</title><rect x="20.4288%" y="5092" width="0.1621%" height="15" fill="rgb(251,164,9)"/><text x="20.6788%" y="5102.50"></text></g><g><title>infer_call (astroid/inference.py:223) (59 samples, 1.06%)</title><rect x="19.5821%" y="4932" width="1.0629%" height="15" fill="rgb(233,194,0)"/><text x="19.8321%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (59 samples, 1.06%)</title><rect x="19.5821%" y="4948" width="1.0629%" height="15" fill="rgb(249,111,24)"/><text x="19.8321%" y="4958.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (59 samples, 1.06%)</title><rect x="19.5821%" y="4964" width="1.0629%" height="15" fill="rgb(250,223,3)"/><text x="19.8321%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (59 samples, 1.06%)</title><rect x="19.5821%" y="4980" width="1.0629%" height="15" fill="rgb(236,178,37)"/><text x="19.8321%" y="4990.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (57 samples, 1.03%)</title><rect x="19.6181%" y="4996" width="1.0268%" height="15" fill="rgb(241,158,50)"/><text x="19.8681%" y="5006.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (28 samples, 0.50%)</title><rect x="20.1405%" y="5012" width="0.5044%" height="15" fill="rgb(213,121,41)"/><text x="20.3905%" y="5022.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (15 samples, 0.27%)</title><rect x="20.3747%" y="5028" width="0.2702%" height="15" fill="rgb(240,92,3)"/><text x="20.6247%" y="5038.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:367) (6 samples, 0.11%)</title><rect x="20.6629%" y="5300" width="0.1081%" height="15" fill="rgb(205,123,3)"/><text x="20.9129%" y="5310.50"></text></g><g><title>infer_call (astroid/inference.py:223) (16 samples, 0.29%)</title><rect x="20.6629%" y="5140" width="0.2882%" height="15" fill="rgb(205,97,47)"/><text x="20.9129%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="20.6629%" y="5156" width="0.2882%" height="15" fill="rgb(247,152,14)"/><text x="20.9129%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="20.6629%" y="5172" width="0.2882%" height="15" fill="rgb(248,195,53)"/><text x="20.9129%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="20.6629%" y="5188" width="0.2882%" height="15" fill="rgb(226,201,16)"/><text x="20.9129%" y="5198.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="20.6629%" y="5204" width="0.2882%" height="15" fill="rgb(205,98,0)"/><text x="20.9129%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="20.6629%" y="5220" width="0.2882%" height="15" fill="rgb(214,191,48)"/><text x="20.9129%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="20.6629%" y="5236" width="0.2882%" height="15" fill="rgb(237,112,39)"/><text x="20.9129%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (16 samples, 0.29%)</title><rect x="20.6629%" y="5252" width="0.2882%" height="15" fill="rgb(247,203,27)"/><text x="20.9129%" y="5262.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (16 samples, 0.29%)</title><rect x="20.6629%" y="5268" width="0.2882%" height="15" fill="rgb(235,124,28)"/><text x="20.9129%" y="5278.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (16 samples, 0.29%)</title><rect x="20.6629%" y="5284" width="0.2882%" height="15" fill="rgb(208,207,46)"/><text x="20.9129%" y="5294.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (9 samples, 0.16%)</title><rect x="20.7890%" y="5300" width="0.1621%" height="15" fill="rgb(234,176,4)"/><text x="21.0390%" y="5310.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (8 samples, 0.14%)</title><rect x="20.8071%" y="5316" width="0.1441%" height="15" fill="rgb(230,133,28)"/><text x="21.0571%" y="5326.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="20.8071%" y="5332" width="0.1441%" height="15" fill="rgb(211,137,40)"/><text x="21.0571%" y="5342.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="20.8431%" y="5348" width="0.1081%" height="15" fill="rgb(254,35,13)"/><text x="21.0931%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="20.9512%" y="5236" width="0.1261%" height="15" fill="rgb(225,49,51)"/><text x="21.2012%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="20.9512%" y="5252" width="0.1261%" height="15" fill="rgb(251,10,15)"/><text x="21.2012%" y="5262.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="20.9512%" y="5268" width="0.1261%" height="15" fill="rgb(228,207,15)"/><text x="21.2012%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="20.9512%" y="5284" width="0.1261%" height="15" fill="rgb(241,99,19)"/><text x="21.2012%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="20.9512%" y="5300" width="0.1261%" height="15" fill="rgb(207,104,49)"/><text x="21.2012%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="20.9512%" y="5316" width="0.1261%" height="15" fill="rgb(234,99,18)"/><text x="21.2012%" y="5326.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (7 samples, 0.13%)</title><rect x="20.9512%" y="5332" width="0.1261%" height="15" fill="rgb(213,191,49)"/><text x="21.2012%" y="5342.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="20.9512%" y="5204" width="0.1441%" height="15" fill="rgb(210,226,19)"/><text x="21.2012%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="20.9512%" y="5220" width="0.1441%" height="15" fill="rgb(229,97,18)"/><text x="21.2012%" y="5230.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (16 samples, 0.29%)</title><rect x="20.9512%" y="5156" width="0.2882%" height="15" fill="rgb(211,167,15)"/><text x="21.2012%" y="5166.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (16 samples, 0.29%)</title><rect x="20.9512%" y="5172" width="0.2882%" height="15" fill="rgb(210,169,34)"/><text x="21.2012%" y="5182.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (16 samples, 0.29%)</title><rect x="20.9512%" y="5188" width="0.2882%" height="15" fill="rgb(241,121,31)"/><text x="21.2012%" y="5198.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (8 samples, 0.14%)</title><rect x="21.0953%" y="5204" width="0.1441%" height="15" fill="rgb(232,40,11)"/><text x="21.3453%" y="5214.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="21.0953%" y="5220" width="0.1441%" height="15" fill="rgb(205,86,26)"/><text x="21.3453%" y="5230.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (9 samples, 0.16%)</title><rect x="21.2394%" y="5156" width="0.1621%" height="15" fill="rgb(231,126,28)"/><text x="21.4894%" y="5166.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="21.2394%" y="5172" width="0.1621%" height="15" fill="rgb(219,221,18)"/><text x="21.4894%" y="5182.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (9 samples, 0.16%)</title><rect x="21.2394%" y="5188" width="0.1621%" height="15" fill="rgb(211,40,0)"/><text x="21.4894%" y="5198.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="21.2574%" y="5204" width="0.1441%" height="15" fill="rgb(239,85,43)"/><text x="21.5074%" y="5214.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (11 samples, 0.20%)</title><rect x="21.4015%" y="5172" width="0.1982%" height="15" fill="rgb(231,55,21)"/><text x="21.6515%" y="5182.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="21.4015%" y="5188" width="0.1982%" height="15" fill="rgb(225,184,43)"/><text x="21.6515%" y="5198.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="21.4916%" y="5204" width="0.1081%" height="15" fill="rgb(251,158,41)"/><text x="21.7416%" y="5214.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (9 samples, 0.16%)</title><rect x="21.6177%" y="5204" width="0.1621%" height="15" fill="rgb(234,159,37)"/><text x="21.8677%" y="5214.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="21.6177%" y="5220" width="0.1621%" height="15" fill="rgb(216,204,22)"/><text x="21.8677%" y="5230.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="21.6718%" y="5236" width="0.1081%" height="15" fill="rgb(214,17,3)"/><text x="21.9218%" y="5246.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="21.6718%" y="5252" width="0.1081%" height="15" fill="rgb(212,111,17)"/><text x="21.9218%" y="5262.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="21.6718%" y="5268" width="0.1081%" height="15" fill="rgb(221,157,24)"/><text x="21.9218%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="21.6718%" y="5284" width="0.1081%" height="15" fill="rgb(252,16,13)"/><text x="21.9218%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="21.6718%" y="5300" width="0.1081%" height="15" fill="rgb(221,62,2)"/><text x="21.9218%" y="5310.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (28 samples, 0.50%)</title><rect x="21.4015%" y="5156" width="0.5044%" height="15" fill="rgb(247,87,22)"/><text x="21.6515%" y="5166.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (17 samples, 0.31%)</title><rect x="21.5997%" y="5172" width="0.3063%" height="15" fill="rgb(215,73,9)"/><text x="21.8497%" y="5182.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (16 samples, 0.29%)</title><rect x="21.6177%" y="5188" width="0.2882%" height="15" fill="rgb(207,175,33)"/><text x="21.8677%" y="5198.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (7 samples, 0.13%)</title><rect x="21.7799%" y="5204" width="0.1261%" height="15" fill="rgb(243,129,54)"/><text x="22.0299%" y="5214.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (74 samples, 1.33%)</title><rect x="20.6629%" y="4948" width="1.3331%" height="15" fill="rgb(227,119,45)"/><text x="20.9129%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (74 samples, 1.33%)</title><rect x="20.6629%" y="4964" width="1.3331%" height="15" fill="rgb(205,109,36)"/><text x="20.9129%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (74 samples, 1.33%)</title><rect x="20.6629%" y="4980" width="1.3331%" height="15" fill="rgb(205,6,39)"/><text x="20.9129%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (74 samples, 1.33%)</title><rect x="20.6629%" y="4996" width="1.3331%" height="15" fill="rgb(221,32,16)"/><text x="20.9129%" y="5006.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (74 samples, 1.33%)</title><rect x="20.6629%" y="5012" width="1.3331%" height="15" fill="rgb(228,144,50)"/><text x="20.9129%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (74 samples, 1.33%)</title><rect x="20.6629%" y="5028" width="1.3331%" height="15" fill="rgb(229,201,53)"/><text x="20.9129%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (74 samples, 1.33%)</title><rect x="20.6629%" y="5044" width="1.3331%" height="15" fill="rgb(249,153,27)"/><text x="20.9129%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (74 samples, 1.33%)</title><rect x="20.6629%" y="5060" width="1.3331%" height="15" fill="rgb(227,106,25)"/><text x="20.9129%" y="5070.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (74 samples, 1.33%)</title><rect x="20.6629%" y="5076" width="1.3331%" height="15" fill="rgb(230,65,29)"/><text x="20.9129%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (74 samples, 1.33%)</title><rect x="20.6629%" y="5092" width="1.3331%" height="15" fill="rgb(221,57,46)"/><text x="20.9129%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (74 samples, 1.33%)</title><rect x="20.6629%" y="5108" width="1.3331%" height="15" fill="rgb(229,161,17)"/><text x="20.9129%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (74 samples, 1.33%)</title><rect x="20.6629%" y="5124" width="1.3331%" height="15" fill="rgb(222,213,11)"/><text x="20.9129%" y="5134.50"></text></g><g><title>infer_call (astroid/inference.py:229) (58 samples, 1.04%)</title><rect x="20.9512%" y="5140" width="1.0449%" height="15" fill="rgb(235,35,13)"/><text x="21.2012%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="22.2122%" y="5124" width="0.1081%" height="15" fill="rgb(233,158,34)"/><text x="22.4622%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="22.1582%" y="5076" width="0.2882%" height="15" fill="rgb(215,151,48)"/><text x="22.4082%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="22.1762%" y="5092" width="0.2702%" height="15" fill="rgb(229,84,14)"/><text x="22.4262%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="22.1762%" y="5108" width="0.2702%" height="15" fill="rgb(229,68,14)"/><text x="22.4262%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="22.3203%" y="5124" width="0.1261%" height="15" fill="rgb(243,106,26)"/><text x="22.5703%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (6 samples, 0.11%)</title><rect x="22.3383%" y="5140" width="0.1081%" height="15" fill="rgb(206,45,38)"/><text x="22.5883%" y="5150.50"></text></g><g><title>clone (astroid/context.py:106) (6 samples, 0.11%)</title><rect x="22.3383%" y="5156" width="0.1081%" height="15" fill="rgb(226,6,15)"/><text x="22.5883%" y="5166.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="22.4464%" y="5076" width="0.1081%" height="15" fill="rgb(232,22,54)"/><text x="22.6964%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="22.4464%" y="5092" width="0.1081%" height="15" fill="rgb(229,222,32)"/><text x="22.6964%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="22.4464%" y="5108" width="0.1081%" height="15" fill="rgb(228,62,29)"/><text x="22.6964%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="22.4464%" y="5124" width="0.1081%" height="15" fill="rgb(251,103,34)"/><text x="22.6964%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="22.1582%" y="5044" width="0.4504%" height="15" fill="rgb(233,12,30)"/><text x="22.4082%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="22.1582%" y="5060" width="0.4504%" height="15" fill="rgb(238,52,0)"/><text x="22.4082%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (26 samples, 0.47%)</title><rect x="22.1582%" y="5012" width="0.4684%" height="15" fill="rgb(223,98,5)"/><text x="22.4082%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="22.1582%" y="5028" width="0.4684%" height="15" fill="rgb(228,75,37)"/><text x="22.4082%" y="5038.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (32 samples, 0.58%)</title><rect x="22.6986%" y="5156" width="0.5765%" height="15" fill="rgb(205,115,49)"/><text x="22.9486%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="22.6986%" y="5172" width="0.5765%" height="15" fill="rgb(250,154,43)"/><text x="22.9486%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (29 samples, 0.52%)</title><rect x="22.7527%" y="5188" width="0.5224%" height="15" fill="rgb(226,43,29)"/><text x="23.0027%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (29 samples, 0.52%)</title><rect x="22.7527%" y="5204" width="0.5224%" height="15" fill="rgb(249,228,39)"/><text x="23.0027%" y="5214.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (28 samples, 0.50%)</title><rect x="22.7707%" y="5220" width="0.5044%" height="15" fill="rgb(216,79,43)"/><text x="23.0207%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="22.8607%" y="5236" width="0.4143%" height="15" fill="rgb(228,95,12)"/><text x="23.1107%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="22.8607%" y="5252" width="0.4143%" height="15" fill="rgb(249,221,15)"/><text x="23.1107%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (23 samples, 0.41%)</title><rect x="22.8607%" y="5268" width="0.4143%" height="15" fill="rgb(233,34,13)"/><text x="23.1107%" y="5278.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (23 samples, 0.41%)</title><rect x="22.8607%" y="5284" width="0.4143%" height="15" fill="rgb(214,103,39)"/><text x="23.1107%" y="5294.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:595) (23 samples, 0.41%)</title><rect x="22.8607%" y="5300" width="0.4143%" height="15" fill="rgb(251,126,39)"/><text x="23.1107%" y="5310.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (42 samples, 0.76%)</title><rect x="22.6446%" y="5092" width="0.7566%" height="15" fill="rgb(214,216,36)"/><text x="22.8946%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (42 samples, 0.76%)</title><rect x="22.6446%" y="5108" width="0.7566%" height="15" fill="rgb(220,221,8)"/><text x="22.8946%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (42 samples, 0.76%)</title><rect x="22.6446%" y="5124" width="0.7566%" height="15" fill="rgb(240,216,3)"/><text x="22.8946%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (41 samples, 0.74%)</title><rect x="22.6626%" y="5140" width="0.7386%" height="15" fill="rgb(232,218,17)"/><text x="22.9126%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="23.2751%" y="5156" width="0.1261%" height="15" fill="rgb(229,163,45)"/><text x="23.5251%" y="5166.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="23.2931%" y="5172" width="0.1081%" height="15" fill="rgb(231,110,42)"/><text x="23.5431%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="23.2931%" y="5188" width="0.1081%" height="15" fill="rgb(208,170,48)"/><text x="23.5431%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="23.2931%" y="5204" width="0.1081%" height="15" fill="rgb(239,116,25)"/><text x="23.5431%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="23.2931%" y="5220" width="0.1081%" height="15" fill="rgb(219,200,50)"/><text x="23.5431%" y="5230.50"></text></g><g><title>infer_import_from (astroid/inference.py:266) (6 samples, 0.11%)</title><rect x="23.2931%" y="5236" width="0.1081%" height="15" fill="rgb(245,200,0)"/><text x="23.5431%" y="5246.50"></text></g><g><title>real_name (astroid/mixins.py:106) (6 samples, 0.11%)</title><rect x="23.2931%" y="5252" width="0.1081%" height="15" fill="rgb(245,119,33)"/><text x="23.5431%" y="5262.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (43 samples, 0.77%)</title><rect x="22.6446%" y="5060" width="0.7746%" height="15" fill="rgb(231,125,12)"/><text x="22.8946%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (43 samples, 0.77%)</title><rect x="22.6446%" y="5076" width="0.7746%" height="15" fill="rgb(216,96,41)"/><text x="22.8946%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (77 samples, 1.39%)</title><rect x="22.0861%" y="4980" width="1.3871%" height="15" fill="rgb(248,43,45)"/><text x="22.3361%" y="4990.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (74 samples, 1.33%)</title><rect x="22.1402%" y="4996" width="1.3331%" height="15" fill="rgb(217,222,7)"/><text x="22.3902%" y="5006.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (47 samples, 0.85%)</title><rect x="22.6266%" y="5012" width="0.8467%" height="15" fill="rgb(233,28,6)"/><text x="22.8766%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (46 samples, 0.83%)</title><rect x="22.6446%" y="5028" width="0.8287%" height="15" fill="rgb(231,218,15)"/><text x="22.8946%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (46 samples, 0.83%)</title><rect x="22.6446%" y="5044" width="0.8287%" height="15" fill="rgb(226,171,48)"/><text x="22.8946%" y="5054.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (83 samples, 1.50%)</title><rect x="21.9960%" y="4948" width="1.4952%" height="15" fill="rgb(235,201,9)"/><text x="22.2460%" y="4958.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (83 samples, 1.50%)</title><rect x="21.9960%" y="4964" width="1.4952%" height="15" fill="rgb(217,80,15)"/><text x="22.2460%" y="4974.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="23.7435%" y="5092" width="0.1441%" height="15" fill="rgb(219,152,8)"/><text x="23.9935%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="23.7435%" y="5108" width="0.1441%" height="15" fill="rgb(243,107,38)"/><text x="23.9935%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="23.7435%" y="5124" width="0.1441%" height="15" fill="rgb(231,17,5)"/><text x="23.9935%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="23.7435%" y="5140" width="0.1441%" height="15" fill="rgb(209,25,54)"/><text x="23.9935%" y="5150.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (6 samples, 0.11%)</title><rect x="23.7795%" y="5156" width="0.1081%" height="15" fill="rgb(219,0,2)"/><text x="24.0295%" y="5166.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:595) (6 samples, 0.11%)</title><rect x="23.7795%" y="5172" width="0.1081%" height="15" fill="rgb(246,9,5)"/><text x="24.0295%" y="5182.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (15 samples, 0.27%)</title><rect x="23.7255%" y="5012" width="0.2702%" height="15" fill="rgb(226,159,4)"/><text x="23.9755%" y="5022.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (15 samples, 0.27%)</title><rect x="23.7255%" y="5028" width="0.2702%" height="15" fill="rgb(219,175,34)"/><text x="23.9755%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:366) (15 samples, 0.27%)</title><rect x="23.7255%" y="5044" width="0.2702%" height="15" fill="rgb(236,10,46)"/><text x="23.9755%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="23.7255%" y="5060" width="0.2702%" height="15" fill="rgb(240,211,16)"/><text x="23.9755%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="23.7435%" y="5076" width="0.2522%" height="15" fill="rgb(205,3,43)"/><text x="23.9935%" y="5086.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (18 samples, 0.32%)</title><rect x="23.9957%" y="5012" width="0.3243%" height="15" fill="rgb(245,7,22)"/><text x="24.2457%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (7 samples, 0.13%)</title><rect x="24.1938%" y="5028" width="0.1261%" height="15" fill="rgb(239,132,32)"/><text x="24.4438%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="24.3560%" y="5140" width="0.1261%" height="15" fill="rgb(228,202,34)"/><text x="24.6060%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="24.3560%" y="5156" width="0.1261%" height="15" fill="rgb(254,200,22)"/><text x="24.6060%" y="5166.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (9 samples, 0.16%)</title><rect x="24.3380%" y="5044" width="0.1621%" height="15" fill="rgb(219,10,39)"/><text x="24.5880%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:366) (9 samples, 0.16%)</title><rect x="24.3380%" y="5060" width="0.1621%" height="15" fill="rgb(226,210,39)"/><text x="24.5880%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="24.3380%" y="5076" width="0.1621%" height="15" fill="rgb(208,219,16)"/><text x="24.5880%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="24.3560%" y="5092" width="0.1441%" height="15" fill="rgb(216,158,51)"/><text x="24.6060%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="24.3560%" y="5108" width="0.1441%" height="15" fill="rgb(233,14,44)"/><text x="24.6060%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="24.3560%" y="5124" width="0.1441%" height="15" fill="rgb(237,97,39)"/><text x="24.6060%" y="5134.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (13 samples, 0.23%)</title><rect x="24.3199%" y="5028" width="0.2342%" height="15" fill="rgb(218,198,43)"/><text x="24.5699%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="24.5721%" y="5284" width="0.1441%" height="15" fill="rgb(231,104,20)"/><text x="24.8221%" y="5294.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (8 samples, 0.14%)</title><rect x="24.5721%" y="5300" width="0.1441%" height="15" fill="rgb(254,36,13)"/><text x="24.8221%" y="5310.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="24.5541%" y="5172" width="0.1801%" height="15" fill="rgb(248,14,50)"/><text x="24.8041%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="24.5541%" y="5188" width="0.1801%" height="15" fill="rgb(217,107,29)"/><text x="24.8041%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="24.5541%" y="5204" width="0.1801%" height="15" fill="rgb(251,169,33)"/><text x="24.8041%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="24.5541%" y="5220" width="0.1801%" height="15" fill="rgb(217,108,32)"/><text x="24.8041%" y="5230.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="24.5541%" y="5236" width="0.1801%" height="15" fill="rgb(219,66,42)"/><text x="24.8041%" y="5246.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="24.5541%" y="5252" width="0.1801%" height="15" fill="rgb(206,180,7)"/><text x="24.8041%" y="5262.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="24.5541%" y="5268" width="0.1801%" height="15" fill="rgb(208,226,31)"/><text x="24.8041%" y="5278.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="24.5541%" y="5108" width="0.2162%" height="15" fill="rgb(218,26,49)"/><text x="24.8041%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="24.5541%" y="5124" width="0.2162%" height="15" fill="rgb(233,197,48)"/><text x="24.8041%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="24.5541%" y="5140" width="0.2162%" height="15" fill="rgb(252,181,51)"/><text x="24.8041%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="24.5541%" y="5156" width="0.2162%" height="15" fill="rgb(253,90,19)"/><text x="24.8041%" y="5166.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (15 samples, 0.27%)</title><rect x="24.5541%" y="5028" width="0.2702%" height="15" fill="rgb(215,171,30)"/><text x="24.8041%" y="5038.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (15 samples, 0.27%)</title><rect x="24.5541%" y="5044" width="0.2702%" height="15" fill="rgb(214,222,9)"/><text x="24.8041%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="24.5541%" y="5060" width="0.2702%" height="15" fill="rgb(223,3,22)"/><text x="24.8041%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="24.5541%" y="5076" width="0.2702%" height="15" fill="rgb(225,196,46)"/><text x="24.8041%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="24.5541%" y="5092" width="0.2702%" height="15" fill="rgb(209,110,37)"/><text x="24.8041%" y="5102.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (36 samples, 0.65%)</title><rect x="24.3199%" y="5012" width="0.6485%" height="15" fill="rgb(249,89,12)"/><text x="24.5699%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2328) (6 samples, 0.11%)</title><rect x="24.9685%" y="5028" width="0.1081%" height="15" fill="rgb(226,27,33)"/><text x="25.2185%" y="5038.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (76 samples, 1.37%)</title><rect x="23.7255%" y="4996" width="1.3691%" height="15" fill="rgb(213,82,22)"/><text x="23.9755%" y="5006.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2794) (7 samples, 0.13%)</title><rect x="24.9685%" y="5012" width="0.1261%" height="15" fill="rgb(248,140,0)"/><text x="25.2185%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (87 samples, 1.57%)</title><rect x="23.5633%" y="4980" width="1.5673%" height="15" fill="rgb(228,106,3)"/><text x="23.8133%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (93 samples, 1.68%)</title><rect x="23.4913%" y="4948" width="1.6754%" height="15" fill="rgb(209,23,37)"/><text x="23.7413%" y="4958.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (93 samples, 1.68%)</title><rect x="23.4913%" y="4964" width="1.6754%" height="15" fill="rgb(241,93,50)"/><text x="23.7413%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="25.3288%" y="5060" width="0.1441%" height="15" fill="rgb(253,46,43)"/><text x="25.5788%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="25.3288%" y="5076" width="0.1441%" height="15" fill="rgb(226,206,43)"/><text x="25.5788%" y="5086.50"></text></g><g><title>infer_name (astroid/inference.py:199) (8 samples, 0.14%)</title><rect x="25.3288%" y="5092" width="0.1441%" height="15" fill="rgb(217,54,7)"/><text x="25.5788%" y="5102.50"></text></g><g><title>copy_context (astroid/context.py:148) (8 samples, 0.14%)</title><rect x="25.3288%" y="5108" width="0.1441%" height="15" fill="rgb(223,5,52)"/><text x="25.5788%" y="5118.50"></text></g><g><title>clone (astroid/context.py:109) (8 samples, 0.14%)</title><rect x="25.3288%" y="5124" width="0.1441%" height="15" fill="rgb(206,52,46)"/><text x="25.5788%" y="5134.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="25.3108%" y="5028" width="0.1982%" height="15" fill="rgb(253,136,11)"/><text x="25.5608%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="25.3288%" y="5044" width="0.1801%" height="15" fill="rgb(208,106,33)"/><text x="25.5788%" y="5054.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (20 samples, 0.36%)</title><rect x="25.2387%" y="4964" width="0.3603%" height="15" fill="rgb(206,54,4)"/><text x="25.4887%" y="4974.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (20 samples, 0.36%)</title><rect x="25.2387%" y="4980" width="0.3603%" height="15" fill="rgb(213,3,15)"/><text x="25.4887%" y="4990.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (18 samples, 0.32%)</title><rect x="25.2747%" y="4996" width="0.3243%" height="15" fill="rgb(252,211,39)"/><text x="25.5247%" y="5006.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (16 samples, 0.29%)</title><rect x="25.3108%" y="5012" width="0.2882%" height="15" fill="rgb(223,6,36)"/><text x="25.5608%" y="5022.50"></text></g><g><title>__enter__ (contextlib.py:113) (6 samples, 0.11%)</title><rect x="25.6170%" y="5028" width="0.1081%" height="15" fill="rgb(252,169,45)"/><text x="25.8670%" y="5038.50"></text></g><g><title>restore_path (astroid/context.py:114) (6 samples, 0.11%)</title><rect x="25.6170%" y="5044" width="0.1081%" height="15" fill="rgb(212,48,26)"/><text x="25.8670%" y="5054.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2316) (10 samples, 0.18%)</title><rect x="25.6170%" y="5012" width="0.1801%" height="15" fill="rgb(251,102,48)"/><text x="25.8670%" y="5022.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (18 samples, 0.32%)</title><rect x="25.5990%" y="4980" width="0.3243%" height="15" fill="rgb(243,208,16)"/><text x="25.8490%" y="4990.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (17 samples, 0.31%)</title><rect x="25.6170%" y="4996" width="0.3063%" height="15" fill="rgb(219,96,24)"/><text x="25.8670%" y="5006.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (6 samples, 0.11%)</title><rect x="25.8152%" y="5012" width="0.1081%" height="15" fill="rgb(219,33,29)"/><text x="26.0652%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="26.0133%" y="5044" width="0.1081%" height="15" fill="rgb(223,176,5)"/><text x="26.2633%" y="5054.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="26.0133%" y="5060" width="0.1081%" height="15" fill="rgb(228,140,14)"/><text x="26.2633%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="26.0133%" y="5076" width="0.1081%" height="15" fill="rgb(217,179,31)"/><text x="26.2633%" y="5086.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (13 samples, 0.23%)</title><rect x="25.9233%" y="4996" width="0.2342%" height="15" fill="rgb(230,9,30)"/><text x="26.1733%" y="5006.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (13 samples, 0.23%)</title><rect x="25.9233%" y="5012" width="0.2342%" height="15" fill="rgb(230,136,20)"/><text x="26.1733%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="26.0133%" y="5028" width="0.1441%" height="15" fill="rgb(215,210,22)"/><text x="26.2633%" y="5038.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (12 samples, 0.22%)</title><rect x="26.1574%" y="5012" width="0.2162%" height="15" fill="rgb(218,43,5)"/><text x="26.4074%" y="5022.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="26.1574%" y="5028" width="0.2162%" height="15" fill="rgb(216,11,5)"/><text x="26.4074%" y="5038.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (11 samples, 0.20%)</title><rect x="26.1755%" y="5044" width="0.1982%" height="15" fill="rgb(209,82,29)"/><text x="26.4255%" y="5054.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="26.1755%" y="5060" width="0.1982%" height="15" fill="rgb(244,115,12)"/><text x="26.4255%" y="5070.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (11 samples, 0.20%)</title><rect x="26.1755%" y="5076" width="0.1982%" height="15" fill="rgb(222,82,18)"/><text x="26.4255%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (9 samples, 0.16%)</title><rect x="26.2115%" y="5092" width="0.1621%" height="15" fill="rgb(249,227,8)"/><text x="26.4615%" y="5102.50"></text></g><g><title>__exit__ (contextlib.py:120) (9 samples, 0.16%)</title><rect x="26.2115%" y="5108" width="0.1621%" height="15" fill="rgb(253,141,45)"/><text x="26.4615%" y="5118.50"></text></g><g><title>restore_path (astroid/context.py:116) (9 samples, 0.16%)</title><rect x="26.2115%" y="5124" width="0.1621%" height="15" fill="rgb(234,184,4)"/><text x="26.4615%" y="5134.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (50 samples, 0.90%)</title><rect x="25.5990%" y="4964" width="0.9007%" height="15" fill="rgb(218,194,23)"/><text x="25.8490%" y="4974.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (32 samples, 0.58%)</title><rect x="25.9233%" y="4980" width="0.5765%" height="15" fill="rgb(235,66,41)"/><text x="26.1733%" y="4990.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (19 samples, 0.34%)</title><rect x="26.1574%" y="4996" width="0.3423%" height="15" fill="rgb(245,217,1)"/><text x="26.4074%" y="5006.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (82 samples, 1.48%)</title><rect x="25.1666%" y="4948" width="1.4772%" height="15" fill="rgb(229,91,1)"/><text x="25.4166%" y="4958.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2228) (6 samples, 0.11%)</title><rect x="26.6438%" y="4948" width="0.1081%" height="15" fill="rgb(207,101,30)"/><text x="26.8938%" y="4958.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (6 samples, 0.11%)</title><rect x="26.7519%" y="5012" width="0.1081%" height="15" fill="rgb(223,82,49)"/><text x="27.0019%" y="5022.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (6 samples, 0.11%)</title><rect x="26.7519%" y="5028" width="0.1081%" height="15" fill="rgb(218,167,17)"/><text x="27.0019%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="26.7519%" y="5044" width="0.1081%" height="15" fill="rgb(208,103,14)"/><text x="27.0019%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="26.7519%" y="5060" width="0.1081%" height="15" fill="rgb(238,20,8)"/><text x="27.0019%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="27.0041%" y="5108" width="0.1261%" height="15" fill="rgb(218,80,54)"/><text x="27.2541%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="27.0041%" y="5124" width="0.1261%" height="15" fill="rgb(240,144,17)"/><text x="27.2541%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="27.0041%" y="5140" width="0.1261%" height="15" fill="rgb(245,27,50)"/><text x="27.2541%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="27.0041%" y="5156" width="0.1261%" height="15" fill="rgb(251,51,7)"/><text x="27.2541%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="26.9501%" y="5060" width="0.2702%" height="15" fill="rgb(245,217,29)"/><text x="27.2001%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="26.9501%" y="5076" width="0.2702%" height="15" fill="rgb(221,176,29)"/><text x="27.2001%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="26.9501%" y="5092" width="0.2702%" height="15" fill="rgb(212,180,24)"/><text x="27.2001%" y="5102.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (22 samples, 0.40%)</title><rect x="26.8600%" y="5028" width="0.3963%" height="15" fill="rgb(254,24,2)"/><text x="27.1100%" y="5038.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (21 samples, 0.38%)</title><rect x="26.8780%" y="5044" width="0.3783%" height="15" fill="rgb(230,100,2)"/><text x="27.1280%" y="5054.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="27.2744%" y="5124" width="0.1801%" height="15" fill="rgb(219,142,25)"/><text x="27.5244%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="27.2744%" y="5140" width="0.1801%" height="15" fill="rgb(240,73,43)"/><text x="27.5244%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="27.2744%" y="5156" width="0.1801%" height="15" fill="rgb(214,114,15)"/><text x="27.5244%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="27.2744%" y="5172" width="0.1801%" height="15" fill="rgb(207,130,4)"/><text x="27.5244%" y="5182.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="27.3464%" y="5188" width="0.1081%" height="15" fill="rgb(221,25,40)"/><text x="27.5964%" y="5198.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="27.3464%" y="5204" width="0.1081%" height="15" fill="rgb(241,184,7)"/><text x="27.5964%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="27.3464%" y="5220" width="0.1081%" height="15" fill="rgb(235,159,4)"/><text x="27.5964%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="27.3464%" y="5236" width="0.1081%" height="15" fill="rgb(214,87,48)"/><text x="27.5964%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="27.3464%" y="5252" width="0.1081%" height="15" fill="rgb(246,198,24)"/><text x="27.5964%" y="5262.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (15 samples, 0.27%)</title><rect x="27.2564%" y="5044" width="0.2702%" height="15" fill="rgb(209,66,40)"/><text x="27.5064%" y="5054.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (14 samples, 0.25%)</title><rect x="27.2744%" y="5060" width="0.2522%" height="15" fill="rgb(233,147,39)"/><text x="27.5244%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="27.2744%" y="5076" width="0.2522%" height="15" fill="rgb(231,145,52)"/><text x="27.5244%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="27.2744%" y="5092" width="0.2522%" height="15" fill="rgb(206,20,26)"/><text x="27.5244%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="27.2744%" y="5108" width="0.2522%" height="15" fill="rgb(238,220,4)"/><text x="27.5244%" y="5118.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (42 samples, 0.76%)</title><rect x="26.8600%" y="5012" width="0.7566%" height="15" fill="rgb(252,195,42)"/><text x="27.1100%" y="5022.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (20 samples, 0.36%)</title><rect x="27.2564%" y="5028" width="0.3603%" height="15" fill="rgb(209,10,6)"/><text x="27.5064%" y="5038.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (50 samples, 0.90%)</title><rect x="26.7519%" y="4996" width="0.9007%" height="15" fill="rgb(229,3,52)"/><text x="27.0019%" y="5006.50"></text></g><g><title>_c3_merge (astroid/scoped_nodes.py:72) (6 samples, 0.11%)</title><rect x="27.7247%" y="5012" width="0.1081%" height="15" fill="rgb(253,49,37)"/><text x="27.9747%" y="5022.50"></text></g><g><title><listcomp> (astroid/scoped_nodes.py:72) (6 samples, 0.11%)</title><rect x="27.7247%" y="5028" width="0.1081%" height="15" fill="rgb(240,103,49)"/><text x="27.9747%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (465 samples, 8.38%)</title><rect x="19.4740%" y="4900" width="8.3769%" height="15" fill="rgb(250,182,30)"/><text x="19.7240%" y="4910.50">raise_if_not..</text></g><g><title>wrapped (astroid/decorators.py:99) (462 samples, 8.32%)</title><rect x="19.5280%" y="4916" width="8.3228%" height="15" fill="rgb(248,8,30)"/><text x="19.7780%" y="4926.50">wrapped (ast..</text></g><g><title>infer_call (astroid/inference.py:229) (400 samples, 7.21%)</title><rect x="20.6449%" y="4932" width="7.2059%" height="15" fill="rgb(237,120,30)"/><text x="20.8949%" y="4942.50">infer_call..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (61 samples, 1.10%)</title><rect x="26.7519%" y="4948" width="1.0989%" height="15" fill="rgb(221,146,34)"/><text x="27.0019%" y="4958.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (61 samples, 1.10%)</title><rect x="26.7519%" y="4964" width="1.0989%" height="15" fill="rgb(242,55,13)"/><text x="27.0019%" y="4974.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (61 samples, 1.10%)</title><rect x="26.7519%" y="4980" width="1.0989%" height="15" fill="rgb(242,112,31)"/><text x="27.0019%" y="4990.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2972) (7 samples, 0.13%)</title><rect x="27.7247%" y="4996" width="0.1261%" height="15" fill="rgb(249,192,27)"/><text x="27.9747%" y="5006.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="27.8869%" y="4932" width="0.1081%" height="15" fill="rgb(208,204,44)"/><text x="28.1369%" y="4942.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="28.1391%" y="5140" width="0.1261%" height="15" fill="rgb(208,93,54)"/><text x="28.3891%" y="5150.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="28.1391%" y="5156" width="0.1261%" height="15" fill="rgb(242,1,31)"/><text x="28.3891%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="28.1391%" y="5172" width="0.1261%" height="15" fill="rgb(241,83,25)"/><text x="28.3891%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="28.1391%" y="5188" width="0.1261%" height="15" fill="rgb(205,169,50)"/><text x="28.3891%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="28.1391%" y="5204" width="0.1261%" height="15" fill="rgb(239,186,37)"/><text x="28.3891%" y="5214.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="28.1391%" y="5220" width="0.1261%" height="15" fill="rgb(205,221,10)"/><text x="28.3891%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="28.1391%" y="5236" width="0.1261%" height="15" fill="rgb(218,196,15)"/><text x="28.3891%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="28.1391%" y="5252" width="0.1261%" height="15" fill="rgb(218,196,35)"/><text x="28.3891%" y="5262.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (16 samples, 0.29%)</title><rect x="28.1211%" y="5092" width="0.2882%" height="15" fill="rgb(233,63,24)"/><text x="28.3711%" y="5102.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (16 samples, 0.29%)</title><rect x="28.1211%" y="5108" width="0.2882%" height="15" fill="rgb(225,8,4)"/><text x="28.3711%" y="5118.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (15 samples, 0.27%)</title><rect x="28.1391%" y="5124" width="0.2702%" height="15" fill="rgb(234,105,35)"/><text x="28.3891%" y="5134.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="28.4093%" y="5108" width="0.1081%" height="15" fill="rgb(236,21,32)"/><text x="28.6593%" y="5118.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="28.4093%" y="5124" width="0.1081%" height="15" fill="rgb(228,109,6)"/><text x="28.6593%" y="5134.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="28.4093%" y="5140" width="0.1081%" height="15" fill="rgb(229,215,31)"/><text x="28.6593%" y="5150.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="28.4093%" y="5156" width="0.1081%" height="15" fill="rgb(221,52,54)"/><text x="28.6593%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="28.4093%" y="5172" width="0.1081%" height="15" fill="rgb(252,129,43)"/><text x="28.6593%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="28.4093%" y="5188" width="0.1081%" height="15" fill="rgb(248,183,27)"/><text x="28.6593%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="28.4093%" y="5204" width="0.1081%" height="15" fill="rgb(250,0,22)"/><text x="28.6593%" y="5214.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (12 samples, 0.22%)</title><rect x="28.5174%" y="5124" width="0.2162%" height="15" fill="rgb(213,166,10)"/><text x="28.7674%" y="5134.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="28.5174%" y="5140" width="0.2162%" height="15" fill="rgb(207,163,36)"/><text x="28.7674%" y="5150.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="28.5174%" y="5156" width="0.2162%" height="15" fill="rgb(208,122,22)"/><text x="28.7674%" y="5166.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="28.5354%" y="5172" width="0.1982%" height="15" fill="rgb(207,104,49)"/><text x="28.7854%" y="5182.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="28.6255%" y="5188" width="0.1081%" height="15" fill="rgb(248,211,50)"/><text x="28.8755%" y="5198.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="28.6255%" y="5204" width="0.1081%" height="15" fill="rgb(217,13,45)"/><text x="28.8755%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="28.6255%" y="5220" width="0.1081%" height="15" fill="rgb(211,216,49)"/><text x="28.8755%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="28.6255%" y="5236" width="0.1081%" height="15" fill="rgb(221,58,53)"/><text x="28.8755%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="28.6255%" y="5252" width="0.1081%" height="15" fill="rgb(220,112,41)"/><text x="28.8755%" y="5262.50"></text></g><g><title>infer_call (astroid/inference.py:223) (47 samples, 0.85%)</title><rect x="28.1030%" y="5012" width="0.8467%" height="15" fill="rgb(236,38,28)"/><text x="28.3530%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (47 samples, 0.85%)</title><rect x="28.1030%" y="5028" width="0.8467%" height="15" fill="rgb(227,195,22)"/><text x="28.3530%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (47 samples, 0.85%)</title><rect x="28.1030%" y="5044" width="0.8467%" height="15" fill="rgb(214,55,33)"/><text x="28.3530%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (47 samples, 0.85%)</title><rect x="28.1030%" y="5060" width="0.8467%" height="15" fill="rgb(248,80,13)"/><text x="28.3530%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (46 samples, 0.83%)</title><rect x="28.1211%" y="5076" width="0.8287%" height="15" fill="rgb(238,52,6)"/><text x="28.3711%" y="5086.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (30 samples, 0.54%)</title><rect x="28.4093%" y="5092" width="0.5404%" height="15" fill="rgb(224,198,47)"/><text x="28.6593%" y="5102.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (24 samples, 0.43%)</title><rect x="28.5174%" y="5108" width="0.4324%" height="15" fill="rgb(233,171,20)"/><text x="28.7674%" y="5118.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (12 samples, 0.22%)</title><rect x="28.7336%" y="5124" width="0.2162%" height="15" fill="rgb(241,30,25)"/><text x="28.9836%" y="5134.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (12 samples, 0.22%)</title><rect x="28.7336%" y="5140" width="0.2162%" height="15" fill="rgb(207,171,38)"/><text x="28.9836%" y="5150.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="28.7336%" y="5156" width="0.2162%" height="15" fill="rgb(234,70,1)"/><text x="28.9836%" y="5166.50"></text></g><g><title>infer_call (astroid/inference.py:223) (13 samples, 0.23%)</title><rect x="29.0218%" y="5220" width="0.2342%" height="15" fill="rgb(232,178,18)"/><text x="29.2718%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="29.0218%" y="5236" width="0.2342%" height="15" fill="rgb(241,78,40)"/><text x="29.2718%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="29.0218%" y="5252" width="0.2342%" height="15" fill="rgb(222,35,25)"/><text x="29.2718%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="29.0218%" y="5268" width="0.2342%" height="15" fill="rgb(207,92,16)"/><text x="29.2718%" y="5278.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (13 samples, 0.23%)</title><rect x="29.0218%" y="5284" width="0.2342%" height="15" fill="rgb(216,59,51)"/><text x="29.2718%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="29.0218%" y="5300" width="0.2342%" height="15" fill="rgb(213,80,28)"/><text x="29.2718%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="29.0218%" y="5316" width="0.2342%" height="15" fill="rgb(220,93,7)"/><text x="29.2718%" y="5326.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (13 samples, 0.23%)</title><rect x="29.0218%" y="5332" width="0.2342%" height="15" fill="rgb(225,24,44)"/><text x="29.2718%" y="5342.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (13 samples, 0.23%)</title><rect x="29.0218%" y="5348" width="0.2342%" height="15" fill="rgb(243,74,40)"/><text x="29.2718%" y="5358.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (13 samples, 0.23%)</title><rect x="29.0218%" y="5364" width="0.2342%" height="15" fill="rgb(228,39,7)"/><text x="29.2718%" y="5374.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (12 samples, 0.22%)</title><rect x="29.0398%" y="5380" width="0.2162%" height="15" fill="rgb(227,79,8)"/><text x="29.2898%" y="5390.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (12 samples, 0.22%)</title><rect x="29.0398%" y="5396" width="0.2162%" height="15" fill="rgb(236,58,11)"/><text x="29.2898%" y="5406.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="29.0398%" y="5412" width="0.2162%" height="15" fill="rgb(249,63,35)"/><text x="29.2898%" y="5422.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="29.0398%" y="5428" width="0.2162%" height="15" fill="rgb(252,114,16)"/><text x="29.2898%" y="5438.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="29.1479%" y="5444" width="0.1081%" height="15" fill="rgb(254,151,24)"/><text x="29.3979%" y="5454.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="29.5082%" y="5492" width="0.1081%" height="15" fill="rgb(253,54,39)"/><text x="29.7582%" y="5502.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="29.4361%" y="5396" width="0.2162%" height="15" fill="rgb(243,25,45)"/><text x="29.6861%" y="5406.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="29.4361%" y="5412" width="0.2162%" height="15" fill="rgb(234,134,9)"/><text x="29.6861%" y="5422.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="29.4542%" y="5428" width="0.1982%" height="15" fill="rgb(227,166,31)"/><text x="29.7042%" y="5438.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="29.4542%" y="5444" width="0.1982%" height="15" fill="rgb(245,143,41)"/><text x="29.7042%" y="5454.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="29.4542%" y="5460" width="0.1982%" height="15" fill="rgb(238,181,32)"/><text x="29.7042%" y="5470.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="29.5082%" y="5476" width="0.1441%" height="15" fill="rgb(224,113,18)"/><text x="29.7582%" y="5486.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (13 samples, 0.23%)</title><rect x="29.4361%" y="5364" width="0.2342%" height="15" fill="rgb(240,229,28)"/><text x="29.6861%" y="5374.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="29.4361%" y="5380" width="0.2342%" height="15" fill="rgb(250,185,3)"/><text x="29.6861%" y="5390.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (25 samples, 0.45%)</title><rect x="29.2560%" y="5236" width="0.4504%" height="15" fill="rgb(212,59,25)"/><text x="29.5060%" y="5246.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (25 samples, 0.45%)</title><rect x="29.2560%" y="5252" width="0.4504%" height="15" fill="rgb(221,87,20)"/><text x="29.5060%" y="5262.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (19 samples, 0.34%)</title><rect x="29.3641%" y="5268" width="0.3423%" height="15" fill="rgb(213,74,28)"/><text x="29.6141%" y="5278.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (15 samples, 0.27%)</title><rect x="29.4361%" y="5284" width="0.2702%" height="15" fill="rgb(224,132,34)"/><text x="29.6861%" y="5294.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (15 samples, 0.27%)</title><rect x="29.4361%" y="5300" width="0.2702%" height="15" fill="rgb(222,101,24)"/><text x="29.6861%" y="5310.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="29.4361%" y="5316" width="0.2702%" height="15" fill="rgb(254,142,4)"/><text x="29.6861%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="29.4361%" y="5332" width="0.2702%" height="15" fill="rgb(230,229,49)"/><text x="29.6861%" y="5342.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="29.4361%" y="5348" width="0.2702%" height="15" fill="rgb(238,70,47)"/><text x="29.6861%" y="5358.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="29.7964%" y="5428" width="0.1441%" height="15" fill="rgb(231,160,17)"/><text x="30.0464%" y="5438.50"></text></g><g><title>infer_name (astroid/inference.py:201) (8 samples, 0.14%)</title><rect x="29.7964%" y="5444" width="0.1441%" height="15" fill="rgb(218,68,53)"/><text x="30.0464%" y="5454.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (13 samples, 0.23%)</title><rect x="29.7964%" y="5380" width="0.2342%" height="15" fill="rgb(236,111,10)"/><text x="30.0464%" y="5390.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="29.7964%" y="5396" width="0.2342%" height="15" fill="rgb(224,34,41)"/><text x="30.0464%" y="5406.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="29.7964%" y="5412" width="0.2342%" height="15" fill="rgb(241,118,19)"/><text x="30.0464%" y="5422.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="29.7964%" y="5348" width="0.2522%" height="15" fill="rgb(238,129,25)"/><text x="30.0464%" y="5358.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="29.7964%" y="5364" width="0.2522%" height="15" fill="rgb(238,22,31)"/><text x="30.0464%" y="5374.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (15 samples, 0.27%)</title><rect x="29.7964%" y="5300" width="0.2702%" height="15" fill="rgb(222,174,48)"/><text x="30.0464%" y="5310.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (15 samples, 0.27%)</title><rect x="29.7964%" y="5316" width="0.2702%" height="15" fill="rgb(206,152,40)"/><text x="30.0464%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:366) (15 samples, 0.27%)</title><rect x="29.7964%" y="5332" width="0.2702%" height="15" fill="rgb(218,99,54)"/><text x="30.0464%" y="5342.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (23 samples, 0.41%)</title><rect x="29.7064%" y="5236" width="0.4143%" height="15" fill="rgb(220,174,26)"/><text x="29.9564%" y="5246.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (23 samples, 0.41%)</title><rect x="29.7064%" y="5252" width="0.4143%" height="15" fill="rgb(245,116,9)"/><text x="29.9564%" y="5262.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (23 samples, 0.41%)</title><rect x="29.7064%" y="5268" width="0.4143%" height="15" fill="rgb(209,72,35)"/><text x="29.9564%" y="5278.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (18 samples, 0.32%)</title><rect x="29.7964%" y="5284" width="0.3243%" height="15" fill="rgb(226,126,21)"/><text x="30.0464%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (10 samples, 0.18%)</title><rect x="30.1928%" y="5524" width="0.1801%" height="15" fill="rgb(227,192,1)"/><text x="30.4428%" y="5534.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (9 samples, 0.16%)</title><rect x="30.2108%" y="5540" width="0.1621%" height="15" fill="rgb(237,180,29)"/><text x="30.4608%" y="5550.50"></text></g><g><title>do_import_module (astroid/mixins.py:96) (8 samples, 0.14%)</title><rect x="30.2288%" y="5556" width="0.1441%" height="15" fill="rgb(230,197,35)"/><text x="30.4788%" y="5566.50"></text></g><g><title>relative_to_absolute_name (astroid/scoped_nodes.py:721) (8 samples, 0.14%)</title><rect x="30.2288%" y="5572" width="0.1441%" height="15" fill="rgb(246,193,31)"/><text x="30.4788%" y="5582.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="30.1928%" y="5428" width="0.1982%" height="15" fill="rgb(241,36,4)"/><text x="30.4428%" y="5438.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="30.1928%" y="5444" width="0.1982%" height="15" fill="rgb(241,130,17)"/><text x="30.4428%" y="5454.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="30.1928%" y="5460" width="0.1982%" height="15" fill="rgb(206,137,32)"/><text x="30.4428%" y="5470.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="30.1928%" y="5476" width="0.1982%" height="15" fill="rgb(237,228,51)"/><text x="30.4428%" y="5486.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="30.1928%" y="5492" width="0.1982%" height="15" fill="rgb(243,6,42)"/><text x="30.4428%" y="5502.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="30.1928%" y="5508" width="0.1982%" height="15" fill="rgb(251,74,28)"/><text x="30.4428%" y="5518.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="30.1928%" y="5396" width="0.2162%" height="15" fill="rgb(218,20,49)"/><text x="30.4428%" y="5406.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="30.1928%" y="5412" width="0.2162%" height="15" fill="rgb(238,28,14)"/><text x="30.4428%" y="5422.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (6 samples, 0.11%)</title><rect x="30.4270%" y="5412" width="0.1081%" height="15" fill="rgb(229,40,46)"/><text x="30.6770%" y="5422.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (20 samples, 0.36%)</title><rect x="30.1928%" y="5316" width="0.3603%" height="15" fill="rgb(244,195,20)"/><text x="30.4428%" y="5326.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (20 samples, 0.36%)</title><rect x="30.1928%" y="5332" width="0.3603%" height="15" fill="rgb(253,56,35)"/><text x="30.4428%" y="5342.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="30.1928%" y="5348" width="0.3603%" height="15" fill="rgb(210,149,44)"/><text x="30.4428%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="30.1928%" y="5364" width="0.3603%" height="15" fill="rgb(240,135,12)"/><text x="30.4428%" y="5374.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="30.1928%" y="5380" width="0.3603%" height="15" fill="rgb(251,24,50)"/><text x="30.4428%" y="5390.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="30.4089%" y="5396" width="0.1441%" height="15" fill="rgb(243,200,47)"/><text x="30.6589%" y="5406.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (87 samples, 1.57%)</title><rect x="29.0038%" y="5028" width="1.5673%" height="15" fill="rgb(224,166,26)"/><text x="29.2538%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (87 samples, 1.57%)</title><rect x="29.0038%" y="5044" width="1.5673%" height="15" fill="rgb(233,0,47)"/><text x="29.2538%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (87 samples, 1.57%)</title><rect x="29.0038%" y="5060" width="1.5673%" height="15" fill="rgb(253,80,5)"/><text x="29.2538%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (87 samples, 1.57%)</title><rect x="29.0038%" y="5076" width="1.5673%" height="15" fill="rgb(214,133,25)"/><text x="29.2538%" y="5086.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (86 samples, 1.55%)</title><rect x="29.0218%" y="5092" width="1.5493%" height="15" fill="rgb(209,27,14)"/><text x="29.2718%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (86 samples, 1.55%)</title><rect x="29.0218%" y="5108" width="1.5493%" height="15" fill="rgb(219,102,51)"/><text x="29.2718%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (86 samples, 1.55%)</title><rect x="29.0218%" y="5124" width="1.5493%" height="15" fill="rgb(237,18,16)"/><text x="29.2718%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (86 samples, 1.55%)</title><rect x="29.0218%" y="5140" width="1.5493%" height="15" fill="rgb(241,85,17)"/><text x="29.2718%" y="5150.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (86 samples, 1.55%)</title><rect x="29.0218%" y="5156" width="1.5493%" height="15" fill="rgb(236,90,42)"/><text x="29.2718%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (86 samples, 1.55%)</title><rect x="29.0218%" y="5172" width="1.5493%" height="15" fill="rgb(249,57,21)"/><text x="29.2718%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (86 samples, 1.55%)</title><rect x="29.0218%" y="5188" width="1.5493%" height="15" fill="rgb(243,12,36)"/><text x="29.2718%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (86 samples, 1.55%)</title><rect x="29.0218%" y="5204" width="1.5493%" height="15" fill="rgb(253,128,47)"/><text x="29.2718%" y="5214.50"></text></g><g><title>infer_call (astroid/inference.py:229) (73 samples, 1.32%)</title><rect x="29.2560%" y="5220" width="1.3151%" height="15" fill="rgb(207,33,20)"/><text x="29.5060%" y="5230.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (22 samples, 0.40%)</title><rect x="30.1747%" y="5236" width="0.3963%" height="15" fill="rgb(233,215,35)"/><text x="30.4247%" y="5246.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (22 samples, 0.40%)</title><rect x="30.1747%" y="5252" width="0.3963%" height="15" fill="rgb(249,188,52)"/><text x="30.4247%" y="5262.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (21 samples, 0.38%)</title><rect x="30.1928%" y="5268" width="0.3783%" height="15" fill="rgb(225,12,32)"/><text x="30.4428%" y="5278.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (21 samples, 0.38%)</title><rect x="30.1928%" y="5284" width="0.3783%" height="15" fill="rgb(247,98,14)"/><text x="30.4428%" y="5294.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (21 samples, 0.38%)</title><rect x="30.1928%" y="5300" width="0.3783%" height="15" fill="rgb(247,219,48)"/><text x="30.4428%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="30.6071%" y="5124" width="0.1441%" height="15" fill="rgb(253,60,48)"/><text x="30.8571%" y="5134.50"></text></g><g><title>infer_name (astroid/inference.py:199) (8 samples, 0.14%)</title><rect x="30.6071%" y="5140" width="0.1441%" height="15" fill="rgb(245,15,52)"/><text x="30.8571%" y="5150.50"></text></g><g><title>copy_context (astroid/context.py:148) (8 samples, 0.14%)</title><rect x="30.6071%" y="5156" width="0.1441%" height="15" fill="rgb(220,133,28)"/><text x="30.8571%" y="5166.50"></text></g><g><title>clone (astroid/context.py:106) (8 samples, 0.14%)</title><rect x="30.6071%" y="5172" width="0.1441%" height="15" fill="rgb(217,180,4)"/><text x="30.8571%" y="5182.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="30.6071%" y="5076" width="0.2162%" height="15" fill="rgb(251,24,1)"/><text x="30.8571%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="30.6071%" y="5092" width="0.2162%" height="15" fill="rgb(212,185,49)"/><text x="30.8571%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="30.6071%" y="5108" width="0.2162%" height="15" fill="rgb(215,175,22)"/><text x="30.8571%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="30.8953%" y="5332" width="0.1081%" height="15" fill="rgb(250,205,14)"/><text x="31.1453%" y="5342.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="30.8773%" y="5220" width="0.1441%" height="15" fill="rgb(225,211,22)"/><text x="31.1273%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="30.8773%" y="5236" width="0.1441%" height="15" fill="rgb(251,179,42)"/><text x="31.1273%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="30.8773%" y="5252" width="0.1441%" height="15" fill="rgb(208,216,51)"/><text x="31.1273%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="30.8953%" y="5268" width="0.1261%" height="15" fill="rgb(235,36,11)"/><text x="31.1453%" y="5278.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="30.8953%" y="5284" width="0.1261%" height="15" fill="rgb(213,189,28)"/><text x="31.1453%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="30.8953%" y="5300" width="0.1261%" height="15" fill="rgb(227,203,42)"/><text x="31.1453%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="30.8953%" y="5316" width="0.1261%" height="15" fill="rgb(244,72,36)"/><text x="31.1453%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="30.8593%" y="5188" width="0.1801%" height="15" fill="rgb(213,53,17)"/><text x="31.1093%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="30.8773%" y="5204" width="0.1621%" height="15" fill="rgb(207,167,3)"/><text x="31.1273%" y="5214.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (17 samples, 0.31%)</title><rect x="30.8593%" y="5156" width="0.3063%" height="15" fill="rgb(216,98,30)"/><text x="31.1093%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="30.8593%" y="5172" width="0.3063%" height="15" fill="rgb(236,123,15)"/><text x="31.1093%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="31.0395%" y="5188" width="0.1261%" height="15" fill="rgb(248,81,50)"/><text x="31.2895%" y="5198.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="31.0395%" y="5204" width="0.1261%" height="15" fill="rgb(214,120,4)"/><text x="31.2895%" y="5214.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (37 samples, 0.67%)</title><rect x="30.6071%" y="5060" width="0.6665%" height="15" fill="rgb(208,179,34)"/><text x="30.8571%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (25 samples, 0.45%)</title><rect x="30.8233%" y="5076" width="0.4504%" height="15" fill="rgb(227,140,7)"/><text x="31.0733%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (24 samples, 0.43%)</title><rect x="30.8413%" y="5092" width="0.4324%" height="15" fill="rgb(214,22,6)"/><text x="31.0913%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="30.8593%" y="5108" width="0.4143%" height="15" fill="rgb(207,137,27)"/><text x="31.1093%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="30.8593%" y="5124" width="0.4143%" height="15" fill="rgb(210,8,46)"/><text x="31.1093%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="30.8593%" y="5140" width="0.4143%" height="15" fill="rgb(240,16,54)"/><text x="31.1093%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="31.1656%" y="5156" width="0.1081%" height="15" fill="rgb(211,209,29)"/><text x="31.4156%" y="5166.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (40 samples, 0.72%)</title><rect x="30.5711%" y="5028" width="0.7206%" height="15" fill="rgb(226,228,24)"/><text x="30.8211%" y="5038.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (40 samples, 0.72%)</title><rect x="30.5711%" y="5044" width="0.7206%" height="15" fill="rgb(222,84,9)"/><text x="30.8211%" y="5054.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="31.3637%" y="5092" width="0.1081%" height="15" fill="rgb(234,203,30)"/><text x="31.6137%" y="5102.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (13 samples, 0.23%)</title><rect x="31.3637%" y="5076" width="0.2342%" height="15" fill="rgb(238,109,14)"/><text x="31.6137%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="31.4718%" y="5092" width="0.1261%" height="15" fill="rgb(233,206,34)"/><text x="31.7218%" y="5102.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="31.4718%" y="5108" width="0.1261%" height="15" fill="rgb(220,167,47)"/><text x="31.7218%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="31.4718%" y="5124" width="0.1261%" height="15" fill="rgb(238,105,10)"/><text x="31.7218%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="31.4898%" y="5140" width="0.1081%" height="15" fill="rgb(213,227,17)"/><text x="31.7398%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="31.4898%" y="5156" width="0.1081%" height="15" fill="rgb(217,132,38)"/><text x="31.7398%" y="5166.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="31.5979%" y="5172" width="0.1081%" height="15" fill="rgb(242,146,4)"/><text x="31.8479%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="31.5979%" y="5188" width="0.1081%" height="15" fill="rgb(212,61,9)"/><text x="31.8479%" y="5198.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="31.7060%" y="5172" width="0.1081%" height="15" fill="rgb(247,126,22)"/><text x="31.9560%" y="5182.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (13 samples, 0.23%)</title><rect x="31.5979%" y="5092" width="0.2342%" height="15" fill="rgb(220,196,2)"/><text x="31.8479%" y="5102.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (13 samples, 0.23%)</title><rect x="31.5979%" y="5108" width="0.2342%" height="15" fill="rgb(208,46,4)"/><text x="31.8479%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:366) (13 samples, 0.23%)</title><rect x="31.5979%" y="5124" width="0.2342%" height="15" fill="rgb(252,104,46)"/><text x="31.8479%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="31.5979%" y="5140" width="0.2342%" height="15" fill="rgb(237,152,48)"/><text x="31.8479%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="31.5979%" y="5156" width="0.2342%" height="15" fill="rgb(221,59,37)"/><text x="31.8479%" y="5166.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (40 samples, 0.72%)</title><rect x="31.2917%" y="5060" width="0.7206%" height="15" fill="rgb(209,202,51)"/><text x="31.5417%" y="5070.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (23 samples, 0.41%)</title><rect x="31.5979%" y="5076" width="0.4143%" height="15" fill="rgb(228,81,30)"/><text x="31.8479%" y="5086.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (44 samples, 0.79%)</title><rect x="31.2917%" y="5028" width="0.7926%" height="15" fill="rgb(227,42,39)"/><text x="31.5417%" y="5038.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (44 samples, 0.79%)</title><rect x="31.2917%" y="5044" width="0.7926%" height="15" fill="rgb(221,26,2)"/><text x="31.5417%" y="5054.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (14 samples, 0.25%)</title><rect x="32.0843%" y="5044" width="0.2522%" height="15" fill="rgb(254,61,31)"/><text x="32.3343%" y="5054.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (14 samples, 0.25%)</title><rect x="32.0843%" y="5060" width="0.2522%" height="15" fill="rgb(222,173,38)"/><text x="32.3343%" y="5070.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="32.1384%" y="5076" width="0.1982%" height="15" fill="rgb(218,50,12)"/><text x="32.3884%" y="5086.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (11 samples, 0.20%)</title><rect x="32.1384%" y="5092" width="0.1982%" height="15" fill="rgb(223,88,40)"/><text x="32.3884%" y="5102.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="32.2284%" y="5108" width="0.1081%" height="15" fill="rgb(237,54,19)"/><text x="32.4784%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="32.2284%" y="5124" width="0.1081%" height="15" fill="rgb(251,129,25)"/><text x="32.4784%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="32.2284%" y="5140" width="0.1081%" height="15" fill="rgb(238,97,19)"/><text x="32.4784%" y="5150.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (11 samples, 0.20%)</title><rect x="32.3365%" y="5044" width="0.1982%" height="15" fill="rgb(240,169,18)"/><text x="32.5865%" y="5054.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (10 samples, 0.18%)</title><rect x="32.3545%" y="5060" width="0.1801%" height="15" fill="rgb(230,187,49)"/><text x="32.6045%" y="5070.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (6 samples, 0.11%)</title><rect x="32.4266%" y="5076" width="0.1081%" height="15" fill="rgb(209,44,26)"/><text x="32.6766%" y="5086.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (26 samples, 0.47%)</title><rect x="32.0843%" y="5028" width="0.4684%" height="15" fill="rgb(244,0,6)"/><text x="32.3343%" y="5038.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (8 samples, 0.14%)</title><rect x="32.6788%" y="5092" width="0.1441%" height="15" fill="rgb(248,18,21)"/><text x="32.9288%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (264 samples, 4.76%)</title><rect x="28.1030%" y="4980" width="4.7559%" height="15" fill="rgb(245,180,19)"/><text x="28.3530%" y="4990.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (264 samples, 4.76%)</title><rect x="28.1030%" y="4996" width="4.7559%" height="15" fill="rgb(252,118,36)"/><text x="28.3530%" y="5006.50">wrappe..</text></g><g><title>infer_call (astroid/inference.py:229) (217 samples, 3.91%)</title><rect x="28.9497%" y="5012" width="3.9092%" height="15" fill="rgb(210,224,19)"/><text x="29.1997%" y="5022.50">infe..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (16 samples, 0.29%)</title><rect x="32.5707%" y="5028" width="0.2882%" height="15" fill="rgb(218,30,24)"/><text x="32.8207%" y="5038.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (16 samples, 0.29%)</title><rect x="32.5707%" y="5044" width="0.2882%" height="15" fill="rgb(219,75,50)"/><text x="32.8207%" y="5054.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (16 samples, 0.29%)</title><rect x="32.5707%" y="5060" width="0.2882%" height="15" fill="rgb(234,72,50)"/><text x="32.8207%" y="5070.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (13 samples, 0.23%)</title><rect x="32.6248%" y="5076" width="0.2342%" height="15" fill="rgb(219,100,48)"/><text x="32.8748%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (763 samples, 13.75%)</title><rect x="19.3479%" y="4676" width="13.7453%" height="15" fill="rgb(253,5,41)"/><text x="19.5979%" y="4686.50">infer (astroid/node_c..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (763 samples, 13.75%)</title><rect x="19.3479%" y="4692" width="13.7453%" height="15" fill="rgb(247,181,11)"/><text x="19.5979%" y="4702.50">raise_if_nothing_infe..</text></g><g><title>wrapped (astroid/decorators.py:99) (763 samples, 13.75%)</title><rect x="19.3479%" y="4708" width="13.7453%" height="15" fill="rgb(222,223,25)"/><text x="19.5979%" y="4718.50">wrapped (astroid/deco..</text></g><g><title>infer_attribute (astroid/inference.py:316) (762 samples, 13.73%)</title><rect x="19.3659%" y="4724" width="13.7273%" height="15" fill="rgb(214,198,28)"/><text x="19.6159%" y="4734.50">infer_attribute (astr..</text></g><g><title>igetattr (astroid/bases.py:233) (762 samples, 13.73%)</title><rect x="19.3659%" y="4740" width="13.7273%" height="15" fill="rgb(230,46,43)"/><text x="19.6159%" y="4750.50">igetattr (astroid/bas..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (762 samples, 13.73%)</title><rect x="19.3659%" y="4756" width="13.7273%" height="15" fill="rgb(233,65,53)"/><text x="19.6159%" y="4766.50">_wrap_attr (astroid/b..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (762 samples, 13.73%)</title><rect x="19.3659%" y="4772" width="13.7273%" height="15" fill="rgb(221,121,27)"/><text x="19.6159%" y="4782.50">igetattr (astroid/sco..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (762 samples, 13.73%)</title><rect x="19.3659%" y="4788" width="13.7273%" height="15" fill="rgb(247,70,47)"/><text x="19.6159%" y="4798.50">infer_call_result (as..</text></g><g><title>infer (astroid/node_classes.py:380) (762 samples, 13.73%)</title><rect x="19.3659%" y="4804" width="13.7273%" height="15" fill="rgb(228,85,35)"/><text x="19.6159%" y="4814.50">infer (astroid/node_c..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (759 samples, 13.67%)</title><rect x="19.4199%" y="4820" width="13.6732%" height="15" fill="rgb(209,50,18)"/><text x="19.6699%" y="4830.50">raise_if_nothing_infe..</text></g><g><title>wrapped (astroid/decorators.py:99) (759 samples, 13.67%)</title><rect x="19.4199%" y="4836" width="13.6732%" height="15" fill="rgb(250,19,35)"/><text x="19.6699%" y="4846.50">wrapped (astroid/deco..</text></g><g><title>infer_call (astroid/inference.py:229) (756 samples, 13.62%)</title><rect x="19.4740%" y="4852" width="13.6192%" height="15" fill="rgb(253,107,29)"/><text x="19.7240%" y="4862.50">infer_call (astroid/i..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (756 samples, 13.62%)</title><rect x="19.4740%" y="4868" width="13.6192%" height="15" fill="rgb(252,179,29)"/><text x="19.7240%" y="4878.50">infer_call_result (as..</text></g><g><title>infer (astroid/node_classes.py:380) (756 samples, 13.62%)</title><rect x="19.4740%" y="4884" width="13.6192%" height="15" fill="rgb(238,194,6)"/><text x="19.7240%" y="4894.50">infer (astroid/node_c..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (291 samples, 5.24%)</title><rect x="27.8508%" y="4900" width="5.2423%" height="15" fill="rgb(238,164,29)"/><text x="28.1008%" y="4910.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (289 samples, 5.21%)</title><rect x="27.8869%" y="4916" width="5.2063%" height="15" fill="rgb(224,25,9)"/><text x="28.1369%" y="4926.50">wrappe..</text></g><g><title>infer_call (astroid/inference.py:229) (283 samples, 5.10%)</title><rect x="27.9950%" y="4932" width="5.0982%" height="15" fill="rgb(244,153,23)"/><text x="28.2450%" y="4942.50">infer_..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (278 samples, 5.01%)</title><rect x="28.0850%" y="4948" width="5.0081%" height="15" fill="rgb(212,203,14)"/><text x="28.3350%" y="4958.50">infer_..</text></g><g><title>infer (astroid/node_classes.py:380) (277 samples, 4.99%)</title><rect x="28.1030%" y="4964" width="4.9901%" height="15" fill="rgb(220,164,20)"/><text x="28.3530%" y="4974.50">infer ..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (13 samples, 0.23%)</title><rect x="32.8589%" y="4980" width="0.2342%" height="15" fill="rgb(222,203,48)"/><text x="33.1089%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="32.8770%" y="4996" width="0.2162%" height="15" fill="rgb(215,159,22)"/><text x="33.1270%" y="5006.50"></text></g><g><title>infer_call (astroid/inference.py:229) (8 samples, 0.14%)</title><rect x="32.9490%" y="5012" width="0.1441%" height="15" fill="rgb(216,183,47)"/><text x="33.1990%" y="5022.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (7 samples, 0.13%)</title><rect x="32.9670%" y="5028" width="0.1261%" height="15" fill="rgb(229,195,25)"/><text x="33.2170%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="32.9670%" y="5044" width="0.1261%" height="15" fill="rgb(224,132,51)"/><text x="33.2170%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="32.9670%" y="5060" width="0.1261%" height="15" fill="rgb(240,63,7)"/><text x="33.2170%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="32.9670%" y="5076" width="0.1261%" height="15" fill="rgb(249,182,41)"/><text x="33.2170%" y="5086.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="32.9670%" y="5092" width="0.1261%" height="15" fill="rgb(243,47,26)"/><text x="33.2170%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="32.9670%" y="5108" width="0.1261%" height="15" fill="rgb(233,48,2)"/><text x="33.2170%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="32.9670%" y="5124" width="0.1261%" height="15" fill="rgb(244,165,34)"/><text x="33.2170%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="32.9670%" y="5140" width="0.1261%" height="15" fill="rgb(207,89,7)"/><text x="33.2170%" y="5150.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="32.9670%" y="5156" width="0.1261%" height="15" fill="rgb(244,117,36)"/><text x="33.2170%" y="5166.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (764 samples, 13.76%)</title><rect x="19.3479%" y="4660" width="13.7633%" height="15" fill="rgb(226,144,34)"/><text x="19.5979%" y="4670.50">infer_attribute (astr..</text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="33.2733%" y="4756" width="0.1441%" height="15" fill="rgb(213,23,19)"/><text x="33.5233%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="33.5615%" y="5012" width="0.1441%" height="15" fill="rgb(217,75,12)"/><text x="33.8115%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="33.5435%" y="4868" width="0.1801%" height="15" fill="rgb(224,159,17)"/><text x="33.7935%" y="4878.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="33.5435%" y="4884" width="0.1801%" height="15" fill="rgb(217,118,1)"/><text x="33.7935%" y="4894.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="33.5435%" y="4900" width="0.1801%" height="15" fill="rgb(232,180,48)"/><text x="33.7935%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="33.5435%" y="4916" width="0.1801%" height="15" fill="rgb(230,27,33)"/><text x="33.7935%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="33.5435%" y="4932" width="0.1801%" height="15" fill="rgb(205,31,21)"/><text x="33.7935%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="33.5435%" y="4948" width="0.1801%" height="15" fill="rgb(253,59,4)"/><text x="33.7935%" y="4958.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="33.5615%" y="4964" width="0.1621%" height="15" fill="rgb(224,201,9)"/><text x="33.8115%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="33.5615%" y="4980" width="0.1621%" height="15" fill="rgb(229,206,30)"/><text x="33.8115%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="33.5615%" y="4996" width="0.1621%" height="15" fill="rgb(212,67,47)"/><text x="33.8115%" y="5006.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (17 samples, 0.31%)</title><rect x="33.4895%" y="4836" width="0.3063%" height="15" fill="rgb(211,96,50)"/><text x="33.7395%" y="4846.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="33.5435%" y="4852" width="0.2522%" height="15" fill="rgb(252,114,18)"/><text x="33.7935%" y="4862.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="33.4174%" y="4804" width="0.4504%" height="15" fill="rgb(223,58,37)"/><text x="33.6674%" y="4814.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="33.4174%" y="4820" width="0.4504%" height="15" fill="rgb(237,70,4)"/><text x="33.6674%" y="4830.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (26 samples, 0.47%)</title><rect x="33.4174%" y="4772" width="0.4684%" height="15" fill="rgb(244,85,46)"/><text x="33.6674%" y="4782.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="33.4174%" y="4788" width="0.4684%" height="15" fill="rgb(223,39,52)"/><text x="33.6674%" y="4798.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (9 samples, 0.16%)</title><rect x="34.0479%" y="4916" width="0.1621%" height="15" fill="rgb(218,200,14)"/><text x="34.2979%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="34.0479%" y="4932" width="0.1621%" height="15" fill="rgb(208,171,16)"/><text x="34.2979%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="34.0479%" y="4948" width="0.1621%" height="15" fill="rgb(234,200,18)"/><text x="34.2979%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="34.0659%" y="4964" width="0.1441%" height="15" fill="rgb(228,45,11)"/><text x="34.3159%" y="4974.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (27 samples, 0.49%)</title><rect x="33.9218%" y="4852" width="0.4864%" height="15" fill="rgb(237,182,11)"/><text x="34.1718%" y="4862.50"></text></g><g><title>infer (astroid/node_classes.py:380) (25 samples, 0.45%)</title><rect x="33.9578%" y="4868" width="0.4504%" height="15" fill="rgb(241,175,49)"/><text x="34.2078%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="33.9578%" y="4884" width="0.4504%" height="15" fill="rgb(247,38,35)"/><text x="34.2078%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="34.0479%" y="4900" width="0.3603%" height="15" fill="rgb(228,39,49)"/><text x="34.2979%" y="4910.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="34.2101%" y="4916" width="0.1982%" height="15" fill="rgb(226,101,26)"/><text x="34.4601%" y="4926.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="34.2281%" y="4932" width="0.1801%" height="15" fill="rgb(206,141,19)"/><text x="34.4781%" y="4942.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (10 samples, 0.18%)</title><rect x="34.4262%" y="4868" width="0.1801%" height="15" fill="rgb(211,200,13)"/><text x="34.6762%" y="4878.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:598) (9 samples, 0.16%)</title><rect x="34.4442%" y="4884" width="0.1621%" height="15" fill="rgb(241,121,6)"/><text x="34.6942%" y="4894.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (8 samples, 0.14%)</title><rect x="34.4623%" y="4900" width="0.1441%" height="15" fill="rgb(234,221,29)"/><text x="34.7123%" y="4910.50"></text></g><g><title>__init__ (astroid/exceptions.py:36) (7 samples, 0.13%)</title><rect x="34.4803%" y="4916" width="0.1261%" height="15" fill="rgb(229,136,5)"/><text x="34.7303%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (48 samples, 0.86%)</title><rect x="33.9038%" y="4820" width="0.8647%" height="15" fill="rgb(238,36,11)"/><text x="34.1538%" y="4830.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (47 samples, 0.85%)</title><rect x="33.9218%" y="4836" width="0.8467%" height="15" fill="rgb(251,55,41)"/><text x="34.1718%" y="4846.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (20 samples, 0.36%)</title><rect x="34.4082%" y="4852" width="0.3603%" height="15" fill="rgb(242,34,40)"/><text x="34.6582%" y="4862.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (9 samples, 0.16%)</title><rect x="34.6064%" y="4868" width="0.1621%" height="15" fill="rgb(215,42,17)"/><text x="34.8564%" y="4878.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (9 samples, 0.16%)</title><rect x="34.6064%" y="4884" width="0.1621%" height="15" fill="rgb(207,44,46)"/><text x="34.8564%" y="4894.50"></text></g><g><title>__repr__ (astroid/node_classes.py:432) (8 samples, 0.14%)</title><rect x="34.6244%" y="4900" width="0.1441%" height="15" fill="rgb(211,206,28)"/><text x="34.8744%" y="4910.50"></text></g><g><title>_repr_name (astroid/node_classes.py:401) (8 samples, 0.14%)</title><rect x="34.6244%" y="4916" width="0.1441%" height="15" fill="rgb(237,167,16)"/><text x="34.8744%" y="4926.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (80 samples, 1.44%)</title><rect x="33.4174%" y="4756" width="1.4412%" height="15" fill="rgb(233,66,6)"/><text x="33.6674%" y="4766.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (54 samples, 0.97%)</title><rect x="33.8858%" y="4772" width="0.9728%" height="15" fill="rgb(246,123,29)"/><text x="34.1358%" y="4782.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (53 samples, 0.95%)</title><rect x="33.9038%" y="4788" width="0.9548%" height="15" fill="rgb(209,62,40)"/><text x="34.1538%" y="4798.50"></text></g><g><title>infer (astroid/node_classes.py:380) (53 samples, 0.95%)</title><rect x="33.9038%" y="4804" width="0.9548%" height="15" fill="rgb(218,4,25)"/><text x="34.1538%" y="4814.50"></text></g><g><title>getattr (astroid/bases.py:182) (96 samples, 1.73%)</title><rect x="33.1472%" y="4692" width="1.7294%" height="15" fill="rgb(253,91,49)"/><text x="33.3972%" y="4702.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (96 samples, 1.73%)</title><rect x="33.1472%" y="4708" width="1.7294%" height="15" fill="rgb(228,155,29)"/><text x="33.3972%" y="4718.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (96 samples, 1.73%)</title><rect x="33.1472%" y="4724" width="1.7294%" height="15" fill="rgb(243,57,37)"/><text x="33.3972%" y="4734.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (91 samples, 1.64%)</title><rect x="33.2373%" y="4740" width="1.6393%" height="15" fill="rgb(244,167,17)"/><text x="33.4873%" y="4750.50"></text></g><g><title>getattr (astroid/bases.py:184) (13 samples, 0.23%)</title><rect x="34.8766%" y="4692" width="0.2342%" height="15" fill="rgb(207,181,38)"/><text x="35.1266%" y="4702.50"></text></g><g><title>__get__ (astroid/util.py:21) (13 samples, 0.23%)</title><rect x="34.8766%" y="4708" width="0.2342%" height="15" fill="rgb(211,8,23)"/><text x="35.1266%" y="4718.50"></text></g><g><title>__get__ (astroid/interpreter/objectmodel.py:102) (12 samples, 0.22%)</title><rect x="34.8946%" y="4724" width="0.2162%" height="15" fill="rgb(235,11,44)"/><text x="35.1446%" y="4734.50"></text></g><g><title>igetattr (astroid/bases.py:221) (110 samples, 1.98%)</title><rect x="33.1472%" y="4676" width="1.9816%" height="15" fill="rgb(248,18,52)"/><text x="33.3972%" y="4686.50">i..</text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="35.2189%" y="4916" width="0.1982%" height="15" fill="rgb(208,4,7)"/><text x="35.4689%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="35.2189%" y="4932" width="0.1982%" height="15" fill="rgb(240,17,39)"/><text x="35.4689%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="35.2189%" y="4948" width="0.1982%" height="15" fill="rgb(207,170,3)"/><text x="35.4689%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="35.2369%" y="4964" width="0.1801%" height="15" fill="rgb(236,100,52)"/><text x="35.4869%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="35.2189%" y="4868" width="0.2522%" height="15" fill="rgb(246,78,51)"/><text x="35.4689%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="35.2189%" y="4884" width="0.2522%" height="15" fill="rgb(211,17,15)"/><text x="35.4689%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="35.2189%" y="4900" width="0.2522%" height="15" fill="rgb(209,59,46)"/><text x="35.4689%" y="4910.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (20 samples, 0.36%)</title><rect x="35.1468%" y="4756" width="0.3603%" height="15" fill="rgb(210,92,25)"/><text x="35.3968%" y="4766.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (17 samples, 0.31%)</title><rect x="35.2009%" y="4772" width="0.3063%" height="15" fill="rgb(238,174,52)"/><text x="35.4509%" y="4782.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (16 samples, 0.29%)</title><rect x="35.2189%" y="4788" width="0.2882%" height="15" fill="rgb(230,73,7)"/><text x="35.4689%" y="4798.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="35.2189%" y="4804" width="0.2882%" height="15" fill="rgb(243,124,40)"/><text x="35.4689%" y="4814.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="35.2189%" y="4820" width="0.2882%" height="15" fill="rgb(244,170,11)"/><text x="35.4689%" y="4830.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="35.2189%" y="4836" width="0.2882%" height="15" fill="rgb(207,114,54)"/><text x="35.4689%" y="4846.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (16 samples, 0.29%)</title><rect x="35.2189%" y="4852" width="0.2882%" height="15" fill="rgb(205,42,20)"/><text x="35.4689%" y="4862.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (9 samples, 0.16%)</title><rect x="35.5251%" y="4772" width="0.1621%" height="15" fill="rgb(230,30,28)"/><text x="35.7751%" y="4782.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="35.6873%" y="4804" width="0.1081%" height="15" fill="rgb(205,73,54)"/><text x="35.9373%" y="4814.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="35.6873%" y="4820" width="0.1081%" height="15" fill="rgb(254,227,23)"/><text x="35.9373%" y="4830.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="35.6873%" y="4836" width="0.1081%" height="15" fill="rgb(228,202,34)"/><text x="35.9373%" y="4846.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="35.6873%" y="4852" width="0.1081%" height="15" fill="rgb(222,225,37)"/><text x="35.9373%" y="4862.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (13 samples, 0.23%)</title><rect x="35.6873%" y="4788" width="0.2342%" height="15" fill="rgb(221,14,54)"/><text x="35.9373%" y="4798.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (7 samples, 0.13%)</title><rect x="35.7954%" y="4804" width="0.1261%" height="15" fill="rgb(254,102,2)"/><text x="36.0454%" y="4814.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (52 samples, 0.94%)</title><rect x="35.1288%" y="4708" width="0.9368%" height="15" fill="rgb(232,104,17)"/><text x="35.3788%" y="4718.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (52 samples, 0.94%)</title><rect x="35.1288%" y="4724" width="0.9368%" height="15" fill="rgb(250,220,14)"/><text x="35.3788%" y="4734.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (52 samples, 0.94%)</title><rect x="35.1288%" y="4740" width="0.9368%" height="15" fill="rgb(241,158,9)"/><text x="35.3788%" y="4750.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (31 samples, 0.56%)</title><rect x="35.5071%" y="4756" width="0.5585%" height="15" fill="rgb(246,9,43)"/><text x="35.7571%" y="4766.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (21 samples, 0.38%)</title><rect x="35.6873%" y="4772" width="0.3783%" height="15" fill="rgb(206,73,33)"/><text x="35.9373%" y="4782.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (8 samples, 0.14%)</title><rect x="35.9215%" y="4788" width="0.1441%" height="15" fill="rgb(222,79,8)"/><text x="36.1715%" y="4798.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="35.9575%" y="4804" width="0.1081%" height="15" fill="rgb(234,8,54)"/><text x="36.2075%" y="4814.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="35.9575%" y="4820" width="0.1081%" height="15" fill="rgb(209,134,38)"/><text x="36.2075%" y="4830.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (19 samples, 0.34%)</title><rect x="36.0656%" y="4708" width="0.3423%" height="15" fill="rgb(230,127,29)"/><text x="36.3156%" y="4718.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2507) (11 samples, 0.20%)</title><rect x="36.2097%" y="4724" width="0.1982%" height="15" fill="rgb(242,44,41)"/><text x="36.4597%" y="4734.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2577) (22 samples, 0.40%)</title><rect x="36.4079%" y="4708" width="0.3963%" height="15" fill="rgb(222,56,43)"/><text x="36.6579%" y="4718.50"></text></g><g><title><listcomp> (astroid/scoped_nodes.py:2580) (21 samples, 0.38%)</title><rect x="36.4259%" y="4724" width="0.3783%" height="15" fill="rgb(238,39,47)"/><text x="36.6759%" y="4734.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="37.0023%" y="4948" width="0.1081%" height="15" fill="rgb(226,79,43)"/><text x="37.2523%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="37.0023%" y="4964" width="0.1081%" height="15" fill="rgb(242,105,53)"/><text x="37.2523%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="37.0023%" y="4980" width="0.1081%" height="15" fill="rgb(251,132,46)"/><text x="37.2523%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="37.0023%" y="4996" width="0.1081%" height="15" fill="rgb(231,77,14)"/><text x="37.2523%" y="5006.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="37.0023%" y="5012" width="0.1081%" height="15" fill="rgb(240,135,9)"/><text x="37.2523%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="37.0023%" y="5028" width="0.1081%" height="15" fill="rgb(248,109,14)"/><text x="37.2523%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="37.0023%" y="5044" width="0.1081%" height="15" fill="rgb(227,146,52)"/><text x="37.2523%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="37.0023%" y="5060" width="0.1081%" height="15" fill="rgb(232,54,3)"/><text x="37.2523%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="37.1104%" y="4996" width="0.1081%" height="15" fill="rgb(229,201,43)"/><text x="37.3604%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="37.1104%" y="5012" width="0.1081%" height="15" fill="rgb(252,161,33)"/><text x="37.3604%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="37.1104%" y="5028" width="0.1081%" height="15" fill="rgb(226,146,40)"/><text x="37.3604%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="37.1104%" y="5044" width="0.1081%" height="15" fill="rgb(219,47,25)"/><text x="37.3604%" y="5054.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="37.1104%" y="5060" width="0.1081%" height="15" fill="rgb(250,135,13)"/><text x="37.3604%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="37.1104%" y="5076" width="0.1081%" height="15" fill="rgb(219,229,18)"/><text x="37.3604%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="37.1104%" y="5092" width="0.1081%" height="15" fill="rgb(217,152,27)"/><text x="37.3604%" y="5102.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (10 samples, 0.18%)</title><rect x="37.1104%" y="4964" width="0.1801%" height="15" fill="rgb(225,71,47)"/><text x="37.3604%" y="4974.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (10 samples, 0.18%)</title><rect x="37.1104%" y="4980" width="0.1801%" height="15" fill="rgb(220,139,14)"/><text x="37.3604%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (7 samples, 0.13%)</title><rect x="37.3086%" y="4964" width="0.1261%" height="15" fill="rgb(247,54,32)"/><text x="37.5586%" y="4974.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (6 samples, 0.11%)</title><rect x="37.3266%" y="4980" width="0.1081%" height="15" fill="rgb(252,131,39)"/><text x="37.5766%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (26 samples, 0.47%)</title><rect x="37.0023%" y="4804" width="0.4684%" height="15" fill="rgb(210,108,39)"/><text x="37.2523%" y="4814.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="37.0023%" y="4820" width="0.4684%" height="15" fill="rgb(205,23,29)"/><text x="37.2523%" y="4830.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="37.0023%" y="4836" width="0.4684%" height="15" fill="rgb(246,139,46)"/><text x="37.2523%" y="4846.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="37.0023%" y="4852" width="0.4684%" height="15" fill="rgb(250,81,26)"/><text x="37.2523%" y="4862.50"></text></g><g><title>infer_call (astroid/inference.py:229) (26 samples, 0.47%)</title><rect x="37.0023%" y="4868" width="0.4684%" height="15" fill="rgb(214,104,7)"/><text x="37.2523%" y="4878.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (26 samples, 0.47%)</title><rect x="37.0023%" y="4884" width="0.4684%" height="15" fill="rgb(233,189,8)"/><text x="37.2523%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="37.0023%" y="4900" width="0.4684%" height="15" fill="rgb(228,141,17)"/><text x="37.2523%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="37.0023%" y="4916" width="0.4684%" height="15" fill="rgb(247,157,1)"/><text x="37.2523%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="37.0023%" y="4932" width="0.4684%" height="15" fill="rgb(249,225,5)"/><text x="37.2523%" y="4942.50"></text></g><g><title>infer_call (astroid/inference.py:229) (20 samples, 0.36%)</title><rect x="37.1104%" y="4948" width="0.3603%" height="15" fill="rgb(242,55,13)"/><text x="37.3604%" y="4958.50"></text></g><g><title>infer_call (astroid/inference.py:229) (27 samples, 0.49%)</title><rect x="37.0023%" y="4788" width="0.4864%" height="15" fill="rgb(230,49,50)"/><text x="37.2523%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="36.9123%" y="4756" width="0.5945%" height="15" fill="rgb(241,111,38)"/><text x="37.1623%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="36.9123%" y="4772" width="0.5945%" height="15" fill="rgb(252,155,4)"/><text x="37.1623%" y="4782.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="37.6869%" y="5012" width="0.1261%" height="15" fill="rgb(212,69,32)"/><text x="37.9369%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="37.7049%" y="5028" width="0.1081%" height="15" fill="rgb(243,107,47)"/><text x="37.9549%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="37.7049%" y="5044" width="0.1081%" height="15" fill="rgb(247,130,12)"/><text x="37.9549%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="37.7049%" y="5060" width="0.1081%" height="15" fill="rgb(233,74,16)"/><text x="37.9549%" y="5070.50"></text></g><g><title>infer_call (astroid/inference.py:223) (10 samples, 0.18%)</title><rect x="37.6689%" y="4948" width="0.1801%" height="15" fill="rgb(208,58,18)"/><text x="37.9189%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="37.6869%" y="4964" width="0.1621%" height="15" fill="rgb(242,225,1)"/><text x="37.9369%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="37.6869%" y="4980" width="0.1621%" height="15" fill="rgb(249,39,40)"/><text x="37.9369%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="37.6869%" y="4996" width="0.1621%" height="15" fill="rgb(207,72,44)"/><text x="37.9369%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="37.8671%" y="5028" width="0.1441%" height="15" fill="rgb(215,193,12)"/><text x="38.1171%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="37.8851%" y="5044" width="0.1261%" height="15" fill="rgb(248,41,39)"/><text x="38.1351%" y="5054.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="37.8671%" y="4996" width="0.1621%" height="15" fill="rgb(253,85,4)"/><text x="38.1171%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="37.8671%" y="5012" width="0.1621%" height="15" fill="rgb(243,70,31)"/><text x="38.1171%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="38.0652%" y="5044" width="0.1081%" height="15" fill="rgb(253,195,26)"/><text x="38.3152%" y="5054.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="38.0472%" y="5012" width="0.1982%" height="15" fill="rgb(243,42,11)"/><text x="38.2972%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="38.0652%" y="5028" width="0.1801%" height="15" fill="rgb(239,66,17)"/><text x="38.3152%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="38.2814%" y="5060" width="0.1261%" height="15" fill="rgb(217,132,21)"/><text x="38.5314%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="38.2994%" y="5076" width="0.1081%" height="15" fill="rgb(252,202,21)"/><text x="38.5494%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="38.2814%" y="5028" width="0.1621%" height="15" fill="rgb(233,98,36)"/><text x="38.5314%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="38.2814%" y="5044" width="0.1621%" height="15" fill="rgb(216,153,54)"/><text x="38.5314%" y="5054.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (34 samples, 0.61%)</title><rect x="37.8490%" y="4964" width="0.6125%" height="15" fill="rgb(250,99,7)"/><text x="38.0990%" y="4974.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (34 samples, 0.61%)</title><rect x="37.8490%" y="4980" width="0.6125%" height="15" fill="rgb(207,56,50)"/><text x="38.0990%" y="4990.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (24 samples, 0.43%)</title><rect x="38.0292%" y="4996" width="0.4324%" height="15" fill="rgb(244,61,34)"/><text x="38.2792%" y="5006.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="38.2454%" y="5012" width="0.2162%" height="15" fill="rgb(241,50,38)"/><text x="38.4954%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="38.4976%" y="5012" width="0.1081%" height="15" fill="rgb(212,166,30)"/><text x="38.7476%" y="5022.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="38.4976%" y="5028" width="0.1081%" height="15" fill="rgb(249,127,32)"/><text x="38.7476%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="38.4976%" y="5044" width="0.1081%" height="15" fill="rgb(209,103,0)"/><text x="38.7476%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="38.4976%" y="5060" width="0.1081%" height="15" fill="rgb(238,209,51)"/><text x="38.7476%" y="5070.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (19 samples, 0.34%)</title><rect x="38.4615%" y="4964" width="0.3423%" height="15" fill="rgb(237,56,23)"/><text x="38.7115%" y="4974.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (19 samples, 0.34%)</title><rect x="38.4615%" y="4980" width="0.3423%" height="15" fill="rgb(215,153,46)"/><text x="38.7115%" y="4990.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (17 samples, 0.31%)</title><rect x="38.4976%" y="4996" width="0.3063%" height="15" fill="rgb(224,49,31)"/><text x="38.7476%" y="5006.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="38.6597%" y="5012" width="0.1441%" height="15" fill="rgb(250,18,42)"/><text x="38.9097%" y="5022.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (9 samples, 0.16%)</title><rect x="39.0020%" y="5012" width="0.1621%" height="15" fill="rgb(215,176,39)"/><text x="39.2520%" y="5022.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="39.0020%" y="5028" width="0.1621%" height="15" fill="rgb(223,77,29)"/><text x="39.2520%" y="5038.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (25 samples, 0.45%)</title><rect x="38.8038%" y="4964" width="0.4504%" height="15" fill="rgb(234,94,52)"/><text x="39.0538%" y="4974.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (21 samples, 0.38%)</title><rect x="38.8759%" y="4980" width="0.3783%" height="15" fill="rgb(220,154,50)"/><text x="39.1259%" y="4990.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (14 samples, 0.25%)</title><rect x="39.0020%" y="4996" width="0.2522%" height="15" fill="rgb(212,11,10)"/><text x="39.2520%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="39.2722%" y="5044" width="0.1441%" height="15" fill="rgb(205,166,19)"/><text x="39.5222%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="39.2722%" y="5060" width="0.1441%" height="15" fill="rgb(244,198,16)"/><text x="39.5222%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="39.2722%" y="5076" width="0.1441%" height="15" fill="rgb(219,69,12)"/><text x="39.5222%" y="5086.50"></text></g><g><title>_infer_stmts (astroid/bases.py:137) (6 samples, 0.11%)</title><rect x="39.4163%" y="5060" width="0.1081%" height="15" fill="rgb(245,30,7)"/><text x="39.6663%" y="5070.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (16 samples, 0.29%)</title><rect x="39.2542%" y="5012" width="0.2882%" height="15" fill="rgb(218,221,48)"/><text x="39.5042%" y="5022.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (16 samples, 0.29%)</title><rect x="39.2542%" y="5028" width="0.2882%" height="15" fill="rgb(216,66,15)"/><text x="39.5042%" y="5038.50"></text></g><g><title>infer_attribute (astroid/inference.py:324) (7 samples, 0.13%)</title><rect x="39.4163%" y="5044" width="0.1261%" height="15" fill="rgb(226,122,50)"/><text x="39.6663%" y="5054.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="39.6325%" y="5124" width="0.1621%" height="15" fill="rgb(239,156,16)"/><text x="39.8825%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="39.6325%" y="5140" width="0.1621%" height="15" fill="rgb(224,27,38)"/><text x="39.8825%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="39.6325%" y="5156" width="0.1621%" height="15" fill="rgb(224,39,27)"/><text x="39.8825%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="39.6685%" y="5172" width="0.1261%" height="15" fill="rgb(215,92,29)"/><text x="39.9185%" y="5182.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (7 samples, 0.13%)</title><rect x="39.6685%" y="5188" width="0.1261%" height="15" fill="rgb(207,159,16)"/><text x="39.9185%" y="5198.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="39.6685%" y="5204" width="0.1261%" height="15" fill="rgb(238,163,47)"/><text x="39.9185%" y="5214.50"></text></g><g><title>__init__ (astroid/context.py:36) (7 samples, 0.13%)</title><rect x="39.6685%" y="5220" width="0.1261%" height="15" fill="rgb(219,91,49)"/><text x="39.9185%" y="5230.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (11 samples, 0.20%)</title><rect x="39.6325%" y="5044" width="0.1982%" height="15" fill="rgb(227,167,31)"/><text x="39.8825%" y="5054.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (11 samples, 0.20%)</title><rect x="39.6325%" y="5060" width="0.1982%" height="15" fill="rgb(234,80,54)"/><text x="39.8825%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="39.6325%" y="5076" width="0.1982%" height="15" fill="rgb(212,114,2)"/><text x="39.8825%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="39.6325%" y="5092" width="0.1982%" height="15" fill="rgb(234,50,24)"/><text x="39.8825%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="39.6325%" y="5108" width="0.1982%" height="15" fill="rgb(221,68,8)"/><text x="39.8825%" y="5118.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (21 samples, 0.38%)</title><rect x="39.5424%" y="5012" width="0.3783%" height="15" fill="rgb(254,180,31)"/><text x="39.7924%" y="5022.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (16 samples, 0.29%)</title><rect x="39.6325%" y="5028" width="0.2882%" height="15" fill="rgb(247,130,50)"/><text x="39.8825%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (130 samples, 2.34%)</title><rect x="37.6509%" y="4916" width="2.3419%" height="15" fill="rgb(211,109,4)"/><text x="37.9009%" y="4926.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (130 samples, 2.34%)</title><rect x="37.6509%" y="4932" width="2.3419%" height="15" fill="rgb(238,50,21)"/><text x="37.9009%" y="4942.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (119 samples, 2.14%)</title><rect x="37.8490%" y="4948" width="2.1438%" height="15" fill="rgb(225,57,45)"/><text x="38.0990%" y="4958.50">i..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (41 samples, 0.74%)</title><rect x="39.2542%" y="4964" width="0.7386%" height="15" fill="rgb(209,196,50)"/><text x="39.5042%" y="4974.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (41 samples, 0.74%)</title><rect x="39.2542%" y="4980" width="0.7386%" height="15" fill="rgb(242,140,13)"/><text x="39.5042%" y="4990.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (41 samples, 0.74%)</title><rect x="39.2542%" y="4996" width="0.7386%" height="15" fill="rgb(217,111,7)"/><text x="39.5042%" y="5006.50"></text></g><g><title>infer_call (astroid/inference.py:229) (143 samples, 2.58%)</title><rect x="37.5248%" y="4788" width="2.5761%" height="15" fill="rgb(253,193,51)"/><text x="37.7748%" y="4798.50">in..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (143 samples, 2.58%)</title><rect x="37.5248%" y="4804" width="2.5761%" height="15" fill="rgb(252,70,29)"/><text x="37.7748%" y="4814.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (143 samples, 2.58%)</title><rect x="37.5248%" y="4820" width="2.5761%" height="15" fill="rgb(232,127,12)"/><text x="37.7748%" y="4830.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (143 samples, 2.58%)</title><rect x="37.5248%" y="4836" width="2.5761%" height="15" fill="rgb(211,180,21)"/><text x="37.7748%" y="4846.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (143 samples, 2.58%)</title><rect x="37.5248%" y="4852" width="2.5761%" height="15" fill="rgb(229,72,13)"/><text x="37.7748%" y="4862.50">wr..</text></g><g><title>infer_call (astroid/inference.py:229) (143 samples, 2.58%)</title><rect x="37.5248%" y="4868" width="2.5761%" height="15" fill="rgb(240,211,49)"/><text x="37.7748%" y="4878.50">in..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (137 samples, 2.47%)</title><rect x="37.6329%" y="4884" width="2.4680%" height="15" fill="rgb(219,149,40)"/><text x="37.8829%" y="4894.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (136 samples, 2.45%)</title><rect x="37.6509%" y="4900" width="2.4500%" height="15" fill="rgb(210,127,46)"/><text x="37.9009%" y="4910.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="39.9928%" y="4916" width="0.1081%" height="15" fill="rgb(220,106,7)"/><text x="40.2428%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="39.9928%" y="4932" width="0.1081%" height="15" fill="rgb(249,31,22)"/><text x="40.2428%" y="4942.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (178 samples, 3.21%)</title><rect x="36.9123%" y="4724" width="3.2066%" height="15" fill="rgb(253,1,49)"/><text x="37.1623%" y="4734.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (178 samples, 3.21%)</title><rect x="36.9123%" y="4740" width="3.2066%" height="15" fill="rgb(227,144,33)"/><text x="37.1623%" y="4750.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (145 samples, 2.61%)</title><rect x="37.5068%" y="4756" width="2.6121%" height="15" fill="rgb(249,163,44)"/><text x="37.7568%" y="4766.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (145 samples, 2.61%)</title><rect x="37.5068%" y="4772" width="2.6121%" height="15" fill="rgb(234,15,39)"/><text x="37.7568%" y="4782.50">wr..</text></g><g><title>infer_attribute (astroid/inference.py:289) (1,161 samples, 20.92%)</title><rect x="19.2218%" y="4468" width="20.9152%" height="15" fill="rgb(207,66,16)"/><text x="19.4718%" y="4478.50">infer_attribute (astroid/inferenc..</text></g><g><title>infer (astroid/node_classes.py:380) (1,161 samples, 20.92%)</title><rect x="19.2218%" y="4484" width="20.9152%" height="15" fill="rgb(233,112,24)"/><text x="19.4718%" y="4494.50">infer (astroid/node_classes.py:38..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (1,161 samples, 20.92%)</title><rect x="19.2218%" y="4500" width="20.9152%" height="15" fill="rgb(230,90,22)"/><text x="19.4718%" y="4510.50">raise_if_nothing_inferred (astroi..</text></g><g><title>wrapped (astroid/decorators.py:99) (1,161 samples, 20.92%)</title><rect x="19.2218%" y="4516" width="20.9152%" height="15" fill="rgb(229,61,13)"/><text x="19.4718%" y="4526.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_attribute (astroid/inference.py:316) (1,160 samples, 20.90%)</title><rect x="19.2398%" y="4532" width="20.8971%" height="15" fill="rgb(225,57,24)"/><text x="19.4898%" y="4542.50">infer_attribute (astroid/inferenc..</text></g><g><title>igetattr (astroid/bases.py:233) (1,160 samples, 20.90%)</title><rect x="19.2398%" y="4548" width="20.8971%" height="15" fill="rgb(208,169,48)"/><text x="19.4898%" y="4558.50">igetattr (astroid/bases.py:233)</text></g><g><title>_wrap_attr (astroid/bases.py:239) (1,160 samples, 20.90%)</title><rect x="19.2398%" y="4564" width="20.8971%" height="15" fill="rgb(244,218,51)"/><text x="19.4898%" y="4574.50">_wrap_attr (astroid/bases.py:239)</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (1,154 samples, 20.79%)</title><rect x="19.3479%" y="4580" width="20.7890%" height="15" fill="rgb(214,148,10)"/><text x="19.5979%" y="4590.50">igetattr (astroid/scoped_nodes.py..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (1,154 samples, 20.79%)</title><rect x="19.3479%" y="4596" width="20.7890%" height="15" fill="rgb(225,174,27)"/><text x="19.5979%" y="4606.50">infer_call_result (astroid/scoped..</text></g><g><title>infer (astroid/node_classes.py:380) (1,154 samples, 20.79%)</title><rect x="19.3479%" y="4612" width="20.7890%" height="15" fill="rgb(230,96,26)"/><text x="19.5979%" y="4622.50">infer (astroid/node_classes.py:38..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (1,154 samples, 20.79%)</title><rect x="19.3479%" y="4628" width="20.7890%" height="15" fill="rgb(232,10,30)"/><text x="19.5979%" y="4638.50">raise_if_nothing_inferred (astroi..</text></g><g><title>wrapped (astroid/decorators.py:99) (1,154 samples, 20.79%)</title><rect x="19.3479%" y="4644" width="20.7890%" height="15" fill="rgb(222,8,50)"/><text x="19.5979%" y="4654.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_attribute (astroid/inference.py:316) (388 samples, 6.99%)</title><rect x="33.1472%" y="4660" width="6.9897%" height="15" fill="rgb(213,81,27)"/><text x="33.3972%" y="4670.50">infer_att..</text></g><g><title>igetattr (astroid/bases.py:233) (278 samples, 5.01%)</title><rect x="35.1288%" y="4676" width="5.0081%" height="15" fill="rgb(245,50,10)"/><text x="35.3788%" y="4686.50">igetat..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (278 samples, 5.01%)</title><rect x="35.1288%" y="4692" width="5.0081%" height="15" fill="rgb(216,100,18)"/><text x="35.3788%" y="4702.50">_wrap_..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (179 samples, 3.22%)</title><rect x="36.9123%" y="4708" width="3.2246%" height="15" fill="rgb(236,147,54)"/><text x="37.1623%" y="4718.50">ige..</text></g><g><title>__enter__ (contextlib.py:113) (6 samples, 0.11%)</title><rect x="40.2270%" y="4564" width="0.1081%" height="15" fill="rgb(205,143,26)"/><text x="40.4770%" y="4574.50"></text></g><g><title>restore_path (astroid/context.py:114) (6 samples, 0.11%)</title><rect x="40.2270%" y="4580" width="0.1081%" height="15" fill="rgb(236,26,9)"/><text x="40.4770%" y="4590.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2316) (8 samples, 0.14%)</title><rect x="40.2270%" y="4548" width="0.1441%" height="15" fill="rgb(221,165,53)"/><text x="40.4770%" y="4558.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="40.4071%" y="4580" width="0.1982%" height="15" fill="rgb(214,110,17)"/><text x="40.6571%" y="4590.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="40.4071%" y="4596" width="0.1982%" height="15" fill="rgb(237,197,12)"/><text x="40.6571%" y="4606.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="40.4251%" y="4612" width="0.1801%" height="15" fill="rgb(205,84,17)"/><text x="40.6751%" y="4622.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="40.4251%" y="4628" width="0.1801%" height="15" fill="rgb(237,18,45)"/><text x="40.6751%" y="4638.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="40.4251%" y="4644" width="0.1801%" height="15" fill="rgb(221,87,14)"/><text x="40.6751%" y="4654.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="40.4251%" y="4660" width="0.1801%" height="15" fill="rgb(238,186,15)"/><text x="40.6751%" y="4670.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="40.4251%" y="4676" width="0.1801%" height="15" fill="rgb(208,115,11)"/><text x="40.6751%" y="4686.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="40.4251%" y="4692" width="0.1801%" height="15" fill="rgb(254,175,0)"/><text x="40.6751%" y="4702.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="40.4251%" y="4708" width="0.1801%" height="15" fill="rgb(227,24,42)"/><text x="40.6751%" y="4718.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (10 samples, 0.18%)</title><rect x="40.4251%" y="4724" width="0.1801%" height="15" fill="rgb(223,211,37)"/><text x="40.6751%" y="4734.50"></text></g><g><title>infer_import_from (astroid/inference.py:277) (8 samples, 0.14%)</title><rect x="40.4612%" y="4740" width="0.1441%" height="15" fill="rgb(235,49,27)"/><text x="40.7112%" y="4750.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (18 samples, 0.32%)</title><rect x="40.3711%" y="4548" width="0.3243%" height="15" fill="rgb(254,97,51)"/><text x="40.6211%" y="4558.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="40.3711%" y="4564" width="0.3243%" height="15" fill="rgb(249,51,40)"/><text x="40.6211%" y="4574.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2316) (8 samples, 0.14%)</title><rect x="40.6954%" y="4564" width="0.1441%" height="15" fill="rgb(210,128,45)"/><text x="40.9454%" y="4574.50"></text></g><g><title>helper (contextlib.py:240) (8 samples, 0.14%)</title><rect x="40.6954%" y="4580" width="0.1441%" height="15" fill="rgb(224,137,50)"/><text x="40.9454%" y="4590.50"></text></g><g><title>__init__ (contextlib.py:89) (7 samples, 0.13%)</title><rect x="40.7134%" y="4596" width="0.1261%" height="15" fill="rgb(242,15,9)"/><text x="40.9634%" y="4606.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="40.8395%" y="4564" width="0.1621%" height="15" fill="rgb(233,187,41)"/><text x="41.0895%" y="4574.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="40.8395%" y="4580" width="0.1621%" height="15" fill="rgb(227,2,29)"/><text x="41.0895%" y="4590.50"></text></g><g><title>getattr (astroid/bases.py:182) (55 samples, 0.99%)</title><rect x="40.1729%" y="4500" width="0.9908%" height="15" fill="rgb(222,70,3)"/><text x="40.4229%" y="4510.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (52 samples, 0.94%)</title><rect x="40.2270%" y="4516" width="0.9368%" height="15" fill="rgb(213,11,42)"/><text x="40.4770%" y="4526.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (52 samples, 0.94%)</title><rect x="40.2270%" y="4532" width="0.9368%" height="15" fill="rgb(225,150,9)"/><text x="40.4770%" y="4542.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (26 samples, 0.47%)</title><rect x="40.6954%" y="4548" width="0.4684%" height="15" fill="rgb(230,162,45)"/><text x="40.9454%" y="4558.50"></text></g><g><title>igetattr (astroid/bases.py:221) (57 samples, 1.03%)</title><rect x="40.1729%" y="4484" width="1.0268%" height="15" fill="rgb(222,14,52)"/><text x="40.4229%" y="4494.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (9 samples, 0.16%)</title><rect x="41.2358%" y="4564" width="0.1621%" height="15" fill="rgb(254,198,14)"/><text x="41.4858%" y="4574.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (9 samples, 0.16%)</title><rect x="41.2358%" y="4580" width="0.1621%" height="15" fill="rgb(220,217,30)"/><text x="41.4858%" y="4590.50"></text></g><g><title>infer (astroid/node_classes.py:366) (9 samples, 0.16%)</title><rect x="41.2358%" y="4596" width="0.1621%" height="15" fill="rgb(215,146,41)"/><text x="41.4858%" y="4606.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="41.2538%" y="4612" width="0.1441%" height="15" fill="rgb(217,27,36)"/><text x="41.5038%" y="4622.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="41.2899%" y="4628" width="0.1081%" height="15" fill="rgb(219,218,39)"/><text x="41.5399%" y="4638.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (8 samples, 0.14%)</title><rect x="41.3979%" y="4564" width="0.1441%" height="15" fill="rgb(219,4,42)"/><text x="41.6479%" y="4574.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="41.5421%" y="4628" width="0.1261%" height="15" fill="rgb(249,119,36)"/><text x="41.7921%" y="4638.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="41.5421%" y="4644" width="0.1261%" height="15" fill="rgb(209,23,33)"/><text x="41.7921%" y="4654.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (8 samples, 0.14%)</title><rect x="41.5421%" y="4580" width="0.1441%" height="15" fill="rgb(211,10,0)"/><text x="41.7921%" y="4590.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (8 samples, 0.14%)</title><rect x="41.5421%" y="4596" width="0.1441%" height="15" fill="rgb(208,99,37)"/><text x="41.7921%" y="4606.50"></text></g><g><title>infer (astroid/node_classes.py:366) (8 samples, 0.14%)</title><rect x="41.5421%" y="4612" width="0.1441%" height="15" fill="rgb(213,132,31)"/><text x="41.7921%" y="4622.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="41.7402%" y="4596" width="0.1081%" height="15" fill="rgb(243,129,40)"/><text x="41.9902%" y="4606.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (6 samples, 0.11%)</title><rect x="41.7402%" y="4612" width="0.1081%" height="15" fill="rgb(210,66,33)"/><text x="41.9902%" y="4622.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="41.7402%" y="4580" width="0.1982%" height="15" fill="rgb(209,189,4)"/><text x="41.9902%" y="4590.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (41 samples, 0.74%)</title><rect x="41.2178%" y="4516" width="0.7386%" height="15" fill="rgb(214,107,37)"/><text x="41.4678%" y="4526.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (41 samples, 0.74%)</title><rect x="41.2178%" y="4532" width="0.7386%" height="15" fill="rgb(245,88,54)"/><text x="41.4678%" y="4542.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (40 samples, 0.72%)</title><rect x="41.2358%" y="4548" width="0.7206%" height="15" fill="rgb(205,146,20)"/><text x="41.4858%" y="4558.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (23 samples, 0.41%)</title><rect x="41.5421%" y="4564" width="0.4143%" height="15" fill="rgb(220,161,25)"/><text x="41.7921%" y="4574.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="42.0104%" y="4564" width="0.1801%" height="15" fill="rgb(215,152,15)"/><text x="42.2604%" y="4574.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="42.0104%" y="4580" width="0.1801%" height="15" fill="rgb(233,192,44)"/><text x="42.2604%" y="4590.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="42.0104%" y="4596" width="0.1801%" height="15" fill="rgb(240,170,46)"/><text x="42.2604%" y="4606.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="42.0104%" y="4612" width="0.1801%" height="15" fill="rgb(207,104,33)"/><text x="42.2604%" y="4622.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="42.0104%" y="4628" width="0.1801%" height="15" fill="rgb(219,21,39)"/><text x="42.2604%" y="4638.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="42.0465%" y="4644" width="0.1441%" height="15" fill="rgb(214,133,29)"/><text x="42.2965%" y="4654.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="42.0645%" y="4660" width="0.1261%" height="15" fill="rgb(226,93,6)"/><text x="42.3145%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="42.0645%" y="4676" width="0.1261%" height="15" fill="rgb(252,222,34)"/><text x="42.3145%" y="4686.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (17 samples, 0.31%)</title><rect x="41.9564%" y="4516" width="0.3063%" height="15" fill="rgb(252,92,48)"/><text x="42.2064%" y="4526.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (17 samples, 0.31%)</title><rect x="41.9564%" y="4532" width="0.3063%" height="15" fill="rgb(245,223,24)"/><text x="42.2064%" y="4542.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (15 samples, 0.27%)</title><rect x="41.9924%" y="4548" width="0.2702%" height="15" fill="rgb(205,176,3)"/><text x="42.2424%" y="4558.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (60 samples, 1.08%)</title><rect x="41.1998%" y="4500" width="1.0809%" height="15" fill="rgb(235,151,15)"/><text x="41.4498%" y="4510.50"></text></g><g><title>infer_call (astroid/inference.py:223) (1,283 samples, 23.11%)</title><rect x="19.2037%" y="4404" width="23.1130%" height="15" fill="rgb(237,209,11)"/><text x="19.4537%" y="4414.50">infer_call (astroid/inference.py:223)</text></g><g><title>infer (astroid/node_classes.py:380) (1,283 samples, 23.11%)</title><rect x="19.2037%" y="4420" width="23.1130%" height="15" fill="rgb(243,227,24)"/><text x="19.4537%" y="4430.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (1,283 samples, 23.11%)</title><rect x="19.2037%" y="4436" width="23.1130%" height="15" fill="rgb(239,193,16)"/><text x="19.4537%" y="4446.50">raise_if_nothing_inferred (astroid/de..</text></g><g><title>wrapped (astroid/decorators.py:99) (1,283 samples, 23.11%)</title><rect x="19.2037%" y="4452" width="23.1130%" height="15" fill="rgb(231,27,9)"/><text x="19.4537%" y="4462.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_attribute (astroid/inference.py:316) (119 samples, 2.14%)</title><rect x="40.1729%" y="4468" width="2.1438%" height="15" fill="rgb(219,169,10)"/><text x="40.4229%" y="4478.50">i..</text></g><g><title>igetattr (astroid/bases.py:233) (62 samples, 1.12%)</title><rect x="41.1998%" y="4484" width="1.1169%" height="15" fill="rgb(244,229,43)"/><text x="41.4498%" y="4494.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="42.9292%" y="4996" width="0.1081%" height="15" fill="rgb(254,38,20)"/><text x="43.1792%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="42.8391%" y="4916" width="0.2342%" height="15" fill="rgb(250,47,30)"/><text x="43.0891%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="42.8391%" y="4932" width="0.2342%" height="15" fill="rgb(224,124,36)"/><text x="43.0891%" y="4942.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (13 samples, 0.23%)</title><rect x="42.8391%" y="4948" width="0.2342%" height="15" fill="rgb(246,68,51)"/><text x="43.0891%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="42.9112%" y="4964" width="0.1621%" height="15" fill="rgb(253,43,49)"/><text x="43.1612%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="42.9292%" y="4980" width="0.1441%" height="15" fill="rgb(219,54,36)"/><text x="43.1792%" y="4990.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="43.0733%" y="4948" width="0.1081%" height="15" fill="rgb(227,133,34)"/><text x="43.3233%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="43.0733%" y="4964" width="0.1081%" height="15" fill="rgb(247,227,15)"/><text x="43.3233%" y="4974.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (23 samples, 0.41%)</title><rect x="42.7851%" y="4884" width="0.4143%" height="15" fill="rgb(229,96,14)"/><text x="43.0351%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="42.8391%" y="4900" width="0.3603%" height="15" fill="rgb(220,79,17)"/><text x="43.0891%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="43.0733%" y="4916" width="0.1261%" height="15" fill="rgb(205,131,53)"/><text x="43.3233%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="43.0733%" y="4932" width="0.1261%" height="15" fill="rgb(209,50,29)"/><text x="43.3233%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="43.2895%" y="5012" width="0.1261%" height="15" fill="rgb(245,86,46)"/><text x="43.5395%" y="5022.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="43.2715%" y="4964" width="0.1621%" height="15" fill="rgb(235,66,46)"/><text x="43.5215%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="43.2895%" y="4980" width="0.1441%" height="15" fill="rgb(232,148,31)"/><text x="43.5395%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="43.2895%" y="4996" width="0.1441%" height="15" fill="rgb(217,149,8)"/><text x="43.5395%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="43.2174%" y="4932" width="0.2342%" height="15" fill="rgb(209,183,11)"/><text x="43.4674%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="43.2355%" y="4948" width="0.2162%" height="15" fill="rgb(208,55,20)"/><text x="43.4855%" y="4958.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (21 samples, 0.38%)</title><rect x="43.2174%" y="4900" width="0.3783%" height="15" fill="rgb(218,39,14)"/><text x="43.4674%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (21 samples, 0.38%)</title><rect x="43.2174%" y="4916" width="0.3783%" height="15" fill="rgb(216,169,33)"/><text x="43.4674%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (8 samples, 0.14%)</title><rect x="43.4516%" y="4932" width="0.1441%" height="15" fill="rgb(233,80,24)"/><text x="43.7016%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="43.4516%" y="4948" width="0.1441%" height="15" fill="rgb(213,179,31)"/><text x="43.7016%" y="4958.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (13 samples, 0.23%)</title><rect x="43.5957%" y="4916" width="0.2342%" height="15" fill="rgb(209,19,5)"/><text x="43.8457%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="43.5957%" y="4932" width="0.2342%" height="15" fill="rgb(219,18,35)"/><text x="43.8457%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="43.6678%" y="4948" width="0.1621%" height="15" fill="rgb(209,169,16)"/><text x="43.9178%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="43.6678%" y="4964" width="0.1621%" height="15" fill="rgb(245,90,51)"/><text x="43.9178%" y="4974.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="43.7038%" y="4980" width="0.1261%" height="15" fill="rgb(220,99,45)"/><text x="43.9538%" y="4990.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="43.7038%" y="4996" width="0.1261%" height="15" fill="rgb(249,89,25)"/><text x="43.9538%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="43.7038%" y="5012" width="0.1261%" height="15" fill="rgb(239,193,0)"/><text x="43.9538%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="43.8299%" y="4916" width="0.1081%" height="15" fill="rgb(231,126,1)"/><text x="44.0799%" y="4926.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (84 samples, 1.51%)</title><rect x="42.6049%" y="4852" width="1.5132%" height="15" fill="rgb(243,166,3)"/><text x="42.8549%" y="4862.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (84 samples, 1.51%)</title><rect x="42.6049%" y="4868" width="1.5132%" height="15" fill="rgb(223,22,34)"/><text x="42.8549%" y="4878.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (51 samples, 0.92%)</title><rect x="43.1994%" y="4884" width="0.9188%" height="15" fill="rgb(251,52,51)"/><text x="43.4494%" y="4894.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (29 samples, 0.52%)</title><rect x="43.5957%" y="4900" width="0.5224%" height="15" fill="rgb(221,165,28)"/><text x="43.8457%" y="4910.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (10 samples, 0.18%)</title><rect x="43.9380%" y="4916" width="0.1801%" height="15" fill="rgb(218,121,47)"/><text x="44.1880%" y="4926.50"></text></g><g><title>__exit__ (contextlib.py:120) (10 samples, 0.18%)</title><rect x="43.9380%" y="4932" width="0.1801%" height="15" fill="rgb(209,120,9)"/><text x="44.1880%" y="4942.50"></text></g><g><title>igetattr (astroid/bases.py:221) (85 samples, 1.53%)</title><rect x="42.6049%" y="4820" width="1.5313%" height="15" fill="rgb(236,68,12)"/><text x="42.8549%" y="4830.50"></text></g><g><title>getattr (astroid/bases.py:182) (85 samples, 1.53%)</title><rect x="42.6049%" y="4836" width="1.5313%" height="15" fill="rgb(225,194,26)"/><text x="42.8549%" y="4846.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="44.1722%" y="4964" width="0.1081%" height="15" fill="rgb(231,84,39)"/><text x="44.4222%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="44.1722%" y="4948" width="0.1801%" height="15" fill="rgb(210,11,45)"/><text x="44.4222%" y="4958.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (15 samples, 0.27%)</title><rect x="44.1722%" y="4900" width="0.2702%" height="15" fill="rgb(224,54,52)"/><text x="44.4222%" y="4910.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (15 samples, 0.27%)</title><rect x="44.1722%" y="4916" width="0.2702%" height="15" fill="rgb(238,102,14)"/><text x="44.4222%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:366) (15 samples, 0.27%)</title><rect x="44.1722%" y="4932" width="0.2702%" height="15" fill="rgb(243,160,52)"/><text x="44.4222%" y="4942.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (13 samples, 0.23%)</title><rect x="44.4424%" y="4900" width="0.2342%" height="15" fill="rgb(216,114,19)"/><text x="44.6924%" y="4910.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="44.4605%" y="4916" width="0.2162%" height="15" fill="rgb(244,166,37)"/><text x="44.7105%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="44.4605%" y="4932" width="0.2162%" height="15" fill="rgb(246,29,44)"/><text x="44.7105%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="44.4605%" y="4948" width="0.2162%" height="15" fill="rgb(215,56,53)"/><text x="44.7105%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="44.4605%" y="4964" width="0.2162%" height="15" fill="rgb(217,60,2)"/><text x="44.7105%" y="4974.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (12 samples, 0.22%)</title><rect x="44.4605%" y="4980" width="0.2162%" height="15" fill="rgb(207,26,24)"/><text x="44.7105%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="44.4605%" y="4996" width="0.2162%" height="15" fill="rgb(252,210,15)"/><text x="44.7105%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="44.4605%" y="5012" width="0.2162%" height="15" fill="rgb(253,209,26)"/><text x="44.7105%" y="5022.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (10 samples, 0.18%)</title><rect x="44.4965%" y="5028" width="0.1801%" height="15" fill="rgb(238,170,14)"/><text x="44.7465%" y="5038.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (8 samples, 0.14%)</title><rect x="44.5325%" y="5044" width="0.1441%" height="15" fill="rgb(216,178,15)"/><text x="44.7825%" y="5054.50"></text></g><g><title>do_import_module (astroid/mixins.py:90) (7 samples, 0.13%)</title><rect x="44.5505%" y="5060" width="0.1261%" height="15" fill="rgb(250,197,2)"/><text x="44.8005%" y="5070.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="44.6766%" y="4900" width="0.1081%" height="15" fill="rgb(212,70,42)"/><text x="44.9266%" y="4910.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (37 samples, 0.67%)</title><rect x="44.1362%" y="4852" width="0.6665%" height="15" fill="rgb(227,213,9)"/><text x="44.3862%" y="4862.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (37 samples, 0.67%)</title><rect x="44.1362%" y="4868" width="0.6665%" height="15" fill="rgb(245,99,25)"/><text x="44.3862%" y="4878.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (35 samples, 0.63%)</title><rect x="44.1722%" y="4884" width="0.6305%" height="15" fill="rgb(250,82,29)"/><text x="44.4222%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (9 samples, 0.16%)</title><rect x="44.8568%" y="5028" width="0.1621%" height="15" fill="rgb(241,226,54)"/><text x="45.1068%" y="5038.50"></text></g><g><title>infer_name (astroid/inference.py:199) (9 samples, 0.16%)</title><rect x="44.8568%" y="5044" width="0.1621%" height="15" fill="rgb(221,99,41)"/><text x="45.1068%" y="5054.50"></text></g><g><title>copy_context (astroid/context.py:148) (9 samples, 0.16%)</title><rect x="44.8568%" y="5060" width="0.1621%" height="15" fill="rgb(213,90,21)"/><text x="45.1068%" y="5070.50"></text></g><g><title>clone (astroid/context.py:106) (9 samples, 0.16%)</title><rect x="44.8568%" y="5076" width="0.1621%" height="15" fill="rgb(205,208,24)"/><text x="45.1068%" y="5086.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="44.8568%" y="4980" width="0.1801%" height="15" fill="rgb(246,31,12)"/><text x="45.1068%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="44.8568%" y="4996" width="0.1801%" height="15" fill="rgb(213,154,6)"/><text x="45.1068%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="44.8568%" y="5012" width="0.1801%" height="15" fill="rgb(222,163,29)"/><text x="45.1068%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (11 samples, 0.20%)</title><rect x="44.8568%" y="4916" width="0.1982%" height="15" fill="rgb(227,201,8)"/><text x="45.1068%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="44.8568%" y="4932" width="0.1982%" height="15" fill="rgb(233,9,32)"/><text x="45.1068%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="44.8568%" y="4948" width="0.1982%" height="15" fill="rgb(217,54,24)"/><text x="45.1068%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="44.8568%" y="4964" width="0.1982%" height="15" fill="rgb(235,192,0)"/><text x="45.1068%" y="4974.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (15 samples, 0.27%)</title><rect x="44.8027%" y="4852" width="0.2702%" height="15" fill="rgb(235,45,9)"/><text x="45.0527%" y="4862.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (15 samples, 0.27%)</title><rect x="44.8027%" y="4868" width="0.2702%" height="15" fill="rgb(246,42,40)"/><text x="45.0527%" y="4878.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (15 samples, 0.27%)</title><rect x="44.8027%" y="4884" width="0.2702%" height="15" fill="rgb(248,111,24)"/><text x="45.0527%" y="4894.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="44.8568%" y="4900" width="0.2162%" height="15" fill="rgb(249,65,22)"/><text x="45.1068%" y="4910.50"></text></g><g><title>infer_call (astroid/inference.py:223) (149 samples, 2.68%)</title><rect x="42.4968%" y="4740" width="2.6842%" height="15" fill="rgb(238,111,51)"/><text x="42.7468%" y="4750.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (149 samples, 2.68%)</title><rect x="42.4968%" y="4756" width="2.6842%" height="15" fill="rgb(250,118,22)"/><text x="42.7468%" y="4766.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (149 samples, 2.68%)</title><rect x="42.4968%" y="4772" width="2.6842%" height="15" fill="rgb(234,84,26)"/><text x="42.7468%" y="4782.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (149 samples, 2.68%)</title><rect x="42.4968%" y="4788" width="2.6842%" height="15" fill="rgb(243,172,12)"/><text x="42.7468%" y="4798.50">wr..</text></g><g><title>infer_attribute (astroid/inference.py:316) (143 samples, 2.58%)</title><rect x="42.6049%" y="4804" width="2.5761%" height="15" fill="rgb(236,150,49)"/><text x="42.8549%" y="4814.50">in..</text></g><g><title>igetattr (astroid/bases.py:233) (58 samples, 1.04%)</title><rect x="44.1362%" y="4820" width="1.0449%" height="15" fill="rgb(225,197,26)"/><text x="44.3862%" y="4830.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (58 samples, 1.04%)</title><rect x="44.1362%" y="4836" width="1.0449%" height="15" fill="rgb(214,17,42)"/><text x="44.3862%" y="4846.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="45.2891%" y="5028" width="0.1081%" height="15" fill="rgb(224,165,40)"/><text x="45.5391%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="45.2891%" y="5044" width="0.1081%" height="15" fill="rgb(246,100,4)"/><text x="45.5391%" y="5054.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="45.2351%" y="4948" width="0.1801%" height="15" fill="rgb(222,103,0)"/><text x="45.4851%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="45.2351%" y="4964" width="0.1801%" height="15" fill="rgb(227,189,26)"/><text x="45.4851%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="45.2351%" y="4980" width="0.1801%" height="15" fill="rgb(214,202,17)"/><text x="45.4851%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="45.2351%" y="4996" width="0.1801%" height="15" fill="rgb(229,111,3)"/><text x="45.4851%" y="5006.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="45.2891%" y="5012" width="0.1261%" height="15" fill="rgb(229,172,15)"/><text x="45.5391%" y="5022.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="45.2351%" y="4884" width="0.1982%" height="15" fill="rgb(230,224,35)"/><text x="45.4851%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="45.2351%" y="4900" width="0.1982%" height="15" fill="rgb(251,141,6)"/><text x="45.4851%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="45.2351%" y="4916" width="0.1982%" height="15" fill="rgb(225,208,6)"/><text x="45.4851%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="45.2351%" y="4932" width="0.1982%" height="15" fill="rgb(246,181,16)"/><text x="45.4851%" y="4942.50"></text></g><g><title>infer_call (astroid/inference.py:223) (12 samples, 0.22%)</title><rect x="45.2351%" y="4820" width="0.2162%" height="15" fill="rgb(227,129,36)"/><text x="45.4851%" y="4830.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="45.2351%" y="4836" width="0.2162%" height="15" fill="rgb(248,117,24)"/><text x="45.4851%" y="4846.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="45.2351%" y="4852" width="0.2162%" height="15" fill="rgb(214,185,35)"/><text x="45.4851%" y="4862.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="45.2351%" y="4868" width="0.2162%" height="15" fill="rgb(236,150,34)"/><text x="45.4851%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:355) (9 samples, 0.16%)</title><rect x="45.4693%" y="4948" width="0.1621%" height="15" fill="rgb(243,228,27)"/><text x="45.7193%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="45.6855%" y="4996" width="0.1081%" height="15" fill="rgb(245,77,44)"/><text x="45.9355%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="45.6855%" y="5012" width="0.1081%" height="15" fill="rgb(235,214,42)"/><text x="45.9355%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="45.6855%" y="5028" width="0.1081%" height="15" fill="rgb(221,74,3)"/><text x="45.9355%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="45.6674%" y="4964" width="0.1982%" height="15" fill="rgb(206,121,29)"/><text x="45.9174%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="45.6855%" y="4980" width="0.1801%" height="15" fill="rgb(249,131,53)"/><text x="45.9355%" y="4990.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (25 samples, 0.45%)</title><rect x="45.4513%" y="4932" width="0.4504%" height="15" fill="rgb(236,170,29)"/><text x="45.7013%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="45.6314%" y="4948" width="0.2702%" height="15" fill="rgb(247,96,15)"/><text x="45.8814%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="45.9016%" y="4932" width="0.2342%" height="15" fill="rgb(211,210,7)"/><text x="46.1516%" y="4942.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (9 samples, 0.16%)</title><rect x="45.9737%" y="4948" width="0.1621%" height="15" fill="rgb(240,88,50)"/><text x="46.2237%" y="4958.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (9 samples, 0.16%)</title><rect x="45.9737%" y="4964" width="0.1621%" height="15" fill="rgb(209,229,26)"/><text x="46.2237%" y="4974.50"></text></g><g><title>__repr__ (astroid/node_classes.py:438) (6 samples, 0.11%)</title><rect x="46.0277%" y="4980" width="0.1081%" height="15" fill="rgb(210,68,23)"/><text x="46.2777%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (39 samples, 0.70%)</title><rect x="45.4513%" y="4836" width="0.7026%" height="15" fill="rgb(229,180,13)"/><text x="45.7013%" y="4846.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (39 samples, 0.70%)</title><rect x="45.4513%" y="4852" width="0.7026%" height="15" fill="rgb(236,53,44)"/><text x="45.7013%" y="4862.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (39 samples, 0.70%)</title><rect x="45.4513%" y="4868" width="0.7026%" height="15" fill="rgb(244,214,29)"/><text x="45.7013%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:380) (39 samples, 0.70%)</title><rect x="45.4513%" y="4884" width="0.7026%" height="15" fill="rgb(220,75,29)"/><text x="45.7013%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (39 samples, 0.70%)</title><rect x="45.4513%" y="4900" width="0.7026%" height="15" fill="rgb(214,183,37)"/><text x="45.7013%" y="4910.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="45.4513%" y="4916" width="0.7026%" height="15" fill="rgb(239,117,29)"/><text x="45.7013%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="46.2439%" y="4996" width="0.1081%" height="15" fill="rgb(237,171,35)"/><text x="46.4939%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="46.2439%" y="5012" width="0.1081%" height="15" fill="rgb(229,178,53)"/><text x="46.4939%" y="5022.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="46.2259%" y="4964" width="0.1441%" height="15" fill="rgb(210,102,19)"/><text x="46.4759%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="46.2439%" y="4980" width="0.1261%" height="15" fill="rgb(235,127,22)"/><text x="46.4939%" y="4990.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (9 samples, 0.16%)</title><rect x="46.2259%" y="4884" width="0.1621%" height="15" fill="rgb(244,31,31)"/><text x="46.4759%" y="4894.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (9 samples, 0.16%)</title><rect x="46.2259%" y="4900" width="0.1621%" height="15" fill="rgb(231,43,21)"/><text x="46.4759%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="46.2259%" y="4916" width="0.1621%" height="15" fill="rgb(217,131,35)"/><text x="46.4759%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="46.2259%" y="4932" width="0.1621%" height="15" fill="rgb(221,149,4)"/><text x="46.4759%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="46.2259%" y="4948" width="0.1621%" height="15" fill="rgb(232,170,28)"/><text x="46.4759%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (224 samples, 4.04%)</title><rect x="42.4608%" y="4676" width="4.0353%" height="15" fill="rgb(238,56,10)"/><text x="42.7108%" y="4686.50">infe..</text></g><g><title>infer (astroid/node_classes.py:380) (224 samples, 4.04%)</title><rect x="42.4608%" y="4692" width="4.0353%" height="15" fill="rgb(235,196,14)"/><text x="42.7108%" y="4702.50">infe..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (224 samples, 4.04%)</title><rect x="42.4608%" y="4708" width="4.0353%" height="15" fill="rgb(216,45,48)"/><text x="42.7108%" y="4718.50">rais..</text></g><g><title>wrapped (astroid/decorators.py:99) (224 samples, 4.04%)</title><rect x="42.4608%" y="4724" width="4.0353%" height="15" fill="rgb(238,213,17)"/><text x="42.7108%" y="4734.50">wrap..</text></g><g><title>infer_call (astroid/inference.py:229) (72 samples, 1.30%)</title><rect x="45.1991%" y="4740" width="1.2971%" height="15" fill="rgb(212,13,2)"/><text x="45.4491%" y="4750.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (71 samples, 1.28%)</title><rect x="45.2171%" y="4756" width="1.2790%" height="15" fill="rgb(240,114,20)"/><text x="45.4671%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (71 samples, 1.28%)</title><rect x="45.2171%" y="4772" width="1.2790%" height="15" fill="rgb(228,41,40)"/><text x="45.4671%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (71 samples, 1.28%)</title><rect x="45.2171%" y="4788" width="1.2790%" height="15" fill="rgb(244,132,35)"/><text x="45.4671%" y="4798.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (71 samples, 1.28%)</title><rect x="45.2171%" y="4804" width="1.2790%" height="15" fill="rgb(253,189,4)"/><text x="45.4671%" y="4814.50"></text></g><g><title>infer_call (astroid/inference.py:229) (58 samples, 1.04%)</title><rect x="45.4513%" y="4820" width="1.0449%" height="15" fill="rgb(224,37,19)"/><text x="45.7013%" y="4830.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (16 samples, 0.29%)</title><rect x="46.2079%" y="4836" width="0.2882%" height="15" fill="rgb(235,223,18)"/><text x="46.4579%" y="4846.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (16 samples, 0.29%)</title><rect x="46.2079%" y="4852" width="0.2882%" height="15" fill="rgb(235,163,25)"/><text x="46.4579%" y="4862.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (15 samples, 0.27%)</title><rect x="46.2259%" y="4868" width="0.2702%" height="15" fill="rgb(217,145,28)"/><text x="46.4759%" y="4878.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2970) (6 samples, 0.11%)</title><rect x="46.3880%" y="4884" width="0.1081%" height="15" fill="rgb(223,223,32)"/><text x="46.6380%" y="4894.50"></text></g><g><title>clean_duplicates_mro (astroid/scoped_nodes.py:151) (6 samples, 0.11%)</title><rect x="46.3880%" y="4900" width="0.1081%" height="15" fill="rgb(227,189,39)"/><text x="46.6380%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="46.5862%" y="4852" width="0.1081%" height="15" fill="rgb(248,10,22)"/><text x="46.8362%" y="4862.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="46.5862%" y="4868" width="0.1081%" height="15" fill="rgb(248,46,39)"/><text x="46.8362%" y="4878.50"></text></g><g><title>igetattr (astroid/bases.py:221) (7 samples, 0.13%)</title><rect x="46.5862%" y="4692" width="0.1261%" height="15" fill="rgb(248,113,48)"/><text x="46.8362%" y="4702.50"></text></g><g><title>getattr (astroid/bases.py:182) (7 samples, 0.13%)</title><rect x="46.5862%" y="4708" width="0.1261%" height="15" fill="rgb(245,16,25)"/><text x="46.8362%" y="4718.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (7 samples, 0.13%)</title><rect x="46.5862%" y="4724" width="0.1261%" height="15" fill="rgb(249,152,16)"/><text x="46.8362%" y="4734.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (7 samples, 0.13%)</title><rect x="46.5862%" y="4740" width="0.1261%" height="15" fill="rgb(250,16,1)"/><text x="46.8362%" y="4750.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="46.5862%" y="4756" width="0.1261%" height="15" fill="rgb(249,138,3)"/><text x="46.8362%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="46.5862%" y="4772" width="0.1261%" height="15" fill="rgb(227,71,41)"/><text x="46.8362%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="46.5862%" y="4788" width="0.1261%" height="15" fill="rgb(209,184,23)"/><text x="46.8362%" y="4798.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="46.5862%" y="4804" width="0.1261%" height="15" fill="rgb(223,215,31)"/><text x="46.8362%" y="4814.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="46.5862%" y="4820" width="0.1261%" height="15" fill="rgb(210,146,28)"/><text x="46.8362%" y="4830.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="46.5862%" y="4836" width="0.1261%" height="15" fill="rgb(209,183,41)"/><text x="46.8362%" y="4846.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (8 samples, 0.14%)</title><rect x="46.7123%" y="4756" width="0.1441%" height="15" fill="rgb(209,224,45)"/><text x="46.9623%" y="4766.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (8 samples, 0.14%)</title><rect x="46.7123%" y="4772" width="0.1441%" height="15" fill="rgb(224,209,51)"/><text x="46.9623%" y="4782.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="46.7123%" y="4788" width="0.1441%" height="15" fill="rgb(223,17,39)"/><text x="46.9623%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="46.7123%" y="4804" width="0.1441%" height="15" fill="rgb(234,204,37)"/><text x="46.9623%" y="4814.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="46.7303%" y="4820" width="0.1261%" height="15" fill="rgb(236,120,5)"/><text x="46.9803%" y="4830.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="46.7303%" y="4836" width="0.1261%" height="15" fill="rgb(248,97,27)"/><text x="46.9803%" y="4846.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (9 samples, 0.16%)</title><rect x="46.7123%" y="4724" width="0.1621%" height="15" fill="rgb(240,66,17)"/><text x="46.9623%" y="4734.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="46.7123%" y="4740" width="0.1621%" height="15" fill="rgb(210,79,3)"/><text x="46.9623%" y="4750.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (6 samples, 0.11%)</title><rect x="46.8744%" y="4724" width="0.1081%" height="15" fill="rgb(214,176,27)"/><text x="47.1244%" y="4734.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (17 samples, 0.31%)</title><rect x="46.7123%" y="4708" width="0.3063%" height="15" fill="rgb(235,185,3)"/><text x="46.9623%" y="4718.50"></text></g><g><title>infer_call (astroid/inference.py:223) (255 samples, 4.59%)</title><rect x="42.4608%" y="4612" width="4.5938%" height="15" fill="rgb(227,24,12)"/><text x="42.7108%" y="4622.50">infer..</text></g><g><title>infer (astroid/node_classes.py:380) (255 samples, 4.59%)</title><rect x="42.4608%" y="4628" width="4.5938%" height="15" fill="rgb(252,169,48)"/><text x="42.7108%" y="4638.50">infer..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (255 samples, 4.59%)</title><rect x="42.4608%" y="4644" width="4.5938%" height="15" fill="rgb(212,65,1)"/><text x="42.7108%" y="4654.50">raise..</text></g><g><title>wrapped (astroid/decorators.py:99) (255 samples, 4.59%)</title><rect x="42.4608%" y="4660" width="4.5938%" height="15" fill="rgb(242,39,24)"/><text x="42.7108%" y="4670.50">wrapp..</text></g><g><title>infer_attribute (astroid/inference.py:316) (26 samples, 0.47%)</title><rect x="46.5862%" y="4676" width="0.4684%" height="15" fill="rgb(249,32,23)"/><text x="46.8362%" y="4686.50"></text></g><g><title>igetattr (astroid/bases.py:233) (19 samples, 0.34%)</title><rect x="46.7123%" y="4692" width="0.3423%" height="15" fill="rgb(251,195,23)"/><text x="46.9623%" y="4702.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (6 samples, 0.11%)</title><rect x="47.0546%" y="4628" width="0.1081%" height="15" fill="rgb(236,174,8)"/><text x="47.3046%" y="4638.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (6 samples, 0.11%)</title><rect x="47.0546%" y="4644" width="0.1081%" height="15" fill="rgb(220,197,8)"/><text x="47.3046%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="47.0546%" y="4660" width="0.1081%" height="15" fill="rgb(240,108,37)"/><text x="47.3046%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="47.2527%" y="5060" width="0.1441%" height="15" fill="rgb(232,176,24)"/><text x="47.5027%" y="5070.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (8 samples, 0.14%)</title><rect x="47.2527%" y="5076" width="0.1441%" height="15" fill="rgb(243,35,29)"/><text x="47.5027%" y="5086.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (8 samples, 0.14%)</title><rect x="47.2527%" y="5092" width="0.1441%" height="15" fill="rgb(210,37,18)"/><text x="47.5027%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (9 samples, 0.16%)</title><rect x="47.2527%" y="4948" width="0.1621%" height="15" fill="rgb(224,184,40)"/><text x="47.5027%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="47.2527%" y="4964" width="0.1621%" height="15" fill="rgb(236,39,29)"/><text x="47.5027%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="47.2527%" y="4980" width="0.1621%" height="15" fill="rgb(232,48,39)"/><text x="47.5027%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="47.2527%" y="4996" width="0.1621%" height="15" fill="rgb(236,34,42)"/><text x="47.5027%" y="5006.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="47.2527%" y="5012" width="0.1621%" height="15" fill="rgb(243,106,37)"/><text x="47.5027%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="47.2527%" y="5028" width="0.1621%" height="15" fill="rgb(218,96,6)"/><text x="47.5027%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="47.2527%" y="5044" width="0.1621%" height="15" fill="rgb(235,130,12)"/><text x="47.5027%" y="5054.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="47.5590%" y="5092" width="0.2162%" height="15" fill="rgb(231,95,0)"/><text x="47.8090%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="47.5590%" y="5108" width="0.2162%" height="15" fill="rgb(228,12,23)"/><text x="47.8090%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="47.6491%" y="5124" width="0.1261%" height="15" fill="rgb(216,12,1)"/><text x="47.8991%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="47.6491%" y="5140" width="0.1261%" height="15" fill="rgb(219,59,3)"/><text x="47.8991%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="47.6491%" y="5156" width="0.1261%" height="15" fill="rgb(215,208,46)"/><text x="47.8991%" y="5166.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="47.6491%" y="5172" width="0.1261%" height="15" fill="rgb(254,224,29)"/><text x="47.8991%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="47.6671%" y="5188" width="0.1081%" height="15" fill="rgb(232,14,29)"/><text x="47.9171%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="47.6671%" y="5204" width="0.1081%" height="15" fill="rgb(208,45,52)"/><text x="47.9171%" y="5214.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:618) (6 samples, 0.11%)</title><rect x="47.8652%" y="5108" width="0.1081%" height="15" fill="rgb(234,191,28)"/><text x="48.1152%" y="5118.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (29 samples, 0.52%)</title><rect x="47.4869%" y="4996" width="0.5224%" height="15" fill="rgb(244,67,43)"/><text x="47.7369%" y="5006.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (26 samples, 0.47%)</title><rect x="47.5410%" y="5012" width="0.4684%" height="15" fill="rgb(236,189,24)"/><text x="47.7910%" y="5022.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (26 samples, 0.47%)</title><rect x="47.5410%" y="5028" width="0.4684%" height="15" fill="rgb(239,214,33)"/><text x="47.7910%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="47.5410%" y="5044" width="0.4684%" height="15" fill="rgb(226,176,41)"/><text x="47.7910%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="47.5410%" y="5060" width="0.4684%" height="15" fill="rgb(248,47,8)"/><text x="47.7910%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="47.5590%" y="5076" width="0.4504%" height="15" fill="rgb(218,81,44)"/><text x="47.8090%" y="5086.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="47.7752%" y="5092" width="0.2342%" height="15" fill="rgb(213,98,6)"/><text x="48.0252%" y="5102.50"></text></g><g><title>getattr (astroid/bases.py:182) (30 samples, 0.54%)</title><rect x="47.4869%" y="4980" width="0.5404%" height="15" fill="rgb(222,85,22)"/><text x="47.7369%" y="4990.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (46 samples, 0.83%)</title><rect x="47.2527%" y="4884" width="0.8287%" height="15" fill="rgb(239,46,39)"/><text x="47.5027%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (46 samples, 0.83%)</title><rect x="47.2527%" y="4900" width="0.8287%" height="15" fill="rgb(237,12,29)"/><text x="47.5027%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (46 samples, 0.83%)</title><rect x="47.2527%" y="4916" width="0.8287%" height="15" fill="rgb(214,77,8)"/><text x="47.5027%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (46 samples, 0.83%)</title><rect x="47.2527%" y="4932" width="0.8287%" height="15" fill="rgb(217,168,37)"/><text x="47.5027%" y="4942.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (33 samples, 0.59%)</title><rect x="47.4869%" y="4948" width="0.5945%" height="15" fill="rgb(221,217,23)"/><text x="47.7369%" y="4958.50"></text></g><g><title>igetattr (astroid/bases.py:221) (33 samples, 0.59%)</title><rect x="47.4869%" y="4964" width="0.5945%" height="15" fill="rgb(243,229,36)"/><text x="47.7369%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="48.2436%" y="5044" width="0.1261%" height="15" fill="rgb(251,163,40)"/><text x="48.4936%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="48.2436%" y="5060" width="0.1261%" height="15" fill="rgb(237,222,12)"/><text x="48.4936%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (16 samples, 0.29%)</title><rect x="48.1715%" y="5012" width="0.2882%" height="15" fill="rgb(248,132,6)"/><text x="48.4215%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="48.2436%" y="5028" width="0.2162%" height="15" fill="rgb(227,167,50)"/><text x="48.4936%" y="5038.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:613) (8 samples, 0.14%)</title><rect x="48.4597%" y="5028" width="0.1441%" height="15" fill="rgb(242,84,37)"/><text x="48.7097%" y="5038.50"></text></g><g><title>copy_context (astroid/context.py:148) (8 samples, 0.14%)</title><rect x="48.4597%" y="5044" width="0.1441%" height="15" fill="rgb(212,4,50)"/><text x="48.7097%" y="5054.50"></text></g><g><title>clone (astroid/context.py:106) (8 samples, 0.14%)</title><rect x="48.4597%" y="5060" width="0.1441%" height="15" fill="rgb(230,228,32)"/><text x="48.7097%" y="5070.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:595) (11 samples, 0.20%)</title><rect x="48.6039%" y="5044" width="0.1982%" height="15" fill="rgb(248,217,23)"/><text x="48.8539%" y="5054.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (71 samples, 1.28%)</title><rect x="48.6039%" y="5028" width="1.2790%" height="15" fill="rgb(238,197,32)"/><text x="48.8539%" y="5038.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:598) (60 samples, 1.08%)</title><rect x="48.8020%" y="5044" width="1.0809%" height="15" fill="rgb(236,106,1)"/><text x="49.0520%" y="5054.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (60 samples, 1.08%)</title><rect x="48.8020%" y="5060" width="1.0809%" height="15" fill="rgb(219,228,13)"/><text x="49.0520%" y="5070.50"></text></g><g><title>__init__ (astroid/exceptions.py:34) (60 samples, 1.08%)</title><rect x="48.8020%" y="5076" width="1.0809%" height="15" fill="rgb(238,30,35)"/><text x="49.0520%" y="5086.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (100 samples, 1.80%)</title><rect x="48.1535%" y="4948" width="1.8015%" height="15" fill="rgb(236,70,23)"/><text x="48.4035%" y="4958.50">d..</text></g><g><title>infer (astroid/node_classes.py:380) (100 samples, 1.80%)</title><rect x="48.1535%" y="4964" width="1.8015%" height="15" fill="rgb(249,104,48)"/><text x="48.4035%" y="4974.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (100 samples, 1.80%)</title><rect x="48.1535%" y="4980" width="1.8015%" height="15" fill="rgb(254,117,50)"/><text x="48.4035%" y="4990.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (100 samples, 1.80%)</title><rect x="48.1535%" y="4996" width="1.8015%" height="15" fill="rgb(223,152,4)"/><text x="48.4035%" y="5006.50">w..</text></g><g><title>infer_attribute (astroid/inference.py:316) (83 samples, 1.50%)</title><rect x="48.4597%" y="5012" width="1.4952%" height="15" fill="rgb(245,6,2)"/><text x="48.7097%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (102 samples, 1.84%)</title><rect x="48.1535%" y="4932" width="1.8375%" height="15" fill="rgb(249,150,24)"/><text x="48.4035%" y="4942.50">_..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (106 samples, 1.91%)</title><rect x="48.1535%" y="4900" width="1.9096%" height="15" fill="rgb(228,185,42)"/><text x="48.4035%" y="4910.50">i..</text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (106 samples, 1.91%)</title><rect x="48.1535%" y="4916" width="1.9096%" height="15" fill="rgb(226,39,33)"/><text x="48.4035%" y="4926.50">m..</text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2518) (10 samples, 0.18%)</title><rect x="50.0811%" y="4932" width="0.1801%" height="15" fill="rgb(221,166,19)"/><text x="50.3311%" y="4942.50"></text></g><g><title>implicit_metaclass (astroid/scoped_nodes.py:2741) (10 samples, 0.18%)</title><rect x="50.0811%" y="4948" width="0.1801%" height="15" fill="rgb(209,109,2)"/><text x="50.3311%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="50.4233%" y="5220" width="0.1441%" height="15" fill="rgb(252,216,26)"/><text x="50.6733%" y="5230.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (7 samples, 0.13%)</title><rect x="50.4414%" y="5236" width="0.1261%" height="15" fill="rgb(227,173,36)"/><text x="50.6914%" y="5246.50"></text></g><g><title>copy_context (astroid/context.py:148) (7 samples, 0.13%)</title><rect x="50.4414%" y="5252" width="0.1261%" height="15" fill="rgb(209,90,7)"/><text x="50.6914%" y="5262.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="50.4414%" y="5268" width="0.1261%" height="15" fill="rgb(250,194,11)"/><text x="50.6914%" y="5278.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (22 samples, 0.40%)</title><rect x="50.3333%" y="5108" width="0.3963%" height="15" fill="rgb(220,72,50)"/><text x="50.5833%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="50.3693%" y="5124" width="0.3603%" height="15" fill="rgb(222,106,48)"/><text x="50.6193%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="50.3693%" y="5140" width="0.3603%" height="15" fill="rgb(216,220,45)"/><text x="50.6193%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="50.4053%" y="5156" width="0.3243%" height="15" fill="rgb(234,112,18)"/><text x="50.6553%" y="5166.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (17 samples, 0.31%)</title><rect x="50.4233%" y="5172" width="0.3063%" height="15" fill="rgb(206,179,9)"/><text x="50.6733%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="50.4233%" y="5188" width="0.3063%" height="15" fill="rgb(215,115,40)"/><text x="50.6733%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="50.4233%" y="5204" width="0.3063%" height="15" fill="rgb(222,69,34)"/><text x="50.6733%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="50.5675%" y="5220" width="0.1621%" height="15" fill="rgb(209,161,10)"/><text x="50.8175%" y="5230.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (9 samples, 0.16%)</title><rect x="50.5675%" y="5236" width="0.1621%" height="15" fill="rgb(217,6,38)"/><text x="50.8175%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="50.7296%" y="5172" width="0.1081%" height="15" fill="rgb(229,229,48)"/><text x="50.9796%" y="5182.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (6 samples, 0.11%)</title><rect x="50.7296%" y="5188" width="0.1081%" height="15" fill="rgb(225,21,28)"/><text x="50.9796%" y="5198.50"></text></g><g><title>copy_context (astroid/context.py:148) (6 samples, 0.11%)</title><rect x="50.7296%" y="5204" width="0.1081%" height="15" fill="rgb(206,33,13)"/><text x="50.9796%" y="5214.50"></text></g><g><title>clone (astroid/context.py:106) (6 samples, 0.11%)</title><rect x="50.7296%" y="5220" width="0.1081%" height="15" fill="rgb(242,178,17)"/><text x="50.9796%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (29 samples, 0.52%)</title><rect x="50.3333%" y="5076" width="0.5224%" height="15" fill="rgb(220,162,5)"/><text x="50.5833%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (29 samples, 0.52%)</title><rect x="50.3333%" y="5092" width="0.5224%" height="15" fill="rgb(210,33,43)"/><text x="50.5833%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="50.7296%" y="5108" width="0.1261%" height="15" fill="rgb(216,116,54)"/><text x="50.9796%" y="5118.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="50.7296%" y="5124" width="0.1261%" height="15" fill="rgb(249,92,24)"/><text x="50.9796%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="50.7296%" y="5140" width="0.1261%" height="15" fill="rgb(231,189,14)"/><text x="50.9796%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="50.7296%" y="5156" width="0.1261%" height="15" fill="rgb(230,8,41)"/><text x="50.9796%" y="5166.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (9 samples, 0.16%)</title><rect x="50.8737%" y="5108" width="0.1621%" height="15" fill="rgb(249,7,27)"/><text x="51.1237%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="50.8737%" y="5124" width="0.1621%" height="15" fill="rgb(232,86,5)"/><text x="51.1237%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="50.8737%" y="5140" width="0.1621%" height="15" fill="rgb(224,175,18)"/><text x="51.1237%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="50.8737%" y="5156" width="0.1621%" height="15" fill="rgb(220,129,12)"/><text x="51.1237%" y="5166.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="50.8737%" y="5172" width="0.1621%" height="15" fill="rgb(210,19,36)"/><text x="51.1237%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="50.8737%" y="5188" width="0.1621%" height="15" fill="rgb(219,96,14)"/><text x="51.1237%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="50.8737%" y="5204" width="0.1621%" height="15" fill="rgb(249,106,1)"/><text x="51.1237%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="50.9278%" y="5220" width="0.1081%" height="15" fill="rgb(249,155,20)"/><text x="51.1778%" y="5230.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="50.9278%" y="5236" width="0.1081%" height="15" fill="rgb(244,168,9)"/><text x="51.1778%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (40 samples, 0.72%)</title><rect x="50.3333%" y="5044" width="0.7206%" height="15" fill="rgb(216,23,50)"/><text x="50.5833%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (40 samples, 0.72%)</title><rect x="50.3333%" y="5060" width="0.7206%" height="15" fill="rgb(224,219,20)"/><text x="50.5833%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (11 samples, 0.20%)</title><rect x="50.8557%" y="5076" width="0.1982%" height="15" fill="rgb(222,156,15)"/><text x="51.1057%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="50.8737%" y="5092" width="0.1801%" height="15" fill="rgb(231,97,17)"/><text x="51.1237%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="51.0539%" y="5044" width="0.1441%" height="15" fill="rgb(218,70,48)"/><text x="51.3039%" y="5054.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (53 samples, 0.95%)</title><rect x="50.2612%" y="4932" width="0.9548%" height="15" fill="rgb(212,196,52)"/><text x="50.5112%" y="4942.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (53 samples, 0.95%)</title><rect x="50.2612%" y="4948" width="0.9548%" height="15" fill="rgb(243,203,18)"/><text x="50.5112%" y="4958.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (53 samples, 0.95%)</title><rect x="50.2612%" y="4964" width="0.9548%" height="15" fill="rgb(252,125,41)"/><text x="50.5112%" y="4974.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (53 samples, 0.95%)</title><rect x="50.2612%" y="4980" width="0.9548%" height="15" fill="rgb(223,180,33)"/><text x="50.5112%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (53 samples, 0.95%)</title><rect x="50.2612%" y="4996" width="0.9548%" height="15" fill="rgb(254,159,46)"/><text x="50.5112%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (53 samples, 0.95%)</title><rect x="50.2612%" y="5012" width="0.9548%" height="15" fill="rgb(254,38,10)"/><text x="50.5112%" y="5022.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (53 samples, 0.95%)</title><rect x="50.2612%" y="5028" width="0.9548%" height="15" fill="rgb(208,217,32)"/><text x="50.5112%" y="5038.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="51.2340%" y="4980" width="0.1801%" height="15" fill="rgb(221,120,13)"/><text x="51.4840%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="51.3061%" y="4996" width="0.1081%" height="15" fill="rgb(246,54,52)"/><text x="51.5561%" y="5006.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (11 samples, 0.20%)</title><rect x="51.2340%" y="4964" width="0.1982%" height="15" fill="rgb(242,34,25)"/><text x="51.4840%" y="4974.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (81 samples, 1.46%)</title><rect x="50.0631%" y="4900" width="1.4592%" height="15" fill="rgb(247,209,9)"/><text x="50.3131%" y="4910.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (80 samples, 1.44%)</title><rect x="50.0811%" y="4916" width="1.4412%" height="15" fill="rgb(228,71,26)"/><text x="50.3311%" y="4926.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (17 samples, 0.31%)</title><rect x="51.2160%" y="4932" width="0.3063%" height="15" fill="rgb(222,145,49)"/><text x="51.4660%" y="4942.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (16 samples, 0.29%)</title><rect x="51.2340%" y="4948" width="0.2882%" height="15" fill="rgb(218,121,17)"/><text x="51.4840%" y="4958.50"></text></g><g><title>infer_call (astroid/inference.py:223) (240 samples, 4.32%)</title><rect x="47.2347%" y="4820" width="4.3235%" height="15" fill="rgb(244,50,7)"/><text x="47.4847%" y="4830.50">infer..</text></g><g><title>infer (astroid/node_classes.py:380) (240 samples, 4.32%)</title><rect x="47.2347%" y="4836" width="4.3235%" height="15" fill="rgb(246,229,37)"/><text x="47.4847%" y="4846.50">infer..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (240 samples, 4.32%)</title><rect x="47.2347%" y="4852" width="4.3235%" height="15" fill="rgb(225,18,5)"/><text x="47.4847%" y="4862.50">raise..</text></g><g><title>wrapped (astroid/decorators.py:99) (239 samples, 4.31%)</title><rect x="47.2527%" y="4868" width="4.3055%" height="15" fill="rgb(213,204,8)"/><text x="47.5027%" y="4878.50">wrapp..</text></g><g><title>infer_attribute (astroid/inference.py:316) (192 samples, 3.46%)</title><rect x="48.0994%" y="4884" width="3.4588%" height="15" fill="rgb(238,103,6)"/><text x="48.3494%" y="4894.50">inf..</text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="52.0086%" y="5252" width="0.1441%" height="15" fill="rgb(222,25,35)"/><text x="52.2586%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="52.0086%" y="5268" width="0.1441%" height="15" fill="rgb(213,203,35)"/><text x="52.2586%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="52.0086%" y="5284" width="0.1441%" height="15" fill="rgb(221,79,53)"/><text x="52.2586%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="52.0086%" y="5300" width="0.1441%" height="15" fill="rgb(243,200,35)"/><text x="52.2586%" y="5310.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="52.0267%" y="5316" width="0.1261%" height="15" fill="rgb(248,60,25)"/><text x="52.2767%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="52.0447%" y="5332" width="0.1081%" height="15" fill="rgb(227,53,46)"/><text x="52.2947%" y="5342.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="52.0447%" y="5348" width="0.1081%" height="15" fill="rgb(216,120,32)"/><text x="52.2947%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="51.9906%" y="5220" width="0.2522%" height="15" fill="rgb(220,134,1)"/><text x="52.2406%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="52.0086%" y="5236" width="0.2342%" height="15" fill="rgb(237,168,5)"/><text x="52.2586%" y="5246.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (24 samples, 0.43%)</title><rect x="51.9726%" y="5108" width="0.4324%" height="15" fill="rgb(231,100,33)"/><text x="52.2226%" y="5118.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (24 samples, 0.43%)</title><rect x="51.9726%" y="5124" width="0.4324%" height="15" fill="rgb(236,177,47)"/><text x="52.2226%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:366) (24 samples, 0.43%)</title><rect x="51.9726%" y="5140" width="0.4324%" height="15" fill="rgb(235,7,49)"/><text x="52.2226%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (24 samples, 0.43%)</title><rect x="51.9726%" y="5156" width="0.4324%" height="15" fill="rgb(232,119,22)"/><text x="52.2226%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (24 samples, 0.43%)</title><rect x="51.9726%" y="5172" width="0.4324%" height="15" fill="rgb(254,73,53)"/><text x="52.2226%" y="5182.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (23 samples, 0.41%)</title><rect x="51.9906%" y="5188" width="0.4143%" height="15" fill="rgb(251,35,20)"/><text x="52.2406%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="51.9906%" y="5204" width="0.4143%" height="15" fill="rgb(241,119,20)"/><text x="52.2406%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="52.2428%" y="5220" width="0.1621%" height="15" fill="rgb(207,102,14)"/><text x="52.4928%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="52.2428%" y="5236" width="0.1621%" height="15" fill="rgb(248,201,50)"/><text x="52.4928%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="52.2789%" y="5252" width="0.1261%" height="15" fill="rgb(222,185,44)"/><text x="52.5289%" y="5262.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="52.2789%" y="5268" width="0.1261%" height="15" fill="rgb(218,107,18)"/><text x="52.5289%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="52.2789%" y="5284" width="0.1261%" height="15" fill="rgb(237,177,39)"/><text x="52.5289%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="52.2789%" y="5300" width="0.1261%" height="15" fill="rgb(246,69,6)"/><text x="52.5289%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="52.4410%" y="5364" width="0.1081%" height="15" fill="rgb(234,208,37)"/><text x="52.6910%" y="5374.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="52.4410%" y="5252" width="0.1261%" height="15" fill="rgb(225,4,6)"/><text x="52.6910%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="52.4410%" y="5268" width="0.1261%" height="15" fill="rgb(233,45,0)"/><text x="52.6910%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="52.4410%" y="5284" width="0.1261%" height="15" fill="rgb(226,136,5)"/><text x="52.6910%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="52.4410%" y="5300" width="0.1261%" height="15" fill="rgb(211,91,47)"/><text x="52.6910%" y="5310.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="52.4410%" y="5316" width="0.1261%" height="15" fill="rgb(242,88,51)"/><text x="52.6910%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="52.4410%" y="5332" width="0.1261%" height="15" fill="rgb(230,91,28)"/><text x="52.6910%" y="5342.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="52.4410%" y="5348" width="0.1261%" height="15" fill="rgb(254,186,29)"/><text x="52.6910%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="52.4410%" y="5220" width="0.1441%" height="15" fill="rgb(238,6,4)"/><text x="52.6910%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="52.4410%" y="5236" width="0.1441%" height="15" fill="rgb(221,151,16)"/><text x="52.6910%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (15 samples, 0.27%)</title><rect x="52.4230%" y="5188" width="0.2702%" height="15" fill="rgb(251,143,52)"/><text x="52.6730%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="52.4410%" y="5204" width="0.2522%" height="15" fill="rgb(206,90,15)"/><text x="52.6910%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="52.5851%" y="5220" width="0.1081%" height="15" fill="rgb(218,35,8)"/><text x="52.8351%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (52 samples, 0.94%)</title><rect x="51.7925%" y="5012" width="0.9368%" height="15" fill="rgb(239,215,6)"/><text x="52.0425%" y="5022.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (52 samples, 0.94%)</title><rect x="51.7925%" y="5028" width="0.9368%" height="15" fill="rgb(245,116,39)"/><text x="52.0425%" y="5038.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (51 samples, 0.92%)</title><rect x="51.8105%" y="5044" width="0.9188%" height="15" fill="rgb(242,65,28)"/><text x="52.0605%" y="5054.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (43 samples, 0.77%)</title><rect x="51.9546%" y="5060" width="0.7746%" height="15" fill="rgb(252,132,53)"/><text x="52.2046%" y="5070.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (42 samples, 0.76%)</title><rect x="51.9726%" y="5076" width="0.7566%" height="15" fill="rgb(224,159,50)"/><text x="52.2226%" y="5086.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (42 samples, 0.76%)</title><rect x="51.9726%" y="5092" width="0.7566%" height="15" fill="rgb(224,93,4)"/><text x="52.2226%" y="5102.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (18 samples, 0.32%)</title><rect x="52.4050%" y="5108" width="0.3243%" height="15" fill="rgb(208,81,34)"/><text x="52.6550%" y="5118.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (18 samples, 0.32%)</title><rect x="52.4050%" y="5124" width="0.3243%" height="15" fill="rgb(233,92,54)"/><text x="52.6550%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="52.4050%" y="5140" width="0.3243%" height="15" fill="rgb(237,21,14)"/><text x="52.6550%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="52.4050%" y="5156" width="0.3243%" height="15" fill="rgb(249,128,51)"/><text x="52.6550%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="52.4230%" y="5172" width="0.3063%" height="15" fill="rgb(223,129,24)"/><text x="52.6730%" y="5182.50"></text></g><g><title>infer_call (astroid/inference.py:223) (63 samples, 1.13%)</title><rect x="51.6123%" y="4900" width="1.1349%" height="15" fill="rgb(231,168,25)"/><text x="51.8623%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (62 samples, 1.12%)</title><rect x="51.6303%" y="4916" width="1.1169%" height="15" fill="rgb(224,39,20)"/><text x="51.8803%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (62 samples, 1.12%)</title><rect x="51.6303%" y="4932" width="1.1169%" height="15" fill="rgb(225,152,53)"/><text x="51.8803%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (57 samples, 1.03%)</title><rect x="51.7204%" y="4948" width="1.0268%" height="15" fill="rgb(252,17,24)"/><text x="51.9704%" y="4958.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (55 samples, 0.99%)</title><rect x="51.7564%" y="4964" width="0.9908%" height="15" fill="rgb(250,114,30)"/><text x="52.0064%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (55 samples, 0.99%)</title><rect x="51.7564%" y="4980" width="0.9908%" height="15" fill="rgb(229,5,4)"/><text x="52.0064%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (53 samples, 0.95%)</title><rect x="51.7925%" y="4996" width="0.9548%" height="15" fill="rgb(225,176,49)"/><text x="52.0425%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="52.8013%" y="5188" width="0.1441%" height="15" fill="rgb(224,221,49)"/><text x="53.0513%" y="5198.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (7 samples, 0.13%)</title><rect x="52.8193%" y="5204" width="0.1261%" height="15" fill="rgb(253,169,27)"/><text x="53.0693%" y="5214.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:588) (6 samples, 0.11%)</title><rect x="52.8373%" y="5220" width="0.1081%" height="15" fill="rgb(211,206,16)"/><text x="53.0873%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:374) (8 samples, 0.14%)</title><rect x="52.9634%" y="5220" width="0.1441%" height="15" fill="rgb(244,87,35)"/><text x="53.2134%" y="5230.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (18 samples, 0.32%)</title><rect x="52.8013%" y="5076" width="0.3243%" height="15" fill="rgb(246,28,10)"/><text x="53.0513%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="52.8013%" y="5092" width="0.3243%" height="15" fill="rgb(229,12,44)"/><text x="53.0513%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="52.8013%" y="5108" width="0.3243%" height="15" fill="rgb(210,145,37)"/><text x="53.0513%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="52.8013%" y="5124" width="0.3243%" height="15" fill="rgb(227,112,52)"/><text x="53.0513%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (18 samples, 0.32%)</title><rect x="52.8013%" y="5140" width="0.3243%" height="15" fill="rgb(238,155,34)"/><text x="53.0513%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="52.8013%" y="5156" width="0.3243%" height="15" fill="rgb(239,226,36)"/><text x="53.0513%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="52.8013%" y="5172" width="0.3243%" height="15" fill="rgb(230,16,23)"/><text x="53.0513%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="52.9454%" y="5188" width="0.1801%" height="15" fill="rgb(236,171,36)"/><text x="53.1954%" y="5198.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="52.9634%" y="5204" width="0.1621%" height="15" fill="rgb(221,22,14)"/><text x="53.2134%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (28 samples, 0.50%)</title><rect x="52.8013%" y="5044" width="0.5044%" height="15" fill="rgb(242,43,11)"/><text x="53.0513%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (28 samples, 0.50%)</title><rect x="52.8013%" y="5060" width="0.5044%" height="15" fill="rgb(232,69,23)"/><text x="53.0513%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="53.1796%" y="5076" width="0.1261%" height="15" fill="rgb(216,180,54)"/><text x="53.4296%" y="5086.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="53.1796%" y="5092" width="0.1261%" height="15" fill="rgb(216,5,24)"/><text x="53.4296%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="53.1796%" y="5108" width="0.1261%" height="15" fill="rgb(225,89,9)"/><text x="53.4296%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="53.1796%" y="5124" width="0.1261%" height="15" fill="rgb(243,75,33)"/><text x="53.4296%" y="5134.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (37 samples, 0.67%)</title><rect x="52.7473%" y="4916" width="0.6665%" height="15" fill="rgb(247,141,45)"/><text x="52.9973%" y="4926.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (37 samples, 0.67%)</title><rect x="52.7473%" y="4932" width="0.6665%" height="15" fill="rgb(232,177,36)"/><text x="52.9973%" y="4942.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (35 samples, 0.63%)</title><rect x="52.7833%" y="4948" width="0.6305%" height="15" fill="rgb(219,125,36)"/><text x="53.0333%" y="4958.50"></text></g><g><title>infer (astroid/node_classes.py:380) (35 samples, 0.63%)</title><rect x="52.7833%" y="4964" width="0.6305%" height="15" fill="rgb(227,94,9)"/><text x="53.0333%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (35 samples, 0.63%)</title><rect x="52.7833%" y="4980" width="0.6305%" height="15" fill="rgb(240,34,52)"/><text x="53.0333%" y="4990.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (34 samples, 0.61%)</title><rect x="52.8013%" y="4996" width="0.6125%" height="15" fill="rgb(216,45,12)"/><text x="53.0513%" y="5006.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (34 samples, 0.61%)</title><rect x="52.8013%" y="5012" width="0.6125%" height="15" fill="rgb(246,21,19)"/><text x="53.0513%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (34 samples, 0.61%)</title><rect x="52.8013%" y="5028" width="0.6125%" height="15" fill="rgb(213,98,42)"/><text x="53.0513%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="53.3057%" y="5044" width="0.1081%" height="15" fill="rgb(250,136,47)"/><text x="53.5557%" y="5054.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="53.3057%" y="5060" width="0.1081%" height="15" fill="rgb(251,124,27)"/><text x="53.5557%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="53.6300%" y="5220" width="0.1441%" height="15" fill="rgb(229,180,14)"/><text x="53.8800%" y="5230.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (6 samples, 0.11%)</title><rect x="53.6660%" y="5236" width="0.1081%" height="15" fill="rgb(245,216,25)"/><text x="53.9160%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (13 samples, 0.23%)</title><rect x="53.5939%" y="5108" width="0.2342%" height="15" fill="rgb(251,43,5)"/><text x="53.8439%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="53.5939%" y="5124" width="0.2342%" height="15" fill="rgb(250,128,24)"/><text x="53.8439%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="53.5939%" y="5140" width="0.2342%" height="15" fill="rgb(217,117,27)"/><text x="53.8439%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="53.6300%" y="5156" width="0.1982%" height="15" fill="rgb(245,147,4)"/><text x="53.8800%" y="5166.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="53.6300%" y="5172" width="0.1982%" height="15" fill="rgb(242,201,35)"/><text x="53.8800%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="53.6300%" y="5188" width="0.1982%" height="15" fill="rgb(218,181,1)"/><text x="53.8800%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="53.6300%" y="5204" width="0.1982%" height="15" fill="rgb(222,6,29)"/><text x="53.8800%" y="5214.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (16 samples, 0.29%)</title><rect x="53.5579%" y="5044" width="0.2882%" height="15" fill="rgb(208,186,3)"/><text x="53.8079%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="53.5579%" y="5060" width="0.2882%" height="15" fill="rgb(216,36,26)"/><text x="53.8079%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="53.5579%" y="5076" width="0.2882%" height="15" fill="rgb(248,201,23)"/><text x="53.8079%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="53.5939%" y="5092" width="0.2522%" height="15" fill="rgb(251,170,31)"/><text x="53.8439%" y="5102.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (24 samples, 0.43%)</title><rect x="53.5399%" y="4964" width="0.4324%" height="15" fill="rgb(207,110,25)"/><text x="53.7899%" y="4974.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (24 samples, 0.43%)</title><rect x="53.5399%" y="4980" width="0.4324%" height="15" fill="rgb(250,54,15)"/><text x="53.7899%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (24 samples, 0.43%)</title><rect x="53.5399%" y="4996" width="0.4324%" height="15" fill="rgb(227,68,33)"/><text x="53.7899%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (24 samples, 0.43%)</title><rect x="53.5399%" y="5012" width="0.4324%" height="15" fill="rgb(238,34,41)"/><text x="53.7899%" y="5022.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="53.5579%" y="5028" width="0.4143%" height="15" fill="rgb(220,11,15)"/><text x="53.8079%" y="5038.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="53.8462%" y="5044" width="0.1261%" height="15" fill="rgb(246,111,35)"/><text x="54.0962%" y="5054.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (7 samples, 0.13%)</title><rect x="53.8462%" y="5060" width="0.1261%" height="15" fill="rgb(209,88,53)"/><text x="54.0962%" y="5070.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (7 samples, 0.13%)</title><rect x="53.8462%" y="5076" width="0.1261%" height="15" fill="rgb(231,185,47)"/><text x="54.0962%" y="5086.50"></text></g><g><title>__repr__ (astroid/node_classes.py:432) (7 samples, 0.13%)</title><rect x="53.8462%" y="5092" width="0.1261%" height="15" fill="rgb(233,154,1)"/><text x="54.0962%" y="5102.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (640 samples, 11.53%)</title><rect x="42.4608%" y="4548" width="11.5295%" height="15" fill="rgb(225,15,46)"/><text x="42.7108%" y="4558.50">infer_attribute (..</text></g><g><title>infer (astroid/node_classes.py:380) (640 samples, 11.53%)</title><rect x="42.4608%" y="4564" width="11.5295%" height="15" fill="rgb(211,135,41)"/><text x="42.7108%" y="4574.50">infer (astroid/no..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (640 samples, 11.53%)</title><rect x="42.4608%" y="4580" width="11.5295%" height="15" fill="rgb(208,54,0)"/><text x="42.7108%" y="4590.50">raise_if_nothing_..</text></g><g><title>wrapped (astroid/decorators.py:99) (640 samples, 11.53%)</title><rect x="42.4608%" y="4596" width="11.5295%" height="15" fill="rgb(244,136,14)"/><text x="42.7108%" y="4606.50">wrapped (astroid/..</text></g><g><title>infer_call (astroid/inference.py:229) (385 samples, 6.94%)</title><rect x="47.0546%" y="4612" width="6.9357%" height="15" fill="rgb(241,56,14)"/><text x="47.3046%" y="4622.50">infer_cal..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (379 samples, 6.83%)</title><rect x="47.1627%" y="4628" width="6.8276%" height="15" fill="rgb(205,80,24)"/><text x="47.4127%" y="4638.50">infer_cal..</text></g><g><title>infer (astroid/node_classes.py:380) (379 samples, 6.83%)</title><rect x="47.1627%" y="4644" width="6.8276%" height="15" fill="rgb(220,57,4)"/><text x="47.4127%" y="4654.50">infer (as..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (379 samples, 6.83%)</title><rect x="47.1627%" y="4660" width="6.8276%" height="15" fill="rgb(226,193,50)"/><text x="47.4127%" y="4670.50">raise_if_..</text></g><g><title>wrapped (astroid/decorators.py:99) (379 samples, 6.83%)</title><rect x="47.1627%" y="4676" width="6.8276%" height="15" fill="rgb(231,168,22)"/><text x="47.4127%" y="4686.50">wrapped (..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (379 samples, 6.83%)</title><rect x="47.1627%" y="4692" width="6.8276%" height="15" fill="rgb(254,215,14)"/><text x="47.4127%" y="4702.50">_infer_st..</text></g><g><title>infer (astroid/node_classes.py:380) (379 samples, 6.83%)</title><rect x="47.1627%" y="4708" width="6.8276%" height="15" fill="rgb(211,115,16)"/><text x="47.4127%" y="4718.50">infer (as..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (378 samples, 6.81%)</title><rect x="47.1807%" y="4724" width="6.8096%" height="15" fill="rgb(236,210,16)"/><text x="47.4307%" y="4734.50">raise_if_..</text></g><g><title>wrapped (astroid/decorators.py:99) (376 samples, 6.77%)</title><rect x="47.2167%" y="4740" width="6.7736%" height="15" fill="rgb(221,94,12)"/><text x="47.4667%" y="4750.50">wrapped (..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (376 samples, 6.77%)</title><rect x="47.2167%" y="4756" width="6.7736%" height="15" fill="rgb(235,218,49)"/><text x="47.4667%" y="4766.50">_infer_st..</text></g><g><title>infer (astroid/node_classes.py:380) (375 samples, 6.76%)</title><rect x="47.2347%" y="4772" width="6.7555%" height="15" fill="rgb(217,114,14)"/><text x="47.4847%" y="4782.50">infer (as..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (375 samples, 6.76%)</title><rect x="47.2347%" y="4788" width="6.7555%" height="15" fill="rgb(216,145,22)"/><text x="47.4847%" y="4798.50">raise_if_..</text></g><g><title>wrapped (astroid/decorators.py:99) (375 samples, 6.76%)</title><rect x="47.2347%" y="4804" width="6.7555%" height="15" fill="rgb(217,112,39)"/><text x="47.4847%" y="4814.50">wrapped (..</text></g><g><title>infer_call (astroid/inference.py:229) (135 samples, 2.43%)</title><rect x="51.5583%" y="4820" width="2.4320%" height="15" fill="rgb(225,85,32)"/><text x="51.8083%" y="4830.50">in..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (135 samples, 2.43%)</title><rect x="51.5583%" y="4836" width="2.4320%" height="15" fill="rgb(245,209,47)"/><text x="51.8083%" y="4846.50">in..</text></g><g><title>infer (astroid/node_classes.py:380) (135 samples, 2.43%)</title><rect x="51.5583%" y="4852" width="2.4320%" height="15" fill="rgb(218,220,15)"/><text x="51.8083%" y="4862.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (135 samples, 2.43%)</title><rect x="51.5583%" y="4868" width="2.4320%" height="15" fill="rgb(222,202,31)"/><text x="51.8083%" y="4878.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (135 samples, 2.43%)</title><rect x="51.5583%" y="4884" width="2.4320%" height="15" fill="rgb(243,203,4)"/><text x="51.8083%" y="4894.50">wr..</text></g><g><title>infer_call (astroid/inference.py:229) (69 samples, 1.24%)</title><rect x="52.7473%" y="4900" width="1.2430%" height="15" fill="rgb(237,92,17)"/><text x="52.9973%" y="4910.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (27 samples, 0.49%)</title><rect x="53.5039%" y="4916" width="0.4864%" height="15" fill="rgb(231,119,7)"/><text x="53.7539%" y="4926.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (27 samples, 0.49%)</title><rect x="53.5039%" y="4932" width="0.4864%" height="15" fill="rgb(237,82,41)"/><text x="53.7539%" y="4942.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (25 samples, 0.45%)</title><rect x="53.5399%" y="4948" width="0.4504%" height="15" fill="rgb(226,81,48)"/><text x="53.7899%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="54.0623%" y="4756" width="0.1081%" height="15" fill="rgb(234,70,51)"/><text x="54.3123%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="54.0623%" y="4772" width="0.1081%" height="15" fill="rgb(251,86,4)"/><text x="54.3123%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="54.0623%" y="4788" width="0.1081%" height="15" fill="rgb(244,144,28)"/><text x="54.3123%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="54.0623%" y="4724" width="0.2162%" height="15" fill="rgb(232,161,39)"/><text x="54.3123%" y="4734.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="54.0623%" y="4740" width="0.2162%" height="15" fill="rgb(247,34,51)"/><text x="54.3123%" y="4750.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="54.1704%" y="4756" width="0.1081%" height="15" fill="rgb(225,132,2)"/><text x="54.4204%" y="4766.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="54.2785%" y="4756" width="0.1441%" height="15" fill="rgb(209,159,44)"/><text x="54.5285%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="54.2785%" y="4772" width="0.1441%" height="15" fill="rgb(251,214,1)"/><text x="54.5285%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (8 samples, 0.14%)</title><rect x="54.2785%" y="4788" width="0.1441%" height="15" fill="rgb(247,84,47)"/><text x="54.5285%" y="4798.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="54.2785%" y="4804" width="0.1441%" height="15" fill="rgb(240,111,43)"/><text x="54.5285%" y="4814.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (23 samples, 0.41%)</title><rect x="54.0623%" y="4692" width="0.4143%" height="15" fill="rgb(215,214,35)"/><text x="54.3123%" y="4702.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="54.0623%" y="4708" width="0.4143%" height="15" fill="rgb(248,207,23)"/><text x="54.3123%" y="4718.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (11 samples, 0.20%)</title><rect x="54.2785%" y="4724" width="0.1982%" height="15" fill="rgb(214,186,4)"/><text x="54.5285%" y="4734.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="54.2785%" y="4740" width="0.1982%" height="15" fill="rgb(220,133,22)"/><text x="54.5285%" y="4750.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (25 samples, 0.45%)</title><rect x="54.0623%" y="4628" width="0.4504%" height="15" fill="rgb(239,134,19)"/><text x="54.3123%" y="4638.50"></text></g><g><title>infer (astroid/node_classes.py:380) (25 samples, 0.45%)</title><rect x="54.0623%" y="4644" width="0.4504%" height="15" fill="rgb(250,140,9)"/><text x="54.3123%" y="4654.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="54.0623%" y="4660" width="0.4504%" height="15" fill="rgb(225,59,14)"/><text x="54.3123%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="54.0623%" y="4676" width="0.4504%" height="15" fill="rgb(214,152,51)"/><text x="54.3123%" y="4686.50"></text></g><g><title>igetattr (astroid/bases.py:221) (27 samples, 0.49%)</title><rect x="54.0443%" y="4564" width="0.4864%" height="15" fill="rgb(251,227,43)"/><text x="54.2943%" y="4574.50"></text></g><g><title>getattr (astroid/bases.py:182) (27 samples, 0.49%)</title><rect x="54.0443%" y="4580" width="0.4864%" height="15" fill="rgb(241,96,17)"/><text x="54.2943%" y="4590.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (27 samples, 0.49%)</title><rect x="54.0443%" y="4596" width="0.4864%" height="15" fill="rgb(234,198,43)"/><text x="54.2943%" y="4606.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (27 samples, 0.49%)</title><rect x="54.0443%" y="4612" width="0.4864%" height="15" fill="rgb(220,108,29)"/><text x="54.2943%" y="4622.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (7 samples, 0.13%)</title><rect x="54.5307%" y="4580" width="0.1261%" height="15" fill="rgb(226,163,33)"/><text x="54.7807%" y="4590.50"></text></g><g><title>infer_call (astroid/inference.py:223) (686 samples, 12.36%)</title><rect x="42.3888%" y="4484" width="12.3581%" height="15" fill="rgb(205,194,45)"/><text x="42.6388%" y="4494.50">infer_call (astroi..</text></g><g><title>infer (astroid/node_classes.py:380) (686 samples, 12.36%)</title><rect x="42.3888%" y="4500" width="12.3581%" height="15" fill="rgb(206,143,44)"/><text x="42.6388%" y="4510.50">infer (astroid/nod..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (686 samples, 12.36%)</title><rect x="42.3888%" y="4516" width="12.3581%" height="15" fill="rgb(236,136,36)"/><text x="42.6388%" y="4526.50">raise_if_nothing_i..</text></g><g><title>wrapped (astroid/decorators.py:99) (686 samples, 12.36%)</title><rect x="42.3888%" y="4532" width="12.3581%" height="15" fill="rgb(249,172,42)"/><text x="42.6388%" y="4542.50">wrapped (astroid/d..</text></g><g><title>infer_attribute (astroid/inference.py:316) (39 samples, 0.70%)</title><rect x="54.0443%" y="4548" width="0.7026%" height="15" fill="rgb(216,139,23)"/><text x="54.2943%" y="4558.50"></text></g><g><title>igetattr (astroid/bases.py:233) (12 samples, 0.22%)</title><rect x="54.5307%" y="4564" width="0.2162%" height="15" fill="rgb(207,166,20)"/><text x="54.7807%" y="4574.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="54.9811%" y="4932" width="0.1081%" height="15" fill="rgb(210,209,22)"/><text x="55.2311%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="54.9811%" y="4948" width="0.1081%" height="15" fill="rgb(232,118,20)"/><text x="55.2311%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="54.9811%" y="4964" width="0.1081%" height="15" fill="rgb(238,113,42)"/><text x="55.2311%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="54.9811%" y="4980" width="0.1081%" height="15" fill="rgb(231,42,5)"/><text x="55.2311%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="54.9811%" y="4996" width="0.1081%" height="15" fill="rgb(243,166,24)"/><text x="55.2311%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="54.9811%" y="5012" width="0.1081%" height="15" fill="rgb(237,226,12)"/><text x="55.2311%" y="5022.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="54.9811%" y="4900" width="0.1261%" height="15" fill="rgb(229,133,24)"/><text x="55.2311%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="54.9811%" y="4916" width="0.1261%" height="15" fill="rgb(238,33,43)"/><text x="55.2311%" y="4926.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="55.1072%" y="4900" width="0.1081%" height="15" fill="rgb(227,59,38)"/><text x="55.3572%" y="4910.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (14 samples, 0.25%)</title><rect x="54.9811%" y="4836" width="0.2522%" height="15" fill="rgb(230,97,0)"/><text x="55.2311%" y="4846.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="54.9811%" y="4852" width="0.2522%" height="15" fill="rgb(250,173,50)"/><text x="55.2311%" y="4862.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="54.9811%" y="4868" width="0.2522%" height="15" fill="rgb(240,15,50)"/><text x="55.2311%" y="4878.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="54.9811%" y="4884" width="0.2522%" height="15" fill="rgb(221,93,22)"/><text x="55.2311%" y="4894.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (16 samples, 0.29%)</title><rect x="54.9811%" y="4804" width="0.2882%" height="15" fill="rgb(245,180,53)"/><text x="55.2311%" y="4814.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (16 samples, 0.29%)</title><rect x="54.9811%" y="4820" width="0.2882%" height="15" fill="rgb(231,88,51)"/><text x="55.2311%" y="4830.50"></text></g><g><title>igetattr (astroid/bases.py:221) (17 samples, 0.31%)</title><rect x="54.9811%" y="4772" width="0.3063%" height="15" fill="rgb(240,58,21)"/><text x="55.2311%" y="4782.50"></text></g><g><title>getattr (astroid/bases.py:182) (17 samples, 0.31%)</title><rect x="54.9811%" y="4788" width="0.3063%" height="15" fill="rgb(237,21,10)"/><text x="55.2311%" y="4798.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (721 samples, 12.99%)</title><rect x="42.3707%" y="4452" width="12.9887%" height="15" fill="rgb(218,43,11)"/><text x="42.6207%" y="4462.50">raise_if_nothing_inf..</text></g><g><title>wrapped (astroid/decorators.py:99) (721 samples, 12.99%)</title><rect x="42.3707%" y="4468" width="12.9887%" height="15" fill="rgb(218,221,29)"/><text x="42.6207%" y="4478.50">wrapped (astroid/dec..</text></g><g><title>infer_call (astroid/inference.py:229) (34 samples, 0.61%)</title><rect x="54.7469%" y="4484" width="0.6125%" height="15" fill="rgb(214,118,42)"/><text x="54.9969%" y="4494.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (33 samples, 0.59%)</title><rect x="54.7649%" y="4500" width="0.5945%" height="15" fill="rgb(251,200,26)"/><text x="55.0149%" y="4510.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="54.7649%" y="4516" width="0.5945%" height="15" fill="rgb(237,101,39)"/><text x="55.0149%" y="4526.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="54.7649%" y="4532" width="0.5945%" height="15" fill="rgb(251,117,11)"/><text x="55.0149%" y="4542.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="54.7649%" y="4548" width="0.5945%" height="15" fill="rgb(216,223,23)"/><text x="55.0149%" y="4558.50"></text></g><g><title>infer_call (astroid/inference.py:223) (33 samples, 0.59%)</title><rect x="54.7649%" y="4564" width="0.5945%" height="15" fill="rgb(251,54,12)"/><text x="55.0149%" y="4574.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="54.7649%" y="4580" width="0.5945%" height="15" fill="rgb(254,176,54)"/><text x="55.0149%" y="4590.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="54.7649%" y="4596" width="0.5945%" height="15" fill="rgb(210,32,8)"/><text x="55.0149%" y="4606.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="54.7649%" y="4612" width="0.5945%" height="15" fill="rgb(235,52,38)"/><text x="55.0149%" y="4622.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (33 samples, 0.59%)</title><rect x="54.7649%" y="4628" width="0.5945%" height="15" fill="rgb(231,4,44)"/><text x="55.0149%" y="4638.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="54.7649%" y="4644" width="0.5945%" height="15" fill="rgb(249,2,32)"/><text x="55.0149%" y="4654.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="54.7649%" y="4660" width="0.5945%" height="15" fill="rgb(224,65,26)"/><text x="55.0149%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="54.7649%" y="4676" width="0.5945%" height="15" fill="rgb(250,73,40)"/><text x="55.0149%" y="4686.50"></text></g><g><title>infer_subscript (astroid/inference.py:364) (33 samples, 0.59%)</title><rect x="54.7649%" y="4692" width="0.5945%" height="15" fill="rgb(253,177,16)"/><text x="55.0149%" y="4702.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="54.7649%" y="4708" width="0.5945%" height="15" fill="rgb(217,32,34)"/><text x="55.0149%" y="4718.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="54.7649%" y="4724" width="0.5945%" height="15" fill="rgb(212,7,10)"/><text x="55.0149%" y="4734.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="54.7649%" y="4740" width="0.5945%" height="15" fill="rgb(245,89,8)"/><text x="55.0149%" y="4750.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (21 samples, 0.38%)</title><rect x="54.9811%" y="4756" width="0.3783%" height="15" fill="rgb(237,16,53)"/><text x="55.2311%" y="4766.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="55.5215%" y="4740" width="0.1081%" height="15" fill="rgb(250,204,30)"/><text x="55.7715%" y="4750.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="55.5215%" y="4756" width="0.1081%" height="15" fill="rgb(208,77,27)"/><text x="55.7715%" y="4766.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="55.5215%" y="4772" width="0.1081%" height="15" fill="rgb(250,204,28)"/><text x="55.7715%" y="4782.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="55.7017%" y="4836" width="0.1621%" height="15" fill="rgb(244,63,21)"/><text x="55.9517%" y="4846.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (8 samples, 0.14%)</title><rect x="55.7197%" y="4852" width="0.1441%" height="15" fill="rgb(236,85,44)"/><text x="55.9697%" y="4862.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (14 samples, 0.25%)</title><rect x="55.6296%" y="4756" width="0.2522%" height="15" fill="rgb(215,98,4)"/><text x="55.8796%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="55.6476%" y="4772" width="0.2342%" height="15" fill="rgb(235,38,11)"/><text x="55.8976%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (13 samples, 0.23%)</title><rect x="55.6476%" y="4788" width="0.2342%" height="15" fill="rgb(254,186,25)"/><text x="55.8976%" y="4798.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="55.6476%" y="4804" width="0.2342%" height="15" fill="rgb(225,55,31)"/><text x="55.8976%" y="4814.50"></text></g><g><title>infer_call (astroid/inference.py:223) (13 samples, 0.23%)</title><rect x="55.6476%" y="4820" width="0.2342%" height="15" fill="rgb(211,15,21)"/><text x="55.8976%" y="4830.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="55.5215%" y="4628" width="0.4143%" height="15" fill="rgb(215,187,41)"/><text x="55.7715%" y="4638.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (23 samples, 0.41%)</title><rect x="55.5215%" y="4644" width="0.4143%" height="15" fill="rgb(248,69,32)"/><text x="55.7715%" y="4654.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="55.5215%" y="4660" width="0.4143%" height="15" fill="rgb(252,102,52)"/><text x="55.7715%" y="4670.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (23 samples, 0.41%)</title><rect x="55.5215%" y="4676" width="0.4143%" height="15" fill="rgb(253,140,32)"/><text x="55.7715%" y="4686.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="55.5215%" y="4692" width="0.4143%" height="15" fill="rgb(216,56,42)"/><text x="55.7715%" y="4702.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (23 samples, 0.41%)</title><rect x="55.5215%" y="4708" width="0.4143%" height="15" fill="rgb(216,184,14)"/><text x="55.7715%" y="4718.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="55.5215%" y="4724" width="0.4143%" height="15" fill="rgb(237,187,27)"/><text x="55.7715%" y="4734.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="55.6296%" y="4740" width="0.3063%" height="15" fill="rgb(219,65,3)"/><text x="55.8796%" y="4750.50"></text></g><g><title>infer_call (astroid/inference.py:223) (27 samples, 0.49%)</title><rect x="55.4675%" y="4612" width="0.4864%" height="15" fill="rgb(245,83,25)"/><text x="55.7175%" y="4622.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (41 samples, 0.74%)</title><rect x="55.4495%" y="4548" width="0.7386%" height="15" fill="rgb(214,205,45)"/><text x="55.6995%" y="4558.50"></text></g><g><title>infer (astroid/node_classes.py:380) (41 samples, 0.74%)</title><rect x="55.4495%" y="4564" width="0.7386%" height="15" fill="rgb(241,20,18)"/><text x="55.6995%" y="4574.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (41 samples, 0.74%)</title><rect x="55.4495%" y="4580" width="0.7386%" height="15" fill="rgb(232,163,23)"/><text x="55.6995%" y="4590.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (41 samples, 0.74%)</title><rect x="55.4495%" y="4596" width="0.7386%" height="15" fill="rgb(214,5,46)"/><text x="55.6995%" y="4606.50"></text></g><g><title>infer_call (astroid/inference.py:229) (13 samples, 0.23%)</title><rect x="55.9539%" y="4612" width="0.2342%" height="15" fill="rgb(229,78,17)"/><text x="56.2039%" y="4622.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (13 samples, 0.23%)</title><rect x="55.9539%" y="4628" width="0.2342%" height="15" fill="rgb(248,89,10)"/><text x="56.2039%" y="4638.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="55.9539%" y="4644" width="0.2342%" height="15" fill="rgb(248,54,15)"/><text x="56.2039%" y="4654.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (13 samples, 0.23%)</title><rect x="55.9539%" y="4660" width="0.2342%" height="15" fill="rgb(223,116,6)"/><text x="56.2039%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="55.9539%" y="4676" width="0.2342%" height="15" fill="rgb(205,125,38)"/><text x="56.2039%" y="4686.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (12 samples, 0.22%)</title><rect x="55.9719%" y="4692" width="0.2162%" height="15" fill="rgb(251,78,38)"/><text x="56.2219%" y="4702.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="55.9719%" y="4708" width="0.2162%" height="15" fill="rgb(253,78,28)"/><text x="56.2219%" y="4718.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (12 samples, 0.22%)</title><rect x="55.9719%" y="4724" width="0.2162%" height="15" fill="rgb(209,120,3)"/><text x="56.2219%" y="4734.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="55.9719%" y="4740" width="0.2162%" height="15" fill="rgb(238,229,9)"/><text x="56.2219%" y="4750.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (12 samples, 0.22%)</title><rect x="55.9719%" y="4756" width="0.2162%" height="15" fill="rgb(253,159,18)"/><text x="56.2219%" y="4766.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="55.9719%" y="4772" width="0.2162%" height="15" fill="rgb(244,42,34)"/><text x="56.2219%" y="4782.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (12 samples, 0.22%)</title><rect x="55.9719%" y="4788" width="0.2162%" height="15" fill="rgb(224,8,7)"/><text x="56.2219%" y="4798.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="55.9899%" y="4804" width="0.1982%" height="15" fill="rgb(210,201,45)"/><text x="56.2399%" y="4814.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="56.0800%" y="4820" width="0.1081%" height="15" fill="rgb(252,185,21)"/><text x="56.3300%" y="4830.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="56.0800%" y="4836" width="0.1081%" height="15" fill="rgb(223,131,1)"/><text x="56.3300%" y="4846.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="56.0800%" y="4852" width="0.1081%" height="15" fill="rgb(245,141,16)"/><text x="56.3300%" y="4862.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="56.0800%" y="4868" width="0.1081%" height="15" fill="rgb(229,55,45)"/><text x="56.3300%" y="4878.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="56.0800%" y="4884" width="0.1081%" height="15" fill="rgb(208,92,15)"/><text x="56.3300%" y="4894.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="56.0800%" y="4900" width="0.1081%" height="15" fill="rgb(234,185,47)"/><text x="56.3300%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="56.0800%" y="4916" width="0.1081%" height="15" fill="rgb(253,104,50)"/><text x="56.3300%" y="4926.50"></text></g><g><title>infer_call (astroid/inference.py:223) (44 samples, 0.79%)</title><rect x="55.4315%" y="4484" width="0.7926%" height="15" fill="rgb(205,70,7)"/><text x="55.6815%" y="4494.50"></text></g><g><title>infer (astroid/node_classes.py:380) (44 samples, 0.79%)</title><rect x="55.4315%" y="4500" width="0.7926%" height="15" fill="rgb(240,178,43)"/><text x="55.6815%" y="4510.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (44 samples, 0.79%)</title><rect x="55.4315%" y="4516" width="0.7926%" height="15" fill="rgb(214,112,2)"/><text x="55.6815%" y="4526.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (44 samples, 0.79%)</title><rect x="55.4315%" y="4532" width="0.7926%" height="15" fill="rgb(206,46,17)"/><text x="55.6815%" y="4542.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4020" width="37.3446%" height="15" fill="rgb(225,220,16)"/><text x="19.4537%" y="4030.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4036" width="37.3446%" height="15" fill="rgb(238,65,40)"/><text x="19.4537%" y="4046.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4052" width="37.3446%" height="15" fill="rgb(230,151,21)"/><text x="19.4537%" y="4062.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4068" width="37.3446%" height="15" fill="rgb(218,58,49)"/><text x="19.4537%" y="4078.50">wrapped (astroid/decorators.py:99)</text></g><g><title>_infer_stmts (astroid/bases.py:136) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4084" width="37.3446%" height="15" fill="rgb(219,179,14)"/><text x="19.4537%" y="4094.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4100" width="37.3446%" height="15" fill="rgb(223,72,1)"/><text x="19.4537%" y="4110.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4116" width="37.3446%" height="15" fill="rgb(238,126,10)"/><text x="19.4537%" y="4126.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4132" width="37.3446%" height="15" fill="rgb(224,206,38)"/><text x="19.4537%" y="4142.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:223) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4148" width="37.3446%" height="15" fill="rgb(212,201,54)"/><text x="19.4537%" y="4158.50">infer_call (astroid/inference.py:223)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4164" width="37.3446%" height="15" fill="rgb(218,154,48)"/><text x="19.4537%" y="4174.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4180" width="37.3446%" height="15" fill="rgb(232,93,24)"/><text x="19.4537%" y="4190.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4196" width="37.3446%" height="15" fill="rgb(245,30,21)"/><text x="19.4537%" y="4206.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_attribute (astroid/inference.py:289) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4212" width="37.3446%" height="15" fill="rgb(242,148,29)"/><text x="19.4537%" y="4222.50">infer_attribute (astroid/inference.py:289)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4228" width="37.3446%" height="15" fill="rgb(244,153,54)"/><text x="19.4537%" y="4238.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4244" width="37.3446%" height="15" fill="rgb(252,87,22)"/><text x="19.4537%" y="4254.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4260" width="37.3446%" height="15" fill="rgb(210,51,29)"/><text x="19.4537%" y="4270.50">wrapped (astroid/decorators.py:99)</text></g><g><title>_infer_stmts (astroid/bases.py:136) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4276" width="37.3446%" height="15" fill="rgb(242,136,47)"/><text x="19.4537%" y="4286.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4292" width="37.3446%" height="15" fill="rgb(238,68,4)"/><text x="19.4537%" y="4302.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4308" width="37.3446%" height="15" fill="rgb(242,161,30)"/><text x="19.4537%" y="4318.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4324" width="37.3446%" height="15" fill="rgb(218,58,44)"/><text x="19.4537%" y="4334.50">wrapped (astroid/decorators.py:99)</text></g><g><title>_infer_stmts (astroid/bases.py:136) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4340" width="37.3446%" height="15" fill="rgb(252,125,32)"/><text x="19.4537%" y="4350.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4356" width="37.3446%" height="15" fill="rgb(219,178,0)"/><text x="19.4537%" y="4366.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4372" width="37.3446%" height="15" fill="rgb(213,152,7)"/><text x="19.4537%" y="4382.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,073 samples, 37.34%)</title><rect x="19.2037%" y="4388" width="37.3446%" height="15" fill="rgb(249,109,34)"/><text x="19.4537%" y="4398.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:229) (790 samples, 14.23%)</title><rect x="42.3167%" y="4404" width="14.2317%" height="15" fill="rgb(232,96,21)"/><text x="42.5667%" y="4414.50">infer_call (astroid/in..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (787 samples, 14.18%)</title><rect x="42.3707%" y="4420" width="14.1776%" height="15" fill="rgb(228,27,39)"/><text x="42.6207%" y="4430.50">infer_call_result (ast..</text></g><g><title>infer (astroid/node_classes.py:380) (787 samples, 14.18%)</title><rect x="42.3707%" y="4436" width="14.1776%" height="15" fill="rgb(211,182,52)"/><text x="42.6207%" y="4446.50">infer (astroid/node_cl..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (66 samples, 1.19%)</title><rect x="55.3594%" y="4452" width="1.1890%" height="15" fill="rgb(234,178,38)"/><text x="55.6094%" y="4462.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (66 samples, 1.19%)</title><rect x="55.3594%" y="4468" width="1.1890%" height="15" fill="rgb(221,111,3)"/><text x="55.6094%" y="4478.50"></text></g><g><title>infer_call (astroid/inference.py:229) (18 samples, 0.32%)</title><rect x="56.2241%" y="4484" width="0.3243%" height="15" fill="rgb(228,175,21)"/><text x="56.4741%" y="4494.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (17 samples, 0.31%)</title><rect x="56.2421%" y="4500" width="0.3063%" height="15" fill="rgb(228,174,43)"/><text x="56.4921%" y="4510.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="56.2421%" y="4516" width="0.3063%" height="15" fill="rgb(211,191,0)"/><text x="56.4921%" y="4526.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (17 samples, 0.31%)</title><rect x="56.2421%" y="4532" width="0.3063%" height="15" fill="rgb(253,117,3)"/><text x="56.4921%" y="4542.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="56.2421%" y="4548" width="0.3063%" height="15" fill="rgb(241,127,19)"/><text x="56.4921%" y="4558.50"></text></g><g><title>infer_call (astroid/inference.py:223) (17 samples, 0.31%)</title><rect x="56.2421%" y="4564" width="0.3063%" height="15" fill="rgb(218,103,12)"/><text x="56.4921%" y="4574.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="56.2421%" y="4580" width="0.3063%" height="15" fill="rgb(236,214,43)"/><text x="56.4921%" y="4590.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="56.4223%" y="4596" width="0.1261%" height="15" fill="rgb(244,144,19)"/><text x="56.6723%" y="4606.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="56.4223%" y="4612" width="0.1261%" height="15" fill="rgb(246,188,10)"/><text x="56.6723%" y="4622.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="56.4223%" y="4628" width="0.1261%" height="15" fill="rgb(212,193,33)"/><text x="56.6723%" y="4638.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="56.4223%" y="4644" width="0.1261%" height="15" fill="rgb(241,51,29)"/><text x="56.6723%" y="4654.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="56.4223%" y="4660" width="0.1261%" height="15" fill="rgb(211,58,19)"/><text x="56.6723%" y="4670.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="56.4223%" y="4676" width="0.1261%" height="15" fill="rgb(229,111,26)"/><text x="56.6723%" y="4686.50"></text></g><g><title>infer_subscript (astroid/inference.py:367) (7 samples, 0.13%)</title><rect x="56.4223%" y="4692" width="0.1261%" height="15" fill="rgb(213,115,40)"/><text x="56.6723%" y="4702.50"></text></g><g><title>infer_attribute (astroid/inference.py:324) (6 samples, 0.11%)</title><rect x="56.4403%" y="4708" width="0.1081%" height="15" fill="rgb(209,56,44)"/><text x="56.6903%" y="4718.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3876" width="37.9751%" height="15" fill="rgb(230,108,32)"/><text x="18.8593%" y="3886.50">infer_attribute (astroid/inference.py:289)</text></g><g><title>infer (astroid/node_classes.py:380) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3892" width="37.9751%" height="15" fill="rgb(216,165,31)"/><text x="18.8593%" y="3902.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3908" width="37.9751%" height="15" fill="rgb(218,122,21)"/><text x="18.8593%" y="3918.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3924" width="37.9751%" height="15" fill="rgb(223,224,47)"/><text x="18.8593%" y="3934.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:229) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3940" width="37.9751%" height="15" fill="rgb(238,102,44)"/><text x="18.8593%" y="3950.50">infer_call (astroid/inference.py:229)</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3956" width="37.9751%" height="15" fill="rgb(236,46,40)"/><text x="18.8593%" y="3966.50">infer_call_result (astroid/scoped_nodes.py:1771)</text></g><g><title>infer (astroid/node_classes.py:380) (2,108 samples, 37.98%)</title><rect x="18.6093%" y="3972" width="37.9751%" height="15" fill="rgb(247,202,50)"/><text x="18.8593%" y="3982.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,075 samples, 37.38%)</title><rect x="19.2037%" y="3988" width="37.3807%" height="15" fill="rgb(209,99,20)"/><text x="19.4537%" y="3998.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,075 samples, 37.38%)</title><rect x="19.2037%" y="4004" width="37.3807%" height="15" fill="rgb(252,27,34)"/><text x="19.4537%" y="4014.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:223) (2,112 samples, 38.05%)</title><rect x="18.5552%" y="3812" width="38.0472%" height="15" fill="rgb(215,206,23)"/><text x="18.8052%" y="3822.50">infer_call (astroid/inference.py:223)</text></g><g><title>infer (astroid/node_classes.py:380) (2,112 samples, 38.05%)</title><rect x="18.5552%" y="3828" width="38.0472%" height="15" fill="rgb(212,135,36)"/><text x="18.8052%" y="3838.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (2,112 samples, 38.05%)</title><rect x="18.5552%" y="3844" width="38.0472%" height="15" fill="rgb(240,189,1)"/><text x="18.8052%" y="3854.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (2,109 samples, 37.99%)</title><rect x="18.6093%" y="3860" width="37.9932%" height="15" fill="rgb(242,56,20)"/><text x="18.8593%" y="3870.50">wrapped (astroid/decorators.py:99)</text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="56.7465%" y="3972" width="0.1441%" height="15" fill="rgb(247,132,33)"/><text x="56.9965%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="56.7465%" y="3988" width="0.1441%" height="15" fill="rgb(208,149,11)"/><text x="56.9965%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="56.7465%" y="4004" width="0.1441%" height="15" fill="rgb(211,33,11)"/><text x="56.9965%" y="4014.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="56.7465%" y="4020" width="0.1441%" height="15" fill="rgb(221,29,38)"/><text x="56.9965%" y="4030.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="56.7465%" y="4036" width="0.1441%" height="15" fill="rgb(206,182,49)"/><text x="56.9965%" y="4046.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="56.7465%" y="4052" width="0.1441%" height="15" fill="rgb(216,140,1)"/><text x="56.9965%" y="4062.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="56.7465%" y="4068" width="0.1441%" height="15" fill="rgb(232,57,40)"/><text x="56.9965%" y="4078.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="56.7465%" y="4084" width="0.1441%" height="15" fill="rgb(224,186,18)"/><text x="56.9965%" y="4094.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="56.7465%" y="4100" width="0.1441%" height="15" fill="rgb(215,121,11)"/><text x="56.9965%" y="4110.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="56.7465%" y="4116" width="0.1441%" height="15" fill="rgb(245,147,10)"/><text x="56.9965%" y="4126.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="56.7465%" y="4132" width="0.1441%" height="15" fill="rgb(238,153,13)"/><text x="56.9965%" y="4142.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="56.7465%" y="4148" width="0.1441%" height="15" fill="rgb(233,108,0)"/><text x="56.9965%" y="4158.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="56.7465%" y="4164" width="0.1441%" height="15" fill="rgb(212,157,17)"/><text x="56.9965%" y="4174.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (8 samples, 0.14%)</title><rect x="56.7465%" y="4180" width="0.1441%" height="15" fill="rgb(225,213,38)"/><text x="56.9965%" y="4190.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (7 samples, 0.13%)</title><rect x="56.7645%" y="4196" width="0.1261%" height="15" fill="rgb(248,16,11)"/><text x="57.0145%" y="4206.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (6 samples, 0.11%)</title><rect x="56.7826%" y="4212" width="0.1081%" height="15" fill="rgb(241,33,4)"/><text x="57.0326%" y="4222.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (6 samples, 0.11%)</title><rect x="56.7826%" y="4228" width="0.1081%" height="15" fill="rgb(222,26,43)"/><text x="57.0326%" y="4238.50"></text></g><g><title>infer_call (astroid/inference.py:223) (11 samples, 0.20%)</title><rect x="56.8907%" y="3972" width="0.1982%" height="15" fill="rgb(243,29,36)"/><text x="57.1407%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="56.8907%" y="3988" width="0.1982%" height="15" fill="rgb(241,9,27)"/><text x="57.1407%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="56.8907%" y="4004" width="0.1982%" height="15" fill="rgb(205,117,26)"/><text x="57.1407%" y="4014.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="56.8907%" y="4020" width="0.1982%" height="15" fill="rgb(209,80,39)"/><text x="57.1407%" y="4030.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="56.8907%" y="4036" width="0.1982%" height="15" fill="rgb(239,155,6)"/><text x="57.1407%" y="4046.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="56.9627%" y="4052" width="0.1261%" height="15" fill="rgb(212,104,12)"/><text x="57.2127%" y="4062.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (7 samples, 0.13%)</title><rect x="56.9627%" y="4068" width="0.1261%" height="15" fill="rgb(234,204,3)"/><text x="57.2127%" y="4078.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (18 samples, 0.32%)</title><rect x="57.0888%" y="3988" width="0.3243%" height="15" fill="rgb(251,218,7)"/><text x="57.3388%" y="3998.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (18 samples, 0.32%)</title><rect x="57.0888%" y="4004" width="0.3243%" height="15" fill="rgb(221,81,32)"/><text x="57.3388%" y="4014.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4020" width="0.3243%" height="15" fill="rgb(214,152,26)"/><text x="57.3388%" y="4030.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="57.0888%" y="4036" width="0.3243%" height="15" fill="rgb(223,22,3)"/><text x="57.3388%" y="4046.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4052" width="0.3243%" height="15" fill="rgb(207,174,7)"/><text x="57.3388%" y="4062.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="57.0888%" y="4068" width="0.3243%" height="15" fill="rgb(224,19,52)"/><text x="57.3388%" y="4078.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4084" width="0.3243%" height="15" fill="rgb(228,24,14)"/><text x="57.3388%" y="4094.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="57.0888%" y="4100" width="0.3243%" height="15" fill="rgb(230,153,43)"/><text x="57.3388%" y="4110.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4116" width="0.3243%" height="15" fill="rgb(231,106,12)"/><text x="57.3388%" y="4126.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="57.0888%" y="4132" width="0.3243%" height="15" fill="rgb(215,92,2)"/><text x="57.3388%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4148" width="0.3243%" height="15" fill="rgb(249,143,25)"/><text x="57.3388%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="57.0888%" y="4164" width="0.3243%" height="15" fill="rgb(252,7,35)"/><text x="57.3388%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (18 samples, 0.32%)</title><rect x="57.0888%" y="4180" width="0.3243%" height="15" fill="rgb(216,69,40)"/><text x="57.3388%" y="4190.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="57.1609%" y="4196" width="0.2522%" height="15" fill="rgb(240,36,33)"/><text x="57.4109%" y="4206.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="57.1609%" y="4212" width="0.2522%" height="15" fill="rgb(231,128,14)"/><text x="57.4109%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="57.1609%" y="4228" width="0.2522%" height="15" fill="rgb(245,143,14)"/><text x="57.4109%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="57.1609%" y="4244" width="0.2522%" height="15" fill="rgb(222,130,28)"/><text x="57.4109%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="57.1609%" y="4260" width="0.2522%" height="15" fill="rgb(212,10,48)"/><text x="57.4109%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="57.1609%" y="4276" width="0.2522%" height="15" fill="rgb(254,118,45)"/><text x="57.4109%" y="4286.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="57.1609%" y="4292" width="0.2522%" height="15" fill="rgb(228,6,45)"/><text x="57.4109%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="57.1609%" y="4308" width="0.2522%" height="15" fill="rgb(241,18,35)"/><text x="57.4109%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="57.2149%" y="4324" width="0.1982%" height="15" fill="rgb(227,214,53)"/><text x="57.4649%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="57.2149%" y="4340" width="0.1982%" height="15" fill="rgb(224,107,51)"/><text x="57.4649%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="57.2149%" y="4356" width="0.1982%" height="15" fill="rgb(248,60,28)"/><text x="57.4649%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="57.2509%" y="4372" width="0.1621%" height="15" fill="rgb(249,101,23)"/><text x="57.5009%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="57.2690%" y="4388" width="0.1441%" height="15" fill="rgb(228,51,19)"/><text x="57.5190%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="57.2690%" y="4404" width="0.1441%" height="15" fill="rgb(213,20,6)"/><text x="57.5190%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="57.2690%" y="4420" width="0.1441%" height="15" fill="rgb(212,124,10)"/><text x="57.5190%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="57.2690%" y="4436" width="0.1441%" height="15" fill="rgb(248,3,40)"/><text x="57.5190%" y="4446.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="57.4131%" y="4052" width="0.1441%" height="15" fill="rgb(223,178,23)"/><text x="57.6631%" y="4062.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="57.4131%" y="4068" width="0.1441%" height="15" fill="rgb(240,132,45)"/><text x="57.6631%" y="4078.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="57.4131%" y="4084" width="0.1441%" height="15" fill="rgb(245,164,36)"/><text x="57.6631%" y="4094.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="57.4131%" y="4100" width="0.1441%" height="15" fill="rgb(231,188,53)"/><text x="57.6631%" y="4110.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="57.4131%" y="4116" width="0.1441%" height="15" fill="rgb(237,198,39)"/><text x="57.6631%" y="4126.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="57.4131%" y="4132" width="0.1441%" height="15" fill="rgb(223,120,35)"/><text x="57.6631%" y="4142.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="57.4131%" y="4148" width="0.1441%" height="15" fill="rgb(253,107,49)"/><text x="57.6631%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="57.4131%" y="4164" width="0.1441%" height="15" fill="rgb(216,44,31)"/><text x="57.6631%" y="4174.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (8 samples, 0.14%)</title><rect x="57.4131%" y="4180" width="0.1441%" height="15" fill="rgb(253,87,21)"/><text x="57.6631%" y="4190.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (7 samples, 0.13%)</title><rect x="57.4311%" y="4196" width="0.1261%" height="15" fill="rgb(226,18,2)"/><text x="57.6811%" y="4206.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (6 samples, 0.11%)</title><rect x="57.4491%" y="4212" width="0.1081%" height="15" fill="rgb(216,8,46)"/><text x="57.6991%" y="4222.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (6 samples, 0.11%)</title><rect x="57.4491%" y="4228" width="0.1081%" height="15" fill="rgb(226,140,39)"/><text x="57.6991%" y="4238.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="57.4491%" y="4244" width="0.1081%" height="15" fill="rgb(221,194,54)"/><text x="57.6991%" y="4254.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (50 samples, 0.90%)</title><rect x="56.7465%" y="3940" width="0.9007%" height="15" fill="rgb(213,92,11)"/><text x="56.9965%" y="3950.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (50 samples, 0.90%)</title><rect x="56.7465%" y="3956" width="0.9007%" height="15" fill="rgb(229,162,46)"/><text x="56.9965%" y="3966.50"></text></g><g><title>infer_call (astroid/inference.py:229) (31 samples, 0.56%)</title><rect x="57.0888%" y="3972" width="0.5585%" height="15" fill="rgb(214,111,36)"/><text x="57.3388%" y="3982.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (13 samples, 0.23%)</title><rect x="57.4131%" y="3988" width="0.2342%" height="15" fill="rgb(207,6,21)"/><text x="57.6631%" y="3998.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="57.4131%" y="4004" width="0.2342%" height="15" fill="rgb(213,127,38)"/><text x="57.6631%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="57.4131%" y="4020" width="0.2342%" height="15" fill="rgb(238,118,32)"/><text x="57.6631%" y="4030.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="57.4131%" y="4036" width="0.2342%" height="15" fill="rgb(240,139,39)"/><text x="57.6631%" y="4046.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="57.7914%" y="4164" width="0.1261%" height="15" fill="rgb(235,10,37)"/><text x="58.0414%" y="4174.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="57.7914%" y="4180" width="0.1261%" height="15" fill="rgb(249,171,38)"/><text x="58.0414%" y="4190.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="57.7914%" y="4196" width="0.1261%" height="15" fill="rgb(242,144,32)"/><text x="58.0414%" y="4206.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="57.7914%" y="4212" width="0.1261%" height="15" fill="rgb(217,117,21)"/><text x="58.0414%" y="4222.50"></text></g><g><title>infer_call (astroid/inference.py:223) (15 samples, 0.27%)</title><rect x="57.7914%" y="4100" width="0.2702%" height="15" fill="rgb(249,87,1)"/><text x="58.0414%" y="4110.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="57.7914%" y="4116" width="0.2702%" height="15" fill="rgb(248,196,48)"/><text x="58.0414%" y="4126.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="57.7914%" y="4132" width="0.2702%" height="15" fill="rgb(251,206,33)"/><text x="58.0414%" y="4142.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="57.7914%" y="4148" width="0.2702%" height="15" fill="rgb(232,141,28)"/><text x="58.0414%" y="4158.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="57.9175%" y="4164" width="0.1441%" height="15" fill="rgb(209,167,14)"/><text x="58.1675%" y="4174.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2617) (6 samples, 0.11%)</title><rect x="57.9535%" y="4180" width="0.1081%" height="15" fill="rgb(225,11,50)"/><text x="58.2035%" y="4190.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (30 samples, 0.54%)</title><rect x="57.7373%" y="4004" width="0.5404%" height="15" fill="rgb(209,50,20)"/><text x="57.9873%" y="4014.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (29 samples, 0.52%)</title><rect x="57.7554%" y="4020" width="0.5224%" height="15" fill="rgb(212,17,46)"/><text x="58.0054%" y="4030.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (29 samples, 0.52%)</title><rect x="57.7554%" y="4036" width="0.5224%" height="15" fill="rgb(216,101,39)"/><text x="58.0054%" y="4046.50"></text></g><g><title>infer (astroid/node_classes.py:380) (29 samples, 0.52%)</title><rect x="57.7554%" y="4052" width="0.5224%" height="15" fill="rgb(212,228,48)"/><text x="58.0054%" y="4062.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (29 samples, 0.52%)</title><rect x="57.7554%" y="4068" width="0.5224%" height="15" fill="rgb(250,6,50)"/><text x="58.0054%" y="4078.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (29 samples, 0.52%)</title><rect x="57.7554%" y="4084" width="0.5224%" height="15" fill="rgb(250,160,48)"/><text x="58.0054%" y="4094.50"></text></g><g><title>infer_call (astroid/inference.py:229) (12 samples, 0.22%)</title><rect x="58.0616%" y="4100" width="0.2162%" height="15" fill="rgb(244,216,33)"/><text x="58.3116%" y="4110.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (12 samples, 0.22%)</title><rect x="58.0616%" y="4116" width="0.2162%" height="15" fill="rgb(207,157,5)"/><text x="58.3116%" y="4126.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (12 samples, 0.22%)</title><rect x="58.0616%" y="4132" width="0.2162%" height="15" fill="rgb(228,199,8)"/><text x="58.3116%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (12 samples, 0.22%)</title><rect x="58.0616%" y="4148" width="0.2162%" height="15" fill="rgb(227,80,20)"/><text x="58.3116%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (12 samples, 0.22%)</title><rect x="58.0616%" y="4164" width="0.2162%" height="15" fill="rgb(222,9,33)"/><text x="58.3116%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (12 samples, 0.22%)</title><rect x="58.0616%" y="4180" width="0.2162%" height="15" fill="rgb(239,44,28)"/><text x="58.3116%" y="4190.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="58.0796%" y="4196" width="0.1982%" height="15" fill="rgb(249,187,43)"/><text x="58.3296%" y="4206.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="58.0796%" y="4212" width="0.1982%" height="15" fill="rgb(216,141,28)"/><text x="58.3296%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="58.0796%" y="4228" width="0.1982%" height="15" fill="rgb(230,154,53)"/><text x="58.3296%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="58.0796%" y="4244" width="0.1982%" height="15" fill="rgb(227,82,4)"/><text x="58.3296%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="58.0796%" y="4260" width="0.1982%" height="15" fill="rgb(220,107,16)"/><text x="58.3296%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="58.0796%" y="4276" width="0.1982%" height="15" fill="rgb(207,187,2)"/><text x="58.3296%" y="4286.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (9 samples, 0.16%)</title><rect x="58.1157%" y="4292" width="0.1621%" height="15" fill="rgb(210,162,52)"/><text x="58.3657%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="58.1157%" y="4308" width="0.1621%" height="15" fill="rgb(217,216,49)"/><text x="58.3657%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (9 samples, 0.16%)</title><rect x="58.1157%" y="4324" width="0.1621%" height="15" fill="rgb(218,146,49)"/><text x="58.3657%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="58.1157%" y="4340" width="0.1621%" height="15" fill="rgb(216,55,40)"/><text x="58.3657%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="58.1517%" y="4356" width="0.1261%" height="15" fill="rgb(208,196,21)"/><text x="58.4017%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="58.1517%" y="4372" width="0.1261%" height="15" fill="rgb(242,117,42)"/><text x="58.4017%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="58.1697%" y="4388" width="0.1081%" height="15" fill="rgb(210,11,23)"/><text x="58.4197%" y="4398.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="58.3138%" y="4260" width="0.1261%" height="15" fill="rgb(217,110,2)"/><text x="58.5638%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="58.3138%" y="4276" width="0.1261%" height="15" fill="rgb(229,77,54)"/><text x="58.5638%" y="4286.50"></text></g><g><title>igetattr (astroid/bases.py:221) (12 samples, 0.22%)</title><rect x="58.3138%" y="4180" width="0.2162%" height="15" fill="rgb(218,53,16)"/><text x="58.5638%" y="4190.50"></text></g><g><title>getattr (astroid/bases.py:182) (12 samples, 0.22%)</title><rect x="58.3138%" y="4196" width="0.2162%" height="15" fill="rgb(215,38,13)"/><text x="58.5638%" y="4206.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (12 samples, 0.22%)</title><rect x="58.3138%" y="4212" width="0.2162%" height="15" fill="rgb(235,42,18)"/><text x="58.5638%" y="4222.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (12 samples, 0.22%)</title><rect x="58.3138%" y="4228" width="0.2162%" height="15" fill="rgb(219,66,54)"/><text x="58.5638%" y="4238.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="58.3138%" y="4244" width="0.2162%" height="15" fill="rgb(222,205,4)"/><text x="58.5638%" y="4254.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="58.5300%" y="4260" width="0.1081%" height="15" fill="rgb(227,213,46)"/><text x="58.7800%" y="4270.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="58.5300%" y="4276" width="0.1081%" height="15" fill="rgb(250,145,42)"/><text x="58.7800%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="58.5300%" y="4292" width="0.1081%" height="15" fill="rgb(219,15,2)"/><text x="58.7800%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="58.5300%" y="4308" width="0.1081%" height="15" fill="rgb(231,181,52)"/><text x="58.7800%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="58.5300%" y="4324" width="0.1081%" height="15" fill="rgb(235,1,42)"/><text x="58.7800%" y="4334.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="58.5300%" y="4340" width="0.1081%" height="15" fill="rgb(249,88,27)"/><text x="58.7800%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="58.5300%" y="4356" width="0.1081%" height="15" fill="rgb(235,145,16)"/><text x="58.7800%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="58.5300%" y="4372" width="0.1081%" height="15" fill="rgb(237,114,19)"/><text x="58.7800%" y="4382.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (12 samples, 0.22%)</title><rect x="58.5300%" y="4212" width="0.2162%" height="15" fill="rgb(238,51,50)"/><text x="58.7800%" y="4222.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="58.5300%" y="4228" width="0.2162%" height="15" fill="rgb(205,194,25)"/><text x="58.7800%" y="4238.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="58.5300%" y="4244" width="0.2162%" height="15" fill="rgb(215,203,17)"/><text x="58.7800%" y="4254.50"></text></g><g><title>infer_call (astroid/inference.py:223) (26 samples, 0.47%)</title><rect x="58.2958%" y="4100" width="0.4684%" height="15" fill="rgb(233,112,49)"/><text x="58.5458%" y="4110.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="58.2958%" y="4116" width="0.4684%" height="15" fill="rgb(241,130,26)"/><text x="58.5458%" y="4126.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (26 samples, 0.47%)</title><rect x="58.2958%" y="4132" width="0.4684%" height="15" fill="rgb(252,223,19)"/><text x="58.5458%" y="4142.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="58.2958%" y="4148" width="0.4684%" height="15" fill="rgb(211,95,25)"/><text x="58.5458%" y="4158.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (25 samples, 0.45%)</title><rect x="58.3138%" y="4164" width="0.4504%" height="15" fill="rgb(251,182,27)"/><text x="58.5638%" y="4174.50"></text></g><g><title>igetattr (astroid/bases.py:233) (13 samples, 0.23%)</title><rect x="58.5300%" y="4180" width="0.2342%" height="15" fill="rgb(238,24,4)"/><text x="58.7800%" y="4190.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (13 samples, 0.23%)</title><rect x="58.5300%" y="4196" width="0.2342%" height="15" fill="rgb(224,220,25)"/><text x="58.7800%" y="4206.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (8 samples, 0.14%)</title><rect x="58.7822%" y="4116" width="0.1441%" height="15" fill="rgb(239,133,26)"/><text x="59.0322%" y="4126.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="58.7822%" y="4132" width="0.1441%" height="15" fill="rgb(211,94,48)"/><text x="59.0322%" y="4142.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="58.7822%" y="4148" width="0.1441%" height="15" fill="rgb(239,87,6)"/><text x="59.0322%" y="4158.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="58.7822%" y="4164" width="0.1441%" height="15" fill="rgb(227,62,0)"/><text x="59.0322%" y="4174.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="58.8002%" y="4180" width="0.1261%" height="15" fill="rgb(211,226,4)"/><text x="59.0502%" y="4190.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="59.2506%" y="4324" width="0.1801%" height="15" fill="rgb(253,38,52)"/><text x="59.5006%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="59.2506%" y="4340" width="0.1801%" height="15" fill="rgb(229,126,40)"/><text x="59.5006%" y="4350.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="59.2506%" y="4308" width="0.1982%" height="15" fill="rgb(229,165,44)"/><text x="59.5006%" y="4318.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (19 samples, 0.34%)</title><rect x="59.1605%" y="4244" width="0.3423%" height="15" fill="rgb(247,95,47)"/><text x="59.4105%" y="4254.50"></text></g><g><title>infer (astroid/node_classes.py:380) (19 samples, 0.34%)</title><rect x="59.1605%" y="4260" width="0.3423%" height="15" fill="rgb(216,140,30)"/><text x="59.4105%" y="4270.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (19 samples, 0.34%)</title><rect x="59.1605%" y="4276" width="0.3423%" height="15" fill="rgb(246,214,8)"/><text x="59.4105%" y="4286.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (18 samples, 0.32%)</title><rect x="59.1785%" y="4292" width="0.3243%" height="15" fill="rgb(227,224,15)"/><text x="59.4285%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="59.6109%" y="4356" width="0.1261%" height="15" fill="rgb(233,175,4)"/><text x="59.8609%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="59.6289%" y="4372" width="0.1081%" height="15" fill="rgb(221,66,45)"/><text x="59.8789%" y="4382.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="59.6289%" y="4388" width="0.1081%" height="15" fill="rgb(221,178,18)"/><text x="59.8789%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="59.6289%" y="4404" width="0.1081%" height="15" fill="rgb(213,81,29)"/><text x="59.8789%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="59.6289%" y="4420" width="0.1081%" height="15" fill="rgb(220,89,49)"/><text x="59.8789%" y="4430.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (14 samples, 0.25%)</title><rect x="59.5749%" y="4324" width="0.2522%" height="15" fill="rgb(227,60,33)"/><text x="59.8249%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="59.6109%" y="4340" width="0.2162%" height="15" fill="rgb(205,113,12)"/><text x="59.8609%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="59.9171%" y="4356" width="0.2702%" height="15" fill="rgb(211,32,1)"/><text x="60.1671%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (11 samples, 0.20%)</title><rect x="59.9892%" y="4372" width="0.1982%" height="15" fill="rgb(246,2,12)"/><text x="60.2392%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="60.0252%" y="4388" width="0.1621%" height="15" fill="rgb(243,37,27)"/><text x="60.2752%" y="4398.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="60.0793%" y="4404" width="0.1081%" height="15" fill="rgb(248,211,31)"/><text x="60.3293%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="60.0793%" y="4420" width="0.1081%" height="15" fill="rgb(242,146,47)"/><text x="60.3293%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="60.0793%" y="4436" width="0.1081%" height="15" fill="rgb(206,70,20)"/><text x="60.3293%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="60.0793%" y="4452" width="0.1081%" height="15" fill="rgb(215,10,51)"/><text x="60.3293%" y="4462.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (16 samples, 0.29%)</title><rect x="59.9171%" y="4340" width="0.2882%" height="15" fill="rgb(243,178,53)"/><text x="60.1671%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="60.2414%" y="4388" width="0.1441%" height="15" fill="rgb(233,221,20)"/><text x="60.4914%" y="4398.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="60.2414%" y="4404" width="0.1441%" height="15" fill="rgb(218,95,35)"/><text x="60.4914%" y="4414.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (16 samples, 0.29%)</title><rect x="60.2054%" y="4356" width="0.2882%" height="15" fill="rgb(229,13,5)"/><text x="60.4554%" y="4366.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="60.2234%" y="4372" width="0.2702%" height="15" fill="rgb(252,164,30)"/><text x="60.4734%" y="4382.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="60.3855%" y="4388" width="0.1081%" height="15" fill="rgb(232,68,36)"/><text x="60.6355%" y="4398.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="60.3855%" y="4404" width="0.1081%" height="15" fill="rgb(219,59,54)"/><text x="60.6355%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:374) (13 samples, 0.23%)</title><rect x="60.5657%" y="4388" width="0.2342%" height="15" fill="rgb(250,92,33)"/><text x="60.8157%" y="4398.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (22 samples, 0.40%)</title><rect x="60.4936%" y="4356" width="0.3963%" height="15" fill="rgb(229,162,54)"/><text x="60.7436%" y="4366.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (18 samples, 0.32%)</title><rect x="60.5657%" y="4372" width="0.3243%" height="15" fill="rgb(244,114,52)"/><text x="60.8157%" y="4382.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (76 samples, 1.37%)</title><rect x="59.5388%" y="4308" width="1.3691%" height="15" fill="rgb(212,211,43)"/><text x="59.7888%" y="4318.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (59 samples, 1.06%)</title><rect x="59.8451%" y="4324" width="1.0629%" height="15" fill="rgb(226,147,8)"/><text x="60.0951%" y="4334.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (39 samples, 0.70%)</title><rect x="60.2054%" y="4340" width="0.7026%" height="15" fill="rgb(226,23,13)"/><text x="60.4554%" y="4350.50"></text></g><g><title>getattr (astroid/bases.py:182) (77 samples, 1.39%)</title><rect x="59.5388%" y="4276" width="1.3871%" height="15" fill="rgb(240,63,4)"/><text x="59.7888%" y="4286.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (77 samples, 1.39%)</title><rect x="59.5388%" y="4292" width="1.3871%" height="15" fill="rgb(221,1,32)"/><text x="59.7888%" y="4302.50"></text></g><g><title>igetattr (astroid/bases.py:221) (79 samples, 1.42%)</title><rect x="59.5388%" y="4260" width="1.4232%" height="15" fill="rgb(242,117,10)"/><text x="59.7888%" y="4270.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (8 samples, 0.14%)</title><rect x="60.9980%" y="4340" width="0.1441%" height="15" fill="rgb(249,172,44)"/><text x="61.2480%" y="4350.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (8 samples, 0.14%)</title><rect x="60.9980%" y="4356" width="0.1441%" height="15" fill="rgb(244,46,45)"/><text x="61.2480%" y="4366.50"></text></g><g><title>infer (astroid/node_classes.py:366) (8 samples, 0.14%)</title><rect x="60.9980%" y="4372" width="0.1441%" height="15" fill="rgb(206,43,17)"/><text x="61.2480%" y="4382.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="60.9980%" y="4388" width="0.1441%" height="15" fill="rgb(239,218,39)"/><text x="61.2480%" y="4398.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="60.9980%" y="4404" width="0.1441%" height="15" fill="rgb(208,169,54)"/><text x="61.2480%" y="4414.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="60.9980%" y="4420" width="0.1441%" height="15" fill="rgb(247,25,42)"/><text x="61.2480%" y="4430.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="60.9980%" y="4436" width="0.1441%" height="15" fill="rgb(226,23,31)"/><text x="61.2480%" y="4446.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="60.9980%" y="4452" width="0.1441%" height="15" fill="rgb(247,16,28)"/><text x="61.2480%" y="4462.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="61.0160%" y="4468" width="0.1261%" height="15" fill="rgb(231,147,38)"/><text x="61.2660%" y="4478.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (10 samples, 0.18%)</title><rect x="61.1962%" y="4356" width="0.1801%" height="15" fill="rgb(253,81,48)"/><text x="61.4462%" y="4366.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (10 samples, 0.18%)</title><rect x="61.1962%" y="4372" width="0.1801%" height="15" fill="rgb(249,222,43)"/><text x="61.4462%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:366) (10 samples, 0.18%)</title><rect x="61.1962%" y="4388" width="0.1801%" height="15" fill="rgb(221,3,27)"/><text x="61.4462%" y="4398.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="61.1962%" y="4404" width="0.1801%" height="15" fill="rgb(228,180,5)"/><text x="61.4462%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="61.1962%" y="4420" width="0.1801%" height="15" fill="rgb(227,131,42)"/><text x="61.4462%" y="4430.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (16 samples, 0.29%)</title><rect x="61.1962%" y="4340" width="0.2882%" height="15" fill="rgb(212,3,39)"/><text x="61.4462%" y="4350.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (29 samples, 0.52%)</title><rect x="60.9800%" y="4292" width="0.5224%" height="15" fill="rgb(226,45,5)"/><text x="61.2300%" y="4302.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (29 samples, 0.52%)</title><rect x="60.9800%" y="4308" width="0.5224%" height="15" fill="rgb(215,167,45)"/><text x="61.2300%" y="4318.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (28 samples, 0.50%)</title><rect x="60.9980%" y="4324" width="0.5044%" height="15" fill="rgb(250,218,53)"/><text x="61.2480%" y="4334.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (34 samples, 0.61%)</title><rect x="60.9800%" y="4276" width="0.6125%" height="15" fill="rgb(207,140,0)"/><text x="61.2300%" y="4286.50"></text></g><g><title>igetattr (astroid/bases.py:233) (37 samples, 0.67%)</title><rect x="60.9620%" y="4260" width="0.6665%" height="15" fill="rgb(238,133,51)"/><text x="61.2120%" y="4270.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (11 samples, 0.20%)</title><rect x="61.6285%" y="4260" width="0.1982%" height="15" fill="rgb(218,203,53)"/><text x="61.8785%" y="4270.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="61.6285%" y="4276" width="0.1982%" height="15" fill="rgb(226,184,25)"/><text x="61.8785%" y="4286.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="61.6826%" y="4292" width="0.1441%" height="15" fill="rgb(231,121,21)"/><text x="61.9326%" y="4302.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="61.8267%" y="4276" width="0.1081%" height="15" fill="rgb(251,14,34)"/><text x="62.0767%" y="4286.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="61.8267%" y="4292" width="0.1081%" height="15" fill="rgb(249,193,11)"/><text x="62.0767%" y="4302.50"></text></g><g><title>infer_call (astroid/inference.py:223) (169 samples, 3.04%)</title><rect x="59.1065%" y="4180" width="3.0445%" height="15" fill="rgb(220,172,37)"/><text x="59.3565%" y="4190.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (169 samples, 3.04%)</title><rect x="59.1065%" y="4196" width="3.0445%" height="15" fill="rgb(231,229,43)"/><text x="59.3565%" y="4206.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (166 samples, 2.99%)</title><rect x="59.1605%" y="4212" width="2.9905%" height="15" fill="rgb(250,161,5)"/><text x="59.4105%" y="4222.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (166 samples, 2.99%)</title><rect x="59.1605%" y="4228" width="2.9905%" height="15" fill="rgb(218,225,18)"/><text x="59.4105%" y="4238.50">wra..</text></g><g><title>infer_attribute (astroid/inference.py:316) (145 samples, 2.61%)</title><rect x="59.5388%" y="4244" width="2.6121%" height="15" fill="rgb(245,45,42)"/><text x="59.7888%" y="4254.50">in..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (18 samples, 0.32%)</title><rect x="61.8267%" y="4260" width="0.3243%" height="15" fill="rgb(211,115,1)"/><text x="62.0767%" y="4270.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="61.9348%" y="4276" width="0.2162%" height="15" fill="rgb(248,133,52)"/><text x="62.1848%" y="4286.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (10 samples, 0.18%)</title><rect x="61.9708%" y="4292" width="0.1801%" height="15" fill="rgb(238,100,21)"/><text x="62.2208%" y="4302.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (10 samples, 0.18%)</title><rect x="61.9708%" y="4308" width="0.1801%" height="15" fill="rgb(247,144,11)"/><text x="62.2208%" y="4318.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (9 samples, 0.16%)</title><rect x="61.9888%" y="4324" width="0.1621%" height="15" fill="rgb(206,164,16)"/><text x="62.2388%" y="4334.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="62.1510%" y="4260" width="0.1261%" height="15" fill="rgb(222,34,3)"/><text x="62.4010%" y="4270.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (8 samples, 0.14%)</title><rect x="62.2771%" y="4276" width="0.1441%" height="15" fill="rgb(248,82,4)"/><text x="62.5271%" y="4286.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (8 samples, 0.14%)</title><rect x="62.2771%" y="4292" width="0.1441%" height="15" fill="rgb(228,81,46)"/><text x="62.5271%" y="4302.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="62.2951%" y="4308" width="0.1261%" height="15" fill="rgb(227,67,47)"/><text x="62.5451%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (8 samples, 0.14%)</title><rect x="62.4572%" y="4276" width="0.1441%" height="15" fill="rgb(215,93,53)"/><text x="62.7072%" y="4286.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (8 samples, 0.14%)</title><rect x="62.6193%" y="4324" width="0.1441%" height="15" fill="rgb(248,194,39)"/><text x="62.8693%" y="4334.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (8 samples, 0.14%)</title><rect x="62.6193%" y="4340" width="0.1441%" height="15" fill="rgb(215,5,19)"/><text x="62.8693%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="62.6374%" y="4356" width="0.1261%" height="15" fill="rgb(226,215,51)"/><text x="62.8874%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="62.6374%" y="4372" width="0.1261%" height="15" fill="rgb(225,56,26)"/><text x="62.8874%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="62.6374%" y="4388" width="0.1261%" height="15" fill="rgb(222,75,29)"/><text x="62.8874%" y="4398.50"></text></g><g><title>infer_name (astroid/inference.py:199) (6 samples, 0.11%)</title><rect x="62.6554%" y="4404" width="0.1081%" height="15" fill="rgb(236,139,6)"/><text x="62.9054%" y="4414.50"></text></g><g><title>copy_context (astroid/context.py:148) (6 samples, 0.11%)</title><rect x="62.6554%" y="4420" width="0.1081%" height="15" fill="rgb(223,137,36)"/><text x="62.9054%" y="4430.50"></text></g><g><title>clone (astroid/context.py:106) (6 samples, 0.11%)</title><rect x="62.6554%" y="4436" width="0.1081%" height="15" fill="rgb(226,99,2)"/><text x="62.9054%" y="4446.50"></text></g><g><title>__init__ (astroid/context.py:36) (6 samples, 0.11%)</title><rect x="62.6554%" y="4452" width="0.1081%" height="15" fill="rgb(206,133,23)"/><text x="62.9054%" y="4462.50"></text></g><g><title>infer_call (astroid/inference.py:229) (47 samples, 0.85%)</title><rect x="62.1510%" y="4180" width="0.8467%" height="15" fill="rgb(243,173,15)"/><text x="62.4010%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (47 samples, 0.85%)</title><rect x="62.1510%" y="4196" width="0.8467%" height="15" fill="rgb(228,69,28)"/><text x="62.4010%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (47 samples, 0.85%)</title><rect x="62.1510%" y="4212" width="0.8467%" height="15" fill="rgb(212,51,22)"/><text x="62.4010%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (47 samples, 0.85%)</title><rect x="62.1510%" y="4228" width="0.8467%" height="15" fill="rgb(227,113,0)"/><text x="62.4010%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (47 samples, 0.85%)</title><rect x="62.1510%" y="4244" width="0.8467%" height="15" fill="rgb(252,84,27)"/><text x="62.4010%" y="4254.50"></text></g><g><title>infer_call (astroid/inference.py:229) (40 samples, 0.72%)</title><rect x="62.2771%" y="4260" width="0.7206%" height="15" fill="rgb(223,145,39)"/><text x="62.5271%" y="4270.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (21 samples, 0.38%)</title><rect x="62.6193%" y="4276" width="0.3783%" height="15" fill="rgb(239,219,30)"/><text x="62.8693%" y="4286.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (21 samples, 0.38%)</title><rect x="62.6193%" y="4292" width="0.3783%" height="15" fill="rgb(224,196,39)"/><text x="62.8693%" y="4302.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (21 samples, 0.38%)</title><rect x="62.6193%" y="4308" width="0.3783%" height="15" fill="rgb(205,35,43)"/><text x="62.8693%" y="4318.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (13 samples, 0.23%)</title><rect x="62.7635%" y="4324" width="0.2342%" height="15" fill="rgb(228,201,21)"/><text x="63.0135%" y="4334.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (9 samples, 0.16%)</title><rect x="62.8355%" y="4340" width="0.1621%" height="15" fill="rgb(237,118,16)"/><text x="63.0855%" y="4350.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (9 samples, 0.16%)</title><rect x="62.8355%" y="4356" width="0.1621%" height="15" fill="rgb(241,17,19)"/><text x="63.0855%" y="4366.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (9 samples, 0.16%)</title><rect x="62.8355%" y="4372" width="0.1621%" height="15" fill="rgb(214,10,25)"/><text x="63.0855%" y="4382.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2972) (6 samples, 0.11%)</title><rect x="62.8896%" y="4388" width="0.1081%" height="15" fill="rgb(238,37,29)"/><text x="63.1396%" y="4398.50"></text></g><g><title>_c3_merge (astroid/scoped_nodes.py:72) (6 samples, 0.11%)</title><rect x="62.8896%" y="4404" width="0.1081%" height="15" fill="rgb(253,83,25)"/><text x="63.1396%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (226 samples, 4.07%)</title><rect x="58.9443%" y="4148" width="4.0713%" height="15" fill="rgb(234,192,12)"/><text x="59.1943%" y="4158.50">rais..</text></g><g><title>wrapped (astroid/decorators.py:99) (225 samples, 4.05%)</title><rect x="58.9623%" y="4164" width="4.0533%" height="15" fill="rgb(241,216,45)"/><text x="59.2123%" y="4174.50">wrap..</text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="63.1418%" y="4180" width="0.1261%" height="15" fill="rgb(242,22,33)"/><text x="63.3918%" y="4190.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="63.1418%" y="4196" width="0.1261%" height="15" fill="rgb(231,105,49)"/><text x="63.3918%" y="4206.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="63.1418%" y="4212" width="0.1261%" height="15" fill="rgb(218,204,15)"/><text x="63.3918%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="63.2679%" y="4228" width="0.1081%" height="15" fill="rgb(235,138,41)"/><text x="63.5179%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="63.2679%" y="4244" width="0.1081%" height="15" fill="rgb(246,0,9)"/><text x="63.5179%" y="4254.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="63.2679%" y="4260" width="0.1081%" height="15" fill="rgb(210,74,4)"/><text x="63.5179%" y="4270.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="63.2679%" y="4276" width="0.1081%" height="15" fill="rgb(250,60,41)"/><text x="63.5179%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="63.2679%" y="4292" width="0.1081%" height="15" fill="rgb(220,115,12)"/><text x="63.5179%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="63.2679%" y="4308" width="0.1081%" height="15" fill="rgb(237,100,13)"/><text x="63.5179%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (9 samples, 0.16%)</title><rect x="63.2679%" y="4196" width="0.1621%" height="15" fill="rgb(213,55,26)"/><text x="63.5179%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="63.2679%" y="4212" width="0.1621%" height="15" fill="rgb(216,17,4)"/><text x="63.5179%" y="4222.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (321 samples, 5.78%)</title><rect x="57.6653%" y="3972" width="5.7827%" height="15" fill="rgb(220,153,47)"/><text x="57.9153%" y="3982.50">_infer_..</text></g><g><title>infer (astroid/node_classes.py:380) (317 samples, 5.71%)</title><rect x="57.7373%" y="3988" width="5.7107%" height="15" fill="rgb(215,131,9)"/><text x="57.9873%" y="3998.50">infer (..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (286 samples, 5.15%)</title><rect x="58.2958%" y="4004" width="5.1522%" height="15" fill="rgb(233,46,42)"/><text x="58.5458%" y="4014.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (286 samples, 5.15%)</title><rect x="58.2958%" y="4020" width="5.1522%" height="15" fill="rgb(226,86,7)"/><text x="58.5458%" y="4030.50">wrappe..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (286 samples, 5.15%)</title><rect x="58.2958%" y="4036" width="5.1522%" height="15" fill="rgb(239,226,21)"/><text x="58.5458%" y="4046.50">_infer..</text></g><g><title>infer (astroid/node_classes.py:380) (286 samples, 5.15%)</title><rect x="58.2958%" y="4052" width="5.1522%" height="15" fill="rgb(244,137,22)"/><text x="58.5458%" y="4062.50">infer ..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (286 samples, 5.15%)</title><rect x="58.2958%" y="4068" width="5.1522%" height="15" fill="rgb(211,139,35)"/><text x="58.5458%" y="4078.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (286 samples, 5.15%)</title><rect x="58.2958%" y="4084" width="5.1522%" height="15" fill="rgb(214,62,50)"/><text x="58.5458%" y="4094.50">wrappe..</text></g><g><title>infer_call (astroid/inference.py:229) (260 samples, 4.68%)</title><rect x="58.7642%" y="4100" width="4.6838%" height="15" fill="rgb(212,113,44)"/><text x="59.0142%" y="4110.50">infer..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (251 samples, 4.52%)</title><rect x="58.9263%" y="4116" width="4.5217%" height="15" fill="rgb(226,150,43)"/><text x="59.1763%" y="4126.50">infer..</text></g><g><title>infer (astroid/node_classes.py:380) (251 samples, 4.52%)</title><rect x="58.9263%" y="4132" width="4.5217%" height="15" fill="rgb(250,71,37)"/><text x="59.1763%" y="4142.50">infer..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (23 samples, 0.41%)</title><rect x="63.0337%" y="4148" width="0.4143%" height="15" fill="rgb(219,76,19)"/><text x="63.2837%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (21 samples, 0.38%)</title><rect x="63.0697%" y="4164" width="0.3783%" height="15" fill="rgb(250,39,11)"/><text x="63.3197%" y="4174.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="63.2679%" y="4180" width="0.1801%" height="15" fill="rgb(230,64,31)"/><text x="63.5179%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (7 samples, 0.13%)</title><rect x="63.4480%" y="3988" width="0.1261%" height="15" fill="rgb(208,222,23)"/><text x="63.6980%" y="3998.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="63.4480%" y="4004" width="0.1261%" height="15" fill="rgb(227,125,18)"/><text x="63.6980%" y="4014.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="63.4480%" y="4020" width="0.1261%" height="15" fill="rgb(234,210,9)"/><text x="63.6980%" y="4030.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="63.4480%" y="4036" width="0.1261%" height="15" fill="rgb(217,127,24)"/><text x="63.6980%" y="4046.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="63.4480%" y="4052" width="0.1261%" height="15" fill="rgb(239,141,48)"/><text x="63.6980%" y="4062.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="63.4480%" y="4068" width="0.1261%" height="15" fill="rgb(227,109,8)"/><text x="63.6980%" y="4078.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (6 samples, 0.11%)</title><rect x="63.4660%" y="4084" width="0.1081%" height="15" fill="rgb(235,184,23)"/><text x="63.7160%" y="4094.50"></text></g><g><title>infer_call (astroid/inference.py:223) (22 samples, 0.40%)</title><rect x="63.6282%" y="4052" width="0.3963%" height="15" fill="rgb(227,226,48)"/><text x="63.8782%" y="4062.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="63.6282%" y="4068" width="0.3963%" height="15" fill="rgb(206,150,11)"/><text x="63.8782%" y="4078.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="63.6282%" y="4084" width="0.3963%" height="15" fill="rgb(254,2,33)"/><text x="63.8782%" y="4094.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="63.6282%" y="4100" width="0.3963%" height="15" fill="rgb(243,160,20)"/><text x="63.8782%" y="4110.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (19 samples, 0.34%)</title><rect x="63.6822%" y="4116" width="0.3423%" height="15" fill="rgb(218,208,30)"/><text x="63.9322%" y="4126.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (16 samples, 0.29%)</title><rect x="63.7363%" y="4132" width="0.2882%" height="15" fill="rgb(224,120,49)"/><text x="63.9863%" y="4142.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="63.8083%" y="4148" width="0.2162%" height="15" fill="rgb(246,12,2)"/><text x="64.0583%" y="4158.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (9 samples, 0.16%)</title><rect x="63.8624%" y="4164" width="0.1621%" height="15" fill="rgb(236,117,3)"/><text x="64.1124%" y="4174.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (9 samples, 0.16%)</title><rect x="63.8624%" y="4180" width="0.1621%" height="15" fill="rgb(216,128,52)"/><text x="64.1124%" y="4190.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (8 samples, 0.14%)</title><rect x="63.8804%" y="4196" width="0.1441%" height="15" fill="rgb(246,145,19)"/><text x="64.1304%" y="4206.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (8 samples, 0.14%)</title><rect x="63.8804%" y="4212" width="0.1441%" height="15" fill="rgb(222,11,46)"/><text x="64.1304%" y="4222.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="63.8804%" y="4228" width="0.1441%" height="15" fill="rgb(245,82,36)"/><text x="64.1304%" y="4238.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="63.9164%" y="4244" width="0.1081%" height="15" fill="rgb(250,73,51)"/><text x="64.1664%" y="4254.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="63.9164%" y="4260" width="0.1081%" height="15" fill="rgb(221,189,23)"/><text x="64.1664%" y="4270.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2311) (6 samples, 0.11%)</title><rect x="63.9164%" y="4276" width="0.1081%" height="15" fill="rgb(210,33,7)"/><text x="64.1664%" y="4286.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (16 samples, 0.29%)</title><rect x="64.0245%" y="4068" width="0.2882%" height="15" fill="rgb(210,107,22)"/><text x="64.2745%" y="4078.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (16 samples, 0.29%)</title><rect x="64.0245%" y="4084" width="0.2882%" height="15" fill="rgb(222,116,37)"/><text x="64.2745%" y="4094.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="64.0245%" y="4100" width="0.2882%" height="15" fill="rgb(254,17,48)"/><text x="64.2745%" y="4110.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (16 samples, 0.29%)</title><rect x="64.0245%" y="4116" width="0.2882%" height="15" fill="rgb(224,36,32)"/><text x="64.2745%" y="4126.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="64.0245%" y="4132" width="0.2882%" height="15" fill="rgb(232,90,46)"/><text x="64.2745%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (16 samples, 0.29%)</title><rect x="64.0245%" y="4148" width="0.2882%" height="15" fill="rgb(241,66,40)"/><text x="64.2745%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="64.0245%" y="4164" width="0.2882%" height="15" fill="rgb(249,184,29)"/><text x="64.2745%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="64.0425%" y="4180" width="0.2702%" height="15" fill="rgb(231,181,1)"/><text x="64.2925%" y="4190.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="64.0425%" y="4196" width="0.2702%" height="15" fill="rgb(224,94,2)"/><text x="64.2925%" y="4206.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="64.0425%" y="4212" width="0.2702%" height="15" fill="rgb(229,170,15)"/><text x="64.2925%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="64.0425%" y="4228" width="0.2702%" height="15" fill="rgb(240,127,35)"/><text x="64.2925%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="64.0425%" y="4244" width="0.2702%" height="15" fill="rgb(248,196,34)"/><text x="64.2925%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="64.0425%" y="4260" width="0.2702%" height="15" fill="rgb(236,137,7)"/><text x="64.2925%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="64.0605%" y="4276" width="0.2522%" height="15" fill="rgb(235,127,16)"/><text x="64.3105%" y="4286.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="64.0605%" y="4292" width="0.2522%" height="15" fill="rgb(250,192,54)"/><text x="64.3105%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="64.1146%" y="4308" width="0.1982%" height="15" fill="rgb(218,98,20)"/><text x="64.3646%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="64.1146%" y="4324" width="0.1982%" height="15" fill="rgb(230,176,47)"/><text x="64.3646%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="64.1146%" y="4340" width="0.1982%" height="15" fill="rgb(244,2,33)"/><text x="64.3646%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="64.1146%" y="4356" width="0.1982%" height="15" fill="rgb(231,100,17)"/><text x="64.3646%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="64.1146%" y="4372" width="0.1982%" height="15" fill="rgb(245,23,12)"/><text x="64.3646%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="64.1146%" y="4388" width="0.1982%" height="15" fill="rgb(249,55,22)"/><text x="64.3646%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="64.1146%" y="4404" width="0.1982%" height="15" fill="rgb(207,134,9)"/><text x="64.3646%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="64.1506%" y="4420" width="0.1621%" height="15" fill="rgb(218,134,0)"/><text x="64.4006%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="64.1686%" y="4436" width="0.1441%" height="15" fill="rgb(213,212,33)"/><text x="64.4186%" y="4446.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="64.1686%" y="4452" width="0.1441%" height="15" fill="rgb(252,106,18)"/><text x="64.4186%" y="4462.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="64.1866%" y="4468" width="0.1261%" height="15" fill="rgb(208,126,42)"/><text x="64.4366%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="64.1866%" y="4484" width="0.1261%" height="15" fill="rgb(246,175,29)"/><text x="64.4366%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="64.2046%" y="4500" width="0.1081%" height="15" fill="rgb(215,13,50)"/><text x="64.4546%" y="4510.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="64.3848%" y="4340" width="0.1441%" height="15" fill="rgb(216,172,15)"/><text x="64.6348%" y="4350.50"></text></g><g><title>infer_call (astroid/inference.py:223) (13 samples, 0.23%)</title><rect x="64.3127%" y="4132" width="0.2342%" height="15" fill="rgb(212,103,13)"/><text x="64.5627%" y="4142.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="64.3127%" y="4148" width="0.2342%" height="15" fill="rgb(231,171,36)"/><text x="64.5627%" y="4158.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="64.3127%" y="4164" width="0.2342%" height="15" fill="rgb(250,123,20)"/><text x="64.5627%" y="4174.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="64.3127%" y="4180" width="0.2342%" height="15" fill="rgb(212,53,50)"/><text x="64.5627%" y="4190.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (13 samples, 0.23%)</title><rect x="64.3127%" y="4196" width="0.2342%" height="15" fill="rgb(243,54,12)"/><text x="64.5627%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="64.3127%" y="4212" width="0.2342%" height="15" fill="rgb(234,101,34)"/><text x="64.5627%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="64.3127%" y="4228" width="0.2342%" height="15" fill="rgb(254,67,22)"/><text x="64.5627%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (13 samples, 0.23%)</title><rect x="64.3127%" y="4244" width="0.2342%" height="15" fill="rgb(250,35,47)"/><text x="64.5627%" y="4254.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (13 samples, 0.23%)</title><rect x="64.3127%" y="4260" width="0.2342%" height="15" fill="rgb(226,126,38)"/><text x="64.5627%" y="4270.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (13 samples, 0.23%)</title><rect x="64.3127%" y="4276" width="0.2342%" height="15" fill="rgb(216,138,53)"/><text x="64.5627%" y="4286.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (13 samples, 0.23%)</title><rect x="64.3127%" y="4292" width="0.2342%" height="15" fill="rgb(246,199,43)"/><text x="64.5627%" y="4302.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (12 samples, 0.22%)</title><rect x="64.3308%" y="4308" width="0.2162%" height="15" fill="rgb(232,125,11)"/><text x="64.5808%" y="4318.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="64.3308%" y="4324" width="0.2162%" height="15" fill="rgb(218,219,45)"/><text x="64.5808%" y="4334.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="64.5649%" y="4196" width="0.1081%" height="15" fill="rgb(216,102,54)"/><text x="64.8149%" y="4206.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (9 samples, 0.16%)</title><rect x="64.5469%" y="4148" width="0.1621%" height="15" fill="rgb(250,228,7)"/><text x="64.7969%" y="4158.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (9 samples, 0.16%)</title><rect x="64.5469%" y="4164" width="0.1621%" height="15" fill="rgb(226,125,25)"/><text x="64.7969%" y="4174.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (8 samples, 0.14%)</title><rect x="64.5649%" y="4180" width="0.1441%" height="15" fill="rgb(224,165,27)"/><text x="64.8149%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (11 samples, 0.20%)</title><rect x="64.7091%" y="4148" width="0.1982%" height="15" fill="rgb(233,86,3)"/><text x="64.9591%" y="4158.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="64.7091%" y="4164" width="0.1982%" height="15" fill="rgb(228,116,20)"/><text x="64.9591%" y="4174.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="64.7091%" y="4180" width="0.1982%" height="15" fill="rgb(209,192,17)"/><text x="64.9591%" y="4190.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (7 samples, 0.13%)</title><rect x="64.9793%" y="4196" width="0.1261%" height="15" fill="rgb(224,88,34)"/><text x="65.2293%" y="4206.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (7 samples, 0.13%)</title><rect x="64.9793%" y="4212" width="0.1261%" height="15" fill="rgb(233,38,6)"/><text x="65.2293%" y="4222.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="64.9973%" y="4228" width="0.1081%" height="15" fill="rgb(212,59,30)"/><text x="65.2473%" y="4238.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="64.9973%" y="4244" width="0.1081%" height="15" fill="rgb(213,80,3)"/><text x="65.2473%" y="4254.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="64.9973%" y="4260" width="0.1081%" height="15" fill="rgb(251,178,7)"/><text x="65.2473%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="64.9973%" y="4276" width="0.1081%" height="15" fill="rgb(213,154,26)"/><text x="65.2473%" y="4286.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (13 samples, 0.23%)</title><rect x="64.9072%" y="4148" width="0.2342%" height="15" fill="rgb(238,165,49)"/><text x="65.1572%" y="4158.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (9 samples, 0.16%)</title><rect x="64.9793%" y="4164" width="0.1621%" height="15" fill="rgb(248,91,46)"/><text x="65.2293%" y="4174.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (9 samples, 0.16%)</title><rect x="64.9793%" y="4180" width="0.1621%" height="15" fill="rgb(244,21,52)"/><text x="65.2293%" y="4190.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (91 samples, 1.64%)</title><rect x="63.5741%" y="4020" width="1.6393%" height="15" fill="rgb(247,122,20)"/><text x="63.8241%" y="4030.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (91 samples, 1.64%)</title><rect x="63.5741%" y="4036" width="1.6393%" height="15" fill="rgb(218,27,9)"/><text x="63.8241%" y="4046.50"></text></g><g><title>infer_call (astroid/inference.py:229) (66 samples, 1.19%)</title><rect x="64.0245%" y="4052" width="1.1890%" height="15" fill="rgb(246,7,6)"/><text x="64.2745%" y="4062.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (50 samples, 0.90%)</title><rect x="64.3127%" y="4068" width="0.9007%" height="15" fill="rgb(227,135,54)"/><text x="64.5627%" y="4078.50"></text></g><g><title>infer (astroid/node_classes.py:380) (50 samples, 0.90%)</title><rect x="64.3127%" y="4084" width="0.9007%" height="15" fill="rgb(247,14,11)"/><text x="64.5627%" y="4094.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (50 samples, 0.90%)</title><rect x="64.3127%" y="4100" width="0.9007%" height="15" fill="rgb(206,149,34)"/><text x="64.5627%" y="4110.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (50 samples, 0.90%)</title><rect x="64.3127%" y="4116" width="0.9007%" height="15" fill="rgb(227,228,4)"/><text x="64.5627%" y="4126.50"></text></g><g><title>infer_call (astroid/inference.py:229) (37 samples, 0.67%)</title><rect x="64.5469%" y="4132" width="0.6665%" height="15" fill="rgb(238,218,28)"/><text x="64.7969%" y="4142.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="65.4297%" y="4276" width="0.1801%" height="15" fill="rgb(252,86,40)"/><text x="65.6797%" y="4286.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="65.4297%" y="4292" width="0.1801%" height="15" fill="rgb(251,225,11)"/><text x="65.6797%" y="4302.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="65.4297%" y="4308" width="0.1801%" height="15" fill="rgb(206,46,49)"/><text x="65.6797%" y="4318.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="65.4297%" y="4324" width="0.1801%" height="15" fill="rgb(245,128,24)"/><text x="65.6797%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="65.4297%" y="4340" width="0.1801%" height="15" fill="rgb(219,177,34)"/><text x="65.6797%" y="4350.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="65.4297%" y="4356" width="0.1801%" height="15" fill="rgb(218,60,48)"/><text x="65.6797%" y="4366.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="65.4297%" y="4372" width="0.1801%" height="15" fill="rgb(221,11,5)"/><text x="65.6797%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="65.4297%" y="4388" width="0.1801%" height="15" fill="rgb(220,148,13)"/><text x="65.6797%" y="4398.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="65.4297%" y="4404" width="0.1801%" height="15" fill="rgb(210,16,3)"/><text x="65.6797%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="65.4297%" y="4420" width="0.1801%" height="15" fill="rgb(236,80,2)"/><text x="65.6797%" y="4430.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="65.4297%" y="4436" width="0.1801%" height="15" fill="rgb(239,129,19)"/><text x="65.6797%" y="4446.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (10 samples, 0.18%)</title><rect x="65.4297%" y="4452" width="0.1801%" height="15" fill="rgb(220,106,35)"/><text x="65.6797%" y="4462.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (10 samples, 0.18%)</title><rect x="65.4297%" y="4468" width="0.1801%" height="15" fill="rgb(252,139,45)"/><text x="65.6797%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4484" width="0.1801%" height="15" fill="rgb(229,8,36)"/><text x="65.6797%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4500" width="0.1801%" height="15" fill="rgb(230,126,33)"/><text x="65.6797%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4516" width="0.1801%" height="15" fill="rgb(239,140,21)"/><text x="65.6797%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4532" width="0.1801%" height="15" fill="rgb(254,104,9)"/><text x="65.6797%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4548" width="0.1801%" height="15" fill="rgb(239,52,14)"/><text x="65.6797%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4564" width="0.1801%" height="15" fill="rgb(208,227,44)"/><text x="65.6797%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4580" width="0.1801%" height="15" fill="rgb(246,18,19)"/><text x="65.6797%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4596" width="0.1801%" height="15" fill="rgb(235,228,25)"/><text x="65.6797%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4612" width="0.1801%" height="15" fill="rgb(240,156,20)"/><text x="65.6797%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4628" width="0.1801%" height="15" fill="rgb(224,8,20)"/><text x="65.6797%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4644" width="0.1801%" height="15" fill="rgb(214,12,52)"/><text x="65.6797%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4660" width="0.1801%" height="15" fill="rgb(211,220,47)"/><text x="65.6797%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4676" width="0.1801%" height="15" fill="rgb(250,173,5)"/><text x="65.6797%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="65.4297%" y="4692" width="0.1801%" height="15" fill="rgb(250,125,52)"/><text x="65.6797%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="65.4297%" y="4708" width="0.1801%" height="15" fill="rgb(209,133,18)"/><text x="65.6797%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (9 samples, 0.16%)</title><rect x="65.4477%" y="4724" width="0.1621%" height="15" fill="rgb(216,173,22)"/><text x="65.6977%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (9 samples, 0.16%)</title><rect x="65.4477%" y="4740" width="0.1621%" height="15" fill="rgb(205,3,22)"/><text x="65.6977%" y="4750.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="65.4297%" y="4244" width="0.1982%" height="15" fill="rgb(248,22,20)"/><text x="65.6797%" y="4254.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="65.4297%" y="4260" width="0.1982%" height="15" fill="rgb(233,6,29)"/><text x="65.6797%" y="4270.50"></text></g><g><title>has_dynamic_getattr (astroid/scoped_nodes.py:2642) (9 samples, 0.16%)</title><rect x="65.8440%" y="4276" width="0.1621%" height="15" fill="rgb(240,22,54)"/><text x="66.0940%" y="4286.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (9 samples, 0.16%)</title><rect x="65.8440%" y="4292" width="0.1621%" height="15" fill="rgb(231,133,32)"/><text x="66.0940%" y="4302.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (7 samples, 0.13%)</title><rect x="65.8800%" y="4308" width="0.1261%" height="15" fill="rgb(248,193,4)"/><text x="66.1300%" y="4318.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (7 samples, 0.13%)</title><rect x="65.8800%" y="4324" width="0.1261%" height="15" fill="rgb(211,178,46)"/><text x="66.1300%" y="4334.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2617) (12 samples, 0.22%)</title><rect x="65.8440%" y="4260" width="0.2162%" height="15" fill="rgb(224,5,42)"/><text x="66.0940%" y="4270.50"></text></g><g><title>infer_call (astroid/inference.py:223) (37 samples, 0.67%)</title><rect x="65.4116%" y="4180" width="0.6665%" height="15" fill="rgb(239,176,25)"/><text x="65.6616%" y="4190.50"></text></g><g><title>infer (astroid/node_classes.py:380) (37 samples, 0.67%)</title><rect x="65.4116%" y="4196" width="0.6665%" height="15" fill="rgb(245,187,50)"/><text x="65.6616%" y="4206.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (37 samples, 0.67%)</title><rect x="65.4116%" y="4212" width="0.6665%" height="15" fill="rgb(248,24,15)"/><text x="65.6616%" y="4222.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (36 samples, 0.65%)</title><rect x="65.4297%" y="4228" width="0.6485%" height="15" fill="rgb(205,166,13)"/><text x="65.6797%" y="4238.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (25 samples, 0.45%)</title><rect x="65.6278%" y="4244" width="0.4504%" height="15" fill="rgb(208,114,23)"/><text x="65.8778%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="67.0330%" y="4692" width="0.1982%" height="15" fill="rgb(239,127,18)"/><text x="67.2830%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="67.0510%" y="4708" width="0.1801%" height="15" fill="rgb(219,154,28)"/><text x="67.3010%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="67.0510%" y="4724" width="0.1801%" height="15" fill="rgb(225,157,23)"/><text x="67.3010%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (7 samples, 0.13%)</title><rect x="67.1050%" y="4740" width="0.1261%" height="15" fill="rgb(219,8,6)"/><text x="67.3550%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (7 samples, 0.13%)</title><rect x="67.1050%" y="4756" width="0.1261%" height="15" fill="rgb(212,47,6)"/><text x="67.3550%" y="4766.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (72 samples, 1.30%)</title><rect x="66.0782%" y="4196" width="1.2971%" height="15" fill="rgb(224,190,4)"/><text x="66.3282%" y="4206.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (72 samples, 1.30%)</title><rect x="66.0782%" y="4212" width="1.2971%" height="15" fill="rgb(239,183,29)"/><text x="66.3282%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (71 samples, 1.28%)</title><rect x="66.0962%" y="4228" width="1.2790%" height="15" fill="rgb(213,57,7)"/><text x="66.3462%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (71 samples, 1.28%)</title><rect x="66.0962%" y="4244" width="1.2790%" height="15" fill="rgb(216,148,1)"/><text x="66.3462%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (71 samples, 1.28%)</title><rect x="66.0962%" y="4260" width="1.2790%" height="15" fill="rgb(236,182,29)"/><text x="66.3462%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (71 samples, 1.28%)</title><rect x="66.0962%" y="4276" width="1.2790%" height="15" fill="rgb(244,120,48)"/><text x="66.3462%" y="4286.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (71 samples, 1.28%)</title><rect x="66.0962%" y="4292" width="1.2790%" height="15" fill="rgb(206,71,34)"/><text x="66.3462%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (70 samples, 1.26%)</title><rect x="66.1142%" y="4308" width="1.2610%" height="15" fill="rgb(242,32,6)"/><text x="66.3642%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (70 samples, 1.26%)</title><rect x="66.1142%" y="4324" width="1.2610%" height="15" fill="rgb(241,35,3)"/><text x="66.3642%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (70 samples, 1.26%)</title><rect x="66.1142%" y="4340" width="1.2610%" height="15" fill="rgb(222,62,19)"/><text x="66.3642%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (70 samples, 1.26%)</title><rect x="66.1142%" y="4356" width="1.2610%" height="15" fill="rgb(223,110,41)"/><text x="66.3642%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (70 samples, 1.26%)</title><rect x="66.1142%" y="4372" width="1.2610%" height="15" fill="rgb(208,224,4)"/><text x="66.3642%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (70 samples, 1.26%)</title><rect x="66.1142%" y="4388" width="1.2610%" height="15" fill="rgb(241,137,19)"/><text x="66.3642%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (67 samples, 1.21%)</title><rect x="66.1683%" y="4404" width="1.2070%" height="15" fill="rgb(244,24,17)"/><text x="66.4183%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (67 samples, 1.21%)</title><rect x="66.1683%" y="4420" width="1.2070%" height="15" fill="rgb(245,178,49)"/><text x="66.4183%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (58 samples, 1.04%)</title><rect x="66.3304%" y="4436" width="1.0449%" height="15" fill="rgb(219,160,38)"/><text x="66.5804%" y="4446.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (58 samples, 1.04%)</title><rect x="66.3304%" y="4452" width="1.0449%" height="15" fill="rgb(228,137,14)"/><text x="66.5804%" y="4462.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (54 samples, 0.97%)</title><rect x="66.4025%" y="4468" width="0.9728%" height="15" fill="rgb(237,134,11)"/><text x="66.6525%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (54 samples, 0.97%)</title><rect x="66.4025%" y="4484" width="0.9728%" height="15" fill="rgb(211,126,44)"/><text x="66.6525%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (52 samples, 0.94%)</title><rect x="66.4385%" y="4500" width="0.9368%" height="15" fill="rgb(226,171,33)"/><text x="66.6885%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (52 samples, 0.94%)</title><rect x="66.4385%" y="4516" width="0.9368%" height="15" fill="rgb(253,99,13)"/><text x="66.6885%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (52 samples, 0.94%)</title><rect x="66.4385%" y="4532" width="0.9368%" height="15" fill="rgb(244,48,7)"/><text x="66.6885%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (48 samples, 0.86%)</title><rect x="66.5105%" y="4548" width="0.8647%" height="15" fill="rgb(244,217,54)"/><text x="66.7605%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (39 samples, 0.70%)</title><rect x="66.6727%" y="4564" width="0.7026%" height="15" fill="rgb(224,15,18)"/><text x="66.9227%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (37 samples, 0.67%)</title><rect x="66.7087%" y="4580" width="0.6665%" height="15" fill="rgb(244,99,12)"/><text x="66.9587%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (34 samples, 0.61%)</title><rect x="66.7627%" y="4596" width="0.6125%" height="15" fill="rgb(233,226,8)"/><text x="67.0127%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (34 samples, 0.61%)</title><rect x="66.7627%" y="4612" width="0.6125%" height="15" fill="rgb(229,211,3)"/><text x="67.0127%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (28 samples, 0.50%)</title><rect x="66.8708%" y="4628" width="0.5044%" height="15" fill="rgb(216,140,21)"/><text x="67.1208%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (23 samples, 0.41%)</title><rect x="66.9609%" y="4644" width="0.4143%" height="15" fill="rgb(234,122,30)"/><text x="67.2109%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (21 samples, 0.38%)</title><rect x="66.9969%" y="4660" width="0.3783%" height="15" fill="rgb(236,25,46)"/><text x="67.2469%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (20 samples, 0.36%)</title><rect x="67.0150%" y="4676" width="0.3603%" height="15" fill="rgb(217,52,54)"/><text x="67.2650%" y="4686.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (119 samples, 2.14%)</title><rect x="65.3035%" y="4084" width="2.1438%" height="15" fill="rgb(222,29,26)"/><text x="65.5535%" y="4094.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (117 samples, 2.11%)</title><rect x="65.3396%" y="4100" width="2.1077%" height="15" fill="rgb(216,177,29)"/><text x="65.5896%" y="4110.50">w..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (116 samples, 2.09%)</title><rect x="65.3576%" y="4116" width="2.0897%" height="15" fill="rgb(247,136,51)"/><text x="65.6076%" y="4126.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (116 samples, 2.09%)</title><rect x="65.3576%" y="4132" width="2.0897%" height="15" fill="rgb(231,47,47)"/><text x="65.6076%" y="4142.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (116 samples, 2.09%)</title><rect x="65.3576%" y="4148" width="2.0897%" height="15" fill="rgb(211,192,36)"/><text x="65.6076%" y="4158.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (116 samples, 2.09%)</title><rect x="65.3576%" y="4164" width="2.0897%" height="15" fill="rgb(229,156,32)"/><text x="65.6076%" y="4174.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (76 samples, 1.37%)</title><rect x="66.0782%" y="4180" width="1.3691%" height="15" fill="rgb(248,213,20)"/><text x="66.3282%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (29 samples, 0.52%)</title><rect x="67.6275%" y="4196" width="0.5224%" height="15" fill="rgb(217,64,7)"/><text x="67.8775%" y="4206.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (29 samples, 0.52%)</title><rect x="67.6275%" y="4212" width="0.5224%" height="15" fill="rgb(232,142,8)"/><text x="67.8775%" y="4222.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (29 samples, 0.52%)</title><rect x="67.6275%" y="4228" width="0.5224%" height="15" fill="rgb(224,92,44)"/><text x="67.8775%" y="4238.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (27 samples, 0.49%)</title><rect x="67.6635%" y="4244" width="0.4864%" height="15" fill="rgb(214,169,17)"/><text x="67.9135%" y="4254.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (21 samples, 0.38%)</title><rect x="67.7716%" y="4260" width="0.3783%" height="15" fill="rgb(210,59,37)"/><text x="68.0216%" y="4270.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (21 samples, 0.38%)</title><rect x="67.7716%" y="4276" width="0.3783%" height="15" fill="rgb(214,116,48)"/><text x="68.0216%" y="4286.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (20 samples, 0.36%)</title><rect x="67.7896%" y="4292" width="0.3603%" height="15" fill="rgb(244,191,6)"/><text x="68.0396%" y="4302.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (17 samples, 0.31%)</title><rect x="67.8436%" y="4308" width="0.3063%" height="15" fill="rgb(241,50,52)"/><text x="68.0936%" y="4318.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (14 samples, 0.25%)</title><rect x="67.8977%" y="4324" width="0.2522%" height="15" fill="rgb(236,75,39)"/><text x="68.1477%" y="4334.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (13 samples, 0.23%)</title><rect x="67.9157%" y="4340" width="0.2342%" height="15" fill="rgb(236,99,0)"/><text x="68.1657%" y="4350.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (13 samples, 0.23%)</title><rect x="67.9157%" y="4356" width="0.2342%" height="15" fill="rgb(207,202,15)"/><text x="68.1657%" y="4366.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (13 samples, 0.23%)</title><rect x="67.9157%" y="4372" width="0.2342%" height="15" fill="rgb(233,207,14)"/><text x="68.1657%" y="4382.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="67.9517%" y="4388" width="0.1982%" height="15" fill="rgb(226,27,51)"/><text x="68.2017%" y="4398.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="67.9697%" y="4404" width="0.1801%" height="15" fill="rgb(206,104,42)"/><text x="68.2197%" y="4414.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (166 samples, 2.99%)</title><rect x="65.2135%" y="4052" width="2.9905%" height="15" fill="rgb(212,225,4)"/><text x="65.4635%" y="4062.50">_in..</text></g><g><title>infer (astroid/node_classes.py:380) (163 samples, 2.94%)</title><rect x="65.2675%" y="4068" width="2.9364%" height="15" fill="rgb(233,96,42)"/><text x="65.5175%" y="4078.50">in..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (41 samples, 0.74%)</title><rect x="67.4653%" y="4084" width="0.7386%" height="15" fill="rgb(229,21,32)"/><text x="67.7153%" y="4094.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (41 samples, 0.74%)</title><rect x="67.4653%" y="4100" width="0.7386%" height="15" fill="rgb(226,216,24)"/><text x="67.7153%" y="4110.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (41 samples, 0.74%)</title><rect x="67.4653%" y="4116" width="0.7386%" height="15" fill="rgb(221,163,17)"/><text x="67.7153%" y="4126.50"></text></g><g><title>infer (astroid/node_classes.py:380) (39 samples, 0.70%)</title><rect x="67.5014%" y="4132" width="0.7026%" height="15" fill="rgb(216,216,42)"/><text x="67.7514%" y="4142.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (39 samples, 0.70%)</title><rect x="67.5014%" y="4148" width="0.7026%" height="15" fill="rgb(240,118,7)"/><text x="67.7514%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="67.5014%" y="4164" width="0.7026%" height="15" fill="rgb(221,67,37)"/><text x="67.7514%" y="4174.50"></text></g><g><title>infer_call (astroid/inference.py:229) (33 samples, 0.59%)</title><rect x="67.6094%" y="4180" width="0.5945%" height="15" fill="rgb(241,32,44)"/><text x="67.8594%" y="4190.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="68.2039%" y="4052" width="0.1081%" height="15" fill="rgb(235,204,43)"/><text x="68.4539%" y="4062.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="68.2039%" y="4068" width="0.1081%" height="15" fill="rgb(213,116,10)"/><text x="68.4539%" y="4078.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="68.2039%" y="4084" width="0.1081%" height="15" fill="rgb(239,15,48)"/><text x="68.4539%" y="4094.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="68.2039%" y="4100" width="0.1081%" height="15" fill="rgb(207,123,36)"/><text x="68.4539%" y="4110.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="68.2039%" y="4116" width="0.1081%" height="15" fill="rgb(209,103,30)"/><text x="68.4539%" y="4126.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="68.2039%" y="4132" width="0.1081%" height="15" fill="rgb(238,100,19)"/><text x="68.4539%" y="4142.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="68.2039%" y="4148" width="0.1081%" height="15" fill="rgb(244,30,14)"/><text x="68.4539%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="68.2039%" y="4164" width="0.1081%" height="15" fill="rgb(249,174,6)"/><text x="68.4539%" y="4174.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="68.2039%" y="4180" width="0.1081%" height="15" fill="rgb(235,213,41)"/><text x="68.4539%" y="4190.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="68.2039%" y="4196" width="0.1081%" height="15" fill="rgb(213,118,6)"/><text x="68.4539%" y="4206.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="68.2039%" y="4212" width="0.1081%" height="15" fill="rgb(235,44,51)"/><text x="68.4539%" y="4222.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="68.2039%" y="4228" width="0.1081%" height="15" fill="rgb(217,9,53)"/><text x="68.4539%" y="4238.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="68.2039%" y="4244" width="0.1081%" height="15" fill="rgb(237,172,34)"/><text x="68.4539%" y="4254.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="68.2039%" y="4260" width="0.1081%" height="15" fill="rgb(206,206,11)"/><text x="68.4539%" y="4270.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="68.2039%" y="4276" width="0.1081%" height="15" fill="rgb(214,149,29)"/><text x="68.4539%" y="4286.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="68.2039%" y="4292" width="0.1081%" height="15" fill="rgb(208,123,3)"/><text x="68.4539%" y="4302.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="68.2039%" y="4308" width="0.1081%" height="15" fill="rgb(229,126,4)"/><text x="68.4539%" y="4318.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="68.2039%" y="4324" width="0.1081%" height="15" fill="rgb(222,92,36)"/><text x="68.4539%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="68.2039%" y="4340" width="0.1081%" height="15" fill="rgb(216,39,41)"/><text x="68.4539%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="68.2039%" y="4356" width="0.1081%" height="15" fill="rgb(253,127,28)"/><text x="68.4539%" y="4366.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="68.3841%" y="4324" width="0.1982%" height="15" fill="rgb(249,152,51)"/><text x="68.6341%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="68.3841%" y="4340" width="0.1982%" height="15" fill="rgb(209,123,42)"/><text x="68.6341%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="68.3841%" y="4356" width="0.1982%" height="15" fill="rgb(241,118,22)"/><text x="68.6341%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="68.3841%" y="4372" width="0.1982%" height="15" fill="rgb(208,25,7)"/><text x="68.6341%" y="4382.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="68.3841%" y="4388" width="0.1982%" height="15" fill="rgb(243,144,39)"/><text x="68.6341%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="68.3841%" y="4404" width="0.1982%" height="15" fill="rgb(250,50,5)"/><text x="68.6341%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="68.3841%" y="4420" width="0.1982%" height="15" fill="rgb(207,67,11)"/><text x="68.6341%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (11 samples, 0.20%)</title><rect x="68.3841%" y="4436" width="0.1982%" height="15" fill="rgb(245,204,40)"/><text x="68.6341%" y="4446.50"></text></g><g><title>infer_name (astroid/inference.py:199) (11 samples, 0.20%)</title><rect x="68.3841%" y="4452" width="0.1982%" height="15" fill="rgb(238,228,24)"/><text x="68.6341%" y="4462.50"></text></g><g><title>copy_context (astroid/context.py:148) (10 samples, 0.18%)</title><rect x="68.4021%" y="4468" width="0.1801%" height="15" fill="rgb(217,116,22)"/><text x="68.6521%" y="4478.50"></text></g><g><title>clone (astroid/context.py:107) (10 samples, 0.18%)</title><rect x="68.4021%" y="4484" width="0.1801%" height="15" fill="rgb(234,98,12)"/><text x="68.6521%" y="4494.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="68.3841%" y="4260" width="0.2162%" height="15" fill="rgb(242,170,50)"/><text x="68.6341%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="68.3841%" y="4276" width="0.2162%" height="15" fill="rgb(235,7,5)"/><text x="68.6341%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="68.3841%" y="4292" width="0.2162%" height="15" fill="rgb(241,114,28)"/><text x="68.6341%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="68.3841%" y="4308" width="0.2162%" height="15" fill="rgb(246,112,42)"/><text x="68.6341%" y="4318.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (14 samples, 0.25%)</title><rect x="68.3841%" y="4196" width="0.2522%" height="15" fill="rgb(248,228,14)"/><text x="68.6341%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="68.3841%" y="4212" width="0.2522%" height="15" fill="rgb(208,133,18)"/><text x="68.6341%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="68.3841%" y="4228" width="0.2522%" height="15" fill="rgb(207,35,49)"/><text x="68.6341%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="68.3841%" y="4244" width="0.2522%" height="15" fill="rgb(205,68,36)"/><text x="68.6341%" y="4254.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="68.7264%" y="4260" width="0.1261%" height="15" fill="rgb(245,62,40)"/><text x="68.9764%" y="4270.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="68.7264%" y="4276" width="0.1261%" height="15" fill="rgb(228,27,24)"/><text x="68.9764%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="68.7264%" y="4292" width="0.1261%" height="15" fill="rgb(253,19,12)"/><text x="68.9764%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="68.7264%" y="4308" width="0.1261%" height="15" fill="rgb(232,28,20)"/><text x="68.9764%" y="4318.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (16 samples, 0.29%)</title><rect x="68.6363%" y="4212" width="0.2882%" height="15" fill="rgb(218,35,51)"/><text x="68.8863%" y="4222.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (16 samples, 0.29%)</title><rect x="68.6363%" y="4228" width="0.2882%" height="15" fill="rgb(212,90,40)"/><text x="68.8863%" y="4238.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="68.7264%" y="4244" width="0.1982%" height="15" fill="rgb(220,172,12)"/><text x="68.9764%" y="4254.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="68.9605%" y="4228" width="0.1081%" height="15" fill="rgb(226,159,20)"/><text x="69.2105%" y="4238.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (7 samples, 0.13%)</title><rect x="69.0686%" y="4244" width="0.1261%" height="15" fill="rgb(234,205,16)"/><text x="69.3186%" y="4254.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (7 samples, 0.13%)</title><rect x="69.0686%" y="4260" width="0.1261%" height="15" fill="rgb(207,9,39)"/><text x="69.3186%" y="4270.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="69.0686%" y="4276" width="0.1261%" height="15" fill="rgb(249,143,15)"/><text x="69.3186%" y="4286.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (7 samples, 0.13%)</title><rect x="69.0686%" y="4292" width="0.1261%" height="15" fill="rgb(253,133,29)"/><text x="69.3186%" y="4302.50"></text></g><g><title>infer_call (astroid/inference.py:223) (52 samples, 0.94%)</title><rect x="68.3661%" y="4132" width="0.9368%" height="15" fill="rgb(221,187,0)"/><text x="68.6161%" y="4142.50"></text></g><g><title>infer (astroid/node_classes.py:380) (51 samples, 0.92%)</title><rect x="68.3841%" y="4148" width="0.9188%" height="15" fill="rgb(205,204,26)"/><text x="68.6341%" y="4158.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (51 samples, 0.92%)</title><rect x="68.3841%" y="4164" width="0.9188%" height="15" fill="rgb(224,68,54)"/><text x="68.6341%" y="4174.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (51 samples, 0.92%)</title><rect x="68.3841%" y="4180" width="0.9188%" height="15" fill="rgb(209,67,4)"/><text x="68.6341%" y="4190.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (37 samples, 0.67%)</title><rect x="68.6363%" y="4196" width="0.6665%" height="15" fill="rgb(228,229,18)"/><text x="68.8863%" y="4206.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (21 samples, 0.38%)</title><rect x="68.9245%" y="4212" width="0.3783%" height="15" fill="rgb(231,89,13)"/><text x="69.1745%" y="4222.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (13 samples, 0.23%)</title><rect x="69.0686%" y="4228" width="0.2342%" height="15" fill="rgb(210,182,18)"/><text x="69.3186%" y="4238.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (6 samples, 0.11%)</title><rect x="69.1947%" y="4244" width="0.1081%" height="15" fill="rgb(240,105,2)"/><text x="69.4447%" y="4254.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (6 samples, 0.11%)</title><rect x="69.1947%" y="4260" width="0.1081%" height="15" fill="rgb(207,170,50)"/><text x="69.4447%" y="4270.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="69.4830%" y="4436" width="0.1441%" height="15" fill="rgb(232,133,24)"/><text x="69.7330%" y="4446.50"></text></g><g><title>infer_call (astroid/inference.py:223) (15 samples, 0.27%)</title><rect x="69.3749%" y="4212" width="0.2702%" height="15" fill="rgb(235,166,27)"/><text x="69.6249%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="69.3749%" y="4228" width="0.2702%" height="15" fill="rgb(209,19,13)"/><text x="69.6249%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="69.3749%" y="4244" width="0.2702%" height="15" fill="rgb(226,79,39)"/><text x="69.6249%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="69.3749%" y="4260" width="0.2702%" height="15" fill="rgb(222,163,10)"/><text x="69.6249%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (15 samples, 0.27%)</title><rect x="69.3749%" y="4276" width="0.2702%" height="15" fill="rgb(214,44,19)"/><text x="69.6249%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="69.3749%" y="4292" width="0.2702%" height="15" fill="rgb(210,217,13)"/><text x="69.6249%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="69.3749%" y="4308" width="0.2702%" height="15" fill="rgb(237,61,54)"/><text x="69.6249%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (15 samples, 0.27%)</title><rect x="69.3749%" y="4324" width="0.2702%" height="15" fill="rgb(226,184,24)"/><text x="69.6249%" y="4334.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (15 samples, 0.27%)</title><rect x="69.3749%" y="4340" width="0.2702%" height="15" fill="rgb(223,226,4)"/><text x="69.6249%" y="4350.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (15 samples, 0.27%)</title><rect x="69.3749%" y="4356" width="0.2702%" height="15" fill="rgb(210,26,41)"/><text x="69.6249%" y="4366.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (15 samples, 0.27%)</title><rect x="69.3749%" y="4372" width="0.2702%" height="15" fill="rgb(220,221,6)"/><text x="69.6249%" y="4382.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (15 samples, 0.27%)</title><rect x="69.3749%" y="4388" width="0.2702%" height="15" fill="rgb(225,89,49)"/><text x="69.6249%" y="4398.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (15 samples, 0.27%)</title><rect x="69.3749%" y="4404" width="0.2702%" height="15" fill="rgb(218,70,45)"/><text x="69.6249%" y="4414.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="69.4469%" y="4420" width="0.1982%" height="15" fill="rgb(238,166,21)"/><text x="69.6969%" y="4430.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (12 samples, 0.22%)</title><rect x="69.6451%" y="4228" width="0.2162%" height="15" fill="rgb(224,141,44)"/><text x="69.8951%" y="4238.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (12 samples, 0.22%)</title><rect x="69.6451%" y="4244" width="0.2162%" height="15" fill="rgb(230,12,49)"/><text x="69.8951%" y="4254.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (9 samples, 0.16%)</title><rect x="69.6992%" y="4260" width="0.1621%" height="15" fill="rgb(212,174,12)"/><text x="69.9492%" y="4270.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="69.8613%" y="4276" width="0.1261%" height="15" fill="rgb(246,67,9)"/><text x="70.1113%" y="4286.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="69.8613%" y="4292" width="0.1261%" height="15" fill="rgb(239,35,23)"/><text x="70.1113%" y="4302.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="69.8613%" y="4308" width="0.1261%" height="15" fill="rgb(211,167,0)"/><text x="70.1113%" y="4318.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="69.8613%" y="4324" width="0.1261%" height="15" fill="rgb(225,119,45)"/><text x="70.1113%" y="4334.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="69.8613%" y="4340" width="0.1261%" height="15" fill="rgb(210,162,6)"/><text x="70.1113%" y="4350.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="69.8613%" y="4356" width="0.1261%" height="15" fill="rgb(208,118,35)"/><text x="70.1113%" y="4366.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="69.8613%" y="4372" width="0.1261%" height="15" fill="rgb(239,4,53)"/><text x="70.1113%" y="4382.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (11 samples, 0.20%)</title><rect x="69.8613%" y="4228" width="0.1982%" height="15" fill="rgb(213,130,21)"/><text x="70.1113%" y="4238.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="69.8613%" y="4244" width="0.1982%" height="15" fill="rgb(235,148,0)"/><text x="70.1113%" y="4254.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (11 samples, 0.20%)</title><rect x="69.8613%" y="4260" width="0.1982%" height="15" fill="rgb(244,224,18)"/><text x="70.1113%" y="4270.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (6 samples, 0.11%)</title><rect x="70.1675%" y="4292" width="0.1081%" height="15" fill="rgb(211,214,4)"/><text x="70.4175%" y="4302.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (6 samples, 0.11%)</title><rect x="70.1675%" y="4308" width="0.1081%" height="15" fill="rgb(206,119,25)"/><text x="70.4175%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (14 samples, 0.25%)</title><rect x="70.0594%" y="4228" width="0.2522%" height="15" fill="rgb(243,93,47)"/><text x="70.3094%" y="4238.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (9 samples, 0.16%)</title><rect x="70.1495%" y="4244" width="0.1621%" height="15" fill="rgb(224,194,6)"/><text x="70.3995%" y="4254.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (8 samples, 0.14%)</title><rect x="70.1675%" y="4260" width="0.1441%" height="15" fill="rgb(243,229,6)"/><text x="70.4175%" y="4270.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (8 samples, 0.14%)</title><rect x="70.1675%" y="4276" width="0.1441%" height="15" fill="rgb(207,23,50)"/><text x="70.4175%" y="4286.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (8 samples, 0.14%)</title><rect x="70.3117%" y="4292" width="0.1441%" height="15" fill="rgb(253,192,32)"/><text x="70.5617%" y="4302.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (8 samples, 0.14%)</title><rect x="70.3117%" y="4308" width="0.1441%" height="15" fill="rgb(213,21,6)"/><text x="70.5617%" y="4318.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="70.3297%" y="4324" width="0.1261%" height="15" fill="rgb(243,151,13)"/><text x="70.5797%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="70.3297%" y="4340" width="0.1261%" height="15" fill="rgb(233,165,41)"/><text x="70.5797%" y="4350.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="70.3297%" y="4356" width="0.1261%" height="15" fill="rgb(246,176,45)"/><text x="70.5797%" y="4366.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="70.3297%" y="4372" width="0.1261%" height="15" fill="rgb(217,170,52)"/><text x="70.5797%" y="4382.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="70.3297%" y="4388" width="0.1261%" height="15" fill="rgb(214,203,54)"/><text x="70.5797%" y="4398.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="70.3297%" y="4404" width="0.1261%" height="15" fill="rgb(248,215,49)"/><text x="70.5797%" y="4414.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="70.3297%" y="4420" width="0.1261%" height="15" fill="rgb(208,46,10)"/><text x="70.5797%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (119 samples, 2.14%)</title><rect x="68.3661%" y="4100" width="2.1438%" height="15" fill="rgb(254,5,31)"/><text x="68.6161%" y="4110.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (119 samples, 2.14%)</title><rect x="68.3661%" y="4116" width="2.1438%" height="15" fill="rgb(222,104,33)"/><text x="68.6161%" y="4126.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (67 samples, 1.21%)</title><rect x="69.3028%" y="4132" width="1.2070%" height="15" fill="rgb(248,49,16)"/><text x="69.5528%" y="4142.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (63 samples, 1.13%)</title><rect x="69.3749%" y="4148" width="1.1349%" height="15" fill="rgb(232,198,41)"/><text x="69.6249%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (63 samples, 1.13%)</title><rect x="69.3749%" y="4164" width="1.1349%" height="15" fill="rgb(214,125,3)"/><text x="69.6249%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (63 samples, 1.13%)</title><rect x="69.3749%" y="4180" width="1.1349%" height="15" fill="rgb(229,220,28)"/><text x="69.6249%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (63 samples, 1.13%)</title><rect x="69.3749%" y="4196" width="1.1349%" height="15" fill="rgb(222,64,37)"/><text x="69.6249%" y="4206.50"></text></g><g><title>infer_call (astroid/inference.py:229) (48 samples, 0.86%)</title><rect x="69.6451%" y="4212" width="0.8647%" height="15" fill="rgb(249,184,13)"/><text x="69.8951%" y="4222.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (11 samples, 0.20%)</title><rect x="70.3117%" y="4228" width="0.1982%" height="15" fill="rgb(252,176,6)"/><text x="70.5617%" y="4238.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (11 samples, 0.20%)</title><rect x="70.3117%" y="4244" width="0.1982%" height="15" fill="rgb(228,153,7)"/><text x="70.5617%" y="4254.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (11 samples, 0.20%)</title><rect x="70.3117%" y="4260" width="0.1982%" height="15" fill="rgb(242,193,5)"/><text x="70.5617%" y="4270.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (11 samples, 0.20%)</title><rect x="70.3117%" y="4276" width="0.1982%" height="15" fill="rgb(232,140,9)"/><text x="70.5617%" y="4286.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2617) (6 samples, 0.11%)</title><rect x="70.8521%" y="4340" width="0.1081%" height="15" fill="rgb(213,222,16)"/><text x="71.1021%" y="4350.50"></text></g><g><title>infer_call (astroid/inference.py:223) (18 samples, 0.32%)</title><rect x="70.6900%" y="4260" width="0.3243%" height="15" fill="rgb(222,75,50)"/><text x="70.9400%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (18 samples, 0.32%)</title><rect x="70.6900%" y="4276" width="0.3243%" height="15" fill="rgb(205,180,2)"/><text x="70.9400%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="70.6900%" y="4292" width="0.3243%" height="15" fill="rgb(216,34,7)"/><text x="70.9400%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="70.7080%" y="4308" width="0.3063%" height="15" fill="rgb(253,16,32)"/><text x="70.9580%" y="4318.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (14 samples, 0.25%)</title><rect x="70.7620%" y="4324" width="0.2522%" height="15" fill="rgb(208,97,28)"/><text x="71.0120%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:1976) (6 samples, 0.11%)</title><rect x="71.4826%" y="4708" width="0.1081%" height="15" fill="rgb(225,92,11)"/><text x="71.7326%" y="4718.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (73 samples, 1.32%)</title><rect x="70.6179%" y="4164" width="1.3151%" height="15" fill="rgb(243,38,12)"/><text x="70.8679%" y="4174.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (72 samples, 1.30%)</title><rect x="70.6359%" y="4180" width="1.2971%" height="15" fill="rgb(208,139,16)"/><text x="70.8859%" y="4190.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (70 samples, 1.26%)</title><rect x="70.6720%" y="4196" width="1.2610%" height="15" fill="rgb(227,24,9)"/><text x="70.9220%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (70 samples, 1.26%)</title><rect x="70.6720%" y="4212" width="1.2610%" height="15" fill="rgb(206,62,11)"/><text x="70.9220%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (70 samples, 1.26%)</title><rect x="70.6720%" y="4228" width="1.2610%" height="15" fill="rgb(228,134,27)"/><text x="70.9220%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (70 samples, 1.26%)</title><rect x="70.6720%" y="4244" width="1.2610%" height="15" fill="rgb(205,55,33)"/><text x="70.9220%" y="4254.50"></text></g><g><title>infer_call (astroid/inference.py:229) (51 samples, 0.92%)</title><rect x="71.0142%" y="4260" width="0.9188%" height="15" fill="rgb(243,75,43)"/><text x="71.2642%" y="4270.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (51 samples, 0.92%)</title><rect x="71.0142%" y="4276" width="0.9188%" height="15" fill="rgb(223,27,42)"/><text x="71.2642%" y="4286.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (51 samples, 0.92%)</title><rect x="71.0142%" y="4292" width="0.9188%" height="15" fill="rgb(232,189,33)"/><text x="71.2642%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (51 samples, 0.92%)</title><rect x="71.0142%" y="4308" width="0.9188%" height="15" fill="rgb(210,9,39)"/><text x="71.2642%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (51 samples, 0.92%)</title><rect x="71.0142%" y="4324" width="0.9188%" height="15" fill="rgb(242,85,26)"/><text x="71.2642%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (51 samples, 0.92%)</title><rect x="71.0142%" y="4340" width="0.9188%" height="15" fill="rgb(248,44,4)"/><text x="71.2642%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (50 samples, 0.90%)</title><rect x="71.0322%" y="4356" width="0.9007%" height="15" fill="rgb(250,96,46)"/><text x="71.2822%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (50 samples, 0.90%)</title><rect x="71.0322%" y="4372" width="0.9007%" height="15" fill="rgb(229,116,26)"/><text x="71.2822%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (49 samples, 0.88%)</title><rect x="71.0503%" y="4388" width="0.8827%" height="15" fill="rgb(246,94,34)"/><text x="71.3003%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (49 samples, 0.88%)</title><rect x="71.0503%" y="4404" width="0.8827%" height="15" fill="rgb(251,73,21)"/><text x="71.3003%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (49 samples, 0.88%)</title><rect x="71.0503%" y="4420" width="0.8827%" height="15" fill="rgb(254,121,25)"/><text x="71.3003%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (49 samples, 0.88%)</title><rect x="71.0503%" y="4436" width="0.8827%" height="15" fill="rgb(215,161,49)"/><text x="71.3003%" y="4446.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (49 samples, 0.88%)</title><rect x="71.0503%" y="4452" width="0.8827%" height="15" fill="rgb(221,43,13)"/><text x="71.3003%" y="4462.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (47 samples, 0.85%)</title><rect x="71.0863%" y="4468" width="0.8467%" height="15" fill="rgb(249,5,37)"/><text x="71.3363%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (43 samples, 0.77%)</title><rect x="71.1583%" y="4484" width="0.7746%" height="15" fill="rgb(226,25,44)"/><text x="71.4083%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (43 samples, 0.77%)</title><rect x="71.1583%" y="4500" width="0.7746%" height="15" fill="rgb(238,189,16)"/><text x="71.4083%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (42 samples, 0.76%)</title><rect x="71.1764%" y="4516" width="0.7566%" height="15" fill="rgb(251,186,8)"/><text x="71.4264%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (42 samples, 0.76%)</title><rect x="71.1764%" y="4532" width="0.7566%" height="15" fill="rgb(254,34,31)"/><text x="71.4264%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (41 samples, 0.74%)</title><rect x="71.1944%" y="4548" width="0.7386%" height="15" fill="rgb(225,215,27)"/><text x="71.4444%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (40 samples, 0.72%)</title><rect x="71.2124%" y="4564" width="0.7206%" height="15" fill="rgb(221,192,48)"/><text x="71.4624%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (40 samples, 0.72%)</title><rect x="71.2124%" y="4580" width="0.7206%" height="15" fill="rgb(219,137,20)"/><text x="71.4624%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (37 samples, 0.67%)</title><rect x="71.2664%" y="4596" width="0.6665%" height="15" fill="rgb(219,84,11)"/><text x="71.5164%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (35 samples, 0.63%)</title><rect x="71.3025%" y="4612" width="0.6305%" height="15" fill="rgb(224,10,23)"/><text x="71.5525%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (34 samples, 0.61%)</title><rect x="71.3205%" y="4628" width="0.6125%" height="15" fill="rgb(248,22,39)"/><text x="71.5705%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (30 samples, 0.54%)</title><rect x="71.3925%" y="4644" width="0.5404%" height="15" fill="rgb(212,154,20)"/><text x="71.6425%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (30 samples, 0.54%)</title><rect x="71.3925%" y="4660" width="0.5404%" height="15" fill="rgb(236,199,50)"/><text x="71.6425%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (28 samples, 0.50%)</title><rect x="71.4286%" y="4676" width="0.5044%" height="15" fill="rgb(211,9,17)"/><text x="71.6786%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (25 samples, 0.45%)</title><rect x="71.4826%" y="4692" width="0.4504%" height="15" fill="rgb(243,216,36)"/><text x="71.7326%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (18 samples, 0.32%)</title><rect x="71.6087%" y="4708" width="0.3243%" height="15" fill="rgb(250,2,10)"/><text x="71.8587%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="71.6808%" y="4724" width="0.2522%" height="15" fill="rgb(226,50,48)"/><text x="71.9308%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="71.7348%" y="4740" width="0.1982%" height="15" fill="rgb(243,81,16)"/><text x="71.9848%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="71.7528%" y="4756" width="0.1801%" height="15" fill="rgb(250,14,2)"/><text x="72.0028%" y="4766.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="71.9690%" y="4260" width="0.1261%" height="15" fill="rgb(233,135,29)"/><text x="72.2190%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="71.9870%" y="4276" width="0.1081%" height="15" fill="rgb(224,64,43)"/><text x="72.2370%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="71.9870%" y="4292" width="0.1081%" height="15" fill="rgb(238,84,13)"/><text x="72.2370%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="71.9870%" y="4308" width="0.1081%" height="15" fill="rgb(253,48,26)"/><text x="72.2370%" y="4318.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (26 samples, 0.47%)</title><rect x="72.0951%" y="4276" width="0.4684%" height="15" fill="rgb(205,223,31)"/><text x="72.3451%" y="4286.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (26 samples, 0.47%)</title><rect x="72.0951%" y="4292" width="0.4684%" height="15" fill="rgb(221,41,32)"/><text x="72.3451%" y="4302.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (26 samples, 0.47%)</title><rect x="72.0951%" y="4308" width="0.4684%" height="15" fill="rgb(213,158,31)"/><text x="72.3451%" y="4318.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (26 samples, 0.47%)</title><rect x="72.0951%" y="4324" width="0.4684%" height="15" fill="rgb(245,126,43)"/><text x="72.3451%" y="4334.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (26 samples, 0.47%)</title><rect x="72.0951%" y="4340" width="0.4684%" height="15" fill="rgb(227,7,22)"/><text x="72.3451%" y="4350.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (26 samples, 0.47%)</title><rect x="72.0951%" y="4356" width="0.4684%" height="15" fill="rgb(252,90,44)"/><text x="72.3451%" y="4366.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (25 samples, 0.45%)</title><rect x="72.1131%" y="4372" width="0.4504%" height="15" fill="rgb(253,91,0)"/><text x="72.3631%" y="4382.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (24 samples, 0.43%)</title><rect x="72.1311%" y="4388" width="0.4324%" height="15" fill="rgb(252,175,49)"/><text x="72.3811%" y="4398.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (22 samples, 0.40%)</title><rect x="72.1672%" y="4404" width="0.3963%" height="15" fill="rgb(246,150,1)"/><text x="72.4172%" y="4414.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (22 samples, 0.40%)</title><rect x="72.1672%" y="4420" width="0.3963%" height="15" fill="rgb(241,192,25)"/><text x="72.4172%" y="4430.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (21 samples, 0.38%)</title><rect x="72.1852%" y="4436" width="0.3783%" height="15" fill="rgb(239,187,11)"/><text x="72.4352%" y="4446.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (20 samples, 0.36%)</title><rect x="72.2032%" y="4452" width="0.3603%" height="15" fill="rgb(218,202,51)"/><text x="72.4532%" y="4462.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (16 samples, 0.29%)</title><rect x="72.2753%" y="4468" width="0.2882%" height="15" fill="rgb(225,176,8)"/><text x="72.5253%" y="4478.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (15 samples, 0.27%)</title><rect x="72.2933%" y="4484" width="0.2702%" height="15" fill="rgb(219,122,41)"/><text x="72.5433%" y="4494.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (14 samples, 0.25%)</title><rect x="72.3113%" y="4500" width="0.2522%" height="15" fill="rgb(248,140,20)"/><text x="72.5613%" y="4510.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (12 samples, 0.22%)</title><rect x="72.3473%" y="4516" width="0.2162%" height="15" fill="rgb(245,41,37)"/><text x="72.5973%" y="4526.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (12 samples, 0.22%)</title><rect x="72.3473%" y="4532" width="0.2162%" height="15" fill="rgb(235,82,39)"/><text x="72.5973%" y="4542.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="72.3653%" y="4548" width="0.1982%" height="15" fill="rgb(230,108,42)"/><text x="72.6153%" y="4558.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="72.3653%" y="4564" width="0.1982%" height="15" fill="rgb(215,150,50)"/><text x="72.6153%" y="4574.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (11 samples, 0.20%)</title><rect x="72.3653%" y="4580" width="0.1982%" height="15" fill="rgb(233,212,5)"/><text x="72.6153%" y="4590.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="72.4374%" y="4596" width="0.1261%" height="15" fill="rgb(245,80,22)"/><text x="72.6874%" y="4606.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (6 samples, 0.11%)</title><rect x="72.4554%" y="4612" width="0.1081%" height="15" fill="rgb(238,129,16)"/><text x="72.7054%" y="4622.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (38 samples, 0.68%)</title><rect x="71.9510%" y="4196" width="0.6846%" height="15" fill="rgb(240,19,0)"/><text x="72.2010%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (38 samples, 0.68%)</title><rect x="71.9510%" y="4212" width="0.6846%" height="15" fill="rgb(232,42,35)"/><text x="72.2010%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (38 samples, 0.68%)</title><rect x="71.9510%" y="4228" width="0.6846%" height="15" fill="rgb(223,130,24)"/><text x="72.2010%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (38 samples, 0.68%)</title><rect x="71.9510%" y="4244" width="0.6846%" height="15" fill="rgb(237,16,22)"/><text x="72.2010%" y="4254.50"></text></g><g><title>infer_call (astroid/inference.py:229) (30 samples, 0.54%)</title><rect x="72.0951%" y="4260" width="0.5404%" height="15" fill="rgb(248,192,20)"/><text x="72.3451%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (117 samples, 2.11%)</title><rect x="70.5458%" y="4132" width="2.1077%" height="15" fill="rgb(233,167,2)"/><text x="70.7958%" y="4142.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (117 samples, 2.11%)</title><rect x="70.5458%" y="4148" width="2.1077%" height="15" fill="rgb(252,71,44)"/><text x="70.7958%" y="4158.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (40 samples, 0.72%)</title><rect x="71.9330%" y="4164" width="0.7206%" height="15" fill="rgb(238,37,47)"/><text x="72.1830%" y="4174.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (40 samples, 0.72%)</title><rect x="71.9330%" y="4180" width="0.7206%" height="15" fill="rgb(214,202,54)"/><text x="72.1830%" y="4190.50"></text></g><g><title>infer_call (astroid/inference.py:223) (15 samples, 0.27%)</title><rect x="72.7076%" y="4212" width="0.2702%" height="15" fill="rgb(254,165,40)"/><text x="72.9576%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="72.7076%" y="4228" width="0.2702%" height="15" fill="rgb(246,173,38)"/><text x="72.9576%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="72.7076%" y="4244" width="0.2702%" height="15" fill="rgb(215,3,27)"/><text x="72.9576%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="72.7076%" y="4260" width="0.2702%" height="15" fill="rgb(239,169,51)"/><text x="72.9576%" y="4270.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (15 samples, 0.27%)</title><rect x="72.7076%" y="4276" width="0.2702%" height="15" fill="rgb(212,5,25)"/><text x="72.9576%" y="4286.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (15 samples, 0.27%)</title><rect x="72.7076%" y="4292" width="0.2702%" height="15" fill="rgb(243,45,17)"/><text x="72.9576%" y="4302.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (14 samples, 0.25%)</title><rect x="72.7256%" y="4308" width="0.2522%" height="15" fill="rgb(242,97,9)"/><text x="72.9756%" y="4318.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (12 samples, 0.22%)</title><rect x="72.7617%" y="4324" width="0.2162%" height="15" fill="rgb(228,71,31)"/><text x="73.0117%" y="4334.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (12 samples, 0.22%)</title><rect x="72.7617%" y="4340" width="0.2162%" height="15" fill="rgb(252,184,16)"/><text x="73.0117%" y="4350.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="72.7617%" y="4356" width="0.2162%" height="15" fill="rgb(236,169,46)"/><text x="73.0117%" y="4366.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (9 samples, 0.16%)</title><rect x="72.8157%" y="4372" width="0.1621%" height="15" fill="rgb(207,17,47)"/><text x="73.0657%" y="4382.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (9 samples, 0.16%)</title><rect x="72.8157%" y="4388" width="0.1621%" height="15" fill="rgb(206,201,28)"/><text x="73.0657%" y="4398.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2501) (8 samples, 0.14%)</title><rect x="72.8337%" y="4404" width="0.1441%" height="15" fill="rgb(224,184,23)"/><text x="73.0837%" y="4414.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (8 samples, 0.14%)</title><rect x="72.8337%" y="4420" width="0.1441%" height="15" fill="rgb(208,139,48)"/><text x="73.0837%" y="4430.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (7 samples, 0.13%)</title><rect x="73.1039%" y="4308" width="0.1261%" height="15" fill="rgb(208,130,10)"/><text x="73.3539%" y="4318.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (31 samples, 0.56%)</title><rect x="72.7076%" y="4180" width="0.5585%" height="15" fill="rgb(211,213,45)"/><text x="72.9576%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (31 samples, 0.56%)</title><rect x="72.7076%" y="4196" width="0.5585%" height="15" fill="rgb(235,100,30)"/><text x="72.9576%" y="4206.50"></text></g><g><title>infer_call (astroid/inference.py:229) (16 samples, 0.29%)</title><rect x="72.9778%" y="4212" width="0.2882%" height="15" fill="rgb(206,144,31)"/><text x="73.2278%" y="4222.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (16 samples, 0.29%)</title><rect x="72.9778%" y="4228" width="0.2882%" height="15" fill="rgb(224,200,26)"/><text x="73.2278%" y="4238.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="72.9778%" y="4244" width="0.2882%" height="15" fill="rgb(247,104,53)"/><text x="73.2278%" y="4254.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="72.9778%" y="4260" width="0.2882%" height="15" fill="rgb(220,14,17)"/><text x="73.2278%" y="4270.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="72.9778%" y="4276" width="0.2882%" height="15" fill="rgb(230,140,40)"/><text x="73.2278%" y="4286.50"></text></g><g><title>infer_call (astroid/inference.py:229) (12 samples, 0.22%)</title><rect x="73.0499%" y="4292" width="0.2162%" height="15" fill="rgb(229,2,41)"/><text x="73.2999%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="73.7705%" y="4900" width="0.1081%" height="15" fill="rgb(232,89,16)"/><text x="74.0205%" y="4910.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="73.7705%" y="4916" width="0.1081%" height="15" fill="rgb(247,59,52)"/><text x="74.0205%" y="4926.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="73.7705%" y="4932" width="0.1081%" height="15" fill="rgb(226,110,21)"/><text x="74.0205%" y="4942.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="73.7705%" y="4948" width="0.1081%" height="15" fill="rgb(224,176,43)"/><text x="74.0205%" y="4958.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="73.7705%" y="4964" width="0.1081%" height="15" fill="rgb(221,73,6)"/><text x="74.0205%" y="4974.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="73.7705%" y="4884" width="0.1801%" height="15" fill="rgb(232,78,19)"/><text x="74.0205%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (39 samples, 0.70%)</title><rect x="73.2661%" y="4244" width="0.7026%" height="15" fill="rgb(233,112,48)"/><text x="73.5161%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="73.2661%" y="4260" width="0.7026%" height="15" fill="rgb(243,131,47)"/><text x="73.5161%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (39 samples, 0.70%)</title><rect x="73.2661%" y="4276" width="0.7026%" height="15" fill="rgb(226,51,1)"/><text x="73.5161%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (39 samples, 0.70%)</title><rect x="73.2661%" y="4292" width="0.7026%" height="15" fill="rgb(247,58,7)"/><text x="73.5161%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (39 samples, 0.70%)</title><rect x="73.2661%" y="4308" width="0.7026%" height="15" fill="rgb(209,7,32)"/><text x="73.5161%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="73.2661%" y="4324" width="0.7026%" height="15" fill="rgb(209,39,41)"/><text x="73.5161%" y="4334.50"></text></g><g><title>infer_call (astroid/inference.py:229) (35 samples, 0.63%)</title><rect x="73.3381%" y="4340" width="0.6305%" height="15" fill="rgb(226,182,46)"/><text x="73.5881%" y="4350.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (35 samples, 0.63%)</title><rect x="73.3381%" y="4356" width="0.6305%" height="15" fill="rgb(230,219,10)"/><text x="73.5881%" y="4366.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (35 samples, 0.63%)</title><rect x="73.3381%" y="4372" width="0.6305%" height="15" fill="rgb(227,175,30)"/><text x="73.5881%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (35 samples, 0.63%)</title><rect x="73.3381%" y="4388" width="0.6305%" height="15" fill="rgb(217,2,50)"/><text x="73.5881%" y="4398.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (35 samples, 0.63%)</title><rect x="73.3381%" y="4404" width="0.6305%" height="15" fill="rgb(229,160,0)"/><text x="73.5881%" y="4414.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (35 samples, 0.63%)</title><rect x="73.3381%" y="4420" width="0.6305%" height="15" fill="rgb(207,78,37)"/><text x="73.5881%" y="4430.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (35 samples, 0.63%)</title><rect x="73.3381%" y="4436" width="0.6305%" height="15" fill="rgb(225,57,0)"/><text x="73.5881%" y="4446.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (35 samples, 0.63%)</title><rect x="73.3381%" y="4452" width="0.6305%" height="15" fill="rgb(232,154,2)"/><text x="73.5881%" y="4462.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (35 samples, 0.63%)</title><rect x="73.3381%" y="4468" width="0.6305%" height="15" fill="rgb(241,212,25)"/><text x="73.5881%" y="4478.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (35 samples, 0.63%)</title><rect x="73.3381%" y="4484" width="0.6305%" height="15" fill="rgb(226,69,20)"/><text x="73.5881%" y="4494.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (35 samples, 0.63%)</title><rect x="73.3381%" y="4500" width="0.6305%" height="15" fill="rgb(247,184,54)"/><text x="73.5881%" y="4510.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (34 samples, 0.61%)</title><rect x="73.3562%" y="4516" width="0.6125%" height="15" fill="rgb(210,145,0)"/><text x="73.6062%" y="4526.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (34 samples, 0.61%)</title><rect x="73.3562%" y="4532" width="0.6125%" height="15" fill="rgb(253,82,12)"/><text x="73.6062%" y="4542.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (34 samples, 0.61%)</title><rect x="73.3562%" y="4548" width="0.6125%" height="15" fill="rgb(245,42,11)"/><text x="73.6062%" y="4558.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (34 samples, 0.61%)</title><rect x="73.3562%" y="4564" width="0.6125%" height="15" fill="rgb(219,147,32)"/><text x="73.6062%" y="4574.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (34 samples, 0.61%)</title><rect x="73.3562%" y="4580" width="0.6125%" height="15" fill="rgb(246,12,7)"/><text x="73.6062%" y="4590.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (33 samples, 0.59%)</title><rect x="73.3742%" y="4596" width="0.5945%" height="15" fill="rgb(243,50,9)"/><text x="73.6242%" y="4606.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (33 samples, 0.59%)</title><rect x="73.3742%" y="4612" width="0.5945%" height="15" fill="rgb(219,149,6)"/><text x="73.6242%" y="4622.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (31 samples, 0.56%)</title><rect x="73.4102%" y="4628" width="0.5585%" height="15" fill="rgb(241,51,42)"/><text x="73.6602%" y="4638.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (31 samples, 0.56%)</title><rect x="73.4102%" y="4644" width="0.5585%" height="15" fill="rgb(226,128,27)"/><text x="73.6602%" y="4654.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (28 samples, 0.50%)</title><rect x="73.4642%" y="4660" width="0.5044%" height="15" fill="rgb(244,144,4)"/><text x="73.7142%" y="4670.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (27 samples, 0.49%)</title><rect x="73.4823%" y="4676" width="0.4864%" height="15" fill="rgb(221,4,13)"/><text x="73.7323%" y="4686.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (26 samples, 0.47%)</title><rect x="73.5003%" y="4692" width="0.4684%" height="15" fill="rgb(208,170,28)"/><text x="73.7503%" y="4702.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (26 samples, 0.47%)</title><rect x="73.5003%" y="4708" width="0.4684%" height="15" fill="rgb(226,131,13)"/><text x="73.7503%" y="4718.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (24 samples, 0.43%)</title><rect x="73.5363%" y="4724" width="0.4324%" height="15" fill="rgb(215,72,41)"/><text x="73.7863%" y="4734.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (24 samples, 0.43%)</title><rect x="73.5363%" y="4740" width="0.4324%" height="15" fill="rgb(243,108,20)"/><text x="73.7863%" y="4750.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (23 samples, 0.41%)</title><rect x="73.5543%" y="4756" width="0.4143%" height="15" fill="rgb(230,189,17)"/><text x="73.8043%" y="4766.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (21 samples, 0.38%)</title><rect x="73.5903%" y="4772" width="0.3783%" height="15" fill="rgb(220,50,17)"/><text x="73.8403%" y="4782.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (14 samples, 0.25%)</title><rect x="73.7164%" y="4788" width="0.2522%" height="15" fill="rgb(248,152,48)"/><text x="73.9664%" y="4798.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="73.7345%" y="4804" width="0.2342%" height="15" fill="rgb(244,91,11)"/><text x="73.9845%" y="4814.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="73.7345%" y="4820" width="0.2342%" height="15" fill="rgb(220,157,5)"/><text x="73.9845%" y="4830.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="73.7345%" y="4836" width="0.2342%" height="15" fill="rgb(253,137,8)"/><text x="73.9845%" y="4846.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="73.7705%" y="4852" width="0.1982%" height="15" fill="rgb(217,137,51)"/><text x="74.0205%" y="4862.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (11 samples, 0.20%)</title><rect x="73.7705%" y="4868" width="0.1982%" height="15" fill="rgb(218,209,53)"/><text x="74.0205%" y="4878.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (8 samples, 0.14%)</title><rect x="74.0047%" y="4356" width="0.1441%" height="15" fill="rgb(249,137,25)"/><text x="74.2547%" y="4366.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="74.0047%" y="4372" width="0.1441%" height="15" fill="rgb(239,155,26)"/><text x="74.2547%" y="4382.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="74.0047%" y="4388" width="0.1441%" height="15" fill="rgb(227,85,46)"/><text x="74.2547%" y="4398.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="74.0047%" y="4404" width="0.1441%" height="15" fill="rgb(251,107,43)"/><text x="74.2547%" y="4414.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="74.0047%" y="4420" width="0.1441%" height="15" fill="rgb(234,170,33)"/><text x="74.2547%" y="4430.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="74.0047%" y="4436" width="0.1441%" height="15" fill="rgb(206,29,35)"/><text x="74.2547%" y="4446.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (7 samples, 0.13%)</title><rect x="74.0227%" y="4452" width="0.1261%" height="15" fill="rgb(227,138,25)"/><text x="74.2727%" y="4462.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (6 samples, 0.11%)</title><rect x="74.0407%" y="4468" width="0.1081%" height="15" fill="rgb(249,131,35)"/><text x="74.2907%" y="4478.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (51 samples, 0.92%)</title><rect x="73.2661%" y="4212" width="0.9188%" height="15" fill="rgb(239,6,40)"/><text x="73.5161%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (51 samples, 0.92%)</title><rect x="73.2661%" y="4228" width="0.9188%" height="15" fill="rgb(246,136,47)"/><text x="73.5161%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (12 samples, 0.22%)</title><rect x="73.9687%" y="4244" width="0.2162%" height="15" fill="rgb(253,58,26)"/><text x="74.2187%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="73.9687%" y="4260" width="0.2162%" height="15" fill="rgb(237,141,10)"/><text x="74.2187%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (12 samples, 0.22%)</title><rect x="73.9687%" y="4276" width="0.2162%" height="15" fill="rgb(234,156,12)"/><text x="74.2187%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="73.9687%" y="4292" width="0.2162%" height="15" fill="rgb(243,224,36)"/><text x="74.2187%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (12 samples, 0.22%)</title><rect x="73.9687%" y="4308" width="0.2162%" height="15" fill="rgb(205,229,51)"/><text x="74.2187%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="73.9687%" y="4324" width="0.2162%" height="15" fill="rgb(223,189,4)"/><text x="74.2187%" y="4334.50"></text></g><g><title>infer_call (astroid/inference.py:229) (10 samples, 0.18%)</title><rect x="74.0047%" y="4340" width="0.1801%" height="15" fill="rgb(249,167,54)"/><text x="74.2547%" y="4350.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (3,530 samples, 63.59%)</title><rect x="10.7188%" y="3668" width="63.5921%" height="15" fill="rgb(218,34,28)"/><text x="10.9688%" y="3678.50">infer_call_result (astroid/scoped_nodes.py:1771)</text></g><g><title>infer (astroid/node_classes.py:380) (3,528 samples, 63.56%)</title><rect x="10.7548%" y="3684" width="63.5561%" height="15" fill="rgb(232,109,42)"/><text x="11.0048%" y="3694.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (3,120 samples, 56.21%)</title><rect x="18.1048%" y="3700" width="56.2061%" height="15" fill="rgb(248,214,46)"/><text x="18.3548%" y="3710.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (3,120 samples, 56.21%)</title><rect x="18.1048%" y="3716" width="56.2061%" height="15" fill="rgb(244,216,40)"/><text x="18.3548%" y="3726.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:229) (3,112 samples, 56.06%)</title><rect x="18.2490%" y="3732" width="56.0620%" height="15" fill="rgb(231,226,31)"/><text x="18.4990%" y="3742.50">infer_call (astroid/inference.py:229)</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (3,112 samples, 56.06%)</title><rect x="18.2490%" y="3748" width="56.0620%" height="15" fill="rgb(238,38,43)"/><text x="18.4990%" y="3758.50">infer_call_result (astroid/scoped_nodes.py:1771)</text></g><g><title>infer (astroid/node_classes.py:380) (3,111 samples, 56.04%)</title><rect x="18.2670%" y="3764" width="56.0440%" height="15" fill="rgb(208,88,43)"/><text x="18.5170%" y="3774.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (3,095 samples, 55.76%)</title><rect x="18.5552%" y="3780" width="55.7557%" height="15" fill="rgb(205,136,37)"/><text x="18.8052%" y="3790.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (3,095 samples, 55.76%)</title><rect x="18.5552%" y="3796" width="55.7557%" height="15" fill="rgb(237,34,14)"/><text x="18.8052%" y="3806.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:229) (983 samples, 17.71%)</title><rect x="56.6024%" y="3812" width="17.7085%" height="15" fill="rgb(236,193,44)"/><text x="56.8524%" y="3822.50">infer_call (astroid/inferenc..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (982 samples, 17.69%)</title><rect x="56.6204%" y="3828" width="17.6905%" height="15" fill="rgb(231,48,10)"/><text x="56.8704%" y="3838.50">infer_call_result (astroid/..</text></g><g><title>infer (astroid/node_classes.py:380) (982 samples, 17.69%)</title><rect x="56.6204%" y="3844" width="17.6905%" height="15" fill="rgb(213,141,34)"/><text x="56.8704%" y="3854.50">infer (astroid/node_classes..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (980 samples, 17.65%)</title><rect x="56.6565%" y="3860" width="17.6545%" height="15" fill="rgb(249,130,34)"/><text x="56.9065%" y="3870.50">raise_if_nothing_inferred (..</text></g><g><title>wrapped (astroid/decorators.py:99) (980 samples, 17.65%)</title><rect x="56.6565%" y="3876" width="17.6545%" height="15" fill="rgb(219,42,41)"/><text x="56.9065%" y="3886.50">wrapped (astroid/decorators..</text></g><g><title>infer_call (astroid/inference.py:229) (977 samples, 17.60%)</title><rect x="56.7105%" y="3892" width="17.6004%" height="15" fill="rgb(224,100,54)"/><text x="56.9605%" y="3902.50">infer_call (astroid/inferen..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (975 samples, 17.56%)</title><rect x="56.7465%" y="3908" width="17.5644%" height="15" fill="rgb(229,200,27)"/><text x="56.9965%" y="3918.50">infer_call_result (astroid/..</text></g><g><title>infer (astroid/node_classes.py:380) (975 samples, 17.56%)</title><rect x="56.7465%" y="3924" width="17.5644%" height="15" fill="rgb(217,118,10)"/><text x="56.9965%" y="3934.50">infer (astroid/node_classes..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (925 samples, 16.66%)</title><rect x="57.6473%" y="3940" width="16.6637%" height="15" fill="rgb(206,22,3)"/><text x="57.8973%" y="3950.50">raise_if_nothing_inferred ..</text></g><g><title>wrapped (astroid/decorators.py:99) (925 samples, 16.66%)</title><rect x="57.6473%" y="3956" width="16.6637%" height="15" fill="rgb(232,163,46)"/><text x="57.8973%" y="3966.50">wrapped (astroid/decorator..</text></g><g><title>infer_call (astroid/inference.py:229) (603 samples, 10.86%)</title><rect x="63.4480%" y="3972" width="10.8629%" height="15" fill="rgb(206,95,13)"/><text x="63.6980%" y="3982.50">infer_call (astr..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (596 samples, 10.74%)</title><rect x="63.5741%" y="3988" width="10.7368%" height="15" fill="rgb(253,154,18)"/><text x="63.8241%" y="3998.50">infer_call_resul..</text></g><g><title>infer (astroid/node_classes.py:380) (596 samples, 10.74%)</title><rect x="63.5741%" y="4004" width="10.7368%" height="15" fill="rgb(219,32,23)"/><text x="63.8241%" y="4014.50">infer (astroid/n..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (505 samples, 9.10%)</title><rect x="65.2135%" y="4020" width="9.0975%" height="15" fill="rgb(230,191,45)"/><text x="65.4635%" y="4030.50">raise_if_noth..</text></g><g><title>wrapped (astroid/decorators.py:99) (505 samples, 9.10%)</title><rect x="65.2135%" y="4036" width="9.0975%" height="15" fill="rgb(229,64,36)"/><text x="65.4635%" y="4046.50">wrapped (astr..</text></g><g><title>infer_call (astroid/inference.py:229) (333 samples, 6.00%)</title><rect x="68.3120%" y="4052" width="5.9989%" height="15" fill="rgb(205,129,25)"/><text x="68.5620%" y="4062.50">infer_ca..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (330 samples, 5.94%)</title><rect x="68.3661%" y="4068" width="5.9449%" height="15" fill="rgb(254,112,7)"/><text x="68.6161%" y="4078.50">infer_ca..</text></g><g><title>infer (astroid/node_classes.py:380) (330 samples, 5.94%)</title><rect x="68.3661%" y="4084" width="5.9449%" height="15" fill="rgb(226,53,48)"/><text x="68.6161%" y="4094.50">infer (a..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (211 samples, 3.80%)</title><rect x="70.5098%" y="4100" width="3.8011%" height="15" fill="rgb(214,153,38)"/><text x="70.7598%" y="4110.50">rais..</text></g><g><title>wrapped (astroid/decorators.py:99) (211 samples, 3.80%)</title><rect x="70.5098%" y="4116" width="3.8011%" height="15" fill="rgb(243,101,7)"/><text x="70.7598%" y="4126.50">wrap..</text></g><g><title>infer_call (astroid/inference.py:229) (90 samples, 1.62%)</title><rect x="72.6896%" y="4132" width="1.6213%" height="15" fill="rgb(240,140,22)"/><text x="72.9396%" y="4142.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (90 samples, 1.62%)</title><rect x="72.6896%" y="4148" width="1.6213%" height="15" fill="rgb(235,114,2)"/><text x="72.9396%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (89 samples, 1.60%)</title><rect x="72.7076%" y="4164" width="1.6033%" height="15" fill="rgb(242,59,12)"/><text x="72.9576%" y="4174.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (58 samples, 1.04%)</title><rect x="73.2661%" y="4180" width="1.0449%" height="15" fill="rgb(252,134,9)"/><text x="73.5161%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (58 samples, 1.04%)</title><rect x="73.2661%" y="4196" width="1.0449%" height="15" fill="rgb(236,4,44)"/><text x="73.5161%" y="4206.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="74.1848%" y="4212" width="0.1261%" height="15" fill="rgb(254,172,41)"/><text x="74.4348%" y="4222.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (3,622 samples, 65.25%)</title><rect x="9.0794%" y="3524" width="65.2495%" height="15" fill="rgb(244,63,20)"/><text x="9.3294%" y="3534.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (3,621 samples, 65.23%)</title><rect x="9.0975%" y="3540" width="65.2315%" height="15" fill="rgb(250,73,31)"/><text x="9.3475%" y="3550.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3556" width="64.0785%" height="15" fill="rgb(241,38,36)"/><text x="10.5004%" y="3566.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3572" width="64.0785%" height="15" fill="rgb(245,211,2)"/><text x="10.5004%" y="3582.50">wrapped (astroid/decorators.py:99)</text></g><g><title>_infer_stmts (astroid/bases.py:136) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3588" width="64.0785%" height="15" fill="rgb(206,120,28)"/><text x="10.5004%" y="3598.50">_infer_stmts (astroid/bases.py:136)</text></g><g><title>infer (astroid/node_classes.py:380) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3604" width="64.0785%" height="15" fill="rgb(211,59,34)"/><text x="10.5004%" y="3614.50">infer (astroid/node_classes.py:380)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3620" width="64.0785%" height="15" fill="rgb(233,168,5)"/><text x="10.5004%" y="3630.50">raise_if_nothing_inferred (astroid/decorators.py:145)</text></g><g><title>wrapped (astroid/decorators.py:99) (3,557 samples, 64.08%)</title><rect x="10.2504%" y="3636" width="64.0785%" height="15" fill="rgb(234,33,13)"/><text x="10.5004%" y="3646.50">wrapped (astroid/decorators.py:99)</text></g><g><title>infer_call (astroid/inference.py:229) (3,533 samples, 63.65%)</title><rect x="10.6828%" y="3652" width="63.6462%" height="15" fill="rgb(231,150,26)"/><text x="10.9328%" y="3662.50">infer_call (astroid/inference.py:229)</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="74.3289%" y="3572" width="0.2882%" height="15" fill="rgb(217,191,4)"/><text x="74.5789%" y="3582.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="74.3289%" y="3588" width="0.2882%" height="15" fill="rgb(246,198,38)"/><text x="74.5789%" y="3598.50"></text></g><g><title>infer_call (astroid/inference.py:229) (13 samples, 0.23%)</title><rect x="74.3830%" y="3604" width="0.2342%" height="15" fill="rgb(245,64,37)"/><text x="74.6330%" y="3614.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (12 samples, 0.22%)</title><rect x="74.4010%" y="3620" width="0.2162%" height="15" fill="rgb(250,30,36)"/><text x="74.6510%" y="3630.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="74.4010%" y="3636" width="0.2162%" height="15" fill="rgb(217,86,53)"/><text x="74.6510%" y="3646.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="74.4010%" y="3652" width="0.2162%" height="15" fill="rgb(228,157,16)"/><text x="74.6510%" y="3662.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="74.4010%" y="3668" width="0.2162%" height="15" fill="rgb(217,59,31)"/><text x="74.6510%" y="3678.50"></text></g><g><title>infer_call (astroid/inference.py:229) (12 samples, 0.22%)</title><rect x="74.4010%" y="3684" width="0.2162%" height="15" fill="rgb(237,138,41)"/><text x="74.6510%" y="3694.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="74.6352%" y="3732" width="0.1441%" height="15" fill="rgb(227,91,49)"/><text x="74.8852%" y="3742.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="74.6352%" y="3748" width="0.1441%" height="15" fill="rgb(247,21,44)"/><text x="74.8852%" y="3758.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="74.6352%" y="3764" width="0.1441%" height="15" fill="rgb(219,210,51)"/><text x="74.8852%" y="3774.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="74.6352%" y="3780" width="0.1441%" height="15" fill="rgb(209,140,6)"/><text x="74.8852%" y="3790.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (40 samples, 0.72%)</title><rect x="74.6172%" y="3636" width="0.7206%" height="15" fill="rgb(221,188,24)"/><text x="74.8672%" y="3646.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="74.6352%" y="3652" width="0.7026%" height="15" fill="rgb(232,154,20)"/><text x="74.8852%" y="3662.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (39 samples, 0.70%)</title><rect x="74.6352%" y="3668" width="0.7026%" height="15" fill="rgb(244,137,50)"/><text x="74.8852%" y="3678.50"></text></g><g><title>infer (astroid/node_classes.py:380) (39 samples, 0.70%)</title><rect x="74.6352%" y="3684" width="0.7026%" height="15" fill="rgb(225,185,43)"/><text x="74.8852%" y="3694.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (39 samples, 0.70%)</title><rect x="74.6352%" y="3700" width="0.7026%" height="15" fill="rgb(213,205,38)"/><text x="74.8852%" y="3710.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="74.6352%" y="3716" width="0.7026%" height="15" fill="rgb(236,73,12)"/><text x="74.8852%" y="3726.50"></text></g><g><title>infer_call (astroid/inference.py:229) (31 samples, 0.56%)</title><rect x="74.7793%" y="3732" width="0.5585%" height="15" fill="rgb(235,219,13)"/><text x="75.0293%" y="3742.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (30 samples, 0.54%)</title><rect x="74.7973%" y="3748" width="0.5404%" height="15" fill="rgb(218,59,36)"/><text x="75.0473%" y="3758.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (30 samples, 0.54%)</title><rect x="74.7973%" y="3764" width="0.5404%" height="15" fill="rgb(205,110,39)"/><text x="75.0473%" y="3774.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (30 samples, 0.54%)</title><rect x="74.7973%" y="3780" width="0.5404%" height="15" fill="rgb(218,206,42)"/><text x="75.0473%" y="3790.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (30 samples, 0.54%)</title><rect x="74.7973%" y="3796" width="0.5404%" height="15" fill="rgb(248,125,24)"/><text x="75.0473%" y="3806.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (30 samples, 0.54%)</title><rect x="74.7973%" y="3812" width="0.5404%" height="15" fill="rgb(242,28,27)"/><text x="75.0473%" y="3822.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (30 samples, 0.54%)</title><rect x="74.7973%" y="3828" width="0.5404%" height="15" fill="rgb(216,228,15)"/><text x="75.0473%" y="3838.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (30 samples, 0.54%)</title><rect x="74.7973%" y="3844" width="0.5404%" height="15" fill="rgb(235,116,46)"/><text x="75.0473%" y="3854.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (30 samples, 0.54%)</title><rect x="74.7973%" y="3860" width="0.5404%" height="15" fill="rgb(224,18,32)"/><text x="75.0473%" y="3870.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (30 samples, 0.54%)</title><rect x="74.7973%" y="3876" width="0.5404%" height="15" fill="rgb(252,5,12)"/><text x="75.0473%" y="3886.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (28 samples, 0.50%)</title><rect x="74.8334%" y="3892" width="0.5044%" height="15" fill="rgb(251,36,5)"/><text x="75.0834%" y="3902.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (28 samples, 0.50%)</title><rect x="74.8334%" y="3908" width="0.5044%" height="15" fill="rgb(217,53,14)"/><text x="75.0834%" y="3918.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (28 samples, 0.50%)</title><rect x="74.8334%" y="3924" width="0.5044%" height="15" fill="rgb(215,86,45)"/><text x="75.0834%" y="3934.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (28 samples, 0.50%)</title><rect x="74.8334%" y="3940" width="0.5044%" height="15" fill="rgb(242,169,11)"/><text x="75.0834%" y="3950.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (26 samples, 0.47%)</title><rect x="74.8694%" y="3956" width="0.4684%" height="15" fill="rgb(211,213,45)"/><text x="75.1194%" y="3966.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (26 samples, 0.47%)</title><rect x="74.8694%" y="3972" width="0.4684%" height="15" fill="rgb(205,88,11)"/><text x="75.1194%" y="3982.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (22 samples, 0.40%)</title><rect x="74.9415%" y="3988" width="0.3963%" height="15" fill="rgb(252,69,26)"/><text x="75.1915%" y="3998.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (22 samples, 0.40%)</title><rect x="74.9415%" y="4004" width="0.3963%" height="15" fill="rgb(246,123,37)"/><text x="75.1915%" y="4014.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (21 samples, 0.38%)</title><rect x="74.9595%" y="4020" width="0.3783%" height="15" fill="rgb(212,205,5)"/><text x="75.2095%" y="4030.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (20 samples, 0.36%)</title><rect x="74.9775%" y="4036" width="0.3603%" height="15" fill="rgb(253,148,0)"/><text x="75.2275%" y="4046.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (19 samples, 0.34%)</title><rect x="74.9955%" y="4052" width="0.3423%" height="15" fill="rgb(239,22,4)"/><text x="75.2455%" y="4062.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (19 samples, 0.34%)</title><rect x="74.9955%" y="4068" width="0.3423%" height="15" fill="rgb(226,26,53)"/><text x="75.2455%" y="4078.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (19 samples, 0.34%)</title><rect x="74.9955%" y="4084" width="0.3423%" height="15" fill="rgb(225,229,45)"/><text x="75.2455%" y="4094.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (19 samples, 0.34%)</title><rect x="74.9955%" y="4100" width="0.3423%" height="15" fill="rgb(220,60,37)"/><text x="75.2455%" y="4110.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="75.0315%" y="4116" width="0.3063%" height="15" fill="rgb(217,180,35)"/><text x="75.2815%" y="4126.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="75.0495%" y="4132" width="0.2882%" height="15" fill="rgb(229,7,53)"/><text x="75.2995%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="75.1576%" y="4148" width="0.1801%" height="15" fill="rgb(254,137,3)"/><text x="75.4076%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="75.1576%" y="4164" width="0.1801%" height="15" fill="rgb(215,140,41)"/><text x="75.4076%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="75.2297%" y="4180" width="0.1081%" height="15" fill="rgb(250,80,15)"/><text x="75.4797%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1766) (10 samples, 0.18%)</title><rect x="75.3918%" y="3748" width="0.1801%" height="15" fill="rgb(252,191,6)"/><text x="75.6418%" y="3758.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="75.3918%" y="3764" width="0.1801%" height="15" fill="rgb(246,217,18)"/><text x="75.6418%" y="3774.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="75.3918%" y="3780" width="0.1801%" height="15" fill="rgb(223,93,7)"/><text x="75.6418%" y="3790.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="75.3918%" y="3796" width="0.1801%" height="15" fill="rgb(225,55,52)"/><text x="75.6418%" y="3806.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="75.3918%" y="3812" width="0.1801%" height="15" fill="rgb(240,31,24)"/><text x="75.6418%" y="3822.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (10 samples, 0.18%)</title><rect x="75.3918%" y="3828" width="0.1801%" height="15" fill="rgb(205,56,52)"/><text x="75.6418%" y="3838.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3844" width="0.1621%" height="15" fill="rgb(246,146,12)"/><text x="75.6598%" y="3854.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3860" width="0.1621%" height="15" fill="rgb(239,84,36)"/><text x="75.6598%" y="3870.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3876" width="0.1621%" height="15" fill="rgb(207,41,40)"/><text x="75.6598%" y="3886.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3892" width="0.1621%" height="15" fill="rgb(241,179,25)"/><text x="75.6598%" y="3902.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3908" width="0.1621%" height="15" fill="rgb(210,0,34)"/><text x="75.6598%" y="3918.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3924" width="0.1621%" height="15" fill="rgb(225,217,29)"/><text x="75.6598%" y="3934.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (9 samples, 0.16%)</title><rect x="75.4098%" y="3940" width="0.1621%" height="15" fill="rgb(216,191,38)"/><text x="75.6598%" y="3950.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="75.4279%" y="3956" width="0.1441%" height="15" fill="rgb(232,140,52)"/><text x="75.6779%" y="3966.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (8 samples, 0.14%)</title><rect x="75.4279%" y="3972" width="0.1441%" height="15" fill="rgb(223,158,51)"/><text x="75.6779%" y="3982.50"></text></g><g><title>_get_return_nodes_skip_functions (astroid/mixins.py:138) (6 samples, 0.11%)</title><rect x="75.4639%" y="3988" width="0.1081%" height="15" fill="rgb(235,29,51)"/><text x="75.7139%" y="3998.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (54 samples, 0.97%)</title><rect x="74.6172%" y="3604" width="0.9728%" height="15" fill="rgb(215,181,18)"/><text x="74.8672%" y="3614.50"></text></g><g><title>infer (astroid/node_classes.py:380) (54 samples, 0.97%)</title><rect x="74.6172%" y="3620" width="0.9728%" height="15" fill="rgb(227,125,34)"/><text x="74.8672%" y="3630.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="75.3378%" y="3636" width="0.2522%" height="15" fill="rgb(230,197,49)"/><text x="75.5878%" y="3646.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="75.3378%" y="3652" width="0.2522%" height="15" fill="rgb(239,141,16)"/><text x="75.5878%" y="3662.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (14 samples, 0.25%)</title><rect x="75.3378%" y="3668" width="0.2522%" height="15" fill="rgb(225,105,43)"/><text x="75.5878%" y="3678.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="75.3378%" y="3684" width="0.2522%" height="15" fill="rgb(214,131,14)"/><text x="75.5878%" y="3694.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="75.3378%" y="3700" width="0.2522%" height="15" fill="rgb(229,177,11)"/><text x="75.5878%" y="3710.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="75.3378%" y="3716" width="0.2522%" height="15" fill="rgb(231,180,14)"/><text x="75.5878%" y="3726.50"></text></g><g><title>infer_call (astroid/inference.py:229) (11 samples, 0.20%)</title><rect x="75.3918%" y="3732" width="0.1982%" height="15" fill="rgb(232,88,2)"/><text x="75.6418%" y="3742.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (6 samples, 0.11%)</title><rect x="75.7521%" y="4740" width="0.1081%" height="15" fill="rgb(205,220,8)"/><text x="76.0021%" y="4750.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (6 samples, 0.11%)</title><rect x="75.7521%" y="4756" width="0.1081%" height="15" fill="rgb(225,23,53)"/><text x="76.0021%" y="4766.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="75.7521%" y="4772" width="0.1081%" height="15" fill="rgb(213,62,29)"/><text x="76.0021%" y="4782.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="75.7521%" y="4788" width="0.1081%" height="15" fill="rgb(227,75,7)"/><text x="76.0021%" y="4798.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="75.7521%" y="4804" width="0.1081%" height="15" fill="rgb(207,105,14)"/><text x="76.0021%" y="4814.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="75.7521%" y="4820" width="0.1081%" height="15" fill="rgb(245,62,29)"/><text x="76.0021%" y="4830.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="75.7521%" y="4836" width="0.1081%" height="15" fill="rgb(236,202,4)"/><text x="76.0021%" y="4846.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="75.7521%" y="4852" width="0.1081%" height="15" fill="rgb(250,67,1)"/><text x="76.0021%" y="4862.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="75.7521%" y="4868" width="0.1081%" height="15" fill="rgb(253,115,44)"/><text x="76.0021%" y="4878.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="75.7521%" y="4884" width="0.1081%" height="15" fill="rgb(251,139,18)"/><text x="76.0021%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="75.7521%" y="4900" width="0.1081%" height="15" fill="rgb(218,22,32)"/><text x="76.0021%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="75.7521%" y="4916" width="0.1081%" height="15" fill="rgb(243,53,5)"/><text x="76.0021%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="75.7521%" y="4932" width="0.1081%" height="15" fill="rgb(227,56,16)"/><text x="76.0021%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="75.6981%" y="4692" width="0.3603%" height="15" fill="rgb(245,53,0)"/><text x="75.9481%" y="4702.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="75.6981%" y="4708" width="0.3603%" height="15" fill="rgb(216,170,35)"/><text x="75.9481%" y="4718.50"></text></g><g><title>infer_call (astroid/inference.py:229) (18 samples, 0.32%)</title><rect x="75.7341%" y="4724" width="0.3243%" height="15" fill="rgb(211,200,8)"/><text x="75.9841%" y="4734.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (31 samples, 0.56%)</title><rect x="75.6981%" y="4452" width="0.5585%" height="15" fill="rgb(228,204,44)"/><text x="75.9481%" y="4462.50"></text></g><g><title>infer (astroid/node_classes.py:380) (31 samples, 0.56%)</title><rect x="75.6981%" y="4468" width="0.5585%" height="15" fill="rgb(214,121,17)"/><text x="75.9481%" y="4478.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (31 samples, 0.56%)</title><rect x="75.6981%" y="4484" width="0.5585%" height="15" fill="rgb(233,64,38)"/><text x="75.9481%" y="4494.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (31 samples, 0.56%)</title><rect x="75.6981%" y="4500" width="0.5585%" height="15" fill="rgb(253,54,19)"/><text x="75.9481%" y="4510.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (31 samples, 0.56%)</title><rect x="75.6981%" y="4516" width="0.5585%" height="15" fill="rgb(253,94,18)"/><text x="75.9481%" y="4526.50"></text></g><g><title>igetattr (astroid/bases.py:233) (31 samples, 0.56%)</title><rect x="75.6981%" y="4532" width="0.5585%" height="15" fill="rgb(227,57,52)"/><text x="75.9481%" y="4542.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (31 samples, 0.56%)</title><rect x="75.6981%" y="4548" width="0.5585%" height="15" fill="rgb(230,228,50)"/><text x="75.9481%" y="4558.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (31 samples, 0.56%)</title><rect x="75.6981%" y="4564" width="0.5585%" height="15" fill="rgb(217,205,27)"/><text x="75.9481%" y="4574.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (31 samples, 0.56%)</title><rect x="75.6981%" y="4580" width="0.5585%" height="15" fill="rgb(252,71,50)"/><text x="75.9481%" y="4590.50"></text></g><g><title>infer (astroid/node_classes.py:380) (31 samples, 0.56%)</title><rect x="75.6981%" y="4596" width="0.5585%" height="15" fill="rgb(209,86,4)"/><text x="75.9481%" y="4606.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (31 samples, 0.56%)</title><rect x="75.6981%" y="4612" width="0.5585%" height="15" fill="rgb(229,94,0)"/><text x="75.9481%" y="4622.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (31 samples, 0.56%)</title><rect x="75.6981%" y="4628" width="0.5585%" height="15" fill="rgb(252,223,21)"/><text x="75.9481%" y="4638.50"></text></g><g><title>infer_call (astroid/inference.py:229) (31 samples, 0.56%)</title><rect x="75.6981%" y="4644" width="0.5585%" height="15" fill="rgb(230,210,4)"/><text x="75.9481%" y="4654.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (31 samples, 0.56%)</title><rect x="75.6981%" y="4660" width="0.5585%" height="15" fill="rgb(240,149,38)"/><text x="75.9481%" y="4670.50"></text></g><g><title>infer (astroid/node_classes.py:380) (31 samples, 0.56%)</title><rect x="75.6981%" y="4676" width="0.5585%" height="15" fill="rgb(254,105,20)"/><text x="75.9481%" y="4686.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (11 samples, 0.20%)</title><rect x="76.0584%" y="4692" width="0.1982%" height="15" fill="rgb(253,87,46)"/><text x="76.3084%" y="4702.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="76.0584%" y="4708" width="0.1982%" height="15" fill="rgb(253,116,33)"/><text x="76.3084%" y="4718.50"></text></g><g><title>infer_call (astroid/inference.py:229) (11 samples, 0.20%)</title><rect x="76.0584%" y="4724" width="0.1982%" height="15" fill="rgb(229,198,5)"/><text x="76.3084%" y="4734.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (11 samples, 0.20%)</title><rect x="76.0584%" y="4740" width="0.1982%" height="15" fill="rgb(242,38,37)"/><text x="76.3084%" y="4750.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="76.0584%" y="4756" width="0.1982%" height="15" fill="rgb(242,69,53)"/><text x="76.3084%" y="4766.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="76.0584%" y="4772" width="0.1982%" height="15" fill="rgb(249,80,16)"/><text x="76.3084%" y="4782.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="76.0584%" y="4788" width="0.1982%" height="15" fill="rgb(206,128,11)"/><text x="76.3084%" y="4798.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="76.1484%" y="4804" width="0.1081%" height="15" fill="rgb(212,35,20)"/><text x="76.3984%" y="4814.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2518) (9 samples, 0.16%)</title><rect x="76.5808%" y="4804" width="0.1621%" height="15" fill="rgb(236,79,13)"/><text x="76.8308%" y="4814.50"></text></g><g><title>implicit_metaclass (astroid/scoped_nodes.py:2741) (9 samples, 0.16%)</title><rect x="76.5808%" y="4820" width="0.1621%" height="15" fill="rgb(233,123,3)"/><text x="76.8308%" y="4830.50"></text></g><g><title>_newstyle_impl (astroid/scoped_nodes.py:2082) (9 samples, 0.16%)</title><rect x="76.5808%" y="4836" width="0.1621%" height="15" fill="rgb(214,93,52)"/><text x="76.8308%" y="4846.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (10 samples, 0.18%)</title><rect x="76.5808%" y="4756" width="0.1801%" height="15" fill="rgb(251,37,40)"/><text x="76.8308%" y="4766.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (10 samples, 0.18%)</title><rect x="76.5808%" y="4772" width="0.1801%" height="15" fill="rgb(227,80,54)"/><text x="76.8308%" y="4782.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (10 samples, 0.18%)</title><rect x="76.5808%" y="4788" width="0.1801%" height="15" fill="rgb(254,48,11)"/><text x="76.8308%" y="4798.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (63 samples, 1.13%)</title><rect x="75.6981%" y="4260" width="1.1349%" height="15" fill="rgb(235,193,26)"/><text x="75.9481%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (63 samples, 1.13%)</title><rect x="75.6981%" y="4276" width="1.1349%" height="15" fill="rgb(229,99,21)"/><text x="75.9481%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (63 samples, 1.13%)</title><rect x="75.6981%" y="4292" width="1.1349%" height="15" fill="rgb(211,140,41)"/><text x="75.9481%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (63 samples, 1.13%)</title><rect x="75.6981%" y="4308" width="1.1349%" height="15" fill="rgb(240,227,30)"/><text x="75.9481%" y="4318.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (63 samples, 1.13%)</title><rect x="75.6981%" y="4324" width="1.1349%" height="15" fill="rgb(215,224,45)"/><text x="75.9481%" y="4334.50"></text></g><g><title>igetattr (astroid/bases.py:233) (63 samples, 1.13%)</title><rect x="75.6981%" y="4340" width="1.1349%" height="15" fill="rgb(206,123,31)"/><text x="75.9481%" y="4350.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (63 samples, 1.13%)</title><rect x="75.6981%" y="4356" width="1.1349%" height="15" fill="rgb(210,138,16)"/><text x="75.9481%" y="4366.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (63 samples, 1.13%)</title><rect x="75.6981%" y="4372" width="1.1349%" height="15" fill="rgb(228,57,28)"/><text x="75.9481%" y="4382.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (63 samples, 1.13%)</title><rect x="75.6981%" y="4388" width="1.1349%" height="15" fill="rgb(242,170,10)"/><text x="75.9481%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (63 samples, 1.13%)</title><rect x="75.6981%" y="4404" width="1.1349%" height="15" fill="rgb(228,214,39)"/><text x="75.9481%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (63 samples, 1.13%)</title><rect x="75.6981%" y="4420" width="1.1349%" height="15" fill="rgb(218,179,33)"/><text x="75.9481%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (63 samples, 1.13%)</title><rect x="75.6981%" y="4436" width="1.1349%" height="15" fill="rgb(235,193,39)"/><text x="75.9481%" y="4446.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (32 samples, 0.58%)</title><rect x="76.2565%" y="4452" width="0.5765%" height="15" fill="rgb(219,221,36)"/><text x="76.5065%" y="4462.50"></text></g><g><title>igetattr (astroid/bases.py:233) (28 samples, 0.50%)</title><rect x="76.3286%" y="4468" width="0.5044%" height="15" fill="rgb(248,218,19)"/><text x="76.5786%" y="4478.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (28 samples, 0.50%)</title><rect x="76.3286%" y="4484" width="0.5044%" height="15" fill="rgb(205,50,9)"/><text x="76.5786%" y="4494.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (20 samples, 0.36%)</title><rect x="76.4727%" y="4500" width="0.3603%" height="15" fill="rgb(238,81,28)"/><text x="76.7227%" y="4510.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="76.4727%" y="4516" width="0.3603%" height="15" fill="rgb(235,110,19)"/><text x="76.7227%" y="4526.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="76.4727%" y="4532" width="0.3603%" height="15" fill="rgb(214,7,14)"/><text x="76.7227%" y="4542.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (20 samples, 0.36%)</title><rect x="76.4727%" y="4548" width="0.3603%" height="15" fill="rgb(211,77,3)"/><text x="76.7227%" y="4558.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="76.4727%" y="4564" width="0.3603%" height="15" fill="rgb(229,5,9)"/><text x="76.7227%" y="4574.50"></text></g><g><title>infer_call (astroid/inference.py:229) (20 samples, 0.36%)</title><rect x="76.4727%" y="4580" width="0.3603%" height="15" fill="rgb(225,90,11)"/><text x="76.7227%" y="4590.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="76.4727%" y="4596" width="0.3603%" height="15" fill="rgb(242,56,8)"/><text x="76.7227%" y="4606.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="76.4727%" y="4612" width="0.3603%" height="15" fill="rgb(249,212,39)"/><text x="76.7227%" y="4622.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (20 samples, 0.36%)</title><rect x="76.4727%" y="4628" width="0.3603%" height="15" fill="rgb(236,90,9)"/><text x="76.7227%" y="4638.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="76.4727%" y="4644" width="0.3603%" height="15" fill="rgb(206,88,35)"/><text x="76.7227%" y="4654.50"></text></g><g><title>infer_call (astroid/inference.py:229) (20 samples, 0.36%)</title><rect x="76.4727%" y="4660" width="0.3603%" height="15" fill="rgb(205,126,30)"/><text x="76.7227%" y="4670.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="76.4727%" y="4676" width="0.3603%" height="15" fill="rgb(230,176,12)"/><text x="76.7227%" y="4686.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="76.4727%" y="4692" width="0.3603%" height="15" fill="rgb(243,19,9)"/><text x="76.7227%" y="4702.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="76.4727%" y="4708" width="0.3603%" height="15" fill="rgb(245,171,17)"/><text x="76.7227%" y="4718.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="76.4727%" y="4724" width="0.3603%" height="15" fill="rgb(227,52,21)"/><text x="76.7227%" y="4734.50"></text></g><g><title>infer_call (astroid/inference.py:229) (19 samples, 0.34%)</title><rect x="76.4907%" y="4740" width="0.3423%" height="15" fill="rgb(238,69,14)"/><text x="76.7407%" y="4750.50"></text></g><g><title>infer_call (astroid/inference.py:223) (73 samples, 1.32%)</title><rect x="75.6981%" y="4196" width="1.3151%" height="15" fill="rgb(241,156,39)"/><text x="75.9481%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (73 samples, 1.32%)</title><rect x="75.6981%" y="4212" width="1.3151%" height="15" fill="rgb(212,227,28)"/><text x="75.9481%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (73 samples, 1.32%)</title><rect x="75.6981%" y="4228" width="1.3151%" height="15" fill="rgb(209,118,27)"/><text x="75.9481%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (73 samples, 1.32%)</title><rect x="75.6981%" y="4244" width="1.3151%" height="15" fill="rgb(226,102,5)"/><text x="75.9481%" y="4254.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (10 samples, 0.18%)</title><rect x="76.8330%" y="4260" width="0.1801%" height="15" fill="rgb(223,34,3)"/><text x="77.0830%" y="4270.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="77.0132%" y="4532" width="0.1081%" height="15" fill="rgb(221,81,38)"/><text x="77.2632%" y="4542.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="77.0132%" y="4548" width="0.1081%" height="15" fill="rgb(236,219,28)"/><text x="77.2632%" y="4558.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="77.0132%" y="4564" width="0.1081%" height="15" fill="rgb(213,200,14)"/><text x="77.2632%" y="4574.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="77.0132%" y="4580" width="0.1081%" height="15" fill="rgb(240,33,19)"/><text x="77.2632%" y="4590.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="77.0132%" y="4596" width="0.1081%" height="15" fill="rgb(233,113,27)"/><text x="77.2632%" y="4606.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="77.0132%" y="4404" width="0.1441%" height="15" fill="rgb(220,221,18)"/><text x="77.2632%" y="4414.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="77.0132%" y="4420" width="0.1441%" height="15" fill="rgb(238,92,8)"/><text x="77.2632%" y="4430.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="77.0132%" y="4436" width="0.1441%" height="15" fill="rgb(222,164,16)"/><text x="77.2632%" y="4446.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="77.0132%" y="4452" width="0.1441%" height="15" fill="rgb(241,119,3)"/><text x="77.2632%" y="4462.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="77.0132%" y="4468" width="0.1441%" height="15" fill="rgb(241,44,8)"/><text x="77.2632%" y="4478.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="77.0132%" y="4484" width="0.1441%" height="15" fill="rgb(230,36,40)"/><text x="77.2632%" y="4494.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="77.0132%" y="4500" width="0.1441%" height="15" fill="rgb(243,16,36)"/><text x="77.2632%" y="4510.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="77.0132%" y="4516" width="0.1441%" height="15" fill="rgb(231,4,26)"/><text x="77.2632%" y="4526.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:595) (6 samples, 0.11%)</title><rect x="77.2834%" y="4836" width="0.1081%" height="15" fill="rgb(240,9,31)"/><text x="77.5334%" y="4846.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (15 samples, 0.27%)</title><rect x="77.2293%" y="4724" width="0.2702%" height="15" fill="rgb(207,173,15)"/><text x="77.4793%" y="4734.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (15 samples, 0.27%)</title><rect x="77.2293%" y="4740" width="0.2702%" height="15" fill="rgb(224,192,53)"/><text x="77.4793%" y="4750.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="77.2293%" y="4756" width="0.2702%" height="15" fill="rgb(223,67,28)"/><text x="77.4793%" y="4766.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="77.2293%" y="4772" width="0.2702%" height="15" fill="rgb(211,20,47)"/><text x="77.4793%" y="4782.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="77.2293%" y="4788" width="0.2702%" height="15" fill="rgb(240,228,2)"/><text x="77.4793%" y="4798.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (12 samples, 0.22%)</title><rect x="77.2834%" y="4804" width="0.2162%" height="15" fill="rgb(248,151,12)"/><text x="77.5334%" y="4814.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (12 samples, 0.22%)</title><rect x="77.2834%" y="4820" width="0.2162%" height="15" fill="rgb(244,8,39)"/><text x="77.5334%" y="4830.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:598) (6 samples, 0.11%)</title><rect x="77.3915%" y="4836" width="0.1081%" height="15" fill="rgb(222,26,8)"/><text x="77.6415%" y="4846.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (6 samples, 0.11%)</title><rect x="77.3915%" y="4852" width="0.1081%" height="15" fill="rgb(213,106,44)"/><text x="77.6415%" y="4862.50"></text></g><g><title>__init__ (astroid/exceptions.py:34) (6 samples, 0.11%)</title><rect x="77.3915%" y="4868" width="0.1081%" height="15" fill="rgb(214,129,20)"/><text x="77.6415%" y="4878.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (16 samples, 0.29%)</title><rect x="77.2293%" y="4692" width="0.2882%" height="15" fill="rgb(212,32,13)"/><text x="77.4793%" y="4702.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (16 samples, 0.29%)</title><rect x="77.2293%" y="4708" width="0.2882%" height="15" fill="rgb(208,168,33)"/><text x="77.4793%" y="4718.50"></text></g><g><title>infer_call (astroid/inference.py:223) (25 samples, 0.45%)</title><rect x="77.1573%" y="4612" width="0.4504%" height="15" fill="rgb(231,207,8)"/><text x="77.4073%" y="4622.50"></text></g><g><title>infer (astroid/node_classes.py:380) (25 samples, 0.45%)</title><rect x="77.1573%" y="4628" width="0.4504%" height="15" fill="rgb(235,219,23)"/><text x="77.4073%" y="4638.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="77.1573%" y="4644" width="0.4504%" height="15" fill="rgb(226,216,26)"/><text x="77.4073%" y="4654.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="77.1573%" y="4660" width="0.4504%" height="15" fill="rgb(239,137,16)"/><text x="77.4073%" y="4670.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (21 samples, 0.38%)</title><rect x="77.2293%" y="4676" width="0.3783%" height="15" fill="rgb(207,12,36)"/><text x="77.4793%" y="4686.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (38 samples, 0.68%)</title><rect x="77.0132%" y="4340" width="0.6846%" height="15" fill="rgb(210,214,24)"/><text x="77.2632%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (38 samples, 0.68%)</title><rect x="77.0132%" y="4356" width="0.6846%" height="15" fill="rgb(206,56,30)"/><text x="77.2632%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (38 samples, 0.68%)</title><rect x="77.0132%" y="4372" width="0.6846%" height="15" fill="rgb(228,143,26)"/><text x="77.2632%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (38 samples, 0.68%)</title><rect x="77.0132%" y="4388" width="0.6846%" height="15" fill="rgb(216,218,46)"/><text x="77.2632%" y="4398.50"></text></g><g><title>infer_call (astroid/inference.py:229) (30 samples, 0.54%)</title><rect x="77.1573%" y="4404" width="0.5404%" height="15" fill="rgb(206,6,19)"/><text x="77.4073%" y="4414.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (30 samples, 0.54%)</title><rect x="77.1573%" y="4420" width="0.5404%" height="15" fill="rgb(239,177,51)"/><text x="77.4073%" y="4430.50"></text></g><g><title>infer (astroid/node_classes.py:380) (30 samples, 0.54%)</title><rect x="77.1573%" y="4436" width="0.5404%" height="15" fill="rgb(216,55,25)"/><text x="77.4073%" y="4446.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (30 samples, 0.54%)</title><rect x="77.1573%" y="4452" width="0.5404%" height="15" fill="rgb(231,163,29)"/><text x="77.4073%" y="4462.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (30 samples, 0.54%)</title><rect x="77.1573%" y="4468" width="0.5404%" height="15" fill="rgb(232,149,50)"/><text x="77.4073%" y="4478.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (30 samples, 0.54%)</title><rect x="77.1573%" y="4484" width="0.5404%" height="15" fill="rgb(223,142,48)"/><text x="77.4073%" y="4494.50"></text></g><g><title>infer (astroid/node_classes.py:380) (30 samples, 0.54%)</title><rect x="77.1573%" y="4500" width="0.5404%" height="15" fill="rgb(245,83,23)"/><text x="77.4073%" y="4510.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (30 samples, 0.54%)</title><rect x="77.1573%" y="4516" width="0.5404%" height="15" fill="rgb(224,63,2)"/><text x="77.4073%" y="4526.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (30 samples, 0.54%)</title><rect x="77.1573%" y="4532" width="0.5404%" height="15" fill="rgb(218,65,53)"/><text x="77.4073%" y="4542.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (30 samples, 0.54%)</title><rect x="77.1573%" y="4548" width="0.5404%" height="15" fill="rgb(221,84,29)"/><text x="77.4073%" y="4558.50"></text></g><g><title>infer (astroid/node_classes.py:380) (30 samples, 0.54%)</title><rect x="77.1573%" y="4564" width="0.5404%" height="15" fill="rgb(234,0,32)"/><text x="77.4073%" y="4574.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (30 samples, 0.54%)</title><rect x="77.1573%" y="4580" width="0.5404%" height="15" fill="rgb(206,20,16)"/><text x="77.4073%" y="4590.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (30 samples, 0.54%)</title><rect x="77.1573%" y="4596" width="0.5404%" height="15" fill="rgb(244,172,18)"/><text x="77.4073%" y="4606.50"></text></g><g><title>infer_call (astroid/inference.py:223) (39 samples, 0.70%)</title><rect x="77.0132%" y="4276" width="0.7026%" height="15" fill="rgb(254,133,1)"/><text x="77.2632%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (39 samples, 0.70%)</title><rect x="77.0132%" y="4292" width="0.7026%" height="15" fill="rgb(222,206,41)"/><text x="77.2632%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (39 samples, 0.70%)</title><rect x="77.0132%" y="4308" width="0.7026%" height="15" fill="rgb(212,3,42)"/><text x="77.2632%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (39 samples, 0.70%)</title><rect x="77.0132%" y="4324" width="0.7026%" height="15" fill="rgb(241,11,4)"/><text x="77.2632%" y="4334.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (43 samples, 0.77%)</title><rect x="77.0132%" y="4244" width="0.7746%" height="15" fill="rgb(205,19,26)"/><text x="77.2632%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (43 samples, 0.77%)</title><rect x="77.0132%" y="4260" width="0.7746%" height="15" fill="rgb(210,179,32)"/><text x="77.2632%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (128 samples, 2.31%)</title><rect x="75.6080%" y="3684" width="2.3059%" height="15" fill="rgb(227,116,49)"/><text x="75.8580%" y="3694.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (128 samples, 2.31%)</title><rect x="75.6080%" y="3700" width="2.3059%" height="15" fill="rgb(211,146,6)"/><text x="75.8580%" y="3710.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (128 samples, 2.31%)</title><rect x="75.6080%" y="3716" width="2.3059%" height="15" fill="rgb(219,44,39)"/><text x="75.8580%" y="3726.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (126 samples, 2.27%)</title><rect x="75.6440%" y="3732" width="2.2699%" height="15" fill="rgb(234,128,11)"/><text x="75.8940%" y="3742.50">i..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (126 samples, 2.27%)</title><rect x="75.6440%" y="3748" width="2.2699%" height="15" fill="rgb(220,183,53)"/><text x="75.8940%" y="3758.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (126 samples, 2.27%)</title><rect x="75.6440%" y="3764" width="2.2699%" height="15" fill="rgb(213,219,32)"/><text x="75.8940%" y="3774.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="3780" width="2.2158%" height="15" fill="rgb(232,156,16)"/><text x="75.9481%" y="3790.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="3796" width="2.2158%" height="15" fill="rgb(246,135,34)"/><text x="75.9481%" y="3806.50">w..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (123 samples, 2.22%)</title><rect x="75.6981%" y="3812" width="2.2158%" height="15" fill="rgb(241,99,0)"/><text x="75.9481%" y="3822.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="3828" width="2.2158%" height="15" fill="rgb(222,103,45)"/><text x="75.9481%" y="3838.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="3844" width="2.2158%" height="15" fill="rgb(212,57,4)"/><text x="75.9481%" y="3854.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="3860" width="2.2158%" height="15" fill="rgb(215,68,47)"/><text x="75.9481%" y="3870.50">w..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (123 samples, 2.22%)</title><rect x="75.6981%" y="3876" width="2.2158%" height="15" fill="rgb(230,84,2)"/><text x="75.9481%" y="3886.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="3892" width="2.2158%" height="15" fill="rgb(220,102,14)"/><text x="75.9481%" y="3902.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="3908" width="2.2158%" height="15" fill="rgb(240,10,32)"/><text x="75.9481%" y="3918.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="3924" width="2.2158%" height="15" fill="rgb(215,47,27)"/><text x="75.9481%" y="3934.50">w..</text></g><g><title>infer_call (astroid/inference.py:223) (123 samples, 2.22%)</title><rect x="75.6981%" y="3940" width="2.2158%" height="15" fill="rgb(233,188,43)"/><text x="75.9481%" y="3950.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="3956" width="2.2158%" height="15" fill="rgb(253,190,1)"/><text x="75.9481%" y="3966.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="3972" width="2.2158%" height="15" fill="rgb(206,114,52)"/><text x="75.9481%" y="3982.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="3988" width="2.2158%" height="15" fill="rgb(233,120,37)"/><text x="75.9481%" y="3998.50">w..</text></g><g><title>infer_attribute (astroid/inference.py:289) (123 samples, 2.22%)</title><rect x="75.6981%" y="4004" width="2.2158%" height="15" fill="rgb(214,52,39)"/><text x="75.9481%" y="4014.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="4020" width="2.2158%" height="15" fill="rgb(223,80,29)"/><text x="75.9481%" y="4030.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="4036" width="2.2158%" height="15" fill="rgb(230,101,40)"/><text x="75.9481%" y="4046.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="4052" width="2.2158%" height="15" fill="rgb(219,211,8)"/><text x="75.9481%" y="4062.50">w..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (123 samples, 2.22%)</title><rect x="75.6981%" y="4068" width="2.2158%" height="15" fill="rgb(252,126,28)"/><text x="75.9481%" y="4078.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="4084" width="2.2158%" height="15" fill="rgb(215,56,38)"/><text x="75.9481%" y="4094.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="4100" width="2.2158%" height="15" fill="rgb(249,55,44)"/><text x="75.9481%" y="4110.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="4116" width="2.2158%" height="15" fill="rgb(220,221,32)"/><text x="75.9481%" y="4126.50">w..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (123 samples, 2.22%)</title><rect x="75.6981%" y="4132" width="2.2158%" height="15" fill="rgb(212,216,41)"/><text x="75.9481%" y="4142.50">_..</text></g><g><title>infer (astroid/node_classes.py:380) (123 samples, 2.22%)</title><rect x="75.6981%" y="4148" width="2.2158%" height="15" fill="rgb(228,213,43)"/><text x="75.9481%" y="4158.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (123 samples, 2.22%)</title><rect x="75.6981%" y="4164" width="2.2158%" height="15" fill="rgb(211,31,26)"/><text x="75.9481%" y="4174.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (123 samples, 2.22%)</title><rect x="75.6981%" y="4180" width="2.2158%" height="15" fill="rgb(229,202,19)"/><text x="75.9481%" y="4190.50">w..</text></g><g><title>infer_call (astroid/inference.py:229) (50 samples, 0.90%)</title><rect x="77.0132%" y="4196" width="0.9007%" height="15" fill="rgb(229,105,46)"/><text x="77.2632%" y="4206.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (50 samples, 0.90%)</title><rect x="77.0132%" y="4212" width="0.9007%" height="15" fill="rgb(235,108,1)"/><text x="77.2632%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (50 samples, 0.90%)</title><rect x="77.0132%" y="4228" width="0.9007%" height="15" fill="rgb(245,111,35)"/><text x="77.2632%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="77.7878%" y="4244" width="0.1261%" height="15" fill="rgb(219,185,31)"/><text x="78.0378%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="77.7878%" y="4260" width="0.1261%" height="15" fill="rgb(214,4,43)"/><text x="78.0378%" y="4270.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="77.7878%" y="4276" width="0.1261%" height="15" fill="rgb(235,227,40)"/><text x="78.0378%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="77.7878%" y="4292" width="0.1261%" height="15" fill="rgb(230,88,30)"/><text x="78.0378%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="77.7878%" y="4308" width="0.1261%" height="15" fill="rgb(216,217,1)"/><text x="78.0378%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="77.7878%" y="4324" width="0.1261%" height="15" fill="rgb(248,139,50)"/><text x="78.0378%" y="4334.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="77.7878%" y="4340" width="0.1261%" height="15" fill="rgb(233,1,21)"/><text x="78.0378%" y="4350.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="77.7878%" y="4356" width="0.1261%" height="15" fill="rgb(215,183,12)"/><text x="78.0378%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="77.7878%" y="4372" width="0.1261%" height="15" fill="rgb(229,104,42)"/><text x="78.0378%" y="4382.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="77.7878%" y="4388" width="0.1261%" height="15" fill="rgb(243,34,48)"/><text x="78.0378%" y="4398.50"></text></g><g><title>infer_call (astroid/inference.py:223) (130 samples, 2.34%)</title><rect x="75.5900%" y="3604" width="2.3419%" height="15" fill="rgb(239,11,44)"/><text x="75.8400%" y="3614.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (130 samples, 2.34%)</title><rect x="75.5900%" y="3620" width="2.3419%" height="15" fill="rgb(231,98,35)"/><text x="75.8400%" y="3630.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (130 samples, 2.34%)</title><rect x="75.5900%" y="3636" width="2.3419%" height="15" fill="rgb(233,28,25)"/><text x="75.8400%" y="3646.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (129 samples, 2.32%)</title><rect x="75.6080%" y="3652" width="2.3239%" height="15" fill="rgb(234,123,11)"/><text x="75.8580%" y="3662.50">w..</text></g><g><title>infer_attribute (astroid/inference.py:289) (129 samples, 2.32%)</title><rect x="75.6080%" y="3668" width="2.3239%" height="15" fill="rgb(220,69,3)"/><text x="75.8580%" y="3678.50">i..</text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="77.9319%" y="3684" width="0.1261%" height="15" fill="rgb(214,64,36)"/><text x="78.1819%" y="3694.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="77.9319%" y="3700" width="0.1261%" height="15" fill="rgb(211,138,32)"/><text x="78.1819%" y="3710.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="77.9319%" y="3716" width="0.1261%" height="15" fill="rgb(213,118,47)"/><text x="78.1819%" y="3726.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="77.9319%" y="3732" width="0.1261%" height="15" fill="rgb(243,124,49)"/><text x="78.1819%" y="3742.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="77.9319%" y="3748" width="0.1261%" height="15" fill="rgb(221,30,28)"/><text x="78.1819%" y="3758.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="77.9319%" y="3764" width="0.1261%" height="15" fill="rgb(246,37,13)"/><text x="78.1819%" y="3774.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (7 samples, 0.13%)</title><rect x="77.9319%" y="3780" width="0.1261%" height="15" fill="rgb(249,66,14)"/><text x="78.1819%" y="3790.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2524) (6 samples, 0.11%)</title><rect x="77.9499%" y="3796" width="0.1081%" height="15" fill="rgb(213,166,5)"/><text x="78.1999%" y="3806.50"></text></g><g><title>_get_attribute_from_metaclass (astroid/scoped_nodes.py:2529) (6 samples, 0.11%)</title><rect x="77.9499%" y="3812" width="0.1081%" height="15" fill="rgb(221,66,24)"/><text x="78.1999%" y="3822.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="77.9499%" y="3828" width="0.1081%" height="15" fill="rgb(210,132,17)"/><text x="78.1999%" y="3838.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="77.9319%" y="3652" width="0.1801%" height="15" fill="rgb(243,202,5)"/><text x="78.1819%" y="3662.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="77.9319%" y="3668" width="0.1801%" height="15" fill="rgb(233,70,48)"/><text x="78.1819%" y="3678.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (6 samples, 0.11%)</title><rect x="78.1841%" y="3940" width="0.1081%" height="15" fill="rgb(238,41,26)"/><text x="78.4341%" y="3950.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="78.1841%" y="3956" width="0.1081%" height="15" fill="rgb(241,19,31)"/><text x="78.4341%" y="3966.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="78.1841%" y="3972" width="0.1081%" height="15" fill="rgb(214,76,10)"/><text x="78.4341%" y="3982.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="78.1841%" y="3988" width="0.1081%" height="15" fill="rgb(254,202,22)"/><text x="78.4341%" y="3998.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="78.1841%" y="4004" width="0.1081%" height="15" fill="rgb(214,72,24)"/><text x="78.4341%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="78.1841%" y="4020" width="0.1081%" height="15" fill="rgb(221,92,46)"/><text x="78.4341%" y="4030.50"></text></g><g><title>infer_call (astroid/inference.py:223) (11 samples, 0.20%)</title><rect x="78.1301%" y="3812" width="0.1982%" height="15" fill="rgb(246,13,50)"/><text x="78.3801%" y="3822.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="78.1301%" y="3828" width="0.1982%" height="15" fill="rgb(240,165,38)"/><text x="78.3801%" y="3838.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="78.1301%" y="3844" width="0.1982%" height="15" fill="rgb(241,24,51)"/><text x="78.3801%" y="3854.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="78.1301%" y="3860" width="0.1982%" height="15" fill="rgb(227,51,44)"/><text x="78.3801%" y="3870.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (9 samples, 0.16%)</title><rect x="78.1661%" y="3876" width="0.1621%" height="15" fill="rgb(231,121,3)"/><text x="78.4161%" y="3886.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2617) (8 samples, 0.14%)</title><rect x="78.1841%" y="3892" width="0.1441%" height="15" fill="rgb(245,3,41)"/><text x="78.4341%" y="3902.50"></text></g><g><title>has_dynamic_getattr (astroid/scoped_nodes.py:2646) (8 samples, 0.14%)</title><rect x="78.1841%" y="3908" width="0.1441%" height="15" fill="rgb(214,13,26)"/><text x="78.4341%" y="3918.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (8 samples, 0.14%)</title><rect x="78.1841%" y="3924" width="0.1441%" height="15" fill="rgb(252,75,11)"/><text x="78.4341%" y="3934.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (16 samples, 0.29%)</title><rect x="78.3282%" y="3828" width="0.2882%" height="15" fill="rgb(218,226,17)"/><text x="78.5782%" y="3838.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (16 samples, 0.29%)</title><rect x="78.3282%" y="3844" width="0.2882%" height="15" fill="rgb(248,89,38)"/><text x="78.5782%" y="3854.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (16 samples, 0.29%)</title><rect x="78.3282%" y="3860" width="0.2882%" height="15" fill="rgb(237,73,46)"/><text x="78.5782%" y="3870.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="3876" width="0.2702%" height="15" fill="rgb(242,78,33)"/><text x="78.5962%" y="3886.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="78.3462%" y="3892" width="0.2702%" height="15" fill="rgb(235,60,3)"/><text x="78.5962%" y="3902.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="3908" width="0.2702%" height="15" fill="rgb(216,172,19)"/><text x="78.5962%" y="3918.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="78.3462%" y="3924" width="0.2702%" height="15" fill="rgb(227,6,42)"/><text x="78.5962%" y="3934.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="3940" width="0.2702%" height="15" fill="rgb(223,207,42)"/><text x="78.5962%" y="3950.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="78.3462%" y="3956" width="0.2702%" height="15" fill="rgb(246,138,30)"/><text x="78.5962%" y="3966.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="3972" width="0.2702%" height="15" fill="rgb(251,199,47)"/><text x="78.5962%" y="3982.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="78.3462%" y="3988" width="0.2702%" height="15" fill="rgb(228,218,44)"/><text x="78.5962%" y="3998.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="4004" width="0.2702%" height="15" fill="rgb(220,68,6)"/><text x="78.5962%" y="4014.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="78.3462%" y="4020" width="0.2702%" height="15" fill="rgb(240,60,26)"/><text x="78.5962%" y="4030.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="78.3462%" y="4036" width="0.2702%" height="15" fill="rgb(211,200,19)"/><text x="78.5962%" y="4046.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (14 samples, 0.25%)</title><rect x="78.3643%" y="4052" width="0.2522%" height="15" fill="rgb(242,145,30)"/><text x="78.6143%" y="4062.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="78.3823%" y="4068" width="0.2342%" height="15" fill="rgb(225,64,13)"/><text x="78.6323%" y="4078.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="78.3823%" y="4084" width="0.2342%" height="15" fill="rgb(218,103,35)"/><text x="78.6323%" y="4094.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="78.3823%" y="4100" width="0.2342%" height="15" fill="rgb(216,93,46)"/><text x="78.6323%" y="4110.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="78.3823%" y="4116" width="0.2342%" height="15" fill="rgb(225,159,27)"/><text x="78.6323%" y="4126.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="78.3823%" y="4132" width="0.2342%" height="15" fill="rgb(225,204,11)"/><text x="78.6323%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="78.3823%" y="4148" width="0.2342%" height="15" fill="rgb(205,56,4)"/><text x="78.6323%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="78.3823%" y="4164" width="0.2342%" height="15" fill="rgb(206,6,35)"/><text x="78.6323%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="78.3823%" y="4180" width="0.2342%" height="15" fill="rgb(247,73,52)"/><text x="78.6323%" y="4190.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="78.4183%" y="4196" width="0.1982%" height="15" fill="rgb(246,97,4)"/><text x="78.6683%" y="4206.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="78.4363%" y="4212" width="0.1801%" height="15" fill="rgb(212,37,15)"/><text x="78.6863%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (8 samples, 0.14%)</title><rect x="78.4723%" y="4228" width="0.1441%" height="15" fill="rgb(208,130,40)"/><text x="78.7223%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (8 samples, 0.14%)</title><rect x="78.4723%" y="4244" width="0.1441%" height="15" fill="rgb(236,55,29)"/><text x="78.7223%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (6 samples, 0.11%)</title><rect x="78.5084%" y="4260" width="0.1081%" height="15" fill="rgb(209,156,45)"/><text x="78.7584%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (6 samples, 0.11%)</title><rect x="78.5084%" y="4276" width="0.1081%" height="15" fill="rgb(249,107,4)"/><text x="78.7584%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (28 samples, 0.50%)</title><rect x="78.1301%" y="3716" width="0.5044%" height="15" fill="rgb(227,7,13)"/><text x="78.3801%" y="3726.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (28 samples, 0.50%)</title><rect x="78.1301%" y="3732" width="0.5044%" height="15" fill="rgb(250,129,14)"/><text x="78.3801%" y="3742.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (28 samples, 0.50%)</title><rect x="78.1301%" y="3748" width="0.5044%" height="15" fill="rgb(229,92,13)"/><text x="78.3801%" y="3758.50"></text></g><g><title>infer (astroid/node_classes.py:380) (28 samples, 0.50%)</title><rect x="78.1301%" y="3764" width="0.5044%" height="15" fill="rgb(245,98,39)"/><text x="78.3801%" y="3774.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (28 samples, 0.50%)</title><rect x="78.1301%" y="3780" width="0.5044%" height="15" fill="rgb(234,135,48)"/><text x="78.3801%" y="3790.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (28 samples, 0.50%)</title><rect x="78.1301%" y="3796" width="0.5044%" height="15" fill="rgb(230,98,28)"/><text x="78.3801%" y="3806.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="78.3282%" y="3812" width="0.3063%" height="15" fill="rgb(223,121,0)"/><text x="78.5782%" y="3822.50"></text></g><g><title>infer_call (astroid/inference.py:223) (8 samples, 0.14%)</title><rect x="78.6345%" y="3812" width="0.1441%" height="15" fill="rgb(234,173,33)"/><text x="78.8845%" y="3822.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="78.6345%" y="3828" width="0.1441%" height="15" fill="rgb(245,47,8)"/><text x="78.8845%" y="3838.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (8 samples, 0.14%)</title><rect x="78.6345%" y="3844" width="0.1441%" height="15" fill="rgb(205,17,20)"/><text x="78.8845%" y="3854.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="78.6345%" y="3860" width="0.1441%" height="15" fill="rgb(232,151,16)"/><text x="78.8845%" y="3870.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="78.6345%" y="3876" width="0.1441%" height="15" fill="rgb(208,30,32)"/><text x="78.8845%" y="3886.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="78.6345%" y="3892" width="0.1441%" height="15" fill="rgb(254,26,3)"/><text x="78.8845%" y="3902.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (8 samples, 0.14%)</title><rect x="78.6345%" y="3908" width="0.1441%" height="15" fill="rgb(240,177,30)"/><text x="78.8845%" y="3918.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="78.6525%" y="3924" width="0.1261%" height="15" fill="rgb(248,76,44)"/><text x="78.9025%" y="3934.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="78.6525%" y="3940" width="0.1261%" height="15" fill="rgb(241,186,54)"/><text x="78.9025%" y="3950.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="78.6525%" y="3956" width="0.1261%" height="15" fill="rgb(249,171,29)"/><text x="78.9025%" y="3966.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="78.6525%" y="3972" width="0.1261%" height="15" fill="rgb(237,151,44)"/><text x="78.9025%" y="3982.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="78.6525%" y="3988" width="0.1261%" height="15" fill="rgb(228,174,30)"/><text x="78.9025%" y="3998.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="78.6525%" y="4004" width="0.1261%" height="15" fill="rgb(252,14,37)"/><text x="78.9025%" y="4014.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="78.6525%" y="4020" width="0.1261%" height="15" fill="rgb(207,111,40)"/><text x="78.9025%" y="4030.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (7 samples, 0.13%)</title><rect x="78.6525%" y="4036" width="0.1261%" height="15" fill="rgb(248,171,54)"/><text x="78.9025%" y="4046.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="78.6525%" y="4052" width="0.1261%" height="15" fill="rgb(211,127,2)"/><text x="78.9025%" y="4062.50"></text></g><g><title>infer_call (astroid/inference.py:229) (7 samples, 0.13%)</title><rect x="78.6525%" y="4068" width="0.1261%" height="15" fill="rgb(236,87,47)"/><text x="78.9025%" y="4078.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (43 samples, 0.77%)</title><rect x="78.1121%" y="3684" width="0.7746%" height="15" fill="rgb(223,190,45)"/><text x="78.3621%" y="3694.50"></text></g><g><title>infer (astroid/node_classes.py:380) (42 samples, 0.76%)</title><rect x="78.1301%" y="3700" width="0.7566%" height="15" fill="rgb(215,5,16)"/><text x="78.3801%" y="3710.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="78.6345%" y="3716" width="0.2522%" height="15" fill="rgb(252,82,33)"/><text x="78.8845%" y="3726.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="78.6345%" y="3732" width="0.2522%" height="15" fill="rgb(247,213,44)"/><text x="78.8845%" y="3742.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (14 samples, 0.25%)</title><rect x="78.6345%" y="3748" width="0.2522%" height="15" fill="rgb(205,196,44)"/><text x="78.8845%" y="3758.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="78.6345%" y="3764" width="0.2522%" height="15" fill="rgb(237,96,54)"/><text x="78.8845%" y="3774.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="78.6345%" y="3780" width="0.2522%" height="15" fill="rgb(230,113,34)"/><text x="78.8845%" y="3790.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="78.6345%" y="3796" width="0.2522%" height="15" fill="rgb(221,224,12)"/><text x="78.8845%" y="3806.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="78.7786%" y="3812" width="0.1081%" height="15" fill="rgb(219,112,44)"/><text x="79.0286%" y="3822.50"></text></g><g><title>igetattr (astroid/bases.py:221) (6 samples, 0.11%)</title><rect x="78.9948%" y="3972" width="0.1081%" height="15" fill="rgb(210,31,13)"/><text x="79.2448%" y="3982.50"></text></g><g><title>getattr (astroid/bases.py:182) (6 samples, 0.11%)</title><rect x="78.9948%" y="3988" width="0.1081%" height="15" fill="rgb(230,25,16)"/><text x="79.2448%" y="3998.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (6 samples, 0.11%)</title><rect x="78.9948%" y="4004" width="0.1081%" height="15" fill="rgb(246,108,53)"/><text x="79.2448%" y="4014.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (6 samples, 0.11%)</title><rect x="78.9948%" y="4020" width="0.1081%" height="15" fill="rgb(241,172,50)"/><text x="79.2448%" y="4030.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="78.9948%" y="4036" width="0.1081%" height="15" fill="rgb(235,141,10)"/><text x="79.2448%" y="4046.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="78.9948%" y="4052" width="0.1081%" height="15" fill="rgb(220,174,43)"/><text x="79.2448%" y="4062.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="78.9948%" y="4068" width="0.1081%" height="15" fill="rgb(215,181,40)"/><text x="79.2448%" y="4078.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="78.9948%" y="4084" width="0.1081%" height="15" fill="rgb(230,97,2)"/><text x="79.2448%" y="4094.50"></text></g><g><title>infer_call (astroid/inference.py:223) (17 samples, 0.31%)</title><rect x="78.9768%" y="3892" width="0.3063%" height="15" fill="rgb(211,25,27)"/><text x="79.2268%" y="3902.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="78.9768%" y="3908" width="0.3063%" height="15" fill="rgb(230,87,26)"/><text x="79.2268%" y="3918.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (17 samples, 0.31%)</title><rect x="78.9768%" y="3924" width="0.3063%" height="15" fill="rgb(227,160,17)"/><text x="79.2268%" y="3934.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="78.9948%" y="3940" width="0.2882%" height="15" fill="rgb(244,85,34)"/><text x="79.2448%" y="3950.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (16 samples, 0.29%)</title><rect x="78.9948%" y="3956" width="0.2882%" height="15" fill="rgb(207,70,0)"/><text x="79.2448%" y="3966.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (36 samples, 0.65%)</title><rect x="78.9407%" y="3796" width="0.6485%" height="15" fill="rgb(223,129,7)"/><text x="79.1907%" y="3806.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (34 samples, 0.61%)</title><rect x="78.9768%" y="3812" width="0.6125%" height="15" fill="rgb(246,105,7)"/><text x="79.2268%" y="3822.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (34 samples, 0.61%)</title><rect x="78.9768%" y="3828" width="0.6125%" height="15" fill="rgb(215,154,42)"/><text x="79.2268%" y="3838.50"></text></g><g><title>infer (astroid/node_classes.py:380) (34 samples, 0.61%)</title><rect x="78.9768%" y="3844" width="0.6125%" height="15" fill="rgb(220,215,30)"/><text x="79.2268%" y="3854.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (34 samples, 0.61%)</title><rect x="78.9768%" y="3860" width="0.6125%" height="15" fill="rgb(228,81,51)"/><text x="79.2268%" y="3870.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (34 samples, 0.61%)</title><rect x="78.9768%" y="3876" width="0.6125%" height="15" fill="rgb(247,71,54)"/><text x="79.2268%" y="3886.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="79.2830%" y="3892" width="0.3063%" height="15" fill="rgb(234,176,34)"/><text x="79.5330%" y="3902.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1718) (17 samples, 0.31%)</title><rect x="79.2830%" y="3908" width="0.3063%" height="15" fill="rgb(241,103,54)"/><text x="79.5330%" y="3918.50"></text></g><g><title>is_generator (astroid/scoped_nodes.py:1710) (17 samples, 0.31%)</title><rect x="79.2830%" y="3924" width="0.3063%" height="15" fill="rgb(228,22,34)"/><text x="79.5330%" y="3934.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="3940" width="0.3063%" height="15" fill="rgb(241,179,48)"/><text x="79.5330%" y="3950.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="3956" width="0.3063%" height="15" fill="rgb(235,167,37)"/><text x="79.5330%" y="3966.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="3972" width="0.3063%" height="15" fill="rgb(213,109,30)"/><text x="79.5330%" y="3982.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="3988" width="0.3063%" height="15" fill="rgb(222,172,16)"/><text x="79.5330%" y="3998.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="4004" width="0.3063%" height="15" fill="rgb(233,192,5)"/><text x="79.5330%" y="4014.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="4020" width="0.3063%" height="15" fill="rgb(247,189,41)"/><text x="79.5330%" y="4030.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="4036" width="0.3063%" height="15" fill="rgb(218,134,47)"/><text x="79.5330%" y="4046.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="4052" width="0.3063%" height="15" fill="rgb(216,29,3)"/><text x="79.5330%" y="4062.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="4068" width="0.3063%" height="15" fill="rgb(246,140,12)"/><text x="79.5330%" y="4078.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="4084" width="0.3063%" height="15" fill="rgb(230,136,11)"/><text x="79.5330%" y="4094.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (17 samples, 0.31%)</title><rect x="79.2830%" y="4100" width="0.3063%" height="15" fill="rgb(247,22,47)"/><text x="79.5330%" y="4110.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (17 samples, 0.31%)</title><rect x="79.2830%" y="4116" width="0.3063%" height="15" fill="rgb(218,84,22)"/><text x="79.5330%" y="4126.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="79.3190%" y="4132" width="0.2702%" height="15" fill="rgb(216,87,39)"/><text x="79.5690%" y="4142.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="79.3190%" y="4148" width="0.2702%" height="15" fill="rgb(221,178,8)"/><text x="79.5690%" y="4158.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="79.3190%" y="4164" width="0.2702%" height="15" fill="rgb(230,42,11)"/><text x="79.5690%" y="4174.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="79.3190%" y="4180" width="0.2702%" height="15" fill="rgb(237,229,4)"/><text x="79.5690%" y="4190.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="79.3190%" y="4196" width="0.2702%" height="15" fill="rgb(222,31,33)"/><text x="79.5690%" y="4206.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="79.3190%" y="4212" width="0.2702%" height="15" fill="rgb(210,17,39)"/><text x="79.5690%" y="4222.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (15 samples, 0.27%)</title><rect x="79.3190%" y="4228" width="0.2702%" height="15" fill="rgb(244,93,20)"/><text x="79.5690%" y="4238.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (15 samples, 0.27%)</title><rect x="79.3190%" y="4244" width="0.2702%" height="15" fill="rgb(210,40,47)"/><text x="79.5690%" y="4254.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="79.3551%" y="4260" width="0.2342%" height="15" fill="rgb(239,211,47)"/><text x="79.6051%" y="4270.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (13 samples, 0.23%)</title><rect x="79.3551%" y="4276" width="0.2342%" height="15" fill="rgb(251,223,49)"/><text x="79.6051%" y="4286.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (13 samples, 0.23%)</title><rect x="79.3551%" y="4292" width="0.2342%" height="15" fill="rgb(221,149,5)"/><text x="79.6051%" y="4302.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (11 samples, 0.20%)</title><rect x="79.3911%" y="4308" width="0.1982%" height="15" fill="rgb(219,224,51)"/><text x="79.6411%" y="4318.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="79.4091%" y="4324" width="0.1801%" height="15" fill="rgb(223,7,8)"/><text x="79.6591%" y="4334.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="79.4091%" y="4340" width="0.1801%" height="15" fill="rgb(241,217,22)"/><text x="79.6591%" y="4350.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="79.4091%" y="4356" width="0.1801%" height="15" fill="rgb(248,209,0)"/><text x="79.6591%" y="4366.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/node_classes.py:3539) (10 samples, 0.18%)</title><rect x="79.4091%" y="4372" width="0.1801%" height="15" fill="rgb(217,205,4)"/><text x="79.6591%" y="4382.50"></text></g><g><title>_get_yield_nodes_skip_lambdas (astroid/mixins.py:145) (10 samples, 0.18%)</title><rect x="79.4091%" y="4388" width="0.1801%" height="15" fill="rgb(228,124,39)"/><text x="79.6591%" y="4398.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (6 samples, 0.11%)</title><rect x="79.6793%" y="4004" width="0.1081%" height="15" fill="rgb(250,116,42)"/><text x="79.9293%" y="4014.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="79.6793%" y="4020" width="0.1081%" height="15" fill="rgb(223,202,9)"/><text x="79.9293%" y="4030.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="79.6793%" y="4036" width="0.1081%" height="15" fill="rgb(242,222,40)"/><text x="79.9293%" y="4046.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (8 samples, 0.14%)</title><rect x="79.6793%" y="3988" width="0.1441%" height="15" fill="rgb(229,99,46)"/><text x="79.9293%" y="3998.50"></text></g><g><title>infer_call (astroid/inference.py:223) (14 samples, 0.25%)</title><rect x="79.5893%" y="3892" width="0.2522%" height="15" fill="rgb(225,56,46)"/><text x="79.8393%" y="3902.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="79.5893%" y="3908" width="0.2522%" height="15" fill="rgb(227,94,5)"/><text x="79.8393%" y="3918.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (14 samples, 0.25%)</title><rect x="79.5893%" y="3924" width="0.2522%" height="15" fill="rgb(205,112,38)"/><text x="79.8393%" y="3934.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="79.5893%" y="3940" width="0.2522%" height="15" fill="rgb(231,133,46)"/><text x="79.8393%" y="3950.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (12 samples, 0.22%)</title><rect x="79.6253%" y="3956" width="0.2162%" height="15" fill="rgb(217,16,9)"/><text x="79.8753%" y="3966.50"></text></g><g><title>igetattr (astroid/bases.py:233) (9 samples, 0.16%)</title><rect x="79.6793%" y="3972" width="0.1621%" height="15" fill="rgb(249,173,9)"/><text x="79.9293%" y="3982.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="79.9496%" y="4084" width="0.1081%" height="15" fill="rgb(205,163,53)"/><text x="80.1996%" y="4094.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="79.9315%" y="4036" width="0.1441%" height="15" fill="rgb(217,54,41)"/><text x="80.1815%" y="4046.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="79.9315%" y="4052" width="0.1441%" height="15" fill="rgb(228,216,12)"/><text x="80.1815%" y="4062.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="79.9315%" y="4068" width="0.1441%" height="15" fill="rgb(244,228,15)"/><text x="80.1815%" y="4078.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="80.3099%" y="4212" width="0.1441%" height="15" fill="rgb(221,176,53)"/><text x="80.5599%" y="4222.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="80.3099%" y="4228" width="0.1441%" height="15" fill="rgb(205,94,34)"/><text x="80.5599%" y="4238.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="80.3099%" y="4244" width="0.1441%" height="15" fill="rgb(213,110,48)"/><text x="80.5599%" y="4254.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="80.3099%" y="4260" width="0.1441%" height="15" fill="rgb(236,142,28)"/><text x="80.5599%" y="4270.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="80.3099%" y="4276" width="0.1441%" height="15" fill="rgb(225,135,29)"/><text x="80.5599%" y="4286.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="80.3099%" y="4292" width="0.1441%" height="15" fill="rgb(252,45,31)"/><text x="80.5599%" y="4302.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="80.3099%" y="4308" width="0.1441%" height="15" fill="rgb(211,187,50)"/><text x="80.5599%" y="4318.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="80.3099%" y="4324" width="0.1441%" height="15" fill="rgb(229,109,7)"/><text x="80.5599%" y="4334.50"></text></g><g><title>infer_import (astroid/inference.py:248) (8 samples, 0.14%)</title><rect x="80.3099%" y="4340" width="0.1441%" height="15" fill="rgb(251,131,51)"/><text x="80.5599%" y="4350.50"></text></g><g><title>real_name (astroid/mixins.py:106) (8 samples, 0.14%)</title><rect x="80.3099%" y="4356" width="0.1441%" height="15" fill="rgb(251,180,35)"/><text x="80.5599%" y="4366.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="80.3099%" y="4180" width="0.1621%" height="15" fill="rgb(211,46,32)"/><text x="80.5599%" y="4190.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="80.3099%" y="4196" width="0.1621%" height="15" fill="rgb(248,123,17)"/><text x="80.5599%" y="4206.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="80.3099%" y="4148" width="0.1801%" height="15" fill="rgb(227,141,18)"/><text x="80.5599%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="80.3099%" y="4164" width="0.1801%" height="15" fill="rgb(216,102,9)"/><text x="80.5599%" y="4174.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (17 samples, 0.31%)</title><rect x="80.2198%" y="4116" width="0.3063%" height="15" fill="rgb(253,47,13)"/><text x="80.4698%" y="4126.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="80.3099%" y="4132" width="0.2162%" height="15" fill="rgb(226,93,23)"/><text x="80.5599%" y="4142.50"></text></g><g><title>igetattr (astroid/bases.py:221) (22 samples, 0.40%)</title><rect x="80.1477%" y="4052" width="0.3963%" height="15" fill="rgb(247,104,17)"/><text x="80.3977%" y="4062.50"></text></g><g><title>getattr (astroid/bases.py:182) (22 samples, 0.40%)</title><rect x="80.1477%" y="4068" width="0.3963%" height="15" fill="rgb(233,203,26)"/><text x="80.3977%" y="4078.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (22 samples, 0.40%)</title><rect x="80.1477%" y="4084" width="0.3963%" height="15" fill="rgb(244,98,49)"/><text x="80.3977%" y="4094.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (22 samples, 0.40%)</title><rect x="80.1477%" y="4100" width="0.3963%" height="15" fill="rgb(235,134,22)"/><text x="80.3977%" y="4110.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="80.5440%" y="4132" width="0.1261%" height="15" fill="rgb(221,70,32)"/><text x="80.7940%" y="4142.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="80.5440%" y="4148" width="0.1261%" height="15" fill="rgb(238,15,50)"/><text x="80.7940%" y="4158.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="80.5440%" y="4164" width="0.1261%" height="15" fill="rgb(215,221,48)"/><text x="80.7940%" y="4174.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (7 samples, 0.13%)</title><rect x="80.8143%" y="4148" width="0.1261%" height="15" fill="rgb(236,73,3)"/><text x="81.0643%" y="4158.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="80.8143%" y="4164" width="0.1261%" height="15" fill="rgb(250,107,11)"/><text x="81.0643%" y="4174.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="80.8143%" y="4180" width="0.1261%" height="15" fill="rgb(242,39,14)"/><text x="81.0643%" y="4190.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="80.8143%" y="4196" width="0.1261%" height="15" fill="rgb(248,164,37)"/><text x="81.0643%" y="4206.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="80.8143%" y="4212" width="0.1261%" height="15" fill="rgb(217,60,12)"/><text x="81.0643%" y="4222.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (17 samples, 0.31%)</title><rect x="80.9404%" y="4164" width="0.3063%" height="15" fill="rgb(240,125,29)"/><text x="81.1904%" y="4174.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (15 samples, 0.27%)</title><rect x="80.9764%" y="4180" width="0.2702%" height="15" fill="rgb(208,207,28)"/><text x="81.2264%" y="4190.50"></text></g><g><title><genexpr> (astroid/scoped_nodes.py:2773) (15 samples, 0.27%)</title><rect x="80.9764%" y="4196" width="0.2702%" height="15" fill="rgb(209,159,27)"/><text x="81.2264%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:366) (15 samples, 0.27%)</title><rect x="80.9764%" y="4212" width="0.2702%" height="15" fill="rgb(251,176,53)"/><text x="81.2264%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="80.9764%" y="4228" width="0.2702%" height="15" fill="rgb(211,85,7)"/><text x="81.2264%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="80.9764%" y="4244" width="0.2702%" height="15" fill="rgb(216,64,54)"/><text x="81.2264%" y="4254.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (15 samples, 0.27%)</title><rect x="80.9764%" y="4260" width="0.2702%" height="15" fill="rgb(217,54,24)"/><text x="81.2264%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="80.9764%" y="4276" width="0.2702%" height="15" fill="rgb(208,206,53)"/><text x="81.2264%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="80.9764%" y="4292" width="0.2702%" height="15" fill="rgb(251,74,39)"/><text x="81.2264%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="81.0485%" y="4308" width="0.1982%" height="15" fill="rgb(226,47,5)"/><text x="81.2985%" y="4318.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (11 samples, 0.20%)</title><rect x="81.0485%" y="4324" width="0.1982%" height="15" fill="rgb(234,111,33)"/><text x="81.2985%" y="4334.50"></text></g><g><title>clone (astroid/context.py:106) (11 samples, 0.20%)</title><rect x="81.0485%" y="4340" width="0.1982%" height="15" fill="rgb(251,14,10)"/><text x="81.2985%" y="4350.50"></text></g><g><title>__init__ (astroid/context.py:76) (11 samples, 0.20%)</title><rect x="81.0485%" y="4356" width="0.1982%" height="15" fill="rgb(232,43,0)"/><text x="81.2985%" y="4366.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (44 samples, 0.79%)</title><rect x="80.5440%" y="4084" width="0.7926%" height="15" fill="rgb(222,68,43)"/><text x="80.7940%" y="4094.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (44 samples, 0.79%)</title><rect x="80.5440%" y="4100" width="0.7926%" height="15" fill="rgb(217,24,23)"/><text x="80.7940%" y="4110.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (44 samples, 0.79%)</title><rect x="80.5440%" y="4116" width="0.7926%" height="15" fill="rgb(229,209,14)"/><text x="80.7940%" y="4126.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (34 samples, 0.61%)</title><rect x="80.7242%" y="4132" width="0.6125%" height="15" fill="rgb(250,149,48)"/><text x="80.9742%" y="4142.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (22 samples, 0.40%)</title><rect x="80.9404%" y="4148" width="0.3963%" height="15" fill="rgb(210,120,37)"/><text x="81.1904%" y="4158.50"></text></g><g><title>igetattr (astroid/bases.py:233) (51 samples, 0.92%)</title><rect x="80.5440%" y="4052" width="0.9188%" height="15" fill="rgb(210,21,8)"/><text x="80.7940%" y="4062.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (51 samples, 0.92%)</title><rect x="80.5440%" y="4068" width="0.9188%" height="15" fill="rgb(243,145,7)"/><text x="80.7940%" y="4078.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="81.3367%" y="4084" width="0.1261%" height="15" fill="rgb(238,178,32)"/><text x="81.5867%" y="4094.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (7 samples, 0.13%)</title><rect x="81.3367%" y="4100" width="0.1261%" height="15" fill="rgb(222,4,10)"/><text x="81.5867%" y="4110.50"></text></g><g><title>infer_call (astroid/inference.py:223) (86 samples, 1.55%)</title><rect x="79.9315%" y="3972" width="1.5493%" height="15" fill="rgb(239,7,37)"/><text x="80.1815%" y="3982.50"></text></g><g><title>infer (astroid/node_classes.py:380) (86 samples, 1.55%)</title><rect x="79.9315%" y="3988" width="1.5493%" height="15" fill="rgb(215,31,37)"/><text x="80.1815%" y="3998.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (86 samples, 1.55%)</title><rect x="79.9315%" y="4004" width="1.5493%" height="15" fill="rgb(224,83,33)"/><text x="80.1815%" y="4014.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (86 samples, 1.55%)</title><rect x="79.9315%" y="4020" width="1.5493%" height="15" fill="rgb(239,55,3)"/><text x="80.1815%" y="4030.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (74 samples, 1.33%)</title><rect x="80.1477%" y="4036" width="1.3331%" height="15" fill="rgb(247,92,11)"/><text x="80.3977%" y="4046.50"></text></g><g><title>infer_call (astroid/inference.py:223) (7 samples, 0.13%)</title><rect x="81.5709%" y="4180" width="0.1261%" height="15" fill="rgb(239,200,7)"/><text x="81.8209%" y="4190.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="81.5709%" y="4196" width="0.1261%" height="15" fill="rgb(227,115,8)"/><text x="81.8209%" y="4206.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="81.5709%" y="4212" width="0.1261%" height="15" fill="rgb(215,189,27)"/><text x="81.8209%" y="4222.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="81.5709%" y="4228" width="0.1261%" height="15" fill="rgb(251,216,39)"/><text x="81.8209%" y="4238.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="81.8771%" y="4516" width="0.1261%" height="15" fill="rgb(207,29,47)"/><text x="82.1271%" y="4526.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="81.8771%" y="4532" width="0.1261%" height="15" fill="rgb(210,71,34)"/><text x="82.1271%" y="4542.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="81.8771%" y="4548" width="0.1261%" height="15" fill="rgb(253,217,51)"/><text x="82.1271%" y="4558.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="81.8771%" y="4564" width="0.1261%" height="15" fill="rgb(222,117,46)"/><text x="82.1271%" y="4574.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="81.8771%" y="4580" width="0.1261%" height="15" fill="rgb(226,132,6)"/><text x="82.1271%" y="4590.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="81.8771%" y="4596" width="0.1261%" height="15" fill="rgb(254,145,51)"/><text x="82.1271%" y="4606.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="81.8771%" y="4612" width="0.1261%" height="15" fill="rgb(231,199,27)"/><text x="82.1271%" y="4622.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="81.8771%" y="4628" width="0.1261%" height="15" fill="rgb(245,158,14)"/><text x="82.1271%" y="4638.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="81.8771%" y="4644" width="0.1261%" height="15" fill="rgb(240,113,14)"/><text x="82.1271%" y="4654.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="81.8771%" y="4660" width="0.1261%" height="15" fill="rgb(210,20,13)"/><text x="82.1271%" y="4670.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="81.8771%" y="4676" width="0.1261%" height="15" fill="rgb(241,144,13)"/><text x="82.1271%" y="4686.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="81.8771%" y="4692" width="0.1261%" height="15" fill="rgb(235,43,34)"/><text x="82.1271%" y="4702.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="81.8771%" y="4708" width="0.1261%" height="15" fill="rgb(208,36,20)"/><text x="82.1271%" y="4718.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="81.8771%" y="4724" width="0.1261%" height="15" fill="rgb(239,204,10)"/><text x="82.1271%" y="4734.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="81.8771%" y="4740" width="0.1261%" height="15" fill="rgb(217,84,43)"/><text x="82.1271%" y="4750.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="81.8771%" y="4756" width="0.1261%" height="15" fill="rgb(241,170,50)"/><text x="82.1271%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="81.8771%" y="4772" width="0.1261%" height="15" fill="rgb(226,205,29)"/><text x="82.1271%" y="4782.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (7 samples, 0.13%)</title><rect x="81.8771%" y="4788" width="0.1261%" height="15" fill="rgb(233,113,1)"/><text x="82.1271%" y="4798.50"></text></g><g><title>do_import_module (astroid/mixins.py:100) (7 samples, 0.13%)</title><rect x="81.8771%" y="4804" width="0.1261%" height="15" fill="rgb(253,98,13)"/><text x="82.1271%" y="4814.50"></text></g><g><title>import_module (astroid/scoped_nodes.py:680) (7 samples, 0.13%)</title><rect x="81.8771%" y="4820" width="0.1261%" height="15" fill="rgb(211,115,12)"/><text x="82.1271%" y="4830.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (8 samples, 0.14%)</title><rect x="81.8771%" y="4468" width="0.1441%" height="15" fill="rgb(208,12,16)"/><text x="82.1271%" y="4478.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (8 samples, 0.14%)</title><rect x="81.8771%" y="4484" width="0.1441%" height="15" fill="rgb(237,193,54)"/><text x="82.1271%" y="4494.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (8 samples, 0.14%)</title><rect x="81.8771%" y="4500" width="0.1441%" height="15" fill="rgb(243,22,42)"/><text x="82.1271%" y="4510.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (19 samples, 0.34%)</title><rect x="81.6970%" y="4260" width="0.3423%" height="15" fill="rgb(233,151,36)"/><text x="81.9470%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (19 samples, 0.34%)</title><rect x="81.6970%" y="4276" width="0.3423%" height="15" fill="rgb(237,57,45)"/><text x="81.9470%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (19 samples, 0.34%)</title><rect x="81.6970%" y="4292" width="0.3423%" height="15" fill="rgb(221,88,17)"/><text x="81.9470%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (19 samples, 0.34%)</title><rect x="81.6970%" y="4308" width="0.3423%" height="15" fill="rgb(230,79,15)"/><text x="81.9470%" y="4318.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (14 samples, 0.25%)</title><rect x="81.7871%" y="4324" width="0.2522%" height="15" fill="rgb(213,57,13)"/><text x="82.0371%" y="4334.50"></text></g><g><title>igetattr (astroid/bases.py:233) (14 samples, 0.25%)</title><rect x="81.7871%" y="4340" width="0.2522%" height="15" fill="rgb(222,116,39)"/><text x="82.0371%" y="4350.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (14 samples, 0.25%)</title><rect x="81.7871%" y="4356" width="0.2522%" height="15" fill="rgb(245,107,2)"/><text x="82.0371%" y="4366.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (12 samples, 0.22%)</title><rect x="81.8231%" y="4372" width="0.2162%" height="15" fill="rgb(238,1,10)"/><text x="82.0731%" y="4382.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (12 samples, 0.22%)</title><rect x="81.8231%" y="4388" width="0.2162%" height="15" fill="rgb(249,4,48)"/><text x="82.0731%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="81.8231%" y="4404" width="0.2162%" height="15" fill="rgb(223,151,18)"/><text x="82.0731%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="81.8231%" y="4420" width="0.2162%" height="15" fill="rgb(227,65,43)"/><text x="82.0731%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="81.8231%" y="4436" width="0.2162%" height="15" fill="rgb(218,40,45)"/><text x="82.0731%" y="4446.50"></text></g><g><title>infer_call (astroid/inference.py:229) (12 samples, 0.22%)</title><rect x="81.8231%" y="4452" width="0.2162%" height="15" fill="rgb(252,121,31)"/><text x="82.0731%" y="4462.50"></text></g><g><title>infer_call (astroid/inference.py:223) (33 samples, 0.59%)</title><rect x="81.5529%" y="4052" width="0.5945%" height="15" fill="rgb(219,158,43)"/><text x="81.8029%" y="4062.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="81.5529%" y="4068" width="0.5945%" height="15" fill="rgb(231,162,42)"/><text x="81.8029%" y="4078.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="81.5529%" y="4084" width="0.5945%" height="15" fill="rgb(217,179,25)"/><text x="81.8029%" y="4094.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="81.5529%" y="4100" width="0.5945%" height="15" fill="rgb(206,212,31)"/><text x="81.8029%" y="4110.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (32 samples, 0.58%)</title><rect x="81.5709%" y="4116" width="0.5765%" height="15" fill="rgb(235,144,12)"/><text x="81.8209%" y="4126.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="81.5709%" y="4132" width="0.5765%" height="15" fill="rgb(213,51,10)"/><text x="81.8209%" y="4142.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="81.5709%" y="4148" width="0.5765%" height="15" fill="rgb(231,145,14)"/><text x="81.8209%" y="4158.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="81.5709%" y="4164" width="0.5765%" height="15" fill="rgb(235,15,28)"/><text x="81.8209%" y="4174.50"></text></g><g><title>infer_call (astroid/inference.py:229) (25 samples, 0.45%)</title><rect x="81.6970%" y="4180" width="0.4504%" height="15" fill="rgb(237,206,10)"/><text x="81.9470%" y="4190.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (25 samples, 0.45%)</title><rect x="81.6970%" y="4196" width="0.4504%" height="15" fill="rgb(236,227,27)"/><text x="81.9470%" y="4206.50"></text></g><g><title>infer (astroid/node_classes.py:380) (25 samples, 0.45%)</title><rect x="81.6970%" y="4212" width="0.4504%" height="15" fill="rgb(246,83,35)"/><text x="81.9470%" y="4222.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (25 samples, 0.45%)</title><rect x="81.6970%" y="4228" width="0.4504%" height="15" fill="rgb(220,136,24)"/><text x="81.9470%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (25 samples, 0.45%)</title><rect x="81.6970%" y="4244" width="0.4504%" height="15" fill="rgb(217,3,25)"/><text x="81.9470%" y="4254.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="82.0393%" y="4260" width="0.1081%" height="15" fill="rgb(239,24,14)"/><text x="82.2893%" y="4270.50"></text></g><g><title>igetattr (astroid/bases.py:233) (6 samples, 0.11%)</title><rect x="82.0393%" y="4276" width="0.1081%" height="15" fill="rgb(244,16,53)"/><text x="82.2893%" y="4286.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (6 samples, 0.11%)</title><rect x="82.0393%" y="4292" width="0.1081%" height="15" fill="rgb(208,175,44)"/><text x="82.2893%" y="4302.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (47 samples, 0.85%)</title><rect x="81.5168%" y="3988" width="0.8467%" height="15" fill="rgb(252,18,48)"/><text x="81.7668%" y="3998.50"></text></g><g><title>infer (astroid/node_classes.py:380) (47 samples, 0.85%)</title><rect x="81.5168%" y="4004" width="0.8467%" height="15" fill="rgb(234,199,32)"/><text x="81.7668%" y="4014.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (47 samples, 0.85%)</title><rect x="81.5168%" y="4020" width="0.8467%" height="15" fill="rgb(225,77,54)"/><text x="81.7668%" y="4030.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (47 samples, 0.85%)</title><rect x="81.5168%" y="4036" width="0.8467%" height="15" fill="rgb(225,42,25)"/><text x="81.7668%" y="4046.50"></text></g><g><title>infer_call (astroid/inference.py:229) (12 samples, 0.22%)</title><rect x="82.1474%" y="4052" width="0.2162%" height="15" fill="rgb(242,227,46)"/><text x="82.3974%" y="4062.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (6 samples, 0.11%)</title><rect x="82.2554%" y="4068" width="0.1081%" height="15" fill="rgb(246,197,35)"/><text x="82.5054%" y="4078.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (6 samples, 0.11%)</title><rect x="82.2554%" y="4084" width="0.1081%" height="15" fill="rgb(215,159,26)"/><text x="82.5054%" y="4094.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (6 samples, 0.11%)</title><rect x="82.2554%" y="4100" width="0.1081%" height="15" fill="rgb(212,194,50)"/><text x="82.5054%" y="4110.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (149 samples, 2.68%)</title><rect x="79.9315%" y="3940" width="2.6842%" height="15" fill="rgb(246,132,1)"/><text x="80.1815%" y="3950.50">ra..</text></g><g><title>wrapped (astroid/decorators.py:99) (149 samples, 2.68%)</title><rect x="79.9315%" y="3956" width="2.6842%" height="15" fill="rgb(217,71,7)"/><text x="80.1815%" y="3966.50">wr..</text></g><g><title>infer_call (astroid/inference.py:229) (63 samples, 1.13%)</title><rect x="81.4808%" y="3972" width="1.1349%" height="15" fill="rgb(252,59,32)"/><text x="81.7308%" y="3982.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (8 samples, 0.14%)</title><rect x="82.4716%" y="3988" width="0.1441%" height="15" fill="rgb(253,204,25)"/><text x="82.7216%" y="3998.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (8 samples, 0.14%)</title><rect x="82.4716%" y="4004" width="0.1441%" height="15" fill="rgb(232,21,16)"/><text x="82.7216%" y="4014.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (8 samples, 0.14%)</title><rect x="82.4716%" y="4020" width="0.1441%" height="15" fill="rgb(248,90,29)"/><text x="82.7216%" y="4030.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2315) (11 samples, 0.20%)</title><rect x="82.7418%" y="5060" width="0.1982%" height="15" fill="rgb(249,223,7)"/><text x="82.9918%" y="5070.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (15 samples, 0.27%)</title><rect x="82.6878%" y="4804" width="0.2702%" height="15" fill="rgb(231,119,42)"/><text x="82.9378%" y="4814.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (15 samples, 0.27%)</title><rect x="82.6878%" y="4820" width="0.2702%" height="15" fill="rgb(215,41,35)"/><text x="82.9378%" y="4830.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (15 samples, 0.27%)</title><rect x="82.6878%" y="4836" width="0.2702%" height="15" fill="rgb(220,44,45)"/><text x="82.9378%" y="4846.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="82.6878%" y="4852" width="0.2702%" height="15" fill="rgb(253,197,36)"/><text x="82.9378%" y="4862.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="82.6878%" y="4868" width="0.2702%" height="15" fill="rgb(245,225,54)"/><text x="82.9378%" y="4878.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="82.6878%" y="4884" width="0.2702%" height="15" fill="rgb(239,94,37)"/><text x="82.9378%" y="4894.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (15 samples, 0.27%)</title><rect x="82.6878%" y="4900" width="0.2702%" height="15" fill="rgb(242,217,10)"/><text x="82.9378%" y="4910.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="82.6878%" y="4916" width="0.2702%" height="15" fill="rgb(250,193,7)"/><text x="82.9378%" y="4926.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="82.6878%" y="4932" width="0.2702%" height="15" fill="rgb(230,104,19)"/><text x="82.9378%" y="4942.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="82.6878%" y="4948" width="0.2702%" height="15" fill="rgb(230,181,4)"/><text x="82.9378%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (12 samples, 0.22%)</title><rect x="82.7418%" y="4964" width="0.2162%" height="15" fill="rgb(216,219,49)"/><text x="82.9918%" y="4974.50"></text></g><g><title>igetattr (astroid/bases.py:221) (12 samples, 0.22%)</title><rect x="82.7418%" y="4980" width="0.2162%" height="15" fill="rgb(254,144,0)"/><text x="82.9918%" y="4990.50"></text></g><g><title>getattr (astroid/bases.py:182) (12 samples, 0.22%)</title><rect x="82.7418%" y="4996" width="0.2162%" height="15" fill="rgb(205,209,38)"/><text x="82.9918%" y="5006.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (12 samples, 0.22%)</title><rect x="82.7418%" y="5012" width="0.2162%" height="15" fill="rgb(240,21,42)"/><text x="82.9918%" y="5022.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (12 samples, 0.22%)</title><rect x="82.7418%" y="5028" width="0.2162%" height="15" fill="rgb(241,132,3)"/><text x="82.9918%" y="5038.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="82.7418%" y="5044" width="0.2162%" height="15" fill="rgb(225,14,2)"/><text x="82.9918%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4228" width="0.2882%" height="15" fill="rgb(210,141,35)"/><text x="82.9378%" y="4238.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4244" width="0.2882%" height="15" fill="rgb(251,14,44)"/><text x="82.9378%" y="4254.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="82.6878%" y="4260" width="0.2882%" height="15" fill="rgb(247,48,18)"/><text x="82.9378%" y="4270.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4276" width="0.2882%" height="15" fill="rgb(225,0,40)"/><text x="82.9378%" y="4286.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4292" width="0.2882%" height="15" fill="rgb(221,31,33)"/><text x="82.9378%" y="4302.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4308" width="0.2882%" height="15" fill="rgb(237,42,40)"/><text x="82.9378%" y="4318.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="82.6878%" y="4324" width="0.2882%" height="15" fill="rgb(233,51,29)"/><text x="82.9378%" y="4334.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4340" width="0.2882%" height="15" fill="rgb(226,58,20)"/><text x="82.9378%" y="4350.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4356" width="0.2882%" height="15" fill="rgb(208,98,7)"/><text x="82.9378%" y="4366.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4372" width="0.2882%" height="15" fill="rgb(228,143,44)"/><text x="82.9378%" y="4382.50"></text></g><g><title>infer_call (astroid/inference.py:223) (16 samples, 0.29%)</title><rect x="82.6878%" y="4388" width="0.2882%" height="15" fill="rgb(246,55,38)"/><text x="82.9378%" y="4398.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4404" width="0.2882%" height="15" fill="rgb(247,87,16)"/><text x="82.9378%" y="4414.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4420" width="0.2882%" height="15" fill="rgb(234,129,42)"/><text x="82.9378%" y="4430.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4436" width="0.2882%" height="15" fill="rgb(220,82,16)"/><text x="82.9378%" y="4446.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (16 samples, 0.29%)</title><rect x="82.6878%" y="4452" width="0.2882%" height="15" fill="rgb(211,88,4)"/><text x="82.9378%" y="4462.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4468" width="0.2882%" height="15" fill="rgb(248,151,21)"/><text x="82.9378%" y="4478.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4484" width="0.2882%" height="15" fill="rgb(238,163,6)"/><text x="82.9378%" y="4494.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4500" width="0.2882%" height="15" fill="rgb(209,183,11)"/><text x="82.9378%" y="4510.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="82.6878%" y="4516" width="0.2882%" height="15" fill="rgb(219,37,20)"/><text x="82.9378%" y="4526.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4532" width="0.2882%" height="15" fill="rgb(210,158,4)"/><text x="82.9378%" y="4542.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4548" width="0.2882%" height="15" fill="rgb(221,167,53)"/><text x="82.9378%" y="4558.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4564" width="0.2882%" height="15" fill="rgb(237,151,45)"/><text x="82.9378%" y="4574.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (16 samples, 0.29%)</title><rect x="82.6878%" y="4580" width="0.2882%" height="15" fill="rgb(231,39,3)"/><text x="82.9378%" y="4590.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4596" width="0.2882%" height="15" fill="rgb(212,167,28)"/><text x="82.9378%" y="4606.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4612" width="0.2882%" height="15" fill="rgb(232,178,8)"/><text x="82.9378%" y="4622.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4628" width="0.2882%" height="15" fill="rgb(225,151,20)"/><text x="82.9378%" y="4638.50"></text></g><g><title>infer_call (astroid/inference.py:223) (16 samples, 0.29%)</title><rect x="82.6878%" y="4644" width="0.2882%" height="15" fill="rgb(238,3,37)"/><text x="82.9378%" y="4654.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4660" width="0.2882%" height="15" fill="rgb(251,147,42)"/><text x="82.9378%" y="4670.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4676" width="0.2882%" height="15" fill="rgb(208,173,10)"/><text x="82.9378%" y="4686.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4692" width="0.2882%" height="15" fill="rgb(246,225,4)"/><text x="82.9378%" y="4702.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (16 samples, 0.29%)</title><rect x="82.6878%" y="4708" width="0.2882%" height="15" fill="rgb(248,102,6)"/><text x="82.9378%" y="4718.50"></text></g><g><title>infer (astroid/node_classes.py:380) (16 samples, 0.29%)</title><rect x="82.6878%" y="4724" width="0.2882%" height="15" fill="rgb(232,6,21)"/><text x="82.9378%" y="4734.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (16 samples, 0.29%)</title><rect x="82.6878%" y="4740" width="0.2882%" height="15" fill="rgb(221,179,22)"/><text x="82.9378%" y="4750.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="82.6878%" y="4756" width="0.2882%" height="15" fill="rgb(252,50,20)"/><text x="82.9378%" y="4766.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (16 samples, 0.29%)</title><rect x="82.6878%" y="4772" width="0.2882%" height="15" fill="rgb(222,56,38)"/><text x="82.9378%" y="4782.50"></text></g><g><title>igetattr (astroid/bases.py:233) (16 samples, 0.29%)</title><rect x="82.6878%" y="4788" width="0.2882%" height="15" fill="rgb(206,193,29)"/><text x="82.9378%" y="4798.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="83.0841%" y="5284" width="0.1261%" height="15" fill="rgb(239,192,45)"/><text x="83.3341%" y="5294.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="83.0841%" y="5300" width="0.1261%" height="15" fill="rgb(254,18,36)"/><text x="83.3341%" y="5310.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="83.0841%" y="5316" width="0.1261%" height="15" fill="rgb(221,127,11)"/><text x="83.3341%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="83.0841%" y="5332" width="0.1261%" height="15" fill="rgb(234,146,35)"/><text x="83.3341%" y="5342.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="83.0841%" y="5348" width="0.1261%" height="15" fill="rgb(254,201,37)"/><text x="83.3341%" y="5358.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (12 samples, 0.22%)</title><rect x="83.2823%" y="5300" width="0.2162%" height="15" fill="rgb(211,202,23)"/><text x="83.5323%" y="5310.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="83.2823%" y="5316" width="0.2162%" height="15" fill="rgb(237,91,2)"/><text x="83.5323%" y="5326.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="83.2823%" y="5332" width="0.2162%" height="15" fill="rgb(226,228,36)"/><text x="83.5323%" y="5342.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="83.2823%" y="5348" width="0.2162%" height="15" fill="rgb(213,63,50)"/><text x="83.5323%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="83.2823%" y="5364" width="0.2162%" height="15" fill="rgb(235,194,19)"/><text x="83.5323%" y="5374.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="83.2823%" y="5380" width="0.2162%" height="15" fill="rgb(207,204,18)"/><text x="83.5323%" y="5390.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="83.3544%" y="5396" width="0.1441%" height="15" fill="rgb(248,8,7)"/><text x="83.6044%" y="5406.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (8 samples, 0.14%)</title><rect x="83.3544%" y="5412" width="0.1441%" height="15" fill="rgb(223,145,47)"/><text x="83.6044%" y="5422.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (8 samples, 0.14%)</title><rect x="83.3544%" y="5428" width="0.1441%" height="15" fill="rgb(228,84,11)"/><text x="83.6044%" y="5438.50"></text></g><g><title>__repr__ (astroid/node_classes.py:432) (8 samples, 0.14%)</title><rect x="83.3544%" y="5444" width="0.1441%" height="15" fill="rgb(218,76,45)"/><text x="83.6044%" y="5454.50"></text></g><g><title>_repr_name (astroid/node_classes.py:401) (8 samples, 0.14%)</title><rect x="83.3544%" y="5460" width="0.1441%" height="15" fill="rgb(223,80,15)"/><text x="83.6044%" y="5470.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (26 samples, 0.47%)</title><rect x="83.0841%" y="5252" width="0.4684%" height="15" fill="rgb(219,218,33)"/><text x="83.3341%" y="5262.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (26 samples, 0.47%)</title><rect x="83.0841%" y="5268" width="0.4684%" height="15" fill="rgb(208,51,11)"/><text x="83.3341%" y="5278.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (19 samples, 0.34%)</title><rect x="83.2102%" y="5284" width="0.3423%" height="15" fill="rgb(229,165,39)"/><text x="83.4602%" y="5294.50"></text></g><g><title>infer_call (astroid/inference.py:223) (31 samples, 0.56%)</title><rect x="83.0661%" y="5172" width="0.5585%" height="15" fill="rgb(241,100,24)"/><text x="83.3161%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (31 samples, 0.56%)</title><rect x="83.0661%" y="5188" width="0.5585%" height="15" fill="rgb(228,14,23)"/><text x="83.3161%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (31 samples, 0.56%)</title><rect x="83.0661%" y="5204" width="0.5585%" height="15" fill="rgb(247,116,52)"/><text x="83.3161%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (30 samples, 0.54%)</title><rect x="83.0841%" y="5220" width="0.5404%" height="15" fill="rgb(216,149,33)"/><text x="83.3341%" y="5230.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (30 samples, 0.54%)</title><rect x="83.0841%" y="5236" width="0.5404%" height="15" fill="rgb(238,142,29)"/><text x="83.3341%" y="5246.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (8 samples, 0.14%)</title><rect x="83.7327%" y="5444" width="0.1441%" height="15" fill="rgb(224,83,40)"/><text x="83.9827%" y="5454.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="83.7327%" y="5460" width="0.1441%" height="15" fill="rgb(234,165,11)"/><text x="83.9827%" y="5470.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="83.7327%" y="5476" width="0.1441%" height="15" fill="rgb(215,96,23)"/><text x="83.9827%" y="5486.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="83.7327%" y="5492" width="0.1441%" height="15" fill="rgb(233,179,26)"/><text x="83.9827%" y="5502.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="83.7327%" y="5508" width="0.1441%" height="15" fill="rgb(225,129,33)"/><text x="83.9827%" y="5518.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="83.7327%" y="5524" width="0.1441%" height="15" fill="rgb(237,49,13)"/><text x="83.9827%" y="5534.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="83.7327%" y="5540" width="0.1441%" height="15" fill="rgb(211,3,31)"/><text x="83.9827%" y="5550.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="83.7327%" y="5556" width="0.1441%" height="15" fill="rgb(216,152,19)"/><text x="83.9827%" y="5566.50"></text></g><g><title>infer_import_from (astroid/inference.py:277) (7 samples, 0.13%)</title><rect x="83.7507%" y="5572" width="0.1261%" height="15" fill="rgb(251,121,35)"/><text x="84.0007%" y="5582.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (9 samples, 0.16%)</title><rect x="83.7327%" y="5396" width="0.1621%" height="15" fill="rgb(210,217,47)"/><text x="83.9827%" y="5406.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (9 samples, 0.16%)</title><rect x="83.7327%" y="5412" width="0.1621%" height="15" fill="rgb(244,116,22)"/><text x="83.9827%" y="5422.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (9 samples, 0.16%)</title><rect x="83.7327%" y="5428" width="0.1621%" height="15" fill="rgb(228,17,21)"/><text x="83.9827%" y="5438.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (7 samples, 0.13%)</title><rect x="83.9308%" y="5396" width="0.1261%" height="15" fill="rgb(240,149,34)"/><text x="84.1808%" y="5406.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (20 samples, 0.36%)</title><rect x="83.7146%" y="5188" width="0.3603%" height="15" fill="rgb(208,125,47)"/><text x="83.9646%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="83.7146%" y="5204" width="0.3603%" height="15" fill="rgb(249,186,39)"/><text x="83.9646%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="83.7146%" y="5220" width="0.3603%" height="15" fill="rgb(240,220,33)"/><text x="83.9646%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="83.7146%" y="5236" width="0.3603%" height="15" fill="rgb(243,110,23)"/><text x="83.9646%" y="5246.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (20 samples, 0.36%)</title><rect x="83.7146%" y="5252" width="0.3603%" height="15" fill="rgb(219,163,46)"/><text x="83.9646%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="83.7146%" y="5268" width="0.3603%" height="15" fill="rgb(216,126,30)"/><text x="83.9646%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="83.7146%" y="5284" width="0.3603%" height="15" fill="rgb(208,139,11)"/><text x="83.9646%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="83.7146%" y="5300" width="0.3603%" height="15" fill="rgb(213,118,36)"/><text x="83.9646%" y="5310.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (20 samples, 0.36%)</title><rect x="83.7146%" y="5316" width="0.3603%" height="15" fill="rgb(226,43,17)"/><text x="83.9646%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (20 samples, 0.36%)</title><rect x="83.7146%" y="5332" width="0.3603%" height="15" fill="rgb(254,217,4)"/><text x="83.9646%" y="5342.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (20 samples, 0.36%)</title><rect x="83.7146%" y="5348" width="0.3603%" height="15" fill="rgb(210,134,47)"/><text x="83.9646%" y="5358.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (20 samples, 0.36%)</title><rect x="83.7146%" y="5364" width="0.3603%" height="15" fill="rgb(237,24,49)"/><text x="83.9646%" y="5374.50"></text></g><g><title>infer_call (astroid/inference.py:229) (19 samples, 0.34%)</title><rect x="83.7327%" y="5380" width="0.3423%" height="15" fill="rgb(251,39,46)"/><text x="83.9827%" y="5390.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="84.1110%" y="5220" width="0.1621%" height="15" fill="rgb(251,220,3)"/><text x="84.3610%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="84.1110%" y="5236" width="0.1621%" height="15" fill="rgb(228,105,12)"/><text x="84.3610%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="84.1110%" y="5252" width="0.1621%" height="15" fill="rgb(215,196,1)"/><text x="84.3610%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="84.1110%" y="5268" width="0.1621%" height="15" fill="rgb(214,33,39)"/><text x="84.3610%" y="5278.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (9 samples, 0.16%)</title><rect x="84.1110%" y="5284" width="0.1621%" height="15" fill="rgb(220,19,52)"/><text x="84.3610%" y="5294.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="84.2731%" y="5236" width="0.2162%" height="15" fill="rgb(221,78,38)"/><text x="84.5231%" y="5246.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="84.2731%" y="5252" width="0.2162%" height="15" fill="rgb(253,30,16)"/><text x="84.5231%" y="5262.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (10 samples, 0.18%)</title><rect x="84.3091%" y="5268" width="0.1801%" height="15" fill="rgb(242,65,0)"/><text x="84.5591%" y="5278.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="84.3091%" y="5284" width="0.1801%" height="15" fill="rgb(235,201,12)"/><text x="84.5591%" y="5294.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="84.3091%" y="5300" width="0.1801%" height="15" fill="rgb(233,161,9)"/><text x="84.5591%" y="5310.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="84.3091%" y="5316" width="0.1801%" height="15" fill="rgb(241,207,41)"/><text x="84.5591%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (10 samples, 0.18%)</title><rect x="84.3091%" y="5332" width="0.1801%" height="15" fill="rgb(212,69,46)"/><text x="84.5591%" y="5342.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="84.3271%" y="5348" width="0.1621%" height="15" fill="rgb(239,69,45)"/><text x="84.5771%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="84.4893%" y="5348" width="0.1621%" height="15" fill="rgb(242,117,48)"/><text x="84.7393%" y="5358.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="84.4893%" y="5364" width="0.1621%" height="15" fill="rgb(228,41,36)"/><text x="84.7393%" y="5374.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="84.5073%" y="5380" width="0.1441%" height="15" fill="rgb(212,3,32)"/><text x="84.7573%" y="5390.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (8 samples, 0.14%)</title><rect x="84.5073%" y="5396" width="0.1441%" height="15" fill="rgb(233,41,49)"/><text x="84.7573%" y="5406.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="84.4893%" y="5252" width="0.1801%" height="15" fill="rgb(252,170,49)"/><text x="84.7393%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="84.4893%" y="5268" width="0.1801%" height="15" fill="rgb(229,53,26)"/><text x="84.7393%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="84.4893%" y="5284" width="0.1801%" height="15" fill="rgb(217,157,12)"/><text x="84.7393%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="84.4893%" y="5300" width="0.1801%" height="15" fill="rgb(227,17,9)"/><text x="84.7393%" y="5310.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (10 samples, 0.18%)</title><rect x="84.4893%" y="5316" width="0.1801%" height="15" fill="rgb(218,84,12)"/><text x="84.7393%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="84.4893%" y="5332" width="0.1801%" height="15" fill="rgb(212,79,24)"/><text x="84.7393%" y="5342.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (13 samples, 0.23%)</title><rect x="84.7055%" y="5524" width="0.2342%" height="15" fill="rgb(217,222,37)"/><text x="84.9555%" y="5534.50"></text></g><g><title>copy_context (astroid/context.py:148) (13 samples, 0.23%)</title><rect x="84.7055%" y="5540" width="0.2342%" height="15" fill="rgb(246,208,8)"/><text x="84.9555%" y="5550.50"></text></g><g><title>clone (astroid/context.py:106) (13 samples, 0.23%)</title><rect x="84.7055%" y="5556" width="0.2342%" height="15" fill="rgb(244,133,10)"/><text x="84.9555%" y="5566.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (15 samples, 0.27%)</title><rect x="84.6874%" y="5396" width="0.2702%" height="15" fill="rgb(209,219,41)"/><text x="84.9374%" y="5406.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="84.6874%" y="5412" width="0.2702%" height="15" fill="rgb(253,175,45)"/><text x="84.9374%" y="5422.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="84.6874%" y="5428" width="0.2702%" height="15" fill="rgb(235,100,37)"/><text x="84.9374%" y="5438.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="84.6874%" y="5444" width="0.2702%" height="15" fill="rgb(225,87,19)"/><text x="84.9374%" y="5454.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (14 samples, 0.25%)</title><rect x="84.7055%" y="5460" width="0.2522%" height="15" fill="rgb(217,152,17)"/><text x="84.9555%" y="5470.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="84.7055%" y="5476" width="0.2522%" height="15" fill="rgb(235,72,13)"/><text x="84.9555%" y="5486.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="84.7055%" y="5492" width="0.2522%" height="15" fill="rgb(233,140,18)"/><text x="84.9555%" y="5502.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (14 samples, 0.25%)</title><rect x="84.7055%" y="5508" width="0.2522%" height="15" fill="rgb(207,212,28)"/><text x="84.9555%" y="5518.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (57 samples, 1.03%)</title><rect x="84.0749%" y="5188" width="1.0268%" height="15" fill="rgb(220,130,25)"/><text x="84.3249%" y="5198.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (57 samples, 1.03%)</title><rect x="84.0749%" y="5204" width="1.0268%" height="15" fill="rgb(205,55,34)"/><text x="84.3249%" y="5214.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (46 samples, 0.83%)</title><rect x="84.2731%" y="5220" width="0.8287%" height="15" fill="rgb(237,54,35)"/><text x="84.5231%" y="5230.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (34 samples, 0.61%)</title><rect x="84.4893%" y="5236" width="0.6125%" height="15" fill="rgb(208,67,23)"/><text x="84.7393%" y="5246.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (24 samples, 0.43%)</title><rect x="84.6694%" y="5252" width="0.4324%" height="15" fill="rgb(206,207,50)"/><text x="84.9194%" y="5262.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (23 samples, 0.41%)</title><rect x="84.6874%" y="5268" width="0.4143%" height="15" fill="rgb(213,211,42)"/><text x="84.9374%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="84.6874%" y="5284" width="0.4143%" height="15" fill="rgb(252,197,50)"/><text x="84.9374%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="84.6874%" y="5300" width="0.4143%" height="15" fill="rgb(251,211,41)"/><text x="84.9374%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="84.6874%" y="5316" width="0.4143%" height="15" fill="rgb(229,211,5)"/><text x="84.9374%" y="5326.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (23 samples, 0.41%)</title><rect x="84.6874%" y="5332" width="0.4143%" height="15" fill="rgb(239,36,31)"/><text x="84.9374%" y="5342.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="84.6874%" y="5348" width="0.4143%" height="15" fill="rgb(248,67,31)"/><text x="84.9374%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="84.6874%" y="5364" width="0.4143%" height="15" fill="rgb(249,55,44)"/><text x="84.9374%" y="5374.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="84.6874%" y="5380" width="0.4143%" height="15" fill="rgb(216,82,12)"/><text x="84.9374%" y="5390.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="84.9577%" y="5396" width="0.1441%" height="15" fill="rgb(242,174,1)"/><text x="85.2077%" y="5406.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="84.9577%" y="5412" width="0.1441%" height="15" fill="rgb(208,120,29)"/><text x="85.2077%" y="5422.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="84.9577%" y="5428" width="0.1441%" height="15" fill="rgb(221,105,43)"/><text x="85.2077%" y="5438.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="84.9577%" y="5444" width="0.1441%" height="15" fill="rgb(234,124,22)"/><text x="85.2077%" y="5454.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (8 samples, 0.14%)</title><rect x="84.9577%" y="5460" width="0.1441%" height="15" fill="rgb(212,23,30)"/><text x="85.2077%" y="5470.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (7 samples, 0.13%)</title><rect x="84.9757%" y="5476" width="0.1261%" height="15" fill="rgb(219,122,53)"/><text x="85.2257%" y="5486.50"></text></g><g><title>copy_context (astroid/context.py:148) (7 samples, 0.13%)</title><rect x="84.9757%" y="5492" width="0.1261%" height="15" fill="rgb(248,84,24)"/><text x="85.2257%" y="5502.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="84.9757%" y="5508" width="0.1261%" height="15" fill="rgb(245,115,18)"/><text x="85.2257%" y="5518.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="85.1018%" y="5236" width="0.1261%" height="15" fill="rgb(227,176,51)"/><text x="85.3518%" y="5246.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (7 samples, 0.13%)</title><rect x="85.1018%" y="5252" width="0.1261%" height="15" fill="rgb(229,63,42)"/><text x="85.3518%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:366) (7 samples, 0.13%)</title><rect x="85.1018%" y="5268" width="0.1261%" height="15" fill="rgb(247,202,24)"/><text x="85.3518%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="85.1018%" y="5284" width="0.1261%" height="15" fill="rgb(244,173,20)"/><text x="85.3518%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="85.1018%" y="5300" width="0.1261%" height="15" fill="rgb(242,81,47)"/><text x="85.3518%" y="5310.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="85.1018%" y="5316" width="0.1261%" height="15" fill="rgb(231,185,54)"/><text x="85.3518%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="85.1018%" y="5332" width="0.1261%" height="15" fill="rgb(243,55,32)"/><text x="85.3518%" y="5342.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="85.1018%" y="5348" width="0.1261%" height="15" fill="rgb(208,167,19)"/><text x="85.3518%" y="5358.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="85.1018%" y="5364" width="0.1261%" height="15" fill="rgb(231,72,35)"/><text x="85.3518%" y="5374.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (7 samples, 0.13%)</title><rect x="85.1018%" y="5380" width="0.1261%" height="15" fill="rgb(250,173,51)"/><text x="85.3518%" y="5390.50"></text></g><g><title>do_import_module (astroid/mixins.py:100) (7 samples, 0.13%)</title><rect x="85.1018%" y="5396" width="0.1261%" height="15" fill="rgb(209,5,22)"/><text x="85.3518%" y="5406.50"></text></g><g><title>import_module (astroid/scoped_nodes.py:685) (7 samples, 0.13%)</title><rect x="85.1018%" y="5412" width="0.1261%" height="15" fill="rgb(250,174,19)"/><text x="85.3518%" y="5422.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (6 samples, 0.11%)</title><rect x="85.2459%" y="5252" width="0.1081%" height="15" fill="rgb(217,3,49)"/><text x="85.4959%" y="5262.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (6 samples, 0.11%)</title><rect x="85.2459%" y="5268" width="0.1081%" height="15" fill="rgb(218,225,5)"/><text x="85.4959%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="85.2459%" y="5284" width="0.1081%" height="15" fill="rgb(236,89,11)"/><text x="85.4959%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="85.2459%" y="5300" width="0.1081%" height="15" fill="rgb(206,33,28)"/><text x="85.4959%" y="5310.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="85.3540%" y="5268" width="0.1801%" height="15" fill="rgb(241,56,42)"/><text x="85.6040%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="85.3540%" y="5284" width="0.1801%" height="15" fill="rgb(222,44,11)"/><text x="85.6040%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="85.3540%" y="5300" width="0.1801%" height="15" fill="rgb(234,111,20)"/><text x="85.6040%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="85.3540%" y="5316" width="0.1801%" height="15" fill="rgb(237,77,6)"/><text x="85.6040%" y="5326.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (14 samples, 0.25%)</title><rect x="85.3540%" y="5252" width="0.2522%" height="15" fill="rgb(235,111,23)"/><text x="85.6040%" y="5262.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (7 samples, 0.13%)</title><rect x="85.6062%" y="5268" width="0.1261%" height="15" fill="rgb(251,135,29)"/><text x="85.8562%" y="5278.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (6 samples, 0.11%)</title><rect x="85.6242%" y="5284" width="0.1081%" height="15" fill="rgb(217,57,1)"/><text x="85.8742%" y="5294.50"></text></g><g><title><genexpr> (astroid/scoped_nodes.py:2773) (6 samples, 0.11%)</title><rect x="85.6242%" y="5300" width="0.1081%" height="15" fill="rgb(249,119,31)"/><text x="85.8742%" y="5310.50"></text></g><g><title>infer (astroid/node_classes.py:366) (6 samples, 0.11%)</title><rect x="85.6242%" y="5316" width="0.1081%" height="15" fill="rgb(233,164,33)"/><text x="85.8742%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="85.6242%" y="5332" width="0.1081%" height="15" fill="rgb(250,217,43)"/><text x="85.8742%" y="5342.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="85.6242%" y="5348" width="0.1081%" height="15" fill="rgb(232,154,50)"/><text x="85.8742%" y="5358.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="85.6242%" y="5364" width="0.1081%" height="15" fill="rgb(227,190,8)"/><text x="85.8742%" y="5374.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="85.6242%" y="5380" width="0.1081%" height="15" fill="rgb(209,217,32)"/><text x="85.8742%" y="5390.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="85.6242%" y="5396" width="0.1081%" height="15" fill="rgb(243,203,50)"/><text x="85.8742%" y="5406.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="85.6242%" y="5412" width="0.1081%" height="15" fill="rgb(232,152,27)"/><text x="85.8742%" y="5422.50"></text></g><g><title>infer_import_from (astroid/inference.py:269) (6 samples, 0.11%)</title><rect x="85.6242%" y="5428" width="0.1081%" height="15" fill="rgb(240,34,29)"/><text x="85.8742%" y="5438.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (42 samples, 0.76%)</title><rect x="85.1018%" y="5188" width="0.7566%" height="15" fill="rgb(215,185,52)"/><text x="85.3518%" y="5198.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (42 samples, 0.76%)</title><rect x="85.1018%" y="5204" width="0.7566%" height="15" fill="rgb(240,89,49)"/><text x="85.3518%" y="5214.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (42 samples, 0.76%)</title><rect x="85.1018%" y="5220" width="0.7566%" height="15" fill="rgb(225,12,52)"/><text x="85.3518%" y="5230.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (34 samples, 0.61%)</title><rect x="85.2459%" y="5236" width="0.6125%" height="15" fill="rgb(239,128,45)"/><text x="85.4959%" y="5246.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (14 samples, 0.25%)</title><rect x="85.6062%" y="5252" width="0.2522%" height="15" fill="rgb(211,78,47)"/><text x="85.8562%" y="5262.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (7 samples, 0.13%)</title><rect x="85.7323%" y="5268" width="0.1261%" height="15" fill="rgb(232,31,21)"/><text x="85.9823%" y="5278.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="85.7323%" y="5284" width="0.1261%" height="15" fill="rgb(222,168,14)"/><text x="85.9823%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="85.7323%" y="5300" width="0.1261%" height="15" fill="rgb(209,128,24)"/><text x="85.9823%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="85.7323%" y="5316" width="0.1261%" height="15" fill="rgb(249,35,13)"/><text x="85.9823%" y="5326.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="85.7323%" y="5332" width="0.1261%" height="15" fill="rgb(218,7,2)"/><text x="85.9823%" y="5342.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="85.7323%" y="5348" width="0.1261%" height="15" fill="rgb(238,107,27)"/><text x="85.9823%" y="5358.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="85.7323%" y="5364" width="0.1261%" height="15" fill="rgb(217,88,38)"/><text x="85.9823%" y="5374.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="85.7323%" y="5380" width="0.1261%" height="15" fill="rgb(230,207,0)"/><text x="85.9823%" y="5390.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="85.7323%" y="5396" width="0.1261%" height="15" fill="rgb(249,64,54)"/><text x="85.9823%" y="5406.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="85.7323%" y="5412" width="0.1261%" height="15" fill="rgb(231,7,11)"/><text x="85.9823%" y="5422.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="85.7323%" y="5428" width="0.1261%" height="15" fill="rgb(205,149,21)"/><text x="85.9823%" y="5438.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="85.7323%" y="5444" width="0.1261%" height="15" fill="rgb(215,126,34)"/><text x="85.9823%" y="5454.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="85.7323%" y="5460" width="0.1261%" height="15" fill="rgb(241,132,45)"/><text x="85.9823%" y="5470.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="85.7323%" y="5476" width="0.1261%" height="15" fill="rgb(252,69,32)"/><text x="85.9823%" y="5486.50"></text></g><g><title>infer_import_from (astroid/inference.py:276) (7 samples, 0.13%)</title><rect x="85.7323%" y="5492" width="0.1261%" height="15" fill="rgb(232,204,19)"/><text x="85.9823%" y="5502.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:590) (7 samples, 0.13%)</title><rect x="85.7323%" y="5508" width="0.1261%" height="15" fill="rgb(249,15,47)"/><text x="85.9823%" y="5518.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (7 samples, 0.13%)</title><rect x="85.8764%" y="5252" width="0.1261%" height="15" fill="rgb(209,227,23)"/><text x="86.1264%" y="5262.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (7 samples, 0.13%)</title><rect x="85.8764%" y="5268" width="0.1261%" height="15" fill="rgb(248,92,24)"/><text x="86.1264%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:389) (6 samples, 0.11%)</title><rect x="85.8944%" y="5284" width="0.1081%" height="15" fill="rgb(247,59,2)"/><text x="86.1444%" y="5294.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (11 samples, 0.20%)</title><rect x="85.8584%" y="5204" width="0.1982%" height="15" fill="rgb(221,30,5)"/><text x="86.1084%" y="5214.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (11 samples, 0.20%)</title><rect x="85.8584%" y="5220" width="0.1982%" height="15" fill="rgb(208,108,53)"/><text x="86.1084%" y="5230.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (10 samples, 0.18%)</title><rect x="85.8764%" y="5236" width="0.1801%" height="15" fill="rgb(211,183,26)"/><text x="86.1264%" y="5246.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (18 samples, 0.32%)</title><rect x="85.8584%" y="5188" width="0.3243%" height="15" fill="rgb(232,132,4)"/><text x="86.1084%" y="5198.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="86.0566%" y="5204" width="0.1261%" height="15" fill="rgb(253,128,37)"/><text x="86.3066%" y="5214.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (10 samples, 0.18%)</title><rect x="86.2727%" y="5252" width="0.1801%" height="15" fill="rgb(221,58,24)"/><text x="86.5227%" y="5262.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (8 samples, 0.14%)</title><rect x="86.3088%" y="5268" width="0.1441%" height="15" fill="rgb(230,54,45)"/><text x="86.5588%" y="5278.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (18 samples, 0.32%)</title><rect x="86.2367%" y="5236" width="0.3243%" height="15" fill="rgb(254,21,18)"/><text x="86.4867%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (196 samples, 3.53%)</title><rect x="83.0661%" y="5140" width="3.5309%" height="15" fill="rgb(221,108,0)"/><text x="83.3161%" y="5150.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (196 samples, 3.53%)</title><rect x="83.0661%" y="5156" width="3.5309%" height="15" fill="rgb(206,95,1)"/><text x="83.3161%" y="5166.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (165 samples, 2.97%)</title><rect x="83.6246%" y="5172" width="2.9724%" height="15" fill="rgb(237,52,5)"/><text x="83.8746%" y="5182.50">inf..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (23 samples, 0.41%)</title><rect x="86.1827%" y="5188" width="0.4143%" height="15" fill="rgb(218,150,34)"/><text x="86.4327%" y="5198.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (23 samples, 0.41%)</title><rect x="86.1827%" y="5204" width="0.4143%" height="15" fill="rgb(235,194,28)"/><text x="86.4327%" y="5214.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (23 samples, 0.41%)</title><rect x="86.1827%" y="5220" width="0.4143%" height="15" fill="rgb(245,92,18)"/><text x="86.4327%" y="5230.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (7 samples, 0.13%)</title><rect x="86.7051%" y="5348" width="0.1261%" height="15" fill="rgb(253,203,53)"/><text x="86.9551%" y="5358.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (7 samples, 0.13%)</title><rect x="86.7051%" y="5364" width="0.1261%" height="15" fill="rgb(249,185,47)"/><text x="86.9551%" y="5374.50"></text></g><g><title>infer_call (astroid/inference.py:223) (13 samples, 0.23%)</title><rect x="86.6871%" y="5252" width="0.2342%" height="15" fill="rgb(252,194,52)"/><text x="86.9371%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="86.6871%" y="5268" width="0.2342%" height="15" fill="rgb(210,53,36)"/><text x="86.9371%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="86.6871%" y="5284" width="0.2342%" height="15" fill="rgb(237,37,25)"/><text x="86.9371%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="86.6871%" y="5300" width="0.2342%" height="15" fill="rgb(242,116,27)"/><text x="86.9371%" y="5310.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (12 samples, 0.22%)</title><rect x="86.7051%" y="5316" width="0.2162%" height="15" fill="rgb(213,185,26)"/><text x="86.9551%" y="5326.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (12 samples, 0.22%)</title><rect x="86.7051%" y="5332" width="0.2162%" height="15" fill="rgb(225,204,8)"/><text x="86.9551%" y="5342.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="86.9213%" y="5460" width="0.1081%" height="15" fill="rgb(254,111,37)"/><text x="87.1713%" y="5470.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="86.9213%" y="5476" width="0.1081%" height="15" fill="rgb(242,35,9)"/><text x="87.1713%" y="5486.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="86.9213%" y="5492" width="0.1081%" height="15" fill="rgb(232,138,49)"/><text x="87.1713%" y="5502.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="86.9213%" y="5508" width="0.1081%" height="15" fill="rgb(247,56,4)"/><text x="87.1713%" y="5518.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="86.9213%" y="5524" width="0.1081%" height="15" fill="rgb(226,179,17)"/><text x="87.1713%" y="5534.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="86.9213%" y="5540" width="0.1081%" height="15" fill="rgb(216,163,45)"/><text x="87.1713%" y="5550.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="86.9213%" y="5556" width="0.1081%" height="15" fill="rgb(211,157,3)"/><text x="87.1713%" y="5566.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (6 samples, 0.11%)</title><rect x="86.9213%" y="5572" width="0.1081%" height="15" fill="rgb(234,44,20)"/><text x="87.1713%" y="5582.50"></text></g><g><title>infer_assign (astroid/inference.py:847) (6 samples, 0.11%)</title><rect x="86.9213%" y="5588" width="0.1081%" height="15" fill="rgb(254,138,23)"/><text x="87.1713%" y="5598.50"></text></g><g><title>assend_assigned_stmts (astroid/protocols.py:304) (6 samples, 0.11%)</title><rect x="86.9213%" y="5604" width="0.1081%" height="15" fill="rgb(206,119,39)"/><text x="87.1713%" y="5614.50"></text></g><g><title>arguments_assigned_stmts (astroid/protocols.py:373) (6 samples, 0.11%)</title><rect x="86.9213%" y="5620" width="0.1081%" height="15" fill="rgb(231,105,52)"/><text x="87.1713%" y="5630.50"></text></g><g><title>infer_argument (astroid/arguments.py:222) (6 samples, 0.11%)</title><rect x="86.9213%" y="5636" width="0.1081%" height="15" fill="rgb(250,20,5)"/><text x="87.1713%" y="5646.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="86.9213%" y="5652" width="0.1081%" height="15" fill="rgb(215,198,30)"/><text x="87.1713%" y="5662.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (9 samples, 0.16%)</title><rect x="87.0294%" y="5476" width="0.1621%" height="15" fill="rgb(246,142,8)"/><text x="87.2794%" y="5486.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (9 samples, 0.16%)</title><rect x="87.0294%" y="5492" width="0.1621%" height="15" fill="rgb(243,26,38)"/><text x="87.2794%" y="5502.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (9 samples, 0.16%)</title><rect x="87.0294%" y="5508" width="0.1621%" height="15" fill="rgb(205,133,28)"/><text x="87.2794%" y="5518.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (9 samples, 0.16%)</title><rect x="87.0294%" y="5524" width="0.1621%" height="15" fill="rgb(212,34,0)"/><text x="87.2794%" y="5534.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (9 samples, 0.16%)</title><rect x="87.0294%" y="5540" width="0.1621%" height="15" fill="rgb(251,226,22)"/><text x="87.2794%" y="5550.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="87.0294%" y="5556" width="0.1621%" height="15" fill="rgb(252,119,9)"/><text x="87.2794%" y="5566.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (6 samples, 0.11%)</title><rect x="87.1915%" y="5476" width="0.1081%" height="15" fill="rgb(213,150,50)"/><text x="87.4415%" y="5486.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="87.1915%" y="5492" width="0.1081%" height="15" fill="rgb(212,24,39)"/><text x="87.4415%" y="5502.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="87.1915%" y="5508" width="0.1081%" height="15" fill="rgb(213,46,39)"/><text x="87.4415%" y="5518.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (23 samples, 0.41%)</title><rect x="86.9213%" y="5268" width="0.4143%" height="15" fill="rgb(239,106,12)"/><text x="87.1713%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="86.9213%" y="5284" width="0.4143%" height="15" fill="rgb(249,229,21)"/><text x="87.1713%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="86.9213%" y="5300" width="0.4143%" height="15" fill="rgb(212,158,3)"/><text x="87.1713%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="86.9213%" y="5316" width="0.4143%" height="15" fill="rgb(253,26,48)"/><text x="87.1713%" y="5326.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (23 samples, 0.41%)</title><rect x="86.9213%" y="5332" width="0.4143%" height="15" fill="rgb(238,178,20)"/><text x="87.1713%" y="5342.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="86.9213%" y="5348" width="0.4143%" height="15" fill="rgb(208,86,15)"/><text x="87.1713%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="86.9213%" y="5364" width="0.4143%" height="15" fill="rgb(239,42,53)"/><text x="87.1713%" y="5374.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="86.9213%" y="5380" width="0.4143%" height="15" fill="rgb(245,226,8)"/><text x="87.1713%" y="5390.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (23 samples, 0.41%)</title><rect x="86.9213%" y="5396" width="0.4143%" height="15" fill="rgb(216,176,32)"/><text x="87.1713%" y="5406.50"></text></g><g><title>infer (astroid/node_classes.py:380) (23 samples, 0.41%)</title><rect x="86.9213%" y="5412" width="0.4143%" height="15" fill="rgb(231,186,21)"/><text x="87.1713%" y="5422.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (23 samples, 0.41%)</title><rect x="86.9213%" y="5428" width="0.4143%" height="15" fill="rgb(205,95,49)"/><text x="87.1713%" y="5438.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (23 samples, 0.41%)</title><rect x="86.9213%" y="5444" width="0.4143%" height="15" fill="rgb(217,145,8)"/><text x="87.1713%" y="5454.50"></text></g><g><title>infer_call (astroid/inference.py:229) (17 samples, 0.31%)</title><rect x="87.0294%" y="5460" width="0.3063%" height="15" fill="rgb(239,144,48)"/><text x="87.2794%" y="5470.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (6 samples, 0.11%)</title><rect x="87.3356%" y="5284" width="0.1081%" height="15" fill="rgb(214,189,23)"/><text x="87.5856%" y="5294.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="87.3356%" y="5300" width="0.1081%" height="15" fill="rgb(229,157,17)"/><text x="87.5856%" y="5310.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (7 samples, 0.13%)</title><rect x="87.3356%" y="5268" width="0.1261%" height="15" fill="rgb(230,5,48)"/><text x="87.5856%" y="5278.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2222) (6 samples, 0.11%)</title><rect x="87.4617%" y="5268" width="0.1081%" height="15" fill="rgb(224,156,48)"/><text x="87.7117%" y="5278.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="87.4617%" y="5284" width="0.1081%" height="15" fill="rgb(223,14,29)"/><text x="87.7117%" y="5294.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (6 samples, 0.11%)</title><rect x="87.4617%" y="5300" width="0.1081%" height="15" fill="rgb(229,96,36)"/><text x="87.7117%" y="5310.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (7 samples, 0.13%)</title><rect x="87.6419%" y="5316" width="0.1261%" height="15" fill="rgb(231,102,53)"/><text x="87.8919%" y="5326.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (7 samples, 0.13%)</title><rect x="87.6419%" y="5332" width="0.1261%" height="15" fill="rgb(210,77,38)"/><text x="87.8919%" y="5342.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (13 samples, 0.23%)</title><rect x="87.5698%" y="5268" width="0.2342%" height="15" fill="rgb(235,131,6)"/><text x="87.8198%" y="5278.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (10 samples, 0.18%)</title><rect x="87.6239%" y="5284" width="0.1801%" height="15" fill="rgb(252,55,38)"/><text x="87.8739%" y="5294.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (10 samples, 0.18%)</title><rect x="87.6239%" y="5300" width="0.1801%" height="15" fill="rgb(246,38,14)"/><text x="87.8739%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (71 samples, 1.28%)</title><rect x="86.6330%" y="5220" width="1.2790%" height="15" fill="rgb(242,27,5)"/><text x="86.8830%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (70 samples, 1.26%)</title><rect x="86.6511%" y="5236" width="1.2610%" height="15" fill="rgb(228,65,35)"/><text x="86.9011%" y="5246.50"></text></g><g><title>infer_call (astroid/inference.py:229) (55 samples, 0.99%)</title><rect x="86.9213%" y="5252" width="0.9908%" height="15" fill="rgb(245,93,11)"/><text x="87.1713%" y="5262.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (6 samples, 0.11%)</title><rect x="87.8040%" y="5268" width="0.1081%" height="15" fill="rgb(213,1,31)"/><text x="88.0540%" y="5278.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (6 samples, 0.11%)</title><rect x="87.8040%" y="5284" width="0.1081%" height="15" fill="rgb(237,205,14)"/><text x="88.0540%" y="5294.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (6 samples, 0.11%)</title><rect x="87.8040%" y="5300" width="0.1081%" height="15" fill="rgb(232,118,45)"/><text x="88.0540%" y="5310.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (6 samples, 0.11%)</title><rect x="87.8040%" y="5316" width="0.1081%" height="15" fill="rgb(218,5,6)"/><text x="88.0540%" y="5326.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (6 samples, 0.11%)</title><rect x="87.8040%" y="5332" width="0.1081%" height="15" fill="rgb(251,87,51)"/><text x="88.0540%" y="5342.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (276 samples, 4.97%)</title><rect x="82.9760%" y="4900" width="4.9721%" height="15" fill="rgb(207,225,20)"/><text x="83.2260%" y="4910.50">infer_..</text></g><g><title>infer (astroid/node_classes.py:380) (276 samples, 4.97%)</title><rect x="82.9760%" y="4916" width="4.9721%" height="15" fill="rgb(222,78,54)"/><text x="83.2260%" y="4926.50">infer ..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (276 samples, 4.97%)</title><rect x="82.9760%" y="4932" width="4.9721%" height="15" fill="rgb(232,85,16)"/><text x="83.2260%" y="4942.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (276 samples, 4.97%)</title><rect x="82.9760%" y="4948" width="4.9721%" height="15" fill="rgb(244,25,33)"/><text x="83.2260%" y="4958.50">wrappe..</text></g><g><title>infer_attribute (astroid/inference.py:316) (276 samples, 4.97%)</title><rect x="82.9760%" y="4964" width="4.9721%" height="15" fill="rgb(233,24,36)"/><text x="83.2260%" y="4974.50">infer_..</text></g><g><title>igetattr (astroid/bases.py:233) (276 samples, 4.97%)</title><rect x="82.9760%" y="4980" width="4.9721%" height="15" fill="rgb(253,49,54)"/><text x="83.2260%" y="4990.50">igetat..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (276 samples, 4.97%)</title><rect x="82.9760%" y="4996" width="4.9721%" height="15" fill="rgb(245,12,22)"/><text x="83.2260%" y="5006.50">_wrap_..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (276 samples, 4.97%)</title><rect x="82.9760%" y="5012" width="4.9721%" height="15" fill="rgb(253,141,28)"/><text x="83.2260%" y="5022.50">igetat..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (276 samples, 4.97%)</title><rect x="82.9760%" y="5028" width="4.9721%" height="15" fill="rgb(225,207,27)"/><text x="83.2260%" y="5038.50">infer_..</text></g><g><title>infer (astroid/node_classes.py:380) (276 samples, 4.97%)</title><rect x="82.9760%" y="5044" width="4.9721%" height="15" fill="rgb(220,84,2)"/><text x="83.2260%" y="5054.50">infer ..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (274 samples, 4.94%)</title><rect x="83.0121%" y="5060" width="4.9360%" height="15" fill="rgb(224,37,37)"/><text x="83.2621%" y="5070.50">raise_..</text></g><g><title>wrapped (astroid/decorators.py:99) (274 samples, 4.94%)</title><rect x="83.0121%" y="5076" width="4.9360%" height="15" fill="rgb(220,143,18)"/><text x="83.2621%" y="5086.50">wrappe..</text></g><g><title>infer_call (astroid/inference.py:229) (272 samples, 4.90%)</title><rect x="83.0481%" y="5092" width="4.9000%" height="15" fill="rgb(210,88,33)"/><text x="83.2981%" y="5102.50">infer_..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (271 samples, 4.88%)</title><rect x="83.0661%" y="5108" width="4.8820%" height="15" fill="rgb(219,87,51)"/><text x="83.3161%" y="5118.50">infer_..</text></g><g><title>infer (astroid/node_classes.py:380) (271 samples, 4.88%)</title><rect x="83.0661%" y="5124" width="4.8820%" height="15" fill="rgb(211,7,35)"/><text x="83.3161%" y="5134.50">infer ..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (75 samples, 1.35%)</title><rect x="86.5970%" y="5140" width="1.3511%" height="15" fill="rgb(232,77,2)"/><text x="86.8470%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (74 samples, 1.33%)</title><rect x="86.6150%" y="5156" width="1.3331%" height="15" fill="rgb(249,94,25)"/><text x="86.8650%" y="5166.50"></text></g><g><title>infer_call (astroid/inference.py:229) (74 samples, 1.33%)</title><rect x="86.6150%" y="5172" width="1.3331%" height="15" fill="rgb(215,112,2)"/><text x="86.8650%" y="5182.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (73 samples, 1.32%)</title><rect x="86.6330%" y="5188" width="1.3151%" height="15" fill="rgb(226,115,48)"/><text x="86.8830%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (73 samples, 1.32%)</title><rect x="86.6330%" y="5204" width="1.3151%" height="15" fill="rgb(249,196,10)"/><text x="86.8830%" y="5214.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (6 samples, 0.11%)</title><rect x="88.0022%" y="5012" width="0.1081%" height="15" fill="rgb(237,109,14)"/><text x="88.2522%" y="5022.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="88.0022%" y="5028" width="0.1081%" height="15" fill="rgb(217,103,53)"/><text x="88.2522%" y="5038.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="88.0022%" y="5044" width="0.1081%" height="15" fill="rgb(244,137,9)"/><text x="88.2522%" y="5054.50"></text></g><g><title>igetattr (astroid/bases.py:221) (13 samples, 0.23%)</title><rect x="87.9481%" y="4916" width="0.2342%" height="15" fill="rgb(227,201,3)"/><text x="88.1981%" y="4926.50"></text></g><g><title>getattr (astroid/bases.py:182) (13 samples, 0.23%)</title><rect x="87.9481%" y="4932" width="0.2342%" height="15" fill="rgb(243,94,6)"/><text x="88.1981%" y="4942.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (13 samples, 0.23%)</title><rect x="87.9481%" y="4948" width="0.2342%" height="15" fill="rgb(235,118,5)"/><text x="88.1981%" y="4958.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (13 samples, 0.23%)</title><rect x="87.9481%" y="4964" width="0.2342%" height="15" fill="rgb(247,10,30)"/><text x="88.1981%" y="4974.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (12 samples, 0.22%)</title><rect x="87.9661%" y="4980" width="0.2162%" height="15" fill="rgb(205,26,28)"/><text x="88.2161%" y="4990.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (10 samples, 0.18%)</title><rect x="88.0022%" y="4996" width="0.1801%" height="15" fill="rgb(206,99,35)"/><text x="88.2522%" y="5006.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (6 samples, 0.11%)</title><rect x="88.2183%" y="5012" width="0.1081%" height="15" fill="rgb(238,130,40)"/><text x="88.4683%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (8 samples, 0.14%)</title><rect x="88.3264%" y="5028" width="0.1441%" height="15" fill="rgb(224,126,31)"/><text x="88.5764%" y="5038.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2773) (8 samples, 0.14%)</title><rect x="88.3264%" y="5044" width="0.1441%" height="15" fill="rgb(254,105,17)"/><text x="88.5764%" y="5054.50"></text></g><g><title><genexpr> (astroid/scoped_nodes.py:2773) (8 samples, 0.14%)</title><rect x="88.3264%" y="5060" width="0.1441%" height="15" fill="rgb(216,87,36)"/><text x="88.5764%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:366) (8 samples, 0.14%)</title><rect x="88.3264%" y="5076" width="0.1441%" height="15" fill="rgb(240,21,12)"/><text x="88.5764%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="88.3264%" y="5092" width="0.1441%" height="15" fill="rgb(245,192,34)"/><text x="88.5764%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:91) (8 samples, 0.14%)</title><rect x="88.3264%" y="5108" width="0.1441%" height="15" fill="rgb(226,100,49)"/><text x="88.5764%" y="5118.50"></text></g><g><title>__init__ (astroid/context.py:36) (8 samples, 0.14%)</title><rect x="88.3264%" y="5124" width="0.1441%" height="15" fill="rgb(245,188,27)"/><text x="88.5764%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:374) (6 samples, 0.11%)</title><rect x="88.4886%" y="5060" width="0.1081%" height="15" fill="rgb(212,170,8)"/><text x="88.7386%" y="5070.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (26 samples, 0.47%)</title><rect x="88.1823%" y="4948" width="0.4684%" height="15" fill="rgb(217,113,29)"/><text x="88.4323%" y="4958.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (26 samples, 0.47%)</title><rect x="88.1823%" y="4964" width="0.4684%" height="15" fill="rgb(237,30,3)"/><text x="88.4323%" y="4974.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (26 samples, 0.47%)</title><rect x="88.1823%" y="4980" width="0.4684%" height="15" fill="rgb(227,19,28)"/><text x="88.4323%" y="4990.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (24 samples, 0.43%)</title><rect x="88.2183%" y="4996" width="0.4324%" height="15" fill="rgb(239,172,45)"/><text x="88.4683%" y="5006.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (18 samples, 0.32%)</title><rect x="88.3264%" y="5012" width="0.3243%" height="15" fill="rgb(254,55,39)"/><text x="88.5764%" y="5022.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (10 samples, 0.18%)</title><rect x="88.4705%" y="5028" width="0.1801%" height="15" fill="rgb(249,208,12)"/><text x="88.7205%" y="5038.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="88.4705%" y="5044" width="0.1801%" height="15" fill="rgb(240,52,13)"/><text x="88.7205%" y="5054.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2577) (10 samples, 0.18%)</title><rect x="88.7047%" y="4948" width="0.1801%" height="15" fill="rgb(252,149,13)"/><text x="88.9547%" y="4958.50"></text></g><g><title><listcomp> (astroid/scoped_nodes.py:2580) (10 samples, 0.18%)</title><rect x="88.7047%" y="4964" width="0.1801%" height="15" fill="rgb(232,81,48)"/><text x="88.9547%" y="4974.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="88.9029%" y="4996" width="0.1441%" height="15" fill="rgb(222,144,2)"/><text x="89.1529%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="88.9029%" y="5012" width="0.1441%" height="15" fill="rgb(216,81,32)"/><text x="89.1529%" y="5022.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="89.1191%" y="5252" width="0.1441%" height="15" fill="rgb(244,78,51)"/><text x="89.3691%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="89.1191%" y="5268" width="0.1441%" height="15" fill="rgb(217,66,21)"/><text x="89.3691%" y="5278.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="89.1191%" y="5284" width="0.1441%" height="15" fill="rgb(247,101,42)"/><text x="89.3691%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="89.1191%" y="5300" width="0.1441%" height="15" fill="rgb(227,81,39)"/><text x="89.3691%" y="5310.50"></text></g><g><title>infer_call (astroid/inference.py:223) (10 samples, 0.18%)</title><rect x="89.1191%" y="5188" width="0.1801%" height="15" fill="rgb(220,223,44)"/><text x="89.3691%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="89.1191%" y="5204" width="0.1801%" height="15" fill="rgb(205,218,2)"/><text x="89.3691%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="89.1191%" y="5220" width="0.1801%" height="15" fill="rgb(212,207,28)"/><text x="89.3691%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="89.1191%" y="5236" width="0.1801%" height="15" fill="rgb(224,12,41)"/><text x="89.3691%" y="5246.50"></text></g><g><title>infer_import_from (astroid/inference.py:274) (8 samples, 0.14%)</title><rect x="89.3713%" y="5380" width="0.1441%" height="15" fill="rgb(216,118,12)"/><text x="89.6213%" y="5390.50"></text></g><g><title>copy_context (astroid/context.py:148) (8 samples, 0.14%)</title><rect x="89.3713%" y="5396" width="0.1441%" height="15" fill="rgb(252,97,46)"/><text x="89.6213%" y="5406.50"></text></g><g><title>clone (astroid/context.py:106) (8 samples, 0.14%)</title><rect x="89.3713%" y="5412" width="0.1441%" height="15" fill="rgb(244,206,19)"/><text x="89.6213%" y="5422.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (9 samples, 0.16%)</title><rect x="89.3713%" y="5364" width="0.1621%" height="15" fill="rgb(231,84,31)"/><text x="89.6213%" y="5374.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="89.3533%" y="5284" width="0.1982%" height="15" fill="rgb(244,133,0)"/><text x="89.6033%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="89.3533%" y="5300" width="0.1982%" height="15" fill="rgb(223,15,50)"/><text x="89.6033%" y="5310.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (10 samples, 0.18%)</title><rect x="89.3713%" y="5316" width="0.1801%" height="15" fill="rgb(250,118,49)"/><text x="89.6213%" y="5326.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="89.3713%" y="5332" width="0.1801%" height="15" fill="rgb(248,25,38)"/><text x="89.6213%" y="5342.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="89.3713%" y="5348" width="0.1801%" height="15" fill="rgb(215,70,14)"/><text x="89.6213%" y="5358.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (13 samples, 0.23%)</title><rect x="89.3533%" y="5252" width="0.2342%" height="15" fill="rgb(215,28,15)"/><text x="89.6033%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="89.3533%" y="5268" width="0.2342%" height="15" fill="rgb(243,6,28)"/><text x="89.6033%" y="5278.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (19 samples, 0.34%)</title><rect x="89.2992%" y="5204" width="0.3423%" height="15" fill="rgb(222,130,1)"/><text x="89.5492%" y="5214.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (19 samples, 0.34%)</title><rect x="89.2992%" y="5220" width="0.3423%" height="15" fill="rgb(236,166,44)"/><text x="89.5492%" y="5230.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (18 samples, 0.32%)</title><rect x="89.3172%" y="5236" width="0.3243%" height="15" fill="rgb(221,108,14)"/><text x="89.5672%" y="5246.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2224) (8 samples, 0.14%)</title><rect x="89.6956%" y="5204" width="0.1441%" height="15" fill="rgb(252,3,45)"/><text x="89.9456%" y="5214.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (7 samples, 0.13%)</title><rect x="89.7136%" y="5220" width="0.1261%" height="15" fill="rgb(237,68,30)"/><text x="89.9636%" y="5230.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (6 samples, 0.11%)</title><rect x="89.7316%" y="5236" width="0.1081%" height="15" fill="rgb(211,79,22)"/><text x="89.9816%" y="5246.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2958) (10 samples, 0.18%)</title><rect x="89.8757%" y="5252" width="0.1801%" height="15" fill="rgb(252,185,21)"/><text x="90.1257%" y="5262.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (53 samples, 0.95%)</title><rect x="89.1191%" y="5156" width="0.9548%" height="15" fill="rgb(225,189,26)"/><text x="89.3691%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (53 samples, 0.95%)</title><rect x="89.1191%" y="5172" width="0.9548%" height="15" fill="rgb(241,30,40)"/><text x="89.3691%" y="5182.50"></text></g><g><title>infer_call (astroid/inference.py:229) (43 samples, 0.77%)</title><rect x="89.2992%" y="5188" width="0.7746%" height="15" fill="rgb(235,215,44)"/><text x="89.5492%" y="5198.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (13 samples, 0.23%)</title><rect x="89.8397%" y="5204" width="0.2342%" height="15" fill="rgb(205,8,29)"/><text x="90.0897%" y="5214.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (13 samples, 0.23%)</title><rect x="89.8397%" y="5220" width="0.2342%" height="15" fill="rgb(241,137,42)"/><text x="90.0897%" y="5230.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (13 samples, 0.23%)</title><rect x="89.8397%" y="5236" width="0.2342%" height="15" fill="rgb(237,155,2)"/><text x="90.0897%" y="5246.50"></text></g><g><title>infer (astroid/node_classes.py:380) (66 samples, 1.19%)</title><rect x="88.9029%" y="4980" width="1.1890%" height="15" fill="rgb(245,29,42)"/><text x="89.1529%" y="4990.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (58 samples, 1.04%)</title><rect x="89.0470%" y="4996" width="1.0449%" height="15" fill="rgb(234,101,35)"/><text x="89.2970%" y="5006.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (57 samples, 1.03%)</title><rect x="89.0650%" y="5012" width="1.0268%" height="15" fill="rgb(228,64,37)"/><text x="89.3150%" y="5022.50"></text></g><g><title>infer_call (astroid/inference.py:229) (57 samples, 1.03%)</title><rect x="89.0650%" y="5028" width="1.0268%" height="15" fill="rgb(217,214,36)"/><text x="89.3150%" y="5038.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (57 samples, 1.03%)</title><rect x="89.0650%" y="5044" width="1.0268%" height="15" fill="rgb(243,70,3)"/><text x="89.3150%" y="5054.50"></text></g><g><title>infer (astroid/node_classes.py:380) (57 samples, 1.03%)</title><rect x="89.0650%" y="5060" width="1.0268%" height="15" fill="rgb(253,158,52)"/><text x="89.3150%" y="5070.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (57 samples, 1.03%)</title><rect x="89.0650%" y="5076" width="1.0268%" height="15" fill="rgb(234,111,54)"/><text x="89.3150%" y="5086.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (57 samples, 1.03%)</title><rect x="89.0650%" y="5092" width="1.0268%" height="15" fill="rgb(217,70,32)"/><text x="89.3150%" y="5102.50"></text></g><g><title>infer_call (astroid/inference.py:229) (57 samples, 1.03%)</title><rect x="89.0650%" y="5108" width="1.0268%" height="15" fill="rgb(234,18,33)"/><text x="89.3150%" y="5118.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (57 samples, 1.03%)</title><rect x="89.0650%" y="5124" width="1.0268%" height="15" fill="rgb(234,12,49)"/><text x="89.3150%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (54 samples, 0.97%)</title><rect x="89.1191%" y="5140" width="0.9728%" height="15" fill="rgb(236,10,21)"/><text x="89.3691%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (405 samples, 7.30%)</title><rect x="82.9760%" y="4708" width="7.2960%" height="15" fill="rgb(248,182,45)"/><text x="83.2260%" y="4718.50">infer_attr..</text></g><g><title>infer (astroid/node_classes.py:380) (405 samples, 7.30%)</title><rect x="82.9760%" y="4724" width="7.2960%" height="15" fill="rgb(217,95,36)"/><text x="83.2260%" y="4734.50">infer (ast..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (405 samples, 7.30%)</title><rect x="82.9760%" y="4740" width="7.2960%" height="15" fill="rgb(212,110,31)"/><text x="83.2260%" y="4750.50">raise_if_n..</text></g><g><title>wrapped (astroid/decorators.py:99) (405 samples, 7.30%)</title><rect x="82.9760%" y="4756" width="7.2960%" height="15" fill="rgb(206,32,53)"/><text x="83.2260%" y="4766.50">wrapped (a..</text></g><g><title>infer_attribute (astroid/inference.py:316) (405 samples, 7.30%)</title><rect x="82.9760%" y="4772" width="7.2960%" height="15" fill="rgb(246,141,37)"/><text x="83.2260%" y="4782.50">infer_attr..</text></g><g><title>igetattr (astroid/bases.py:233) (405 samples, 7.30%)</title><rect x="82.9760%" y="4788" width="7.2960%" height="15" fill="rgb(219,16,7)"/><text x="83.2260%" y="4798.50">igetattr (..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (405 samples, 7.30%)</title><rect x="82.9760%" y="4804" width="7.2960%" height="15" fill="rgb(230,205,45)"/><text x="83.2260%" y="4814.50">_wrap_attr..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (405 samples, 7.30%)</title><rect x="82.9760%" y="4820" width="7.2960%" height="15" fill="rgb(231,43,49)"/><text x="83.2260%" y="4830.50">igetattr (..</text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (405 samples, 7.30%)</title><rect x="82.9760%" y="4836" width="7.2960%" height="15" fill="rgb(212,106,34)"/><text x="83.2260%" y="4846.50">infer_call..</text></g><g><title>infer (astroid/node_classes.py:380) (405 samples, 7.30%)</title><rect x="82.9760%" y="4852" width="7.2960%" height="15" fill="rgb(206,83,17)"/><text x="83.2260%" y="4862.50">infer (ast..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (405 samples, 7.30%)</title><rect x="82.9760%" y="4868" width="7.2960%" height="15" fill="rgb(244,154,49)"/><text x="83.2260%" y="4878.50">raise_if_n..</text></g><g><title>wrapped (astroid/decorators.py:99) (405 samples, 7.30%)</title><rect x="82.9760%" y="4884" width="7.2960%" height="15" fill="rgb(244,149,49)"/><text x="83.2260%" y="4894.50">wrapped (a..</text></g><g><title>infer_attribute (astroid/inference.py:316) (129 samples, 2.32%)</title><rect x="87.9481%" y="4900" width="2.3239%" height="15" fill="rgb(227,134,18)"/><text x="88.1981%" y="4910.50">i..</text></g><g><title>igetattr (astroid/bases.py:233) (116 samples, 2.09%)</title><rect x="88.1823%" y="4916" width="2.0897%" height="15" fill="rgb(237,116,36)"/><text x="88.4323%" y="4926.50">i..</text></g><g><title>_wrap_attr (astroid/bases.py:239) (116 samples, 2.09%)</title><rect x="88.1823%" y="4932" width="2.0897%" height="15" fill="rgb(205,129,40)"/><text x="88.4323%" y="4942.50">_..</text></g><g><title>igetattr (astroid/scoped_nodes.py:2598) (76 samples, 1.37%)</title><rect x="88.9029%" y="4948" width="1.3691%" height="15" fill="rgb(236,178,4)"/><text x="89.1529%" y="4958.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (76 samples, 1.37%)</title><rect x="88.9029%" y="4964" width="1.3691%" height="15" fill="rgb(251,76,53)"/><text x="89.1529%" y="4974.50"></text></g><g><title>infer (astroid/node_classes.py:389) (10 samples, 0.18%)</title><rect x="90.0919%" y="4980" width="0.1801%" height="15" fill="rgb(242,92,40)"/><text x="90.3419%" y="4990.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (7 samples, 0.13%)</title><rect x="90.3801%" y="4852" width="0.1261%" height="15" fill="rgb(209,45,30)"/><text x="90.6301%" y="4862.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="90.3801%" y="4868" width="0.1261%" height="15" fill="rgb(218,157,36)"/><text x="90.6301%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (18 samples, 0.32%)</title><rect x="90.3441%" y="4820" width="0.3243%" height="15" fill="rgb(222,186,16)"/><text x="90.5941%" y="4830.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (16 samples, 0.29%)</title><rect x="90.3801%" y="4836" width="0.2882%" height="15" fill="rgb(254,72,35)"/><text x="90.6301%" y="4846.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="90.5062%" y="4852" width="0.1621%" height="15" fill="rgb(224,25,35)"/><text x="90.7562%" y="4862.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="90.5062%" y="4868" width="0.1621%" height="15" fill="rgb(206,135,52)"/><text x="90.7562%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="90.5062%" y="4884" width="0.1621%" height="15" fill="rgb(229,174,47)"/><text x="90.7562%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="90.5062%" y="4900" width="0.1621%" height="15" fill="rgb(242,184,21)"/><text x="90.7562%" y="4910.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="90.5062%" y="4916" width="0.1621%" height="15" fill="rgb(213,22,45)"/><text x="90.7562%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="90.5062%" y="4932" width="0.1621%" height="15" fill="rgb(237,81,54)"/><text x="90.7562%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="90.5062%" y="4948" width="0.1621%" height="15" fill="rgb(248,177,18)"/><text x="90.7562%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="90.5062%" y="4964" width="0.1621%" height="15" fill="rgb(254,31,16)"/><text x="90.7562%" y="4974.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="90.5242%" y="4980" width="0.1441%" height="15" fill="rgb(235,20,31)"/><text x="90.7742%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:370) (8 samples, 0.14%)</title><rect x="90.5242%" y="4996" width="0.1441%" height="15" fill="rgb(240,56,43)"/><text x="90.7742%" y="5006.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (19 samples, 0.34%)</title><rect x="90.3441%" y="4788" width="0.3423%" height="15" fill="rgb(237,197,51)"/><text x="90.5941%" y="4798.50"></text></g><g><title>infer (astroid/node_classes.py:380) (19 samples, 0.34%)</title><rect x="90.3441%" y="4804" width="0.3423%" height="15" fill="rgb(241,162,44)"/><text x="90.5941%" y="4814.50"></text></g><g><title>igetattr (astroid/bases.py:221) (22 samples, 0.40%)</title><rect x="90.3261%" y="4724" width="0.3963%" height="15" fill="rgb(224,23,20)"/><text x="90.5761%" y="4734.50"></text></g><g><title>getattr (astroid/bases.py:182) (22 samples, 0.40%)</title><rect x="90.3261%" y="4740" width="0.3963%" height="15" fill="rgb(250,109,34)"/><text x="90.5761%" y="4750.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (21 samples, 0.38%)</title><rect x="90.3441%" y="4756" width="0.3783%" height="15" fill="rgb(214,175,50)"/><text x="90.5941%" y="4766.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (21 samples, 0.38%)</title><rect x="90.3441%" y="4772" width="0.3783%" height="15" fill="rgb(213,182,5)"/><text x="90.5941%" y="4782.50"></text></g><g><title>wrapped (astroid/decorators.py:96) (7 samples, 0.13%)</title><rect x="90.7764%" y="4868" width="0.1261%" height="15" fill="rgb(209,199,19)"/><text x="91.0264%" y="4878.50"></text></g><g><title>infer_name (astroid/inference.py:199) (7 samples, 0.13%)</title><rect x="90.7764%" y="4884" width="0.1261%" height="15" fill="rgb(236,224,42)"/><text x="91.0264%" y="4894.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (12 samples, 0.22%)</title><rect x="90.7224%" y="4756" width="0.2162%" height="15" fill="rgb(246,226,29)"/><text x="90.9724%" y="4766.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (12 samples, 0.22%)</title><rect x="90.7224%" y="4772" width="0.2162%" height="15" fill="rgb(227,223,11)"/><text x="90.9724%" y="4782.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2792) (12 samples, 0.22%)</title><rect x="90.7224%" y="4788" width="0.2162%" height="15" fill="rgb(219,7,51)"/><text x="90.9724%" y="4798.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2790) (10 samples, 0.18%)</title><rect x="90.7584%" y="4804" width="0.1801%" height="15" fill="rgb(245,167,10)"/><text x="91.0084%" y="4814.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (10 samples, 0.18%)</title><rect x="90.7584%" y="4820" width="0.1801%" height="15" fill="rgb(237,224,16)"/><text x="91.0084%" y="4830.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="90.7764%" y="4836" width="0.1621%" height="15" fill="rgb(226,132,13)"/><text x="91.0264%" y="4846.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="90.7764%" y="4852" width="0.1621%" height="15" fill="rgb(214,140,3)"/><text x="91.0264%" y="4862.50"></text></g><g><title>infer_call (astroid/inference.py:223) (448 samples, 8.07%)</title><rect x="82.9760%" y="4644" width="8.0706%" height="15" fill="rgb(221,177,4)"/><text x="83.2260%" y="4654.50">infer_call ..</text></g><g><title>infer (astroid/node_classes.py:380) (448 samples, 8.07%)</title><rect x="82.9760%" y="4660" width="8.0706%" height="15" fill="rgb(238,139,3)"/><text x="83.2260%" y="4670.50">infer (astr..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (448 samples, 8.07%)</title><rect x="82.9760%" y="4676" width="8.0706%" height="15" fill="rgb(216,17,39)"/><text x="83.2260%" y="4686.50">raise_if_no..</text></g><g><title>wrapped (astroid/decorators.py:99) (448 samples, 8.07%)</title><rect x="82.9760%" y="4692" width="8.0706%" height="15" fill="rgb(238,120,9)"/><text x="83.2260%" y="4702.50">wrapped (as..</text></g><g><title>infer_attribute (astroid/inference.py:316) (40 samples, 0.72%)</title><rect x="90.3261%" y="4708" width="0.7206%" height="15" fill="rgb(244,92,53)"/><text x="90.5761%" y="4718.50"></text></g><g><title>igetattr (astroid/bases.py:233) (18 samples, 0.32%)</title><rect x="90.7224%" y="4724" width="0.3243%" height="15" fill="rgb(224,148,33)"/><text x="90.9724%" y="4734.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (18 samples, 0.32%)</title><rect x="90.7224%" y="4740" width="0.3243%" height="15" fill="rgb(243,6,36)"/><text x="90.9724%" y="4750.50"></text></g><g><title>igetattr (astroid/bases.py:221) (10 samples, 0.18%)</title><rect x="91.3529%" y="5060" width="0.1801%" height="15" fill="rgb(230,102,11)"/><text x="91.6029%" y="5070.50"></text></g><g><title>getattr (astroid/bases.py:182) (10 samples, 0.18%)</title><rect x="91.3529%" y="5076" width="0.1801%" height="15" fill="rgb(234,148,36)"/><text x="91.6029%" y="5086.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (10 samples, 0.18%)</title><rect x="91.3529%" y="5092" width="0.1801%" height="15" fill="rgb(251,153,25)"/><text x="91.6029%" y="5102.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (10 samples, 0.18%)</title><rect x="91.3529%" y="5108" width="0.1801%" height="15" fill="rgb(215,129,8)"/><text x="91.6029%" y="5118.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="91.4250%" y="5124" width="0.1081%" height="15" fill="rgb(224,128,35)"/><text x="91.6750%" y="5134.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2331) (6 samples, 0.11%)</title><rect x="91.4250%" y="5140" width="0.1081%" height="15" fill="rgb(237,56,52)"/><text x="91.6750%" y="5150.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2565) (7 samples, 0.13%)</title><rect x="91.5331%" y="5092" width="0.1261%" height="15" fill="rgb(234,213,19)"/><text x="91.7831%" y="5102.50"></text></g><g><title>copy_context (astroid/context.py:148) (7 samples, 0.13%)</title><rect x="91.5331%" y="5108" width="0.1261%" height="15" fill="rgb(252,82,23)"/><text x="91.7831%" y="5118.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="91.5331%" y="5124" width="0.1261%" height="15" fill="rgb(254,201,21)"/><text x="91.7831%" y="5134.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (18 samples, 0.32%)</title><rect x="91.5331%" y="5076" width="0.3243%" height="15" fill="rgb(250,186,11)"/><text x="91.7831%" y="5086.50"></text></g><g><title>infer_call (astroid/inference.py:223) (32 samples, 0.58%)</title><rect x="91.3529%" y="4980" width="0.5765%" height="15" fill="rgb(211,174,5)"/><text x="91.6029%" y="4990.50"></text></g><g><title>infer (astroid/node_classes.py:380) (32 samples, 0.58%)</title><rect x="91.3529%" y="4996" width="0.5765%" height="15" fill="rgb(214,121,10)"/><text x="91.6029%" y="5006.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (32 samples, 0.58%)</title><rect x="91.3529%" y="5012" width="0.5765%" height="15" fill="rgb(241,66,2)"/><text x="91.6029%" y="5022.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (32 samples, 0.58%)</title><rect x="91.3529%" y="5028" width="0.5765%" height="15" fill="rgb(220,167,19)"/><text x="91.6029%" y="5038.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (32 samples, 0.58%)</title><rect x="91.3529%" y="5044" width="0.5765%" height="15" fill="rgb(231,54,50)"/><text x="91.6029%" y="5054.50"></text></g><g><title>igetattr (astroid/bases.py:233) (22 samples, 0.40%)</title><rect x="91.5331%" y="5060" width="0.3963%" height="15" fill="rgb(239,217,53)"/><text x="91.7831%" y="5070.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="91.9834%" y="5124" width="0.1441%" height="15" fill="rgb(248,8,0)"/><text x="92.2334%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="91.9834%" y="5140" width="0.1441%" height="15" fill="rgb(229,118,37)"/><text x="92.2334%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="91.9834%" y="5156" width="0.1441%" height="15" fill="rgb(253,223,43)"/><text x="92.2334%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (8 samples, 0.14%)</title><rect x="91.9834%" y="5172" width="0.1441%" height="15" fill="rgb(211,77,36)"/><text x="92.2334%" y="5182.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (8 samples, 0.14%)</title><rect x="91.9834%" y="5188" width="0.1441%" height="15" fill="rgb(219,3,53)"/><text x="92.2334%" y="5198.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (8 samples, 0.14%)</title><rect x="91.9834%" y="5204" width="0.1441%" height="15" fill="rgb(244,45,42)"/><text x="92.2334%" y="5214.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:584) (7 samples, 0.13%)</title><rect x="92.0014%" y="5220" width="0.1261%" height="15" fill="rgb(225,95,27)"/><text x="92.2514%" y="5230.50"></text></g><g><title>__contains__ (astroid/interpreter/objectmodel.py:105) (6 samples, 0.11%)</title><rect x="92.0195%" y="5236" width="0.1081%" height="15" fill="rgb(207,74,8)"/><text x="92.2695%" y="5246.50"></text></g><g><title>infer_call (astroid/inference.py:223) (17 samples, 0.31%)</title><rect x="91.9474%" y="5060" width="0.3063%" height="15" fill="rgb(243,63,36)"/><text x="92.1974%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (15 samples, 0.27%)</title><rect x="91.9834%" y="5076" width="0.2702%" height="15" fill="rgb(211,180,12)"/><text x="92.2334%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (15 samples, 0.27%)</title><rect x="91.9834%" y="5092" width="0.2702%" height="15" fill="rgb(254,166,49)"/><text x="92.2334%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (15 samples, 0.27%)</title><rect x="91.9834%" y="5108" width="0.2702%" height="15" fill="rgb(205,19,0)"/><text x="92.2334%" y="5118.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (7 samples, 0.13%)</title><rect x="92.1275%" y="5124" width="0.1261%" height="15" fill="rgb(224,172,32)"/><text x="92.3775%" y="5134.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:613) (7 samples, 0.13%)</title><rect x="92.1275%" y="5140" width="0.1261%" height="15" fill="rgb(254,136,30)"/><text x="92.3775%" y="5150.50"></text></g><g><title>copy_context (astroid/context.py:148) (7 samples, 0.13%)</title><rect x="92.1275%" y="5156" width="0.1261%" height="15" fill="rgb(246,19,35)"/><text x="92.3775%" y="5166.50"></text></g><g><title>clone (astroid/context.py:106) (7 samples, 0.13%)</title><rect x="92.1275%" y="5172" width="0.1261%" height="15" fill="rgb(219,24,36)"/><text x="92.3775%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="92.2536%" y="5204" width="0.1261%" height="15" fill="rgb(251,55,1)"/><text x="92.5036%" y="5214.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="92.2536%" y="5220" width="0.1261%" height="15" fill="rgb(218,117,39)"/><text x="92.5036%" y="5230.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (12 samples, 0.22%)</title><rect x="92.2536%" y="5076" width="0.2162%" height="15" fill="rgb(248,169,11)"/><text x="92.5036%" y="5086.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (12 samples, 0.22%)</title><rect x="92.2536%" y="5092" width="0.2162%" height="15" fill="rgb(244,40,44)"/><text x="92.5036%" y="5102.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="92.2536%" y="5108" width="0.2162%" height="15" fill="rgb(234,62,37)"/><text x="92.5036%" y="5118.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="92.2536%" y="5124" width="0.2162%" height="15" fill="rgb(207,117,42)"/><text x="92.5036%" y="5134.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="92.2536%" y="5140" width="0.2162%" height="15" fill="rgb(213,43,2)"/><text x="92.5036%" y="5150.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="92.2536%" y="5156" width="0.2162%" height="15" fill="rgb(244,202,51)"/><text x="92.5036%" y="5166.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="92.2536%" y="5172" width="0.2162%" height="15" fill="rgb(253,174,46)"/><text x="92.5036%" y="5182.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="92.2536%" y="5188" width="0.2162%" height="15" fill="rgb(251,23,1)"/><text x="92.5036%" y="5198.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="92.4698%" y="5268" width="0.1261%" height="15" fill="rgb(253,26,1)"/><text x="92.7198%" y="5278.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="92.4698%" y="5284" width="0.1261%" height="15" fill="rgb(216,89,31)"/><text x="92.7198%" y="5294.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="92.4698%" y="5300" width="0.1261%" height="15" fill="rgb(209,109,5)"/><text x="92.7198%" y="5310.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="92.4698%" y="5316" width="0.1261%" height="15" fill="rgb(229,63,13)"/><text x="92.7198%" y="5326.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="92.4698%" y="5236" width="0.1621%" height="15" fill="rgb(238,137,54)"/><text x="92.7198%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="92.4698%" y="5252" width="0.1621%" height="15" fill="rgb(228,1,9)"/><text x="92.7198%" y="5262.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (74 samples, 1.33%)</title><rect x="91.3529%" y="4916" width="1.3331%" height="15" fill="rgb(249,120,48)"/><text x="91.6029%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (74 samples, 1.33%)</title><rect x="91.3529%" y="4932" width="1.3331%" height="15" fill="rgb(209,72,36)"/><text x="91.6029%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (74 samples, 1.33%)</title><rect x="91.3529%" y="4948" width="1.3331%" height="15" fill="rgb(247,98,49)"/><text x="91.6029%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (74 samples, 1.33%)</title><rect x="91.3529%" y="4964" width="1.3331%" height="15" fill="rgb(233,75,36)"/><text x="91.6029%" y="4974.50"></text></g><g><title>infer_call (astroid/inference.py:229) (42 samples, 0.76%)</title><rect x="91.9294%" y="4980" width="0.7566%" height="15" fill="rgb(225,14,24)"/><text x="92.1794%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (42 samples, 0.76%)</title><rect x="91.9294%" y="4996" width="0.7566%" height="15" fill="rgb(237,193,20)"/><text x="92.1794%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (42 samples, 0.76%)</title><rect x="91.9294%" y="5012" width="0.7566%" height="15" fill="rgb(239,122,19)"/><text x="92.1794%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (42 samples, 0.76%)</title><rect x="91.9294%" y="5028" width="0.7566%" height="15" fill="rgb(231,220,10)"/><text x="92.1794%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (42 samples, 0.76%)</title><rect x="91.9294%" y="5044" width="0.7566%" height="15" fill="rgb(220,66,15)"/><text x="92.1794%" y="5054.50"></text></g><g><title>infer_call (astroid/inference.py:229) (24 samples, 0.43%)</title><rect x="92.2536%" y="5060" width="0.4324%" height="15" fill="rgb(215,171,52)"/><text x="92.5036%" y="5070.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (12 samples, 0.22%)</title><rect x="92.4698%" y="5076" width="0.2162%" height="15" fill="rgb(241,169,50)"/><text x="92.7198%" y="5086.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (12 samples, 0.22%)</title><rect x="92.4698%" y="5092" width="0.2162%" height="15" fill="rgb(236,189,0)"/><text x="92.7198%" y="5102.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (12 samples, 0.22%)</title><rect x="92.4698%" y="5108" width="0.2162%" height="15" fill="rgb(217,147,20)"/><text x="92.7198%" y="5118.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (12 samples, 0.22%)</title><rect x="92.4698%" y="5124" width="0.2162%" height="15" fill="rgb(206,188,39)"/><text x="92.7198%" y="5134.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (12 samples, 0.22%)</title><rect x="92.4698%" y="5140" width="0.2162%" height="15" fill="rgb(227,118,25)"/><text x="92.7198%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="92.4698%" y="5156" width="0.2162%" height="15" fill="rgb(248,171,40)"/><text x="92.7198%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="92.4698%" y="5172" width="0.2162%" height="15" fill="rgb(251,90,54)"/><text x="92.7198%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="92.4698%" y="5188" width="0.2162%" height="15" fill="rgb(234,11,46)"/><text x="92.7198%" y="5198.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="92.4698%" y="5204" width="0.2162%" height="15" fill="rgb(229,134,13)"/><text x="92.7198%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="92.4698%" y="5220" width="0.2162%" height="15" fill="rgb(223,129,3)"/><text x="92.7198%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="92.7400%" y="5092" width="0.1081%" height="15" fill="rgb(221,124,13)"/><text x="92.9900%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="92.7400%" y="5108" width="0.1081%" height="15" fill="rgb(234,3,18)"/><text x="92.9900%" y="5118.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="92.7400%" y="5124" width="0.1081%" height="15" fill="rgb(249,199,20)"/><text x="92.9900%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="92.7400%" y="5140" width="0.1081%" height="15" fill="rgb(224,134,6)"/><text x="92.9900%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="92.7400%" y="5156" width="0.1081%" height="15" fill="rgb(254,83,26)"/><text x="92.9900%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="92.7400%" y="5172" width="0.1081%" height="15" fill="rgb(217,88,9)"/><text x="92.9900%" y="5182.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (11 samples, 0.20%)</title><rect x="92.7400%" y="5060" width="0.1982%" height="15" fill="rgb(225,73,2)"/><text x="92.9900%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="92.7400%" y="5076" width="0.1982%" height="15" fill="rgb(226,44,39)"/><text x="92.9900%" y="5086.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (14 samples, 0.25%)</title><rect x="92.7400%" y="4996" width="0.2522%" height="15" fill="rgb(228,53,17)"/><text x="92.9900%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (14 samples, 0.25%)</title><rect x="92.7400%" y="5012" width="0.2522%" height="15" fill="rgb(212,27,27)"/><text x="92.9900%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (14 samples, 0.25%)</title><rect x="92.7400%" y="5028" width="0.2522%" height="15" fill="rgb(241,50,6)"/><text x="92.9900%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (14 samples, 0.25%)</title><rect x="92.7400%" y="5044" width="0.2522%" height="15" fill="rgb(225,28,51)"/><text x="92.9900%" y="5054.50"></text></g><g><title>igetattr (astroid/bases.py:221) (15 samples, 0.27%)</title><rect x="92.7400%" y="4932" width="0.2702%" height="15" fill="rgb(215,33,16)"/><text x="92.9900%" y="4942.50"></text></g><g><title>getattr (astroid/bases.py:182) (15 samples, 0.27%)</title><rect x="92.7400%" y="4948" width="0.2702%" height="15" fill="rgb(243,40,39)"/><text x="92.9900%" y="4958.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (15 samples, 0.27%)</title><rect x="92.7400%" y="4964" width="0.2702%" height="15" fill="rgb(225,11,42)"/><text x="92.9900%" y="4974.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (15 samples, 0.27%)</title><rect x="92.7400%" y="4980" width="0.2702%" height="15" fill="rgb(241,220,38)"/><text x="92.9900%" y="4990.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (6 samples, 0.11%)</title><rect x="93.0103%" y="4964" width="0.1081%" height="15" fill="rgb(244,52,35)"/><text x="93.2603%" y="4974.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (6 samples, 0.11%)</title><rect x="93.0103%" y="4980" width="0.1081%" height="15" fill="rgb(246,42,46)"/><text x="93.2603%" y="4990.50"></text></g><g><title>infer_call (astroid/inference.py:223) (100 samples, 1.80%)</title><rect x="91.3529%" y="4852" width="1.8015%" height="15" fill="rgb(205,184,13)"/><text x="91.6029%" y="4862.50">i..</text></g><g><title>infer (astroid/node_classes.py:380) (100 samples, 1.80%)</title><rect x="91.3529%" y="4868" width="1.8015%" height="15" fill="rgb(209,48,36)"/><text x="91.6029%" y="4878.50">i..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (100 samples, 1.80%)</title><rect x="91.3529%" y="4884" width="1.8015%" height="15" fill="rgb(244,34,51)"/><text x="91.6029%" y="4894.50">r..</text></g><g><title>wrapped (astroid/decorators.py:99) (100 samples, 1.80%)</title><rect x="91.3529%" y="4900" width="1.8015%" height="15" fill="rgb(221,107,33)"/><text x="91.6029%" y="4910.50">w..</text></g><g><title>infer_attribute (astroid/inference.py:316) (23 samples, 0.41%)</title><rect x="92.7400%" y="4916" width="0.4143%" height="15" fill="rgb(224,203,12)"/><text x="92.9900%" y="4926.50"></text></g><g><title>igetattr (astroid/bases.py:233) (8 samples, 0.14%)</title><rect x="93.0103%" y="4932" width="0.1441%" height="15" fill="rgb(230,215,18)"/><text x="93.2603%" y="4942.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (8 samples, 0.14%)</title><rect x="93.0103%" y="4948" width="0.1441%" height="15" fill="rgb(206,185,35)"/><text x="93.2603%" y="4958.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="93.1724%" y="5188" width="0.1261%" height="15" fill="rgb(228,140,34)"/><text x="93.4224%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="93.1724%" y="5204" width="0.1261%" height="15" fill="rgb(208,93,13)"/><text x="93.4224%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="93.1904%" y="5220" width="0.1081%" height="15" fill="rgb(221,193,39)"/><text x="93.4404%" y="5230.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (13 samples, 0.23%)</title><rect x="93.1724%" y="5124" width="0.2342%" height="15" fill="rgb(241,132,34)"/><text x="93.4224%" y="5134.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="93.1724%" y="5140" width="0.2342%" height="15" fill="rgb(221,141,10)"/><text x="93.4224%" y="5150.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="93.1724%" y="5156" width="0.2342%" height="15" fill="rgb(226,90,31)"/><text x="93.4224%" y="5166.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="93.1724%" y="5172" width="0.2342%" height="15" fill="rgb(243,75,5)"/><text x="93.4224%" y="5182.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (6 samples, 0.11%)</title><rect x="93.2985%" y="5188" width="0.1081%" height="15" fill="rgb(227,156,21)"/><text x="93.5485%" y="5198.50"></text></g><g><title>igetattr (astroid/bases.py:221) (6 samples, 0.11%)</title><rect x="93.2985%" y="5204" width="0.1081%" height="15" fill="rgb(250,195,8)"/><text x="93.5485%" y="5214.50"></text></g><g><title>getattr (astroid/bases.py:182) (6 samples, 0.11%)</title><rect x="93.2985%" y="5220" width="0.1081%" height="15" fill="rgb(220,134,5)"/><text x="93.5485%" y="5230.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (6 samples, 0.11%)</title><rect x="93.2985%" y="5236" width="0.1081%" height="15" fill="rgb(246,106,34)"/><text x="93.5485%" y="5246.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (6 samples, 0.11%)</title><rect x="93.2985%" y="5252" width="0.1081%" height="15" fill="rgb(205,1,4)"/><text x="93.5485%" y="5262.50"></text></g><g><title>__init__ (astroid/exceptions.py:34) (18 samples, 0.32%)</title><rect x="93.5147%" y="5316" width="0.3243%" height="15" fill="rgb(224,151,29)"/><text x="93.7647%" y="5326.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (26 samples, 0.47%)</title><rect x="93.4066%" y="5172" width="0.4684%" height="15" fill="rgb(251,196,0)"/><text x="93.6566%" y="5182.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (26 samples, 0.47%)</title><rect x="93.4066%" y="5188" width="0.4684%" height="15" fill="rgb(212,127,0)"/><text x="93.6566%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (26 samples, 0.47%)</title><rect x="93.4066%" y="5204" width="0.4684%" height="15" fill="rgb(236,71,53)"/><text x="93.6566%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (26 samples, 0.47%)</title><rect x="93.4066%" y="5220" width="0.4684%" height="15" fill="rgb(227,99,0)"/><text x="93.6566%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (26 samples, 0.47%)</title><rect x="93.4066%" y="5236" width="0.4684%" height="15" fill="rgb(239,89,21)"/><text x="93.6566%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (21 samples, 0.38%)</title><rect x="93.4967%" y="5252" width="0.3783%" height="15" fill="rgb(243,122,19)"/><text x="93.7467%" y="5262.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:616) (20 samples, 0.36%)</title><rect x="93.5147%" y="5268" width="0.3603%" height="15" fill="rgb(229,192,45)"/><text x="93.7647%" y="5278.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:598) (20 samples, 0.36%)</title><rect x="93.5147%" y="5284" width="0.3603%" height="15" fill="rgb(235,165,35)"/><text x="93.7647%" y="5294.50"></text></g><g><title>__init__ (astroid/exceptions.py:197) (20 samples, 0.36%)</title><rect x="93.5147%" y="5300" width="0.3603%" height="15" fill="rgb(253,202,0)"/><text x="93.7647%" y="5310.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (27 samples, 0.49%)</title><rect x="93.4066%" y="5140" width="0.4864%" height="15" fill="rgb(235,51,20)"/><text x="93.6566%" y="5150.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (27 samples, 0.49%)</title><rect x="93.4066%" y="5156" width="0.4864%" height="15" fill="rgb(218,95,46)"/><text x="93.6566%" y="5166.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2494) (6 samples, 0.11%)</title><rect x="93.8930%" y="5156" width="0.1081%" height="15" fill="rgb(212,81,10)"/><text x="94.1430%" y="5166.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2340) (6 samples, 0.11%)</title><rect x="93.8930%" y="5172" width="0.1081%" height="15" fill="rgb(240,59,0)"/><text x="94.1430%" y="5182.50"></text></g><g><title>__exit__ (contextlib.py:120) (6 samples, 0.11%)</title><rect x="93.8930%" y="5188" width="0.1081%" height="15" fill="rgb(212,191,42)"/><text x="94.1430%" y="5198.50"></text></g><g><title>restore_path (astroid/context.py:116) (6 samples, 0.11%)</title><rect x="93.8930%" y="5204" width="0.1081%" height="15" fill="rgb(233,140,3)"/><text x="94.1430%" y="5214.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (8 samples, 0.14%)</title><rect x="94.0011%" y="5284" width="0.1441%" height="15" fill="rgb(215,69,23)"/><text x="94.2511%" y="5294.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="94.0011%" y="5300" width="0.1441%" height="15" fill="rgb(240,202,20)"/><text x="94.2511%" y="5310.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="94.0371%" y="5316" width="0.1081%" height="15" fill="rgb(209,146,50)"/><text x="94.2871%" y="5326.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="94.0371%" y="5332" width="0.1081%" height="15" fill="rgb(253,102,54)"/><text x="94.2871%" y="5342.50"></text></g><g><title>_metaclass_lookup_attribute (astroid/scoped_nodes.py:2520) (9 samples, 0.16%)</title><rect x="94.0011%" y="5172" width="0.1621%" height="15" fill="rgb(250,173,47)"/><text x="94.2511%" y="5182.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="94.0011%" y="5188" width="0.1621%" height="15" fill="rgb(232,142,7)"/><text x="94.2511%" y="5198.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (9 samples, 0.16%)</title><rect x="94.0011%" y="5204" width="0.1621%" height="15" fill="rgb(230,157,47)"/><text x="94.2511%" y="5214.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (9 samples, 0.16%)</title><rect x="94.0011%" y="5220" width="0.1621%" height="15" fill="rgb(214,177,35)"/><text x="94.2511%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="94.0011%" y="5236" width="0.1621%" height="15" fill="rgb(234,119,46)"/><text x="94.2511%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="94.0011%" y="5252" width="0.1621%" height="15" fill="rgb(241,180,50)"/><text x="94.2511%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="94.0011%" y="5268" width="0.1621%" height="15" fill="rgb(221,54,25)"/><text x="94.2511%" y="5278.50"></text></g><g><title>infer_call (astroid/inference.py:223) (58 samples, 1.04%)</title><rect x="93.1724%" y="5060" width="1.0449%" height="15" fill="rgb(209,157,44)"/><text x="93.4224%" y="5070.50"></text></g><g><title>infer (astroid/node_classes.py:380) (58 samples, 1.04%)</title><rect x="93.1724%" y="5076" width="1.0449%" height="15" fill="rgb(246,115,41)"/><text x="93.4224%" y="5086.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (58 samples, 1.04%)</title><rect x="93.1724%" y="5092" width="1.0449%" height="15" fill="rgb(229,86,1)"/><text x="93.4224%" y="5102.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (58 samples, 1.04%)</title><rect x="93.1724%" y="5108" width="1.0449%" height="15" fill="rgb(240,108,53)"/><text x="93.4224%" y="5118.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (45 samples, 0.81%)</title><rect x="93.4066%" y="5124" width="0.8107%" height="15" fill="rgb(227,134,2)"/><text x="93.6566%" y="5134.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2570) (18 samples, 0.32%)</title><rect x="93.8930%" y="5140" width="0.3243%" height="15" fill="rgb(213,129,25)"/><text x="94.1430%" y="5150.50"></text></g><g><title>getattr (astroid/scoped_nodes.py:2498) (12 samples, 0.22%)</title><rect x="94.0011%" y="5156" width="0.2162%" height="15" fill="rgb(226,35,21)"/><text x="94.2511%" y="5166.50"></text></g><g><title>infer_call (astroid/inference.py:223) (10 samples, 0.18%)</title><rect x="94.2173%" y="5140" width="0.1801%" height="15" fill="rgb(208,129,26)"/><text x="94.4673%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (10 samples, 0.18%)</title><rect x="94.2173%" y="5156" width="0.1801%" height="15" fill="rgb(224,83,6)"/><text x="94.4673%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (10 samples, 0.18%)</title><rect x="94.2173%" y="5172" width="0.1801%" height="15" fill="rgb(227,52,39)"/><text x="94.4673%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="94.2893%" y="5188" width="0.1081%" height="15" fill="rgb(241,30,17)"/><text x="94.5393%" y="5198.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (6 samples, 0.11%)</title><rect x="94.2893%" y="5204" width="0.1081%" height="15" fill="rgb(246,186,42)"/><text x="94.5393%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="94.2893%" y="5220" width="0.1081%" height="15" fill="rgb(221,169,15)"/><text x="94.5393%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="94.2893%" y="5236" width="0.1081%" height="15" fill="rgb(235,108,21)"/><text x="94.5393%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="94.3974%" y="5284" width="0.1982%" height="15" fill="rgb(219,148,30)"/><text x="94.6474%" y="5294.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (11 samples, 0.20%)</title><rect x="94.3974%" y="5300" width="0.1982%" height="15" fill="rgb(220,109,5)"/><text x="94.6474%" y="5310.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (11 samples, 0.20%)</title><rect x="94.3974%" y="5316" width="0.1982%" height="15" fill="rgb(213,203,48)"/><text x="94.6474%" y="5326.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (11 samples, 0.20%)</title><rect x="94.3974%" y="5332" width="0.1982%" height="15" fill="rgb(244,71,33)"/><text x="94.6474%" y="5342.50"></text></g><g><title>infer (astroid/node_classes.py:380) (11 samples, 0.20%)</title><rect x="94.3974%" y="5348" width="0.1982%" height="15" fill="rgb(209,23,2)"/><text x="94.6474%" y="5358.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (11 samples, 0.20%)</title><rect x="94.3974%" y="5364" width="0.1982%" height="15" fill="rgb(219,97,7)"/><text x="94.6474%" y="5374.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (10 samples, 0.18%)</title><rect x="94.4154%" y="5380" width="0.1801%" height="15" fill="rgb(216,161,23)"/><text x="94.6654%" y="5390.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (10 samples, 0.18%)</title><rect x="94.4154%" y="5396" width="0.1801%" height="15" fill="rgb(207,45,42)"/><text x="94.6654%" y="5406.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2215) (13 samples, 0.23%)</title><rect x="94.3974%" y="5156" width="0.2342%" height="15" fill="rgb(241,61,4)"/><text x="94.6474%" y="5166.50"></text></g><g><title>is_subtype_of (astroid/scoped_nodes.py:2166) (13 samples, 0.23%)</title><rect x="94.3974%" y="5172" width="0.2342%" height="15" fill="rgb(236,170,1)"/><text x="94.6474%" y="5182.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (13 samples, 0.23%)</title><rect x="94.3974%" y="5188" width="0.2342%" height="15" fill="rgb(239,72,5)"/><text x="94.6474%" y="5198.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="94.3974%" y="5204" width="0.2342%" height="15" fill="rgb(214,13,50)"/><text x="94.6474%" y="5214.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (13 samples, 0.23%)</title><rect x="94.3974%" y="5220" width="0.2342%" height="15" fill="rgb(224,88,9)"/><text x="94.6474%" y="5230.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (13 samples, 0.23%)</title><rect x="94.3974%" y="5236" width="0.2342%" height="15" fill="rgb(238,192,34)"/><text x="94.6474%" y="5246.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (13 samples, 0.23%)</title><rect x="94.3974%" y="5252" width="0.2342%" height="15" fill="rgb(217,203,50)"/><text x="94.6474%" y="5262.50"></text></g><g><title>infer (astroid/node_classes.py:380) (13 samples, 0.23%)</title><rect x="94.3974%" y="5268" width="0.2342%" height="15" fill="rgb(241,123,32)"/><text x="94.6474%" y="5278.50"></text></g><g><title>_compute_mro (astroid/scoped_nodes.py:2951) (6 samples, 0.11%)</title><rect x="94.6856%" y="5204" width="0.1081%" height="15" fill="rgb(248,151,39)"/><text x="94.9356%" y="5214.50"></text></g><g><title>_inferred_bases (astroid/scoped_nodes.py:2938) (6 samples, 0.11%)</title><rect x="94.6856%" y="5220" width="0.1081%" height="15" fill="rgb(208,89,6)"/><text x="94.9356%" y="5230.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="94.6856%" y="5236" width="0.1081%" height="15" fill="rgb(254,43,26)"/><text x="94.9356%" y="5246.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="94.6856%" y="5252" width="0.1081%" height="15" fill="rgb(216,158,13)"/><text x="94.9356%" y="5262.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="94.6856%" y="5268" width="0.1081%" height="15" fill="rgb(212,47,37)"/><text x="94.9356%" y="5278.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (194 samples, 3.49%)</title><rect x="91.3169%" y="4788" width="3.4949%" height="15" fill="rgb(254,16,10)"/><text x="91.5669%" y="4798.50">inf..</text></g><g><title>infer (astroid/node_classes.py:380) (194 samples, 3.49%)</title><rect x="91.3169%" y="4804" width="3.4949%" height="15" fill="rgb(223,228,16)"/><text x="91.5669%" y="4814.50">inf..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (194 samples, 3.49%)</title><rect x="91.3169%" y="4820" width="3.4949%" height="15" fill="rgb(249,108,50)"/><text x="91.5669%" y="4830.50">rai..</text></g><g><title>wrapped (astroid/decorators.py:99) (194 samples, 3.49%)</title><rect x="91.3169%" y="4836" width="3.4949%" height="15" fill="rgb(208,220,5)"/><text x="91.5669%" y="4846.50">wra..</text></g><g><title>infer_call (astroid/inference.py:229) (92 samples, 1.66%)</title><rect x="93.1544%" y="4852" width="1.6574%" height="15" fill="rgb(217,89,48)"/><text x="93.4044%" y="4862.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (91 samples, 1.64%)</title><rect x="93.1724%" y="4868" width="1.6393%" height="15" fill="rgb(212,113,41)"/><text x="93.4224%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:380) (91 samples, 1.64%)</title><rect x="93.1724%" y="4884" width="1.6393%" height="15" fill="rgb(231,127,5)"/><text x="93.4224%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (91 samples, 1.64%)</title><rect x="93.1724%" y="4900" width="1.6393%" height="15" fill="rgb(217,141,17)"/><text x="93.4224%" y="4910.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (91 samples, 1.64%)</title><rect x="93.1724%" y="4916" width="1.6393%" height="15" fill="rgb(245,125,54)"/><text x="93.4224%" y="4926.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (91 samples, 1.64%)</title><rect x="93.1724%" y="4932" width="1.6393%" height="15" fill="rgb(248,125,3)"/><text x="93.4224%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (91 samples, 1.64%)</title><rect x="93.1724%" y="4948" width="1.6393%" height="15" fill="rgb(236,119,51)"/><text x="93.4224%" y="4958.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (91 samples, 1.64%)</title><rect x="93.1724%" y="4964" width="1.6393%" height="15" fill="rgb(239,99,8)"/><text x="93.4224%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (91 samples, 1.64%)</title><rect x="93.1724%" y="4980" width="1.6393%" height="15" fill="rgb(224,228,4)"/><text x="93.4224%" y="4990.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (91 samples, 1.64%)</title><rect x="93.1724%" y="4996" width="1.6393%" height="15" fill="rgb(220,131,45)"/><text x="93.4224%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (91 samples, 1.64%)</title><rect x="93.1724%" y="5012" width="1.6393%" height="15" fill="rgb(215,62,5)"/><text x="93.4224%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (91 samples, 1.64%)</title><rect x="93.1724%" y="5028" width="1.6393%" height="15" fill="rgb(253,12,24)"/><text x="93.4224%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (91 samples, 1.64%)</title><rect x="93.1724%" y="5044" width="1.6393%" height="15" fill="rgb(248,120,50)"/><text x="93.4224%" y="5054.50"></text></g><g><title>infer_call (astroid/inference.py:229) (33 samples, 0.59%)</title><rect x="94.2173%" y="5060" width="0.5945%" height="15" fill="rgb(245,194,10)"/><text x="94.4673%" y="5070.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (33 samples, 0.59%)</title><rect x="94.2173%" y="5076" width="0.5945%" height="15" fill="rgb(241,149,38)"/><text x="94.4673%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (33 samples, 0.59%)</title><rect x="94.2173%" y="5092" width="0.5945%" height="15" fill="rgb(219,215,7)"/><text x="94.4673%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (33 samples, 0.59%)</title><rect x="94.2173%" y="5108" width="0.5945%" height="15" fill="rgb(208,120,31)"/><text x="94.4673%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (33 samples, 0.59%)</title><rect x="94.2173%" y="5124" width="0.5945%" height="15" fill="rgb(244,30,8)"/><text x="94.4673%" y="5134.50"></text></g><g><title>infer_call (astroid/inference.py:229) (23 samples, 0.41%)</title><rect x="94.3974%" y="5140" width="0.4143%" height="15" fill="rgb(238,35,44)"/><text x="94.6474%" y="5150.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:2234) (7 samples, 0.13%)</title><rect x="94.6856%" y="5156" width="0.1261%" height="15" fill="rgb(243,218,37)"/><text x="94.9356%" y="5166.50"></text></g><g><title>instantiate_class (astroid/scoped_nodes.py:2445) (7 samples, 0.13%)</title><rect x="94.6856%" y="5172" width="0.1261%" height="15" fill="rgb(218,169,10)"/><text x="94.9356%" y="5182.50"></text></g><g><title>mro (astroid/scoped_nodes.py:2982) (7 samples, 0.13%)</title><rect x="94.6856%" y="5188" width="0.1261%" height="15" fill="rgb(221,144,10)"/><text x="94.9356%" y="5198.50"></text></g><g><title>infer_call (astroid/inference.py:223) (217 samples, 3.91%)</title><rect x="91.1728%" y="4724" width="3.9092%" height="15" fill="rgb(226,41,38)"/><text x="91.4228%" y="4734.50">infe..</text></g><g><title>infer (astroid/node_classes.py:380) (217 samples, 3.91%)</title><rect x="91.1728%" y="4740" width="3.9092%" height="15" fill="rgb(228,3,1)"/><text x="91.4228%" y="4750.50">infe..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (217 samples, 3.91%)</title><rect x="91.1728%" y="4756" width="3.9092%" height="15" fill="rgb(209,129,12)"/><text x="91.4228%" y="4766.50">rais..</text></g><g><title>wrapped (astroid/decorators.py:99) (216 samples, 3.89%)</title><rect x="91.1908%" y="4772" width="3.8912%" height="15" fill="rgb(213,136,33)"/><text x="91.4408%" y="4782.50">wrap..</text></g><g><title>infer_attribute (astroid/inference.py:316) (13 samples, 0.23%)</title><rect x="94.8478%" y="4788" width="0.2342%" height="15" fill="rgb(209,181,29)"/><text x="95.0978%" y="4798.50"></text></g><g><title>igetattr (astroid/bases.py:233) (9 samples, 0.16%)</title><rect x="94.9198%" y="4804" width="0.1621%" height="15" fill="rgb(234,173,18)"/><text x="95.1698%" y="4814.50"></text></g><g><title>_wrap_attr (astroid/bases.py:239) (9 samples, 0.16%)</title><rect x="94.9198%" y="4820" width="0.1621%" height="15" fill="rgb(227,73,47)"/><text x="95.1698%" y="4830.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:2568) (9 samples, 0.16%)</title><rect x="94.9198%" y="4836" width="0.1621%" height="15" fill="rgb(234,9,34)"/><text x="95.1698%" y="4846.50"></text></g><g><title>metaclass (astroid/scoped_nodes.py:2807) (9 samples, 0.16%)</title><rect x="94.9198%" y="4852" width="0.1621%" height="15" fill="rgb(235,172,15)"/><text x="95.1698%" y="4862.50"></text></g><g><title>_find_metaclass (astroid/scoped_nodes.py:2788) (9 samples, 0.16%)</title><rect x="94.9198%" y="4868" width="0.1621%" height="15" fill="rgb(245,61,2)"/><text x="95.1698%" y="4878.50"></text></g><g><title>declared_metaclass (astroid/scoped_nodes.py:2762) (9 samples, 0.16%)</title><rect x="94.9198%" y="4884" width="0.1621%" height="15" fill="rgb(238,39,47)"/><text x="95.1698%" y="4894.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="94.9198%" y="4900" width="0.1621%" height="15" fill="rgb(234,37,24)"/><text x="95.1698%" y="4910.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (9 samples, 0.16%)</title><rect x="94.9198%" y="4916" width="0.1621%" height="15" fill="rgb(248,223,24)"/><text x="95.1698%" y="4926.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="94.9198%" y="4932" width="0.1621%" height="15" fill="rgb(223,12,15)"/><text x="95.1698%" y="4942.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (9 samples, 0.16%)</title><rect x="94.9198%" y="4948" width="0.1621%" height="15" fill="rgb(249,6,3)"/><text x="95.1698%" y="4958.50"></text></g><g><title>igetattr (astroid/scoped_nodes.py:619) (8 samples, 0.14%)</title><rect x="94.9378%" y="4964" width="0.1441%" height="15" fill="rgb(237,105,33)"/><text x="95.1878%" y="4974.50"></text></g><g><title>__str__ (astroid/exceptions.py:40) (8 samples, 0.14%)</title><rect x="94.9378%" y="4980" width="0.1441%" height="15" fill="rgb(252,208,35)"/><text x="95.1878%" y="4990.50"></text></g><g><title>__repr__ (astroid/node_classes.py:437) (7 samples, 0.13%)</title><rect x="94.9559%" y="4996" width="0.1261%" height="15" fill="rgb(215,181,35)"/><text x="95.2059%" y="5006.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (7 samples, 0.13%)</title><rect x="95.1180%" y="5204" width="0.1261%" height="15" fill="rgb(246,212,3)"/><text x="95.3680%" y="5214.50"></text></g><g><title>infer (astroid/node_classes.py:380) (7 samples, 0.13%)</title><rect x="95.1180%" y="5220" width="0.1261%" height="15" fill="rgb(247,156,24)"/><text x="95.3680%" y="5230.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (7 samples, 0.13%)</title><rect x="95.1180%" y="5236" width="0.1261%" height="15" fill="rgb(248,9,31)"/><text x="95.3680%" y="5246.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.1360%" y="5252" width="0.1081%" height="15" fill="rgb(234,26,45)"/><text x="95.3860%" y="5262.50"></text></g><g><title>_infer_stmts (astroid/bases.py:124) (6 samples, 0.11%)</title><rect x="95.1360%" y="5268" width="0.1081%" height="15" fill="rgb(249,11,32)"/><text x="95.3860%" y="5278.50"></text></g><g><title>clone (astroid/context.py:106) (6 samples, 0.11%)</title><rect x="95.1360%" y="5284" width="0.1081%" height="15" fill="rgb(249,162,33)"/><text x="95.3860%" y="5294.50"></text></g><g><title>igetattr (astroid/bases.py:221) (12 samples, 0.22%)</title><rect x="95.1180%" y="5012" width="0.2162%" height="15" fill="rgb(232,4,32)"/><text x="95.3680%" y="5022.50"></text></g><g><title>getattr (astroid/bases.py:182) (12 samples, 0.22%)</title><rect x="95.1180%" y="5028" width="0.2162%" height="15" fill="rgb(212,5,45)"/><text x="95.3680%" y="5038.50"></text></g><g><title>instance_attr (astroid/scoped_nodes.py:2428) (12 samples, 0.22%)</title><rect x="95.1180%" y="5044" width="0.2162%" height="15" fill="rgb(227,95,13)"/><text x="95.3680%" y="5054.50"></text></g><g><title>instance_attr_ancestors (astroid/scoped_nodes.py:2373) (12 samples, 0.22%)</title><rect x="95.1180%" y="5060" width="0.2162%" height="15" fill="rgb(223,205,10)"/><text x="95.3680%" y="5070.50"></text></g><g><title>ancestors (astroid/scoped_nodes.py:2318) (12 samples, 0.22%)</title><rect x="95.1180%" y="5076" width="0.2162%" height="15" fill="rgb(222,178,8)"/><text x="95.3680%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="95.1180%" y="5092" width="0.2162%" height="15" fill="rgb(216,13,22)"/><text x="95.3680%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="95.1180%" y="5108" width="0.2162%" height="15" fill="rgb(240,167,12)"/><text x="95.3680%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="95.1180%" y="5124" width="0.2162%" height="15" fill="rgb(235,68,35)"/><text x="95.3680%" y="5134.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (12 samples, 0.22%)</title><rect x="95.1180%" y="5140" width="0.2162%" height="15" fill="rgb(253,40,27)"/><text x="95.3680%" y="5150.50"></text></g><g><title>infer (astroid/node_classes.py:380) (12 samples, 0.22%)</title><rect x="95.1180%" y="5156" width="0.2162%" height="15" fill="rgb(214,19,28)"/><text x="95.3680%" y="5166.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (12 samples, 0.22%)</title><rect x="95.1180%" y="5172" width="0.2162%" height="15" fill="rgb(210,167,45)"/><text x="95.3680%" y="5182.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (12 samples, 0.22%)</title><rect x="95.1180%" y="5188" width="0.2162%" height="15" fill="rgb(232,97,40)"/><text x="95.3680%" y="5198.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (243 samples, 4.38%)</title><rect x="91.1007%" y="4692" width="4.3776%" height="15" fill="rgb(250,35,23)"/><text x="91.3507%" y="4702.50">raise..</text></g><g><title>wrapped (astroid/decorators.py:99) (241 samples, 4.34%)</title><rect x="91.1367%" y="4708" width="4.3416%" height="15" fill="rgb(248,47,53)"/><text x="91.3867%" y="4718.50">wrapp..</text></g><g><title>infer_call (astroid/inference.py:229) (22 samples, 0.40%)</title><rect x="95.0820%" y="4724" width="0.3963%" height="15" fill="rgb(226,58,50)"/><text x="95.3320%" y="4734.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (22 samples, 0.40%)</title><rect x="95.0820%" y="4740" width="0.3963%" height="15" fill="rgb(217,105,26)"/><text x="95.3320%" y="4750.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="95.0820%" y="4756" width="0.3963%" height="15" fill="rgb(208,64,1)"/><text x="95.3320%" y="4766.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="95.0820%" y="4772" width="0.3963%" height="15" fill="rgb(214,80,1)"/><text x="95.3320%" y="4782.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="95.0820%" y="4788" width="0.3963%" height="15" fill="rgb(206,175,26)"/><text x="95.3320%" y="4798.50"></text></g><g><title>infer_call (astroid/inference.py:223) (22 samples, 0.40%)</title><rect x="95.0820%" y="4804" width="0.3963%" height="15" fill="rgb(235,156,37)"/><text x="95.3320%" y="4814.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="95.0820%" y="4820" width="0.3963%" height="15" fill="rgb(213,100,9)"/><text x="95.3320%" y="4830.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="95.0820%" y="4836" width="0.3963%" height="15" fill="rgb(241,15,13)"/><text x="95.3320%" y="4846.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="95.0820%" y="4852" width="0.3963%" height="15" fill="rgb(205,97,43)"/><text x="95.3320%" y="4862.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (22 samples, 0.40%)</title><rect x="95.0820%" y="4868" width="0.3963%" height="15" fill="rgb(216,106,32)"/><text x="95.3320%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="95.0820%" y="4884" width="0.3963%" height="15" fill="rgb(226,200,8)"/><text x="95.3320%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="95.0820%" y="4900" width="0.3963%" height="15" fill="rgb(244,54,29)"/><text x="95.3320%" y="4910.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (22 samples, 0.40%)</title><rect x="95.0820%" y="4916" width="0.3963%" height="15" fill="rgb(252,169,12)"/><text x="95.3320%" y="4926.50"></text></g><g><title>infer_subscript (astroid/inference.py:364) (22 samples, 0.40%)</title><rect x="95.0820%" y="4932" width="0.3963%" height="15" fill="rgb(231,199,11)"/><text x="95.3320%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (22 samples, 0.40%)</title><rect x="95.0820%" y="4948" width="0.3963%" height="15" fill="rgb(233,191,18)"/><text x="95.3320%" y="4958.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (22 samples, 0.40%)</title><rect x="95.0820%" y="4964" width="0.3963%" height="15" fill="rgb(215,83,47)"/><text x="95.3320%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (21 samples, 0.38%)</title><rect x="95.1000%" y="4980" width="0.3783%" height="15" fill="rgb(251,67,19)"/><text x="95.3500%" y="4990.50"></text></g><g><title>infer_attribute (astroid/inference.py:316) (20 samples, 0.36%)</title><rect x="95.1180%" y="4996" width="0.3603%" height="15" fill="rgb(240,7,20)"/><text x="95.3680%" y="5006.50"></text></g><g><title>igetattr (astroid/bases.py:222) (8 samples, 0.14%)</title><rect x="95.3342%" y="5012" width="0.1441%" height="15" fill="rgb(210,150,26)"/><text x="95.5842%" y="5022.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (8 samples, 0.14%)</title><rect x="95.3342%" y="5028" width="0.1441%" height="15" fill="rgb(228,75,42)"/><text x="95.5842%" y="5038.50"></text></g><g><title>infer (astroid/node_classes.py:380) (8 samples, 0.14%)</title><rect x="95.3342%" y="5044" width="0.1441%" height="15" fill="rgb(237,134,48)"/><text x="95.5842%" y="5054.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (8 samples, 0.14%)</title><rect x="95.3342%" y="5060" width="0.1441%" height="15" fill="rgb(205,80,50)"/><text x="95.5842%" y="5070.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (7 samples, 0.13%)</title><rect x="95.3522%" y="5076" width="0.1261%" height="15" fill="rgb(217,74,48)"/><text x="95.6022%" y="5086.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (7 samples, 0.13%)</title><rect x="95.3522%" y="5092" width="0.1261%" height="15" fill="rgb(205,82,50)"/><text x="95.6022%" y="5102.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.3702%" y="5108" width="0.1081%" height="15" fill="rgb(228,1,33)"/><text x="95.6202%" y="5118.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="95.3702%" y="5124" width="0.1081%" height="15" fill="rgb(214,50,23)"/><text x="95.6202%" y="5134.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.3702%" y="5140" width="0.1081%" height="15" fill="rgb(210,62,9)"/><text x="95.6202%" y="5150.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="95.3702%" y="5156" width="0.1081%" height="15" fill="rgb(210,104,37)"/><text x="95.6202%" y="5166.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.3702%" y="5172" width="0.1081%" height="15" fill="rgb(232,104,43)"/><text x="95.6202%" y="5182.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:135) (6 samples, 0.11%)</title><rect x="95.3702%" y="5188" width="0.1081%" height="15" fill="rgb(244,52,6)"/><text x="95.6202%" y="5198.50"></text></g><g><title>infer_call (astroid/inference.py:223) (6 samples, 0.11%)</title><rect x="95.5323%" y="4852" width="0.1081%" height="15" fill="rgb(211,174,52)"/><text x="95.7823%" y="4862.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.5323%" y="4868" width="0.1081%" height="15" fill="rgb(229,48,4)"/><text x="95.7823%" y="4878.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="95.5323%" y="4884" width="0.1081%" height="15" fill="rgb(205,155,16)"/><text x="95.7823%" y="4894.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.5323%" y="4900" width="0.1081%" height="15" fill="rgb(211,141,53)"/><text x="95.7823%" y="4910.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (6 samples, 0.11%)</title><rect x="95.5323%" y="4916" width="0.1081%" height="15" fill="rgb(240,148,11)"/><text x="95.7823%" y="4926.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.5323%" y="4932" width="0.1081%" height="15" fill="rgb(214,45,23)"/><text x="95.7823%" y="4942.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="95.5323%" y="4948" width="0.1081%" height="15" fill="rgb(248,74,26)"/><text x="95.7823%" y="4958.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.5323%" y="4964" width="0.1081%" height="15" fill="rgb(218,121,16)"/><text x="95.7823%" y="4974.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="95.5323%" y="4980" width="0.1081%" height="15" fill="rgb(218,10,47)"/><text x="95.7823%" y="4990.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="95.5323%" y="4996" width="0.1081%" height="15" fill="rgb(227,99,14)"/><text x="95.7823%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.5323%" y="5012" width="0.1081%" height="15" fill="rgb(229,83,46)"/><text x="95.7823%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="95.5323%" y="5028" width="0.1081%" height="15" fill="rgb(228,25,1)"/><text x="95.7823%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.5323%" y="5044" width="0.1081%" height="15" fill="rgb(252,190,15)"/><text x="95.7823%" y="5054.50"></text></g><g><title>infer_call (astroid/inference.py:223) (17 samples, 0.31%)</title><rect x="95.4963%" y="4724" width="0.3063%" height="15" fill="rgb(213,103,51)"/><text x="95.7463%" y="4734.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="95.4963%" y="4740" width="0.3063%" height="15" fill="rgb(220,38,44)"/><text x="95.7463%" y="4750.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (17 samples, 0.31%)</title><rect x="95.4963%" y="4756" width="0.3063%" height="15" fill="rgb(210,45,26)"/><text x="95.7463%" y="4766.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="95.4963%" y="4772" width="0.3063%" height="15" fill="rgb(205,95,48)"/><text x="95.7463%" y="4782.50"></text></g><g><title>infer_attribute (astroid/inference.py:289) (17 samples, 0.31%)</title><rect x="95.4963%" y="4788" width="0.3063%" height="15" fill="rgb(225,179,37)"/><text x="95.7463%" y="4798.50"></text></g><g><title>infer (astroid/node_classes.py:380) (17 samples, 0.31%)</title><rect x="95.4963%" y="4804" width="0.3063%" height="15" fill="rgb(230,209,3)"/><text x="95.7463%" y="4814.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (17 samples, 0.31%)</title><rect x="95.4963%" y="4820" width="0.3063%" height="15" fill="rgb(248,12,46)"/><text x="95.7463%" y="4830.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (17 samples, 0.31%)</title><rect x="95.4963%" y="4836" width="0.3063%" height="15" fill="rgb(234,18,0)"/><text x="95.7463%" y="4846.50"></text></g><g><title>infer_call (astroid/inference.py:229) (9 samples, 0.16%)</title><rect x="95.6404%" y="4852" width="0.1621%" height="15" fill="rgb(238,197,14)"/><text x="95.8904%" y="4862.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (9 samples, 0.16%)</title><rect x="95.6404%" y="4868" width="0.1621%" height="15" fill="rgb(251,162,48)"/><text x="95.8904%" y="4878.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="95.6404%" y="4884" width="0.1621%" height="15" fill="rgb(237,73,42)"/><text x="95.8904%" y="4894.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="95.6404%" y="4900" width="0.1621%" height="15" fill="rgb(211,108,8)"/><text x="95.8904%" y="4910.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="95.6404%" y="4916" width="0.1621%" height="15" fill="rgb(213,45,22)"/><text x="95.8904%" y="4926.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="95.6404%" y="4932" width="0.1621%" height="15" fill="rgb(252,154,5)"/><text x="95.8904%" y="4942.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="95.6404%" y="4948" width="0.1621%" height="15" fill="rgb(221,79,52)"/><text x="95.8904%" y="4958.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="95.6404%" y="4964" width="0.1621%" height="15" fill="rgb(229,220,36)"/><text x="95.8904%" y="4974.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="95.6404%" y="4980" width="0.1621%" height="15" fill="rgb(211,17,16)"/><text x="95.8904%" y="4990.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (9 samples, 0.16%)</title><rect x="95.6404%" y="4996" width="0.1621%" height="15" fill="rgb(222,55,31)"/><text x="95.8904%" y="5006.50"></text></g><g><title>infer (astroid/node_classes.py:380) (9 samples, 0.16%)</title><rect x="95.6404%" y="5012" width="0.1621%" height="15" fill="rgb(221,221,31)"/><text x="95.8904%" y="5022.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (9 samples, 0.16%)</title><rect x="95.6404%" y="5028" width="0.1621%" height="15" fill="rgb(227,168,26)"/><text x="95.8904%" y="5038.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (9 samples, 0.16%)</title><rect x="95.6404%" y="5044" width="0.1621%" height="15" fill="rgb(224,139,9)"/><text x="95.8904%" y="5054.50"></text></g><g><title>infer_call (astroid/inference.py:229) (6 samples, 0.11%)</title><rect x="95.6945%" y="5060" width="0.1081%" height="15" fill="rgb(254,172,0)"/><text x="95.9445%" y="5070.50"></text></g><g><title>infer_call_result (astroid/scoped_nodes.py:1771) (6 samples, 0.11%)</title><rect x="95.6945%" y="5076" width="0.1081%" height="15" fill="rgb(235,203,1)"/><text x="95.9445%" y="5086.50"></text></g><g><title>infer (astroid/node_classes.py:380) (6 samples, 0.11%)</title><rect x="95.6945%" y="5092" width="0.1081%" height="15" fill="rgb(216,205,24)"/><text x="95.9445%" y="5102.50"></text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (6 samples, 0.11%)</title><rect x="95.6945%" y="5108" width="0.1081%" height="15" fill="rgb(233,24,6)"/><text x="95.9445%" y="5118.50"></text></g><g><title>wrapped (astroid/decorators.py:99) (6 samples, 0.11%)</title><rect x="95.6945%" y="5124" width="0.1081%" height="15" fill="rgb(244,110,9)"/><text x="95.9445%" y="5134.50"></text></g><g><title>_infer_stmts (astroid/bases.py:136) (716 samples, 12.90%)</title><rect x="82.9760%" y="4260" width="12.8986%" height="15" fill="rgb(239,222,42)"/><text x="83.2260%" y="4270.50">_infer_stmts (astro..</text></g><g><title>infer (astroid/node_classes.py:380) (716 samples, 12.90%)</title><rect x="82.9760%" y="4276" width="12.8986%" height="15" fill="rgb(218,145,13)"/><text x="83.2260%" y="4286.50">infer (astroid/node..</text></g><g><title>raise_if_nothing_inferred (astroid/decorators.py:145) (716 samples, 12.90%)</title><rect x="82.9760%" y="4292" width="12.8986%" height="15" fill="rgb(207,69,11)"/><text x="83.2260%" y="4302.50">raise_if_nothing_in..</text></g><g><title>wrapped (astroid/decorators.py:99) (716 samples, 12.90%)</title><rect x="82.9760%" y="4308" width="12.8986%" height="15" fill="rgb(220,223,22)"/><text x="83.2260%" y="4318.50">wrapped (astroid/de..</text></g><g><title>_infer_stmts (astroid/bases.py:136) (716 samples, 12.90%)</title><rect x="82.9760%" y="4324" width="12.8986%" height="15" fill="rgb(245,102,5)"/><text x="83.2260%" y="4334.50">_infer_stmts (astro..</text></g><g><title>infer (astroid/node_classes.py:380) (716 samples, 12.90%)</title><rect x="8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment