Skip to content

Instantly share code, notes, and snippets.

@hugho-ad
Last active February 14, 2019 16:58
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 hugho-ad/c8787d4fa9f12ff7434129724002c948 to your computer and use it in GitHub Desktop.
Save hugho-ad/c8787d4fa9f12ff7434129724002c948 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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="1366" onload="init(evt)" viewBox="0 0 1200 1366" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.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 there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// 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;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1366.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="1349" 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="1349" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.10%)</title><rect x="1147.8" y="357" width="1.2" height="15.0" fill="rgb(217,74,4)" rx="2" ry="2" />
<text text-anchor="" x="1150.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:953 (1 samples, 0.10%)</title><rect x="1135.8" y="325" width="1.2" height="15.0" fill="rgb(240,74,18)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (4 samples, 0.41%)</title><rect x="813.9" y="501" width="4.9" height="15.0" fill="rgb(248,40,23)" rx="2" ry="2" />
<text text-anchor="" x="816.94" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1086.3" y="421" width="1.2" height="15.0" fill="rgb(231,36,49)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:__get__:25 (1 samples, 0.10%)</title><rect x="1133.4" y="341" width="1.2" height="15.0" fill="rgb(226,150,40)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (1 samples, 0.10%)</title><rect x="1135.8" y="437" width="1.2" height="15.0" fill="rgb(254,141,8)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3222 (1 samples, 0.10%)</title><rect x="1173.1" y="581" width="1.2" height="15.0" fill="rgb(226,22,17)" rx="2" ry="2" />
<text text-anchor="" x="1176.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="665.7" y="597" width="1.2" height="15.0" fill="rgb(254,159,54)" rx="2" ry="2" />
<text text-anchor="" x="668.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="721.1" y="485" width="1.2" height="15.0" fill="rgb(222,194,9)" rx="2" ry="2" />
<text text-anchor="" x="724.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:get_alias_from_query:380 (1 samples, 0.10%)</title><rect x="685.0" y="485" width="1.2" height="15.0" fill="rgb(230,56,44)" rx="2" ry="2" />
<text text-anchor="" x="687.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (2 samples, 0.20%)</title><rect x="687.4" y="517" width="2.4" height="15.0" fill="rgb(252,14,39)" rx="2" ry="2" />
<text text-anchor="" x="690.39" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.10%)</title><rect x="822.4" y="517" width="1.2" height="15.0" fill="rgb(253,206,10)" rx="2" ry="2" />
<text text-anchor="" x="825.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (2 samples, 0.20%)</title><rect x="224.5" y="437" width="2.5" height="15.0" fill="rgb(228,42,34)" rx="2" ry="2" />
<text text-anchor="" x="227.55" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="220.9" y="437" width="1.2" height="15.0" fill="rgb(244,17,42)" rx="2" ry="2" />
<text text-anchor="" x="223.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.10%)</title><rect x="1079.1" y="501" width="1.2" height="15.0" fill="rgb(207,50,29)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (5 samples, 0.51%)</title><rect x="161.9" y="341" width="6.0" height="15.0" fill="rgb(238,192,2)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.31%)</title><rect x="1106.8" y="357" width="3.6" height="15.0" fill="rgb(239,130,36)" rx="2" ry="2" />
<text text-anchor="" x="1109.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (3 samples, 0.31%)</title><rect x="493.3" y="517" width="3.6" height="15.0" fill="rgb(249,182,52)" rx="2" ry="2" />
<text text-anchor="" x="496.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (31 samples, 3.17%)</title><rect x="1028.5" y="469" width="37.4" height="15.0" fill="rgb(217,163,6)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.10%)</title><rect x="1092.4" y="437" width="1.2" height="15.0" fill="rgb(227,1,17)" rx="2" ry="2" />
<text text-anchor="" x="1095.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.10%)</title><rect x="881.4" y="549" width="1.2" height="15.0" fill="rgb(207,88,13)" rx="2" ry="2" />
<text text-anchor="" x="884.44" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (1 samples, 0.10%)</title><rect x="662.1" y="565" width="1.2" height="15.0" fill="rgb(210,81,4)" rx="2" ry="2" />
<text text-anchor="" x="665.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2249 (161 samples, 16.45%)</title><rect x="240.2" y="501" width="194.1" height="15.0" fill="rgb(222,150,48)" rx="2" ry="2" />
<text text-anchor="" x="243.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4861 (3 samples, 0.31%)</title><rect x="901.9" y="533" width="3.6" height="15.0" fill="rgb(214,19,22)" rx="2" ry="2" />
<text text-anchor="" x="904.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (20 samples, 2.04%)</title><rect x="707.9" y="517" width="24.1" height="15.0" fill="rgb(208,212,20)" rx="2" ry="2" />
<text text-anchor="" x="710.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1157.5" y="453" width="1.2" height="15.0" fill="rgb(237,34,34)" rx="2" ry="2" />
<text text-anchor="" x="1160.46" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (2 samples, 0.20%)</title><rect x="229.4" y="437" width="2.4" height="15.0" fill="rgb(228,224,12)" rx="2" ry="2" />
<text text-anchor="" x="232.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="146.2" y="405" width="1.2" height="15.0" fill="rgb(216,200,36)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliations:823 (867 samples, 88.56%)</title><rect x="145.0" y="757" width="1045.0" height="15.0" fill="rgb(225,11,39)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliations:823</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.20%)</title><rect x="165.5" y="293" width="2.4" height="15.0" fill="rgb(243,161,3)" rx="2" ry="2" />
<text text-anchor="" x="168.49" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.10%)</title><rect x="1090.0" y="437" width="1.2" height="15.0" fill="rgb(206,181,18)" rx="2" ry="2" />
<text text-anchor="" x="1092.96" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_cache:4781 (1 samples, 0.10%)</title><rect x="160.7" y="229" width="1.2" height="15.0" fill="rgb(240,120,37)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.10%)</title><rect x="1076.7" y="405" width="1.2" height="15.0" fill="rgb(230,52,7)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (2 samples, 0.20%)</title><rect x="754.9" y="437" width="2.4" height="15.0" fill="rgb(213,216,51)" rx="2" ry="2" />
<text text-anchor="" x="757.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/purchase/models/purchase.py:_get_invoiced:53 (8 samples, 0.82%)</title><rect x="158.3" y="469" width="9.6" height="15.0" fill="rgb(222,146,42)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.51%)</title><rect x="161.9" y="357" width="6.0" height="15.0" fill="rgb(213,107,41)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__new__:65 (1 samples, 0.10%)</title><rect x="917.6" y="437" width="1.2" height="15.0" fill="rgb(252,180,10)" rx="2" ry="2" />
<text text-anchor="" x="920.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/threading.py:_bootstrap_inner:914 (868 samples, 88.66%)</title><rect x="143.8" y="1285" width="1046.2" height="15.0" fill="rgb(225,35,11)" rx="2" ry="2" />
<text text-anchor="" x="146.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap_inner:914</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.10%)</title><rect x="1096.0" y="325" width="1.2" height="15.0" fill="rgb(215,27,4)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="154.6" y="437" width="1.2" height="15.0" fill="rgb(234,102,25)" rx="2" ry="2" />
<text text-anchor="" x="157.64" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.10%)</title><rect x="172.7" y="341" width="1.2" height="15.0" fill="rgb(251,8,50)" rx="2" ry="2" />
<text text-anchor="" x="175.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:select_from_where:446 (2 samples, 0.20%)</title><rect x="914.0" y="437" width="2.4" height="15.0" fill="rgb(246,166,7)" rx="2" ry="2" />
<text text-anchor="" x="916.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="158.3" y="341" width="1.2" height="15.0" fill="rgb(251,121,17)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="10.0" y="1141" width="1.2" height="15.0" fill="rgb(224,193,28)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:892 (54 samples, 5.52%)</title><rect x="748.9" y="501" width="65.0" height="15.0" fill="rgb(207,223,46)" rx="2" ry="2" />
<text text-anchor="" x="751.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:599 (1 samples, 0.10%)</title><rect x="1083.9" y="373" width="1.2" height="15.0" fill="rgb(250,44,7)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (1 samples, 0.10%)</title><rect x="1070.7" y="421" width="1.2" height="15.0" fill="rgb(254,223,48)" rx="2" ry="2" />
<text text-anchor="" x="1073.67" y="431.5" font-size="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__:14 (1 samples, 0.10%)</title><rect x="93.2" y="1205" width="1.2" height="15.0" fill="rgb(239,135,19)" rx="2" ry="2" />
<text text-anchor="" x="96.17" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/enterprise/l10n_mx_edi/models/account_move.py:reconcile:12 (864 samples, 88.25%)</title><rect x="145.0" y="693" width="1041.4" height="15.0" fill="rgb(251,38,26)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi/models/account_move.py:reconcile:12</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:qualify:2698 (1 samples, 0.10%)</title><rect x="1070.7" y="405" width="1.2" height="15.0" fill="rgb(235,1,29)" rx="2" ry="2" />
<text text-anchor="" x="1073.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:686 (1 samples, 0.10%)</title><rect x="1083.9" y="469" width="1.2" height="15.0" fill="rgb(225,93,11)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="145.0" y="437" width="1.2" height="15.0" fill="rgb(233,145,47)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:getlocale:577 (1 samples, 0.10%)</title><rect x="1162.3" y="357" width="1.2" height="15.0" fill="rgb(224,221,42)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1186.4" y="581" width="1.2" height="15.0" fill="rgb(243,223,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="1159.9" y="389" width="1.2" height="15.0" fill="rgb(231,212,48)" rx="2" ry="2" />
<text text-anchor="" x="1162.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1153.8" y="405" width="1.2" height="15.0" fill="rgb(243,65,20)" rx="2" ry="2" />
<text text-anchor="" x="1156.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2768 (1 samples, 0.10%)</title><rect x="1076.7" y="437" width="1.2" height="15.0" fill="rgb(210,9,53)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.10%)</title><rect x="357.1" y="453" width="1.2" height="15.0" fill="rgb(208,129,27)" rx="2" ry="2" />
<text text-anchor="" x="360.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:from_string:1514 (1 samples, 0.10%)</title><rect x="1161.1" y="421" width="1.2" height="15.0" fill="rgb(222,176,46)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_convert_to_write:4485 (2 samples, 0.20%)</title><rect x="1167.1" y="581" width="2.4" height="15.0" fill="rgb(234,33,20)" rx="2" ry="2" />
<text text-anchor="" x="1170.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1186.4" y="469" width="1.2" height="15.0" fill="rgb(225,42,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_strptime_datetime:521 (1 samples, 0.10%)</title><rect x="1176.7" y="149" width="1.2" height="15.0" fill="rgb(205,169,42)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (2 samples, 0.20%)</title><rect x="715.1" y="389" width="2.4" height="15.0" fill="rgb(226,111,5)" rx="2" ry="2" />
<text text-anchor="" x="718.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.10%)</title><rect x="892.3" y="597" width="1.2" height="15.0" fill="rgb(232,101,1)" rx="2" ry="2" />
<text text-anchor="" x="895.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205 (867 samples, 88.56%)</title><rect x="145.0" y="1157" width="1045.0" height="15.0" fill="rgb(244,188,8)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (13 samples, 1.33%)</title><rect x="1096.0" y="389" width="15.7" height="15.0" fill="rgb(212,175,52)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.10%)</title><rect x="145.0" y="405" width="1.2" height="15.0" fill="rgb(221,69,26)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;lambda&gt;:1445 (173 samples, 17.67%)</title><rect x="453.6" y="549" width="208.5" height="15.0" fill="rgb(225,139,50)" rx="2" ry="2" />
<text text-anchor="" x="456.55" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="1071.9" y="389" width="1.2" height="15.0" fill="rgb(237,210,45)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.10%)</title><rect x="1140.6" y="389" width="1.2" height="15.0" fill="rgb(206,207,49)" rx="2" ry="2" />
<text text-anchor="" x="1143.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (1 samples, 0.10%)</title><rect x="934.5" y="469" width="1.2" height="15.0" fill="rgb(250,194,19)" rx="2" ry="2" />
<text text-anchor="" x="937.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="158.3" y="293" width="1.2" height="15.0" fill="rgb(217,213,41)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1080.3" y="501" width="1.2" height="15.0" fill="rgb(239,155,25)" rx="2" ry="2" />
<text text-anchor="" x="1083.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1277 (1 samples, 0.10%)</title><rect x="1180.4" y="357" width="1.2" height="15.0" fill="rgb(208,134,52)" rx="2" ry="2" />
<text text-anchor="" x="1183.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (1 samples, 0.10%)</title><rect x="1135.8" y="373" width="1.2" height="15.0" fill="rgb(213,91,7)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:test_expr:213 (1 samples, 0.10%)</title><rect x="887.5" y="549" width="1.2" height="15.0" fill="rgb(215,56,39)" rx="2" ry="2" />
<text text-anchor="" x="890.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (2 samples, 0.20%)</title><rect x="198.0" y="453" width="2.4" height="15.0" fill="rgb(244,147,13)" rx="2" ry="2" />
<text text-anchor="" x="201.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (1 samples, 0.10%)</title><rect x="728.4" y="485" width="1.2" height="15.0" fill="rgb(210,226,32)" rx="2" ry="2" />
<text text-anchor="" x="731.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="101.6" y="1269" width="1.2" height="15.0" fill="rgb(242,45,24)" rx="2" ry="2" />
<text text-anchor="" x="104.60" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2739 (2 samples, 0.20%)</title><rect x="873.0" y="437" width="2.4" height="15.0" fill="rgb(215,129,42)" rx="2" ry="2" />
<text text-anchor="" x="876.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:field_todo:876 (19 samples, 1.94%)</title><rect x="1033.3" y="437" width="22.9" height="15.0" fill="rgb(210,15,31)" rx="2" ry="2" />
<text text-anchor="" x="1036.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1137.0" y="421" width="1.2" height="15.0" fill="rgb(240,7,37)" rx="2" ry="2" />
<text text-anchor="" x="1139.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (6 samples, 0.61%)</title><rect x="427.0" y="485" width="7.3" height="15.0" fill="rgb(217,109,31)" rx="2" ry="2" />
<text text-anchor="" x="430.04" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (3 samples, 0.31%)</title><rect x="1141.8" y="373" width="3.6" height="15.0" fill="rgb(228,179,1)" rx="2" ry="2" />
<text text-anchor="" x="1144.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.10%)</title><rect x="686.2" y="485" width="1.2" height="15.0" fill="rgb(251,135,29)" rx="2" ry="2" />
<text text-anchor="" x="689.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="314.9" y="453" width="1.2" height="15.0" fill="rgb(239,190,3)" rx="2" ry="2" />
<text text-anchor="" x="317.94" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (30 samples, 3.06%)</title><rect x="1029.7" y="453" width="36.2" height="15.0" fill="rgb(245,76,28)" rx="2" ry="2" />
<text text-anchor="" x="1032.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (2 samples, 0.20%)</title><rect x="1124.9" y="373" width="2.4" height="15.0" fill="rgb(221,58,50)" rx="2" ry="2" />
<text text-anchor="" x="1127.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="663.3" y="565" width="1.2" height="15.0" fill="rgb(249,227,46)" rx="2" ry="2" />
<text text-anchor="" x="666.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.10%)</title><rect x="1176.7" y="325" width="1.2" height="15.0" fill="rgb(209,183,52)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (5 samples, 0.51%)</title><rect x="668.1" y="581" width="6.0" height="15.0" fill="rgb(222,194,6)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="1175.5" y="389" width="1.2" height="15.0" fill="rgb(215,104,37)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (2 samples, 0.20%)</title><rect x="1082.7" y="549" width="2.4" height="15.0" fill="rgb(210,100,31)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:normalize_leaf:625 (1 samples, 0.10%)</title><rect x="683.8" y="421" width="1.2" height="15.0" fill="rgb(236,72,30)" rx="2" ry="2" />
<text text-anchor="" x="686.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.10%)</title><rect x="1175.5" y="421" width="1.2" height="15.0" fill="rgb(219,200,52)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="201.6" y="469" width="1.2" height="15.0" fill="rgb(243,44,14)" rx="2" ry="2" />
<text text-anchor="" x="204.64" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3449 (3 samples, 0.31%)</title><rect x="698.2" y="549" width="3.6" height="15.0" fill="rgb(207,49,9)" rx="2" ry="2" />
<text text-anchor="" x="701.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.10%)</title><rect x="721.1" y="453" width="1.2" height="15.0" fill="rgb(241,82,3)" rx="2" ry="2" />
<text text-anchor="" x="724.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.10%)</title><rect x="1111.7" y="389" width="1.2" height="15.0" fill="rgb(219,196,10)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account_asset/models/account.py:post:24 (9 samples, 0.92%)</title><rect x="1175.5" y="597" width="10.9" height="15.0" fill="rgb(245,106,54)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:923 (1 samples, 0.10%)</title><rect x="894.7" y="597" width="1.2" height="15.0" fill="rgb(207,91,26)" rx="2" ry="2" />
<text text-anchor="" x="897.70" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.10%)</title><rect x="179.9" y="341" width="1.3" height="15.0" fill="rgb(237,49,2)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.10%)</title><rect x="98.0" y="1205" width="1.2" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="100.99" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:926 (1 samples, 0.10%)</title><rect x="290.8" y="469" width="1.2" height="15.0" fill="rgb(216,213,34)" rx="2" ry="2" />
<text text-anchor="" x="293.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193 (867 samples, 88.56%)</title><rect x="145.0" y="1141" width="1045.0" height="15.0" fill="rgb(246,20,33)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1074.3" y="437" width="1.2" height="15.0" fill="rgb(227,192,25)" rx="2" ry="2" />
<text text-anchor="" x="1077.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2707 (1 samples, 0.10%)</title><rect x="1070.7" y="437" width="1.2" height="15.0" fill="rgb(232,210,47)" rx="2" ry="2" />
<text text-anchor="" x="1073.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="167.9" y="309" width="1.2" height="15.0" fill="rgb(210,212,36)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (15 samples, 1.53%)</title><rect x="483.7" y="533" width="18.1" height="15.0" fill="rgb(231,181,12)" rx="2" ry="2" />
<text text-anchor="" x="486.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:687 (4 samples, 0.41%)</title><rect x="96.8" y="1269" width="4.8" height="15.0" fill="rgb(209,197,19)" rx="2" ry="2" />
<text text-anchor="" x="99.78" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.10%)</title><rect x="895.9" y="565" width="1.2" height="15.0" fill="rgb(217,14,39)" rx="2" ry="2" />
<text text-anchor="" x="898.90" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (2 samples, 0.20%)</title><rect x="1181.6" y="373" width="2.4" height="15.0" fill="rgb(241,65,29)" rx="2" ry="2" />
<text text-anchor="" x="1184.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.10%)</title><rect x="1186.4" y="565" width="1.2" height="15.0" fill="rgb(228,197,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="701.8" y="469" width="1.3" height="15.0" fill="rgb(235,144,51)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.20%)</title><rect x="410.2" y="421" width="2.4" height="15.0" fill="rgb(248,66,52)" rx="2" ry="2" />
<text text-anchor="" x="413.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:237 (1 samples, 0.10%)</title><rect x="1174.3" y="581" width="1.2" height="15.0" fill="rgb(254,169,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (14 samples, 1.43%)</title><rect x="850.1" y="437" width="16.9" height="15.0" fill="rgb(232,159,39)" rx="2" ry="2" />
<text text-anchor="" x="853.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:__get__:111 (1 samples, 0.10%)</title><rect x="1076.7" y="357" width="1.2" height="15.0" fill="rgb(237,192,13)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (13 samples, 1.33%)</title><rect x="1139.4" y="453" width="15.6" height="15.0" fill="rgb(222,49,11)" rx="2" ry="2" />
<text text-anchor="" x="1142.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_get_actions:128 (1 samples, 0.10%)</title><rect x="879.0" y="581" width="1.2" height="15.0" fill="rgb(236,156,15)" rx="2" ry="2" />
<text text-anchor="" x="882.03" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_store_balance:363 (1 samples, 0.10%)</title><rect x="1135.8" y="341" width="1.2" height="15.0" fill="rgb(232,135,4)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="586.1" y="485" width="1.2" height="15.0" fill="rgb(220,24,24)" rx="2" ry="2" />
<text text-anchor="" x="589.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="668.1" y="533" width="1.2" height="15.0" fill="rgb(205,220,14)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="195.6" y="453" width="1.2" height="15.0" fill="rgb(213,211,42)" rx="2" ry="2" />
<text text-anchor="" x="198.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="172.7" y="309" width="1.2" height="15.0" fill="rgb(247,167,45)" rx="2" ry="2" />
<text text-anchor="" x="175.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="934.5" y="501" width="1.2" height="15.0" fill="rgb(233,50,41)" rx="2" ry="2" />
<text text-anchor="" x="937.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (4 samples, 0.41%)</title><rect x="710.3" y="389" width="4.8" height="15.0" fill="rgb(237,88,3)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.10%)</title><rect x="1128.5" y="421" width="1.2" height="15.0" fill="rgb(246,52,6)" rx="2" ry="2" />
<text text-anchor="" x="1131.53" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_translation.py:&lt;dictcomp&gt;:517 (1 samples, 0.10%)</title><rect x="1188.8" y="533" width="1.2" height="15.0" fill="rgb(238,120,22)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="280.0" y="469" width="1.2" height="15.0" fill="rgb(248,118,12)" rx="2" ry="2" />
<text text-anchor="" x="282.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:211 (1 samples, 0.10%)</title><rect x="664.5" y="597" width="1.2" height="15.0" fill="rgb(237,67,51)" rx="2" ry="2" />
<text text-anchor="" x="667.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1268 (1 samples, 0.10%)</title><rect x="700.6" y="533" width="1.2" height="15.0" fill="rgb(245,160,30)" rx="2" ry="2" />
<text text-anchor="" x="703.64" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (1 samples, 0.10%)</title><rect x="944.1" y="501" width="1.2" height="15.0" fill="rgb(205,223,26)" rx="2" ry="2" />
<text text-anchor="" x="947.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (13 samples, 1.33%)</title><rect x="216.1" y="469" width="15.7" height="15.0" fill="rgb(229,119,22)" rx="2" ry="2" />
<text text-anchor="" x="219.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2689 (1 samples, 0.10%)</title><rect x="11.2" y="1301" width="1.2" height="15.0" fill="rgb(231,126,52)" rx="2" ry="2" />
<text text-anchor="" x="14.21" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:4772 (1 samples, 0.10%)</title><rect x="1176.7" y="213" width="1.2" height="15.0" fill="rgb(210,53,36)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.10%)</title><rect x="875.4" y="421" width="1.2" height="15.0" fill="rgb(225,55,33)" rx="2" ry="2" />
<text text-anchor="" x="878.41" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.20%)</title><rect x="687.4" y="485" width="2.4" height="15.0" fill="rgb(206,153,9)" rx="2" ry="2" />
<text text-anchor="" x="690.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1135.8" y="277" width="1.2" height="15.0" fill="rgb(242,145,22)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:__build_dict:196 (1 samples, 0.10%)</title><rect x="1111.7" y="357" width="1.2" height="15.0" fill="rgb(243,145,53)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:822 (1 samples, 0.10%)</title><rect x="674.1" y="501" width="1.2" height="15.0" fill="rgb(251,181,16)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (2 samples, 0.20%)</title><rect x="1133.4" y="469" width="2.4" height="15.0" fill="rgb(225,7,6)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (2 samples, 0.20%)</title><rect x="190.8" y="581" width="2.4" height="15.0" fill="rgb(215,114,41)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1184.0" y="229" width="1.2" height="15.0" fill="rgb(232,62,45)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="1165.9" y="533" width="1.2" height="15.0" fill="rgb(224,60,47)" rx="2" ry="2" />
<text text-anchor="" x="1168.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (53 samples, 5.41%)</title><rect x="750.1" y="485" width="63.8" height="15.0" fill="rgb(237,30,23)" rx="2" ry="2" />
<text text-anchor="" x="753.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1135.8" y="293" width="1.2" height="15.0" fill="rgb(239,28,3)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="911.6" y="373" width="1.2" height="15.0" fill="rgb(253,109,26)" rx="2" ry="2" />
<text text-anchor="" x="914.57" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:test_expr:213 (1 samples, 0.10%)</title><rect x="1081.5" y="549" width="1.2" height="15.0" fill="rgb(241,181,50)" rx="2" ry="2" />
<text text-anchor="" x="1084.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (47 samples, 4.80%)</title><rect x="35.3" y="1285" width="56.7" height="15.0" fill="rgb(223,33,15)" rx="2" ry="2" />
<text text-anchor="" x="38.31" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (3 samples, 0.31%)</title><rect x="98.0" y="1221" width="3.6" height="15.0" fill="rgb(212,162,2)" rx="2" ry="2" />
<text text-anchor="" x="100.99" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.10%)</title><rect x="182.4" y="373" width="1.2" height="15.0" fill="rgb(218,217,46)" rx="2" ry="2" />
<text text-anchor="" x="185.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (2 samples, 0.20%)</title><rect x="1026.1" y="501" width="2.4" height="15.0" fill="rgb(221,142,3)" rx="2" ry="2" />
<text text-anchor="" x="1029.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="328.2" y="437" width="1.2" height="15.0" fill="rgb(212,46,7)" rx="2" ry="2" />
<text text-anchor="" x="331.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (7 samples, 0.72%)</title><rect x="867.0" y="453" width="8.4" height="15.0" fill="rgb(244,132,51)" rx="2" ry="2" />
<text text-anchor="" x="869.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (2 samples, 0.20%)</title><rect x="584.9" y="501" width="2.4" height="15.0" fill="rgb(214,8,29)" rx="2" ry="2" />
<text text-anchor="" x="587.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="942.9" y="469" width="1.2" height="15.0" fill="rgb(251,102,2)" rx="2" ry="2" />
<text text-anchor="" x="945.91" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="500.6" y="517" width="1.2" height="15.0" fill="rgb(222,187,47)" rx="2" ry="2" />
<text text-anchor="" x="503.56" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (4 samples, 0.41%)</title><rect x="171.5" y="357" width="4.8" height="15.0" fill="rgb(206,110,40)" rx="2" ry="2" />
<text text-anchor="" x="174.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.10%)</title><rect x="1164.7" y="421" width="1.2" height="15.0" fill="rgb(233,145,48)" rx="2" ry="2" />
<text text-anchor="" x="1167.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.10%)</title><rect x="314.9" y="437" width="1.2" height="15.0" fill="rgb(220,156,32)" rx="2" ry="2" />
<text text-anchor="" x="317.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:968 (2 samples, 0.20%)</title><rect x="715.1" y="373" width="2.4" height="15.0" fill="rgb(229,51,31)" rx="2" ry="2" />
<text text-anchor="" x="718.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_thread.py:message_post:1916 (1 samples, 0.10%)</title><rect x="183.6" y="437" width="1.2" height="15.0" fill="rgb(241,48,50)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (203 samples, 20.74%)</title><rect x="194.4" y="549" width="244.7" height="15.0" fill="rgb(249,140,27)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/mo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.10%)</title><rect x="194.4" y="421" width="1.2" height="15.0" fill="rgb(246,141,38)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.10%)</title><rect x="895.9" y="501" width="1.2" height="15.0" fill="rgb(242,113,23)" rx="2" ry="2" />
<text text-anchor="" x="898.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (68 samples, 6.95%)</title><rect x="1085.1" y="597" width="82.0" height="15.0" fill="rgb(243,149,21)" rx="2" ry="2" />
<text text-anchor="" x="1088.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="718.7" y="453" width="1.2" height="15.0" fill="rgb(207,51,45)" rx="2" ry="2" />
<text text-anchor="" x="721.72" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="1102.0" y="309" width="1.2" height="15.0" fill="rgb(237,201,5)" rx="2" ry="2" />
<text text-anchor="" x="1105.01" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4849 (2 samples, 0.20%)</title><rect x="899.5" y="533" width="2.4" height="15.0" fill="rgb(248,151,21)" rx="2" ry="2" />
<text text-anchor="" x="902.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1106 (1 samples, 0.10%)</title><rect x="1164.7" y="437" width="1.2" height="15.0" fill="rgb(228,135,35)" rx="2" ry="2" />
<text text-anchor="" x="1167.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1361 (2 samples, 0.20%)</title><rect x="880.2" y="581" width="2.4" height="15.0" fill="rgb(232,128,48)" rx="2" ry="2" />
<text text-anchor="" x="883.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:invalidate:1061 (1 samples, 0.10%)</title><rect x="1021.3" y="517" width="1.2" height="15.0" fill="rgb(224,11,31)" rx="2" ry="2" />
<text text-anchor="" x="1024.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3796 (2 samples, 0.20%)</title><rect x="911.6" y="421" width="2.4" height="15.0" fill="rgb(250,167,18)" rx="2" ry="2" />
<text text-anchor="" x="914.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="10.0" y="1061" width="1.2" height="15.0" fill="rgb(229,113,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.10%)</title><rect x="817.6" y="453" width="1.2" height="15.0" fill="rgb(247,145,4)" rx="2" ry="2" />
<text text-anchor="" x="820.56" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1102.0" y="341" width="1.2" height="15.0" fill="rgb(225,4,47)" rx="2" ry="2" />
<text text-anchor="" x="1105.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.10%)</title><rect x="145.0" y="533" width="1.2" height="15.0" fill="rgb(233,166,9)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1145.4" y="373" width="1.2" height="15.0" fill="rgb(236,9,4)" rx="2" ry="2" />
<text text-anchor="" x="1148.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (5 samples, 0.51%)</title><rect x="270.3" y="469" width="6.1" height="15.0" fill="rgb(218,180,8)" rx="2" ry="2" />
<text text-anchor="" x="273.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4341 (1 samples, 0.10%)</title><rect x="955.0" y="453" width="1.2" height="15.0" fill="rgb(252,35,37)" rx="2" ry="2" />
<text text-anchor="" x="957.96" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:call_kw:689 (867 samples, 88.56%)</title><rect x="145.0" y="789" width="1045.0" height="15.0" fill="rgb(230,158,20)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw:689</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:224 (1 samples, 0.10%)</title><rect x="177.5" y="565" width="1.2" height="15.0" fill="rgb(220,88,5)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="158.3" y="325" width="1.2" height="15.0" fill="rgb(252,70,52)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.20%)</title><rect x="382.4" y="421" width="2.5" height="15.0" fill="rgb(214,211,49)" rx="2" ry="2" />
<text text-anchor="" x="385.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="672.9" y="517" width="1.2" height="15.0" fill="rgb(234,101,45)" rx="2" ry="2" />
<text text-anchor="" x="675.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="159.5" y="341" width="1.2" height="15.0" fill="rgb(234,38,31)" rx="2" ry="2" />
<text text-anchor="" x="162.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:743 (1 samples, 0.10%)</title><rect x="1068.3" y="357" width="1.2" height="15.0" fill="rgb(251,131,49)" rx="2" ry="2" />
<text text-anchor="" x="1071.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3772 (4 samples, 0.41%)</title><rect x="710.3" y="421" width="4.8" height="15.0" fill="rgb(218,101,37)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (184 samples, 18.79%)</title><rect x="440.3" y="581" width="221.8" height="15.0" fill="rgb(242,56,27)" rx="2" ry="2" />
<text text-anchor="" x="443.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (1 samples, 0.10%)</title><rect x="1135.8" y="453" width="1.2" height="15.0" fill="rgb(237,207,2)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (2 samples, 0.20%)</title><rect x="1026.1" y="469" width="2.4" height="15.0" fill="rgb(247,113,19)" rx="2" ry="2" />
<text text-anchor="" x="1029.08" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2636 (1 samples, 0.10%)</title><rect x="1065.9" y="469" width="1.2" height="15.0" fill="rgb(238,65,11)" rx="2" ry="2" />
<text text-anchor="" x="1068.85" y="479.5" font-size="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;:change_digit:10 (1 samples, 0.10%)</title><rect x="1069.5" y="373" width="1.2" height="15.0" fill="rgb(252,137,1)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.20%)</title><rect x="1082.7" y="565" width="2.4" height="15.0" fill="rgb(213,27,1)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (2 samples, 0.20%)</title><rect x="94.4" y="1237" width="2.4" height="15.0" fill="rgb(209,206,39)" rx="2" ry="2" />
<text text-anchor="" x="97.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.10%)</title><rect x="475.3" y="485" width="1.2" height="15.0" fill="rgb(241,195,45)" rx="2" ry="2" />
<text text-anchor="" x="478.25" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__iter__:65 (1 samples, 0.10%)</title><rect x="194.4" y="405" width="1.2" height="15.0" fill="rgb(226,74,2)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1017 (1 samples, 0.10%)</title><rect x="1186.4" y="709" width="1.2" height="15.0" fill="rgb(249,201,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/service/server.py:app:260 (867 samples, 88.56%)</title><rect x="145.0" y="1125" width="1045.0" height="15.0" fill="rgb(213,0,21)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/server.py:app:260</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.10%)</title><rect x="319.8" y="421" width="1.2" height="15.0" fill="rgb(205,117,7)" rx="2" ry="2" />
<text text-anchor="" x="322.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (2 samples, 0.20%)</title><rect x="412.6" y="421" width="2.4" height="15.0" fill="rgb(242,56,31)" rx="2" ry="2" />
<text text-anchor="" x="415.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="699.4" y="517" width="1.2" height="15.0" fill="rgb(225,110,46)" rx="2" ry="2" />
<text text-anchor="" x="702.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (3 samples, 0.31%)</title><rect x="93.2" y="1253" width="3.6" height="15.0" fill="rgb(243,225,38)" rx="2" ry="2" />
<text text-anchor="" x="96.17" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:__call__:1293 (867 samples, 88.56%)</title><rect x="145.0" y="1061" width="1045.0" height="15.0" fill="rgb(224,142,47)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1293</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="1028.5" y="405" width="1.2" height="15.0" fill="rgb(221,182,30)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (6 samples, 0.61%)</title><rect x="1179.2" y="565" width="7.2" height="15.0" fill="rgb(211,49,13)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.10%)</title><rect x="192.0" y="533" width="1.2" height="15.0" fill="rgb(220,125,30)" rx="2" ry="2" />
<text text-anchor="" x="195.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/threading.py:run:862 (868 samples, 88.66%)</title><rect x="143.8" y="1269" width="1046.2" height="15.0" fill="rgb(237,126,19)" rx="2" ry="2" />
<text text-anchor="" x="146.79" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:run:862</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.10%)</title><rect x="917.6" y="485" width="1.2" height="15.0" fill="rgb(219,64,54)" rx="2" ry="2" />
<text text-anchor="" x="920.60" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="10.0" y="1205" width="1.2" height="15.0" fill="rgb(249,129,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926 (867 samples, 88.56%)</title><rect x="145.0" y="805" width="1045.0" height="15.0" fill="rgb(241,3,26)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (2 samples, 0.20%)</title><rect x="1184.0" y="357" width="2.4" height="15.0" fill="rgb(233,142,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="367.5" font-size="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;decorator-gen-117&gt;:_compute_residual:2 (1 samples, 0.10%)</title><rect x="178.7" y="421" width="1.2" height="15.0" fill="rgb(226,120,14)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.10%)</title><rect x="93.2" y="1221" width="1.2" height="15.0" fill="rgb(207,161,13)" rx="2" ry="2" />
<text text-anchor="" x="96.17" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:749 (1 samples, 0.10%)</title><rect x="871.8" y="357" width="1.2" height="15.0" fill="rgb(229,86,45)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_thread.py:_get_tracked_fields:404 (1 samples, 0.10%)</title><rect x="1188.8" y="645" width="1.2" height="15.0" fill="rgb(254,36,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_get_actions:127 (6 samples, 0.61%)</title><rect x="674.1" y="581" width="7.3" height="15.0" fill="rgb(218,214,25)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="732.0" y="501" width="1.2" height="15.0" fill="rgb(239,30,48)" rx="2" ry="2" />
<text text-anchor="" x="734.98" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (1 samples, 0.10%)</title><rect x="1174.3" y="517" width="1.2" height="15.0" fill="rgb(226,92,1)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="192.0" y="485" width="1.2" height="15.0" fill="rgb(219,12,11)" rx="2" ry="2" />
<text text-anchor="" x="195.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:&lt;listcomp&gt;:802 (1 samples, 0.10%)</title><rect x="674.1" y="485" width="1.2" height="15.0" fill="rgb(248,201,2)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.10%)</title><rect x="1186.4" y="613" width="1.2" height="15.0" fill="rgb(216,130,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1053.8" y="405" width="1.2" height="15.0" fill="rgb(230,216,47)" rx="2" ry="2" />
<text text-anchor="" x="1056.80" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="1181.6" y="357" width="1.2" height="15.0" fill="rgb(231,211,40)" rx="2" ry="2" />
<text text-anchor="" x="1184.56" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="184.8" y="325" width="1.2" height="15.0" fill="rgb(221,21,11)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2704 (1 samples, 0.10%)</title><rect x="868.2" y="437" width="1.2" height="15.0" fill="rgb(238,90,2)" rx="2" ry="2" />
<text text-anchor="" x="871.18" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4862 (22 samples, 2.25%)</title><rect x="706.7" y="533" width="26.5" height="15.0" fill="rgb(237,168,34)" rx="2" ry="2" />
<text text-anchor="" x="709.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4354 (12 samples, 1.23%)</title><rect x="1038.1" y="389" width="14.5" height="15.0" fill="rgb(247,223,43)" rx="2" ry="2" />
<text text-anchor="" x="1041.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="161.9" y="293" width="1.2" height="15.0" fill="rgb(232,120,23)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="921.2" y="469" width="1.2" height="15.0" fill="rgb(205,179,42)" rx="2" ry="2" />
<text text-anchor="" x="924.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1011 (864 samples, 88.25%)</title><rect x="145.0" y="709" width="1041.4" height="15.0" fill="rgb(245,137,37)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1011</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="108.8" y="1157" width="1.2" height="15.0" fill="rgb(214,187,42)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="1132.1" y="453" width="1.3" height="15.0" fill="rgb(207,216,37)" rx="2" ry="2" />
<text text-anchor="" x="1135.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350 (2 samples, 0.20%)</title><rect x="1184.0" y="453" width="2.4" height="15.0" fill="rgb(206,62,33)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (6 samples, 0.61%)</title><rect x="710.3" y="485" width="7.2" height="15.0" fill="rgb(241,159,47)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:get_unaccent_wrapper:457 (1 samples, 0.10%)</title><rect x="1082.7" y="501" width="1.2" height="15.0" fill="rgb(248,125,16)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (4 samples, 0.41%)</title><rect x="539.1" y="501" width="4.9" height="15.0" fill="rgb(250,66,23)" rx="2" ry="2" />
<text text-anchor="" x="542.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (6 samples, 0.61%)</title><rect x="1058.6" y="421" width="7.3" height="15.0" fill="rgb(247,127,44)" rx="2" ry="2" />
<text text-anchor="" x="1061.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (1 samples, 0.10%)</title><rect x="1176.7" y="197" width="1.2" height="15.0" fill="rgb(245,50,33)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (3 samples, 0.31%)</title><rect x="734.4" y="501" width="3.6" height="15.0" fill="rgb(214,186,13)" rx="2" ry="2" />
<text text-anchor="" x="737.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (3 samples, 0.31%)</title><rect x="883.9" y="453" width="3.6" height="15.0" fill="rgb(254,99,16)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (2 samples, 0.20%)</title><rect x="606.6" y="501" width="2.4" height="15.0" fill="rgb(219,165,17)" rx="2" ry="2" />
<text text-anchor="" x="609.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.10%)</title><rect x="1145.4" y="389" width="1.2" height="15.0" fill="rgb(218,201,9)" rx="2" ry="2" />
<text text-anchor="" x="1148.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="903.1" y="453" width="1.2" height="15.0" fill="rgb(226,25,4)" rx="2" ry="2" />
<text text-anchor="" x="906.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (4 samples, 0.41%)</title><rect x="476.5" y="517" width="4.8" height="15.0" fill="rgb(216,117,4)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_amount_tax_cash_basis:1715 (1 samples, 0.10%)</title><rect x="666.9" y="597" width="1.2" height="15.0" fill="rgb(205,151,28)" rx="2" ry="2" />
<text text-anchor="" x="669.89" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_analytic_lines:1495 (1 samples, 0.10%)</title><rect x="1175.5" y="565" width="1.2" height="15.0" fill="rgb(228,83,1)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (1 samples, 0.10%)</title><rect x="1128.5" y="469" width="1.2" height="15.0" fill="rgb(227,160,51)" rx="2" ry="2" />
<text text-anchor="" x="1131.53" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="10.0" y="1157" width="1.2" height="15.0" fill="rgb(232,54,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.10%)</title><rect x="1065.9" y="453" width="1.2" height="15.0" fill="rgb(226,220,48)" rx="2" ry="2" />
<text text-anchor="" x="1068.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.10%)</title><rect x="1083.9" y="453" width="1.2" height="15.0" fill="rgb(211,200,7)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1132.1" y="469" width="1.3" height="15.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="1135.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (8 samples, 0.82%)</title><rect x="652.4" y="517" width="9.7" height="15.0" fill="rgb(231,88,47)" rx="2" ry="2" />
<text text-anchor="" x="655.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/socketserver.py:process_request_thread:625 (867 samples, 88.56%)</title><rect x="145.0" y="1253" width="1045.0" height="15.0" fill="rgb(212,149,0)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:process_request_thread:625</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (1 samples, 0.10%)</title><rect x="178.7" y="533" width="1.2" height="15.0" fill="rgb(212,68,37)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="558.4" y="517" width="1.2" height="15.0" fill="rgb(231,108,38)" rx="2" ry="2" />
<text text-anchor="" x="561.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="161.9" y="277" width="1.2" height="15.0" fill="rgb(248,160,15)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="936.9" y="501" width="1.2" height="15.0" fill="rgb(207,57,37)" rx="2" ry="2" />
<text text-anchor="" x="939.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (2 samples, 0.20%)</title><rect x="883.9" y="437" width="2.4" height="15.0" fill="rgb(250,159,10)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_replace_encoding:362 (1 samples, 0.10%)</title><rect x="1162.3" y="309" width="1.2" height="15.0" fill="rgb(240,158,15)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3530 (41 samples, 4.19%)</title><rect x="1028.5" y="549" width="49.4" height="15.0" fill="rgb(212,190,40)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2596 (1 samples, 0.10%)</title><rect x="437.9" y="533" width="1.2" height="15.0" fill="rgb(234,31,24)" rx="2" ry="2" />
<text text-anchor="" x="440.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1905 (29 samples, 2.96%)</title><rect x="155.8" y="629" width="35.0" height="15.0" fill="rgb(246,146,11)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="639.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4761 (2 samples, 0.20%)</title><rect x="1121.3" y="405" width="2.4" height="15.0" fill="rgb(254,192,47)" rx="2" ry="2" />
<text text-anchor="" x="1124.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1093.6" y="421" width="1.2" height="15.0" fill="rgb(221,182,21)" rx="2" ry="2" />
<text text-anchor="" x="1096.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (67 samples, 6.84%)</title><rect x="1086.3" y="565" width="80.8" height="15.0" fill="rgb(246,177,15)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.20%)</title><rect x="146.2" y="485" width="2.4" height="15.0" fill="rgb(213,146,15)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (17 samples, 1.74%)</title><rect x="155.8" y="533" width="20.5" height="15.0" fill="rgb(222,130,30)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="877.8" y="421" width="1.2" height="15.0" fill="rgb(216,114,47)" rx="2" ry="2" />
<text text-anchor="" x="880.82" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15 (867 samples, 88.56%)</title><rect x="145.0" y="1013" width="1045.0" height="15.0" fill="rgb(233,133,45)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/enterprise/l10n_mx_edi/models/account_bank_statement.py:process_reconciliation:24 (867 samples, 88.56%)</title><rect x="145.0" y="725" width="1045.0" height="15.0" fill="rgb(236,155,3)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi/models/account_bank_statement.py:process_reconciliation:24</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_message.py:write:811 (1 samples, 0.10%)</title><rect x="183.6" y="405" width="1.2" height="15.0" fill="rgb(213,216,13)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (66 samples, 6.74%)</title><rect x="1086.3" y="549" width="79.6" height="15.0" fill="rgb(225,42,37)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="160.7" y="261" width="1.2" height="15.0" fill="rgb(215,205,22)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="1175.5" y="357" width="1.2" height="15.0" fill="rgb(245,201,5)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1267 (1 samples, 0.10%)</title><rect x="701.8" y="533" width="1.3" height="15.0" fill="rgb(215,63,51)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="207.7" y="485" width="2.4" height="15.0" fill="rgb(223,181,5)" rx="2" ry="2" />
<text text-anchor="" x="210.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:envs:707 (1 samples, 0.10%)</title><rect x="1076.7" y="341" width="1.2" height="15.0" fill="rgb(222,64,24)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="145.0" y="565" width="1.2" height="15.0" fill="rgb(238,141,1)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="167.9" y="277" width="1.2" height="15.0" fill="rgb(237,12,5)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.10%)</title><rect x="716.3" y="325" width="1.2" height="15.0" fill="rgb(206,0,7)" rx="2" ry="2" />
<text text-anchor="" x="719.31" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1026.1" y="437" width="1.2" height="15.0" fill="rgb(253,23,54)" rx="2" ry="2" />
<text text-anchor="" x="1029.08" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (3 samples, 0.31%)</title><rect x="276.4" y="469" width="3.6" height="15.0" fill="rgb(211,18,18)" rx="2" ry="2" />
<text text-anchor="" x="279.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_message.py:create:787 (1 samples, 0.10%)</title><rect x="183.6" y="421" width="1.2" height="15.0" fill="rgb(210,138,32)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="741.6" y="501" width="1.2" height="15.0" fill="rgb(205,12,9)" rx="2" ry="2" />
<text text-anchor="" x="744.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1273 (1 samples, 0.10%)</title><rect x="1129.7" y="453" width="1.2" height="15.0" fill="rgb(210,62,48)" rx="2" ry="2" />
<text text-anchor="" x="1132.73" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (13 samples, 1.33%)</title><rect x="1096.0" y="469" width="15.7" height="15.0" fill="rgb(217,220,22)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.10%)</title><rect x="1173.1" y="517" width="1.2" height="15.0" fill="rgb(215,209,0)" rx="2" ry="2" />
<text text-anchor="" x="1176.13" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1361 (1 samples, 0.10%)</title><rect x="1080.3" y="581" width="1.2" height="15.0" fill="rgb(220,96,47)" rx="2" ry="2" />
<text text-anchor="" x="1083.32" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (6 samples, 0.61%)</title><rect x="757.3" y="437" width="7.2" height="15.0" fill="rgb(245,82,51)" rx="2" ry="2" />
<text text-anchor="" x="760.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57 (2 samples, 0.20%)</title><rect x="1176.7" y="469" width="2.5" height="15.0" fill="rgb(239,17,43)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="688.6" y="453" width="1.2" height="15.0" fill="rgb(205,162,26)" rx="2" ry="2" />
<text text-anchor="" x="691.59" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (5 samples, 0.51%)</title><rect x="184.8" y="405" width="6.0" height="15.0" fill="rgb(208,150,44)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:assert_valid_codeobj:187 (1 samples, 0.10%)</title><rect x="1174.3" y="469" width="1.2" height="15.0" fill="rgb(247,20,53)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (3 samples, 0.31%)</title><rect x="358.3" y="453" width="3.7" height="15.0" fill="rgb(232,28,29)" rx="2" ry="2" />
<text text-anchor="" x="361.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (3 samples, 0.31%)</title><rect x="198.0" y="469" width="3.6" height="15.0" fill="rgb(216,135,15)" rx="2" ry="2" />
<text text-anchor="" x="201.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.10%)</title><rect x="678.9" y="533" width="1.3" height="15.0" fill="rgb(212,145,17)" rx="2" ry="2" />
<text text-anchor="" x="681.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (4 samples, 0.41%)</title><rect x="710.3" y="405" width="4.8" height="15.0" fill="rgb(239,151,10)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:207 (165 samples, 16.85%)</title><rect x="681.4" y="597" width="198.8" height="15.0" fill="rgb(231,56,29)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addon..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.10%)</title><rect x="106.4" y="1205" width="1.2" height="15.0" fill="rgb(253,130,20)" rx="2" ry="2" />
<text text-anchor="" x="109.42" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="1108.0" y="309" width="1.2" height="15.0" fill="rgb(205,203,36)" rx="2" ry="2" />
<text text-anchor="" x="1111.04" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.10%)</title><rect x="664.5" y="565" width="1.2" height="15.0" fill="rgb(217,83,42)" rx="2" ry="2" />
<text text-anchor="" x="667.48" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (8 samples, 0.82%)</title><rect x="906.8" y="469" width="9.6" height="15.0" fill="rgb(244,4,28)" rx="2" ry="2" />
<text text-anchor="" x="909.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="1133.4" y="389" width="1.2" height="15.0" fill="rgb(238,22,11)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:205 (1 samples, 0.10%)</title><rect x="895.9" y="597" width="1.2" height="15.0" fill="rgb(233,158,19)" rx="2" ry="2" />
<text text-anchor="" x="898.90" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:resolve_2many_commands:4204 (13 samples, 1.33%)</title><rect x="681.4" y="565" width="15.6" height="15.0" fill="rgb(219,4,27)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:invalidate:1059 (3 samples, 0.31%)</title><rect x="1017.6" y="517" width="3.7" height="15.0" fill="rgb(224,191,49)" rx="2" ry="2" />
<text text-anchor="" x="1020.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1106 (1 samples, 0.10%)</title><rect x="1185.2" y="197" width="1.2" height="15.0" fill="rgb(235,203,19)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (4 samples, 0.41%)</title><rect x="1179.2" y="405" width="4.8" height="15.0" fill="rgb(239,135,4)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="516.2" y="485" width="1.2" height="15.0" fill="rgb(215,75,29)" rx="2" ry="2" />
<text text-anchor="" x="519.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:990 (2 samples, 0.20%)</title><rect x="811.5" y="437" width="2.4" height="15.0" fill="rgb(254,217,17)" rx="2" ry="2" />
<text text-anchor="" x="814.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1153.8" y="437" width="1.2" height="15.0" fill="rgb(213,113,2)" rx="2" ry="2" />
<text text-anchor="" x="1156.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (2 samples, 0.20%)</title><rect x="153.4" y="453" width="2.4" height="15.0" fill="rgb(247,34,9)" rx="2" ry="2" />
<text text-anchor="" x="156.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="290.8" y="453" width="1.2" height="15.0" fill="rgb(252,8,38)" rx="2" ry="2" />
<text text-anchor="" x="293.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (1 samples, 0.10%)</title><rect x="160.7" y="373" width="1.2" height="15.0" fill="rgb(253,153,52)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="962.2" y="437" width="1.2" height="15.0" fill="rgb(254,177,50)" rx="2" ry="2" />
<text text-anchor="" x="965.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (6 samples, 0.61%)</title><rect x="160.7" y="421" width="7.2" height="15.0" fill="rgb(211,181,24)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="1175.5" y="437" width="1.2" height="15.0" fill="rgb(206,74,11)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="341.5" y="421" width="1.2" height="15.0" fill="rgb(205,86,41)" rx="2" ry="2" />
<text text-anchor="" x="344.46" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2714 (1 samples, 0.10%)</title><rect x="871.8" y="437" width="1.2" height="15.0" fill="rgb(244,26,51)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (4 samples, 0.41%)</title><rect x="610.2" y="485" width="4.9" height="15.0" fill="rgb(228,161,0)" rx="2" ry="2" />
<text text-anchor="" x="613.25" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="145.0" y="581" width="1.2" height="15.0" fill="rgb(249,113,36)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="465.6" y="501" width="1.2" height="15.0" fill="rgb(231,227,25)" rx="2" ry="2" />
<text text-anchor="" x="468.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1106 (1 samples, 0.10%)</title><rect x="1182.8" y="357" width="1.2" height="15.0" fill="rgb(211,167,2)" rx="2" ry="2" />
<text text-anchor="" x="1185.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="145.0" y="485" width="1.2" height="15.0" fill="rgb(230,139,1)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="152.2" y="437" width="1.2" height="15.0" fill="rgb(210,78,14)" rx="2" ry="2" />
<text text-anchor="" x="155.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (7 samples, 0.72%)</title><rect x="231.8" y="469" width="8.4" height="15.0" fill="rgb(211,158,26)" rx="2" ry="2" />
<text text-anchor="" x="234.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="190.8" y="517" width="1.2" height="15.0" fill="rgb(215,120,22)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (2 samples, 0.20%)</title><rect x="1184.0" y="341" width="2.4" height="15.0" fill="rgb(222,125,1)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.10%)</title><rect x="681.4" y="533" width="1.2" height="15.0" fill="rgb(236,107,7)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:normalize:440 (1 samples, 0.10%)</title><rect x="1176.7" y="69" width="1.2" height="15.0" fill="rgb(240,7,14)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (4 samples, 0.41%)</title><rect x="1096.0" y="373" width="4.8" height="15.0" fill="rgb(218,90,52)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.20%)</title><rect x="282.4" y="469" width="2.4" height="15.0" fill="rgb(207,111,21)" rx="2" ry="2" />
<text text-anchor="" x="285.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="10.0" y="1221" width="1.2" height="15.0" fill="rgb(242,160,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_uniquify_list:3804 (2 samples, 0.20%)</title><rect x="729.6" y="485" width="2.4" height="15.0" fill="rgb(250,133,34)" rx="2" ry="2" />
<text text-anchor="" x="732.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="891.1" y="565" width="1.2" height="15.0" fill="rgb(220,12,4)" rx="2" ry="2" />
<text text-anchor="" x="894.08" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.51%)</title><rect x="184.8" y="389" width="6.0" height="15.0" fill="rgb(230,152,10)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (201 samples, 20.53%)</title><rect x="194.4" y="517" width="242.3" height="15.0" fill="rgb(229,139,15)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/mo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/purchase/models/purchase.py:&lt;genexpr&gt;:53 (8 samples, 0.82%)</title><rect x="158.3" y="453" width="9.6" height="15.0" fill="rgb(209,0,40)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.10%)</title><rect x="875.4" y="453" width="1.2" height="15.0" fill="rgb(248,72,39)" rx="2" ry="2" />
<text text-anchor="" x="878.41" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="1086.3" y="389" width="1.2" height="15.0" fill="rgb(253,193,27)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="874.2" y="389" width="1.2" height="15.0" fill="rgb(246,187,48)" rx="2" ry="2" />
<text text-anchor="" x="877.21" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1175.5" y="373" width="1.2" height="15.0" fill="rgb(226,55,38)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1037 (41 samples, 4.19%)</title><rect x="1028.5" y="533" width="49.4" height="15.0" fill="rgb(252,53,37)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4879 (3 samples, 0.31%)</title><rect x="818.8" y="533" width="3.6" height="15.0" fill="rgb(233,4,50)" rx="2" ry="2" />
<text text-anchor="" x="821.76" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:918 (1 samples, 0.10%)</title><rect x="1187.6" y="709" width="1.2" height="15.0" fill="rgb(221,9,17)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (2 samples, 0.20%)</title><rect x="1184.0" y="277" width="2.4" height="15.0" fill="rgb(234,131,49)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (6 samples, 0.61%)</title><rect x="710.3" y="437" width="7.2" height="15.0" fill="rgb(253,110,6)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (25 samples, 2.55%)</title><rect x="618.7" y="517" width="30.1" height="15.0" fill="rgb(240,63,33)" rx="2" ry="2" />
<text text-anchor="" x="621.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1273 (1 samples, 0.10%)</title><rect x="1128.5" y="453" width="1.2" height="15.0" fill="rgb(242,226,16)" rx="2" ry="2" />
<text text-anchor="" x="1131.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.10%)</title><rect x="1093.6" y="437" width="1.2" height="15.0" fill="rgb(235,169,20)" rx="2" ry="2" />
<text text-anchor="" x="1096.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (14 samples, 1.43%)</title><rect x="1138.2" y="469" width="16.8" height="15.0" fill="rgb(221,25,16)" rx="2" ry="2" />
<text text-anchor="" x="1141.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:test_expr:213 (1 samples, 0.10%)</title><rect x="1174.3" y="485" width="1.2" height="15.0" fill="rgb(237,45,12)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (3 samples, 0.31%)</title><rect x="554.8" y="501" width="3.6" height="15.0" fill="rgb(247,182,17)" rx="2" ry="2" />
<text text-anchor="" x="557.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (2 samples, 0.20%)</title><rect x="1082.7" y="533" width="2.4" height="15.0" fill="rgb(234,194,2)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__contains__:4646 (1 samples, 0.10%)</title><rect x="1067.1" y="453" width="1.2" height="15.0" fill="rgb(241,87,53)" rx="2" ry="2" />
<text text-anchor="" x="1070.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3322 (2 samples, 0.20%)</title><rect x="1176.7" y="357" width="2.5" height="15.0" fill="rgb(207,137,43)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="153.4" y="421" width="1.2" height="15.0" fill="rgb(240,194,14)" rx="2" ry="2" />
<text text-anchor="" x="156.43" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.20%)</title><rect x="530.7" y="485" width="2.4" height="15.0" fill="rgb(222,212,16)" rx="2" ry="2" />
<text text-anchor="" x="533.69" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.10%)</title><rect x="1135.8" y="389" width="1.2" height="15.0" fill="rgb(231,78,9)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="148.6" y="437" width="1.2" height="15.0" fill="rgb(235,21,6)" rx="2" ry="2" />
<text text-anchor="" x="151.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:237 (2 samples, 0.20%)</title><rect x="1184.0" y="533" width="2.4" height="15.0" fill="rgb(234,9,35)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="543.5" font-size="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;module&gt;:8 (2 samples, 0.20%)</title><rect x="1184.0" y="437" width="2.4" height="15.0" fill="rgb(233,203,14)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:undecimalize:42 (1 samples, 0.10%)</title><rect x="179.9" y="325" width="1.3" height="15.0" fill="rgb(248,91,34)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="706.7" y="469" width="1.2" height="15.0" fill="rgb(222,59,44)" rx="2" ry="2" />
<text text-anchor="" x="709.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (5 samples, 0.51%)</title><rect x="102.8" y="1269" width="6.0" height="15.0" fill="rgb(205,53,30)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/utm/models/ir_http.py:_dispatch:26 (867 samples, 88.56%)</title><rect x="145.0" y="949" width="1045.0" height="15.0" fill="rgb(213,104,9)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/utm/models/ir_http.py:_dispatch:26</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="747.7" y="453" width="1.2" height="15.0" fill="rgb(239,10,44)" rx="2" ry="2" />
<text text-anchor="" x="750.65" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:968 (2 samples, 0.20%)</title><rect x="914.0" y="453" width="2.4" height="15.0" fill="rgb(243,207,47)" rx="2" ry="2" />
<text text-anchor="" x="916.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:fields_get:2505 (1 samples, 0.10%)</title><rect x="1188.8" y="629" width="1.2" height="15.0" fill="rgb(206,17,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:209 (3 samples, 0.31%)</title><rect x="1077.9" y="597" width="3.6" height="15.0" fill="rgb(210,63,41)" rx="2" ry="2" />
<text text-anchor="" x="1080.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.10%)</title><rect x="1112.9" y="373" width="1.2" height="15.0" fill="rgb(232,179,5)" rx="2" ry="2" />
<text text-anchor="" x="1115.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2595 (1 samples, 0.10%)</title><rect x="1071.9" y="453" width="1.2" height="15.0" fill="rgb(247,27,19)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:65 (1 samples, 0.10%)</title><rect x="883.9" y="405" width="1.2" height="15.0" fill="rgb(213,174,49)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="176.3" y="501" width="1.2" height="15.0" fill="rgb(217,199,1)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="718.7" y="485" width="1.2" height="15.0" fill="rgb(242,172,36)" rx="2" ry="2" />
<text text-anchor="" x="721.72" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1118.9" y="373" width="1.2" height="15.0" fill="rgb(240,13,50)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="175.1" y="309" width="1.2" height="15.0" fill="rgb(205,43,14)" rx="2" ry="2" />
<text text-anchor="" x="178.13" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4326 (1 samples, 0.10%)</title><rect x="30.5" y="1285" width="1.2" height="15.0" fill="rgb(246,54,27)" rx="2" ry="2" />
<text text-anchor="" x="33.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (2 samples, 0.20%)</title><rect x="1184.0" y="389" width="2.4" height="15.0" fill="rgb(227,213,22)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:write:3094 (2 samples, 0.20%)</title><rect x="1176.7" y="533" width="2.5" height="15.0" fill="rgb(226,196,29)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554 (1 samples, 0.10%)</title><rect x="1174.3" y="549" width="1.2" height="15.0" fill="rgb(236,75,14)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1811 (9 samples, 0.92%)</title><rect x="1175.5" y="613" width="10.9" height="15.0" fill="rgb(219,178,7)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:getlocale:577 (1 samples, 0.10%)</title><rect x="1161.1" y="357" width="1.2" height="15.0" fill="rgb(231,80,27)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (4 samples, 0.41%)</title><rect x="1179.2" y="533" width="4.8" height="15.0" fill="rgb(215,100,29)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.10%)</title><rect x="695.8" y="533" width="1.2" height="15.0" fill="rgb(232,22,45)" rx="2" ry="2" />
<text text-anchor="" x="698.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.10%)</title><rect x="1187.6" y="597" width="1.2" height="15.0" fill="rgb(226,161,43)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:923 (2 samples, 0.20%)</title><rect x="212.5" y="469" width="2.4" height="15.0" fill="rgb(216,129,54)" rx="2" ry="2" />
<text text-anchor="" x="215.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (3 samples, 0.31%)</title><rect x="1011.6" y="501" width="3.6" height="15.0" fill="rgb(244,221,26)" rx="2" ry="2" />
<text text-anchor="" x="1014.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (1 samples, 0.10%)</title><rect x="1177.9" y="325" width="1.3" height="15.0" fill="rgb(207,119,7)" rx="2" ry="2" />
<text text-anchor="" x="1180.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (16 samples, 1.63%)</title><rect x="827.2" y="421" width="19.3" height="15.0" fill="rgb(243,53,0)" rx="2" ry="2" />
<text text-anchor="" x="830.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4861 (1 samples, 0.10%)</title><rect x="705.5" y="533" width="1.2" height="15.0" fill="rgb(221,153,4)" rx="2" ry="2" />
<text text-anchor="" x="708.46" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1135.8" y="421" width="1.2" height="15.0" fill="rgb(244,188,7)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.31%)</title><rect x="1123.7" y="405" width="3.6" height="15.0" fill="rgb(239,212,41)" rx="2" ry="2" />
<text text-anchor="" x="1126.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="181.2" y="357" width="1.2" height="15.0" fill="rgb(253,133,4)" rx="2" ry="2" />
<text text-anchor="" x="184.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (2 samples, 0.20%)</title><rect x="318.6" y="437" width="2.4" height="15.0" fill="rgb(251,79,9)" rx="2" ry="2" />
<text text-anchor="" x="321.56" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.10%)</title><rect x="1117.7" y="421" width="1.2" height="15.0" fill="rgb(215,201,25)" rx="2" ry="2" />
<text text-anchor="" x="1120.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3377 (29 samples, 2.96%)</title><rect x="155.8" y="613" width="35.0" height="15.0" fill="rgb(217,112,47)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="208.9" y="469" width="1.2" height="15.0" fill="rgb(246,227,23)" rx="2" ry="2" />
<text text-anchor="" x="211.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="668.1" y="549" width="1.2" height="15.0" fill="rgb(234,74,39)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3796 (2 samples, 0.20%)</title><rect x="195.6" y="469" width="2.4" height="15.0" fill="rgb(232,107,30)" rx="2" ry="2" />
<text text-anchor="" x="198.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3783 (1 samples, 0.10%)</title><rect x="921.2" y="501" width="1.2" height="15.0" fill="rgb(240,224,36)" rx="2" ry="2" />
<text text-anchor="" x="924.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="145.0" y="549" width="1.2" height="15.0" fill="rgb(244,0,31)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (2 samples, 0.20%)</title><rect x="1184.0" y="469" width="2.4" height="15.0" fill="rgb(225,161,16)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="163.1" y="261" width="1.2" height="15.0" fill="rgb(227,89,48)" rx="2" ry="2" />
<text text-anchor="" x="166.07" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393 (867 samples, 88.56%)</title><rect x="145.0" y="965" width="1045.0" height="15.0" fill="rgb(213,166,8)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:_get_expression:1057 (3 samples, 0.31%)</title><rect x="883.9" y="485" width="3.6" height="15.0" fill="rgb(226,75,6)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3772 (1 samples, 0.10%)</title><rect x="1090.0" y="453" width="1.2" height="15.0" fill="rgb(214,167,0)" rx="2" ry="2" />
<text text-anchor="" x="1092.96" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (202 samples, 20.63%)</title><rect x="194.4" y="533" width="243.5" height="15.0" fill="rgb(207,116,10)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/mo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="1083.9" y="421" width="1.2" height="15.0" fill="rgb(231,7,22)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1127.3" y="389" width="1.2" height="15.0" fill="rgb(217,187,23)" rx="2" ry="2" />
<text text-anchor="" x="1130.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account.py:name_get:676 (1 samples, 0.10%)</title><rect x="96.8" y="1253" width="1.2" height="15.0" fill="rgb(216,26,10)" rx="2" ry="2" />
<text text-anchor="" x="99.78" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (1 samples, 0.10%)</title><rect x="922.4" y="485" width="1.2" height="15.0" fill="rgb(242,136,31)" rx="2" ry="2" />
<text text-anchor="" x="925.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.10%)</title><rect x="668.1" y="501" width="1.2" height="15.0" fill="rgb(212,139,47)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:211 (1 samples, 0.10%)</title><rect x="891.1" y="597" width="1.2" height="15.0" fill="rgb(236,63,14)" rx="2" ry="2" />
<text text-anchor="" x="894.08" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (2 samples, 0.20%)</title><rect x="443.9" y="533" width="2.4" height="15.0" fill="rgb(248,110,33)" rx="2" ry="2" />
<text text-anchor="" x="446.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.10%)</title><rect x="1068.3" y="389" width="1.2" height="15.0" fill="rgb(210,197,36)" rx="2" ry="2" />
<text text-anchor="" x="1071.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="1116.5" y="373" width="1.2" height="15.0" fill="rgb(250,198,43)" rx="2" ry="2" />
<text text-anchor="" x="1119.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4874 (58 samples, 5.92%)</title><rect x="945.3" y="533" width="69.9" height="15.0" fill="rgb(227,209,41)" rx="2" ry="2" />
<text text-anchor="" x="948.32" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="167.9" y="405" width="1.2" height="15.0" fill="rgb(222,169,42)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="105.2" y="1205" width="1.2" height="15.0" fill="rgb(244,50,52)" rx="2" ry="2" />
<text text-anchor="" x="108.22" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.10%)</title><rect x="920.0" y="501" width="1.2" height="15.0" fill="rgb(206,108,51)" rx="2" ry="2" />
<text text-anchor="" x="923.01" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.20%)</title><rect x="102.8" y="1237" width="2.4" height="15.0" fill="rgb(231,160,37)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="1169.5" y="533" width="1.2" height="15.0" fill="rgb(248,27,53)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (45 samples, 4.60%)</title><rect x="824.8" y="501" width="54.2" height="15.0" fill="rgb(211,110,26)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (2 samples, 0.20%)</title><rect x="146.2" y="453" width="2.4" height="15.0" fill="rgb(228,51,19)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="683.8" y="501" width="1.2" height="15.0" fill="rgb(230,11,5)" rx="2" ry="2" />
<text text-anchor="" x="686.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="108.8" y="1285" width="1.2" height="15.0" fill="rgb(231,19,32)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (8 samples, 0.82%)</title><rect x="906.8" y="485" width="9.6" height="15.0" fill="rgb(227,94,44)" rx="2" ry="2" />
<text text-anchor="" x="909.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (8 samples, 0.82%)</title><rect x="609.0" y="501" width="9.7" height="15.0" fill="rgb(232,61,6)" rx="2" ry="2" />
<text text-anchor="" x="612.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3393 (2 samples, 0.20%)</title><rect x="880.2" y="565" width="2.4" height="15.0" fill="rgb(244,150,6)" rx="2" ry="2" />
<text text-anchor="" x="883.23" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (3 samples, 0.31%)</title><rect x="846.5" y="421" width="3.6" height="15.0" fill="rgb(250,225,46)" rx="2" ry="2" />
<text text-anchor="" x="849.49" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="516.2" y="501" width="1.2" height="15.0" fill="rgb(245,216,29)" rx="2" ry="2" />
<text text-anchor="" x="519.23" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (3 samples, 0.31%)</title><rect x="883.9" y="517" width="3.6" height="15.0" fill="rgb(209,112,25)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2609 (1 samples, 0.10%)</title><rect x="1110.4" y="373" width="1.3" height="15.0" fill="rgb(240,207,31)" rx="2" ry="2" />
<text text-anchor="" x="1113.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1094.8" y="453" width="1.2" height="15.0" fill="rgb(229,176,34)" rx="2" ry="2" />
<text text-anchor="" x="1097.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="741.6" y="485" width="1.2" height="15.0" fill="rgb(212,15,46)" rx="2" ry="2" />
<text text-anchor="" x="744.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2254 (1 samples, 0.10%)</title><rect x="436.7" y="501" width="1.2" height="15.0" fill="rgb(221,145,28)" rx="2" ry="2" />
<text text-anchor="" x="439.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:__call__:1319 (867 samples, 88.56%)</title><rect x="145.0" y="1077" width="1045.0" height="15.0" fill="rgb(215,171,13)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1319</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_getlang:31 (1 samples, 0.10%)</title><rect x="1162.3" y="373" width="1.2" height="15.0" fill="rgb(236,15,18)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="889.9" y="549" width="1.2" height="15.0" fill="rgb(229,126,37)" rx="2" ry="2" />
<text text-anchor="" x="892.88" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.10%)</title><rect x="955.0" y="437" width="1.2" height="15.0" fill="rgb(242,115,2)" rx="2" ry="2" />
<text text-anchor="" x="957.96" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="499.4" y="485" width="1.2" height="15.0" fill="rgb(224,196,7)" rx="2" ry="2" />
<text text-anchor="" x="502.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:&lt;dictcomp&gt;:196 (1 samples, 0.10%)</title><rect x="1111.7" y="341" width="1.2" height="15.0" fill="rgb(243,57,29)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1456 (1 samples, 0.10%)</title><rect x="663.3" y="597" width="1.2" height="15.0" fill="rgb(238,12,15)" rx="2" ry="2" />
<text text-anchor="" x="666.28" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263 (867 samples, 88.56%)</title><rect x="145.0" y="1173" width="1045.0" height="15.0" fill="rgb(222,158,8)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.10%)</title><rect x="1121.3" y="389" width="1.2" height="15.0" fill="rgb(243,159,2)" rx="2" ry="2" />
<text text-anchor="" x="1124.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3377 (151 samples, 15.42%)</title><rect x="697.0" y="565" width="182.0" height="15.0" fill="rgb(230,12,15)" rx="2" ry="2" />
<text text-anchor="" x="700.03" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2532 (1 samples, 0.10%)</title><rect x="172.7" y="325" width="1.2" height="15.0" fill="rgb(232,165,4)" rx="2" ry="2" />
<text text-anchor="" x="175.72" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_strptime_datetime:521 (1 samples, 0.10%)</title><rect x="1161.1" y="405" width="1.2" height="15.0" fill="rgb(224,32,38)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/bus/models/bus.py:loop:164 (1 samples, 0.10%)</title><rect x="143.8" y="1237" width="1.2" height="15.0" fill="rgb(213,152,35)" rx="2" ry="2" />
<text text-anchor="" x="146.79" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554 (2 samples, 0.20%)</title><rect x="1176.7" y="485" width="2.5" height="15.0" fill="rgb(226,142,33)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (3 samples, 0.31%)</title><rect x="368.0" y="437" width="3.6" height="15.0" fill="rgb(234,191,17)" rx="2" ry="2" />
<text text-anchor="" x="370.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:165 (1 samples, 0.10%)</title><rect x="664.5" y="581" width="1.2" height="15.0" fill="rgb(237,63,31)" rx="2" ry="2" />
<text text-anchor="" x="667.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:split_every:701 (1 samples, 0.10%)</title><rect x="136.6" y="1301" width="1.2" height="15.0" fill="rgb(220,118,53)" rx="2" ry="2" />
<text text-anchor="" x="139.56" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (1 samples, 0.10%)</title><rect x="1176.7" y="245" width="1.2" height="15.0" fill="rgb(236,44,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:228 (3 samples, 0.31%)</title><rect x="179.9" y="501" width="3.7" height="15.0" fill="rgb(224,124,6)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1157.5" y="469" width="1.2" height="15.0" fill="rgb(237,96,2)" rx="2" ry="2" />
<text text-anchor="" x="1160.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (6 samples, 0.61%)</title><rect x="427.0" y="469" width="7.3" height="15.0" fill="rgb(246,189,4)" rx="2" ry="2" />
<text text-anchor="" x="430.04" y="479.5" font-size="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;decorator-gen-117&gt;:_compute_residual:2 (7 samples, 0.72%)</title><rect x="167.9" y="469" width="8.4" height="15.0" fill="rgb(239,124,31)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.10%)</title><rect x="936.9" y="517" width="1.2" height="15.0" fill="rgb(249,123,28)" rx="2" ry="2" />
<text text-anchor="" x="939.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2707 (1 samples, 0.10%)</title><rect x="1186.4" y="389" width="1.2" height="15.0" fill="rgb(221,216,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (1 samples, 0.10%)</title><rect x="178.7" y="453" width="1.2" height="15.0" fill="rgb(240,193,30)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="1186.4" y="421" width="1.2" height="15.0" fill="rgb(220,112,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (1 samples, 0.10%)</title><rect x="1028.5" y="437" width="1.2" height="15.0" fill="rgb(205,85,33)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:184 (2 samples, 0.20%)</title><rect x="1176.7" y="501" width="2.5" height="15.0" fill="rgb(205,176,2)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (2 samples, 0.20%)</title><rect x="1184.0" y="293" width="2.4" height="15.0" fill="rgb(233,131,11)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (4 samples, 0.41%)</title><rect x="471.6" y="517" width="4.9" height="15.0" fill="rgb(236,31,46)" rx="2" ry="2" />
<text text-anchor="" x="474.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.10%)</title><rect x="181.2" y="293" width="1.2" height="15.0" fill="rgb(212,210,42)" rx="2" ry="2" />
<text text-anchor="" x="184.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (8 samples, 0.82%)</title><rect x="146.2" y="549" width="9.6" height="15.0" fill="rgb(216,76,2)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="178.7" y="485" width="1.2" height="15.0" fill="rgb(242,141,35)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (1 samples, 0.10%)</title><rect x="719.9" y="485" width="1.2" height="15.0" fill="rgb(226,131,31)" rx="2" ry="2" />
<text text-anchor="" x="722.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1180.4" y="341" width="1.2" height="15.0" fill="rgb(230,124,7)" rx="2" ry="2" />
<text text-anchor="" x="1183.36" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2446 (3 samples, 0.31%)</title><rect x="683.8" y="517" width="3.6" height="15.0" fill="rgb(232,119,48)" rx="2" ry="2" />
<text text-anchor="" x="686.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="874.2" y="405" width="1.2" height="15.0" fill="rgb(217,206,13)" rx="2" ry="2" />
<text text-anchor="" x="877.21" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1175.5" y="501" width="1.2" height="15.0" fill="rgb(243,40,3)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__new__:65 (1 samples, 0.10%)</title><rect x="1082.7" y="469" width="1.2" height="15.0" fill="rgb(223,47,2)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (3 samples, 0.31%)</title><rect x="645.2" y="501" width="3.6" height="15.0" fill="rgb(220,21,11)" rx="2" ry="2" />
<text text-anchor="" x="648.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="152.2" y="453" width="1.2" height="15.0" fill="rgb(249,112,24)" rx="2" ry="2" />
<text text-anchor="" x="155.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2609 (1 samples, 0.10%)</title><rect x="1110.4" y="357" width="1.3" height="15.0" fill="rgb(229,181,50)" rx="2" ry="2" />
<text text-anchor="" x="1113.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="875.4" y="405" width="1.2" height="15.0" fill="rgb(231,93,22)" rx="2" ry="2" />
<text text-anchor="" x="878.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (1 samples, 0.10%)</title><rect x="1186.4" y="629" width="1.2" height="15.0" fill="rgb(226,43,28)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:2596 (1 samples, 0.10%)</title><rect x="163.1" y="277" width="1.2" height="15.0" fill="rgb(209,190,31)" rx="2" ry="2" />
<text text-anchor="" x="166.07" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="193.2" y="517" width="1.2" height="15.0" fill="rgb(252,189,51)" rx="2" ry="2" />
<text text-anchor="" x="196.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:&lt;listcomp&gt;:203 (2 samples, 0.20%)</title><rect x="434.3" y="485" width="2.4" height="15.0" fill="rgb(216,131,28)" rx="2" ry="2" />
<text text-anchor="" x="437.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (2 samples, 0.20%)</title><rect x="659.7" y="501" width="2.4" height="15.0" fill="rgb(214,164,10)" rx="2" ry="2" />
<text text-anchor="" x="662.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="175.1" y="325" width="1.2" height="15.0" fill="rgb(206,105,30)" rx="2" ry="2" />
<text text-anchor="" x="178.13" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.10%)</title><rect x="686.2" y="501" width="1.2" height="15.0" fill="rgb(233,128,10)" rx="2" ry="2" />
<text text-anchor="" x="689.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (8 samples, 0.82%)</title><rect x="158.3" y="437" width="9.6" height="15.0" fill="rgb(205,101,24)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.10%)</title><rect x="158.3" y="357" width="1.2" height="15.0" fill="rgb(247,146,36)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.10%)</title><rect x="177.5" y="533" width="1.2" height="15.0" fill="rgb(236,54,24)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="688.6" y="469" width="1.2" height="15.0" fill="rgb(230,112,17)" rx="2" ry="2" />
<text text-anchor="" x="691.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (3 samples, 0.31%)</title><rect x="1141.8" y="341" width="3.6" height="15.0" fill="rgb(233,141,20)" rx="2" ry="2" />
<text text-anchor="" x="1144.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="148.6" y="485" width="1.2" height="15.0" fill="rgb(221,42,38)" rx="2" ry="2" />
<text text-anchor="" x="151.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (9 samples, 0.92%)</title><rect x="630.7" y="501" width="10.9" height="15.0" fill="rgb(218,8,38)" rx="2" ry="2" />
<text text-anchor="" x="633.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ids:4354 (12 samples, 1.23%)</title><rect x="1038.1" y="405" width="14.5" height="15.0" fill="rgb(247,113,17)" rx="2" ry="2" />
<text text-anchor="" x="1041.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (35 samples, 3.58%)</title><rect x="824.8" y="469" width="42.2" height="15.0" fill="rgb(241,72,12)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:__get__:111 (1 samples, 0.10%)</title><rect x="1069.5" y="341" width="1.2" height="15.0" fill="rgb(251,148,5)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="158.3" y="389" width="1.2" height="15.0" fill="rgb(224,18,53)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="399.5" font-size="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;frozen importlib._bootstrap&gt;:_handle_fromlist:1025 (1 samples, 0.10%)</title><rect x="196.8" y="421" width="1.2" height="15.0" fill="rgb(245,89,37)" rx="2" ry="2" />
<text text-anchor="" x="199.82" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:getlocale:577 (1 samples, 0.10%)</title><rect x="1176.7" y="101" width="1.2" height="15.0" fill="rgb(216,55,34)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1184.0" y="165" width="1.2" height="15.0" fill="rgb(213,104,25)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (5 samples, 0.51%)</title><rect x="1169.5" y="597" width="6.0" height="15.0" fill="rgb(222,73,38)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:369 (7 samples, 0.72%)</title><rect x="167.9" y="437" width="8.4" height="15.0" fill="rgb(208,159,24)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/dis.py:_unpack_opargs:351 (1 samples, 0.10%)</title><rect x="142.6" y="1301" width="1.2" height="15.0" fill="rgb(234,151,39)" rx="2" ry="2" />
<text text-anchor="" x="145.58" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:normalize_leaf:399 (1 samples, 0.10%)</title><rect x="683.8" y="405" width="1.2" height="15.0" fill="rgb(227,183,31)" rx="2" ry="2" />
<text text-anchor="" x="686.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3797 (6 samples, 0.61%)</title><rect x="927.2" y="501" width="7.3" height="15.0" fill="rgb(224,148,27)" rx="2" ry="2" />
<text text-anchor="" x="930.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.10%)</title><rect x="685.0" y="501" width="1.2" height="15.0" fill="rgb(241,85,54)" rx="2" ry="2" />
<text text-anchor="" x="687.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:4772 (6 samples, 0.61%)</title><rect x="1158.7" y="469" width="7.2" height="15.0" fill="rgb(227,23,10)" rx="2" ry="2" />
<text text-anchor="" x="1161.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:391 (1 samples, 0.10%)</title><rect x="1137.0" y="485" width="1.2" height="15.0" fill="rgb(225,51,44)" rx="2" ry="2" />
<text text-anchor="" x="1139.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (8 samples, 0.82%)</title><rect x="1056.2" y="437" width="9.7" height="15.0" fill="rgb(230,132,11)" rx="2" ry="2" />
<text text-anchor="" x="1059.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:2097 (1 samples, 0.10%)</title><rect x="439.1" y="565" width="1.2" height="15.0" fill="rgb(235,176,25)" rx="2" ry="2" />
<text text-anchor="" x="442.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (18 samples, 1.84%)</title><rect x="155.8" y="565" width="21.7" height="15.0" fill="rgb(238,138,27)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (10 samples, 1.02%)</title><rect x="867.0" y="469" width="12.0" height="15.0" fill="rgb(236,24,15)" rx="2" ry="2" />
<text text-anchor="" x="869.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="1132.1" y="437" width="1.3" height="15.0" fill="rgb(232,163,9)" rx="2" ry="2" />
<text text-anchor="" x="1135.15" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1067 (864 samples, 88.25%)</title><rect x="145.0" y="661" width="1041.4" height="15.0" fill="rgb(239,208,18)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1067</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="357.1" y="437" width="1.2" height="15.0" fill="rgb(207,215,6)" rx="2" ry="2" />
<text text-anchor="" x="360.13" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.20%)</title><rect x="179.9" y="373" width="2.5" height="15.0" fill="rgb(222,139,52)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:freehash:940 (1 samples, 0.10%)</title><rect x="1177.9" y="293" width="1.3" height="15.0" fill="rgb(239,193,49)" rx="2" ry="2" />
<text text-anchor="" x="1180.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:953 (1 samples, 0.10%)</title><rect x="157.0" y="453" width="1.3" height="15.0" fill="rgb(208,43,34)" rx="2" ry="2" />
<text text-anchor="" x="160.05" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.10%)</title><rect x="190.8" y="501" width="1.2" height="15.0" fill="rgb(253,17,42)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:348 (1 samples, 0.10%)</title><rect x="1174.3" y="501" width="1.2" height="15.0" fill="rgb(244,204,15)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1091.2" y="373" width="1.2" height="15.0" fill="rgb(211,192,42)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="1139.4" y="421" width="1.2" height="15.0" fill="rgb(248,146,53)" rx="2" ry="2" />
<text text-anchor="" x="1142.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:749 (1 samples, 0.10%)</title><rect x="1076.7" y="373" width="1.2" height="15.0" fill="rgb(231,57,16)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="1026.1" y="453" width="1.2" height="15.0" fill="rgb(228,124,42)" rx="2" ry="2" />
<text text-anchor="" x="1029.08" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="542.7" y="485" width="1.3" height="15.0" fill="rgb(251,221,6)" rx="2" ry="2" />
<text text-anchor="" x="545.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (3 samples, 0.31%)</title><rect x="1149.0" y="357" width="3.6" height="15.0" fill="rgb(209,73,2)" rx="2" ry="2" />
<text text-anchor="" x="1152.02" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="167.9" y="293" width="1.2" height="15.0" fill="rgb(209,115,28)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (1 samples, 0.10%)</title><rect x="1139.4" y="437" width="1.2" height="15.0" fill="rgb(243,28,50)" rx="2" ry="2" />
<text text-anchor="" x="1142.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.10%)</title><rect x="883.9" y="421" width="1.2" height="15.0" fill="rgb(230,42,32)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.10%)</title><rect x="1158.7" y="421" width="1.2" height="15.0" fill="rgb(208,132,34)" rx="2" ry="2" />
<text text-anchor="" x="1161.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/hr_expense/models/account_move_line.py:reconcile:15 (864 samples, 88.25%)</title><rect x="145.0" y="677" width="1041.4" height="15.0" fill="rgb(214,208,30)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/hr_expense/models/account_move_line.py:reconcile:15</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (3 samples, 0.31%)</title><rect x="615.1" y="485" width="3.6" height="15.0" fill="rgb(238,1,23)" rx="2" ry="2" />
<text text-anchor="" x="618.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2715 (1 samples, 0.10%)</title><rect x="1111.7" y="405" width="1.2" height="15.0" fill="rgb(221,224,6)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="1099.6" y="325" width="1.2" height="15.0" fill="rgb(246,212,22)" rx="2" ry="2" />
<text text-anchor="" x="1102.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (8 samples, 0.82%)</title><rect x="146.2" y="533" width="9.6" height="15.0" fill="rgb(245,141,17)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="921.2" y="485" width="1.2" height="15.0" fill="rgb(221,87,20)" rx="2" ry="2" />
<text text-anchor="" x="924.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="469.2" y="501" width="2.4" height="15.0" fill="rgb(210,2,44)" rx="2" ry="2" />
<text text-anchor="" x="472.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.10%)</title><rect x="940.5" y="485" width="1.2" height="15.0" fill="rgb(237,1,30)" rx="2" ry="2" />
<text text-anchor="" x="943.50" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (1 samples, 0.10%)</title><rect x="1186.4" y="533" width="1.2" height="15.0" fill="rgb(227,156,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4329 (1 samples, 0.10%)</title><rect x="416.2" y="437" width="1.2" height="15.0" fill="rgb(239,49,10)" rx="2" ry="2" />
<text text-anchor="" x="419.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (1 samples, 0.10%)</title><rect x="178.7" y="517" width="1.2" height="15.0" fill="rgb(212,103,44)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (3 samples, 0.31%)</title><rect x="1024.9" y="517" width="3.6" height="15.0" fill="rgb(238,33,24)" rx="2" ry="2" />
<text text-anchor="" x="1027.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.10%)</title><rect x="359.5" y="437" width="1.2" height="15.0" fill="rgb(241,190,50)" rx="2" ry="2" />
<text text-anchor="" x="362.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:209 (2 samples, 0.20%)</title><rect x="880.2" y="597" width="2.4" height="15.0" fill="rgb(205,20,6)" rx="2" ry="2" />
<text text-anchor="" x="883.23" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (2 samples, 0.20%)</title><rect x="1098.4" y="341" width="2.4" height="15.0" fill="rgb(210,16,35)" rx="2" ry="2" />
<text text-anchor="" x="1101.40" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="945.3" y="517" width="1.2" height="15.0" fill="rgb(215,82,24)" rx="2" ry="2" />
<text text-anchor="" x="948.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="108.8" y="1189" width="1.2" height="15.0" fill="rgb(219,35,44)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (2 samples, 0.20%)</title><rect x="190.8" y="549" width="2.4" height="15.0" fill="rgb(205,18,9)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:column_type:1185 (1 samples, 0.10%)</title><rect x="871.8" y="405" width="1.2" height="15.0" fill="rgb(254,131,39)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (1 samples, 0.10%)</title><rect x="938.1" y="501" width="1.2" height="15.0" fill="rgb(206,196,48)" rx="2" ry="2" />
<text text-anchor="" x="941.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="212.5" y="453" width="1.2" height="15.0" fill="rgb(245,12,2)" rx="2" ry="2" />
<text text-anchor="" x="215.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="920.0" y="453" width="1.2" height="15.0" fill="rgb(228,171,46)" rx="2" ry="2" />
<text text-anchor="" x="923.01" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="334.2" y="421" width="1.2" height="15.0" fill="rgb(229,120,1)" rx="2" ry="2" />
<text text-anchor="" x="337.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_inherits_join_calc:2065 (1 samples, 0.10%)</title><rect x="870.6" y="389" width="1.2" height="15.0" fill="rgb(213,120,35)" rx="2" ry="2" />
<text text-anchor="" x="873.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.10%)</title><rect x="312.5" y="437" width="1.2" height="15.0" fill="rgb(218,178,50)" rx="2" ry="2" />
<text text-anchor="" x="315.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="335.4" y="421" width="1.2" height="15.0" fill="rgb(212,98,20)" rx="2" ry="2" />
<text text-anchor="" x="338.43" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="474.0" y="501" width="2.5" height="15.0" fill="rgb(241,16,50)" rx="2" ry="2" />
<text text-anchor="" x="477.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:dispatch:1491 (867 samples, 88.56%)</title><rect x="145.0" y="1029" width="1045.0" height="15.0" fill="rgb(216,175,10)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:1491</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (10 samples, 1.02%)</title><rect x="956.2" y="453" width="12.0" height="15.0" fill="rgb(245,151,5)" rx="2" ry="2" />
<text text-anchor="" x="959.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="879.0" y="549" width="1.2" height="15.0" fill="rgb(232,55,4)" rx="2" ry="2" />
<text text-anchor="" x="882.03" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1037 (45 samples, 4.60%)</title><rect x="824.8" y="533" width="54.2" height="15.0" fill="rgb(234,142,42)" rx="2" ry="2" />
<text text-anchor="" x="827.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (2 samples, 0.20%)</title><rect x="146.2" y="469" width="2.4" height="15.0" fill="rgb(221,225,19)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (2 samples, 0.20%)</title><rect x="190.8" y="565" width="2.4" height="15.0" fill="rgb(239,151,4)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (2 samples, 0.20%)</title><rect x="1176.7" y="549" width="2.5" height="15.0" fill="rgb(223,66,5)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.10%)</title><rect x="718.7" y="501" width="1.2" height="15.0" fill="rgb(233,4,39)" rx="2" ry="2" />
<text text-anchor="" x="721.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="220.9" y="421" width="1.2" height="15.0" fill="rgb(208,66,13)" rx="2" ry="2" />
<text text-anchor="" x="223.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.10%)</title><rect x="1128.5" y="437" width="1.2" height="15.0" fill="rgb(239,196,29)" rx="2" ry="2" />
<text text-anchor="" x="1131.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_parse_localename:483 (1 samples, 0.10%)</title><rect x="1162.3" y="341" width="1.2" height="15.0" fill="rgb(249,80,20)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:184 (1 samples, 0.10%)</title><rect x="1174.3" y="565" width="1.2" height="15.0" fill="rgb(223,157,34)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="166.7" y="245" width="1.2" height="15.0" fill="rgb(239,125,34)" rx="2" ry="2" />
<text text-anchor="" x="169.69" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:loop:369 (7 samples, 0.72%)</title><rect x="167.9" y="453" width="8.4" height="15.0" fill="rgb(243,71,42)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (5 samples, 0.51%)</title><rect x="102.8" y="1285" width="6.0" height="15.0" fill="rgb(252,213,38)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.10%)</title><rect x="201.6" y="485" width="1.2" height="15.0" fill="rgb(240,111,1)" rx="2" ry="2" />
<text text-anchor="" x="204.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (2 samples, 0.20%)</title><rect x="1176.7" y="453" width="2.5" height="15.0" fill="rgb(225,197,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (8 samples, 0.82%)</title><rect x="146.2" y="597" width="9.6" height="15.0" fill="rgb(229,206,14)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.20%)</title><rect x="146.2" y="501" width="2.4" height="15.0" fill="rgb(249,173,7)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1798 (159 samples, 16.24%)</title><rect x="893.5" y="613" width="191.6" height="15.0" fill="rgb(250,16,8)" rx="2" ry="2" />
<text text-anchor="" x="896.49" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="10.0" y="1109" width="1.2" height="15.0" fill="rgb(253,1,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:897 (4 samples, 0.41%)</title><rect x="909.2" y="453" width="4.8" height="15.0" fill="rgb(220,48,6)" rx="2" ry="2" />
<text text-anchor="" x="912.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:qualify:2697 (1 samples, 0.10%)</title><rect x="870.6" y="405" width="1.2" height="15.0" fill="rgb(252,218,43)" rx="2" ry="2" />
<text text-anchor="" x="873.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3383 (2 samples, 0.20%)</title><rect x="1077.9" y="565" width="2.4" height="15.0" fill="rgb(205,159,0)" rx="2" ry="2" />
<text text-anchor="" x="1080.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="235.4" y="437" width="1.2" height="15.0" fill="rgb(231,112,1)" rx="2" ry="2" />
<text text-anchor="" x="238.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="886.3" y="389" width="1.2" height="15.0" fill="rgb(219,53,11)" rx="2" ry="2" />
<text text-anchor="" x="889.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="465.6" y="485" width="1.2" height="15.0" fill="rgb(251,224,14)" rx="2" ry="2" />
<text text-anchor="" x="468.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.10%)</title><rect x="184.8" y="341" width="1.2" height="15.0" fill="rgb(227,205,15)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="184.8" y="277" width="1.2" height="15.0" fill="rgb(236,160,48)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.10%)</title><rect x="93.2" y="1237" width="1.2" height="15.0" fill="rgb(234,39,21)" rx="2" ry="2" />
<text text-anchor="" x="96.17" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2573 (1 samples, 0.10%)</title><rect x="681.4" y="549" width="1.2" height="15.0" fill="rgb(226,2,23)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (1 samples, 0.10%)</title><rect x="1086.3" y="469" width="1.2" height="15.0" fill="rgb(245,227,40)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (1 samples, 0.10%)</title><rect x="1137.0" y="469" width="1.2" height="15.0" fill="rgb(245,131,32)" rx="2" ry="2" />
<text text-anchor="" x="1139.97" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="875.4" y="437" width="1.2" height="15.0" fill="rgb(219,211,33)" rx="2" ry="2" />
<text text-anchor="" x="878.41" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="892.3" y="581" width="1.2" height="15.0" fill="rgb(216,170,3)" rx="2" ry="2" />
<text text-anchor="" x="895.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:822 (1 samples, 0.10%)</title><rect x="910.4" y="373" width="1.2" height="15.0" fill="rgb(240,3,8)" rx="2" ry="2" />
<text text-anchor="" x="913.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (4 samples, 0.41%)</title><rect x="1179.2" y="453" width="4.8" height="15.0" fill="rgb(241,13,9)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/service/model.py:wrapper:97 (867 samples, 88.56%)</title><rect x="145.0" y="885" width="1045.0" height="15.0" fill="rgb(232,69,15)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/model.py:wrapper:97</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (1 samples, 0.10%)</title><rect x="706.7" y="501" width="1.2" height="15.0" fill="rgb(233,119,37)" rx="2" ry="2" />
<text text-anchor="" x="709.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="214.9" y="453" width="1.2" height="15.0" fill="rgb(249,24,20)" rx="2" ry="2" />
<text text-anchor="" x="217.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1133.4" y="421" width="1.2" height="15.0" fill="rgb(216,103,13)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (17 samples, 1.74%)</title><rect x="155.8" y="485" width="20.5" height="15.0" fill="rgb(207,169,17)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.10%)</title><rect x="903.1" y="517" width="1.2" height="15.0" fill="rgb(231,60,38)" rx="2" ry="2" />
<text text-anchor="" x="906.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:column_type:1185 (1 samples, 0.10%)</title><rect x="1068.3" y="405" width="1.2" height="15.0" fill="rgb(238,154,30)" rx="2" ry="2" />
<text text-anchor="" x="1071.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (6 samples, 0.61%)</title><rect x="710.3" y="469" width="7.2" height="15.0" fill="rgb(213,87,45)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="107.6" y="1205" width="1.2" height="15.0" fill="rgb(244,112,25)" rx="2" ry="2" />
<text text-anchor="" x="110.63" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2636 (1 samples, 0.10%)</title><rect x="193.2" y="549" width="1.2" height="15.0" fill="rgb(249,140,33)" rx="2" ry="2" />
<text text-anchor="" x="196.21" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:post:144 (1 samples, 0.10%)</title><rect x="1175.5" y="581" width="1.2" height="15.0" fill="rgb(216,198,19)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_message.py:_invalidate_documents:738 (1 samples, 0.10%)</title><rect x="183.6" y="389" width="1.2" height="15.0" fill="rgb(245,181,50)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:normalize:440 (1 samples, 0.10%)</title><rect x="1162.3" y="325" width="1.2" height="15.0" fill="rgb(226,164,31)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="1012.8" y="453" width="1.2" height="15.0" fill="rgb(245,11,49)" rx="2" ry="2" />
<text text-anchor="" x="1015.82" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (2 samples, 0.20%)</title><rect x="341.5" y="437" width="2.4" height="15.0" fill="rgb(230,119,6)" rx="2" ry="2" />
<text text-anchor="" x="344.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350 (2 samples, 0.20%)</title><rect x="1176.7" y="437" width="2.5" height="15.0" fill="rgb(236,79,50)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="447.5" font-size="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;decorator-gen-20&gt;:check:2 (1 samples, 0.10%)</title><rect x="1090.0" y="421" width="1.2" height="15.0" fill="rgb(230,112,54)" rx="2" ry="2" />
<text text-anchor="" x="1092.96" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="178.7" y="325" width="1.2" height="15.0" fill="rgb(216,121,17)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.10%)</title><rect x="1055.0" y="405" width="1.2" height="15.0" fill="rgb(239,229,37)" rx="2" ry="2" />
<text text-anchor="" x="1058.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.10%)</title><rect x="194.4" y="437" width="1.2" height="15.0" fill="rgb(240,211,16)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (6 samples, 0.61%)</title><rect x="194.4" y="485" width="7.2" height="15.0" fill="rgb(216,221,42)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.10%)</title><rect x="935.7" y="517" width="1.2" height="15.0" fill="rgb(248,154,13)" rx="2" ry="2" />
<text text-anchor="" x="938.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57 (2 samples, 0.20%)</title><rect x="1184.0" y="485" width="2.4" height="15.0" fill="rgb(206,77,48)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="158.3" y="373" width="1.2" height="15.0" fill="rgb(249,162,35)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.41%)</title><rect x="1147.8" y="373" width="4.8" height="15.0" fill="rgb(222,221,35)" rx="2" ry="2" />
<text text-anchor="" x="1150.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1188.8" y="405" width="1.2" height="15.0" fill="rgb(238,113,54)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3518 (1 samples, 0.10%)</title><rect x="823.6" y="549" width="1.2" height="15.0" fill="rgb(240,76,25)" rx="2" ry="2" />
<text text-anchor="" x="826.59" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4848 (1 samples, 0.10%)</title><rect x="898.3" y="533" width="1.2" height="15.0" fill="rgb(227,44,15)" rx="2" ry="2" />
<text text-anchor="" x="901.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.10%)</title><rect x="578.9" y="517" width="1.2" height="15.0" fill="rgb(214,94,8)" rx="2" ry="2" />
<text text-anchor="" x="581.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.10%)</title><rect x="468.0" y="501" width="1.2" height="15.0" fill="rgb(241,21,39)" rx="2" ry="2" />
<text text-anchor="" x="471.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1732 (394 samples, 40.25%)</title><rect x="190.8" y="613" width="474.9" height="15.0" fill="rgb(227,198,47)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3195 (3 samples, 0.31%)</title><rect x="1169.5" y="581" width="3.6" height="15.0" fill="rgb(245,11,21)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (6 samples, 0.61%)</title><rect x="169.1" y="405" width="7.2" height="15.0" fill="rgb(227,30,27)" rx="2" ry="2" />
<text text-anchor="" x="172.10" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_filter_post:154 (5 samples, 0.51%)</title><rect x="883.9" y="581" width="6.0" height="15.0" fill="rgb(216,178,21)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="1052.6" y="405" width="1.2" height="15.0" fill="rgb(251,181,23)" rx="2" ry="2" />
<text text-anchor="" x="1055.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:test_expr:214 (1 samples, 0.10%)</title><rect x="888.7" y="549" width="1.2" height="15.0" fill="rgb(232,214,54)" rx="2" ry="2" />
<text text-anchor="" x="891.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4874 (64 samples, 6.54%)</title><rect x="741.6" y="533" width="77.2" height="15.0" fill="rgb(211,62,16)" rx="2" ry="2" />
<text text-anchor="" x="744.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="669.3" y="533" width="1.2" height="15.0" fill="rgb(239,187,21)" rx="2" ry="2" />
<text text-anchor="" x="672.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (3 samples, 0.31%)</title><rect x="31.7" y="1285" width="3.6" height="15.0" fill="rgb(243,70,20)" rx="2" ry="2" />
<text text-anchor="" x="34.70" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.10%)</title><rect x="904.3" y="469" width="1.2" height="15.0" fill="rgb(219,7,28)" rx="2" ry="2" />
<text text-anchor="" x="907.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (6 samples, 0.61%)</title><rect x="674.1" y="565" width="7.3" height="15.0" fill="rgb(234,55,29)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (1 samples, 0.10%)</title><rect x="1176.7" y="261" width="1.2" height="15.0" fill="rgb(217,149,41)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="153.4" y="437" width="1.2" height="15.0" fill="rgb(230,160,51)" rx="2" ry="2" />
<text text-anchor="" x="156.43" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (8 samples, 0.82%)</title><rect x="709.1" y="501" width="9.6" height="15.0" fill="rgb(207,218,13)" rx="2" ry="2" />
<text text-anchor="" x="712.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="740.4" y="469" width="1.2" height="15.0" fill="rgb(239,221,45)" rx="2" ry="2" />
<text text-anchor="" x="743.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (6 samples, 0.61%)</title><rect x="102.8" y="1301" width="7.2" height="15.0" fill="rgb(213,54,38)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:envs:707 (1 samples, 0.10%)</title><rect x="1069.5" y="325" width="1.2" height="15.0" fill="rgb(244,226,54)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.10%)</title><rect x="886.3" y="421" width="1.2" height="15.0" fill="rgb(212,70,15)" rx="2" ry="2" />
<text text-anchor="" x="889.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="151.0" y="453" width="1.2" height="15.0" fill="rgb(215,102,22)" rx="2" ry="2" />
<text text-anchor="" x="154.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1267 (1 samples, 0.10%)</title><rect x="699.4" y="533" width="1.2" height="15.0" fill="rgb(234,119,5)" rx="2" ry="2" />
<text text-anchor="" x="702.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (3 samples, 0.31%)</title><rect x="863.4" y="405" width="3.6" height="15.0" fill="rgb(228,31,39)" rx="2" ry="2" />
<text text-anchor="" x="866.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.10%)</title><rect x="717.5" y="469" width="1.2" height="15.0" fill="rgb(220,106,52)" rx="2" ry="2" />
<text text-anchor="" x="720.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.10%)</title><rect x="707.9" y="453" width="1.2" height="15.0" fill="rgb(253,141,2)" rx="2" ry="2" />
<text text-anchor="" x="710.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680 (867 samples, 88.56%)</title><rect x="145.0" y="773" width="1045.0" height="15.0" fill="rgb(247,62,30)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:822 (2 samples, 0.20%)</title><rect x="906.8" y="453" width="2.4" height="15.0" fill="rgb(225,77,9)" rx="2" ry="2" />
<text text-anchor="" x="909.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (6 samples, 0.61%)</title><rect x="1146.6" y="389" width="7.2" height="15.0" fill="rgb(247,85,3)" rx="2" ry="2" />
<text text-anchor="" x="1149.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (2 samples, 0.20%)</title><rect x="1184.0" y="421" width="2.4" height="15.0" fill="rgb(229,115,51)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1169.5" y="549" width="1.2" height="15.0" fill="rgb(212,64,49)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="98.0" y="1189" width="1.2" height="15.0" fill="rgb(234,115,13)" rx="2" ry="2" />
<text text-anchor="" x="100.99" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="1083.9" y="357" width="1.2" height="15.0" fill="rgb(252,56,35)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.10%)</title><rect x="1086.3" y="341" width="1.2" height="15.0" fill="rgb(210,99,26)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="167.9" y="389" width="1.2" height="15.0" fill="rgb(254,74,47)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="10.0" y="1285" width="1.2" height="15.0" fill="rgb(248,30,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (5 samples, 0.51%)</title><rect x="421.0" y="437" width="6.0" height="15.0" fill="rgb(220,174,31)" rx="2" ry="2" />
<text text-anchor="" x="424.01" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (3 samples, 0.31%)</title><rect x="546.4" y="501" width="3.6" height="15.0" fill="rgb(221,56,50)" rx="2" ry="2" />
<text text-anchor="" x="549.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (151 samples, 15.42%)</title><rect x="697.0" y="581" width="182.0" height="15.0" fill="rgb(234,156,6)" rx="2" ry="2" />
<text text-anchor="" x="700.03" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/ad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:write:3094 (2 samples, 0.20%)</title><rect x="1184.0" y="405" width="2.4" height="15.0" fill="rgb(250,109,13)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/icm/commission_calculation/models/account_move_line.py:_compute_date_last_payment:41 (3 samples, 0.31%)</title><rect x="1087.5" y="485" width="3.7" height="15.0" fill="rgb(208,220,45)" rx="2" ry="2" />
<text text-anchor="" x="1090.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.10%)</title><rect x="1116.5" y="389" width="1.2" height="15.0" fill="rgb(252,184,43)" rx="2" ry="2" />
<text text-anchor="" x="1119.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_filter_post:154 (2 samples, 0.20%)</title><rect x="1082.7" y="581" width="2.4" height="15.0" fill="rgb(239,36,14)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.20%)</title><rect x="693.4" y="517" width="2.4" height="15.0" fill="rgb(221,45,53)" rx="2" ry="2" />
<text text-anchor="" x="696.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.20%)</title><rect x="165.5" y="277" width="2.4" height="15.0" fill="rgb(217,95,34)" rx="2" ry="2" />
<text text-anchor="" x="168.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="701.8" y="501" width="1.3" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1795 (1 samples, 0.10%)</title><rect x="891.1" y="613" width="1.2" height="15.0" fill="rgb(234,11,19)" rx="2" ry="2" />
<text text-anchor="" x="894.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (1 samples, 0.10%)</title><rect x="1186.4" y="373" width="1.2" height="15.0" fill="rgb(254,182,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.10%)</title><rect x="1014.0" y="453" width="1.2" height="15.0" fill="rgb(246,28,17)" rx="2" ry="2" />
<text text-anchor="" x="1017.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="744.0" y="501" width="1.2" height="15.0" fill="rgb(241,41,28)" rx="2" ry="2" />
<text text-anchor="" x="747.03" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="701.8" y="485" width="1.3" height="15.0" fill="rgb(251,107,17)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.10%)</title><rect x="942.9" y="485" width="1.2" height="15.0" fill="rgb(221,54,44)" rx="2" ry="2" />
<text text-anchor="" x="945.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (4 samples, 0.41%)</title><rect x="587.3" y="501" width="4.9" height="15.0" fill="rgb(205,215,25)" rx="2" ry="2" />
<text text-anchor="" x="590.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.10%)</title><rect x="693.4" y="485" width="1.2" height="15.0" fill="rgb(246,199,54)" rx="2" ry="2" />
<text text-anchor="" x="696.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:229 (1 samples, 0.10%)</title><rect x="183.6" y="501" width="1.2" height="15.0" fill="rgb(223,91,52)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2743 (1 samples, 0.10%)</title><rect x="1071.9" y="437" width="1.2" height="15.0" fill="rgb(235,185,52)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (23 samples, 2.35%)</title><rect x="1138.2" y="501" width="27.7" height="15.0" fill="rgb(218,197,42)" rx="2" ry="2" />
<text text-anchor="" x="1141.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1181.6" y="341" width="1.2" height="15.0" fill="rgb(210,194,27)" rx="2" ry="2" />
<text text-anchor="" x="1184.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1990 (2 samples, 0.20%)</title><rect x="693.4" y="533" width="2.4" height="15.0" fill="rgb(225,24,47)" rx="2" ry="2" />
<text text-anchor="" x="696.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__len__:996 (1 samples, 0.10%)</title><rect x="744.0" y="469" width="1.2" height="15.0" fill="rgb(248,112,43)" rx="2" ry="2" />
<text text-anchor="" x="747.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="494.5" y="501" width="2.4" height="15.0" fill="rgb(247,208,17)" rx="2" ry="2" />
<text text-anchor="" x="497.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="176.3" y="485" width="1.2" height="15.0" fill="rgb(253,57,49)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_parse_localename:483 (1 samples, 0.10%)</title><rect x="1176.7" y="85" width="1.2" height="15.0" fill="rgb(206,124,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3322 (2 samples, 0.20%)</title><rect x="1184.0" y="373" width="2.4" height="15.0" fill="rgb(217,181,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.10%)</title><rect x="446.3" y="533" width="1.2" height="15.0" fill="rgb(232,55,31)" rx="2" ry="2" />
<text text-anchor="" x="449.32" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (2 samples, 0.20%)</title><rect x="1184.0" y="245" width="2.4" height="15.0" fill="rgb(241,181,51)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="107.6" y="1221" width="1.2" height="15.0" fill="rgb(214,43,35)" rx="2" ry="2" />
<text text-anchor="" x="110.63" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.10%)</title><rect x="155.8" y="421" width="1.2" height="15.0" fill="rgb(239,220,8)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:210 (3 samples, 0.31%)</title><rect x="1081.5" y="597" width="3.6" height="15.0" fill="rgb(242,0,35)" rx="2" ry="2" />
<text text-anchor="" x="1084.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1118.9" y="389" width="1.2" height="15.0" fill="rgb(252,26,46)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:4772 (1 samples, 0.10%)</title><rect x="1185.2" y="229" width="1.2" height="15.0" fill="rgb(219,84,36)" rx="2" ry="2" />
<text text-anchor="" x="1188.18" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1102.0" y="325" width="1.2" height="15.0" fill="rgb(251,38,17)" rx="2" ry="2" />
<text text-anchor="" x="1105.01" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__new__:65 (1 samples, 0.10%)</title><rect x="871.8" y="341" width="1.2" height="15.0" fill="rgb(248,87,33)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:369 (1 samples, 0.10%)</title><rect x="178.7" y="389" width="1.2" height="15.0" fill="rgb(234,49,26)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (3 samples, 0.31%)</title><rect x="1011.6" y="485" width="3.6" height="15.0" fill="rgb(211,107,21)" rx="2" ry="2" />
<text text-anchor="" x="1014.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="905.5" y="485" width="1.3" height="15.0" fill="rgb(219,164,7)" rx="2" ry="2" />
<text text-anchor="" x="908.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (2 samples, 0.20%)</title><rect x="1056.2" y="421" width="2.4" height="15.0" fill="rgb(219,144,9)" rx="2" ry="2" />
<text text-anchor="" x="1059.21" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.10%)</title><rect x="879.0" y="533" width="1.2" height="15.0" fill="rgb(226,124,6)" rx="2" ry="2" />
<text text-anchor="" x="882.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_matched_percentage:53 (1 samples, 0.10%)</title><rect x="1132.1" y="485" width="1.3" height="15.0" fill="rgb(223,224,33)" rx="2" ry="2" />
<text text-anchor="" x="1135.15" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="876.6" y="421" width="1.2" height="15.0" fill="rgb(224,129,2)" rx="2" ry="2" />
<text text-anchor="" x="879.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__init__:5197 (1 samples, 0.10%)</title><rect x="1133.4" y="309" width="1.2" height="15.0" fill="rgb(223,125,26)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1184.0" y="213" width="1.2" height="15.0" fill="rgb(224,159,5)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (3 samples, 0.31%)</title><rect x="1141.8" y="357" width="3.6" height="15.0" fill="rgb(252,100,45)" rx="2" ry="2" />
<text text-anchor="" x="1144.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.10%)</title><rect x="871.8" y="389" width="1.2" height="15.0" fill="rgb(242,129,8)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.10%)</title><rect x="1173.1" y="501" width="1.2" height="15.0" fill="rgb(212,116,13)" rx="2" ry="2" />
<text text-anchor="" x="1176.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2254 (1 samples, 0.10%)</title><rect x="1175.5" y="405" width="1.2" height="15.0" fill="rgb(219,45,32)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1176.7" y="309" width="1.2" height="15.0" fill="rgb(227,192,10)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="1099.6" y="309" width="1.2" height="15.0" fill="rgb(240,101,24)" rx="2" ry="2" />
<text text-anchor="" x="1102.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1145.4" y="357" width="1.2" height="15.0" fill="rgb(206,25,38)" rx="2" ry="2" />
<text text-anchor="" x="1148.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:_get_opcodes:128 (1 samples, 0.10%)</title><rect x="888.7" y="517" width="1.2" height="15.0" fill="rgb(240,29,47)" rx="2" ry="2" />
<text text-anchor="" x="891.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="718.7" y="469" width="1.2" height="15.0" fill="rgb(241,193,10)" rx="2" ry="2" />
<text text-anchor="" x="721.72" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1064 (1 samples, 0.10%)</title><rect x="1083.9" y="501" width="1.2" height="15.0" fill="rgb(252,175,20)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1108.0" y="325" width="1.2" height="15.0" fill="rgb(222,61,26)" rx="2" ry="2" />
<text text-anchor="" x="1111.04" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (66 samples, 6.74%)</title><rect x="1086.3" y="533" width="79.6" height="15.0" fill="rgb(252,102,39)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.10%)</title><rect x="196.8" y="453" width="1.2" height="15.0" fill="rgb(218,158,14)" rx="2" ry="2" />
<text text-anchor="" x="199.82" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:377 (1 samples, 0.10%)</title><rect x="155.8" y="469" width="1.2" height="15.0" fill="rgb(244,112,37)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="190.8" y="533" width="1.2" height="15.0" fill="rgb(244,7,54)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="170.3" y="309" width="1.2" height="15.0" fill="rgb(209,163,16)" rx="2" ry="2" />
<text text-anchor="" x="173.31" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="1175.5" y="469" width="1.2" height="15.0" fill="rgb(208,46,51)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:746 (1 samples, 0.10%)</title><rect x="1069.5" y="357" width="1.2" height="15.0" fill="rgb(216,213,35)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (5 samples, 0.51%)</title><rect x="691.0" y="549" width="6.0" height="15.0" fill="rgb(235,62,4)" rx="2" ry="2" />
<text text-anchor="" x="694.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/wsgi.py:__call__:599 (867 samples, 88.56%)</title><rect x="145.0" y="1045" width="1045.0" height="15.0" fill="rgb(217,7,39)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/wsgi.py:__call__:599</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__delitem__:82 (1 samples, 0.10%)</title><rect x="105.2" y="1189" width="1.2" height="15.0" fill="rgb(212,48,40)" rx="2" ry="2" />
<text text-anchor="" x="108.22" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.10%)</title><rect x="173.9" y="341" width="1.2" height="15.0" fill="rgb(207,118,30)" rx="2" ry="2" />
<text text-anchor="" x="176.92" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:create_substitution_leaf:635 (1 samples, 0.10%)</title><rect x="718.7" y="437" width="1.2" height="15.0" fill="rgb(222,62,32)" rx="2" ry="2" />
<text text-anchor="" x="721.72" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="347.5" y="437" width="1.2" height="15.0" fill="rgb(247,43,39)" rx="2" ry="2" />
<text text-anchor="" x="350.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:184 (2 samples, 0.20%)</title><rect x="1184.0" y="517" width="2.4" height="15.0" fill="rgb(233,49,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.10%)</title><rect x="1105.6" y="357" width="1.2" height="15.0" fill="rgb(226,90,48)" rx="2" ry="2" />
<text text-anchor="" x="1108.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1162 (1 samples, 0.10%)</title><rect x="677.7" y="501" width="1.2" height="15.0" fill="rgb(249,187,32)" rx="2" ry="2" />
<text text-anchor="" x="680.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.10%)</title><rect x="178.7" y="469" width="1.2" height="15.0" fill="rgb(235,36,16)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__hash__:4745 (2 samples, 0.20%)</title><rect x="188.4" y="357" width="2.4" height="15.0" fill="rgb(238,225,33)" rx="2" ry="2" />
<text text-anchor="" x="191.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:invalidate_cache:4826 (1 samples, 0.10%)</title><rect x="183.6" y="373" width="1.2" height="15.0" fill="rgb(245,147,28)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ids:4354 (11 samples, 1.12%)</title><rect x="833.2" y="405" width="13.3" height="15.0" fill="rgb(246,0,39)" rx="2" ry="2" />
<text text-anchor="" x="836.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3546 (2 samples, 0.20%)</title><rect x="1077.9" y="549" width="2.4" height="15.0" fill="rgb(235,223,43)" rx="2" ry="2" />
<text text-anchor="" x="1080.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.10%)</title><rect x="822.4" y="501" width="1.2" height="15.0" fill="rgb(220,144,33)" rx="2" ry="2" />
<text text-anchor="" x="825.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (4 samples, 0.41%)</title><rect x="851.3" y="421" width="4.8" height="15.0" fill="rgb(238,96,9)" rx="2" ry="2" />
<text text-anchor="" x="854.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_getlang:31 (1 samples, 0.10%)</title><rect x="1161.1" y="373" width="1.2" height="15.0" fill="rgb(212,127,48)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:from_string:1514 (1 samples, 0.10%)</title><rect x="1176.7" y="165" width="1.2" height="15.0" fill="rgb(238,93,44)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:write:3094 (6 samples, 0.61%)</title><rect x="1179.2" y="549" width="7.2" height="15.0" fill="rgb(246,140,4)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__init__:5197 (1 samples, 0.10%)</title><rect x="160.7" y="213" width="1.2" height="15.0" fill="rgb(249,217,23)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1146.6" y="357" width="1.2" height="15.0" fill="rgb(253,149,52)" rx="2" ry="2" />
<text text-anchor="" x="1149.61" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1271 (1 samples, 0.10%)</title><rect x="677.7" y="517" width="1.2" height="15.0" fill="rgb(248,11,21)" rx="2" ry="2" />
<text text-anchor="" x="680.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.10%)</title><rect x="666.9" y="581" width="1.2" height="15.0" fill="rgb(221,98,53)" rx="2" ry="2" />
<text text-anchor="" x="669.89" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4845 (1 samples, 0.10%)</title><rect x="704.3" y="533" width="1.2" height="15.0" fill="rgb(239,103,50)" rx="2" ry="2" />
<text text-anchor="" x="707.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2253 (1 samples, 0.10%)</title><rect x="1086.3" y="325" width="1.2" height="15.0" fill="rgb(240,87,29)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1091.2" y="469" width="1.2" height="15.0" fill="rgb(253,175,50)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (3 samples, 0.31%)</title><rect x="179.9" y="485" width="3.7" height="15.0" fill="rgb(254,50,46)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (2 samples, 0.20%)</title><rect x="434.3" y="501" width="2.4" height="15.0" fill="rgb(224,80,5)" rx="2" ry="2" />
<text text-anchor="" x="437.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1908 (826 samples, 84.37%)</title><rect x="190.8" y="629" width="995.6" height="15.0" fill="rgb(212,118,30)" rx="2" ry="2" />
<text text-anchor="" x="193.80" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1908</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:&lt;lambda&gt;:489 (1 samples, 0.10%)</title><rect x="178.7" y="501" width="1.2" height="15.0" fill="rgb(215,225,22)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3377 (1 samples, 0.10%)</title><rect x="1187.6" y="677" width="1.2" height="15.0" fill="rgb(220,219,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1102.0" y="293" width="1.2" height="15.0" fill="rgb(236,104,51)" rx="2" ry="2" />
<text text-anchor="" x="1105.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1067.1" y="437" width="1.2" height="15.0" fill="rgb(223,6,43)" rx="2" ry="2" />
<text text-anchor="" x="1070.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (2 samples, 0.20%)</title><rect x="941.7" y="517" width="2.4" height="15.0" fill="rgb(250,185,44)" rx="2" ry="2" />
<text text-anchor="" x="944.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1787 (179 samples, 18.28%)</title><rect x="674.1" y="613" width="215.8" height="15.0" fill="rgb(219,190,22)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (6 samples, 0.61%)</title><rect x="682.6" y="549" width="7.2" height="15.0" fill="rgb(253,138,51)" rx="2" ry="2" />
<text text-anchor="" x="685.56" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_translation.py:get_field_help:517 (1 samples, 0.10%)</title><rect x="1188.8" y="549" width="1.2" height="15.0" fill="rgb(234,130,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (49 samples, 5.01%)</title><rect x="501.8" y="533" width="59.0" height="15.0" fill="rgb(253,202,36)" rx="2" ry="2" />
<text text-anchor="" x="504.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="439.1" y="581" width="1.2" height="15.0" fill="rgb(208,143,45)" rx="2" ry="2" />
<text text-anchor="" x="442.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (18 samples, 1.84%)</title><rect x="155.8" y="549" width="21.7" height="15.0" fill="rgb(225,189,43)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="1186.4" y="437" width="1.2" height="15.0" fill="rgb(249,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (1 samples, 0.10%)</title><rect x="1175.5" y="517" width="1.2" height="15.0" fill="rgb(224,28,42)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="104.0" y="1173" width="1.2" height="15.0" fill="rgb(253,89,49)" rx="2" ry="2" />
<text text-anchor="" x="107.01" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.10%)</title><rect x="151.0" y="469" width="1.2" height="15.0" fill="rgb(230,138,4)" rx="2" ry="2" />
<text text-anchor="" x="154.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="881.4" y="533" width="1.2" height="15.0" fill="rgb(219,226,15)" rx="2" ry="2" />
<text text-anchor="" x="884.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:388 (2 samples, 0.20%)</title><rect x="1133.4" y="485" width="2.4" height="15.0" fill="rgb(236,185,8)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (5 samples, 0.51%)</title><rect x="184.8" y="421" width="6.0" height="15.0" fill="rgb(232,140,33)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (5 samples, 0.51%)</title><rect x="1111.7" y="421" width="6.0" height="15.0" fill="rgb(231,210,38)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__hash__:4745 (1 samples, 0.10%)</title><rect x="1075.5" y="437" width="1.2" height="15.0" fill="rgb(210,78,14)" rx="2" ry="2" />
<text text-anchor="" x="1078.50" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.10%)</title><rect x="360.7" y="421" width="1.3" height="15.0" fill="rgb(254,220,34)" rx="2" ry="2" />
<text text-anchor="" x="363.75" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3514 (108 samples, 11.03%)</title><rect x="898.3" y="549" width="130.2" height="15.0" fill="rgb(217,130,31)" rx="2" ry="2" />
<text text-anchor="" x="901.31" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requireme..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.10%)</title><rect x="1173.1" y="533" width="1.2" height="15.0" fill="rgb(216,224,38)" rx="2" ry="2" />
<text text-anchor="" x="1176.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__iter__:65 (4 samples, 0.41%)</title><rect x="137.8" y="1301" width="4.8" height="15.0" fill="rgb(230,87,19)" rx="2" ry="2" />
<text text-anchor="" x="140.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (2 samples, 0.20%)</title><rect x="715.1" y="405" width="2.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text text-anchor="" x="718.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__hash__:778 (1 samples, 0.10%)</title><rect x="161.9" y="213" width="1.2" height="15.0" fill="rgb(206,224,27)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:990 (2 samples, 0.20%)</title><rect x="1009.2" y="437" width="2.4" height="15.0" fill="rgb(254,90,27)" rx="2" ry="2" />
<text text-anchor="" x="1012.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (1 samples, 0.10%)</title><rect x="1175.5" y="533" width="1.2" height="15.0" fill="rgb(228,140,12)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.10%)</title><rect x="707.9" y="469" width="1.2" height="15.0" fill="rgb(222,87,18)" rx="2" ry="2" />
<text text-anchor="" x="710.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="102.8" y="1157" width="1.2" height="15.0" fill="rgb(239,108,32)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ids:4354 (2 samples, 0.20%)</title><rect x="853.7" y="405" width="2.4" height="15.0" fill="rgb(235,226,22)" rx="2" ry="2" />
<text text-anchor="" x="856.72" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (6 samples, 0.61%)</title><rect x="407.8" y="437" width="7.2" height="15.0" fill="rgb(222,12,31)" rx="2" ry="2" />
<text text-anchor="" x="410.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1151.4" y="341" width="1.2" height="15.0" fill="rgb(207,136,25)" rx="2" ry="2" />
<text text-anchor="" x="1154.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.10%)</title><rect x="147.4" y="389" width="1.2" height="15.0" fill="rgb(210,68,0)" rx="2" ry="2" />
<text text-anchor="" x="150.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (2 samples, 0.20%)</title><rect x="284.8" y="469" width="2.4" height="15.0" fill="rgb(243,181,42)" rx="2" ry="2" />
<text text-anchor="" x="287.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (4 samples, 0.41%)</title><rect x="1179.2" y="485" width="4.8" height="15.0" fill="rgb(209,45,3)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="903.1" y="437" width="1.2" height="15.0" fill="rgb(231,79,46)" rx="2" ry="2" />
<text text-anchor="" x="906.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.10%)</title><rect x="1027.3" y="453" width="1.2" height="15.0" fill="rgb(206,197,19)" rx="2" ry="2" />
<text text-anchor="" x="1030.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="559.6" y="517" width="1.2" height="15.0" fill="rgb(234,19,27)" rx="2" ry="2" />
<text text-anchor="" x="562.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/__init__.py:normalize_encoding:67 (1 samples, 0.10%)</title><rect x="1162.3" y="293" width="1.2" height="15.0" fill="rgb(209,85,27)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="148.6" y="421" width="1.2" height="15.0" fill="rgb(232,151,46)" rx="2" ry="2" />
<text text-anchor="" x="151.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (2 samples, 0.20%)</title><rect x="1133.4" y="453" width="2.4" height="15.0" fill="rgb(241,194,37)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (6 samples, 0.61%)</title><rect x="1103.2" y="373" width="7.2" height="15.0" fill="rgb(207,123,54)" rx="2" ry="2" />
<text text-anchor="" x="1106.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1091.2" y="325" width="1.2" height="15.0" fill="rgb(253,73,52)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (5 samples, 0.51%)</title><rect x="674.1" y="549" width="6.1" height="15.0" fill="rgb(230,96,47)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ids:4354 (1 samples, 0.10%)</title><rect x="1140.6" y="341" width="1.2" height="15.0" fill="rgb(243,67,24)" rx="2" ry="2" />
<text text-anchor="" x="1143.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (2 samples, 0.20%)</title><rect x="1077.9" y="581" width="2.4" height="15.0" fill="rgb(210,88,31)" rx="2" ry="2" />
<text text-anchor="" x="1080.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (2 samples, 0.20%)</title><rect x="670.5" y="533" width="2.4" height="15.0" fill="rgb(215,63,28)" rx="2" ry="2" />
<text text-anchor="" x="673.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2744 (1 samples, 0.10%)</title><rect x="436.7" y="517" width="1.2" height="15.0" fill="rgb(241,207,46)" rx="2" ry="2" />
<text text-anchor="" x="439.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="184.8" y="357" width="1.2" height="15.0" fill="rgb(235,218,41)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.10%)</title><rect x="155.8" y="453" width="1.2" height="15.0" fill="rgb(254,155,31)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (7 samples, 0.72%)</title><rect x="524.7" y="501" width="8.4" height="15.0" fill="rgb(241,57,6)" rx="2" ry="2" />
<text text-anchor="" x="527.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4354 (11 samples, 1.12%)</title><rect x="833.2" y="389" width="13.3" height="15.0" fill="rgb(221,73,49)" rx="2" ry="2" />
<text text-anchor="" x="836.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (1 samples, 0.10%)</title><rect x="1175.5" y="549" width="1.2" height="15.0" fill="rgb(216,19,27)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (1 samples, 0.10%)</title><rect x="1130.9" y="469" width="1.2" height="15.0" fill="rgb(247,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1133.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="1188.8" y="485" width="1.2" height="15.0" fill="rgb(220,19,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (1 samples, 0.10%)</title><rect x="1186.4" y="677" width="1.2" height="15.0" fill="rgb(211,126,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="160.7" y="341" width="1.2" height="15.0" fill="rgb(217,23,9)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1064 (3 samples, 0.31%)</title><rect x="883.9" y="501" width="3.6" height="15.0" fill="rgb(211,201,37)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22 (867 samples, 88.56%)</title><rect x="145.0" y="981" width="1045.0" height="15.0" fill="rgb(247,12,10)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="1187.6" y="613" width="1.2" height="15.0" fill="rgb(231,1,32)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="176.3" y="517" width="1.2" height="15.0" fill="rgb(206,177,33)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="469.2" y="485" width="1.2" height="15.0" fill="rgb(242,149,16)" rx="2" ry="2" />
<text text-anchor="" x="472.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (11 samples, 1.12%)</title><rect x="177.5" y="581" width="13.3" height="15.0" fill="rgb(241,33,4)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (1 samples, 0.10%)</title><rect x="680.2" y="533" width="1.2" height="15.0" fill="rgb(238,141,15)" rx="2" ry="2" />
<text text-anchor="" x="683.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (2 samples, 0.20%)</title><rect x="1184.0" y="261" width="2.4" height="15.0" fill="rgb(245,191,38)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="108.8" y="1237" width="1.2" height="15.0" fill="rgb(230,17,20)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (10 samples, 1.02%)</title><rect x="178.7" y="565" width="12.1" height="15.0" fill="rgb(248,73,18)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_write:1998 (1 samples, 0.10%)</title><rect x="1168.3" y="565" width="1.2" height="15.0" fill="rgb(215,114,4)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (3 samples, 0.31%)</title><rect x="179.9" y="389" width="3.7" height="15.0" fill="rgb(213,227,28)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="145.0" y="597" width="1.2" height="15.0" fill="rgb(254,7,44)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.20%)</title><rect x="1184.0" y="325" width="2.4" height="15.0" fill="rgb(222,83,29)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (2 samples, 0.20%)</title><rect x="1176.7" y="373" width="2.5" height="15.0" fill="rgb(234,78,38)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="161.9" y="245" width="1.2" height="15.0" fill="rgb(215,80,46)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (2 samples, 0.20%)</title><rect x="924.8" y="469" width="2.4" height="15.0" fill="rgb(217,76,47)" rx="2" ry="2" />
<text text-anchor="" x="927.83" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/dis.py:get_instructions:237 (1 samples, 0.10%)</title><rect x="888.7" y="501" width="1.2" height="15.0" fill="rgb(253,113,13)" rx="2" ry="2" />
<text text-anchor="" x="891.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="313.7" y="421" width="1.2" height="15.0" fill="rgb(215,115,2)" rx="2" ry="2" />
<text text-anchor="" x="316.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="108.8" y="1269" width="1.2" height="15.0" fill="rgb(217,160,5)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="192.0" y="517" width="1.2" height="15.0" fill="rgb(229,197,24)" rx="2" ry="2" />
<text text-anchor="" x="195.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2692 (1 samples, 0.10%)</title><rect x="871.8" y="421" width="1.2" height="15.0" fill="rgb(227,132,26)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:964 (1 samples, 0.10%)</title><rect x="1164.7" y="453" width="1.2" height="15.0" fill="rgb(229,81,20)" rx="2" ry="2" />
<text text-anchor="" x="1167.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:loop:369 (1 samples, 0.10%)</title><rect x="178.7" y="405" width="1.2" height="15.0" fill="rgb(244,46,26)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.51%)</title><rect x="184.8" y="437" width="6.0" height="15.0" fill="rgb(223,120,7)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="439.1" y="549" width="1.2" height="15.0" fill="rgb(208,135,34)" rx="2" ry="2" />
<text text-anchor="" x="442.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_description_help:742 (1 samples, 0.10%)</title><rect x="1188.8" y="597" width="1.2" height="15.0" fill="rgb(209,128,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.10%)</title><rect x="415.0" y="437" width="1.2" height="15.0" fill="rgb(222,130,8)" rx="2" ry="2" />
<text text-anchor="" x="417.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (5 samples, 0.51%)</title><rect x="856.1" y="405" width="6.1" height="15.0" fill="rgb(215,77,17)" rx="2" ry="2" />
<text text-anchor="" x="859.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="1091.2" y="437" width="1.2" height="15.0" fill="rgb(212,163,15)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3377 (1 samples, 0.10%)</title><rect x="1186.4" y="661" width="1.2" height="15.0" fill="rgb(247,198,33)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.10%)</title><rect x="290.8" y="421" width="1.2" height="15.0" fill="rgb(226,51,6)" rx="2" ry="2" />
<text text-anchor="" x="293.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="159.5" y="373" width="1.2" height="15.0" fill="rgb(224,174,15)" rx="2" ry="2" />
<text text-anchor="" x="162.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (1 samples, 0.10%)</title><rect x="1187.6" y="645" width="1.2" height="15.0" fill="rgb(241,32,49)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1531 (1 samples, 0.10%)</title><rect x="1162.3" y="437" width="1.2" height="15.0" fill="rgb(235,74,41)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (2 samples, 0.20%)</title><rect x="1114.1" y="389" width="2.4" height="15.0" fill="rgb(224,106,32)" rx="2" ry="2" />
<text text-anchor="" x="1117.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="1184.0" y="197" width="1.2" height="15.0" fill="rgb(246,226,34)" rx="2" ry="2" />
<text text-anchor="" x="1186.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (4 samples, 0.41%)</title><rect x="733.2" y="517" width="4.8" height="15.0" fill="rgb(209,193,17)" rx="2" ry="2" />
<text text-anchor="" x="736.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_generate_order_by_inner:3741 (1 samples, 0.10%)</title><rect x="922.4" y="469" width="1.2" height="15.0" fill="rgb(238,152,16)" rx="2" ry="2" />
<text text-anchor="" x="925.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154 (867 samples, 88.56%)</title><rect x="145.0" y="1093" width="1045.0" height="15.0" fill="rgb(241,61,3)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1267 (2 samples, 0.20%)</title><rect x="1169.5" y="565" width="2.4" height="15.0" fill="rgb(235,11,29)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (18 samples, 1.84%)</title><rect x="155.8" y="581" width="21.7" height="15.0" fill="rgb(246,209,53)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1091.2" y="357" width="1.2" height="15.0" fill="rgb(242,167,21)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:348 (1 samples, 0.10%)</title><rect x="1081.5" y="565" width="1.2" height="15.0" fill="rgb(206,179,39)" rx="2" ry="2" />
<text text-anchor="" x="1084.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1074.3" y="421" width="1.2" height="15.0" fill="rgb(224,35,18)" rx="2" ry="2" />
<text text-anchor="" x="1077.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:_get_expression:1057 (1 samples, 0.10%)</title><rect x="1083.9" y="485" width="1.2" height="15.0" fill="rgb(247,179,11)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.10%)</title><rect x="194.4" y="469" width="1.2" height="15.0" fill="rgb(242,97,25)" rx="2" ry="2" />
<text text-anchor="" x="197.41" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="145.0" y="501" width="1.2" height="15.0" fill="rgb(222,3,24)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (1 samples, 0.10%)</title><rect x="1176.7" y="229" width="1.2" height="15.0" fill="rgb(251,136,39)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (3 samples, 0.31%)</title><rect x="1052.6" y="421" width="3.6" height="15.0" fill="rgb(223,93,18)" rx="2" ry="2" />
<text text-anchor="" x="1055.59" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.10%)</title><rect x="289.6" y="453" width="1.2" height="15.0" fill="rgb(249,129,39)" rx="2" ry="2" />
<text text-anchor="" x="292.63" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228 (867 samples, 88.56%)</title><rect x="145.0" y="1205" width="1045.0" height="15.0" fill="rgb(243,80,35)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="145.0" y="469" width="1.2" height="15.0" fill="rgb(213,11,52)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (14 samples, 1.43%)</title><rect x="1111.7" y="437" width="16.8" height="15.0" fill="rgb(244,131,39)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:553 (1 samples, 0.10%)</title><rect x="674.1" y="469" width="1.2" height="15.0" fill="rgb(234,107,2)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_check_qorder:3580 (1 samples, 0.10%)</title><rect x="922.4" y="453" width="1.2" height="15.0" fill="rgb(230,103,37)" rx="2" ry="2" />
<text text-anchor="" x="925.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (2 samples, 0.20%)</title><rect x="924.8" y="485" width="2.4" height="15.0" fill="rgb(229,119,39)" rx="2" ry="2" />
<text text-anchor="" x="927.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:211 (1 samples, 0.10%)</title><rect x="889.9" y="597" width="1.2" height="15.0" fill="rgb(235,76,47)" rx="2" ry="2" />
<text text-anchor="" x="892.88" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.51%)</title><rect x="668.1" y="565" width="6.0" height="15.0" fill="rgb(232,107,0)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_filter_post:153 (1 samples, 0.10%)</title><rect x="1081.5" y="581" width="1.2" height="15.0" fill="rgb(252,102,8)" rx="2" ry="2" />
<text text-anchor="" x="1084.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="1126.1" y="341" width="1.2" height="15.0" fill="rgb(205,149,30)" rx="2" ry="2" />
<text text-anchor="" x="1129.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (1 samples, 0.10%)</title><rect x="214.9" y="469" width="1.2" height="15.0" fill="rgb(253,224,20)" rx="2" ry="2" />
<text text-anchor="" x="217.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:599 (1 samples, 0.10%)</title><rect x="921.2" y="437" width="1.2" height="15.0" fill="rgb(227,24,25)" rx="2" ry="2" />
<text text-anchor="" x="924.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:990 (22 samples, 2.25%)</title><rect x="110.0" y="1301" width="26.6" height="15.0" fill="rgb(243,73,29)" rx="2" ry="2" />
<text text-anchor="" x="113.04" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.10%)</title><rect x="333.0" y="437" width="1.2" height="15.0" fill="rgb(243,85,45)" rx="2" ry="2" />
<text text-anchor="" x="336.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:357 (1 samples, 0.10%)</title><rect x="1186.4" y="517" width="1.2" height="15.0" fill="rgb(239,4,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4912 (2 samples, 0.20%)</title><rect x="1167.1" y="597" width="2.4" height="15.0" fill="rgb(205,96,34)" rx="2" ry="2" />
<text text-anchor="" x="1170.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (4 samples, 0.41%)</title><rect x="1112.9" y="405" width="4.8" height="15.0" fill="rgb(252,83,45)" rx="2" ry="2" />
<text text-anchor="" x="1115.86" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:207 (1 samples, 0.10%)</title><rect x="1186.4" y="693" width="1.2" height="15.0" fill="rgb(230,22,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4868 (1 samples, 0.10%)</title><rect x="944.1" y="533" width="1.2" height="15.0" fill="rgb(223,84,10)" rx="2" ry="2" />
<text text-anchor="" x="947.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="894.7" y="565" width="1.2" height="15.0" fill="rgb(206,106,20)" rx="2" ry="2" />
<text text-anchor="" x="897.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="181.2" y="309" width="1.2" height="15.0" fill="rgb(250,15,7)" rx="2" ry="2" />
<text text-anchor="" x="184.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.10%)</title><rect x="676.5" y="501" width="1.2" height="15.0" fill="rgb(254,184,15)" rx="2" ry="2" />
<text text-anchor="" x="679.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_compute_residual:107 (1 samples, 0.10%)</title><rect x="167.9" y="421" width="1.2" height="15.0" fill="rgb(253,106,44)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (22 samples, 2.25%)</title><rect x="322.2" y="469" width="26.5" height="15.0" fill="rgb(206,34,48)" rx="2" ry="2" />
<text text-anchor="" x="325.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="1091.2" y="309" width="1.2" height="15.0" fill="rgb(238,170,29)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:base_field:615 (1 samples, 0.10%)</title><rect x="868.2" y="405" width="1.2" height="15.0" fill="rgb(228,162,42)" rx="2" ry="2" />
<text text-anchor="" x="871.18" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="220.9" y="453" width="1.2" height="15.0" fill="rgb(208,134,23)" rx="2" ry="2" />
<text text-anchor="" x="223.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.51%)</title><rect x="161.9" y="309" width="6.0" height="15.0" fill="rgb(236,184,2)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (3 samples, 0.31%)</title><rect x="883.9" y="549" width="3.6" height="15.0" fill="rgb(232,97,31)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1188.8" y="453" width="1.2" height="15.0" fill="rgb(239,17,53)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:953 (2 samples, 0.20%)</title><rect x="1161.1" y="453" width="2.4" height="15.0" fill="rgb(250,220,41)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.10%)</title><rect x="1182.8" y="341" width="1.2" height="15.0" fill="rgb(245,101,41)" rx="2" ry="2" />
<text text-anchor="" x="1185.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="1158.7" y="405" width="1.2" height="15.0" fill="rgb(221,151,17)" rx="2" ry="2" />
<text text-anchor="" x="1161.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.20%)</title><rect x="1093.6" y="469" width="2.4" height="15.0" fill="rgb(222,120,35)" rx="2" ry="2" />
<text text-anchor="" x="1096.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (3 samples, 0.31%)</title><rect x="938.1" y="517" width="3.6" height="15.0" fill="rgb(205,5,39)" rx="2" ry="2" />
<text text-anchor="" x="941.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1530 (1 samples, 0.10%)</title><rect x="1176.7" y="181" width="1.2" height="15.0" fill="rgb(213,113,36)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.10%)</title><rect x="665.7" y="581" width="1.2" height="15.0" fill="rgb(248,226,26)" rx="2" ry="2" />
<text text-anchor="" x="668.69" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="1157.5" y="437" width="1.2" height="15.0" fill="rgb(237,197,28)" rx="2" ry="2" />
<text text-anchor="" x="1160.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="700.6" y="517" width="1.2" height="15.0" fill="rgb(246,68,36)" rx="2" ry="2" />
<text text-anchor="" x="703.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1092.4" y="405" width="1.2" height="15.0" fill="rgb(228,188,44)" rx="2" ry="2" />
<text text-anchor="" x="1095.37" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2691 (1 samples, 0.10%)</title><rect x="1069.5" y="421" width="1.2" height="15.0" fill="rgb(251,47,41)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_thread.py:write:291 (1 samples, 0.10%)</title><rect x="183.6" y="485" width="1.2" height="15.0" fill="rgb(227,170,1)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (2 samples, 0.20%)</title><rect x="1176.7" y="405" width="2.5" height="15.0" fill="rgb(228,204,52)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (15 samples, 1.53%)</title><rect x="757.3" y="453" width="18.1" height="15.0" fill="rgb(240,219,39)" rx="2" ry="2" />
<text text-anchor="" x="760.29" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2249 (1 samples, 0.10%)</title><rect x="167.9" y="325" width="1.2" height="15.0" fill="rgb(215,148,24)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_get_actions:127 (1 samples, 0.10%)</title><rect x="177.5" y="549" width="1.2" height="15.0" fill="rgb(254,130,18)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="212.5" y="437" width="1.2" height="15.0" fill="rgb(245,59,10)" rx="2" ry="2" />
<text text-anchor="" x="215.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1115.3" y="341" width="1.2" height="15.0" fill="rgb(210,139,2)" rx="2" ry="2" />
<text text-anchor="" x="1118.27" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (1 samples, 0.10%)</title><rect x="732.0" y="469" width="1.2" height="15.0" fill="rgb(237,15,42)" rx="2" ry="2" />
<text text-anchor="" x="734.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.20%)</title><rect x="169.1" y="357" width="2.4" height="15.0" fill="rgb(244,144,3)" rx="2" ry="2" />
<text text-anchor="" x="172.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1451 (1 samples, 0.10%)</title><rect x="662.1" y="597" width="1.2" height="15.0" fill="rgb(217,124,12)" rx="2" ry="2" />
<text text-anchor="" x="665.07" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2663 (2 samples, 0.20%)</title><rect x="102.8" y="1205" width="2.4" height="15.0" fill="rgb(211,23,17)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (19 samples, 1.94%)</title><rect x="362.0" y="453" width="22.9" height="15.0" fill="rgb(219,218,37)" rx="2" ry="2" />
<text text-anchor="" x="364.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (2 samples, 0.20%)</title><rect x="715.1" y="421" width="2.4" height="15.0" fill="rgb(238,37,47)" rx="2" ry="2" />
<text text-anchor="" x="718.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1071.9" y="357" width="1.2" height="15.0" fill="rgb(235,147,42)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="10.0" y="1301" width="1.2" height="15.0" fill="rgb(218,67,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_strptime_datetime:510 (1 samples, 0.10%)</title><rect x="1162.3" y="405" width="1.2" height="15.0" fill="rgb(211,39,8)" rx="2" ry="2" />
<text text-anchor="" x="1165.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account.py:name_get:678 (3 samples, 0.31%)</title><rect x="98.0" y="1253" width="3.6" height="15.0" fill="rgb(244,175,5)" rx="2" ry="2" />
<text text-anchor="" x="100.99" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:923 (18 samples, 1.84%)</title><rect x="462.0" y="533" width="21.7" height="15.0" fill="rgb(236,40,20)" rx="2" ry="2" />
<text text-anchor="" x="464.99" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="184.8" y="309" width="1.2" height="15.0" fill="rgb(228,122,19)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:230 (5 samples, 0.51%)</title><rect x="184.8" y="501" width="6.0" height="15.0" fill="rgb(226,197,39)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.10%)</title><rect x="674.1" y="533" width="1.2" height="15.0" fill="rgb(236,152,17)" rx="2" ry="2" />
<text text-anchor="" x="677.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_replace_encoding:362 (1 samples, 0.10%)</title><rect x="1176.7" y="53" width="1.2" height="15.0" fill="rgb(214,61,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="63.5" font-size="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;:change_digit:11 (1 samples, 0.10%)</title><rect x="157.0" y="405" width="1.3" height="15.0" fill="rgb(229,180,35)" rx="2" ry="2" />
<text text-anchor="" x="160.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_cache:4781 (1 samples, 0.10%)</title><rect x="1133.4" y="325" width="1.2" height="15.0" fill="rgb(250,66,39)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (1 samples, 0.10%)</title><rect x="1086.3" y="437" width="1.2" height="15.0" fill="rgb(222,101,50)" rx="2" ry="2" />
<text text-anchor="" x="1089.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:__get__:25 (1 samples, 0.10%)</title><rect x="160.7" y="245" width="1.2" height="15.0" fill="rgb(224,77,38)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="889.9" y="533" width="1.2" height="15.0" fill="rgb(241,170,35)" rx="2" ry="2" />
<text text-anchor="" x="892.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:invalidate:1053 (2 samples, 0.20%)</title><rect x="1015.2" y="517" width="2.4" height="15.0" fill="rgb(217,114,38)" rx="2" ry="2" />
<text text-anchor="" x="1018.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="499.4" y="501" width="1.2" height="15.0" fill="rgb(251,21,19)" rx="2" ry="2" />
<text text-anchor="" x="502.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:add:84 (1 samples, 0.10%)</title><rect x="678.9" y="469" width="1.3" height="15.0" fill="rgb(216,51,26)" rx="2" ry="2" />
<text text-anchor="" x="681.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (184 samples, 18.79%)</title><rect x="440.3" y="565" width="221.8" height="15.0" fill="rgb(219,27,1)" rx="2" ry="2" />
<text text-anchor="" x="443.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.10%)</title><rect x="1071.9" y="421" width="1.2" height="15.0" fill="rgb(206,217,34)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (2 samples, 0.20%)</title><rect x="739.2" y="485" width="2.4" height="15.0" fill="rgb(207,185,8)" rx="2" ry="2" />
<text text-anchor="" x="742.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1097.2" y="309" width="1.2" height="15.0" fill="rgb(251,136,29)" rx="2" ry="2" />
<text text-anchor="" x="1100.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="1153.8" y="421" width="1.2" height="15.0" fill="rgb(233,158,48)" rx="2" ry="2" />
<text text-anchor="" x="1156.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.10%)</title><rect x="877.8" y="437" width="1.2" height="15.0" fill="rgb(227,204,8)" rx="2" ry="2" />
<text text-anchor="" x="880.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.10%)</title><rect x="178.7" y="341" width="1.2" height="15.0" fill="rgb(223,125,47)" rx="2" ry="2" />
<text text-anchor="" x="181.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1146.6" y="341" width="1.2" height="15.0" fill="rgb(218,75,48)" rx="2" ry="2" />
<text text-anchor="" x="1149.61" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="1083.9" y="405" width="1.2" height="15.0" fill="rgb(210,48,52)" rx="2" ry="2" />
<text text-anchor="" x="1086.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="911.6" y="405" width="1.2" height="15.0" fill="rgb(234,159,35)" rx="2" ry="2" />
<text text-anchor="" x="914.57" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="1080.3" y="469" width="1.2" height="15.0" fill="rgb(232,37,13)" rx="2" ry="2" />
<text text-anchor="" x="1083.32" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="895.9" y="533" width="1.2" height="15.0" fill="rgb(223,85,23)" rx="2" ry="2" />
<text text-anchor="" x="898.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (2 samples, 0.20%)</title><rect x="693.4" y="501" width="2.4" height="15.0" fill="rgb(207,87,21)" rx="2" ry="2" />
<text text-anchor="" x="696.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="96.8" y="1205" width="1.2" height="15.0" fill="rgb(236,169,11)" rx="2" ry="2" />
<text text-anchor="" x="99.78" y="1215.5" font-size="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;:change_digit:10 (1 samples, 0.10%)</title><rect x="1076.7" y="389" width="1.2" height="15.0" fill="rgb(254,37,9)" rx="2" ry="2" />
<text text-anchor="" x="1079.70" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2692 (1 samples, 0.10%)</title><rect x="868.2" y="421" width="1.2" height="15.0" fill="rgb(238,33,14)" rx="2" ry="2" />
<text text-anchor="" x="871.18" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.10%)</title><rect x="706.7" y="517" width="1.2" height="15.0" fill="rgb(219,61,42)" rx="2" ry="2" />
<text text-anchor="" x="709.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (32 samples, 3.27%)</title><rect x="775.4" y="453" width="38.5" height="15.0" fill="rgb(244,66,25)" rx="2" ry="2" />
<text text-anchor="" x="778.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="920.0" y="469" width="1.2" height="15.0" fill="rgb(230,56,23)" rx="2" ry="2" />
<text text-anchor="" x="923.01" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.10%)</title><rect x="923.6" y="485" width="1.2" height="15.0" fill="rgb(233,58,7)" rx="2" ry="2" />
<text text-anchor="" x="926.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.10%)</title><rect x="465.6" y="517" width="1.2" height="15.0" fill="rgb(241,14,23)" rx="2" ry="2" />
<text text-anchor="" x="468.61" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:dispatch:693 (867 samples, 88.56%)</title><rect x="145.0" y="917" width="1045.0" height="15.0" fill="rgb(212,121,37)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:693</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:315 (2 samples, 0.20%)</title><rect x="1181.6" y="389" width="2.4" height="15.0" fill="rgb(237,138,28)" rx="2" ry="2" />
<text text-anchor="" x="1184.56" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:210 (6 samples, 0.61%)</title><rect x="882.6" y="597" width="7.3" height="15.0" fill="rgb(227,200,25)" rx="2" ry="2" />
<text text-anchor="" x="885.65" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="639.2" y="485" width="1.2" height="15.0" fill="rgb(253,191,7)" rx="2" ry="2" />
<text text-anchor="" x="642.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (13 samples, 1.33%)</title><rect x="1096.0" y="405" width="15.7" height="15.0" fill="rgb(246,206,27)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.10%)</title><rect x="917.6" y="469" width="1.2" height="15.0" fill="rgb(244,176,53)" rx="2" ry="2" />
<text text-anchor="" x="920.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (1 samples, 0.10%)</title><rect x="200.4" y="437" width="1.2" height="15.0" fill="rgb(248,22,3)" rx="2" ry="2" />
<text text-anchor="" x="203.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.10%)</title><rect x="157.0" y="421" width="1.3" height="15.0" fill="rgb(230,118,50)" rx="2" ry="2" />
<text text-anchor="" x="160.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.10%)</title><rect x="160.7" y="357" width="1.2" height="15.0" fill="rgb(230,94,48)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1271 (1 samples, 0.10%)</title><rect x="177.5" y="485" width="1.2" height="15.0" fill="rgb(240,54,43)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1188.8" y="517" width="1.2" height="15.0" fill="rgb(250,66,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="664.5" y="533" width="1.2" height="15.0" fill="rgb(206,110,46)" rx="2" ry="2" />
<text text-anchor="" x="667.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3388 (1 samples, 0.10%)</title><rect x="1080.3" y="565" width="1.2" height="15.0" fill="rgb(222,211,41)" rx="2" ry="2" />
<text text-anchor="" x="1083.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__iter__:950 (1 samples, 0.10%)</title><rect x="717.5" y="437" width="1.2" height="15.0" fill="rgb(238,151,14)" rx="2" ry="2" />
<text text-anchor="" x="720.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="944.1" y="469" width="1.2" height="15.0" fill="rgb(243,21,53)" rx="2" ry="2" />
<text text-anchor="" x="947.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (14 samples, 1.43%)</title><rect x="1138.2" y="485" width="16.8" height="15.0" fill="rgb(244,178,38)" rx="2" ry="2" />
<text text-anchor="" x="1141.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="881.4" y="517" width="1.2" height="15.0" fill="rgb(238,75,9)" rx="2" ry="2" />
<text text-anchor="" x="884.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.10%)</title><rect x="1164.7" y="389" width="1.2" height="15.0" fill="rgb(210,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1167.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.10%)</title><rect x="1069.5" y="389" width="1.2" height="15.0" fill="rgb(245,95,41)" rx="2" ry="2" />
<text text-anchor="" x="1072.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (3 samples, 0.31%)</title><rect x="233.0" y="453" width="3.6" height="15.0" fill="rgb(252,185,22)" rx="2" ry="2" />
<text text-anchor="" x="235.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4867 (7 samples, 0.72%)</title><rect x="733.2" y="533" width="8.4" height="15.0" fill="rgb(221,111,27)" rx="2" ry="2" />
<text text-anchor="" x="736.19" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:380 (1 samples, 0.10%)</title><rect x="1128.5" y="485" width="1.2" height="15.0" fill="rgb(242,139,50)" rx="2" ry="2" />
<text text-anchor="" x="1131.53" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="105.2" y="1237" width="1.2" height="15.0" fill="rgb(219,97,39)" rx="2" ry="2" />
<text text-anchor="" x="108.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (149 samples, 15.22%)</title><rect x="898.3" y="581" width="179.6" height="15.0" fill="rgb(215,175,21)" rx="2" ry="2" />
<text text-anchor="" x="901.31" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/ad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="911.6" y="389" width="1.2" height="15.0" fill="rgb(248,229,40)" rx="2" ry="2" />
<text text-anchor="" x="914.57" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4767 (1 samples, 0.10%)</title><rect x="663.3" y="581" width="1.2" height="15.0" fill="rgb(236,28,22)" rx="2" ry="2" />
<text text-anchor="" x="666.28" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2611 (1 samples, 0.10%)</title><rect x="104.0" y="1189" width="1.2" height="15.0" fill="rgb(225,175,30)" rx="2" ry="2" />
<text text-anchor="" x="107.01" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2249 (1 samples, 0.10%)</title><rect x="145.0" y="517" width="1.2" height="15.0" fill="rgb(240,160,28)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3322 (4 samples, 0.41%)</title><rect x="1179.2" y="517" width="4.8" height="15.0" fill="rgb(238,27,14)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2600 (1 samples, 0.10%)</title><rect x="689.8" y="549" width="1.2" height="15.0" fill="rgb(209,49,46)" rx="2" ry="2" />
<text text-anchor="" x="692.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="148.6" y="453" width="1.2" height="15.0" fill="rgb(250,66,14)" rx="2" ry="2" />
<text text-anchor="" x="151.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (24 samples, 2.45%)</title><rect x="906.8" y="517" width="28.9" height="15.0" fill="rgb(254,112,6)" rx="2" ry="2" />
<text text-anchor="" x="909.75" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1046 (1 samples, 0.10%)</title><rect x="10.0" y="1237" width="1.2" height="15.0" fill="rgb(207,109,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.10%)</title><rect x="1071.9" y="405" width="1.2" height="15.0" fill="rgb(207,162,4)" rx="2" ry="2" />
<text text-anchor="" x="1074.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.10%)</title><rect x="1171.9" y="549" width="1.2" height="15.0" fill="rgb(221,1,4)" rx="2" ry="2" />
<text text-anchor="" x="1174.92" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.10%)</title><rect x="747.7" y="485" width="1.2" height="15.0" fill="rgb(206,103,38)" rx="2" ry="2" />
<text text-anchor="" x="750.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (2 samples, 0.20%)</title><rect x="222.1" y="453" width="2.4" height="15.0" fill="rgb(249,119,10)" rx="2" ry="2" />
<text text-anchor="" x="225.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (3 samples, 0.31%)</title><rect x="98.0" y="1237" width="3.6" height="15.0" fill="rgb(218,28,40)" rx="2" ry="2" />
<text text-anchor="" x="100.99" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:553 (1 samples, 0.10%)</title><rect x="683.8" y="437" width="1.2" height="15.0" fill="rgb(233,29,3)" rx="2" ry="2" />
<text text-anchor="" x="686.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (3 samples, 0.31%)</title><rect x="179.9" y="453" width="3.7" height="15.0" fill="rgb(226,121,53)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="100.4" y="1189" width="1.2" height="15.0" fill="rgb(223,177,10)" rx="2" ry="2" />
<text text-anchor="" x="103.40" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3467 (1 samples, 0.10%)</title><rect x="701.8" y="549" width="1.3" height="15.0" fill="rgb(231,41,14)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (3 samples, 0.31%)</title><rect x="287.2" y="469" width="3.6" height="15.0" fill="rgb(221,131,13)" rx="2" ry="2" />
<text text-anchor="" x="290.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="1109.2" y="341" width="1.2" height="15.0" fill="rgb(251,3,17)" rx="2" ry="2" />
<text text-anchor="" x="1112.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;lambda&gt;:4358 (1 samples, 0.10%)</title><rect x="1090.0" y="373" width="1.2" height="15.0" fill="rgb(214,150,3)" rx="2" ry="2" />
<text text-anchor="" x="1092.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__new__:735 (1 samples, 0.10%)</title><rect x="917.6" y="453" width="1.2" height="15.0" fill="rgb(220,171,20)" rx="2" ry="2" />
<text text-anchor="" x="920.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.20%)</title><rect x="481.3" y="517" width="2.4" height="15.0" fill="rgb(251,80,22)" rx="2" ry="2" />
<text text-anchor="" x="484.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.20%)</title><rect x="274.0" y="453" width="2.4" height="15.0" fill="rgb(239,35,43)" rx="2" ry="2" />
<text text-anchor="" x="276.96" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.10%)</title><rect x="916.4" y="485" width="1.2" height="15.0" fill="rgb(249,86,44)" rx="2" ry="2" />
<text text-anchor="" x="919.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (2 samples, 0.20%)</title><rect x="1096.0" y="341" width="2.4" height="15.0" fill="rgb(226,59,35)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="1024.9" y="469" width="1.2" height="15.0" fill="rgb(210,1,21)" rx="2" ry="2" />
<text text-anchor="" x="1027.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_getlang:31 (1 samples, 0.10%)</title><rect x="1176.7" y="117" width="1.2" height="15.0" fill="rgb(216,89,20)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.10%)</title><rect x="1090.0" y="405" width="1.2" height="15.0" fill="rgb(242,190,17)" rx="2" ry="2" />
<text text-anchor="" x="1092.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="106.4" y="1221" width="1.2" height="15.0" fill="rgb(244,212,39)" rx="2" ry="2" />
<text text-anchor="" x="109.42" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (2 samples, 0.20%)</title><rect x="447.5" y="533" width="2.4" height="15.0" fill="rgb(225,96,13)" rx="2" ry="2" />
<text text-anchor="" x="450.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:382 (1 samples, 0.10%)</title><rect x="1130.9" y="485" width="1.2" height="15.0" fill="rgb(222,122,44)" rx="2" ry="2" />
<text text-anchor="" x="1133.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2532 (1 samples, 0.10%)</title><rect x="159.5" y="325" width="1.2" height="15.0" fill="rgb(221,15,45)" rx="2" ry="2" />
<text text-anchor="" x="162.46" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1743 (5 samples, 0.51%)</title><rect x="668.1" y="613" width="6.0" height="15.0" fill="rgb(243,184,26)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.10%)</title><rect x="342.7" y="421" width="1.2" height="15.0" fill="rgb(217,16,0)" rx="2" ry="2" />
<text text-anchor="" x="345.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:select_from_where:446 (2 samples, 0.20%)</title><rect x="715.1" y="357" width="2.4" height="15.0" fill="rgb(217,225,38)" rx="2" ry="2" />
<text text-anchor="" x="718.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.10%)</title><rect x="903.1" y="469" width="1.2" height="15.0" fill="rgb(246,148,29)" rx="2" ry="2" />
<text text-anchor="" x="906.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.10%)</title><rect x="177.5" y="469" width="1.2" height="15.0" fill="rgb(226,227,46)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="175.1" y="341" width="1.2" height="15.0" fill="rgb(210,22,31)" rx="2" ry="2" />
<text text-anchor="" x="178.13" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.20%)</title><rect x="1088.8" y="469" width="2.4" height="15.0" fill="rgb(252,65,35)" rx="2" ry="2" />
<text text-anchor="" x="1091.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (4 samples, 0.41%)</title><rect x="813.9" y="485" width="4.9" height="15.0" fill="rgb(206,162,4)" rx="2" ry="2" />
<text text-anchor="" x="816.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:_call_function:342 (867 samples, 88.56%)</title><rect x="145.0" y="901" width="1045.0" height="15.0" fill="rgb(238,6,32)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:_call_function:342</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (13 samples, 1.33%)</title><rect x="1096.0" y="421" width="15.7" height="15.0" fill="rgb(246,88,41)" rx="2" ry="2" />
<text text-anchor="" x="1098.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (3 samples, 0.31%)</title><rect x="1068.3" y="453" width="3.6" height="15.0" fill="rgb(212,186,17)" rx="2" ry="2" />
<text text-anchor="" x="1071.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="10.0" y="1189" width="1.2" height="15.0" fill="rgb(235,16,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_check_qorder:3580 (1 samples, 0.10%)</title><rect x="719.9" y="453" width="1.2" height="15.0" fill="rgb(234,194,16)" rx="2" ry="2" />
<text text-anchor="" x="722.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/_strptime.py:_strptime:499 (1 samples, 0.10%)</title><rect x="1176.7" y="133" width="1.2" height="15.0" fill="rgb(205,120,9)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/threading.py:_bootstrap:882 (868 samples, 88.66%)</title><rect x="143.8" y="1301" width="1046.2" height="15.0" fill="rgb(236,21,49)" rx="2" ry="2" />
<text text-anchor="" x="146.79" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap:882</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.10%)</title><rect x="716.3" y="341" width="1.2" height="15.0" fill="rgb(219,49,49)" rx="2" ry="2" />
<text text-anchor="" x="719.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.10%)</title><rect x="1118.9" y="405" width="1.2" height="15.0" fill="rgb(206,223,22)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (14 samples, 1.43%)</title><rect x="1111.7" y="453" width="16.8" height="15.0" fill="rgb(253,205,3)" rx="2" ry="2" />
<text text-anchor="" x="1114.65" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2625 (1 samples, 0.10%)</title><rect x="1028.5" y="453" width="1.2" height="15.0" fill="rgb(250,77,52)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/__init__.py:registry:76 (1 samples, 0.10%)</title><rect x="1082.7" y="485" width="1.2" height="15.0" fill="rgb(206,5,4)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1067.1" y="421" width="1.2" height="15.0" fill="rgb(205,160,11)" rx="2" ry="2" />
<text text-anchor="" x="1070.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__hash__:778 (1 samples, 0.10%)</title><rect x="1169.5" y="517" width="1.2" height="15.0" fill="rgb(220,49,22)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (4 samples, 0.41%)</title><rect x="1179.2" y="501" width="4.8" height="15.0" fill="rgb(229,191,54)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:union:4700 (3 samples, 0.31%)</title><rect x="1011.6" y="469" width="3.6" height="15.0" fill="rgb(208,35,9)" rx="2" ry="2" />
<text text-anchor="" x="1014.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.10%)</title><rect x="152.2" y="421" width="1.2" height="15.0" fill="rgb(210,112,32)" rx="2" ry="2" />
<text text-anchor="" x="155.23" y="431.5" font-size="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;decorator-gen-20&gt;:check:2 (1 samples, 0.10%)</title><rect x="916.4" y="469" width="1.2" height="15.0" fill="rgb(243,180,7)" rx="2" ry="2" />
<text text-anchor="" x="919.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.10%)</title><rect x="148.6" y="501" width="1.2" height="15.0" fill="rgb(227,221,24)" rx="2" ry="2" />
<text text-anchor="" x="151.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4341 (2 samples, 0.20%)</title><rect x="754.9" y="453" width="2.4" height="15.0" fill="rgb(232,37,32)" rx="2" ry="2" />
<text text-anchor="" x="757.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1445 (389 samples, 39.73%)</title><rect x="193.2" y="597" width="468.9" height="15.0" fill="rgb(219,190,2)" rx="2" ry="2" />
<text text-anchor="" x="196.21" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_compute:40 (1 samples, 0.10%)</title><rect x="1091.2" y="485" width="1.2" height="15.0" fill="rgb(227,131,13)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="495.5" font-size="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;:change_digit:11 (1 samples, 0.10%)</title><rect x="871.8" y="373" width="1.2" height="15.0" fill="rgb(232,112,25)" rx="2" ry="2" />
<text text-anchor="" x="874.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.20%)</title><rect x="1124.9" y="389" width="2.4" height="15.0" fill="rgb(221,194,10)" rx="2" ry="2" />
<text text-anchor="" x="1127.91" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.10%)</title><rect x="108.8" y="1173" width="1.2" height="15.0" fill="rgb(210,40,19)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="904.3" y="501" width="1.2" height="15.0" fill="rgb(250,81,19)" rx="2" ry="2" />
<text text-anchor="" x="907.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:956 (1 samples, 0.10%)</title><rect x="1163.5" y="453" width="1.2" height="15.0" fill="rgb(240,87,15)" rx="2" ry="2" />
<text text-anchor="" x="1166.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="672.9" y="533" width="1.2" height="15.0" fill="rgb(248,171,52)" rx="2" ry="2" />
<text text-anchor="" x="675.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="1133.4" y="373" width="1.2" height="15.0" fill="rgb(254,119,49)" rx="2" ry="2" />
<text text-anchor="" x="1136.35" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (4 samples, 0.41%)</title><rect x="525.9" y="485" width="4.8" height="15.0" fill="rgb(205,8,40)" rx="2" ry="2" />
<text text-anchor="" x="528.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (22 samples, 2.25%)</title><rect x="592.2" y="517" width="26.5" height="15.0" fill="rgb(240,21,31)" rx="2" ry="2" />
<text text-anchor="" x="595.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_kw:934 (867 samples, 88.56%)</title><rect x="145.0" y="821" width="1045.0" height="15.0" fill="rgb(205,6,47)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_kw:934</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1526 (1 samples, 0.10%)</title><rect x="1143.0" y="325" width="1.2" height="15.0" fill="rgb(212,117,53)" rx="2" ry="2" />
<text text-anchor="" x="1145.99" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (3 samples, 0.31%)</title><rect x="102.8" y="1253" width="3.6" height="15.0" fill="rgb(218,21,24)" rx="2" ry="2" />
<text text-anchor="" x="105.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (4 samples, 0.41%)</title><rect x="963.4" y="437" width="4.8" height="15.0" fill="rgb(221,72,13)" rx="2" ry="2" />
<text text-anchor="" x="966.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.10%)</title><rect x="343.9" y="437" width="1.2" height="15.0" fill="rgb(217,123,11)" rx="2" ry="2" />
<text text-anchor="" x="346.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:129 (1 samples, 0.10%)</title><rect x="716.3" y="309" width="1.2" height="15.0" fill="rgb(232,149,11)" rx="2" ry="2" />
<text text-anchor="" x="719.31" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="176.3" y="533" width="1.2" height="15.0" fill="rgb(235,33,43)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.10%)</title><rect x="160.7" y="197" width="1.2" height="15.0" fill="rgb(228,175,37)" rx="2" ry="2" />
<text text-anchor="" x="163.66" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:__call__:937 (867 samples, 88.56%)</title><rect x="145.0" y="853" width="1045.0" height="15.0" fill="rgb(236,121,29)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:937</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (9 samples, 0.92%)</title><rect x="1155.0" y="485" width="10.9" height="15.0" fill="rgb(222,102,26)" rx="2" ry="2" />
<text text-anchor="" x="1158.05" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.10%)</title><rect x="744.0" y="517" width="1.2" height="15.0" fill="rgb(250,145,36)" rx="2" ry="2" />
<text text-anchor="" x="747.03" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (3 samples, 0.31%)</title><rect x="738.0" y="517" width="3.6" height="15.0" fill="rgb(232,140,5)" rx="2" ry="2" />
<text text-anchor="" x="741.01" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4862 (1 samples, 0.10%)</title><rect x="1173.1" y="565" width="1.2" height="15.0" fill="rgb(214,207,13)" rx="2" ry="2" />
<text text-anchor="" x="1176.13" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="159.5" y="309" width="1.2" height="15.0" fill="rgb(226,212,3)" rx="2" ry="2" />
<text text-anchor="" x="162.46" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:write:3094 (2 samples, 0.20%)</title><rect x="1176.7" y="389" width="2.5" height="15.0" fill="rgb(205,175,32)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2707 (2 samples, 0.20%)</title><rect x="869.4" y="437" width="2.4" height="15.0" fill="rgb(207,40,45)" rx="2" ry="2" />
<text text-anchor="" x="872.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/query.py:__init__:65 (1 samples, 0.10%)</title><rect x="195.6" y="437" width="1.2" height="15.0" fill="rgb(213,109,52)" rx="2" ry="2" />
<text text-anchor="" x="198.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="334.2" y="437" width="2.4" height="15.0" fill="rgb(249,38,17)" rx="2" ry="2" />
<text text-anchor="" x="337.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:966 (1 samples, 0.10%)</title><rect x="1177.9" y="309" width="1.3" height="15.0" fill="rgb(225,76,25)" rx="2" ry="2" />
<text text-anchor="" x="1180.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.10%)</title><rect x="1180.4" y="373" width="1.2" height="15.0" fill="rgb(207,25,20)" rx="2" ry="2" />
<text text-anchor="" x="1183.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.10%)</title><rect x="912.8" y="389" width="1.2" height="15.0" fill="rgb(230,65,50)" rx="2" ry="2" />
<text text-anchor="" x="915.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="328.2" y="453" width="1.2" height="15.0" fill="rgb(253,196,8)" rx="2" ry="2" />
<text text-anchor="" x="331.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.10%)</title><rect x="316.1" y="453" width="1.3" height="15.0" fill="rgb(247,39,42)" rx="2" ry="2" />
<text text-anchor="" x="319.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (1 samples, 0.10%)</title><rect x="944.1" y="517" width="1.2" height="15.0" fill="rgb(250,193,11)" rx="2" ry="2" />
<text text-anchor="" x="947.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (15 samples, 1.53%)</title><rect x="1034.5" y="421" width="18.1" height="15.0" fill="rgb(233,224,30)" rx="2" ry="2" />
<text text-anchor="" x="1037.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.10%)</title><rect x="1091.2" y="421" width="1.2" height="15.0" fill="rgb(211,65,10)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (3 samples, 0.31%)</title><rect x="883.9" y="565" width="3.6" height="15.0" fill="rgb(232,34,33)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="935.7" y="501" width="1.2" height="15.0" fill="rgb(224,91,12)" rx="2" ry="2" />
<text text-anchor="" x="938.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/sale/models/account_invoice.py:action_invoice_paid:48 (9 samples, 0.92%)</title><rect x="179.9" y="533" width="10.9" height="15.0" fill="rgb(226,88,23)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.10%)</title><rect x="177.5" y="517" width="1.2" height="15.0" fill="rgb(220,127,30)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:modified:4867 (5 samples, 0.51%)</title><rect x="938.1" y="533" width="6.0" height="15.0" fill="rgb(229,71,25)" rx="2" ry="2" />
<text text-anchor="" x="941.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2431 (1 samples, 0.10%)</title><rect x="682.6" y="517" width="1.2" height="15.0" fill="rgb(252,218,40)" rx="2" ry="2" />
<text text-anchor="" x="685.56" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (6 samples, 0.61%)</title><rect x="375.2" y="421" width="7.2" height="15.0" fill="rgb(227,15,4)" rx="2" ry="2" />
<text text-anchor="" x="378.21" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.10%)</title><rect x="1188.8" y="501" width="1.2" height="15.0" fill="rgb(245,24,12)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:686 (3 samples, 0.31%)</title><rect x="883.9" y="469" width="3.6" height="15.0" fill="rgb(219,224,16)" rx="2" ry="2" />
<text text-anchor="" x="886.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.10%)</title><rect x="169.1" y="325" width="1.2" height="15.0" fill="rgb(244,33,54)" rx="2" ry="2" />
<text text-anchor="" x="172.10" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="664.5" y="549" width="1.2" height="15.0" fill="rgb(247,60,41)" rx="2" ry="2" />
<text text-anchor="" x="667.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.10%)</title><rect x="101.6" y="1253" width="1.2" height="15.0" fill="rgb(223,110,16)" rx="2" ry="2" />
<text text-anchor="" x="104.60" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/payment/models/account_payment.py:create:34 (1 samples, 0.10%)</title><rect x="1188.8" y="693" width="1.2" height="15.0" fill="rgb(207,37,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (2 samples, 0.20%)</title><rect x="589.8" y="485" width="2.4" height="15.0" fill="rgb(253,187,10)" rx="2" ry="2" />
<text text-anchor="" x="592.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.10%)</title><rect x="145.0" y="421" width="1.2" height="15.0" fill="rgb(219,63,48)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.10%)</title><rect x="1091.2" y="405" width="1.2" height="15.0" fill="rgb(233,162,4)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_generate_order_by_inner:3741 (1 samples, 0.10%)</title><rect x="719.9" y="469" width="1.2" height="15.0" fill="rgb(223,215,21)" rx="2" ry="2" />
<text text-anchor="" x="722.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2596 (1 samples, 0.10%)</title><rect x="163.1" y="293" width="1.2" height="15.0" fill="rgb(254,153,24)" rx="2" ry="2" />
<text text-anchor="" x="166.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (3 samples, 0.31%)</title><rect x="179.9" y="421" width="3.7" height="15.0" fill="rgb(219,179,21)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="431.5" font-size="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;decorator-gen-34&gt;:get_field_help:2 (1 samples, 0.10%)</title><rect x="1188.8" y="581" width="1.2" height="15.0" fill="rgb(243,169,3)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency_and_amount:512 (1 samples, 0.10%)</title><rect x="1079.1" y="517" width="1.2" height="15.0" fill="rgb(229,102,21)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (66 samples, 6.74%)</title><rect x="12.4" y="1301" width="79.6" height="15.0" fill="rgb(251,116,41)" rx="2" ry="2" />
<text text-anchor="" x="15.41" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.10%)</title><rect x="916.4" y="453" width="1.2" height="15.0" fill="rgb(232,186,30)" rx="2" ry="2" />
<text text-anchor="" x="919.39" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (4 samples, 0.41%)</title><rect x="186.0" y="373" width="4.8" height="15.0" fill="rgb(220,139,42)" rx="2" ry="2" />
<text text-anchor="" x="188.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency:503 (41 samples, 4.19%)</title><rect x="1028.5" y="517" width="49.4" height="15.0" fill="rgb(220,29,12)" rx="2" ry="2" />
<text text-anchor="" x="1031.49" y="527.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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (36 samples, 3.68%)</title><rect x="968.2" y="453" width="43.4" height="15.0" fill="rgb(248,227,31)" rx="2" ry="2" />
<text text-anchor="" x="971.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.10%)</title><rect x="936.9" y="485" width="1.2" height="15.0" fill="rgb(227,123,3)" rx="2" ry="2" />
<text text-anchor="" x="939.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.10%)</title><rect x="177.5" y="501" width="1.2" height="15.0" fill="rgb(214,79,25)" rx="2" ry="2" />
<text text-anchor="" x="180.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.10%)</title><rect x="1064.6" y="405" width="1.3" height="15.0" fill="rgb(246,204,3)" rx="2" ry="2" />
<text text-anchor="" x="1067.65" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (6 samples, 0.61%)</title><rect x="169.1" y="389" width="7.2" height="15.0" fill="rgb(211,161,15)" rx="2" ry="2" />
<text text-anchor="" x="172.10" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.10%)</title><rect x="701.8" y="517" width="1.3" height="15.0" fill="rgb(251,192,14)" rx="2" ry="2" />
<text text-anchor="" x="704.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (68 samples, 6.95%)</title><rect x="1085.1" y="581" width="82.0" height="15.0" fill="rgb(207,165,33)" rx="2" ry="2" />
<text text-anchor="" x="1088.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.10%)</title><rect x="10.0" y="1093" width="1.2" height="15.0" fill="rgb(227,0,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.10%)</title><rect x="923.6" y="469" width="1.2" height="15.0" fill="rgb(252,2,22)" rx="2" ry="2" />
<text text-anchor="" x="926.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="170.3" y="293" width="1.2" height="15.0" fill="rgb(238,133,42)" rx="2" ry="2" />
<text text-anchor="" x="173.31" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.10%)</title><rect x="1181.6" y="325" width="1.2" height="15.0" fill="rgb(228,22,31)" rx="2" ry="2" />
<text text-anchor="" x="1184.56" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:231 (1 samples, 0.10%)</title><rect x="1187.6" y="629" width="1.2" height="15.0" fill="rgb(240,205,13)" rx="2" ry="2" />
<text text-anchor="" x="1190.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.10%)</title><rect x="1175.5" y="485" width="1.2" height="15.0" fill="rgb(235,131,29)" rx="2" ry="2" />
<text text-anchor="" x="1178.54" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:invalidate:1062 (3 samples, 0.31%)</title><rect x="818.8" y="517" width="3.6" height="15.0" fill="rgb(238,11,6)" rx="2" ry="2" />
<text text-anchor="" x="821.76" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:237 (2 samples, 0.20%)</title><rect x="1176.7" y="517" width="2.5" height="15.0" fill="rgb(244,204,21)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (2 samples, 0.20%)</title><rect x="1026.1" y="485" width="2.4" height="15.0" fill="rgb(210,23,17)" rx="2" ry="2" />
<text text-anchor="" x="1029.08" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_replace_encoding:362 (1 samples, 0.10%)</title><rect x="1161.1" y="309" width="1.2" height="15.0" fill="rgb(233,15,17)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/mail/models/mail_thread.py:message_track:513 (1 samples, 0.10%)</title><rect x="183.6" y="469" width="1.2" height="15.0" fill="rgb(210,212,14)" rx="2" ry="2" />
<text text-anchor="" x="186.56" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (3 samples, 0.31%)</title><rect x="236.6" y="453" width="3.6" height="15.0" fill="rgb(233,8,25)" rx="2" ry="2" />
<text text-anchor="" x="239.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (17 samples, 1.74%)</title><rect x="155.8" y="501" width="20.5" height="15.0" fill="rgb(242,3,33)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="1137.0" y="437" width="1.2" height="15.0" fill="rgb(212,29,32)" rx="2" ry="2" />
<text text-anchor="" x="1139.97" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="476.5" y="485" width="1.2" height="15.0" fill="rgb(228,10,19)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.10%)</title><rect x="476.5" y="501" width="1.2" height="15.0" fill="rgb(236,215,41)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.10%)</title><rect x="680.2" y="549" width="1.2" height="15.0" fill="rgb(222,200,10)" rx="2" ry="2" />
<text text-anchor="" x="683.15" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:313 (2 samples, 0.20%)</title><rect x="1179.2" y="389" width="2.4" height="15.0" fill="rgb(228,152,16)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (5 samples, 0.51%)</title><rect x="184.8" y="469" width="6.0" height="15.0" fill="rgb(228,219,46)" rx="2" ry="2" />
<text text-anchor="" x="187.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (2 samples, 0.20%)</title><rect x="490.9" y="517" width="2.4" height="15.0" fill="rgb(211,113,9)" rx="2" ry="2" />
<text text-anchor="" x="493.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.10%)</title><rect x="161.9" y="229" width="1.2" height="15.0" fill="rgb(234,147,22)" rx="2" ry="2" />
<text text-anchor="" x="164.87" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.10%)</title><rect x="1176.7" y="277" width="1.2" height="15.0" fill="rgb(249,94,27)" rx="2" ry="2" />
<text text-anchor="" x="1179.74" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (4 samples, 0.41%)</title><rect x="1179.2" y="421" width="4.8" height="15.0" fill="rgb(233,158,52)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.10%)</title><rect x="1127.3" y="405" width="1.2" height="15.0" fill="rgb(218,112,16)" rx="2" ry="2" />
<text text-anchor="" x="1130.32" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.10%)</title><rect x="108.8" y="1221" width="1.2" height="15.0" fill="rgb(216,79,5)" rx="2" ry="2" />
<text text-anchor="" x="111.84" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.10%)</title><rect x="910.4" y="389" width="1.2" height="15.0" fill="rgb(225,55,17)" rx="2" ry="2" />
<text text-anchor="" x="913.37" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.10%)</title><rect x="741.6" y="517" width="1.2" height="15.0" fill="rgb(240,91,5)" rx="2" ry="2" />
<text text-anchor="" x="744.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:89 (1 samples, 0.10%)</title><rect x="1188.8" y="565" width="1.2" height="15.0" fill="rgb(226,199,37)" rx="2" ry="2" />
<text text-anchor="" x="1191.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:597 (1 samples, 0.10%)</title><rect x="910.4" y="357" width="1.2" height="15.0" fill="rgb(219,73,38)" rx="2" ry="2" />
<text text-anchor="" x="913.37" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:&lt;lambda&gt;:2240 (10 samples, 1.02%)</title><rect x="264.3" y="485" width="12.1" height="15.0" fill="rgb(238,160,32)" rx="2" ry="2" />
<text text-anchor="" x="267.32" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.10%)</title><rect x="905.5" y="501" width="1.3" height="15.0" fill="rgb(212,197,48)" rx="2" ry="2" />
<text text-anchor="" x="908.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3806 (3 samples, 0.31%)</title><rect x="728.4" y="501" width="3.6" height="15.0" fill="rgb(208,35,29)" rx="2" ry="2" />
<text text-anchor="" x="731.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.41%)</title><rect x="1179.2" y="469" width="4.8" height="15.0" fill="rgb(228,206,3)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3534 (29 samples, 2.96%)</title><rect x="155.8" y="597" width="35.0" height="15.0" fill="rgb(240,42,9)" rx="2" ry="2" />
<text text-anchor="" x="158.84" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208 (867 samples, 88.56%)</title><rect x="145.0" y="933" width="1045.0" height="15.0" fill="rgb(206,146,33)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (3 samples, 0.31%)</title><rect x="179.9" y="405" width="3.7" height="15.0" fill="rgb(206,150,43)" rx="2" ry="2" />
<text text-anchor="" x="182.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (10 samples, 1.02%)</title><rect x="580.1" y="517" width="12.1" height="15.0" fill="rgb(213,128,33)" rx="2" ry="2" />
<text text-anchor="" x="583.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_in_cache_without:4798 (1 samples, 0.10%)</title><rect x="193.2" y="533" width="1.2" height="15.0" fill="rgb(224,25,16)" rx="2" ry="2" />
<text text-anchor="" x="196.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:389 (1 samples, 0.10%)</title><rect x="1135.8" y="485" width="1.2" height="15.0" fill="rgb(224,166,31)" rx="2" ry="2" />
<text text-anchor="" x="1138.76" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.10%)</title><rect x="10.0" y="1253" width="1.2" height="15.0" fill="rgb(236,136,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_parse_localename:483 (1 samples, 0.10%)</title><rect x="1161.1" y="341" width="1.2" height="15.0" fill="rgb(237,179,1)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:normalize:440 (1 samples, 0.10%)</title><rect x="1161.1" y="325" width="1.2" height="15.0" fill="rgb(241,199,22)" rx="2" ry="2" />
<text text-anchor="" x="1164.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (204 samples, 20.84%)</title><rect x="193.2" y="581" width="245.9" height="15.0" fill="rgb(223,144,5)" rx="2" ry="2" />
<text text-anchor="" x="196.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.10%)</title><rect x="213.7" y="453" width="1.2" height="15.0" fill="rgb(233,97,46)" rx="2" ry="2" />
<text text-anchor="" x="216.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.10%)</title><rect x="641.6" y="501" width="1.2" height="15.0" fill="rgb(217,98,36)" rx="2" ry="2" />
<text text-anchor="" x="644.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.10%)</title><rect x="1024.9" y="485" width="1.2" height="15.0" fill="rgb(223,217,27)" rx="2" ry="2" />
<text text-anchor="" x="1027.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:read:2249 (1 samples, 0.10%)</title><rect x="1091.2" y="389" width="1.2" height="15.0" fill="rgb(207,167,29)" rx="2" ry="2" />
<text text-anchor="" x="1094.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="187.2" y="357" width="1.2" height="15.0" fill="rgb(219,15,1)" rx="2" ry="2" />
<text text-anchor="" x="190.18" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1277 (1 samples, 0.10%)</title><rect x="1092.4" y="453" width="1.2" height="15.0" fill="rgb(253,228,34)" rx="2" ry="2" />
<text text-anchor="" x="1095.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (5 samples, 0.51%)</title><rect x="668.1" y="597" width="6.0" height="15.0" fill="rgb(233,201,14)" rx="2" ry="2" />
<text text-anchor="" x="671.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (11 samples, 1.12%)</title><rect x="1140.6" y="421" width="13.2" height="15.0" fill="rgb(233,159,30)" rx="2" ry="2" />
<text text-anchor="" x="1143.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.10%)</title><rect x="1120.1" y="405" width="1.2" height="15.0" fill="rgb(223,73,33)" rx="2" ry="2" />
<text text-anchor="" x="1123.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.10%)</title><rect x="689.8" y="517" width="1.2" height="15.0" fill="rgb(227,15,46)" rx="2" ry="2" />
<text text-anchor="" x="692.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.10%)</title><rect x="167.9" y="373" width="1.2" height="15.0" fill="rgb(250,78,5)" rx="2" ry="2" />
<text text-anchor="" x="170.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2689 (1 samples, 0.10%)</title><rect x="867.0" y="437" width="1.2" height="15.0" fill="rgb(229,15,2)" rx="2" ry="2" />
<text text-anchor="" x="869.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.20%)</title><rect x="146.2" y="421" width="2.4" height="15.0" fill="rgb(214,165,25)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.10%)</title><rect x="10.0" y="1269" width="1.2" height="15.0" fill="rgb(239,220,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (84 samples, 8.58%)</title><rect x="560.8" y="533" width="101.3" height="15.0" fill="rgb(227,90,51)" rx="2" ry="2" />
<text text-anchor="" x="563.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.20%)</title><rect x="876.6" y="453" width="2.4" height="15.0" fill="rgb(228,225,0)" rx="2" ry="2" />
<text text-anchor="" x="879.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1273 (1 samples, 0.10%)</title><rect x="1186.4" y="485" width="1.2" height="15.0" fill="rgb(227,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (4 samples, 0.41%)</title><rect x="957.4" y="437" width="4.8" height="15.0" fill="rgb(227,68,20)" rx="2" ry="2" />
<text text-anchor="" x="960.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.10%)</title><rect x="158.3" y="309" width="1.2" height="15.0" fill="rgb(205,54,31)" rx="2" ry="2" />
<text text-anchor="" x="161.25" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1035 (864 samples, 88.25%)</title><rect x="145.0" y="645" width="1041.4" height="15.0" fill="rgb(248,155,44)" rx="2" ry="2" />
<text text-anchor="" x="147.99" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1035</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.10%)</title><rect x="1012.8" y="437" width="1.2" height="15.0" fill="rgb(225,117,13)" rx="2" ry="2" />
<text text-anchor="" x="1015.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/threading.py:current_thread:1232 (1 samples, 0.10%)</title><rect x="1082.7" y="453" width="1.2" height="15.0" fill="rgb(213,194,47)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/bus/models/bus.py:run:181 (1 samples, 0.10%)</title><rect x="143.8" y="1253" width="1.2" height="15.0" fill="rgb(229,52,41)" rx="2" ry="2" />
<text text-anchor="" x="146.79" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmous
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment