C# (Visual C# Interactive Compiler), 65 65 64 bytes
for(int i=0;i<7;i++i=0;i<7;){WriteLine(new string("conemon"[i],i*2+10i++*2+10));}
thanks to @Jonathan Frech saving 1 byte
new string(char, int) repeats the char as often as the int value.
C#, 7372 bytes without "Console" as static using (example outside interactive compiler):
for(int i=0;i<7;i++i=0;i<7;){Console.WriteLine(new string("conemon"[i],i*2+10i++*2+10));}