I thought I was clear. I don't know a single line of code. I went to school for Economics and Finance.
I have No programming skills at all. ZERO!
But I took a lot of math in school so I understand compound interest, etc.
You need to go back to school then. But I'll dumb down the code into just basic math for you...
Use a little bit of that math you learned and apply it to this formula:
nSubsidy = nCoinAge * nRewardCoinYear * 33 / (365 * 33 + 8);
Then take that solution and apply it to each reward node:
if (primeNodeRate == 0)
nRewardCoinYear = 5 * CENT;
else if (primeNodeRate == 10)
nRewardCoinYear = 10 * CENT;
else if (primeNodeRate == 20)
nRewardCoinYear = 20 * CENT;
else if (primeNodeRate == 100)
nRewardCoinYear = 100 * CENT;
else if (primeNodeRate == 350)
nRewardCoinYear = 350 * CENT;
Then figure out the exact inflation rate as it relates to nRewardCoinYear = 5 * CENT (This is the regular wallet btw) but also taking into account that there are 35 wallets @ 350, 10 wallets @ 100, 2 wallets @ 20, and 3 wallets @ 10...
Then tell me again how great this coin is...