I want to selectively fill intersection of four circles as shown below.
I was able to make some of the intersections correctly but not able to figure out how to make the remaining ones.
Here is the MWE and its result.
\documentclass[10pt]{article}
\usepackage{pgf,tikz}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\clip(0,0) rectangle (4.2,3);
\fill [fill=blue] (1.64,1.22) circle (1.16cm);
\fill[fill=white] (1.34,1.11) circle (0.53cm);
\fill[fill=blue](2.50,1.71) circle (1.18cm);
\fill [fill=blue](1.02,1.99) circle (0.82cm);
\clip 1.02,1.99 circle (0.82cm);
\fill [fill=yellow] (1.34,1.11) circle (0.53cm);
\clip [] (2.50,1.71) circle (1.18cm);
\fill [fill=green] (1.34,1.11) circle (0.53cm);
\clip [] (1.02,1.99) circle (0.82cm);
\fill [fill=white] (2.50,1.71) circle (1.18cm);
\clip [] (1.64,1.22) circle (1.16cm);
\fill [fill=red] (2.50,1.71) circle (1.18cm);
\clip [] (1.34,1.11) circle (0.53cm);
\fill [fill=white] (1.02,1.99) circle (0.82cm);
\clip [] (1.34,1.11) circle (0.53cm);
\fill [fill=black] (2.50,1.71) circle (1.18cm);
\end{tikzpicture}
\end{document}
Any other hints in drawing it more efficiently or easily would be welcome.




