It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
//There's no limit to the coin supply
//reward follows more or less the same emmission rate as Dogecoins'. 5 minutes per block / 105120 block in one year (roughly)
function getMiningReward() public constant returns (uint) {
bytes32 digest = solutionForChallenge[challengeNumber];
if(epochCount > 160000) return (50000 * 10**uint(decimals) ); // 14.4 M/day / ~ 1.0B Tokens in 20'000 blocks (coin supply @100'000th block ~ 150 Billions)
if(epochCount > 140000) return (75000 * 10**uint(decimals) ); // 21.6 M/day / ~ 1.5B Tokens in 20'000 blocks (coin supply @100'000th block ~ 149 Billions)
if(epochCount > 120000) return (125000 * 10**uint(decimals) ); // 36.0 M/day / ~ 2.5B Tokens in 20'000 blocks (coin supply @100'000th block ~ 146 Billions)
if(epochCount > 100000) return (250000 * 10**uint(decimals) ); // 72.0 M/day / ~ 5.0B Tokens in 20'000 blocks (coin supply @100'000th block ~ 141 Billions) (~ 1 year elapsed)
if(epochCount > 80000) return (500000 * 10**uint(decimals) ); // 144.0 M/day / ~10.0B Tokens in 20'000 blocks (coin supply @ 80'000th block ~ 131 Billions)
if(epochCount > 60000) return (1000000 * 10**uint(decimals) ); // 288.0 M/day / ~20.0B Tokens in 20'000 blocks (coin supply @ 60'000th block ~ 111 Billions)
if(epochCount > 40000) return ((uint256(keccak256(digest)) % 2500000) * 10**uint(decimals) ); // 360.0 M/day / ~25.0B Tokens in 20'000 blocks (coin supply @ 40'000th block ~ 86 Billions)
if(epochCount > 20000) return ((uint256(keccak256(digest)) % 3500000) * 10**uint(decimals) ); // 504.0 M/day / ~35.0B Tokens in 20'000 blocks (coin supply @ 20'000th block ~ 51 Billions)
return ((uint256(keccak256(digest)) % 5000000) * 10**uint(decimals) ); // 720.0 M/day / ~50.0B Tokens in 20'000 blocks
}