Skip to content

Instantly share code, notes, and snippets.

@mckelvin
Last active May 26, 2017 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mckelvin/a806d305eb47a46667ed302e264d4eb7 to your computer and use it in GitHub Desktop.
Save mckelvin/a806d305eb47a46667ed302e264d4eb7 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="738" onload="init(evt)" viewBox="0 0 1200 738" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
if (func != null)
func = func.replace(/ .*/, "");
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="738.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="721" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="721" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:394 (8 samples, 0.05%)</title><rect x="1099.1" y="497" width="0.6" height="15.0" fill="rgb(217,105,45)" rx="2" ry="2" />
<text text-anchor="" x="1102.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (64 samples, 0.40%)</title><rect x="851.3" y="449" width="4.7" height="15.0" fill="rgb(230,3,21)" rx="2" ry="2" />
<text text-anchor="" x="854.34" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (10 samples, 0.06%)</title><rect x="77.5" y="481" width="0.8" height="15.0" fill="rgb(242,138,22)" rx="2" ry="2" />
<text text-anchor="" x="80.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (31 samples, 0.19%)</title><rect x="447.1" y="257" width="2.3" height="15.0" fill="rgb(211,153,9)" rx="2" ry="2" />
<text text-anchor="" x="450.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (5 samples, 0.03%)</title><rect x="295.1" y="369" width="0.4" height="15.0" fill="rgb(234,207,43)" rx="2" ry="2" />
<text text-anchor="" x="298.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (70 samples, 0.43%)</title><rect x="275.6" y="353" width="5.1" height="15.0" fill="rgb(242,129,39)" rx="2" ry="2" />
<text text-anchor="" x="278.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:114 (2 samples, 0.01%)</title><rect x="1065.9" y="481" width="0.2" height="15.0" fill="rgb(250,142,34)" rx="2" ry="2" />
<text text-anchor="" x="1068.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (14 samples, 0.09%)</title><rect x="1094.2" y="481" width="1.1" height="15.0" fill="rgb(237,50,48)" rx="2" ry="2" />
<text text-anchor="" x="1097.25" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:566 (82 samples, 0.51%)</title><rect x="936.2" y="497" width="6.0" height="15.0" fill="rgb(237,99,10)" rx="2" ry="2" />
<text text-anchor="" x="939.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (2 samples, 0.01%)</title><rect x="1131.6" y="465" width="0.2" height="15.0" fill="rgb(244,166,40)" rx="2" ry="2" />
<text text-anchor="" x="1134.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (19 samples, 0.12%)</title><rect x="1132.9" y="449" width="1.4" height="15.0" fill="rgb(212,61,16)" rx="2" ry="2" />
<text text-anchor="" x="1135.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (16 samples, 0.10%)</title><rect x="67.5" y="481" width="1.2" height="15.0" fill="rgb(234,199,5)" rx="2" ry="2" />
<text text-anchor="" x="70.48" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (5 samples, 0.03%)</title><rect x="1144.5" y="481" width="0.4" height="15.0" fill="rgb(216,113,29)" rx="2" ry="2" />
<text text-anchor="" x="1147.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (58 samples, 0.36%)</title><rect x="180.5" y="401" width="4.3" height="15.0" fill="rgb(254,153,25)" rx="2" ry="2" />
<text text-anchor="" x="183.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string&gt;:&lt;module&gt;:1 (16,094 samples, 100.00%)</title><rect x="10.0" y="673" width="1180.0" height="15.0" fill="rgb(237,100,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;string&gt;:&lt;module&gt;:1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:update:150 (16,094 samples, 100.00%)</title><rect x="10.0" y="545" width="1180.0" height="15.0" fill="rgb(209,31,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:update:150</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:402 (24 samples, 0.15%)</title><rect x="1150.7" y="497" width="1.8" height="15.0" fill="rgb(238,229,27)" rx="2" ry="2" />
<text text-anchor="" x="1153.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (33 samples, 0.21%)</title><rect x="58.0" y="465" width="2.4" height="15.0" fill="rgb(251,49,17)" rx="2" ry="2" />
<text text-anchor="" x="60.95" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:525 (316 samples, 1.96%)</title><rect x="873.2" y="497" width="23.2" height="15.0" fill="rgb(248,46,48)" rx="2" ry="2" />
<text text-anchor="" x="876.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:404 (41 samples, 0.25%)</title><rect x="42.6" y="497" width="3.0" height="15.0" fill="rgb(228,189,22)" rx="2" ry="2" />
<text text-anchor="" x="45.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (250 samples, 1.55%)</title><rect x="242.1" y="401" width="18.4" height="15.0" fill="rgb(241,83,42)" rx="2" ry="2" />
<text text-anchor="" x="245.13" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (212 samples, 1.32%)</title><rect x="173.0" y="433" width="15.5" height="15.0" fill="rgb(208,102,49)" rx="2" ry="2" />
<text text-anchor="" x="175.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:55 (55 samples, 0.34%)</title><rect x="1039.0" y="465" width="4.1" height="15.0" fill="rgb(244,67,5)" rx="2" ry="2" />
<text text-anchor="" x="1042.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:wrapper:138 (16,094 samples, 100.00%)</title><rect x="10.0" y="657" width="1180.0" height="15.0" fill="rgb(230,28,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:wrapper:138</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (11 samples, 0.07%)</title><rect x="542.8" y="129" width="0.8" height="15.0" fill="rgb(233,43,5)" rx="2" ry="2" />
<text text-anchor="" x="545.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:429 (10 samples, 0.06%)</title><rect x="792.8" y="497" width="0.8" height="15.0" fill="rgb(252,175,37)" rx="2" ry="2" />
<text text-anchor="" x="795.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (4 samples, 0.02%)</title><rect x="397.3" y="305" width="0.3" height="15.0" fill="rgb(223,94,23)" rx="2" ry="2" />
<text text-anchor="" x="400.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (55 samples, 0.34%)</title><rect x="469.4" y="225" width="4.1" height="15.0" fill="rgb(215,159,30)" rx="2" ry="2" />
<text text-anchor="" x="472.42" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (2,290 samples, 14.23%)</title><rect x="461.4" y="241" width="167.9" height="15.0" fill="rgb(228,215,34)" rx="2" ry="2" />
<text text-anchor="" x="464.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:197 (3 samples, 0.02%)</title><rect x="765.5" y="529" width="0.2" height="15.0" fill="rgb(218,11,4)" rx="2" ry="2" />
<text text-anchor="" x="768.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (9 samples, 0.06%)</title><rect x="544.6" y="145" width="0.7" height="15.0" fill="rgb(249,52,25)" rx="2" ry="2" />
<text text-anchor="" x="547.64" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:388 (8 samples, 0.05%)</title><rect x="1079.2" y="497" width="0.6" height="15.0" fill="rgb(249,35,46)" rx="2" ry="2" />
<text text-anchor="" x="1082.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (149 samples, 0.93%)</title><rect x="845.1" y="465" width="10.9" height="15.0" fill="rgb(247,44,35)" rx="2" ry="2" />
<text text-anchor="" x="848.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (24 samples, 0.15%)</title><rect x="613.1" y="33" width="1.8" height="15.0" fill="rgb(222,186,29)" rx="2" ry="2" />
<text text-anchor="" x="616.12" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (18 samples, 0.11%)</title><rect x="516.7" y="177" width="1.3" height="15.0" fill="rgb(236,90,16)" rx="2" ry="2" />
<text text-anchor="" x="519.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:62 (4 samples, 0.02%)</title><rect x="719.1" y="481" width="0.3" height="15.0" fill="rgb(227,142,34)" rx="2" ry="2" />
<text text-anchor="" x="722.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (25 samples, 0.16%)</title><rect x="395.4" y="305" width="1.9" height="15.0" fill="rgb(237,227,10)" rx="2" ry="2" />
<text text-anchor="" x="398.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (67 samples, 0.42%)</title><rect x="610.0" y="65" width="4.9" height="15.0" fill="rgb(251,22,0)" rx="2" ry="2" />
<text text-anchor="" x="612.97" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (47 samples, 0.29%)</title><rect x="386.6" y="225" width="3.5" height="15.0" fill="rgb(242,41,8)" rx="2" ry="2" />
<text text-anchor="" x="389.64" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:227 (7,433 samples, 46.18%)</title><rect x="84.7" y="513" width="545.0" height="15.0" fill="rgb(230,25,52)" rx="2" ry="2" />
<text text-anchor="" x="87.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (22 samples, 0.14%)</title><rect x="1175.0" y="481" width="1.7" height="15.0" fill="rgb(235,93,52)" rx="2" ry="2" />
<text text-anchor="" x="1178.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:434 (125 samples, 0.78%)</title><rect x="796.1" y="497" width="9.1" height="15.0" fill="rgb(248,70,34)" rx="2" ry="2" />
<text text-anchor="" x="799.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:564 (3 samples, 0.02%)</title><rect x="935.6" y="497" width="0.2" height="15.0" fill="rgb(221,93,1)" rx="2" ry="2" />
<text text-anchor="" x="938.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:390 (141 samples, 0.88%)</title><rect x="1168.1" y="497" width="10.3" height="15.0" fill="rgb(247,58,48)" rx="2" ry="2" />
<text text-anchor="" x="1171.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (40 samples, 0.25%)</title><rect x="1067.7" y="465" width="2.9" height="15.0" fill="rgb(215,150,5)" rx="2" ry="2" />
<text text-anchor="" x="1070.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (73 samples, 0.45%)</title><rect x="561.3" y="113" width="5.3" height="15.0" fill="rgb(223,11,16)" rx="2" ry="2" />
<text text-anchor="" x="564.29" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (2,340 samples, 14.54%)</title><rect x="457.9" y="257" width="171.6" height="15.0" fill="rgb(221,50,4)" rx="2" ry="2" />
<text text-anchor="" x="460.91" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:549 (401 samples, 2.49%)</title><rect x="900.3" y="497" width="29.4" height="15.0" fill="rgb(224,215,36)" rx="2" ry="2" />
<text text-anchor="" x="903.32" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (272 samples, 1.69%)</title><rect x="199.5" y="417" width="20.0" height="15.0" fill="rgb(224,208,7)" rx="2" ry="2" />
<text text-anchor="" x="202.53" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string&gt;:__new__:10 (69 samples, 0.43%)</title><rect x="950.5" y="465" width="5.1" height="15.0" fill="rgb(219,79,6)" rx="2" ry="2" />
<text text-anchor="" x="953.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:225 (517 samples, 3.21%)</title><rect x="544.1" y="161" width="37.9" height="15.0" fill="rgb(220,46,36)" rx="2" ry="2" />
<text text-anchor="" x="547.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (39 samples, 0.24%)</title><rect x="932.7" y="481" width="2.9" height="15.0" fill="rgb(211,19,10)" rx="2" ry="2" />
<text text-anchor="" x="935.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (53 samples, 0.33%)</title><rect x="1137.4" y="481" width="3.9" height="15.0" fill="rgb(231,109,51)" rx="2" ry="2" />
<text text-anchor="" x="1140.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (5 samples, 0.03%)</title><rect x="590.5" y="145" width="0.4" height="15.0" fill="rgb(210,218,12)" rx="2" ry="2" />
<text text-anchor="" x="593.54" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:519 (485 samples, 3.01%)</title><rect x="837.6" y="497" width="35.6" height="15.0" fill="rgb(243,49,7)" rx="2" ry="2" />
<text text-anchor="" x="840.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (149 samples, 0.93%)</title><rect x="604.0" y="113" width="10.9" height="15.0" fill="rgb(219,101,37)" rx="2" ry="2" />
<text text-anchor="" x="606.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (51 samples, 0.32%)</title><rect x="502.0" y="177" width="3.8" height="15.0" fill="rgb(246,229,29)" rx="2" ry="2" />
<text text-anchor="" x="505.05" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:53 (8 samples, 0.05%)</title><rect x="704.3" y="481" width="0.5" height="15.0" fill="rgb(217,185,53)" rx="2" ry="2" />
<text text-anchor="" x="707.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (22 samples, 0.14%)</title><rect x="190.3" y="449" width="1.6" height="15.0" fill="rgb(220,115,48)" rx="2" ry="2" />
<text text-anchor="" x="193.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_last_line:22 (95 samples, 0.59%)</title><rect x="856.0" y="481" width="7.0" height="15.0" fill="rgb(222,5,33)" rx="2" ry="2" />
<text text-anchor="" x="859.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:55 (75 samples, 0.47%)</title><rect x="708.7" y="481" width="5.5" height="15.0" fill="rgb(237,11,24)" rx="2" ry="2" />
<text text-anchor="" x="711.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (10 samples, 0.06%)</title><rect x="187.1" y="401" width="0.7" height="15.0" fill="rgb(236,7,17)" rx="2" ry="2" />
<text text-anchor="" x="190.07" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (4 samples, 0.02%)</title><rect x="395.1" y="305" width="0.3" height="15.0" fill="rgb(239,126,41)" rx="2" ry="2" />
<text text-anchor="" x="398.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (221 samples, 1.37%)</title><rect x="377.3" y="273" width="16.2" height="15.0" fill="rgb(218,166,28)" rx="2" ry="2" />
<text text-anchor="" x="380.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_is_flow_node:65 (12 samples, 0.07%)</title><rect x="924.9" y="481" width="0.9" height="15.0" fill="rgb(237,60,2)" rx="2" ry="2" />
<text text-anchor="" x="927.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (16 samples, 0.10%)</title><rect x="433.9" y="273" width="1.1" height="15.0" fill="rgb(245,186,26)" rx="2" ry="2" />
<text text-anchor="" x="436.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:386 (8 samples, 0.05%)</title><rect x="1078.0" y="497" width="0.6" height="15.0" fill="rgb(243,188,33)" rx="2" ry="2" />
<text text-anchor="" x="1080.97" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (12 samples, 0.07%)</title><rect x="358.1" y="273" width="0.9" height="15.0" fill="rgb(215,221,27)" rx="2" ry="2" />
<text text-anchor="" x="361.12" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:387 (5 samples, 0.03%)</title><rect x="1159.8" y="497" width="0.4" height="15.0" fill="rgb(217,32,6)" rx="2" ry="2" />
<text text-anchor="" x="1162.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:436 (7 samples, 0.04%)</title><rect x="805.2" y="497" width="0.5" height="15.0" fill="rgb(245,183,15)" rx="2" ry="2" />
<text text-anchor="" x="808.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (33 samples, 0.21%)</title><rect x="306.9" y="353" width="2.5" height="15.0" fill="rgb(251,133,8)" rx="2" ry="2" />
<text text-anchor="" x="309.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (13 samples, 0.08%)</title><rect x="32.6" y="481" width="0.9" height="15.0" fill="rgb(231,159,53)" rx="2" ry="2" />
<text text-anchor="" x="35.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (13 samples, 0.08%)</title><rect x="522.4" y="177" width="1.0" height="15.0" fill="rgb(229,128,44)" rx="2" ry="2" />
<text text-anchor="" x="525.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:show_call_signatures:360 (16,094 samples, 100.00%)</title><rect x="10.0" y="625" width="1180.0" height="15.0" fill="rgb(242,129,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:show_call_signatures:360</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (329 samples, 2.04%)</title><rect x="135.0" y="449" width="24.1" height="15.0" fill="rgb(209,16,15)" rx="2" ry="2" />
<text text-anchor="" x="138.01" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (50 samples, 0.31%)</title><rect x="288.9" y="369" width="3.7" height="15.0" fill="rgb(213,208,41)" rx="2" ry="2" />
<text text-anchor="" x="291.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (8 samples, 0.05%)</title><rect x="523.4" y="177" width="0.6" height="15.0" fill="rgb(210,23,43)" rx="2" ry="2" />
<text text-anchor="" x="526.38" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (130 samples, 0.81%)</title><rect x="510.5" y="193" width="9.5" height="15.0" fill="rgb(241,154,38)" rx="2" ry="2" />
<text text-anchor="" x="513.48" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:58 (16 samples, 0.10%)</title><rect x="1044.2" y="465" width="1.1" height="15.0" fill="rgb(241,120,4)" rx="2" ry="2" />
<text text-anchor="" x="1047.17" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:572 (248 samples, 1.54%)</title><rect x="942.2" y="497" width="18.2" height="15.0" fill="rgb(249,224,25)" rx="2" ry="2" />
<text text-anchor="" x="945.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (232 samples, 1.44%)</title><rect x="314.6" y="337" width="17.1" height="15.0" fill="rgb(234,166,26)" rx="2" ry="2" />
<text text-anchor="" x="317.64" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:225 (5,594 samples, 34.76%)</title><rect x="219.5" y="449" width="410.1" height="15.0" fill="rgb(206,89,52)" rx="2" ry="2" />
<text text-anchor="" x="222.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/par..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (10 samples, 0.06%)</title><rect x="69.8" y="481" width="0.7" height="15.0" fill="rgb(229,197,13)" rx="2" ry="2" />
<text text-anchor="" x="72.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (93 samples, 0.58%)</title><rect x="499.0" y="193" width="6.8" height="15.0" fill="rgb(228,48,34)" rx="2" ry="2" />
<text text-anchor="" x="501.97" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (138 samples, 0.86%)</title><rect x="495.7" y="209" width="10.1" height="15.0" fill="rgb(230,53,6)" rx="2" ry="2" />
<text text-anchor="" x="498.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:61 (11 samples, 0.07%)</title><rect x="718.3" y="481" width="0.8" height="15.0" fill="rgb(247,158,27)" rx="2" ry="2" />
<text text-anchor="" x="721.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:388 (10 samples, 0.06%)</title><rect x="15.9" y="497" width="0.7" height="15.0" fill="rgb(229,57,7)" rx="2" ry="2" />
<text text-anchor="" x="18.87" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:205 (65 samples, 0.40%)</title><rect x="767.6" y="529" width="4.8" height="15.0" fill="rgb(205,168,18)" rx="2" ry="2" />
<text text-anchor="" x="770.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:216 (1,509 samples, 9.38%)</title><rect x="963.0" y="529" width="110.6" height="15.0" fill="rgb(229,6,50)" rx="2" ry="2" />
<text text-anchor="" x="966.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:114 (2 samples, 0.01%)</title><rect x="732.8" y="497" width="0.1" height="15.0" fill="rgb(220,171,38)" rx="2" ry="2" />
<text text-anchor="" x="735.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (6 samples, 0.04%)</title><rect x="1151.3" y="481" width="0.4" height="15.0" fill="rgb(226,205,16)" rx="2" ry="2" />
<text text-anchor="" x="1154.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (172 samples, 1.07%)</title><rect x="319.0" y="321" width="12.7" height="15.0" fill="rgb(252,48,48)" rx="2" ry="2" />
<text text-anchor="" x="322.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (7 samples, 0.04%)</title><rect x="158.6" y="385" width="0.5" height="15.0" fill="rgb(236,9,40)" rx="2" ry="2" />
<text text-anchor="" x="161.62" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:114 (2 samples, 0.01%)</title><rect x="1028.2" y="497" width="0.1" height="15.0" fill="rgb(214,105,8)" rx="2" ry="2" />
<text text-anchor="" x="1031.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (8 samples, 0.05%)</title><rect x="745.7" y="481" width="0.6" height="15.0" fill="rgb(236,135,33)" rx="2" ry="2" />
<text text-anchor="" x="748.69" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:216 (2 samples, 0.01%)</title><rect x="222.8" y="433" width="0.1" height="15.0" fill="rgb(238,60,31)" rx="2" ry="2" />
<text text-anchor="" x="225.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (66 samples, 0.41%)</title><rect x="1163.2" y="481" width="4.9" height="15.0" fill="rgb(248,82,53)" rx="2" ry="2" />
<text text-anchor="" x="1166.24" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (544 samples, 3.38%)</title><rect x="589.4" y="161" width="39.9" height="15.0" fill="rgb(245,92,27)" rx="2" ry="2" />
<text text-anchor="" x="592.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:234 (22 samples, 0.14%)</title><rect x="763.3" y="513" width="1.6" height="15.0" fill="rgb(224,128,13)" rx="2" ry="2" />
<text text-anchor="" x="766.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (29 samples, 0.18%)</title><rect x="586.1" y="129" width="2.2" height="15.0" fill="rgb(216,204,16)" rx="2" ry="2" />
<text text-anchor="" x="589.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (181 samples, 1.12%)</title><rect x="415.2" y="273" width="13.2" height="15.0" fill="rgb(249,157,43)" rx="2" ry="2" />
<text text-anchor="" x="418.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (282 samples, 1.75%)</title><rect x="138.5" y="433" width="20.6" height="15.0" fill="rgb(222,221,38)" rx="2" ry="2" />
<text text-anchor="" x="141.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:397 (35 samples, 0.22%)</title><rect x="1099.7" y="497" width="2.5" height="15.0" fill="rgb(227,86,42)" rx="2" ry="2" />
<text text-anchor="" x="1102.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (5 samples, 0.03%)</title><rect x="446.8" y="257" width="0.3" height="15.0" fill="rgb(208,52,13)" rx="2" ry="2" />
<text text-anchor="" x="449.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (49 samples, 0.30%)</title><rect x="406.1" y="289" width="3.6" height="15.0" fill="rgb(228,163,0)" rx="2" ry="2" />
<text text-anchor="" x="409.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (22 samples, 0.14%)</title><rect x="363.6" y="321" width="1.6" height="15.0" fill="rgb(239,40,22)" rx="2" ry="2" />
<text text-anchor="" x="366.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (4,757 samples, 29.56%)</title><rect x="280.7" y="401" width="348.8" height="15.0" fill="rgb(227,16,35)" rx="2" ry="2" />
<text text-anchor="" x="283.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_is_flow_node:67 (36 samples, 0.22%)</title><rect x="927.1" y="481" width="2.6" height="15.0" fill="rgb(248,207,48)" rx="2" ry="2" />
<text text-anchor="" x="930.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (223 samples, 1.39%)</title><rect x="203.1" y="401" width="16.4" height="15.0" fill="rgb(244,132,7)" rx="2" ry="2" />
<text text-anchor="" x="206.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:558 (4 samples, 0.02%)</title><rect x="931.0" y="497" width="0.3" height="15.0" fill="rgb(222,225,8)" rx="2" ry="2" />
<text text-anchor="" x="934.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (2 samples, 0.01%)</title><rect x="855.9" y="417" width="0.1" height="15.0" fill="rgb(217,119,47)" rx="2" ry="2" />
<text text-anchor="" x="858.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (46 samples, 0.29%)</title><rect x="1090.9" y="481" width="3.3" height="15.0" fill="rgb(243,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1093.87" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:204 (26 samples, 0.16%)</title><rect x="765.7" y="529" width="1.9" height="15.0" fill="rgb(243,217,36)" rx="2" ry="2" />
<text text-anchor="" x="768.70" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:add:382 (157 samples, 0.98%)</title><rect x="944.1" y="481" width="11.5" height="15.0" fill="rgb(225,33,42)" rx="2" ry="2" />
<text text-anchor="" x="947.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (25 samples, 0.16%)</title><rect x="1141.3" y="481" width="1.8" height="15.0" fill="rgb(232,31,17)" rx="2" ry="2" />
<text text-anchor="" x="1144.32" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:394 (3 samples, 0.02%)</title><rect x="35.7" y="497" width="0.2" height="15.0" fill="rgb(247,58,43)" rx="2" ry="2" />
<text text-anchor="" x="38.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:188 (104 samples, 0.65%)</title><rect x="785.2" y="481" width="7.6" height="15.0" fill="rgb(211,199,47)" rx="2" ry="2" />
<text text-anchor="" x="788.20" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:405 (3 samples, 0.02%)</title><rect x="81.4" y="497" width="0.2" height="15.0" fill="rgb(238,54,25)" rx="2" ry="2" />
<text text-anchor="" x="84.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (4 samples, 0.02%)</title><rect x="557.5" y="113" width="0.3" height="15.0" fill="rgb(241,8,47)" rx="2" ry="2" />
<text text-anchor="" x="560.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (13 samples, 0.08%)</title><rect x="392.4" y="225" width="1.0" height="15.0" fill="rgb(220,31,37)" rx="2" ry="2" />
<text text-anchor="" x="395.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (98 samples, 0.61%)</title><rect x="437.9" y="257" width="7.2" height="15.0" fill="rgb(246,216,12)" rx="2" ry="2" />
<text text-anchor="" x="440.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (5 samples, 0.03%)</title><rect x="459.4" y="241" width="0.4" height="15.0" fill="rgb(242,166,23)" rx="2" ry="2" />
<text text-anchor="" x="462.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (4 samples, 0.02%)</title><rect x="600.4" y="113" width="0.3" height="15.0" fill="rgb(242,106,26)" rx="2" ry="2" />
<text text-anchor="" x="603.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (3,162 samples, 19.65%)</title><rect x="397.6" y="305" width="231.9" height="15.0" fill="rgb(251,27,46)" rx="2" ry="2" />
<text text-anchor="" x="400.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bund..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:388 (7 samples, 0.04%)</title><rect x="1125.9" y="497" width="0.5" height="15.0" fill="rgb(226,188,25)" rx="2" ry="2" />
<text text-anchor="" x="1128.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (134 samples, 0.83%)</title><rect x="383.7" y="241" width="9.8" height="15.0" fill="rgb(254,201,30)" rx="2" ry="2" />
<text text-anchor="" x="386.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (10 samples, 0.06%)</title><rect x="1186.0" y="481" width="0.7" height="15.0" fill="rgb(211,205,26)" rx="2" ry="2" />
<text text-anchor="" x="1188.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:231 (661 samples, 4.11%)</title><rect x="697.8" y="513" width="48.5" height="15.0" fill="rgb(253,207,21)" rx="2" ry="2" />
<text text-anchor="" x="700.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (29 samples, 0.18%)</title><rect x="741.1" y="481" width="2.1" height="15.0" fill="rgb(214,195,30)" rx="2" ry="2" />
<text text-anchor="" x="744.07" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:390 (137 samples, 0.85%)</title><rect x="24.4" y="497" width="10.0" height="15.0" fill="rgb(206,143,45)" rx="2" ry="2" />
<text text-anchor="" x="27.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (314 samples, 1.95%)</title><rect x="165.5" y="465" width="23.0" height="15.0" fill="rgb(218,185,49)" rx="2" ry="2" />
<text text-anchor="" x="168.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:89 (147 samples, 0.91%)</title><rect x="682.0" y="497" width="10.8" height="15.0" fill="rgb(237,63,42)" rx="2" ry="2" />
<text text-anchor="" x="685.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (3 samples, 0.02%)</title><rect x="188.3" y="401" width="0.2" height="15.0" fill="rgb(239,3,47)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (4 samples, 0.02%)</title><rect x="851.0" y="449" width="0.3" height="15.0" fill="rgb(243,89,4)" rx="2" ry="2" />
<text text-anchor="" x="854.05" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:218 (35 samples, 0.22%)</title><rect x="577.7" y="97" width="2.6" height="15.0" fill="rgb(239,21,25)" rx="2" ry="2" />
<text text-anchor="" x="580.71" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:__eq__:296 (45 samples, 0.28%)</title><rect x="661.3" y="481" width="3.3" height="15.0" fill="rgb(221,211,2)" rx="2" ry="2" />
<text text-anchor="" x="664.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:56 (3 samples, 0.02%)</title><rect x="974.7" y="481" width="0.3" height="15.0" fill="rgb(242,0,11)" rx="2" ry="2" />
<text text-anchor="" x="977.73" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (169 samples, 1.05%)</title><rect x="176.1" y="417" width="12.4" height="15.0" fill="rgb(243,102,11)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (3 samples, 0.02%)</title><rect x="935.4" y="433" width="0.2" height="15.0" fill="rgb(249,157,12)" rx="2" ry="2" />
<text text-anchor="" x="938.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:58 (28 samples, 0.17%)</title><rect x="716.3" y="481" width="2.0" height="15.0" fill="rgb(239,53,15)" rx="2" ry="2" />
<text text-anchor="" x="719.28" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:parsed_until_line:423 (456 samples, 2.83%)</title><rect x="48.2" y="513" width="33.4" height="15.0" fill="rgb(215,61,38)" rx="2" ry="2" />
<text text-anchor="" x="51.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (3 samples, 0.02%)</title><rect x="1178.2" y="481" width="0.2" height="15.0" fill="rgb(223,154,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.20" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:397 (37 samples, 0.23%)</title><rect x="1180.4" y="497" width="2.7" height="15.0" fill="rgb(247,81,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.40" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:404 (26 samples, 0.16%)</title><rect x="1187.7" y="497" width="1.9" height="15.0" fill="rgb(232,153,42)" rx="2" ry="2" />
<text text-anchor="" x="1190.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (519 samples, 3.22%)</title><rect x="591.3" y="145" width="38.0" height="15.0" fill="rgb(243,206,19)" rx="2" ry="2" />
<text text-anchor="" x="594.28" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (8 samples, 0.05%)</title><rect x="78.3" y="481" width="0.5" height="15.0" fill="rgb(227,97,47)" rx="2" ry="2" />
<text text-anchor="" x="81.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (386 samples, 2.40%)</title><rect x="365.2" y="321" width="28.3" height="15.0" fill="rgb(236,23,52)" rx="2" ry="2" />
<text text-anchor="" x="368.23" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (13 samples, 0.08%)</title><rect x="1143.1" y="481" width="1.0" height="15.0" fill="rgb(254,203,4)" rx="2" ry="2" />
<text text-anchor="" x="1146.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (2 samples, 0.01%)</title><rect x="263.3" y="401" width="0.2" height="15.0" fill="rgb(239,93,4)" rx="2" ry="2" />
<text text-anchor="" x="266.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/debug.py:dbg:90 (39 samples, 0.24%)</title><rect x="1115.9" y="513" width="2.8" height="15.0" fill="rgb(246,189,29)" rx="2" ry="2" />
<text text-anchor="" x="1118.87" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:216 (2 samples, 0.01%)</title><rect x="461.3" y="241" width="0.1" height="15.0" fill="rgb(251,48,19)" rx="2" ry="2" />
<text text-anchor="" x="464.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:398 (13 samples, 0.08%)</title><rect x="38.9" y="497" width="0.9" height="15.0" fill="rgb(207,93,22)" rx="2" ry="2" />
<text text-anchor="" x="41.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (7,009 samples, 43.55%)</title><rect x="115.8" y="497" width="513.9" height="15.0" fill="rgb(221,7,40)" rx="2" ry="2" />
<text text-anchor="" x="118.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (15 samples, 0.09%)</title><rect x="509.4" y="193" width="1.1" height="15.0" fill="rgb(252,181,5)" rx="2" ry="2" />
<text text-anchor="" x="512.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:77 (58 samples, 0.36%)</title><rect x="639.6" y="497" width="4.2" height="15.0" fill="rgb(248,6,2)" rx="2" ry="2" />
<text text-anchor="" x="642.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (4 samples, 0.02%)</title><rect x="557.8" y="113" width="0.3" height="15.0" fill="rgb(218,216,52)" rx="2" ry="2" />
<text text-anchor="" x="560.84" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:386 (3 samples, 0.02%)</title><rect x="1125.3" y="497" width="0.2" height="15.0" fill="rgb(216,102,44)" rx="2" ry="2" />
<text text-anchor="" x="1128.26" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:389 (107 samples, 0.66%)</title><rect x="1126.4" y="497" width="7.9" height="15.0" fill="rgb(232,194,19)" rx="2" ry="2" />
<text text-anchor="" x="1129.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (345 samples, 2.14%)</title><rect x="368.2" y="305" width="25.3" height="15.0" fill="rgb(244,48,24)" rx="2" ry="2" />
<text text-anchor="" x="371.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (28 samples, 0.17%)</title><rect x="1166.0" y="465" width="2.1" height="15.0" fill="rgb(251,77,6)" rx="2" ry="2" />
<text text-anchor="" x="1169.02" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (5 samples, 0.03%)</title><rect x="70.5" y="481" width="0.4" height="15.0" fill="rgb(245,142,22)" rx="2" ry="2" />
<text text-anchor="" x="73.49" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:530 (4 samples, 0.02%)</title><rect x="896.4" y="497" width="0.3" height="15.0" fill="rgb(210,38,28)" rx="2" ry="2" />
<text text-anchor="" x="899.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:426 (152 samples, 0.94%)</title><rect x="781.7" y="497" width="11.1" height="15.0" fill="rgb(247,123,48)" rx="2" ry="2" />
<text text-anchor="" x="784.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (21 samples, 0.13%)</title><rect x="156.2" y="385" width="1.5" height="15.0" fill="rgb(210,139,6)" rx="2" ry="2" />
<text text-anchor="" x="159.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:68 (34 samples, 0.21%)</title><rect x="730.3" y="481" width="2.5" height="15.0" fill="rgb(220,104,26)" rx="2" ry="2" />
<text text-anchor="" x="733.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:232 (2 samples, 0.01%)</title><rect x="746.3" y="513" width="0.1" height="15.0" fill="rgb(220,127,30)" rx="2" ry="2" />
<text text-anchor="" x="749.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:403 (2 samples, 0.01%)</title><rect x="42.5" y="497" width="0.1" height="15.0" fill="rgb(225,73,34)" rx="2" ry="2" />
<text text-anchor="" x="45.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (88 samples, 0.55%)</title><rect x="451.5" y="257" width="6.4" height="15.0" fill="rgb(225,112,14)" rx="2" ry="2" />
<text text-anchor="" x="454.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:54 (52 samples, 0.32%)</title><rect x="704.8" y="481" width="3.9" height="15.0" fill="rgb(251,10,19)" rx="2" ry="2" />
<text text-anchor="" x="707.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:68 (19 samples, 0.12%)</title><rect x="1026.8" y="481" width="1.4" height="15.0" fill="rgb(252,115,1)" rx="2" ry="2" />
<text text-anchor="" x="1029.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:403 (6 samples, 0.04%)</title><rect x="1107.3" y="497" width="0.4" height="15.0" fill="rgb(236,203,37)" rx="2" ry="2" />
<text text-anchor="" x="1110.30" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (197 samples, 1.22%)</title><rect x="614.9" y="113" width="14.4" height="15.0" fill="rgb(229,51,45)" rx="2" ry="2" />
<text text-anchor="" x="617.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:557 (18 samples, 0.11%)</title><rect x="929.7" y="497" width="1.3" height="15.0" fill="rgb(215,25,32)" rx="2" ry="2" />
<text text-anchor="" x="932.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:56 (12 samples, 0.07%)</title><rect x="714.2" y="481" width="0.8" height="15.0" fill="rgb(209,202,19)" rx="2" ry="2" />
<text text-anchor="" x="717.16" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (5,033 samples, 31.27%)</title><rect x="260.5" y="417" width="369.0" height="15.0" fill="rgb(221,89,22)" rx="2" ry="2" />
<text text-anchor="" x="263.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jed..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (12 samples, 0.07%)</title><rect x="934.7" y="449" width="0.9" height="15.0" fill="rgb(207,40,35)" rx="2" ry="2" />
<text text-anchor="" x="937.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (330 samples, 2.05%)</title><rect x="236.3" y="417" width="24.2" height="15.0" fill="rgb(244,141,18)" rx="2" ry="2" />
<text text-anchor="" x="239.26" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:404 (50 samples, 0.31%)</title><rect x="1107.7" y="497" width="3.7" height="15.0" fill="rgb(233,70,0)" rx="2" ry="2" />
<text text-anchor="" x="1110.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:390 (125 samples, 0.78%)</title><rect x="1087.7" y="497" width="9.2" height="15.0" fill="rgb(211,179,11)" rx="2" ry="2" />
<text text-anchor="" x="1090.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (8 samples, 0.05%)</title><rect x="535.1" y="145" width="0.6" height="15.0" fill="rgb(211,123,8)" rx="2" ry="2" />
<text text-anchor="" x="538.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (70 samples, 0.43%)</title><rect x="735.9" y="481" width="5.2" height="15.0" fill="rgb(238,69,30)" rx="2" ry="2" />
<text text-anchor="" x="738.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (6 samples, 0.04%)</title><rect x="1152.0" y="481" width="0.5" height="15.0" fill="rgb(227,208,54)" rx="2" ry="2" />
<text text-anchor="" x="1155.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (183 samples, 1.14%)</title><rect x="145.7" y="401" width="13.4" height="15.0" fill="rgb(218,6,52)" rx="2" ry="2" />
<text text-anchor="" x="148.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:219 (22 samples, 0.14%)</title><rect x="580.3" y="97" width="1.6" height="15.0" fill="rgb(239,29,20)" rx="2" ry="2" />
<text text-anchor="" x="583.28" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (212 samples, 1.32%)</title><rect x="473.5" y="225" width="15.5" height="15.0" fill="rgb(223,81,16)" rx="2" ry="2" />
<text text-anchor="" x="476.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (178 samples, 1.11%)</title><rect x="380.5" y="257" width="13.0" height="15.0" fill="rgb(243,13,53)" rx="2" ry="2" />
<text text-anchor="" x="383.48" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (137 samples, 0.85%)</title><rect x="435.0" y="273" width="10.1" height="15.0" fill="rgb(232,129,48)" rx="2" ry="2" />
<text text-anchor="" x="438.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (63 samples, 0.39%)</title><rect x="149.5" y="385" width="4.6" height="15.0" fill="rgb(222,12,45)" rx="2" ry="2" />
<text text-anchor="" x="152.53" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (22 samples, 0.14%)</title><rect x="124.0" y="481" width="1.6" height="15.0" fill="rgb(251,29,10)" rx="2" ry="2" />
<text text-anchor="" x="127.01" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:233 (230 samples, 1.43%)</title><rect x="746.4" y="513" width="16.9" height="15.0" fill="rgb(235,34,5)" rx="2" ry="2" />
<text text-anchor="" x="749.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:440 (2 samples, 0.01%)</title><rect x="805.7" y="497" width="0.2" height="15.0" fill="rgb(230,174,39)" rx="2" ry="2" />
<text text-anchor="" x="808.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/debug.py:dbg:93 (9 samples, 0.06%)</title><rect x="1119.5" y="513" width="0.6" height="15.0" fill="rgb(242,49,35)" rx="2" ry="2" />
<text text-anchor="" x="1122.47" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (14 samples, 0.09%)</title><rect x="217.6" y="353" width="1.1" height="15.0" fill="rgb(217,206,41)" rx="2" ry="2" />
<text text-anchor="" x="220.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (12 samples, 0.07%)</title><rect x="391.6" y="225" width="0.8" height="15.0" fill="rgb(206,58,8)" rx="2" ry="2" />
<text text-anchor="" x="394.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (11 samples, 0.07%)</title><rect x="40.9" y="481" width="0.8" height="15.0" fill="rgb(232,191,34)" rx="2" ry="2" />
<text text-anchor="" x="43.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:559 (4 samples, 0.02%)</title><rect x="931.3" y="497" width="0.3" height="15.0" fill="rgb(216,155,40)" rx="2" ry="2" />
<text text-anchor="" x="934.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (13 samples, 0.08%)</title><rect x="23.4" y="449" width="1.0" height="15.0" fill="rgb(233,127,30)" rx="2" ry="2" />
<text text-anchor="" x="26.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (97 samples, 0.60%)</title><rect x="607.8" y="81" width="7.1" height="15.0" fill="rgb(251,205,28)" rx="2" ry="2" />
<text text-anchor="" x="610.77" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (57 samples, 0.35%)</title><rect x="352.7" y="273" width="4.2" height="15.0" fill="rgb(253,182,30)" rx="2" ry="2" />
<text text-anchor="" x="355.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:393 (20 samples, 0.12%)</title><rect x="1144.9" y="497" width="1.5" height="15.0" fill="rgb(252,79,15)" rx="2" ry="2" />
<text text-anchor="" x="1147.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:431 (5 samples, 0.03%)</title><rect x="794.2" y="497" width="0.4" height="15.0" fill="rgb(254,211,42)" rx="2" ry="2" />
<text text-anchor="" x="797.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:66 (654 samples, 4.06%)</title><rect x="977.5" y="481" width="48.0" height="15.0" fill="rgb(247,176,34)" rx="2" ry="2" />
<text text-anchor="" x="980.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:parsed_until_line:423 (443 samples, 2.75%)</title><rect x="1157.5" y="513" width="32.5" height="15.0" fill="rgb(234,110,21)" rx="2" ry="2" />
<text text-anchor="" x="1160.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (29 samples, 0.18%)</title><rect x="335.2" y="337" width="2.1" height="15.0" fill="rgb(231,58,35)" rx="2" ry="2" />
<text text-anchor="" x="338.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:191 (1,464 samples, 9.10%)</title><rect x="966.3" y="513" width="107.3" height="15.0" fill="rgb(248,82,32)" rx="2" ry="2" />
<text text-anchor="" x="969.30" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (4 samples, 0.02%)</title><rect x="590.9" y="145" width="0.3" height="15.0" fill="rgb(238,187,4)" rx="2" ry="2" />
<text text-anchor="" x="593.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:58 (6 samples, 0.04%)</title><rect x="975.9" y="481" width="0.4" height="15.0" fill="rgb(217,84,35)" rx="2" ry="2" />
<text text-anchor="" x="978.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (61 samples, 0.38%)</title><rect x="937.7" y="481" width="4.5" height="15.0" fill="rgb(253,166,29)" rx="2" ry="2" />
<text text-anchor="" x="940.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:wrapper:123 (16,094 samples, 100.00%)</title><rect x="10.0" y="641" width="1180.0" height="15.0" fill="rgb(243,111,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi_vim.py:wrapper:123</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (79 samples, 0.49%)</title><rect x="538.3" y="161" width="5.8" height="15.0" fill="rgb(217,5,27)" rx="2" ry="2" />
<text text-anchor="" x="541.27" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:191 (543 samples, 3.37%)</title><rect x="1033.8" y="497" width="39.8" height="15.0" fill="rgb(220,199,9)" rx="2" ry="2" />
<text text-anchor="" x="1036.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:parsed_until_line:423 (492 samples, 3.06%)</title><rect x="1075.7" y="513" width="36.1" height="15.0" fill="rgb(251,29,11)" rx="2" ry="2" />
<text text-anchor="" x="1078.70" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (21 samples, 0.13%)</title><rect x="337.3" y="337" width="1.5" height="15.0" fill="rgb(233,62,30)" rx="2" ry="2" />
<text text-anchor="" x="340.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (7 samples, 0.04%)</title><rect x="187.8" y="401" width="0.5" height="15.0" fill="rgb(220,118,18)" rx="2" ry="2" />
<text text-anchor="" x="190.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (5 samples, 0.03%)</title><rect x="293.5" y="369" width="0.3" height="15.0" fill="rgb(240,187,16)" rx="2" ry="2" />
<text text-anchor="" x="296.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:113 (421 samples, 2.62%)</title><rect x="1035.1" y="481" width="30.8" height="15.0" fill="rgb(215,38,27)" rx="2" ry="2" />
<text text-anchor="" x="1038.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:62 (4 samples, 0.02%)</title><rect x="976.6" y="481" width="0.3" height="15.0" fill="rgb(228,110,31)" rx="2" ry="2" />
<text text-anchor="" x="979.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (5 samples, 0.03%)</title><rect x="507.2" y="193" width="0.3" height="15.0" fill="rgb(239,196,8)" rx="2" ry="2" />
<text text-anchor="" x="510.18" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (9 samples, 0.06%)</title><rect x="588.3" y="129" width="0.6" height="15.0" fill="rgb(237,42,29)" rx="2" ry="2" />
<text text-anchor="" x="591.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (4 samples, 0.02%)</title><rect x="522.1" y="177" width="0.3" height="15.0" fill="rgb(223,208,29)" rx="2" ry="2" />
<text text-anchor="" x="525.13" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (61 samples, 0.38%)</title><rect x="55.9" y="481" width="4.5" height="15.0" fill="rgb(216,58,54)" rx="2" ry="2" />
<text text-anchor="" x="58.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (209 samples, 1.30%)</title><rect x="566.6" y="113" width="15.4" height="15.0" fill="rgb(211,50,50)" rx="2" ry="2" />
<text text-anchor="" x="569.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (30 samples, 0.19%)</title><rect x="803.0" y="465" width="2.2" height="15.0" fill="rgb(231,30,26)" rx="2" ry="2" />
<text text-anchor="" x="806.02" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:116 (75 samples, 0.47%)</title><rect x="1028.3" y="497" width="5.5" height="15.0" fill="rgb(207,34,27)" rx="2" ry="2" />
<text text-anchor="" x="1031.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (2 samples, 0.01%)</title><rect x="600.7" y="113" width="0.2" height="15.0" fill="rgb(213,134,43)" rx="2" ry="2" />
<text text-anchor="" x="603.73" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:214 (28 samples, 0.17%)</title><rect x="961.0" y="529" width="2.0" height="15.0" fill="rgb(225,212,38)" rx="2" ry="2" />
<text text-anchor="" x="963.95" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:61 (3 samples, 0.02%)</title><rect x="976.3" y="481" width="0.3" height="15.0" fill="rgb(228,186,49)" rx="2" ry="2" />
<text text-anchor="" x="979.35" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (21 samples, 0.13%)</title><rect x="432.3" y="273" width="1.6" height="15.0" fill="rgb(216,162,42)" rx="2" ry="2" />
<text text-anchor="" x="435.32" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:388 (13 samples, 0.08%)</title><rect x="51.9" y="497" width="1.0" height="15.0" fill="rgb(223,76,8)" rx="2" ry="2" />
<text text-anchor="" x="54.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:229 (64 samples, 0.40%)</title><rect x="629.7" y="513" width="4.7" height="15.0" fill="rgb(227,138,10)" rx="2" ry="2" />
<text text-anchor="" x="632.69" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (27 samples, 0.17%)</title><rect x="858.9" y="465" width="2.0" height="15.0" fill="rgb(208,7,46)" rx="2" ry="2" />
<text text-anchor="" x="861.89" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (25 samples, 0.16%)</title><rect x="161.3" y="465" width="1.8" height="15.0" fill="rgb(212,166,39)" rx="2" ry="2" />
<text text-anchor="" x="164.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (133 samples, 0.83%)</title><rect x="250.7" y="353" width="9.8" height="15.0" fill="rgb(225,121,39)" rx="2" ry="2" />
<text text-anchor="" x="253.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (2 samples, 0.01%)</title><rect x="629.3" y="241" width="0.2" height="15.0" fill="rgb(239,40,53)" rx="2" ry="2" />
<text text-anchor="" x="632.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:393 (21 samples, 0.13%)</title><rect x="70.9" y="497" width="1.5" height="15.0" fill="rgb(209,168,30)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:188 (94 samples, 0.58%)</title><rect x="830.7" y="465" width="6.9" height="15.0" fill="rgb(231,34,7)" rx="2" ry="2" />
<text text-anchor="" x="833.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:217 (520 samples, 3.23%)</title><rect x="1073.6" y="529" width="38.2" height="15.0" fill="rgb(252,217,39)" rx="2" ry="2" />
<text text-anchor="" x="1076.64" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (22 samples, 0.14%)</title><rect x="486.1" y="193" width="1.6" height="15.0" fill="rgb(241,75,11)" rx="2" ry="2" />
<text text-anchor="" x="489.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:76 (13 samples, 0.08%)</title><rect x="638.6" y="497" width="1.0" height="15.0" fill="rgb(238,218,29)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:387 (3 samples, 0.02%)</title><rect x="15.6" y="497" width="0.3" height="15.0" fill="rgb(239,223,33)" rx="2" ry="2" />
<text text-anchor="" x="18.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (9 samples, 0.06%)</title><rect x="550.8" y="129" width="0.7" height="15.0" fill="rgb(248,31,15)" rx="2" ry="2" />
<text text-anchor="" x="553.80" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:402 (39 samples, 0.24%)</title><rect x="1184.6" y="497" width="2.8" height="15.0" fill="rgb(218,226,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:393 (30 samples, 0.19%)</title><rect x="1096.9" y="497" width="2.2" height="15.0" fill="rgb(246,168,22)" rx="2" ry="2" />
<text text-anchor="" x="1099.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (17 samples, 0.11%)</title><rect x="1070.6" y="465" width="1.3" height="15.0" fill="rgb(231,205,41)" rx="2" ry="2" />
<text text-anchor="" x="1073.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (27 samples, 0.17%)</title><rect x="554.3" y="113" width="2.0" height="15.0" fill="rgb(235,182,7)" rx="2" ry="2" />
<text text-anchor="" x="557.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/api/__init__.py:call_signatures:305 (16,094 samples, 100.00%)</title><rect x="10.0" y="609" width="1180.0" height="15.0" fill="rgb(246,207,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/api/__init__.py:call_signatures:305</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (4 samples, 0.02%)</title><rect x="1151.7" y="481" width="0.3" height="15.0" fill="rgb(223,146,35)" rx="2" ry="2" />
<text text-anchor="" x="1154.73" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (6 samples, 0.04%)</title><rect x="42.0" y="481" width="0.5" height="15.0" fill="rgb(243,211,11)" rx="2" ry="2" />
<text text-anchor="" x="45.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:190 (491 samples, 3.05%)</title><rect x="45.6" y="529" width="36.0" height="15.0" fill="rgb(215,81,20)" rx="2" ry="2" />
<text text-anchor="" x="48.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (9 samples, 0.06%)</title><rect x="427.8" y="241" width="0.6" height="15.0" fill="rgb(249,86,44)" rx="2" ry="2" />
<text text-anchor="" x="430.77" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (23 samples, 0.14%)</title><rect x="933.9" y="465" width="1.7" height="15.0" fill="rgb(238,63,20)" rx="2" ry="2" />
<text text-anchor="" x="936.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (112 samples, 0.70%)</title><rect x="616.6" y="97" width="8.2" height="15.0" fill="rgb(225,76,22)" rx="2" ry="2" />
<text text-anchor="" x="619.57" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (10 samples, 0.06%)</title><rect x="603.2" y="113" width="0.8" height="15.0" fill="rgb(220,229,13)" rx="2" ry="2" />
<text text-anchor="" x="606.23" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (12 samples, 0.07%)</title><rect x="1032.1" y="481" width="0.9" height="15.0" fill="rgb(243,56,27)" rx="2" ry="2" />
<text text-anchor="" x="1035.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (498 samples, 3.09%)</title><rect x="545.5" y="145" width="36.5" height="15.0" fill="rgb(220,82,27)" rx="2" ry="2" />
<text text-anchor="" x="548.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (304 samples, 1.89%)</title><rect x="309.4" y="353" width="22.3" height="15.0" fill="rgb(236,207,22)" rx="2" ry="2" />
<text text-anchor="" x="312.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (10 samples, 0.06%)</title><rect x="1105.8" y="481" width="0.8" height="15.0" fill="rgb(223,132,40)" rx="2" ry="2" />
<text text-anchor="" x="1108.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (3 samples, 0.02%)</title><rect x="488.8" y="193" width="0.2" height="15.0" fill="rgb(207,35,15)" rx="2" ry="2" />
<text text-anchor="" x="491.77" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (10 samples, 0.06%)</title><rect x="556.3" y="113" width="0.7" height="15.0" fill="rgb(238,147,44)" rx="2" ry="2" />
<text text-anchor="" x="559.30" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:52 (2 samples, 0.01%)</title><rect x="1036.4" y="465" width="0.1" height="15.0" fill="rgb(252,61,2)" rx="2" ry="2" />
<text text-anchor="" x="1039.40" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_is_flow_node:63 (2 samples, 0.01%)</title><rect x="901.9" y="481" width="0.2" height="15.0" fill="rgb(214,207,2)" rx="2" ry="2" />
<text text-anchor="" x="904.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (18 samples, 0.11%)</title><rect x="791.5" y="449" width="1.3" height="15.0" fill="rgb(243,122,31)" rx="2" ry="2" />
<text text-anchor="" x="794.51" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (2 samples, 0.01%)</title><rect x="939.9" y="465" width="0.2" height="15.0" fill="rgb(228,221,1)" rx="2" ry="2" />
<text text-anchor="" x="942.91" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (4 samples, 0.02%)</title><rect x="34.1" y="481" width="0.3" height="15.0" fill="rgb(213,97,28)" rx="2" ry="2" />
<text text-anchor="" x="37.12" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:80 (26 samples, 0.16%)</title><rect x="676.3" y="497" width="1.9" height="15.0" fill="rgb(248,196,10)" rx="2" ry="2" />
<text text-anchor="" x="679.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (7 samples, 0.04%)</title><rect x="220.6" y="433" width="0.6" height="15.0" fill="rgb(244,148,24)" rx="2" ry="2" />
<text text-anchor="" x="223.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:116 (182 samples, 1.13%)</title><rect x="732.9" y="497" width="13.4" height="15.0" fill="rgb(215,217,30)" rx="2" ry="2" />
<text text-anchor="" x="735.93" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (8 samples, 0.05%)</title><rect x="1106.7" y="481" width="0.6" height="15.0" fill="rgb(253,186,24)" rx="2" ry="2" />
<text text-anchor="" x="1109.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (3 samples, 0.02%)</title><rect x="567.3" y="97" width="0.2" height="15.0" fill="rgb(254,42,23)" rx="2" ry="2" />
<text text-anchor="" x="570.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:387 (6 samples, 0.04%)</title><rect x="1125.5" y="497" width="0.4" height="15.0" fill="rgb(211,212,17)" rx="2" ry="2" />
<text text-anchor="" x="1128.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (3 samples, 0.02%)</title><rect x="590.3" y="145" width="0.2" height="15.0" fill="rgb(228,35,49)" rx="2" ry="2" />
<text text-anchor="" x="593.32" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:87 (7 samples, 0.04%)</title><rect x="681.0" y="497" width="0.5" height="15.0" fill="rgb(227,81,40)" rx="2" ry="2" />
<text text-anchor="" x="684.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (2 samples, 0.01%)</title><rect x="1134.1" y="433" width="0.2" height="15.0" fill="rgb(223,13,11)" rx="2" ry="2" />
<text text-anchor="" x="1137.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:403 (2 samples, 0.01%)</title><rect x="78.9" y="497" width="0.2" height="15.0" fill="rgb(245,95,44)" rx="2" ry="2" />
<text text-anchor="" x="81.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (26 samples, 0.16%)</title><rect x="743.2" y="481" width="1.9" height="15.0" fill="rgb(232,68,4)" rx="2" ry="2" />
<text text-anchor="" x="746.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:66 (117 samples, 0.73%)</title><rect x="720.4" y="481" width="8.6" height="15.0" fill="rgb(231,180,35)" rx="2" ry="2" />
<text text-anchor="" x="723.39" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (28 samples, 0.17%)</title><rect x="828.7" y="465" width="2.0" height="15.0" fill="rgb(206,179,33)" rx="2" ry="2" />
<text text-anchor="" x="831.68" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (2 samples, 0.01%)</title><rect x="393.4" y="225" width="0.1" height="15.0" fill="rgb(244,11,44)" rx="2" ry="2" />
<text text-anchor="" x="396.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:113 (805 samples, 5.00%)</title><rect x="969.2" y="497" width="59.0" height="15.0" fill="rgb(232,173,6)" rx="2" ry="2" />
<text text-anchor="" x="972.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:copy_nodes:500 (368 samples, 2.29%)</title><rect x="779.0" y="513" width="27.0" height="15.0" fill="rgb(215,200,1)" rx="2" ry="2" />
<text text-anchor="" x="781.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (21 samples, 0.13%)</title><rect x="541.3" y="129" width="1.5" height="15.0" fill="rgb(235,176,6)" rx="2" ry="2" />
<text text-anchor="" x="544.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:copy_nodes:502 (2,109 samples, 13.10%)</title><rect x="806.0" y="513" width="154.6" height="15.0" fill="rgb(235,82,3)" rx="2" ry="2" />
<text text-anchor="" x="808.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.file..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:188 (220 samples, 1.37%)</title><rect x="821.5" y="481" width="16.1" height="15.0" fill="rgb(241,85,28)" rx="2" ry="2" />
<text text-anchor="" x="824.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (11 samples, 0.07%)</title><rect x="119.0" y="481" width="0.8" height="15.0" fill="rgb(232,200,45)" rx="2" ry="2" />
<text text-anchor="" x="121.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (7 samples, 0.04%)</title><rect x="1186.7" y="481" width="0.5" height="15.0" fill="rgb(209,214,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.70" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:403 (4 samples, 0.02%)</title><rect x="1187.4" y="497" width="0.3" height="15.0" fill="rgb(234,107,7)" rx="2" ry="2" />
<text text-anchor="" x="1190.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (57 samples, 0.35%)</title><rect x="482.0" y="193" width="4.1" height="15.0" fill="rgb(221,138,43)" rx="2" ry="2" />
<text text-anchor="" x="484.96" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:parsed_until_line:423 (439 samples, 2.73%)</title><rect x="13.4" y="513" width="32.2" height="15.0" fill="rgb(236,51,30)" rx="2" ry="2" />
<text text-anchor="" x="16.45" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (9 samples, 0.06%)</title><rect x="330.0" y="289" width="0.6" height="15.0" fill="rgb(237,125,2)" rx="2" ry="2" />
<text text-anchor="" x="332.97" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (5 samples, 0.03%)</title><rect x="460.9" y="241" width="0.4" height="15.0" fill="rgb(209,90,16)" rx="2" ry="2" />
<text text-anchor="" x="463.91" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (18 samples, 0.11%)</title><rect x="59.1" y="449" width="1.3" height="15.0" fill="rgb(224,26,12)" rx="2" ry="2" />
<text text-anchor="" x="62.05" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:394 (5 samples, 0.03%)</title><rect x="1180.0" y="497" width="0.4" height="15.0" fill="rgb(209,129,1)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/cache.py:wrapper:121 (16,094 samples, 100.00%)</title><rect x="10.0" y="593" width="1180.0" height="15.0" fill="rgb(248,14,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/cache.py:wrapper:121</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (19 samples, 0.12%)</title><rect x="221.2" y="433" width="1.4" height="15.0" fill="rgb(229,152,53)" rx="2" ry="2" />
<text text-anchor="" x="224.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (15 samples, 0.09%)</title><rect x="565.5" y="65" width="1.1" height="15.0" fill="rgb(224,15,42)" rx="2" ry="2" />
<text text-anchor="" x="568.54" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (12 samples, 0.07%)</title><rect x="426.5" y="241" width="0.8" height="15.0" fill="rgb(211,124,50)" rx="2" ry="2" />
<text text-anchor="" x="429.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (15 samples, 0.09%)</title><rect x="1176.7" y="481" width="1.1" height="15.0" fill="rgb(219,121,7)" rx="2" ry="2" />
<text text-anchor="" x="1179.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:224 (476 samples, 2.96%)</title><rect x="1155.1" y="529" width="34.9" height="15.0" fill="rgb(222,69,1)" rx="2" ry="2" />
<text text-anchor="" x="1158.10" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (3 samples, 0.02%)</title><rect x="222.6" y="433" width="0.2" height="15.0" fill="rgb(208,107,9)" rx="2" ry="2" />
<text text-anchor="" x="225.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (150 samples, 0.93%)</title><rect x="478.0" y="209" width="11.0" height="15.0" fill="rgb(235,134,27)" rx="2" ry="2" />
<text text-anchor="" x="481.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (139 samples, 0.86%)</title><rect x="418.2" y="257" width="10.2" height="15.0" fill="rgb(221,55,14)" rx="2" ry="2" />
<text text-anchor="" x="421.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (19 samples, 0.12%)</title><rect x="532.3" y="145" width="1.3" height="15.0" fill="rgb(244,169,35)" rx="2" ry="2" />
<text text-anchor="" x="535.25" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (4 samples, 0.02%)</title><rect x="600.9" y="113" width="0.3" height="15.0" fill="rgb(218,41,52)" rx="2" ry="2" />
<text text-anchor="" x="603.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:61 (8 samples, 0.05%)</title><rect x="1045.3" y="465" width="0.6" height="15.0" fill="rgb(235,69,38)" rx="2" ry="2" />
<text text-anchor="" x="1048.34" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (15 samples, 0.09%)</title><rect x="459.8" y="241" width="1.1" height="15.0" fill="rgb(245,102,15)" rx="2" ry="2" />
<text text-anchor="" x="462.81" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (11 samples, 0.07%)</title><rect x="567.5" y="97" width="0.8" height="15.0" fill="rgb(218,29,44)" rx="2" ry="2" />
<text text-anchor="" x="570.52" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:432 (20 samples, 0.12%)</title><rect x="794.6" y="497" width="1.5" height="15.0" fill="rgb(220,51,5)" rx="2" ry="2" />
<text text-anchor="" x="797.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (38 samples, 0.24%)</title><rect x="563.9" y="81" width="2.7" height="15.0" fill="rgb(208,3,37)" rx="2" ry="2" />
<text text-anchor="" x="566.85" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (18 samples, 0.11%)</title><rect x="1166.8" y="449" width="1.3" height="15.0" fill="rgb(217,213,37)" rx="2" ry="2" />
<text text-anchor="" x="1169.76" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (74 samples, 0.46%)</title><rect x="584.0" y="161" width="5.4" height="15.0" fill="rgb(213,105,51)" rx="2" ry="2" />
<text text-anchor="" x="587.02" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (9 samples, 0.06%)</title><rect x="537.6" y="161" width="0.7" height="15.0" fill="rgb(214,85,16)" rx="2" ry="2" />
<text text-anchor="" x="540.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:397 (38 samples, 0.24%)</title><rect x="1146.6" y="497" width="2.8" height="15.0" fill="rgb(251,207,41)" rx="2" ry="2" />
<text text-anchor="" x="1149.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:53 (6 samples, 0.04%)</title><rect x="1036.5" y="465" width="0.5" height="15.0" fill="rgb(230,217,22)" rx="2" ry="2" />
<text text-anchor="" x="1039.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:387 (12 samples, 0.07%)</title><rect x="51.1" y="497" width="0.8" height="15.0" fill="rgb(239,52,28)" rx="2" ry="2" />
<text text-anchor="" x="54.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:548 (22 samples, 0.14%)</title><rect x="898.7" y="497" width="1.6" height="15.0" fill="rgb(207,49,37)" rx="2" ry="2" />
<text text-anchor="" x="901.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (457 samples, 2.84%)</title><rect x="125.6" y="481" width="33.5" height="15.0" fill="rgb(246,124,31)" rx="2" ry="2" />
<text text-anchor="" x="128.62" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (9 samples, 0.06%)</title><rect x="602.6" y="113" width="0.6" height="15.0" fill="rgb(211,59,50)" rx="2" ry="2" />
<text text-anchor="" x="605.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (2 samples, 0.01%)</title><rect x="544.5" y="145" width="0.1" height="15.0" fill="rgb(209,37,1)" rx="2" ry="2" />
<text text-anchor="" x="547.50" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (9 samples, 0.06%)</title><rect x="519.0" y="177" width="0.6" height="15.0" fill="rgb(210,225,16)" rx="2" ry="2" />
<text text-anchor="" x="521.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (4 samples, 0.02%)</title><rect x="41.7" y="481" width="0.3" height="15.0" fill="rgb(220,201,26)" rx="2" ry="2" />
<text text-anchor="" x="44.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (50 samples, 0.31%)</title><rect x="252.9" y="337" width="3.7" height="15.0" fill="rgb(243,171,29)" rx="2" ry="2" />
<text text-anchor="" x="255.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (125 samples, 0.78%)</title><rect x="526.7" y="161" width="9.1" height="15.0" fill="rgb(243,223,6)" rx="2" ry="2" />
<text text-anchor="" x="529.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (16,094 samples, 100%)</title><rect x="10.0" y="689" width="1180.0" height="15.0" fill="rgb(213,74,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (10 samples, 0.06%)</title><rect x="862.3" y="465" width="0.7" height="15.0" fill="rgb(230,128,0)" rx="2" ry="2" />
<text text-anchor="" x="865.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (127 samples, 0.79%)</title><rect x="568.4" y="97" width="9.3" height="15.0" fill="rgb(210,69,54)" rx="2" ry="2" />
<text text-anchor="" x="571.40" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:208 (19 samples, 0.12%)</title><rect x="774.8" y="529" width="1.4" height="15.0" fill="rgb(228,136,48)" rx="2" ry="2" />
<text text-anchor="" x="777.79" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (28 samples, 0.17%)</title><rect x="22.3" y="465" width="2.1" height="15.0" fill="rgb(245,134,14)" rx="2" ry="2" />
<text text-anchor="" x="25.32" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:212 (2 samples, 0.01%)</title><rect x="616.4" y="97" width="0.1" height="15.0" fill="rgb(222,173,33)" rx="2" ry="2" />
<text text-anchor="" x="619.35" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (325 samples, 2.02%)</title><rect x="558.1" y="129" width="23.9" height="15.0" fill="rgb(220,71,52)" rx="2" ry="2" />
<text text-anchor="" x="561.13" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:188 (36 samples, 0.22%)</title><rect x="790.2" y="465" width="2.6" height="15.0" fill="rgb(245,221,17)" rx="2" ry="2" />
<text text-anchor="" x="793.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (4 samples, 0.02%)</title><rect x="588.9" y="129" width="0.3" height="15.0" fill="rgb(237,161,5)" rx="2" ry="2" />
<text text-anchor="" x="591.93" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:__eq__:315 (53 samples, 0.33%)</title><rect x="664.6" y="481" width="3.9" height="15.0" fill="rgb(254,188,24)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (11 samples, 0.07%)</title><rect x="1072.8" y="465" width="0.8" height="15.0" fill="rgb(247,205,5)" rx="2" ry="2" />
<text text-anchor="" x="1075.76" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:405 (5 samples, 0.03%)</title><rect x="1189.6" y="497" width="0.4" height="15.0" fill="rgb(242,209,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/debug.py:dbg:91 (10 samples, 0.06%)</title><rect x="1118.7" y="513" width="0.8" height="15.0" fill="rgb(217,35,17)" rx="2" ry="2" />
<text text-anchor="" x="1121.73" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:404 (32 samples, 0.20%)</title><rect x="1152.6" y="497" width="2.4" height="15.0" fill="rgb(235,94,30)" rx="2" ry="2" />
<text text-anchor="" x="1155.61" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (238 samples, 1.48%)</title><rect x="342.4" y="321" width="17.4" height="15.0" fill="rgb(223,185,23)" rx="2" ry="2" />
<text text-anchor="" x="345.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:116 (103 samples, 0.64%)</title><rect x="1066.1" y="481" width="7.5" height="15.0" fill="rgb(211,214,4)" rx="2" ry="2" />
<text text-anchor="" x="1069.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (60 samples, 0.37%)</title><rect x="868.7" y="465" width="4.4" height="15.0" fill="rgb(249,211,8)" rx="2" ry="2" />
<text text-anchor="" x="871.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:67 (18 samples, 0.11%)</title><rect x="729.0" y="481" width="1.3" height="15.0" fill="rgb(244,37,21)" rx="2" ry="2" />
<text text-anchor="" x="731.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:54 (28 samples, 0.17%)</title><rect x="1037.0" y="465" width="2.0" height="15.0" fill="rgb(229,56,36)" rx="2" ry="2" />
<text text-anchor="" x="1039.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (4 samples, 0.02%)</title><rect x="543.6" y="129" width="0.3" height="15.0" fill="rgb(253,180,26)" rx="2" ry="2" />
<text text-anchor="" x="546.62" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:386 (3 samples, 0.02%)</title><rect x="50.8" y="497" width="0.3" height="15.0" fill="rgb(209,27,42)" rx="2" ry="2" />
<text text-anchor="" x="53.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (25 samples, 0.16%)</title><rect x="282.7" y="385" width="1.9" height="15.0" fill="rgb(244,209,31)" rx="2" ry="2" />
<text text-anchor="" x="285.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:560 (54 samples, 0.34%)</title><rect x="931.6" y="497" width="4.0" height="15.0" fill="rgb(214,173,37)" rx="2" ry="2" />
<text text-anchor="" x="934.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (4 samples, 0.02%)</title><rect x="488.5" y="193" width="0.3" height="15.0" fill="rgb(216,66,32)" rx="2" ry="2" />
<text text-anchor="" x="491.48" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (58 samples, 0.36%)</title><rect x="420.9" y="241" width="4.2" height="15.0" fill="rgb(250,126,43)" rx="2" ry="2" />
<text text-anchor="" x="423.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (56 samples, 0.35%)</title><rect x="562.5" y="97" width="4.1" height="15.0" fill="rgb(208,134,10)" rx="2" ry="2" />
<text text-anchor="" x="565.53" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:393 (22 samples, 0.14%)</title><rect x="1178.4" y="497" width="1.6" height="15.0" fill="rgb(251,2,22)" rx="2" ry="2" />
<text text-anchor="" x="1181.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (49 samples, 0.30%)</title><rect x="27.7" y="481" width="3.6" height="15.0" fill="rgb(243,193,29)" rx="2" ry="2" />
<text text-anchor="" x="30.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_last_line:21 (205 samples, 1.27%)</title><rect x="841.0" y="481" width="15.0" height="15.0" fill="rgb(234,22,36)" rx="2" ry="2" />
<text text-anchor="" x="844.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (88 samples, 0.55%)</title><rect x="286.1" y="385" width="6.5" height="15.0" fill="rgb(226,64,44)" rx="2" ry="2" />
<text text-anchor="" x="289.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (12 samples, 0.07%)</title><rect x="157.7" y="385" width="0.9" height="15.0" fill="rgb(227,63,28)" rx="2" ry="2" />
<text text-anchor="" x="160.74" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (7 samples, 0.04%)</title><rect x="331.1" y="289" width="0.6" height="15.0" fill="rgb(238,195,21)" rx="2" ry="2" />
<text text-anchor="" x="334.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:64 (5 samples, 0.03%)</title><rect x="1046.0" y="465" width="0.4" height="15.0" fill="rgb(242,211,8)" rx="2" ry="2" />
<text text-anchor="" x="1049.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (17 samples, 0.11%)</title><rect x="356.9" y="273" width="1.2" height="15.0" fill="rgb(211,109,15)" rx="2" ry="2" />
<text text-anchor="" x="359.87" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (38 samples, 0.24%)</title><rect x="1029.4" y="481" width="2.7" height="15.0" fill="rgb(211,163,28)" rx="2" ry="2" />
<text text-anchor="" x="1032.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (2,742 samples, 17.04%)</title><rect x="428.4" y="289" width="201.1" height="15.0" fill="rgb(251,152,34)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (19 samples, 0.12%)</title><rect x="598.5" y="113" width="1.4" height="15.0" fill="rgb(228,40,9)" rx="2" ry="2" />
<text text-anchor="" x="601.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (54 samples, 0.34%)</title><rect x="597.2" y="129" width="4.0" height="15.0" fill="rgb(217,143,47)" rx="2" ry="2" />
<text text-anchor="" x="600.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (189 samples, 1.17%)</title><rect x="266.8" y="401" width="13.9" height="15.0" fill="rgb(252,203,28)" rx="2" ry="2" />
<text text-anchor="" x="269.84" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:394 (3 samples, 0.02%)</title><rect x="1146.4" y="497" width="0.2" height="15.0" fill="rgb(228,84,39)" rx="2" ry="2" />
<text text-anchor="" x="1149.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (286 samples, 1.78%)</title><rect x="338.8" y="337" width="21.0" height="15.0" fill="rgb(230,124,11)" rx="2" ry="2" />
<text text-anchor="" x="341.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:88 (7 samples, 0.04%)</title><rect x="681.5" y="497" width="0.5" height="15.0" fill="rgb(210,42,50)" rx="2" ry="2" />
<text text-anchor="" x="684.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (6 samples, 0.04%)</title><rect x="1177.8" y="481" width="0.4" height="15.0" fill="rgb(244,35,47)" rx="2" ry="2" />
<text text-anchor="" x="1180.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:91 (36 samples, 0.22%)</title><rect x="695.2" y="497" width="2.6" height="15.0" fill="rgb(208,217,21)" rx="2" ry="2" />
<text text-anchor="" x="698.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:57 (8 samples, 0.05%)</title><rect x="1043.6" y="465" width="0.6" height="15.0" fill="rgb(225,55,6)" rx="2" ry="2" />
<text text-anchor="" x="1046.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:397 (37 samples, 0.23%)</title><rect x="72.4" y="497" width="2.7" height="15.0" fill="rgb(248,228,37)" rx="2" ry="2" />
<text text-anchor="" x="75.39" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (9 samples, 0.06%)</title><rect x="559.7" y="113" width="0.6" height="15.0" fill="rgb(228,179,31)" rx="2" ry="2" />
<text text-anchor="" x="562.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:565 (5 samples, 0.03%)</title><rect x="935.8" y="497" width="0.4" height="15.0" fill="rgb(210,38,13)" rx="2" ry="2" />
<text text-anchor="" x="938.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (5 samples, 0.03%)</title><rect x="1096.5" y="481" width="0.4" height="15.0" fill="rgb(210,210,45)" rx="2" ry="2" />
<text text-anchor="" x="1099.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (62 samples, 0.39%)</title><rect x="539.5" y="145" width="4.6" height="15.0" fill="rgb(248,87,25)" rx="2" ry="2" />
<text text-anchor="" x="542.51" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:389 (102 samples, 0.63%)</title><rect x="1160.6" y="497" width="7.5" height="15.0" fill="rgb(221,58,26)" rx="2" ry="2" />
<text text-anchor="" x="1163.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (4,595 samples, 28.55%)</title><rect x="292.6" y="385" width="336.9" height="15.0" fill="rgb(250,171,35)" rx="2" ry="2" />
<text text-anchor="" x="295.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jed..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (5 samples, 0.03%)</title><rect x="1096.2" y="481" width="0.3" height="15.0" fill="rgb(223,189,49)" rx="2" ry="2" />
<text text-anchor="" x="1099.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (48 samples, 0.30%)</title><rect x="611.4" y="49" width="3.5" height="15.0" fill="rgb(228,44,0)" rx="2" ry="2" />
<text text-anchor="" x="614.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (10 samples, 0.06%)</title><rect x="487.7" y="193" width="0.8" height="15.0" fill="rgb(205,3,53)" rx="2" ry="2" />
<text text-anchor="" x="490.75" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (1,914 samples, 11.89%)</title><rect x="489.0" y="225" width="140.3" height="15.0" fill="rgb(220,88,19)" rx="2" ry="2" />
<text text-anchor="" x="491.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:398 (18 samples, 0.11%)</title><rect x="1149.4" y="497" width="1.3" height="15.0" fill="rgb(212,19,15)" rx="2" ry="2" />
<text text-anchor="" x="1152.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (5 samples, 0.03%)</title><rect x="218.7" y="353" width="0.3" height="15.0" fill="rgb(229,160,48)" rx="2" ry="2" />
<text text-anchor="" x="221.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:189 (486 samples, 3.02%)</title><rect x="10.0" y="529" width="35.6" height="15.0" fill="rgb(207,202,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:225 (3,678 samples, 22.85%)</title><rect x="359.8" y="337" width="269.7" height="15.0" fill="rgb(245,25,36)" rx="2" ry="2" />
<text text-anchor="" x="362.81" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jed..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:__eq__:293 (24 samples, 0.15%)</title><rect x="659.5" y="481" width="1.8" height="15.0" fill="rgb(207,144,44)" rx="2" ry="2" />
<text text-anchor="" x="662.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:78 (405 samples, 2.52%)</title><rect x="643.8" y="497" width="29.7" height="15.0" fill="rgb(212,82,32)" rx="2" ry="2" />
<text text-anchor="" x="646.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:404 (32 samples, 0.20%)</title><rect x="79.1" y="497" width="2.3" height="15.0" fill="rgb(218,80,42)" rx="2" ry="2" />
<text text-anchor="" x="82.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (6 samples, 0.04%)</title><rect x="1033.0" y="481" width="0.5" height="15.0" fill="rgb(226,71,48)" rx="2" ry="2" />
<text text-anchor="" x="1036.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:402 (27 samples, 0.17%)</title><rect x="76.9" y="497" width="2.0" height="15.0" fill="rgb(249,98,52)" rx="2" ry="2" />
<text text-anchor="" x="79.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (384 samples, 2.39%)</title><rect x="601.2" y="129" width="28.1" height="15.0" fill="rgb(242,21,41)" rx="2" ry="2" />
<text text-anchor="" x="604.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (2 samples, 0.01%)</title><rect x="1106.6" y="481" width="0.1" height="15.0" fill="rgb(206,80,35)" rx="2" ry="2" />
<text text-anchor="" x="1109.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (31 samples, 0.19%)</title><rect x="492.5" y="209" width="2.3" height="15.0" fill="rgb(229,18,5)" rx="2" ry="2" />
<text text-anchor="" x="495.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (1,685 samples, 10.47%)</title><rect x="505.8" y="209" width="123.5" height="15.0" fill="rgb(242,152,45)" rx="2" ry="2" />
<text text-anchor="" x="508.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:398 (26 samples, 0.16%)</title><rect x="1102.2" y="497" width="1.9" height="15.0" fill="rgb(229,106,51)" rx="2" ry="2" />
<text text-anchor="" x="1105.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:67 (16 samples, 0.10%)</title><rect x="1063.5" y="465" width="1.2" height="15.0" fill="rgb(207,129,11)" rx="2" ry="2" />
<text text-anchor="" x="1066.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (46 samples, 0.29%)</title><rect x="1084.3" y="481" width="3.4" height="15.0" fill="rgb(236,155,9)" rx="2" ry="2" />
<text text-anchor="" x="1087.35" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:keyword:1071 (16 samples, 0.10%)</title><rect x="762.1" y="481" width="1.2" height="15.0" fill="rgb(210,176,17)" rx="2" ry="2" />
<text text-anchor="" x="765.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:388 (6 samples, 0.04%)</title><rect x="1160.2" y="497" width="0.4" height="15.0" fill="rgb(225,41,18)" rx="2" ry="2" />
<text text-anchor="" x="1163.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:225 (629 samples, 3.91%)</title><rect x="535.8" y="177" width="46.2" height="15.0" fill="rgb(205,24,52)" rx="2" ry="2" />
<text text-anchor="" x="538.85" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:210 (2,517 samples, 15.64%)</title><rect x="776.3" y="529" width="184.5" height="15.0" fill="rgb(210,111,19)" rx="2" ry="2" />
<text text-anchor="" x="779.26" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (9 samples, 0.06%)</title><rect x="596.6" y="129" width="0.6" height="15.0" fill="rgb(238,150,17)" rx="2" ry="2" />
<text text-anchor="" x="599.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (13 samples, 0.08%)</title><rect x="789.2" y="465" width="1.0" height="15.0" fill="rgb(222,125,6)" rx="2" ry="2" />
<text text-anchor="" x="792.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:397 (41 samples, 0.25%)</title><rect x="35.9" y="497" width="3.0" height="15.0" fill="rgb(245,167,48)" rx="2" ry="2" />
<text text-anchor="" x="38.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (91 samples, 0.57%)</title><rect x="551.5" y="129" width="6.6" height="15.0" fill="rgb(242,196,1)" rx="2" ry="2" />
<text text-anchor="" x="554.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (62 samples, 0.39%)</title><rect x="584.9" y="145" width="4.5" height="15.0" fill="rgb(206,9,23)" rx="2" ry="2" />
<text text-anchor="" x="587.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (8 samples, 0.05%)</title><rect x="745.1" y="481" width="0.6" height="15.0" fill="rgb(209,52,13)" rx="2" ry="2" />
<text text-anchor="" x="748.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_start_pos_of_prefix:113 (429 samples, 2.67%)</title><rect x="701.3" y="497" width="31.5" height="15.0" fill="rgb(250,88,41)" rx="2" ry="2" />
<text text-anchor="" x="704.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (21 samples, 0.13%)</title><rect x="216.1" y="353" width="1.5" height="15.0" fill="rgb(212,204,31)" rx="2" ry="2" />
<text text-anchor="" x="219.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (223 samples, 1.39%)</title><rect x="142.8" y="417" width="16.3" height="15.0" fill="rgb(248,11,35)" rx="2" ry="2" />
<text text-anchor="" x="145.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (7 samples, 0.04%)</title><rect x="599.9" y="113" width="0.5" height="15.0" fill="rgb(239,34,37)" rx="2" ry="2" />
<text text-anchor="" x="602.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:405 (2 samples, 0.01%)</title><rect x="1155.0" y="497" width="0.1" height="15.0" fill="rgb(223,96,37)" rx="2" ry="2" />
<text text-anchor="" x="1157.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/__init__.py:parse:104 (16,094 samples, 100.00%)</title><rect x="10.0" y="561" width="1180.0" height="15.0" fill="rgb(212,133,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/__init__.py:parse:104</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (204 samples, 1.27%)</title><rect x="245.5" y="385" width="15.0" height="15.0" fill="rgb(254,48,30)" rx="2" ry="2" />
<text text-anchor="" x="248.50" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (124 samples, 0.77%)</title><rect x="605.8" y="97" width="9.1" height="15.0" fill="rgb(225,50,18)" rx="2" ry="2" />
<text text-anchor="" x="608.79" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:192 (4 samples, 0.02%)</title><rect x="765.2" y="529" width="0.3" height="15.0" fill="rgb(237,9,3)" rx="2" ry="2" />
<text text-anchor="" x="768.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (25 samples, 0.16%)</title><rect x="507.5" y="193" width="1.9" height="15.0" fill="rgb(218,170,30)" rx="2" ry="2" />
<text text-anchor="" x="510.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (7 samples, 0.04%)</title><rect x="615.8" y="97" width="0.6" height="15.0" fill="rgb(229,143,42)" rx="2" ry="2" />
<text text-anchor="" x="618.84" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (4 samples, 0.02%)</title><rect x="583.2" y="161" width="0.3" height="15.0" fill="rgb(228,229,22)" rx="2" ry="2" />
<text text-anchor="" x="586.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (31 samples, 0.19%)</title><rect x="184.8" y="401" width="2.3" height="15.0" fill="rgb(243,12,38)" rx="2" ry="2" />
<text text-anchor="" x="187.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (316 samples, 1.96%)</title><rect x="196.3" y="433" width="23.2" height="15.0" fill="rgb(214,226,41)" rx="2" ry="2" />
<text text-anchor="" x="199.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (6 samples, 0.04%)</title><rect x="359.0" y="273" width="0.4" height="15.0" fill="rgb(210,42,49)" rx="2" ry="2" />
<text text-anchor="" x="362.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:add:383 (65 samples, 0.40%)</title><rect x="955.6" y="481" width="4.8" height="15.0" fill="rgb(224,101,14)" rx="2" ry="2" />
<text text-anchor="" x="958.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (6 samples, 0.04%)</title><rect x="1144.1" y="481" width="0.4" height="15.0" fill="rgb(226,120,42)" rx="2" ry="2" />
<text text-anchor="" x="1147.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (112 samples, 0.70%)</title><rect x="272.5" y="369" width="8.2" height="15.0" fill="rgb(243,154,19)" rx="2" ry="2" />
<text text-anchor="" x="275.48" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (290 samples, 1.80%)</title><rect x="372.3" y="289" width="21.2" height="15.0" fill="rgb(220,56,49)" rx="2" ry="2" />
<text text-anchor="" x="375.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (132 samples, 0.82%)</title><rect x="209.8" y="369" width="9.7" height="15.0" fill="rgb(240,49,15)" rx="2" ry="2" />
<text text-anchor="" x="212.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:509 (41 samples, 0.25%)</title><rect x="809.6" y="497" width="3.0" height="15.0" fill="rgb(241,75,39)" rx="2" ry="2" />
<text text-anchor="" x="812.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (1,491 samples, 9.26%)</title><rect x="520.0" y="193" width="109.3" height="15.0" fill="rgb(252,158,11)" rx="2" ry="2" />
<text text-anchor="" x="523.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (15 samples, 0.09%)</title><rect x="191.9" y="449" width="1.1" height="15.0" fill="rgb(205,210,29)" rx="2" ry="2" />
<text text-anchor="" x="194.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:398 (25 samples, 0.16%)</title><rect x="75.1" y="497" width="1.8" height="15.0" fill="rgb(230,89,11)" rx="2" ry="2" />
<text text-anchor="" x="78.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:390 (145 samples, 0.90%)</title><rect x="1134.3" y="497" width="10.6" height="15.0" fill="rgb(233,143,47)" rx="2" ry="2" />
<text text-anchor="" x="1137.28" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (3 samples, 0.02%)</title><rect x="1187.2" y="481" width="0.2" height="15.0" fill="rgb(238,5,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (4 samples, 0.02%)</title><rect x="282.5" y="385" width="0.2" height="15.0" fill="rgb(229,17,22)" rx="2" ry="2" />
<text text-anchor="" x="285.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (61 samples, 0.38%)</title><rect x="1170.6" y="481" width="4.4" height="15.0" fill="rgb(206,142,29)" rx="2" ry="2" />
<text text-anchor="" x="1173.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:parsed_until_line:423 (437 samples, 2.72%)</title><rect x="1123.1" y="513" width="32.0" height="15.0" fill="rgb(227,122,11)" rx="2" ry="2" />
<text text-anchor="" x="1126.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (4 samples, 0.02%)</title><rect x="260.2" y="337" width="0.3" height="15.0" fill="rgb(208,227,3)" rx="2" ry="2" />
<text text-anchor="" x="263.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (172 samples, 1.07%)</title><rect x="347.2" y="305" width="12.6" height="15.0" fill="rgb(209,218,0)" rx="2" ry="2" />
<text text-anchor="" x="350.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (33 samples, 0.21%)</title><rect x="853.6" y="433" width="2.4" height="15.0" fill="rgb(247,129,1)" rx="2" ry="2" />
<text text-anchor="" x="856.61" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (16 samples, 0.10%)</title><rect x="1086.5" y="465" width="1.2" height="15.0" fill="rgb(241,229,29)" rx="2" ry="2" />
<text text-anchor="" x="1089.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/api/__init__.py:_get_module_node:140 (16,094 samples, 100.00%)</title><rect x="10.0" y="577" width="1180.0" height="15.0" fill="rgb(205,153,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/api/__init__.py:_get_module_node:140</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (28 samples, 0.17%)</title><rect x="449.4" y="257" width="2.1" height="15.0" fill="rgb(239,207,35)" rx="2" ry="2" />
<text text-anchor="" x="452.40" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:188 (67 samples, 0.42%)</title><rect x="800.3" y="481" width="4.9" height="15.0" fill="rgb(251,164,48)" rx="2" ry="2" />
<text text-anchor="" x="803.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:type:1067 (100 samples, 0.62%)</title><rect x="756.0" y="497" width="7.3" height="15.0" fill="rgb(233,137,38)" rx="2" ry="2" />
<text text-anchor="" x="758.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:219 (120 samples, 0.75%)</title><rect x="1111.8" y="529" width="8.8" height="15.0" fill="rgb(207,76,47)" rx="2" ry="2" />
<text text-anchor="" x="1114.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (7 samples, 0.04%)</title><rect x="259.7" y="337" width="0.5" height="15.0" fill="rgb(236,201,46)" rx="2" ry="2" />
<text text-anchor="" x="262.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:66 (233 samples, 1.45%)</title><rect x="1046.4" y="465" width="17.1" height="15.0" fill="rgb(235,186,11)" rx="2" ry="2" />
<text text-anchor="" x="1049.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:65 (3 samples, 0.02%)</title><rect x="720.2" y="481" width="0.2" height="15.0" fill="rgb(240,127,39)" rx="2" ry="2" />
<text text-anchor="" x="723.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (389 samples, 2.42%)</title><rect x="130.6" y="465" width="28.5" height="15.0" fill="rgb(232,94,14)" rx="2" ry="2" />
<text text-anchor="" x="133.61" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:125 (3 samples, 0.02%)</title><rect x="1086.3" y="465" width="0.2" height="15.0" fill="rgb(218,213,12)" rx="2" ry="2" />
<text text-anchor="" x="1089.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (34 samples, 0.21%)</title><rect x="1131.8" y="465" width="2.5" height="15.0" fill="rgb(222,165,5)" rx="2" ry="2" />
<text text-anchor="" x="1134.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_last_line:23 (138 samples, 0.86%)</title><rect x="863.0" y="481" width="10.1" height="15.0" fill="rgb(223,19,15)" rx="2" ry="2" />
<text text-anchor="" x="866.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:207 (33 samples, 0.21%)</title><rect x="772.4" y="529" width="2.4" height="15.0" fill="rgb(220,173,34)" rx="2" ry="2" />
<text text-anchor="" x="775.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (2 samples, 0.01%)</title><rect x="535.7" y="145" width="0.1" height="15.0" fill="rgb(211,70,26)" rx="2" ry="2" />
<text text-anchor="" x="538.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (180 samples, 1.12%)</title><rect x="102.6" y="497" width="13.2" height="15.0" fill="rgb(237,71,31)" rx="2" ry="2" />
<text text-anchor="" x="105.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (20 samples, 0.12%)</title><rect x="533.6" y="145" width="1.5" height="15.0" fill="rgb(243,110,51)" rx="2" ry="2" />
<text text-anchor="" x="536.65" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (6 samples, 0.04%)</title><rect x="427.3" y="241" width="0.5" height="15.0" fill="rgb(240,146,24)" rx="2" ry="2" />
<text text-anchor="" x="430.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (7 samples, 0.04%)</title><rect x="330.6" y="289" width="0.5" height="15.0" fill="rgb(234,177,14)" rx="2" ry="2" />
<text text-anchor="" x="333.63" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:67 (18 samples, 0.11%)</title><rect x="1025.5" y="481" width="1.3" height="15.0" fill="rgb(231,196,10)" rx="2" ry="2" />
<text text-anchor="" x="1028.47" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (19 samples, 0.12%)</title><rect x="860.9" y="465" width="1.4" height="15.0" fill="rgb(230,169,43)" rx="2" ry="2" />
<text text-anchor="" x="863.87" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (133 samples, 0.83%)</title><rect x="321.9" y="305" width="9.8" height="15.0" fill="rgb(234,83,35)" rx="2" ry="2" />
<text text-anchor="" x="324.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:219 (38 samples, 0.24%)</title><rect x="626.5" y="97" width="2.8" height="15.0" fill="rgb(234,18,5)" rx="2" ry="2" />
<text text-anchor="" x="629.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (60 samples, 0.37%)</title><rect x="63.1" y="481" width="4.4" height="15.0" fill="rgb(227,213,35)" rx="2" ry="2" />
<text text-anchor="" x="66.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:573 (3 samples, 0.02%)</title><rect x="960.4" y="497" width="0.2" height="15.0" fill="rgb(235,74,39)" rx="2" ry="2" />
<text text-anchor="" x="963.36" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:230 (865 samples, 5.37%)</title><rect x="634.4" y="513" width="63.4" height="15.0" fill="rgb(228,21,45)" rx="2" ry="2" />
<text text-anchor="" x="637.39" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:90 (32 samples, 0.20%)</title><rect x="692.8" y="497" width="2.4" height="15.0" fill="rgb(227,222,17)" rx="2" ry="2" />
<text text-anchor="" x="695.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:29 (18 samples, 0.11%)</title><rect x="632.0" y="497" width="1.4" height="15.0" fill="rgb(212,143,22)" rx="2" ry="2" />
<text text-anchor="" x="635.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:55 (35 samples, 0.22%)</title><rect x="972.2" y="481" width="2.5" height="15.0" fill="rgb(224,30,48)" rx="2" ry="2" />
<text text-anchor="" x="975.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (153 samples, 0.95%)</title><rect x="269.5" y="385" width="11.2" height="15.0" fill="rgb(238,108,5)" rx="2" ry="2" />
<text text-anchor="" x="272.48" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:191 (9,323 samples, 57.93%)</title><rect x="81.6" y="529" width="683.6" height="15.0" fill="rgb(241,105,7)" rx="2" ry="2" />
<text text-anchor="" x="84.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:402 (43 samples, 0.27%)</title><rect x="1104.1" y="497" width="3.2" height="15.0" fill="rgb(214,10,20)" rx="2" ry="2" />
<text text-anchor="" x="1107.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:389 (102 samples, 0.63%)</title><rect x="52.9" y="497" width="7.5" height="15.0" fill="rgb(220,148,13)" rx="2" ry="2" />
<text text-anchor="" x="55.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:32 (5 samples, 0.03%)</title><rect x="633.4" y="497" width="0.3" height="15.0" fill="rgb(234,69,25)" rx="2" ry="2" />
<text text-anchor="" x="636.36" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:514 (312 samples, 1.94%)</title><rect x="814.8" y="497" width="22.8" height="15.0" fill="rgb(238,138,14)" rx="2" ry="2" />
<text text-anchor="" x="817.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (64 samples, 0.40%)</title><rect x="1129.6" y="481" width="4.7" height="15.0" fill="rgb(207,32,0)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:398 (20 samples, 0.12%)</title><rect x="1183.1" y="497" width="1.5" height="15.0" fill="rgb(208,170,12)" rx="2" ry="2" />
<text text-anchor="" x="1186.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (2 samples, 0.01%)</title><rect x="492.4" y="209" width="0.1" height="15.0" fill="rgb(246,159,49)" rx="2" ry="2" />
<text text-anchor="" x="495.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (5,545 samples, 34.45%)</title><rect x="222.9" y="433" width="406.6" height="15.0" fill="rgb(206,48,9)" rx="2" ry="2" />
<text text-anchor="" x="225.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/par..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (646 samples, 4.01%)</title><rect x="582.0" y="177" width="47.3" height="15.0" fill="rgb(242,21,29)" rx="2" ry="2" />
<text text-anchor="" x="584.96" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:222 (471 samples, 2.93%)</title><rect x="1120.6" y="529" width="34.5" height="15.0" fill="rgb(237,186,8)" rx="2" ry="2" />
<text text-anchor="" x="1123.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:402 (36 samples, 0.22%)</title><rect x="39.8" y="497" width="2.7" height="15.0" fill="rgb(215,156,19)" rx="2" ry="2" />
<text text-anchor="" x="42.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (5 samples, 0.03%)</title><rect x="359.4" y="273" width="0.4" height="15.0" fill="rgb(221,53,21)" rx="2" ry="2" />
<text text-anchor="" x="362.44" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:64 (10 samples, 0.06%)</title><rect x="719.4" y="481" width="0.8" height="15.0" fill="rgb(218,221,22)" rx="2" ry="2" />
<text text-anchor="" x="722.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (54 samples, 0.34%)</title><rect x="441.1" y="241" width="4.0" height="15.0" fill="rgb(230,222,5)" rx="2" ry="2" />
<text text-anchor="" x="444.12" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:68 (17 samples, 0.11%)</title><rect x="1064.7" y="465" width="1.2" height="15.0" fill="rgb(246,17,52)" rx="2" ry="2" />
<text text-anchor="" x="1067.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (58 samples, 0.36%)</title><rect x="119.8" y="481" width="4.2" height="15.0" fill="rgb(221,70,9)" rx="2" ry="2" />
<text text-anchor="" x="122.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (20 samples, 0.12%)</title><rect x="390.1" y="225" width="1.5" height="15.0" fill="rgb(233,28,53)" rx="2" ry="2" />
<text text-anchor="" x="393.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:84 (8 samples, 0.05%)</title><rect x="679.9" y="497" width="0.6" height="15.0" fill="rgb(242,12,11)" rx="2" ry="2" />
<text text-anchor="" x="682.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:85 (7 samples, 0.04%)</title><rect x="680.5" y="497" width="0.5" height="15.0" fill="rgb(240,216,50)" rx="2" ry="2" />
<text text-anchor="" x="683.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (70 samples, 0.43%)</title><rect x="110.7" y="481" width="5.1" height="15.0" fill="rgb(254,114,34)" rx="2" ry="2" />
<text text-anchor="" x="113.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/debug.py:dbg:99 (6 samples, 0.04%)</title><rect x="1120.1" y="513" width="0.5" height="15.0" fill="rgb(217,203,5)" rx="2" ry="2" />
<text text-anchor="" x="1123.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (6 samples, 0.04%)</title><rect x="189.9" y="449" width="0.4" height="15.0" fill="rgb(233,45,36)" rx="2" ry="2" />
<text text-anchor="" x="192.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (23 samples, 0.14%)</title><rect x="263.5" y="401" width="1.7" height="15.0" fill="rgb(218,13,17)" rx="2" ry="2" />
<text text-anchor="" x="266.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (16 samples, 0.10%)</title><rect x="328.8" y="289" width="1.2" height="15.0" fill="rgb(248,43,52)" rx="2" ry="2" />
<text text-anchor="" x="331.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:217 (4,554 samples, 28.30%)</title><rect x="295.6" y="369" width="333.9" height="15.0" fill="rgb(245,154,29)" rx="2" ry="2" />
<text text-anchor="" x="298.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jed..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_insertion_node:430 (9 samples, 0.06%)</title><rect x="793.6" y="497" width="0.6" height="15.0" fill="rgb(232,86,4)" rx="2" ry="2" />
<text text-anchor="" x="796.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:211 (18 samples, 0.11%)</title><rect x="293.8" y="369" width="1.3" height="15.0" fill="rgb(226,77,7)" rx="2" ry="2" />
<text text-anchor="" x="296.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (15 samples, 0.09%)</title><rect x="68.7" y="481" width="1.1" height="15.0" fill="rgb(206,58,25)" rx="2" ry="2" />
<text text-anchor="" x="71.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (23 samples, 0.14%)</title><rect x="265.2" y="401" width="1.6" height="15.0" fill="rgb(225,2,0)" rx="2" ry="2" />
<text text-anchor="" x="268.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (4 samples, 0.02%)</title><rect x="1033.5" y="481" width="0.3" height="15.0" fill="rgb(217,79,24)" rx="2" ry="2" />
<text text-anchor="" x="1036.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (3 samples, 0.02%)</title><rect x="161.0" y="465" width="0.3" height="15.0" fill="rgb(214,30,14)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (11 samples, 0.07%)</title><rect x="1086.9" y="449" width="0.8" height="15.0" fill="rgb(244,56,40)" rx="2" ry="2" />
<text text-anchor="" x="1089.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (12 samples, 0.07%)</title><rect x="1071.9" y="465" width="0.9" height="15.0" fill="rgb(248,178,4)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_is_flow_node:66 (18 samples, 0.11%)</title><rect x="925.8" y="481" width="1.3" height="15.0" fill="rgb(229,221,12)" rx="2" ry="2" />
<text text-anchor="" x="928.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (6,418 samples, 39.88%)</title><rect x="159.1" y="481" width="470.6" height="15.0" fill="rgb(231,0,5)" rx="2" ry="2" />
<text text-anchor="" x="162.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (2 samples, 0.01%)</title><rect x="629.5" y="433" width="0.1" height="15.0" fill="rgb(206,75,49)" rx="2" ry="2" />
<text text-anchor="" x="632.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:390 (143 samples, 0.89%)</title><rect x="60.4" y="497" width="10.5" height="15.0" fill="rgb(225,115,46)" rx="2" ry="2" />
<text text-anchor="" x="63.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (103 samples, 0.64%)</title><rect x="95.1" y="497" width="7.5" height="15.0" fill="rgb(241,90,6)" rx="2" ry="2" />
<text text-anchor="" x="98.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (32 samples, 0.20%)</title><rect x="256.6" y="337" width="2.3" height="15.0" fill="rgb(215,227,42)" rx="2" ry="2" />
<text text-anchor="" x="259.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:393 (17 samples, 0.11%)</title><rect x="34.4" y="497" width="1.3" height="15.0" fill="rgb(225,74,3)" rx="2" ry="2" />
<text text-anchor="" x="37.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (3 samples, 0.02%)</title><rect x="589.2" y="129" width="0.2" height="15.0" fill="rgb(227,173,36)" rx="2" ry="2" />
<text text-anchor="" x="592.22" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (18 samples, 0.11%)</title><rect x="425.1" y="241" width="1.4" height="15.0" fill="rgb(249,122,49)" rx="2" ry="2" />
<text text-anchor="" x="428.13" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (28 samples, 0.17%)</title><rect x="154.1" y="385" width="2.1" height="15.0" fill="rgb(216,138,54)" rx="2" ry="2" />
<text text-anchor="" x="157.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:403 (2 samples, 0.01%)</title><rect x="1152.5" y="497" width="0.1" height="15.0" fill="rgb(241,67,32)" rx="2" ry="2" />
<text text-anchor="" x="1155.46" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (7 samples, 0.04%)</title><rect x="557.0" y="113" width="0.5" height="15.0" fill="rgb(227,133,52)" rx="2" ry="2" />
<text text-anchor="" x="560.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (12 samples, 0.07%)</title><rect x="494.8" y="209" width="0.9" height="15.0" fill="rgb(237,70,13)" rx="2" ry="2" />
<text text-anchor="" x="497.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (39 samples, 0.24%)</title><rect x="529.4" y="145" width="2.9" height="15.0" fill="rgb(224,29,6)" rx="2" ry="2" />
<text text-anchor="" x="532.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_from_old_parser:213 (2 samples, 0.01%)</title><rect x="960.8" y="529" width="0.2" height="15.0" fill="rgb(254,167,50)" rx="2" ry="2" />
<text text-anchor="" x="963.80" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (29 samples, 0.18%)</title><rect x="940.1" y="465" width="2.1" height="15.0" fill="rgb(225,151,26)" rx="2" ry="2" />
<text text-anchor="" x="943.05" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:387 (9 samples, 0.06%)</title><rect x="1078.6" y="497" width="0.6" height="15.0" fill="rgb(237,162,41)" rx="2" ry="2" />
<text text-anchor="" x="1081.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:__eq__:317 (69 samples, 0.43%)</title><rect x="668.5" y="481" width="5.0" height="15.0" fill="rgb(229,160,34)" rx="2" ry="2" />
<text text-anchor="" x="671.48" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:56 (7 samples, 0.04%)</title><rect x="1043.1" y="465" width="0.5" height="15.0" fill="rgb(253,203,53)" rx="2" ry="2" />
<text text-anchor="" x="1046.07" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (26 samples, 0.16%)</title><rect x="361.7" y="321" width="1.9" height="15.0" fill="rgb(240,63,24)" rx="2" ry="2" />
<text text-anchor="" x="364.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (158 samples, 0.98%)</title><rect x="248.9" y="369" width="11.6" height="15.0" fill="rgb(240,25,30)" rx="2" ry="2" />
<text text-anchor="" x="251.87" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:52 (7 samples, 0.04%)</title><rect x="703.7" y="481" width="0.6" height="15.0" fill="rgb(216,5,42)" rx="2" ry="2" />
<text text-anchor="" x="706.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (62 samples, 0.39%)</title><rect x="19.8" y="481" width="4.6" height="15.0" fill="rgb(236,54,36)" rx="2" ry="2" />
<text text-anchor="" x="22.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:start_pos:105 (43 samples, 0.27%)</title><rect x="834.5" y="449" width="3.1" height="15.0" fill="rgb(212,144,6)" rx="2" ry="2" />
<text text-anchor="" x="837.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:225 (6,016 samples, 37.38%)</title><rect x="188.5" y="465" width="441.1" height="15.0" fill="rgb(243,132,25)" rx="2" ry="2" />
<text text-anchor="" x="191.53" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (21 samples, 0.13%)</title><rect x="284.6" y="385" width="1.5" height="15.0" fill="rgb(225,22,21)" rx="2" ry="2" />
<text text-anchor="" x="287.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:64 (9 samples, 0.06%)</title><rect x="976.9" y="481" width="0.6" height="15.0" fill="rgb(237,215,16)" rx="2" ry="2" />
<text text-anchor="" x="979.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_is_flow_node:64 (311 samples, 1.93%)</title><rect x="902.1" y="481" width="22.8" height="15.0" fill="rgb(237,91,23)" rx="2" ry="2" />
<text text-anchor="" x="905.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:145 (17 samples, 0.11%)</title><rect x="31.3" y="481" width="1.3" height="15.0" fill="rgb(217,80,1)" rx="2" ry="2" />
<text text-anchor="" x="34.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_ends_with_newline:34 (9 samples, 0.06%)</title><rect x="633.7" y="497" width="0.7" height="15.0" fill="rgb(240,99,3)" rx="2" ry="2" />
<text text-anchor="" x="636.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (10 samples, 0.06%)</title><rect x="258.9" y="337" width="0.8" height="15.0" fill="rgb(213,80,37)" rx="2" ry="2" />
<text text-anchor="" x="261.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:79 (37 samples, 0.23%)</title><rect x="673.5" y="497" width="2.8" height="15.0" fill="rgb(223,103,19)" rx="2" ry="2" />
<text text-anchor="" x="676.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (44 samples, 0.27%)</title><rect x="212.9" y="353" width="3.2" height="15.0" fill="rgb(222,171,30)" rx="2" ry="2" />
<text text-anchor="" x="215.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_next_leaf:81 (24 samples, 0.15%)</title><rect x="678.2" y="497" width="1.7" height="15.0" fill="rgb(226,221,16)" rx="2" ry="2" />
<text text-anchor="" x="681.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:231 (4,062 samples, 25.24%)</title><rect x="331.7" y="353" width="297.8" height="15.0" fill="rgb(254,196,17)" rx="2" ry="2" />
<text text-anchor="" x="334.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundle/jedi-vi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:405 (5 samples, 0.03%)</title><rect x="1111.4" y="497" width="0.4" height="15.0" fill="rgb(250,126,35)" rx="2" ry="2" />
<text text-anchor="" x="1114.40" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (180 samples, 1.12%)</title><rect x="206.3" y="385" width="13.2" height="15.0" fill="rgb(219,187,53)" rx="2" ry="2" />
<text text-anchor="" x="209.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (47 samples, 0.29%)</title><rect x="513.3" y="177" width="3.4" height="15.0" fill="rgb(232,118,22)" rx="2" ry="2" />
<text text-anchor="" x="516.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (13 samples, 0.08%)</title><rect x="518.0" y="177" width="1.0" height="15.0" fill="rgb(206,192,54)" rx="2" ry="2" />
<text text-anchor="" x="521.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:510 (29 samples, 0.18%)</title><rect x="812.6" y="497" width="2.2" height="15.0" fill="rgb(235,147,13)" rx="2" ry="2" />
<text text-anchor="" x="815.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:210 (3 samples, 0.02%)</title><rect x="335.0" y="337" width="0.2" height="15.0" fill="rgb(231,186,28)" rx="2" ry="2" />
<text text-anchor="" x="337.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:389 (108 samples, 0.67%)</title><rect x="1079.8" y="497" width="7.9" height="15.0" fill="rgb(223,131,44)" rx="2" ry="2" />
<text text-anchor="" x="1082.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:get_last_line:389 (106 samples, 0.66%)</title><rect x="16.6" y="497" width="7.8" height="15.0" fill="rgb(244,181,1)" rx="2" ry="2" />
<text text-anchor="" x="19.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_get_old_line_stmt:237 (3 samples, 0.02%)</title><rect x="765.0" y="513" width="0.2" height="15.0" fill="rgb(233,213,18)" rx="2" ry="2" />
<text text-anchor="" x="767.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:222 (10 samples, 0.06%)</title><rect x="536.9" y="161" width="0.7" height="15.0" fill="rgb(223,102,19)" rx="2" ry="2" />
<text text-anchor="" x="539.87" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (7 samples, 0.04%)</title><rect x="583.5" y="161" width="0.5" height="15.0" fill="rgb(238,87,48)" rx="2" ry="2" />
<text text-anchor="" x="586.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:506 (6 samples, 0.04%)</title><rect x="809.2" y="497" width="0.4" height="15.0" fill="rgb(229,90,10)" rx="2" ry="2" />
<text text-anchor="" x="812.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:150 (8 samples, 0.05%)</title><rect x="33.5" y="481" width="0.6" height="15.0" fill="rgb(212,24,48)" rx="2" ry="2" />
<text text-anchor="" x="36.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (361 samples, 2.24%)</title><rect x="193.0" y="449" width="26.5" height="15.0" fill="rgb(238,120,39)" rx="2" ry="2" />
<text text-anchor="" x="196.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_last_leaf:237 (11 samples, 0.07%)</title><rect x="941.4" y="449" width="0.8" height="15.0" fill="rgb(227,43,12)" rx="2" ry="2" />
<text text-anchor="" x="944.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (6 samples, 0.04%)</title><rect x="219.0" y="353" width="0.5" height="15.0" fill="rgb(250,209,1)" rx="2" ry="2" />
<text text-anchor="" x="222.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (128 samples, 0.80%)</title><rect x="350.4" y="289" width="9.4" height="15.0" fill="rgb(247,125,6)" rx="2" ry="2" />
<text text-anchor="" x="353.42" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (3,218 samples, 20.00%)</title><rect x="393.5" y="321" width="236.0" height="15.0" fill="rgb(227,84,41)" rx="2" ry="2" />
<text text-anchor="" x="396.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vim/bundl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/tree.py:end_pos:189 (51 samples, 0.32%)</title><rect x="454.2" y="241" width="3.7" height="15.0" fill="rgb(214,157,43)" rx="2" ry="2" />
<text text-anchor="" x="457.17" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:227 (2,515 samples, 15.63%)</title><rect x="445.1" y="273" width="184.4" height="15.0" fill="rgb(237,224,8)" rx="2" ry="2" />
<text text-anchor="" x="448.08" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/vagrant/.files/.vi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:209 (66 samples, 0.41%)</title><rect x="231.4" y="417" width="4.9" height="15.0" fill="rgb(222,23,15)" rx="2" ry="2" />
<text text-anchor="" x="234.42" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:copy_nodes:503 (3 samples, 0.02%)</title><rect x="960.6" y="513" width="0.2" height="15.0" fill="rgb(221,50,10)" rx="2" ry="2" />
<text text-anchor="" x="963.58" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:57 (17 samples, 0.11%)</title><rect x="715.0" y="481" width="1.3" height="15.0" fill="rgb(234,199,7)" rx="2" ry="2" />
<text text-anchor="" x="718.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/python/diff.py:_copy_nodes:532 (27 samples, 0.17%)</title><rect x="896.7" y="497" width="2.0" height="15.0" fill="rgb(246,15,42)" rx="2" ry="2" />
<text text-anchor="" x="899.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:54 (18 samples, 0.11%)</title><rect x="970.8" y="481" width="1.4" height="15.0" fill="rgb(247,15,27)" rx="2" ry="2" />
<text text-anchor="" x="973.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:195 (265 samples, 1.65%)</title><rect x="169.1" y="449" width="19.4" height="15.0" fill="rgb(232,110,25)" rx="2" ry="2" />
<text text-anchor="" x="172.10" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:57 (13 samples, 0.08%)</title><rect x="975.0" y="481" width="0.9" height="15.0" fill="rgb(247,55,8)" rx="2" ry="2" />
<text text-anchor="" x="977.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_previous_leaf:53 (6 samples, 0.04%)</title><rect x="970.4" y="481" width="0.4" height="15.0" fill="rgb(230,8,37)" rx="2" ry="2" />
<text text-anchor="" x="973.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (13 samples, 0.08%)</title><rect x="560.3" y="113" width="1.0" height="15.0" fill="rgb(205,162,30)" rx="2" ry="2" />
<text text-anchor="" x="563.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:224 (162 samples, 1.01%)</title><rect x="524.0" y="177" width="11.8" height="15.0" fill="rgb(209,166,19)" rx="2" ry="2" />
<text text-anchor="" x="526.97" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:218 (24 samples, 0.15%)</title><rect x="624.8" y="97" width="1.7" height="15.0" fill="rgb(236,164,50)" rx="2" ry="2" />
<text text-anchor="" x="627.78" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:144 (53 samples, 0.33%)</title><rect x="324.9" y="289" width="3.9" height="15.0" fill="rgb(228,91,13)" rx="2" ry="2" />
<text text-anchor="" x="327.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:151 (5 samples, 0.03%)</title><rect x="519.6" y="177" width="0.4" height="15.0" fill="rgb(223,65,0)" rx="2" ry="2" />
<text text-anchor="" x="522.64" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:end_pos:147 (12 samples, 0.07%)</title><rect x="1095.3" y="481" width="0.9" height="15.0" fill="rgb(247,114,30)" rx="2" ry="2" />
<text text-anchor="" x="1098.27" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:get_leaf_for_position:229 (255 samples, 1.58%)</title><rect x="409.7" y="289" width="18.7" height="15.0" fill="rgb(226,168,7)" rx="2" ry="2" />
<text text-anchor="" x="412.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/vagrant/.files/.vim/bundle/jedi-vim/jedi/jedi/parser/tree.py:binary_search:223 (33 samples, 0.21%)</title><rect x="163.1" y="465" width="2.4" height="15.0" fill="rgb(242,139,39)" rx="2" ry="2" />
<text text-anchor="" x="166.09" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment