/^spell/,/^}/ {
	++line;
	if (line < 3 || $0 ~ /^}/)
		next;
	split(substr($0, 2), f, ",");
	if (f[4] > 0 || f[5] > 0 || f[6] > 0 || f[7] > 0) {
		print f[1] " & " f[2] " & " f[3];
	}	

}

