path4.lineTo(width - 173, height / 2 + 100);
path4.lineTo(width, height / 2);
// circle
Path path5 = new Path(device);
path5.moveTo((width - 200) / 2, (height - 200) / 2);
path5.addArc((width - 200) / 2, (height - 200) / 2, 200, 200, 0, 360);
// top rectangle
Path path6 = new Path(device);
path6.addRectangle((width - 40) / 2, 175, 40, (height - 200) / 2 - 177);