Coin Drop Equation

Yep

calculateDropAmount() {
    const coins = this.levels.coins;
    return coins < 13 ? 10 : Math.round(coins < 25000 ? coins * 0.8 : Math.log10(coins) * 30000 - 111938.2002602);
}

It’s inside this file