QHTTPQTALS2XJVJJ6CFOM5TKE7X3JJC73R465P2D6UCXD5BIIVXQC
def rounded_rectangle(draw, box, radius, color):
l, t, r, b = box
x = radius * 2
z = radius
draw.ellipse((l, t, l + x, t + x), color)
draw.ellipse((r - x, t, r, t + x), color)
draw.ellipse((l, b - x, l + x, b), color)
draw.ellipse((r - x, b - x, r, b), color)
draw.rectangle((l, t + z, r, b - z), color)
draw.rectangle((l + z, t, r - z, b), color)