false
true

Contract Address Details

0x62CDe9Aa2159461F094e3eaCBa10F7C45C0A6B4f

Token
Mine on DBK Chain (MINE)
Creator
0xa8b6fa–afd8d9 at 0x032985–9f94d1
Balance
0
Tokens
Fetching tokens...
Transactions
3,367 Transactions
Transfers
0 Transfers
Gas Used
175,332,536
Last Balance Update
32232081
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
MineTokenV2




Optimization enabled
true
Compiler version
v0.8.21+commit.d9974bed




Optimization runs
200
EVM Version
paris




Verified at
2026-01-07T19:32:26.612735Z

contracts/Mine.sol

Sol2uml
new
// SPDX-License-Identifier: MIT

/*
V2 
This token serves to reward users with an ETH balance on DBK Chain
It is a simple Proof of Balance check that can be repeated every minute
The amount of tokens-per-ETH generated halves every 210k tokens minted

UPDATES
mint can only be called by EOAs (no smart contract wallets including Rabby Gas account)
A maximum of 40,000 $MINE can be minted every 10 minutes
Users can mint with as little as 0.001 ETH held
*/

pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract MineTokenV2 is ERC20, ReentrancyGuard {
    uint256 public constant MINEV1_SUPPLY = 1_072_312 * 10 ** 18;
    uint256 public constant MAX_SUPPLY = 21_000_000 * 10 ** 18; // 21 million tokens
    uint256 public constant MIN_ETH_BALANCE = 0.001 ether;
    uint256 public constant MINT_COOLDOWN = 60 seconds; // 1 minute
    uint256 public constant INITIAL_MULTIPLIER = 2048;  // starting at 6th epoch for v2
    uint256 public constant HALVING_INTERVAL = 210_000 * 10 ** 18; // Halve every 210k tokens minted

    uint256 public constant CHUNK_SIZE = 600; // 10 minute chunks
    uint256 public constant MAX_MINT_PER_CHUNK = 40_000 * 10 ** 18;

    uint256 public currentMultiplier = INITIAL_MULTIPLIER;
    uint256 public nextHalvingThreshold = HALVING_INTERVAL * 6; // starting at 6th epoch for v2

    uint256 public startTime;

    mapping(address => uint256) public lastMintTime;
 
    event Halving(uint256 newMultiplier, uint256 nextThreshold);
    event Minted(address indexed miner, uint256 amount, uint256 ethBalance);
    
    constructor() ERC20("Mine on DBK Chain", "MINE") {
        // mint the top holders of MINE V1 their mine
        _mint(0xaFD8094A8A3ec62389B8949749E1aEfa639595a4, 470_204 * 10 ** 18);
        _mint(0x9a56ccDA82067934aE90EC54708E976e0C3B68BD, 279_829 * 10 ** 18);
        _mint(0x8DE3c3891268502F77DB7E876d727257DEc0F852, 64_801 * 10 ** 18);
        _mint(0xE8176e7F80845Bf155cc02c26899344c0EbCaeb8, 7_304 * 10 ** 18);
        _mint(0xb406359921ED307042019D8dD5ddC22949B64703, 6_117 * 10 ** 18);

        // mint the supply of the remaining holders to the Unofficial Mine Treasury to be airdropped 
        // to the remaining v1 holders
        _mint(0x9a56ccDA82067934aE90EC54708E976e0C3B68BD, 244_057 * 10 ** 18);
        require(MINEV1_SUPPLY == totalSupply(), "check your math dev");

        startTime = block.timestamp;
    }
    
    function maxSupplyNow() public view returns (uint256) {
        uint256 elapsed = block.timestamp - startTime;
        uint256 elapsedChunks = elapsed / CHUNK_SIZE;
        return MAX_MINT_PER_CHUNK * (elapsedChunks + 1) + MINEV1_SUPPLY;
    }
    
    function mint() external nonReentrant {
        require(msg.sender == tx.origin, "Cannot call mint from a contract");
        require(totalSupply() < MAX_SUPPLY, "Max supply reached");
        require(totalSupply() < maxSupplyNow(), "Max supply based on timestamp reached");
        require(msg.sender.balance >= MIN_ETH_BALANCE, "Insufficient ETH balance");
        require(block.timestamp >= lastMintTime[msg.sender] + MINT_COOLDOWN, "Mint cooldown active");
        
        // Calculate mint amount based on ETH balance and current multiplier
        uint256 ethBalance = msg.sender.balance;
        uint256 mintAmount = ethBalance * currentMultiplier;
        
        // Ensure mint amount is reasonable
        require(mintAmount > 0, "Mint amount must be positive");
        
        // Ensure we don't exceed max supply
        uint256 remainingSupply = MAX_SUPPLY - totalSupply();
        if (mintAmount > remainingSupply) {
            mintAmount = remainingSupply;
        }

        // Ensure we don't exceed maxSupplyNow
        uint256 remainingSupplyChunk = maxSupplyNow() - totalSupply();
        if (mintAmount > remainingSupplyChunk) {
            mintAmount = remainingSupplyChunk;
        }
        
        lastMintTime[msg.sender] = block.timestamp;

        if (totalSupply() + mintAmount >= nextHalvingThreshold && currentMultiplier > 1) {
            _halveMultiplier();
        }
        _mint(msg.sender, mintAmount);
        emit Minted(msg.sender, mintAmount, ethBalance);
        
    }
    
    function _halveMultiplier() internal {
        // Halve the multiplier (minimum 1)
        uint256 newMultiplier = currentMultiplier / 2;
        if (newMultiplier < 1) {
            newMultiplier = 1;
        }
        
        currentMultiplier = newMultiplier;
        nextHalvingThreshold += HALVING_INTERVAL;
        
        emit Halving(newMultiplier, nextHalvingThreshold);
    }
    
    // Helper function to check if an address can mint
    function canMint(address account) external view returns (bool) {
        return block.timestamp >= lastMintTime[account] + MINT_COOLDOWN && 
               account.balance >= MIN_ETH_BALANCE &&
               totalSupply() < MAX_SUPPLY;
    }
    
    // Helper function to get next mint time for an address
    function getNextMintTime(address account) external view returns (uint256) {
        if (lastMintTime[account] == 0) {
            return 0; // Can mint immediately if never minted before
        }
        return lastMintTime[account] + MINT_COOLDOWN;
    }
    
    // Helper function to calculate mint amount for an address
    function getMintAmount(address account) external view returns (uint256) {
        if (account.balance < MIN_ETH_BALANCE) {
            return 0;
        }
        
        uint256 ethBalance = account.balance;
        uint256 mintAmount = ethBalance * currentMultiplier;
        uint256 remainingSupply = MAX_SUPPLY - totalSupply();
        if (mintAmount > remainingSupply) {
            mintAmount = remainingSupply;
        }

        uint256 remainingSupplyChunk = maxSupplyNow() - totalSupply();
        if (mintAmount > remainingSupplyChunk) {
            mintAmount = remainingSupplyChunk;
        }
        
        return mintAmount > remainingSupply ? remainingSupply : mintAmount;
    }
    
    // Get current emission details
    function getEmissionInfo() external view returns (
        uint256 multiplier,
        uint256 nextHalvingAt,
        uint256 tokensUntilHalving,
        uint256 halvingCount
    ) {
        multiplier = currentMultiplier;
        nextHalvingAt = nextHalvingThreshold;
        tokensUntilHalving = nextHalvingThreshold > totalSupply() ? nextHalvingThreshold - totalSupply() : 0;
        halvingCount = (nextHalvingThreshold - HALVING_INTERVAL) / HALVING_INTERVAL;
    }
    
}
        

@openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}
          

@openzeppelin/contracts/token/ERC20/ERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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/token/ERC20/extensions/IERC20Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.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/utils/Context.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}
          

Compiler Settings

{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{},"evmVersion":"paris"}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Halving","inputs":[{"type":"uint256","name":"newMultiplier","internalType":"uint256","indexed":false},{"type":"uint256","name":"nextThreshold","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Minted","inputs":[{"type":"address","name":"miner","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"ethBalance","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"CHUNK_SIZE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"HALVING_INTERVAL","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_MULTIPLIER","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_MINT_PER_CHUNK","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MINEV1_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MINT_COOLDOWN","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MIN_ETH_BALANCE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"canMint","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"currentMultiplier","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"multiplier","internalType":"uint256"},{"type":"uint256","name":"nextHalvingAt","internalType":"uint256"},{"type":"uint256","name":"tokensUntilHalving","internalType":"uint256"},{"type":"uint256","name":"halvingCount","internalType":"uint256"}],"name":"getEmissionInfo","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getMintAmount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getNextMintTime","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastMintTime","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupplyNow","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nextHalvingThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"startTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]}]
              

Contract Creation Code

0x6080604052610800600655692c781f708c509f4000006006620000239190620002e8565b6007553480156200003357600080fd5b506040518060400160405280601181526020017026b4b7329037b7102221259021b430b4b760791b815250604051806040016040528060048152602001634d494e4560e01b81525081600390816200008c9190620003ac565b5060046200009b8282620003ac565b5050600160055550620000cd73afd8094a8a3ec62389b8949749e1aefa639595a4696391cf56a0701d7000006200020a565b620000f7739a56ccda82067934ae90ec54708e976e0c3b68bd693b418f7c066aaf3400006200020a565b62000121738de3c3891268502f77db7e876d727257dec0f852690db8de87199667e400006200020a565b6200014b73e8176e7f80845bf155cc02c26899344c0ebcaeb869018bf35cb5bfdd2000006200020a565b6200017573b406359921ed307042019d8dd5ddc22949b6470369014b9a6d92beb87400006200020a565b6200019f739a56ccda82067934ae90ec54708e976e0c3b68bd6933ae5b424e9875c400006200020a565b60025469e312266657883fe0000014620002005760405162461bcd60e51b815260206004820152601360248201527f636865636b20796f7572206d617468206465760000000000000000000000000060448201526064015b60405180910390fd5b426008556200048e565b6001600160a01b038216620002625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001f7565b806002600082825462000276919062000478565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620003025762000302620002d2565b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200033357607f821691505b6020821081036200035457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cd57600081815260208120601f850160051c81016020861015620003835750805b601f850160051c820191505b81811015620003a4578281556001016200038f565b505050505050565b81516001600160401b03811115620003c857620003c862000308565b620003e081620003d984546200031e565b846200035a565b602080601f831160018114620004185760008415620003ff5750858301515b600019600386901b1c1916600185901b178555620003a4565b600085815260208120601f198616915b82811015620004495788860151825594840194600190910190840162000428565b5085821015620004685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003025762000302620002d2565b6111d0806200049e6000396000f3fe608060405234801561001057600080fd5b50600436106101ce5760003560e01c80636fbaaa1e11610104578063a9059cbb116100a2578063e91e13a911610071578063e91e13a9146103be578063f4309c40146103c7578063f7ee7a43146103cf578063fcf85bb4146103d757600080fd5b8063a9059cbb1461035d578063c2ba474414610370578063d12ececf14610383578063dd62ed3e146103ab57600080fd5b806395d89b41116100de57806395d89b411461031c5780639db78604146103245780639fcbf58114610337578063a457c2d71461034a57600080fd5b80636fbaaa1e146102e157806370a08231146102ea57806378e979251461031357600080fd5b8063313ce567116101715780635fd9491d1161014b5780635fd9491d14610296578063603bea6d146102a75780636aa71d18146102b85780636f0b8fe8146102d857600080fd5b8063313ce5671461026257806332cb6b0c14610271578063395093511461028357600080fd5b80631249c58b116101ad5780631249c58b1461022f57806318160ddd1461023957806323b872dd146102415780632895f1c11461025457600080fd5b8062f3dcf8146101d357806306fdde03146101f7578063095ea7b31461020c575b600080fd5b6101e469e312266657883fe0000081565b6040519081526020015b60405180910390f35b6101ff6103e0565b6040516101ee9190610fc6565b61021f61021a366004611030565b610472565b60405190151581526020016101ee565b61023761048c565b005b6002546101e4565b61021f61024f36600461105a565b6107b8565b6101e466038d7ea4c6800081565b604051601281526020016101ee565b6101e46a115eec47f6cf7e3500000081565b61021f610291366004611030565b6107dc565b6101e4692c781f708c509f40000081565b6101e4690878678326eac900000081565b6101e46102c6366004611096565b60096020526000908152604090205481565b6101e461080081565b6101e460065481565b6101e46102f8366004611096565b6001600160a01b031660009081526020819052604090205490565b6101e460085481565b6101ff6107fe565b6101e4610332366004611096565b61080d565b6101e4610345366004611096565b610859565b61021f610358366004611030565b61090c565b61021f61036b366004611030565b610987565b61021f61037e366004611096565b610995565b61038b6109fd565b6040805194855260208501939093529183015260608201526080016101ee565b6101e46103b93660046110b8565b610a5b565b6101e461025881565b6101e4610a86565b6101e4603c81565b6101e460075481565b6060600380546103ef906110eb565b80601f016020809104026020016040519081016040528092919081815260200182805461041b906110eb565b80156104685780601f1061043d57610100808354040283529160200191610468565b820191906000526020600020905b81548152906001019060200180831161044b57829003601f168201915b5050505050905090565b600033610480818585610ae4565b60019150505b92915050565b610494610c08565b3332146104e85760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742063616c6c206d696e742066726f6d206120636f6e747261637460448201526064015b60405180910390fd5b6a115eec47f6cf7e350000006104fd60025490565b1061053f5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016104df565b610547610a86565b600254106105a55760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206261736564206f6e2074696d657374616d702072656044820152641858da195960da1b60648201526084016104df565b66038d7ea4c68000333110156105fd5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74204554482062616c616e6365000000000000000060448201526064016104df565b3360009081526009602052604090205461061990603c9061113b565b42101561065f5760405162461bcd60e51b81526020600482015260146024820152734d696e7420636f6f6c646f776e2061637469766560601b60448201526064016104df565b600654333190600090610672908361114e565b9050600081116106c45760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420616d6f756e74206d75737420626520706f7369746976650000000060448201526064016104df565b60006106cf60025490565b6106e4906a115eec47f6cf7e35000000611165565b9050808211156106f2578091505b60006106fd60025490565b610705610a86565b61070f9190611165565b90508083111561071d578092505b3360009081526009602052604090204290556007548361073c60025490565b610746919061113b565b1015801561075657506001600654115b1561076357610763610c61565b61076d3384610ce9565b604080518481526020810186905233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a2505050506107b66001600555565b565b6000336107c6858285610da8565b6107d1858585610e22565b506001949350505050565b6000336104808185856107ef8383610a5b565b6107f9919061113b565b610ae4565b6060600480546103ef906110eb565b6001600160a01b038116600090815260096020526040812054810361083457506000919050565b6001600160a01b03821660009081526009602052604090205461048690603c9061113b565b600066038d7ea4c68000826001600160a01b031631101561087c57506000919050565b6006546001600160a01b0383163190600090610898908361114e565b905060006108a560025490565b6108ba906a115eec47f6cf7e35000000611165565b9050808211156108c8578091505b60006108d360025490565b6108db610a86565b6108e59190611165565b9050808311156108f3578092505b8183116109005782610902565b815b9695505050505050565b6000338161091a8286610a5b565b90508381101561097a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104df565b6107d18286868403610ae4565b600033610480818585610e22565b6001600160a01b0381166000908152600960205260408120546109ba90603c9061113b565b42101580156109da575066038d7ea4c68000826001600160a01b03163110155b801561048657506a115eec47f6cf7e350000006109f660025490565b1092915050565b600654600754600080610a0f60025490565b60075411610a1e576000610a2e565b600254600754610a2e9190611165565b9150692c781f708c509f40000080600754610a499190611165565b610a539190611178565b905090919293565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008060085442610a979190611165565b90506000610aa761025883611178565b905069e312266657883fe00000610abf82600161113b565b610ad390690878678326eac900000061114e565b610add919061113b565b9250505090565b6001600160a01b038316610b465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104df565b6001600160a01b038216610ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104df565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600260055403610c5a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b6002600555565b60006002600654610c729190611178565b90506001811015610c81575060015b80600681905550692c781f708c509f40000060076000828254610ca4919061113b565b90915550506007546040805183815260208101929092527f394823b0bcaf78cd8f5876a52c05dbab91512a05f5da2a31e239a11ab66d605f910160405180910390a150565b6001600160a01b038216610d3f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104df565b8060026000828254610d51919061113b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610db48484610a5b565b90506000198114610e1c5781811015610e0f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104df565b610e1c8484848403610ae4565b50505050565b6001600160a01b038316610e865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104df565b6001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104df565b6001600160a01b03831660009081526020819052604090205481811015610f605760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104df565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e1c565b600060208083528351808285015260005b81811015610ff357858101830151858201604001528201610fd7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611014565b946020939093013593505050565b60008060006060848603121561106f57600080fd5b61107884611014565b925061108660208501611014565b9150604084013590509250925092565b6000602082840312156110a857600080fd5b6110b182611014565b9392505050565b600080604083850312156110cb57600080fd5b6110d483611014565b91506110e260208401611014565b90509250929050565b600181811c908216806110ff57607f821691505b60208210810361111f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561048657610486611125565b808202811582820484141761048657610486611125565b8181038181111561048657610486611125565b60008261119557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205f76ec40495900bd6da1d5f070831b709c08256a58ceb4db9989df7eae1815d164736f6c63430008150033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c80636fbaaa1e11610104578063a9059cbb116100a2578063e91e13a911610071578063e91e13a9146103be578063f4309c40146103c7578063f7ee7a43146103cf578063fcf85bb4146103d757600080fd5b8063a9059cbb1461035d578063c2ba474414610370578063d12ececf14610383578063dd62ed3e146103ab57600080fd5b806395d89b41116100de57806395d89b411461031c5780639db78604146103245780639fcbf58114610337578063a457c2d71461034a57600080fd5b80636fbaaa1e146102e157806370a08231146102ea57806378e979251461031357600080fd5b8063313ce567116101715780635fd9491d1161014b5780635fd9491d14610296578063603bea6d146102a75780636aa71d18146102b85780636f0b8fe8146102d857600080fd5b8063313ce5671461026257806332cb6b0c14610271578063395093511461028357600080fd5b80631249c58b116101ad5780631249c58b1461022f57806318160ddd1461023957806323b872dd146102415780632895f1c11461025457600080fd5b8062f3dcf8146101d357806306fdde03146101f7578063095ea7b31461020c575b600080fd5b6101e469e312266657883fe0000081565b6040519081526020015b60405180910390f35b6101ff6103e0565b6040516101ee9190610fc6565b61021f61021a366004611030565b610472565b60405190151581526020016101ee565b61023761048c565b005b6002546101e4565b61021f61024f36600461105a565b6107b8565b6101e466038d7ea4c6800081565b604051601281526020016101ee565b6101e46a115eec47f6cf7e3500000081565b61021f610291366004611030565b6107dc565b6101e4692c781f708c509f40000081565b6101e4690878678326eac900000081565b6101e46102c6366004611096565b60096020526000908152604090205481565b6101e461080081565b6101e460065481565b6101e46102f8366004611096565b6001600160a01b031660009081526020819052604090205490565b6101e460085481565b6101ff6107fe565b6101e4610332366004611096565b61080d565b6101e4610345366004611096565b610859565b61021f610358366004611030565b61090c565b61021f61036b366004611030565b610987565b61021f61037e366004611096565b610995565b61038b6109fd565b6040805194855260208501939093529183015260608201526080016101ee565b6101e46103b93660046110b8565b610a5b565b6101e461025881565b6101e4610a86565b6101e4603c81565b6101e460075481565b6060600380546103ef906110eb565b80601f016020809104026020016040519081016040528092919081815260200182805461041b906110eb565b80156104685780601f1061043d57610100808354040283529160200191610468565b820191906000526020600020905b81548152906001019060200180831161044b57829003601f168201915b5050505050905090565b600033610480818585610ae4565b60019150505b92915050565b610494610c08565b3332146104e85760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742063616c6c206d696e742066726f6d206120636f6e747261637460448201526064015b60405180910390fd5b6a115eec47f6cf7e350000006104fd60025490565b1061053f5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016104df565b610547610a86565b600254106105a55760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206261736564206f6e2074696d657374616d702072656044820152641858da195960da1b60648201526084016104df565b66038d7ea4c68000333110156105fd5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74204554482062616c616e6365000000000000000060448201526064016104df565b3360009081526009602052604090205461061990603c9061113b565b42101561065f5760405162461bcd60e51b81526020600482015260146024820152734d696e7420636f6f6c646f776e2061637469766560601b60448201526064016104df565b600654333190600090610672908361114e565b9050600081116106c45760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420616d6f756e74206d75737420626520706f7369746976650000000060448201526064016104df565b60006106cf60025490565b6106e4906a115eec47f6cf7e35000000611165565b9050808211156106f2578091505b60006106fd60025490565b610705610a86565b61070f9190611165565b90508083111561071d578092505b3360009081526009602052604090204290556007548361073c60025490565b610746919061113b565b1015801561075657506001600654115b1561076357610763610c61565b61076d3384610ce9565b604080518481526020810186905233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a2505050506107b66001600555565b565b6000336107c6858285610da8565b6107d1858585610e22565b506001949350505050565b6000336104808185856107ef8383610a5b565b6107f9919061113b565b610ae4565b6060600480546103ef906110eb565b6001600160a01b038116600090815260096020526040812054810361083457506000919050565b6001600160a01b03821660009081526009602052604090205461048690603c9061113b565b600066038d7ea4c68000826001600160a01b031631101561087c57506000919050565b6006546001600160a01b0383163190600090610898908361114e565b905060006108a560025490565b6108ba906a115eec47f6cf7e35000000611165565b9050808211156108c8578091505b60006108d360025490565b6108db610a86565b6108e59190611165565b9050808311156108f3578092505b8183116109005782610902565b815b9695505050505050565b6000338161091a8286610a5b565b90508381101561097a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104df565b6107d18286868403610ae4565b600033610480818585610e22565b6001600160a01b0381166000908152600960205260408120546109ba90603c9061113b565b42101580156109da575066038d7ea4c68000826001600160a01b03163110155b801561048657506a115eec47f6cf7e350000006109f660025490565b1092915050565b600654600754600080610a0f60025490565b60075411610a1e576000610a2e565b600254600754610a2e9190611165565b9150692c781f708c509f40000080600754610a499190611165565b610a539190611178565b905090919293565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008060085442610a979190611165565b90506000610aa761025883611178565b905069e312266657883fe00000610abf82600161113b565b610ad390690878678326eac900000061114e565b610add919061113b565b9250505090565b6001600160a01b038316610b465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104df565b6001600160a01b038216610ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104df565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600260055403610c5a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b6002600555565b60006002600654610c729190611178565b90506001811015610c81575060015b80600681905550692c781f708c509f40000060076000828254610ca4919061113b565b90915550506007546040805183815260208101929092527f394823b0bcaf78cd8f5876a52c05dbab91512a05f5da2a31e239a11ab66d605f910160405180910390a150565b6001600160a01b038216610d3f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104df565b8060026000828254610d51919061113b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610db48484610a5b565b90506000198114610e1c5781811015610e0f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104df565b610e1c8484848403610ae4565b50505050565b6001600160a01b038316610e865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104df565b6001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104df565b6001600160a01b03831660009081526020819052604090205481811015610f605760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104df565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e1c565b600060208083528351808285015260005b81811015610ff357858101830151858201604001528201610fd7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611014565b946020939093013593505050565b60008060006060848603121561106f57600080fd5b61107884611014565b925061108660208501611014565b9150604084013590509250925092565b6000602082840312156110a857600080fd5b6110b182611014565b9392505050565b600080604083850312156110cb57600080fd5b6110d483611014565b91506110e260208401611014565b90509250929050565b600181811c908216806110ff57607f821691505b60208210810361111f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561048657610486611125565b808202811582820484141761048657610486611125565b8181038181111561048657610486611125565b60008261119557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205f76ec40495900bd6da1d5f070831b709c08256a58ceb4db9989df7eae1815d164736f6c63430008150033