ETH Price: $1,947.11 (-4.91%)

Transaction Decoder

Block:
17775722 at Jul-26-2023 07:19:59 AM +UTC
Transaction Fee:
0.002006658324191411 ETH $3.91
Gas Used:
100,067 Gas / 20.053147633 Gwei

Emitted Events:

111 frxETH.Approval( owner=[Sender] 0x2ece8a794bd630b509eea6d9ae352bb3fe2ec363, spender=[Receiver] Vyper_contract, value=0 )
112 frxETH.Transfer( from=[Sender] 0x2ece8a794bd630b509eea6d9ae352bb3fe2ec363, to=[Receiver] Vyper_contract, value=501080325487778848 )
113 Vyper_contract.TokenExchange( buyer=[Sender] 0x2ece8a794bd630b509eea6d9ae352bb3fe2ec363, sold_id=1, tokens_sold=501080325487778848, bought_id=0, tokens_bought=500683868774165475 )

Account State Difference:

  Address   Before After State Difference Code
1.82650751005314397 Eth1.82660757705314397 Eth0.000100067
0x2ECE8a79...3fE2Ec363
0.354225703255916592 Eth
Nonce: 338
0.852902913705890656 Eth
Nonce: 339
0.498677210449974064
0x5E842234...8E08CAa1f
0xa1F8A680...FED24E577 30,569.163288782254755036 Eth30,568.662604913480589561 Eth0.500683868774165475

Execution Trace

