Premined Lure : 150-200 blocks.
how many coins in these blocks ?
100 coins per block.
https://github.com/iamlure/Lureklub/blob/master/src/main.cpp#L984-L993// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
int64_t nSubsidy = 100 * COIN;
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
return nSubsidy + nFees;
}