mapa5 = {
const height = 400;
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height]);
const proj = d3.geoMercator().rotate([0, 180]).fitExtent([[0, 0], [width/2, height]], topojson.feature(br, br.objects.uf));
const path = d3.geoPath(proj);
svg.append("path")
.datum(topojson.mesh(br, br.objects.uf, (a,b) => a === b))
.attr("stroke", "none")
.attr("stroke-linejoin", "round")
.attr("stroke-width", 1)
.attr("fill", "#ddd")
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(br, br.objects.uf, (a,b) => a !== b))
.attr("stroke", "white")
.attr("stroke-linejoin", "round")
.attr("stroke-width", 1.2)
.attr("fill", "none")
.attr("d", path);
return svg.node();
}