function tracePathWith4(path) {
console.log('path', path)
var pathLength = path.node().getTotalLength();
var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
text.setAttribute('font-size', '20px');
text.setAttribute('font-family', 'sans-serif');
text.setAttribute('x', 0);
text.setAttribute('y', 0);
text.setAttribute('text-anchor', 'start');
text.setAttribute('dominant-baseline', 'middle');
text.textContent = 'r'.repeat(pathLength);
return text;
}