Vyper_contract.exchange( i=1, j=0, _dx=501080325487778848, _min_dy=500533663613533225 ) => ( 500683868774165475 )
  • frxETH.transferFrom( from=0x2ECE8a794bd630B509eea6D9ae352bb3fE2Ec363, to=0xa1F8A6807c402E4A15ef4EBa36528A3FED24E577, amount=501080325487778848 ) => ( True )
  • ETH 0.500683868774165475 0x2ece8a794bd630b509eea6d9ae352bb3fe2ec363.CALL( )
    File 1 of 2: Vyper_contract
    # @version 0.3.7
    """
    @title FRXETH StableSwap
    @author Curve.Fi
    @license Copyright (c) Curve.Fi, 2020-2022 - all rights reserved
    @notice Curve ETH pool implementation
    """
    
    from vyper.interfaces import ERC20
    
    interface CurveToken:
        def totalSupply() -> uint256: view
        def mint(_to: address, _value: uint256) -> bool: nonpayable
        def burnFrom(_to: address, _value: uint256) -> bool: nonpayable
    
    
    # Events
    event TokenExchange:
        buyer: indexed(address)
        sold_id: int128
        tokens_sold: uint256
        bought_id: int128
        tokens_bought: uint256
    
    event AddLiquidity:
        provider: indexed(address)
        token_amounts: uint256[N_COINS]
        fees: uint256[N_COINS]
        invariant: uint256
        token_supply: uint256
    
    event RemoveLiquidity:
        provider: indexed(address)
        token_amounts: uint256[N_COINS]
        fees: uint256[N_COINS]
        token_supply: uint256
    
    event RemoveLiquidityOne:
        provider: indexed(address)
        token_amount: uint256
        coin_amount: uint256
        token_supply: uint256
    
    event RemoveLiquidityImbalance:
        provider: indexed(address)
        token_amounts: uint256[N_COINS]
        fees: uint256[N_COINS]
        invariant: uint256
        token_supply: uint256
    
    event CommitNewAdmin:
        deadline: indexed(uint256)
        admin: indexed(address)
    
    event NewAdmin:
        admin: indexed(address)
    
    event CommitNewFee:
        deadline: indexed(uint256)
        fee: uint256
        admin_fee: uint256
    
    event NewFee:
        fee: uint256
        admin_fee: uint256
    
    event RampA:
        old_A: uint256
        new_A: uint256
        initial_time: uint256
        future_time: uint256
    
    event StopRampA:
        A: uint256
        t: uint256
    
    
    # These constants must be set prior to compiling
    N_COINS: constant(uint256) = 2
    N_COINS_128: constant(int128) = 2
    
    # fixed constants
    FEE_DENOMINATOR: constant(uint256) = 10 ** 10
    PRECISION: constant(uint256) = 10 ** 18  # The precision to convert to
    
    MAX_ADMIN_FEE: constant(uint256) = 10 * 10 ** 9
    MAX_FEE: constant(uint256) = 5 * 10 ** 9
    MAX_A: constant(uint256) = 10 ** 6
    MAX_A_CHANGE: constant(uint256) = 10
    
    ADMIN_ACTIONS_DELAY: constant(uint256) = 3 * 86400
    MIN_RAMP_TIME: constant(uint256) = 86400
    
    coins: public(address[N_COINS])
    balances: public(uint256[N_COINS])
    fee: public(uint256)  # fee * 1e10
    admin_fee: public(uint256)  # admin_fee * 1e10
    
    owner: public(address)
    lp_token: public(address)
    
    A_PRECISION: constant(uint256) = 100
    initial_A: public(uint256)
    future_A: public(uint256)
    initial_A_time: public(uint256)
    future_A_time: public(uint256)
    
    admin_actions_deadline: public(uint256)
    transfer_ownership_deadline: public(uint256)
    future_fee: public(uint256)
    future_admin_fee: public(uint256)
    future_owner: public(address)
    
    ma_price: uint256
    ma_exp_time: public(uint256)
    ma_last_time: public(uint256)
    
    is_killed: bool
    kill_deadline: uint256
    KILL_DEADLINE_DT: constant(uint256) = 2 * 30 * 86400
    
    
    @external
    def __init__(
        _owner: address,
        _coins: address[N_COINS],
        _pool_token: address,
        _A: uint256,
        _fee: uint256,
        _admin_fee: uint256
    ):
        """
        @notice Contract constructor
        @param _owner Contract owner address
        @param _coins Addresses of ERC20 conracts of coins
        @param _pool_token Address of the token representing LP share
        @param _A Amplification coefficient multiplied by n * (n - 1)
        @param _fee Fee to charge for exchanges
        @param _admin_fee Admin fee
        """
        for i in range(N_COINS):
            assert _coins[i] != empty(address)
        self.coins = _coins
        self.initial_A = _A * A_PRECISION
        self.future_A = _A * A_PRECISION
        self.fee = _fee
        self.admin_fee = _admin_fee
        self.owner = _owner
        self.kill_deadline = block.timestamp + KILL_DEADLINE_DT
        self.lp_token = _pool_token
    
        self.ma_exp_time = 2597  # = 1800 / ln(2)  # 30 mins
        self.ma_price = 10**18
        self.ma_last_time = block.timestamp
    
    
    @view
    @internal
    def _A() -> uint256:
        """
        Handle ramping A up or down
        """
        t1: uint256 = self.future_A_time
        A1: uint256 = self.future_A
    
        if block.timestamp < t1:
            A0: uint256 = self.initial_A
            t0: uint256 = self.initial_A_time
            # Expressions in uint256 cannot have negative numbers, thus "if"
            if A1 > A0:
                return A0 + (A1 - A0) * (block.timestamp - t0) / (t1 - t0)
            else:
                return A0 - (A0 - A1) * (block.timestamp - t0) / (t1 - t0)
    
        else:  # when t1 == 0 or block.timestamp >= t1
            return A1
    
    
    @view
    @external
    def A() -> uint256:
        return self._A() / A_PRECISION
    
    
    @view
    @external
    def A_precise() -> uint256:
        return self._A()
    
    
    @pure
    @internal
    def _get_D(_xp: uint256[N_COINS], _amp: uint256) -> uint256:
        """
        D invariant calculation in non-overflowing integer operations
        iteratively
    
        A * sum(x_i) * n**n + D = A * D * n**n + D**(n+1) / (n**n * prod(x_i))
    
        Converging solution:
        D[j+1] = (A * n**n * sum(x_i) - D[j]**(n+1) / (n**n prod(x_i))) / (A * n**n - 1)
        """
        S: uint256 = 0
        Dprev: uint256 = 0
    
        for _x in _xp:
            S += _x
        if S == 0:
            return 0
    
        D: uint256 = S
        Ann: uint256 = _amp * N_COINS
        for _i in range(255):
            D_P: uint256 = D
            for _x in _xp:
                D_P = D_P * D / (_x * N_COINS)  # If division by 0, this will be borked: only withdrawal will work. And that is good
            Dprev = D
            D = (Ann * S / A_PRECISION + D_P * N_COINS) * D / ((Ann - A_PRECISION) * D / A_PRECISION + (N_COINS + 1) * D_P)
            # Equality with the precision of 1
            if D > Dprev:
                if D - Dprev <= 1:
                    return D
            else:
                if Dprev - D <= 1:
                    return D
        # convergence typically occurs in 4 rounds or less, this should be unreachable!
        # if it does happen the pool is borked and LPs can withdraw via `remove_liquidity`
        raise
    
    
    @internal
    @view
    def _get_p(xp: uint256[N_COINS], amp: uint256, D: uint256) -> uint256:
        # dx_0 / dx_1 only, however can have any number of coins in pool
        ANN: uint256 = amp * N_COINS
        Dr: uint256 = D / (N_COINS**N_COINS)
        for i in range(N_COINS):
            Dr = Dr * D / xp[i]
        return 10**18 * (ANN * xp[0] / A_PRECISION + Dr * xp[0] / xp[1]) / (ANN * xp[0] / A_PRECISION + Dr)
    
    
    @external
    @view
    @nonreentrant('lock')
    def get_p() -> uint256:
        amp: uint256 = self._A()
        xp: uint256[N_COINS] = self.balances
        D: uint256 = self._get_D(xp, amp)
        return self._get_p(xp, amp, D)
    
    
    @internal
    @view
    def exp(power: int256) -> uint256:
        # courtesy of solmate
        # https://github.com/transmissions11/solmate/blob/master/src/utils/SignedWadMath.sol#L83
        if power <= -42139678854452767551:
            return 0
    
        if power >= 135305999368893231589:
            raise "exp overflow"
    
        x: int256 = unsafe_div(unsafe_mul(power, 2**96), 10**18)
    
        k: int256 = unsafe_div(
            unsafe_add(
                unsafe_div(unsafe_mul(x, 2**96), 54916777467707473351141471128),
                2**95),
            2**96)
        x = unsafe_sub(x, unsafe_mul(k, 54916777467707473351141471128))
    
        y: int256 = unsafe_add(x, 1346386616545796478920950773328)
        y = unsafe_add(unsafe_div(unsafe_mul(y, x), 2**96), 57155421227552351082224309758442)
        p: int256 = unsafe_sub(unsafe_add(y, x), 94201549194550492254356042504812)
        p = unsafe_add(unsafe_div(unsafe_mul(p, y), 2**96), 28719021644029726153956944680412240)
        p = unsafe_add(unsafe_mul(p, x), (4385272521454847904659076985693276 * 2**96))
    
        q: int256 = unsafe_sub(x, 2855989394907223263936484059900)
        q = unsafe_add(unsafe_div(unsafe_mul(q, x), 2**96), 50020603652535783019961831881945)
        q = unsafe_sub(unsafe_div(unsafe_mul(q, x), 2**96), 533845033583426703283633433725380)
        q = unsafe_add(unsafe_div(unsafe_mul(q, x), 2**96), 3604857256930695427073651918091429)
        q = unsafe_sub(unsafe_div(unsafe_mul(q, x), 2**96), 14423608567350463180887372962807573)
        q = unsafe_add(unsafe_div(unsafe_mul(q, x), 2**96), 26449188498355588339934803723976023)
    
        return unsafe_div(
            unsafe_mul(convert(unsafe_div(p, q), uint256), 3822833074963236453042738258902158003155416615667),
            pow_mod256(2, convert(unsafe_sub(195, k), uint256))
        )
    
    
    @internal
    @view
    def _ma_price(xp: uint256[N_COINS], amp: uint256, D: uint256) -> uint256:
        p: uint256 = self._get_p(xp, amp, D)
        ema_mul: uint256 = self.exp(-convert((block.timestamp - self.ma_last_time) * 10**18 / self.ma_exp_time, int256))
        return (self.ma_price * ema_mul + p * (10**18 - ema_mul)) / 10**18
    
    
    @external
    @view
    @nonreentrant('lock')
    def price_oracle() -> uint256:
        amp: uint256 = self._A()
        xp: uint256[N_COINS] = self.balances
        D: uint256 = self._get_D(xp, amp)
        return self._ma_price(xp, amp, D)
    
    
    @internal
    def save_p(xp: uint256[N_COINS], amp: uint256, D: uint256):
        """
        Saves current price and its EMA
        """
        self.ma_price = self._ma_price(xp, amp, D)
        self.ma_last_time = block.timestamp
    
    
    @view
    @external
    @nonreentrant('lock')
    def get_virtual_price() -> uint256:
        """
        @notice The current virtual price of the pool LP token
        @dev Useful for calculating profits
        @return LP token virtual price normalized to 1e18
        """
        D: uint256 = self._get_D(self.balances, self._A())
        # D is in the units similar to DAI (e.g. converted to precision 1e18)
        # When balanced, D = n * x_u - total virtual value of the portfolio
        token_supply: uint256 = ERC20(self.lp_token).totalSupply()
        return D * PRECISION / token_supply
    
    
    @view
    @external
    @nonreentrant('lock')
    def calc_token_amount(_amounts: uint256[N_COINS], _is_deposit: bool) -> uint256:
        """
        @notice Calculate addition or reduction in token supply from a deposit or withdrawal
        @dev This calculation accounts for slippage, but not fees.
             Needed to prevent front-running, not for precise calculations!
        @param _amounts Amount of each coin being deposited
        @param _is_deposit set True for deposits, False for withdrawals
        @return Expected amount of LP tokens received
        """
        amp: uint256 = self._A()
        balances: uint256[N_COINS] = self.balances
        D0: uint256 = self._get_D(balances, amp)
        for i in range(N_COINS):
            if _is_deposit:
                balances[i] += _amounts[i]
            else:
                balances[i] -= _amounts[i]
        D1: uint256 = self._get_D(balances, amp)
        token_amount: uint256 = CurveToken(self.lp_token).totalSupply()
        diff: uint256 = 0
        if _is_deposit:
            diff = D1 - D0
        else:
            diff = D0 - D1
        return diff * token_amount / D0
    
    
    @payable
    @external
    @nonreentrant('lock')
    def add_liquidity(_amounts: uint256[N_COINS], _min_mint_amount: uint256) -> uint256:
        """
        @notice Deposit coins into the pool
        @param _amounts List of amounts of coins to deposit
        @param _min_mint_amount Minimum amount of LP tokens to mint from the deposit
        @return Amount of LP tokens received by depositing
        """
        assert not self.is_killed  # dev: is killed
    
        amp: uint256 = self._A()
        old_balances: uint256[N_COINS] = self.balances
        
        # Initial invariant
        D0: uint256 = self._get_D(old_balances, amp)
    
        lp_token: address = self.lp_token
        token_supply: uint256 = ERC20(lp_token).totalSupply()
        new_balances: uint256[N_COINS] = empty(uint256[N_COINS])
        for i in range(N_COINS):
            if token_supply == 0:
                assert _amounts[i] > 0  # dev: initial deposit requires all coins
            new_balances[i] = old_balances[i] + _amounts[i]
    
        # Invariant after change
        D1: uint256 = self._get_D(new_balances, amp)
        assert D1 > D0
    
        # We need to recalculate the invariant accounting for fees
        # to calculate fair user's share
        fees: uint256[N_COINS] = empty(uint256[N_COINS])
        mint_amount: uint256 = 0
        D2: uint256 = D1
        if token_supply > 0:
            # Only account for fees if we are not the first to deposit
            fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1))
            admin_fee: uint256 = self.admin_fee
            for i in range(N_COINS):
                ideal_balance: uint256 = D1 * old_balances[i] / D0
                difference: uint256 = 0
                if ideal_balance > new_balances[i]:
                    difference = ideal_balance - new_balances[i]
                else:
                    difference = new_balances[i] - ideal_balance
                fees[i] = fee * difference / FEE_DENOMINATOR
                self.balances[i] = new_balances[i] - (fees[i] * admin_fee / FEE_DENOMINATOR)
                new_balances[i] -= fees[i]
            D2 = self._get_D(new_balances, amp)
            mint_amount = token_supply * (D2 - D0) / D0
            self.save_p(new_balances, amp, D2)
        else:
            self.balances = new_balances
            mint_amount = D1  # Take the dust if there was any
    
        assert mint_amount >= _min_mint_amount, "Slippage screwed you"
    
        # Take coins from the sender
        for i in range(N_COINS):
            coin: address = self.coins[i]
            amount: uint256 = _amounts[i]
            if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
                assert msg.value == amount
            elif amount > 0:
                assert ERC20(coin).transferFrom(msg.sender, self, amount, default_return_value=True)
    
        # Mint pool tokens
        CurveToken(lp_token).mint(msg.sender, mint_amount)
    
        log AddLiquidity(msg.sender, _amounts, fees, D1, token_supply + mint_amount)
    
        return mint_amount
    
    
    @view
    @internal
    def _get_y(i: int128, j: int128, x: uint256, _xp: uint256[N_COINS]) -> uint256:
        """
        Calculate x[j] if one makes x[i] = x
    
        Done by solving quadratic equation iteratively.
        x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A)
        x_1**2 + b*x_1 = c
    
        x_1 = (x_1**2 + c) / (2*x_1 + b)
        """
        # x in the input is converted to the same price/precision
    
        assert i != j       # dev: same coin
        assert j >= 0       # dev: j below zero
        assert j < N_COINS_128  # dev: j above N_COINS
    
        # should be unreachable, but good for safety
        assert i >= 0
        assert i < N_COINS_128
    
        A: uint256 = self._A()
        D: uint256 = self._get_D(_xp, A)
        Ann: uint256 = A * N_COINS
        c: uint256 = D
        S: uint256 = 0
        _x: uint256 = 0
        y_prev: uint256 = 0
    
        for _i in range(N_COINS_128):
            if _i == i:
                _x = x
            elif _i != j:
                _x = _xp[_i]
            else:
                continue
            S += _x
            c = c * D / (_x * N_COINS)
        c = c * D * A_PRECISION / (Ann * N_COINS)
        b: uint256 = S + D * A_PRECISION / Ann  # - D
        y: uint256 = D
        for _i in range(255):
            y_prev = y
            y = (y*y + c) / (2 * y + b - D)
            # Equality with the precision of 1
            if y > y_prev:
                if y - y_prev <= 1:
                    return y
            else:
                if y_prev - y <= 1:
                    return y
        raise
    
    
    @view
    @external
    @nonreentrant('lock')
    def get_dy(i: int128, j: int128, _dx: uint256) -> uint256:
        xp: uint256[N_COINS] = self.balances
        x: uint256 = xp[i] + _dx
        y: uint256 = self._get_y(i, j, x, xp)
        dy: uint256 = xp[j] - y - 1
        fee: uint256 = self.fee * dy / FEE_DENOMINATOR
        return dy - fee
    
    
    @payable
    @external
    @nonreentrant('lock')
    def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256:
        """
        @notice Perform an exchange between two coins
        @dev Index values can be found via the `coins` public getter method
        @param i Index value for the coin to send
        @param j Index valie of the coin to recieve
        @param _dx Amount of `i` being exchanged
        @param _min_dy Minimum amount of `j` to receive
        @return Actual amount of `j` received
        """
        assert not self.is_killed  # dev: is killed
    
        old_balances: uint256[N_COINS] = self.balances
    
        x: uint256 = old_balances[i] + _dx
    
        amp: uint256 = self._A()
        D: uint256 = self._get_D(old_balances, amp)
        y: uint256 = self._get_y(i, j, x, old_balances)
    
        dy: uint256 = old_balances[j] - y - 1  # -1 just in case there were some rounding errors
        dy_fee: uint256 = dy * self.fee / FEE_DENOMINATOR
    
        # Convert all to real units
        dy = dy - dy_fee
        assert dy >= _min_dy, "Exchange resulted in fewer coins than expected"
    
        xp: uint256[N_COINS] = old_balances
        xp[i] = x
        xp[j] = y
    
        self.save_p(xp, amp, D)
    
        dy_admin_fee: uint256 = dy_fee * self.admin_fee / FEE_DENOMINATOR
    
        # Change balances exactly in same way as we change actual ERC20 coin amounts
        self.balances[i] = old_balances[i] + _dx
        # When rounding errors happen, we undercharge admin fee in favor of LP
        self.balances[j] = old_balances[j] - dy - dy_admin_fee
    
        coin: address = self.coins[i]
        if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
            assert msg.value == _dx
        else:
            assert msg.value == 0
            assert ERC20(coin).transferFrom(msg.sender, self, _dx, default_return_value=True)
    
        coin = self.coins[j]
        if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
            raw_call(msg.sender, b"", value=dy)
        else:
            assert ERC20(coin).transfer(msg.sender, dy, default_return_value=True)
    
        log TokenExchange(msg.sender, i, _dx, j, dy)
    
        return dy
    
    
    @external
    @nonreentrant('lock')
    def remove_liquidity(_amount: uint256, _min_amounts: uint256[N_COINS]) -> uint256[N_COINS]:
        """
        @notice Withdraw coins from the pool
        @dev Withdrawal amounts are based on current deposit ratios
        @param _amount Quantity of LP tokens to burn in the withdrawal
        @param _min_amounts Minimum amounts of underlying coins to receive
        @return List of amounts of coins that were withdrawn
        """
        lp_token: address = self.lp_token
        total_supply: uint256 = CurveToken(lp_token).totalSupply()
        amounts: uint256[N_COINS] = empty(uint256[N_COINS])
    
        for i in range(N_COINS):
            old_balance: uint256 = self.balances[i]
            value: uint256 = old_balance * _amount / total_supply
            assert value >= _min_amounts[i], "Withdrawal resulted in fewer coins than expected"
            self.balances[i] = old_balance - value
            amounts[i] = value
            coin: address = self.coins[i]
            if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
                raw_call(msg.sender, b"", value=value)
            else:
                assert ERC20(coin).transfer(msg.sender, value, default_return_value=True)
    
        CurveToken(lp_token).burnFrom(msg.sender, _amount)  # dev: insufficient funds
    
        log RemoveLiquidity(msg.sender, amounts, empty(uint256[N_COINS]), total_supply - _amount)
    
        return amounts
    
    
    @external
    @nonreentrant('lock')
    def remove_liquidity_imbalance(_amounts: uint256[N_COINS], _max_burn_amount: uint256) -> uint256:
        """
        @notice Withdraw coins from the pool in an imbalanced amount
        @param _amounts List of amounts of underlying coins to withdraw
        @param _max_burn_amount Maximum amount of LP token to burn in the withdrawal
        @return Actual amount of the LP token burned in the withdrawal
        """
        assert not self.is_killed  # dev: is killed
    
        amp: uint256 = self._A()
        old_balances: uint256[N_COINS] = self.balances
        D0: uint256 = self._get_D(old_balances, amp)
        new_balances: uint256[N_COINS] = empty(uint256[N_COINS])
        for i in range(N_COINS):
            new_balances[i] = old_balances[i] - _amounts[i]
        D1: uint256 = self._get_D(new_balances, amp)
    
        fees: uint256[N_COINS] = empty(uint256[N_COINS])
        fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1))
        admin_fee: uint256 = self.admin_fee
        for i in range(N_COINS):
            new_balance: uint256 = new_balances[i]
            ideal_balance: uint256 = D1 * old_balances[i] / D0
            difference: uint256 = 0
            if ideal_balance > new_balance:
                difference = ideal_balance - new_balance
            else:
                difference = new_balance - ideal_balance
            fees[i] = fee * difference / FEE_DENOMINATOR
            self.balances[i] = new_balance - (fees[i] * admin_fee / FEE_DENOMINATOR)
            new_balances[i] = new_balance - fees[i]
        D2: uint256 = self._get_D(new_balances, amp)
    
        self.save_p(new_balances, amp, D2)
    
        lp_token: address = self.lp_token
        token_supply: uint256 = CurveToken(lp_token).totalSupply()
        token_amount: uint256 = (D0 - D2) * token_supply / D0
        assert token_amount != 0  # dev: zero tokens burned
        token_amount += 1  # In case of rounding errors - make it unfavorable for the "attacker"
        assert token_amount <= _max_burn_amount, "Slippage screwed you"
    
        CurveToken(lp_token).burnFrom(msg.sender, token_amount)  # dev: insufficient funds
        for i in range(N_COINS):
            amount: uint256 = _amounts[i]
            if amount != 0:
                coin: address = self.coins[i]
                if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
                    raw_call(msg.sender, b"", value=amount)
                else:
                    assert ERC20(coin).transfer(msg.sender, amount, default_return_value=True)
    
        log RemoveLiquidityImbalance(msg.sender, _amounts, fees, D1, token_supply - token_amount)
    
        return token_amount
    
    
    @pure
    @internal
    def _get_y_D(A: uint256, i: int128, _xp: uint256[N_COINS], D: uint256) -> uint256:
        """
        Calculate x[i] if one reduces D from being calculated for xp to D
    
        Done by solving quadratic equation iteratively.
        x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A)
        x_1**2 + b*x_1 = c
    
        x_1 = (x_1**2 + c) / (2*x_1 + b)
        """
        # x in the input is converted to the same price/precision
    
        assert i >= 0  # dev: i below zero
        assert i < N_COINS_128  # dev: i above N_COINS
    
        Ann: uint256 = A * N_COINS
        c: uint256 = D
        S: uint256 = 0
        _x: uint256 = 0
        y_prev: uint256 = 0
        
        for _i in range(N_COINS_128):
            if _i != i:
                _x = _xp[_i]
            else:
                continue
            S += _x
            c = c * D / (_x * N_COINS)
        c = c * D * A_PRECISION / (Ann * N_COINS)
        b: uint256 = S + D * A_PRECISION / Ann
        y: uint256 = D
    
        for _i in range(255):
            y_prev = y
            y = (y*y + c) / (2 * y + b - D)
            # Equality with the precision of 1
            if y > y_prev:
                if y - y_prev <= 1:
                    return y
            else:
                if y_prev - y <= 1:
                    return y
        raise
    
    
    @view
    @internal
    def _calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> (uint256, uint256, uint256, uint256):
        # First, need to calculate
        # * Get current D
        # * Solve Eqn against y_i for D - _token_amount
        amp: uint256 = self._A()
        xp: uint256[N_COINS] = self.balances
        D0: uint256 = self._get_D(xp, amp)
        total_supply: uint256 = CurveToken(self.lp_token).totalSupply()
        D1: uint256 = D0 - _token_amount * D0 / total_supply
        new_y: uint256 = self._get_y_D(amp, i, xp, D1)
        fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1))
        xp_reduced: uint256[N_COINS] = xp
        for j in range(N_COINS_128):
            dx_expected: uint256 = 0
            if j == i:
                dx_expected = xp[j] * D1 / D0 - new_y
            else:
                dx_expected = xp[j] - xp[j] * D1 / D0
            xp_reduced[j] -= fee * dx_expected / FEE_DENOMINATOR
    
        dy: uint256 = xp_reduced[i] - self._get_y_D(amp, i, xp_reduced, D1)
    
        dy -= 1  # Withdraw less to account for rounding errors
        dy_0: uint256 = xp[i] - new_y  # w/o fees
    
        xp[i] = new_y
        ma_p: uint256 = 0
        if new_y > 0:
            ma_p = self._ma_price(xp, amp, D1)
    
        return dy, dy_0 - dy, total_supply, ma_p
    
    
    @view
    @external
    @nonreentrant('lock')
    def calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> uint256:
        """
        @notice Calculate the amount received when withdrawing a single coin
        @param _token_amount Amount of LP tokens to burn in the withdrawal
        @param i Index value of the coin to withdraw
        @return Amount of coin received
        """
        return self._calc_withdraw_one_coin(_token_amount, i)[0]
    
    
    @external
    @nonreentrant('lock')
    def remove_liquidity_one_coin(_token_amount: uint256, i: int128, _min_amount: uint256) -> uint256:
        """
        @notice Withdraw a single coin from the pool
        @param _token_amount Amount of LP tokens to burn in the withdrawal
        @param i Index value of the coin to withdraw
        @param _min_amount Minimum amount of coin to receive
        @return Amount of coin received
        """
        assert not self.is_killed  # dev: is killed
    
        dy: uint256 = 0
        dy_fee: uint256 = 0
        total_supply: uint256 = 0
        ma_p: uint256 = 0
        dy, dy_fee, total_supply, ma_p = self._calc_withdraw_one_coin(_token_amount, i)
        assert dy >= _min_amount, "Not enough coins removed"
    
        self.balances[i] -= (dy + dy_fee * self.admin_fee / FEE_DENOMINATOR)
        CurveToken(self.lp_token).burnFrom(msg.sender, _token_amount)  # dev: insufficient funds
    
        coin: address = self.coins[i]
        if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
            raw_call(msg.sender, b"", value=dy)
        else:
            assert ERC20(coin).transfer(msg.sender, dy, default_return_value=True)
    
        log RemoveLiquidityOne(msg.sender, _token_amount, dy, total_supply - _token_amount)
    
        self.ma_price = ma_p
        self.ma_last_time = block.timestamp
    
        return dy
    
    
    ### Admin functions ###
    @external
    def ramp_A(_future_A: uint256, _future_time: uint256):
        assert msg.sender == self.owner  # dev: only owner
        assert block.timestamp >= self.initial_A_time + MIN_RAMP_TIME
        assert _future_time >= block.timestamp + MIN_RAMP_TIME  # dev: insufficient time
    
        initial_A: uint256 = self._A()
        future_A_p: uint256 = _future_A * A_PRECISION
    
        assert _future_A > 0 and _future_A < MAX_A
        if future_A_p < initial_A:
            assert future_A_p * MAX_A_CHANGE >= initial_A
        else:
            assert future_A_p <= initial_A * MAX_A_CHANGE
    
        self.initial_A = initial_A
        self.future_A = future_A_p
        self.initial_A_time = block.timestamp
        self.future_A_time = _future_time
    
        log RampA(initial_A, future_A_p, block.timestamp, _future_time)
    
    
    @external
    def stop_ramp_A():
        assert msg.sender == self.owner  # dev: only owner
    
        current_A: uint256 = self._A()
        self.initial_A = current_A
        self.future_A = current_A
        self.initial_A_time = block.timestamp
        self.future_A_time = block.timestamp
        # now (block.timestamp < t1) is always False, so we return saved A
    
        log StopRampA(current_A, block.timestamp)
    
    
    @external
    def commit_new_fee(_new_fee: uint256, _new_admin_fee: uint256):
        assert msg.sender == self.owner  # dev: only owner
        assert self.admin_actions_deadline == 0  # dev: active action
        assert _new_fee <= MAX_FEE  # dev: fee exceeds maximum
        assert _new_admin_fee <= MAX_ADMIN_FEE  # dev: admin fee exceeds maximum
    
        deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY
        self.admin_actions_deadline = deadline
        self.future_fee = _new_fee
        self.future_admin_fee = _new_admin_fee
    
        log CommitNewFee(deadline, _new_fee, _new_admin_fee)
    
    
    @external
    def apply_new_fee():
        assert msg.sender == self.owner  # dev: only owner
        assert block.timestamp >= self.admin_actions_deadline  # dev: insufficient time
        assert self.admin_actions_deadline != 0  # dev: no active action
    
        self.admin_actions_deadline = 0
        fee: uint256 = self.future_fee
        admin_fee: uint256 = self.future_admin_fee
        self.fee = fee
        self.admin_fee = admin_fee
    
        log NewFee(fee, admin_fee)
    
    
    @external
    def revert_new_parameters():
        assert msg.sender == self.owner  # dev: only owner
    
        self.admin_actions_deadline = 0
    
    
    @external
    def set_ma_exp_time(_ma_exp_time: uint256):
        assert msg.sender == self.owner
        assert _ma_exp_time != 0
    
        self.ma_exp_time = _ma_exp_time
    
    
    @external
    def commit_transfer_ownership(_owner: address):
        assert msg.sender == self.owner  # dev: only owner
        assert self.transfer_ownership_deadline == 0  # dev: active transfer
    
        deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY
        self.transfer_ownership_deadline = deadline
        self.future_owner = _owner
    
        log CommitNewAdmin(deadline, _owner)
    
    
    @external
    def apply_transfer_ownership():
        assert msg.sender == self.owner  # dev: only owner
        assert block.timestamp >= self.transfer_ownership_deadline  # dev: insufficient time
        assert self.transfer_ownership_deadline != 0  # dev: no active transfer
    
        self.transfer_ownership_deadline = 0
        owner: address = self.future_owner
        self.owner = owner
    
        log NewAdmin(owner)
    
    
    @external
    def revert_transfer_ownership():
        assert msg.sender == self.owner  # dev: only owner
    
        self.transfer_ownership_deadline = 0
    
    
    @view
    @external
    def admin_balances(i: uint256) -> uint256:
        coin: address = self.coins[i]
        if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
            return self.balance - self.balances[i]
        else:
            return ERC20(coin).balanceOf(self) - self.balances[i]
    
    
    @external
    def withdraw_admin_fees():
        assert msg.sender == self.owner  # dev: only owner
    
        for i in range(N_COINS):
            coin: address = self.coins[i]
            if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
                value: uint256 = self.balance - self.balances[i]
                if value > 0:
                    raw_call(msg.sender, b"", value=value)
            else:
                value: uint256 = ERC20(coin).balanceOf(self) - self.balances[i]
                if value > 0:
                    assert ERC20(coin).transfer(msg.sender, value, default_return_value=True)
    
    
    @external
    def donate_admin_fees():
        assert msg.sender == self.owner  # dev: only owner
        for i in range(N_COINS):
            coin: address = self.coins[i]
            if coin == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:
                self.balances[i] = self.balance
            else:
                self.balances[i] = ERC20(coin).balanceOf(self)
    
    
    @external
    def kill_me():
        assert msg.sender == self.owner  # dev: only owner
        assert self.kill_deadline > block.timestamp  # dev: deadline has passed
        self.is_killed = True
    
    
    @external
    def unkill_me():
        assert msg.sender == self.owner  # dev: only owner
        self.is_killed = False

    File 2 of 2: frxETH
    // SPDX-License-Identifier: GPL-2.0-or-later
    pragma solidity >=0.8.0;
    
    
    // ====================================================================
    // |     ______                   _______                             |
    // |    / _____________ __  __   / ____(_____  ____ _____  ________   |
    // |   / /_  / ___/ __ `| |/_/  / /_  / / __ \/ __ `/ __ \/ ___/ _ \  |
    // |  / __/ / /  / /_/ _>  <   / __/ / / / / / /_/ / / / / /__/  __/  |
    // | /_/   /_/   \__,_/_/|_|  /_/   /_/_/ /_/\__,_/_/ /_/\___/\___/   |
    // |                                                                  |
    // ====================================================================
    // ============================== frxETH ==============================
    // ====================================================================
    // Frax Finance: https://github.com/FraxFinance
    
    // Primary Author(s)
    // Jack Corddry: https://github.com/corddry
    // Nader Ghazvini: https://github.com/amirnader-ghazvini 
    
    // Reviewer(s) / Contributor(s)
    // Sam Kazemian: https://github.com/samkazemian
    // Dennis: https://github.com/denett
    // Travis Moore: https://github.com/FortisFortuna
    // Jamie Turley: https://github.com/jyturley
    
    /// @title Stablecoin pegged to Ether for use within the Frax ecosystem
    /** @notice Does not accrue ETH 2.0 staking yield: it must be staked at the sfrxETH contract first.
        ETH -> frxETH conversion is permanent, so a market will develop for the latter.
        Withdraws are not live (as of deploy time) so loosely pegged to eth but is possible will float */
    /// @dev frxETH adheres to EIP-712/EIP-2612 and can use permits
    
    // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
    
    // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
    
    /**
     * @dev Interface of the ERC20 standard as defined in the EIP.
     */
    interface IERC20 {
        /**
         * @dev Emitted when `value` tokens are moved from one account (`from`) to
         * another (`to`).
         *
         * Note that `value` may be zero.
         */
        event Transfer(address indexed from, address indexed to, uint256 value);
    
        /**
         * @dev Emitted when the allowance of a `spender` for an `owner` is set by
         * a call to {approve}. `value` is the new allowance.
         */
        event Approval(address indexed owner, address indexed spender, uint256 value);
    
        /**
         * @dev Returns the amount of tokens in existence.
         */
        function totalSupply() external view returns (uint256);
    
        /**
         * @dev Returns the amount of tokens owned by `account`.
         */
        function balanceOf(address account) external view returns (uint256);
    
        /**
         * @dev Moves `amount` tokens from the caller's account to `to`.
         *
         * Returns a boolean value indicating whether the operation succeeded.
         *
         * Emits a {Transfer} event.
         */
        function transfer(address to, uint256 amount) external returns (bool);
    
        /**
         * @dev Returns the remaining number of tokens that `spender` will be
         * allowed to spend on behalf of `owner` through {transferFrom}. This is
         * zero by default.
         *
         * This value changes when {approve} or {transferFrom} are called.
         */
        function allowance(address owner, address spender) external view returns (uint256);
    
        /**
         * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
         *
         * Returns a boolean value indicating whether the operation succeeded.
         *
         * IMPORTANT: Beware that changing an allowance with this method brings the risk
         * that someone may use both the old and the new allowance by unfortunate
         * transaction ordering. One possible solution to mitigate this race
         * condition is to first reduce the spender's allowance to 0 and set the
         * desired value afterwards:
         * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
         *
         * Emits an {Approval} event.
         */
        function approve(address spender, uint256 amount) external returns (bool);
    
        /**
         * @dev Moves `amount` tokens from `from` to `to` using the
         * allowance mechanism. `amount` is then deducted from the caller's
         * allowance.
         *
         * Returns a boolean value indicating whether the operation succeeded.
         *
         * Emits a {Transfer} event.
         */
        function transferFrom(
            address from,
            address to,
            uint256 amount
        ) external returns (bool);
    }
    
    // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
    
    /**
     * @dev Interface for the optional metadata functions from the ERC20 standard.
     *
     * _Available since v4.1._
     */
    interface IERC20Metadata is IERC20 {
        /**
         * @dev Returns the name of the token.
         */
        function name() external view returns (string memory);
    
        /**
         * @dev Returns the symbol of the token.
         */
        function symbol() external view returns (string memory);
    
        /**
         * @dev Returns the decimals places of the token.
         */
        function decimals() external view returns (uint8);
    }
    
    // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
    
    /**
     * @dev Provides information about the current execution context, including the
     * sender of the transaction and its data. While these are generally available
     * via msg.sender and msg.data, they should not be accessed in such a direct
     * manner, since when dealing with meta-transactions the account sending and
     * paying for execution may not be the actual sender (as far as an application
     * is concerned).
     *
     * This contract is only required for intermediate, library-like contracts.
     */
    abstract contract Context {
        function _msgSender() internal view virtual returns (address) {
            return msg.sender;
        }
    
        function _msgData() internal view virtual returns (bytes calldata) {
            return msg.data;
        }
    }
    
    /**
     * @dev Implementation of the {IERC20} interface.
     *
     * This implementation is agnostic to the way tokens are created. This means
     * that a supply mechanism has to be added in a derived contract using {_mint}.
     * For a generic mechanism see {ERC20PresetMinterPauser}.
     *
     * TIP: For a detailed writeup see our guide
     * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
     * to implement supply mechanisms].
     *
     * We have followed general OpenZeppelin Contracts guidelines: functions revert
     * instead returning `false` on failure. This behavior is nonetheless
     * conventional and does not conflict with the expectations of ERC20
     * applications.
     *
     * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
     * This allows applications to reconstruct the allowance for all accounts just
     * by listening to said events. Other implementations of the EIP may not emit
     * these events, as it isn't required by the specification.
     *
     * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
     * functions have been added to mitigate the well-known issues around setting
     * allowances. See {IERC20-approve}.
     */
    contract ERC20 is Context, IERC20, IERC20Metadata {
        mapping(address => uint256) private _balances;
    
        mapping(address => mapping(address => uint256)) private _allowances;
    
        uint256 private _totalSupply;
    
        string private _name;
        string private _symbol;
    
        /**
         * @dev Sets the values for {name} and {symbol}.
         *
         * The default value of {decimals} is 18. To select a different value for
         * {decimals} you should overload it.
         *
         * All two of these values are immutable: they can only be set once during
         * construction.
         */
        constructor(string memory name_, string memory symbol_) {
            _name = name_;
            _symbol = symbol_;
        }
    
        /**
         * @dev Returns the name of the token.
         */
        function name() public view virtual override returns (string memory) {
            return _name;
        }
    
        /**
         * @dev Returns the symbol of the token, usually a shorter version of the
         * name.
         */
        function symbol() public view virtual override returns (string memory) {
            return _symbol;
        }
    
        /**
         * @dev Returns the number of decimals used to get its user representation.
         * For example, if `decimals` equals `2`, a balance of `505` tokens should
         * be displayed to a user as `5.05` (`505 / 10 ** 2`).
         *
         * Tokens usually opt for a value of 18, imitating the relationship between
         * Ether and Wei. This is the value {ERC20} uses, unless this function is
         * overridden;
         *
         * NOTE: This information is only used for _display_ purposes: it in
         * no way affects any of the arithmetic of the contract, including
         * {IERC20-balanceOf} and {IERC20-transfer}.
         */
        function decimals() public view virtual override returns (uint8) {
            return 18;
        }
    
        /**
         * @dev See {IERC20-totalSupply}.
         */
        function totalSupply() public view virtual override returns (uint256) {
            return _totalSupply;
        }
    
        /**
         * @dev See {IERC20-balanceOf}.
         */
        function balanceOf(address account) public view virtual override returns (uint256) {
            return _balances[account];
        }
    
        /**
         * @dev See {IERC20-transfer}.
         *
         * Requirements:
         *
         * - `to` cannot be the zero address.
         * - the caller must have a balance of at least `amount`.
         */
        function transfer(address to, uint256 amount) public virtual override returns (bool) {
            address owner = _msgSender();
            _transfer(owner, to, amount);
            return true;
        }
    
        /**
         * @dev See {IERC20-allowance}.
         */
        function allowance(address owner, address spender) public view virtual override returns (uint256) {
            return _allowances[owner][spender];
        }
    
        /**
         * @dev See {IERC20-approve}.
         *
         * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
         * `transferFrom`. This is semantically equivalent to an infinite approval.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         */
        function approve(address spender, uint256 amount) public virtual override returns (bool) {
            address owner = _msgSender();
            _approve(owner, spender, amount);
            return true;
        }
    
        /**
         * @dev See {IERC20-transferFrom}.
         *
         * Emits an {Approval} event indicating the updated allowance. This is not
         * required by the EIP. See the note at the beginning of {ERC20}.
         *
         * NOTE: Does not update the allowance if the current allowance
         * is the maximum `uint256`.
         *
         * Requirements:
         *
         * - `from` and `to` cannot be the zero address.
         * - `from` must have a balance of at least `amount`.
         * - the caller must have allowance for ``from``'s tokens of at least
         * `amount`.
         */
        function transferFrom(
            address from,
            address to,
            uint256 amount
        ) public virtual override returns (bool) {
            address spender = _msgSender();
            _spendAllowance(from, spender, amount);
            _transfer(from, to, amount);
            return true;
        }
    
        /**
         * @dev Atomically increases the allowance granted to `spender` by the caller.
         *
         * This is an alternative to {approve} that can be used as a mitigation for
         * problems described in {IERC20-approve}.
         *
         * Emits an {Approval} event indicating the updated allowance.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         */
        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            address owner = _msgSender();
            _approve(owner, spender, allowance(owner, spender) + addedValue);
            return true;
        }
    
        /**
         * @dev Atomically decreases the allowance granted to `spender` by the caller.
         *
         * This is an alternative to {approve} that can be used as a mitigation for
         * problems described in {IERC20-approve}.
         *
         * Emits an {Approval} event indicating the updated allowance.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         * - `spender` must have allowance for the caller of at least
         * `subtractedValue`.
         */
        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            address owner = _msgSender();
            uint256 currentAllowance = allowance(owner, spender);
            require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
            unchecked {
                _approve(owner, spender, currentAllowance - subtractedValue);
            }
    
            return true;
        }
    
        /**
         * @dev Moves `amount` of tokens from `from` to `to`.
         *
         * This internal function is equivalent to {transfer}, and can be used to
         * e.g. implement automatic token fees, slashing mechanisms, etc.
         *
         * Emits a {Transfer} event.
         *
         * Requirements:
         *
         * - `from` cannot be the zero address.
         * - `to` cannot be the zero address.
         * - `from` must have a balance of at least `amount`.
         */
        function _transfer(
            address from,
            address to,
            uint256 amount
        ) internal virtual {
            require(from != address(0), "ERC20: transfer from the zero address");
            require(to != address(0), "ERC20: transfer to the zero address");
    
            _beforeTokenTransfer(from, to, amount);
    
            uint256 fromBalance = _balances[from];
            require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
            unchecked {
                _balances[from] = fromBalance - amount;
                // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
                // decrementing then incrementing.
                _balances[to] += amount;
            }
    
            emit Transfer(from, to, amount);
    
            _afterTokenTransfer(from, to, amount);
        }
    
        /** @dev Creates `amount` tokens and assigns them to `account`, increasing
         * the total supply.
         *
         * Emits a {Transfer} event with `from` set to the zero address.
         *
         * Requirements:
         *
         * - `account` cannot be the zero address.
         */
        function _mint(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: mint to the zero address");
    
            _beforeTokenTransfer(address(0), account, amount);
    
            _totalSupply += amount;
            unchecked {
                // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
                _balances[account] += amount;
            }
            emit Transfer(address(0), account, amount);
    
            _afterTokenTransfer(address(0), account, amount);
        }
    
        /**
         * @dev Destroys `amount` tokens from `account`, reducing the
         * total supply.
         *
         * Emits a {Transfer} event with `to` set to the zero address.
         *
         * Requirements:
         *
         * - `account` cannot be the zero address.
         * - `account` must have at least `amount` tokens.
         */
        function _burn(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: burn from the zero address");
    
            _beforeTokenTransfer(account, address(0), amount);
    
            uint256 accountBalance = _balances[account];
            require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
            unchecked {
                _balances[account] = accountBalance - amount;
                // Overflow not possible: amount <= accountBalance <= totalSupply.
                _totalSupply -= amount;
            }
    
            emit Transfer(account, address(0), amount);
    
            _afterTokenTransfer(account, address(0), amount);
        }
    
        /**
         * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
         *
         * This internal function is equivalent to `approve`, and can be used to
         * e.g. set automatic allowances for certain subsystems, etc.
         *
         * Emits an {Approval} event.
         *
         * Requirements:
         *
         * - `owner` cannot be the zero address.
         * - `spender` cannot be the zero address.
         */
        function _approve(
            address owner,
            address spender,
            uint256 amount
        ) internal virtual {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");
    
            _allowances[owner][spender] = amount;
            emit Approval(owner, spender, amount);
        }
    
        /**
         * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
         *
         * Does not update the allowance amount in case of infinite allowance.
         * Revert if not enough allowance is available.
         *
         * Might emit an {Approval} event.
         */
        function _spendAllowance(
            address owner,
            address spender,
            uint256 amount
        ) internal virtual {
            uint256 currentAllowance = allowance(owner, spender);
            if (currentAllowance != type(uint256).max) {
                require(currentAllowance >= amount, "ERC20: insufficient allowance");
                unchecked {
                    _approve(owner, spender, currentAllowance - amount);
                }
            }
        }
    
        /**
         * @dev Hook that is called before any transfer of tokens. This includes
         * minting and burning.
         *
         * Calling conditions:
         *
         * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
         * will be transferred to `to`.
         * - when `from` is zero, `amount` tokens will be minted for `to`.
         * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
         * - `from` and `to` are never both zero.
         *
         * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
         */
        function _beforeTokenTransfer(
            address from,
            address to,
            uint256 amount
        ) internal virtual {}
    
        /**
         * @dev Hook that is called after any transfer of tokens. This includes
         * minting and burning.
         *
         * Calling conditions:
         *
         * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
         * has been transferred to `to`.
         * - when `from` is zero, `amount` tokens have been minted for `to`.
         * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
         * - `from` and `to` are never both zero.
         *
         * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
         */
        function _afterTokenTransfer(
            address from,
            address to,
            uint256 amount
        ) internal virtual {}
    }
    
    // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol)
    
    // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
    
    /**
     * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     */
    interface IERC20Permit {
        /**
         * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
         * given ``owner``'s signed approval.
         *
         * IMPORTANT: The same issues {IERC20-approve} has related to transaction
         * ordering also apply here.
         *
         * Emits an {Approval} event.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         * - `deadline` must be a timestamp in the future.
         * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
         * over the EIP712-formatted function arguments.
         * - the signature must use ``owner``'s current nonce (see {nonces}).
         *
         * For more information on the signature format, see the
         * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
         * section].
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) external;
    
        /**
         * @dev Returns the current nonce for `owner`. This value must be
         * included whenever a signature is generated for {permit}.
         *
         * Every successful call to {permit} increases ``owner``'s nonce by one. This
         * prevents a signature from being used multiple times.
         */
        function nonces(address owner) external view returns (uint256);
    
        /**
         * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view returns (bytes32);
    }
    
    // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)
    
    // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
    
    // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)
    
    /**
     * @dev Standard math utilities missing in the Solidity language.
     */
    library Math {
        enum Rounding {
            Down, // Toward negative infinity
            Up, // Toward infinity
            Zero // Toward zero
        }
    
        /**
         * @dev Returns the largest of two numbers.
         */
        function max(uint256 a, uint256 b) internal pure returns (uint256) {
            return a > b ? a : b;
        }
    
        /**
         * @dev Returns the smallest of two numbers.
         */
        function min(uint256 a, uint256 b) internal pure returns (uint256) {
            return a < b ? a : b;
        }
    
        /**
         * @dev Returns the average of two numbers. The result is rounded towards
         * zero.
         */
        function average(uint256 a, uint256 b) internal pure returns (uint256) {
            // (a + b) / 2 can overflow.
            return (a & b) + (a ^ b) / 2;
        }
    
        /**
         * @dev Returns the ceiling of the division of two numbers.
         *
         * This differs from standard division with `/` in that it rounds up instead
         * of rounding down.
         */
        function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
            // (a + b - 1) / b can overflow on addition, so we distribute.
            return a == 0 ? 0 : (a - 1) / b + 1;
        }
    
        /**
         * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
         * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
         * with further edits by Uniswap Labs also under MIT license.
         */
        function mulDiv(
            uint256 x,
            uint256 y,
            uint256 denominator
        ) internal pure returns (uint256 result) {
            unchecked {
                // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
                // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
                // variables such that product = prod1 * 2^256 + prod0.
                uint256 prod0; // Least significant 256 bits of the product
                uint256 prod1; // Most significant 256 bits of the product
                assembly {
                    let mm := mulmod(x, y, not(0))
                    prod0 := mul(x, y)
                    prod1 := sub(sub(mm, prod0), lt(mm, prod0))
                }
    
                // Handle non-overflow cases, 256 by 256 division.
                if (prod1 == 0) {
                    return prod0 / denominator;
                }
    
                // Make sure the result is less than 2^256. Also prevents denominator == 0.
                require(denominator > prod1);
    
                ///////////////////////////////////////////////
                // 512 by 256 division.
                ///////////////////////////////////////////////
    
                // Make division exact by subtracting the remainder from [prod1 prod0].
                uint256 remainder;
                assembly {
                    // Compute remainder using mulmod.
                    remainder := mulmod(x, y, denominator)
    
                    // Subtract 256 bit number from 512 bit number.
                    prod1 := sub(prod1, gt(remainder, prod0))
                    prod0 := sub(prod0, remainder)
                }
    
                // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
                // See https://cs.stackexchange.com/q/138556/92363.
    
                // Does not overflow because the denominator cannot be zero at this stage in the function.
                uint256 twos = denominator & (~denominator + 1);
                assembly {
                    // Divide denominator by twos.
                    denominator := div(denominator, twos)
    
                    // Divide [prod1 prod0] by twos.
                    prod0 := div(prod0, twos)
    
                    // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                    twos := add(div(sub(0, twos), twos), 1)
                }
    
                // Shift in bits from prod1 into prod0.
                prod0 |= prod1 * twos;
    
                // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
                // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
                // four bits. That is, denominator * inv = 1 mod 2^4.
                uint256 inverse = (3 * denominator) ^ 2;
    
                // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
                // in modular arithmetic, doubling the correct bits in each step.
                inverse *= 2 - denominator * inverse; // inverse mod 2^8
                inverse *= 2 - denominator * inverse; // inverse mod 2^16
                inverse *= 2 - denominator * inverse; // inverse mod 2^32
                inverse *= 2 - denominator * inverse; // inverse mod 2^64
                inverse *= 2 - denominator * inverse; // inverse mod 2^128
                inverse *= 2 - denominator * inverse; // inverse mod 2^256
    
                // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
                // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
                // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
                // is no longer required.
                result = prod0 * inverse;
                return result;
            }
        }
    
        /**
         * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
         */
        function mulDiv(
            uint256 x,
            uint256 y,
            uint256 denominator,
            Rounding rounding
        ) internal pure returns (uint256) {
            uint256 result = mulDiv(x, y, denominator);
            if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
                result += 1;
            }
            return result;
        }
    
        /**
         * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
         *
         * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
         */
        function sqrt(uint256 a) internal pure returns (uint256) {
            if (a == 0) {
                return 0;
            }
    
            // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
            //
            // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
            // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
            //
            // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
            // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
            // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
            //
            // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
            uint256 result = 1 << (log2(a) >> 1);
    
            // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
            // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
            // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
            // into the expected uint128 result.
            unchecked {
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                result = (result + a / result) >> 1;
                return min(result, a / result);
            }
        }
    
        /**
         * @notice Calculates sqrt(a), following the selected rounding direction.
         */
        function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
            unchecked {
                uint256 result = sqrt(a);
                return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
            }
        }
    
        /**
         * @dev Return the log in base 2, rounded down, of a positive value.
         * Returns 0 if given 0.
         */
        function log2(uint256 value) internal pure returns (uint256) {
            uint256 result = 0;
            unchecked {
                if (value >> 128 > 0) {
                    value >>= 128;
                    result += 128;
                }
                if (value >> 64 > 0) {
                    value >>= 64;
                    result += 64;
                }
                if (value >> 32 > 0) {
                    value >>= 32;
                    result += 32;
                }
                if (value >> 16 > 0) {
                    value >>= 16;
                    result += 16;
                }
                if (value >> 8 > 0) {
                    value >>= 8;
                    result += 8;
                }
                if (value >> 4 > 0) {
                    value >>= 4;
                    result += 4;
                }
                if (value >> 2 > 0) {
                    value >>= 2;
                    result += 2;
                }
                if (value >> 1 > 0) {
                    result += 1;
                }
            }
            return result;
        }
    
        /**
         * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
         * Returns 0 if given 0.
         */
        function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
            unchecked {
                uint256 result = log2(value);
                return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
            }
        }
    
        /**
         * @dev Return the log in base 10, rounded down, of a positive value.
         * Returns 0 if given 0.
         */
        function log10(uint256 value) internal pure returns (uint256) {
            uint256 result = 0;
            unchecked {
                if (value >= 10**64) {
                    value /= 10**64;
                    result += 64;
                }
                if (value >= 10**32) {
                    value /= 10**32;
                    result += 32;
                }
                if (value >= 10**16) {
                    value /= 10**16;
                    result += 16;
                }
                if (value >= 10**8) {
                    value /= 10**8;
                    result += 8;
                }
                if (value >= 10**4) {
                    value /= 10**4;
                    result += 4;
                }
                if (value >= 10**2) {
                    value /= 10**2;
                    result += 2;
                }
                if (value >= 10**1) {
                    result += 1;
                }
            }
            return result;
        }
    
        /**
         * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
         * Returns 0 if given 0.
         */
        function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
            unchecked {
                uint256 result = log10(value);
                return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
            }
        }
    
        /**
         * @dev Return the log in base 256, rounded down, of a positive value.
         * Returns 0 if given 0.
         *
         * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
         */
        function log256(uint256 value) internal pure returns (uint256) {
            uint256 result = 0;
            unchecked {
                if (value >> 128 > 0) {
                    value >>= 128;
                    result += 16;
                }
                if (value >> 64 > 0) {
                    value >>= 64;
                    result += 8;
                }
                if (value >> 32 > 0) {
                    value >>= 32;
                    result += 4;
                }
                if (value >> 16 > 0) {
                    value >>= 16;
                    result += 2;
                }
                if (value >> 8 > 0) {
                    result += 1;
                }
            }
            return result;
        }
    
        /**
         * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
         * Returns 0 if given 0.
         */
        function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
            unchecked {
                uint256 result = log256(value);
                return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
            }
        }
    }
    
    /**
     * @dev String operations.
     */
    library Strings {
        bytes16 private constant _SYMBOLS = "0123456789abcdef";
        uint8 private constant _ADDRESS_LENGTH = 20;
    
        /**
         * @dev Converts a `uint256` to its ASCII `string` decimal representation.
         */
        function toString(uint256 value) internal pure returns (string memory) {
            unchecked {
                uint256 length = Math.log10(value) + 1;
                string memory buffer = new string(length);
                uint256 ptr;
                /// @solidity memory-safe-assembly
                assembly {
                    ptr := add(buffer, add(32, length))
                }
                while (true) {
                    ptr--;
                    /// @solidity memory-safe-assembly
                    assembly {
                        mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                    }
                    value /= 10;
                    if (value == 0) break;
                }
                return buffer;
            }
        }
    
        /**
         * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
         */
        function toHexString(uint256 value) internal pure returns (string memory) {
            unchecked {
                return toHexString(value, Math.log256(value) + 1);
            }
        }
    
        /**
         * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
         */
        function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
            bytes memory buffer = new bytes(2 * length + 2);
            buffer[0] = "0";
            buffer[1] = "x";
            for (uint256 i = 2 * length + 1; i > 1; --i) {
                buffer[i] = _SYMBOLS[value & 0xf];
                value >>= 4;
            }
            require(value == 0, "Strings: hex length insufficient");
            return string(buffer);
        }
    
        /**
         * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
         */
        function toHexString(address addr) internal pure returns (string memory) {
            return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
        }
    }
    
    /**
     * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
     *
     * These functions can be used to verify that a message was signed by the holder
     * of the private keys of a given address.
     */
    library ECDSA {
        enum RecoverError {
            NoError,
            InvalidSignature,
            InvalidSignatureLength,
            InvalidSignatureS,
            InvalidSignatureV // Deprecated in v4.8
        }
    
        function _throwError(RecoverError error) private pure {
            if (error == RecoverError.NoError) {
                return; // no error: do nothing
            } else if (error == RecoverError.InvalidSignature) {
                revert("ECDSA: invalid signature");
            } else if (error == RecoverError.InvalidSignatureLength) {
                revert("ECDSA: invalid signature length");
            } else if (error == RecoverError.InvalidSignatureS) {
                revert("ECDSA: invalid signature 's' value");
            }
        }
    
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature` or error string. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         *
         * Documentation for signature generation:
         * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
         * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
         *
         * _Available since v4.3._
         */
        function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
            if (signature.length == 65) {
                bytes32 r;
                bytes32 s;
                uint8 v;
                // ecrecover takes the signature parameters, and the only way to get them
                // currently is to use assembly.
                /// @solidity memory-safe-assembly
                assembly {
                    r := mload(add(signature, 0x20))
                    s := mload(add(signature, 0x40))
                    v := byte(0, mload(add(signature, 0x60)))
                }
                return tryRecover(hash, v, r, s);
            } else {
                return (address(0), RecoverError.InvalidSignatureLength);
            }
        }
    
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature`. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         */
        function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, signature);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
         *
         * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address, RecoverError) {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    
        /**
         * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
         *
         * _Available since v4.2._
         */
        function recover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, r, vs);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
         * `r` and `s` signature fields separately.
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address, RecoverError) {
            // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
            // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
            // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
            // signatures from current libraries generate a unique signature with an s-value in the lower half order.
            //
            // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
            // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
            // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
            // these malleable signatures as well.
            if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
                return (address(0), RecoverError.InvalidSignatureS);
            }
    
            // If the signature is valid (and not malleable), return the signer address
            address signer = ecrecover(hash, v, r, s);
            if (signer == address(0)) {
                return (address(0), RecoverError.InvalidSignature);
            }
    
            return (signer, RecoverError.NoError);
        }
    
        /**
         * @dev Overload of {ECDSA-recover} that receives the `v`,
         * `r` and `s` signature fields separately.
         */
        function recover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Returns an Ethereum Signed Message, created from a `hash`. This
         * produces hash corresponding to the one signed with the
         * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
         * JSON-RPC method as part of EIP-191.
         *
         * See {recover}.
         */
        function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
            // 32 is the length in bytes of hash,
            // enforced by the type signature above
            return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        }
    
        /**
         * @dev Returns an Ethereum Signed Message, created from `s`. This
         * produces hash corresponding to the one signed with the
         * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
         * JSON-RPC method as part of EIP-191.
         *
         * See {recover}.
         */
        function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
            return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
        }
    
        /**
         * @dev Returns an Ethereum Signed Typed Data, created from a
         * `domainSeparator` and a `structHash`. This produces hash corresponding
         * to the one signed with the
         * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
         * JSON-RPC method as part of EIP-712.
         *
         * See {recover}.
         */
        function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
            return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        }
    }
    
    /**
     * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
     *
     * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
     * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
     * they need in their contracts using a combination of `abi.encode` and `keccak256`.
     *
     * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
     * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
     * ({_hashTypedDataV4}).
     *
     * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
     * the chain id to protect against replay attacks on an eventual fork of the chain.
     *
     * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
     * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
     *
     * _Available since v3.4._
     */
    abstract contract EIP712 {
        /* solhint-disable var-name-mixedcase */
        // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
        // invalidate the cached domain separator if the chain id changes.
        bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
        uint256 private immutable _CACHED_CHAIN_ID;
        address private immutable _CACHED_THIS;
    
        bytes32 private immutable _HASHED_NAME;
        bytes32 private immutable _HASHED_VERSION;
        bytes32 private immutable _TYPE_HASH;
    
        /* solhint-enable var-name-mixedcase */
    
        /**
         * @dev Initializes the domain separator and parameter caches.
         *
         * The meaning of `name` and `version` is specified in
         * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
         *
         * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
         * - `version`: the current major version of the signing domain.
         *
         * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
         * contract upgrade].
         */
        constructor(string memory name, string memory version) {
            bytes32 hashedName = keccak256(bytes(name));
            bytes32 hashedVersion = keccak256(bytes(version));
            bytes32 typeHash = keccak256(
                "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
            );
            _HASHED_NAME = hashedName;
            _HASHED_VERSION = hashedVersion;
            _CACHED_CHAIN_ID = block.chainid;
            _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
            _CACHED_THIS = address(this);
            _TYPE_HASH = typeHash;
        }
    
        /**
         * @dev Returns the domain separator for the current chain.
         */
        function _domainSeparatorV4() internal view returns (bytes32) {
            if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
                return _CACHED_DOMAIN_SEPARATOR;
            } else {
                return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
            }
        }
    
        function _buildDomainSeparator(
            bytes32 typeHash,
            bytes32 nameHash,
            bytes32 versionHash
        ) private view returns (bytes32) {
            return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
        }
    
        /**
         * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
         * function returns the hash of the fully encoded EIP712 message for this domain.
         *
         * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
         *
         * ```solidity
         * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
         *     keccak256("Mail(address to,string contents)"),
         *     mailTo,
         *     keccak256(bytes(mailContents))
         * )));
         * address signer = ECDSA.recover(digest, signature);
         * ```
         */
        function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
            return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
        }
    }
    
    // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
    
    /**
     * @title Counters
     * @author Matt Condon (@shrugs)
     * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
     * of elements in a mapping, issuing ERC721 ids, or counting request ids.
     *
     * Include with `using Counters for Counters.Counter;`
     */
    library Counters {
        struct Counter {
            // This variable should never be directly accessed by users of the library: interactions must be restricted to
            // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
            // this feature: see https://github.com/ethereum/solidity/issues/4637
            uint256 _value; // default: 0
        }
    
        function current(Counter storage counter) internal view returns (uint256) {
            return counter._value;
        }
    
        function increment(Counter storage counter) internal {
            unchecked {
                counter._value += 1;
            }
        }
    
        function decrement(Counter storage counter) internal {
            uint256 value = counter._value;
            require(value > 0, "Counter: decrement overflow");
            unchecked {
                counter._value = value - 1;
            }
        }
    
        function reset(Counter storage counter) internal {
            counter._value = 0;
        }
    }
    
    /**
     * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     *
     * _Available since v3.4._
     */
    abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
        using Counters for Counters.Counter;
    
        mapping(address => Counters.Counter) private _nonces;
    
        // solhint-disable-next-line var-name-mixedcase
        bytes32 private constant _PERMIT_TYPEHASH =
            keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
        /**
         * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
         * However, to ensure consistency with the upgradeable transpiler, we will continue
         * to reserve a slot.
         * @custom:oz-renamed-from _PERMIT_TYPEHASH
         */
        // solhint-disable-next-line var-name-mixedcase
        bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;
    
        /**
         * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
         *
         * It's a good idea to use the same `name` that is defined as the ERC20 token name.
         */
        constructor(string memory name) EIP712(name, "1") {}
    
        /**
         * @dev See {IERC20Permit-permit}.
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) public virtual override {
            require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
    
            bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
    
            bytes32 hash = _hashTypedDataV4(structHash);
    
            address signer = ECDSA.recover(hash, v, r, s);
            require(signer == owner, "ERC20Permit: invalid signature");
    
            _approve(owner, spender, value);
        }
    
        /**
         * @dev See {IERC20Permit-nonces}.
         */
        function nonces(address owner) public view virtual override returns (uint256) {
            return _nonces[owner].current();
        }
    
        /**
         * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view override returns (bytes32) {
            return _domainSeparatorV4();
        }
    
        /**
         * @dev "Consume a nonce": return the current value and increment.
         *
         * _Available since v4.1._
         */
        function _useNonce(address owner) internal virtual returns (uint256 current) {
            Counters.Counter storage nonce = _nonces[owner];
            current = nonce.current();
            nonce.increment();
        }
    }
    
    // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
    
    /**
     * @dev Extension of {ERC20} that allows token holders to destroy both their own
     * tokens and those that they have an allowance for, in a way that can be
     * recognized off-chain (via event analysis).
     */
    abstract contract ERC20Burnable is Context, ERC20 {
        /**
         * @dev Destroys `amount` tokens from the caller.
         *
         * See {ERC20-_burn}.
         */
        function burn(uint256 amount) public virtual {
            _burn(_msgSender(), amount);
        }
    
        /**
         * @dev Destroys `amount` tokens from `account`, deducting from the caller's
         * allowance.
         *
         * See {ERC20-_burn} and {ERC20-allowance}.
         *
         * Requirements:
         *
         * - the caller must have allowance for ``accounts``'s tokens of at least
         * `amount`.
         */
        function burnFrom(address account, uint256 amount) public virtual {
            _spendAllowance(account, _msgSender(), amount);
            _burn(account, amount);
        }
    }
    
    // https://docs.synthetix.io/contracts/Owned
    // NO NEED TO AUDIT
    contract Owned {
        address public owner;
        address public nominatedOwner;
    
        constructor (address _owner) {
            require(_owner != address(0), "Owner address cannot be 0");
            owner = _owner;
            emit OwnerChanged(address(0), _owner);
        }
    
        function nominateNewOwner(address _owner) external onlyOwner {
            nominatedOwner = _owner;
            emit OwnerNominated(_owner);
        }
    
        function acceptOwnership() external {
            require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
            emit OwnerChanged(owner, nominatedOwner);
            owner = nominatedOwner;
            nominatedOwner = address(0);
        }
    
        modifier onlyOwner {
            require(msg.sender == owner, "Only the contract owner may perform this action");
            _;
        }
    
        event OwnerNominated(address newOwner);
        event OwnerChanged(address oldOwner, address newOwner);
    }
    
    /// @title Parent contract for frxETH.sol
    /** @notice Combines Openzeppelin's ERC20Permit and ERC20Burnable with Synthetix's Owned. 
        Also includes a list of authorized minters */
    /// @dev frxETH adheres to EIP-712/EIP-2612 and can use permits
    contract ERC20PermitPermissionedMint is ERC20Permit, ERC20Burnable, Owned {
        // Core
        address public timelock_address;
    
        // Minters
        address[] public minters_array; // Allowed to mint
        mapping(address => bool) public minters; // Mapping is also used for faster verification
    
        /* ========== CONSTRUCTOR ========== */
    
        constructor(
            address _creator_address,
            address _timelock_address,
            string memory _name,
            string memory _symbol
        ) 
        ERC20(_name, _symbol)
        ERC20Permit(_name) 
        Owned(_creator_address)
        {
          timelock_address = _timelock_address;
        }
    
        /* ========== MODIFIERS ========== */
    
        modifier onlyByOwnGov() {
            require(msg.sender == timelock_address || msg.sender == owner, "Not owner or timelock");
            _;
        }
    
        modifier onlyMinters() {
           require(minters[msg.sender] == true, "Only minters");
            _;
        } 
    
        /* ========== RESTRICTED FUNCTIONS ========== */
    
        // Used by minters when user redeems
        function minter_burn_from(address b_address, uint256 b_amount) public onlyMinters {
            super.burnFrom(b_address, b_amount);
            emit TokenMinterBurned(b_address, msg.sender, b_amount);
        }
    
        // This function is what other minters will call to mint new tokens 
        function minter_mint(address m_address, uint256 m_amount) public onlyMinters {
            super._mint(m_address, m_amount);
            emit TokenMinterMinted(msg.sender, m_address, m_amount);
        }
    
        // Adds whitelisted minters 
        function addMinter(address minter_address) public onlyByOwnGov {
            require(minter_address != address(0), "Zero address detected");
    
            require(minters[minter_address] == false, "Address already exists");
            minters[minter_address] = true; 
            minters_array.push(minter_address);
    
            emit MinterAdded(minter_address);
        }
    
        // Remove a minter 
        function removeMinter(address minter_address) public onlyByOwnGov {
            require(minter_address != address(0), "Zero address detected");
            require(minters[minter_address] == true, "Address nonexistant");
            
            // Delete from the mapping
            delete minters[minter_address];
    
            // 'Delete' from the array by setting the address to 0x0
            for (uint i = 0; i < minters_array.length; i++){ 
                if (minters_array[i] == minter_address) {
                    minters_array[i] = address(0); // This will leave a null in the array and keep the indices the same
                    break;
                }
            }
    
            emit MinterRemoved(minter_address);
        }
    
        function setTimelock(address _timelock_address) public onlyByOwnGov {
            require(_timelock_address != address(0), "Zero address detected"); 
            timelock_address = _timelock_address;
            emit TimelockChanged(_timelock_address);
        }
    
        /* ========== EVENTS ========== */
        
        event TokenMinterBurned(address indexed from, address indexed to, uint256 amount);
        event TokenMinterMinted(address indexed from, address indexed to, uint256 amount);
        event MinterAdded(address minter_address);
        event MinterRemoved(address minter_address);
        event TimelockChanged(address timelock_address);
    }
    
    contract frxETH is ERC20PermitPermissionedMint {
    
        /* ========== CONSTRUCTOR ========== */
        constructor(
          address _creator_address,
          address _timelock_address
        ) 
        ERC20PermitPermissionedMint(_creator_address, _timelock_address, "Frax Ether", "frxETH") 
        {}
    
    }