First i thought dev made a mistake and released 21 000 000 coins instead of 2.1 mil, but obviously he did not

/** No amount larger than this (in satoshi) is valid */
static const int64 MAX_MONEY = 2100000 * COIN;
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }