from contract source code, we could say there is huge discount.
I would like to know the starteDate.
function getRateAt(uint256 at) constant returns (uint256) {
if (at < startDate) {
return 0;
} else if (at < (startDate + 7 days)) {
return 5600;
} else if (at < (startDate + 14 days)) {
return 5200;
} else if (at < (startDate + 21 days)) {
return 4800;
} else if (at < (startDate + 28 days)) {
return 4400;
} else if (at <= endDate) {
return 4000;
} else {
return 0;
}
}