/^static int classbonus/,/^;/ {
	++line;
	if (line < 2 || $0 ~ /^;/)
		next;

	if ($1==0 && $2==0 && $3==0 && $4==0 && $5==0 && $6==0) $7="Human";

	printf("%s & %d & %d & %d & %d & %d & %d \\\\\n",$7,$1+20,$2+20,$3+20,$4+20,$5+20,$6+20);
}


