APE Price: $1.32 (-14.28%)

Token

Ape Monkey (🐒)

Overview

Max Total Supply

13,210 🐒

Holders

13,153

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.017525278908698879 🐒

Value
$0.00
0x537f8c012b75d7847557f9977fe056b8d14cd829
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ApeMonkey

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-20
*/

// SPDX-License-Identifier: GPL-3.0
/*

 ░▒▓██████▓▒░░▒▓███████▓▒░░▒▓████████▓▒░      ░▒▓██████████████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░ 
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░░▒▓█▓▒░ 
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░░▒▓█▓▒░ 
░▒▓████████▓▒░▒▓███████▓▒░░▒▓██████▓▒░        ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░░▒▓██████▓▒░  ░▒▓██████▓▒░  
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░             ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░         ░▒▓█▓▒░     
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░             ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░         ░▒▓█▓▒░     
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓████████▓▒░      ░▒▓█▓▒░░▒▓█▓▒░░▒▓█▓▒░░▒▓██████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░  ░▒▓█▓▒░     
                                                                                                                                                                                  
Twitter/X: https://x.com/ApeMonkey_     
                                                             
*/

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/FreeMintToken.sol


pragma solidity ^0.8.26;


contract ApeMonkey is ERC20, Ownable {

    uint256 public constant MAX_MINTS_PER_BLOCK = 69;
    mapping(uint256 => uint256) public mintCountPerBlock;
    uint public constant MAX_SUPPLY = 10000000 * 1 ether;
    uint public constant MINT_AMOUNT = 1 * 1 ether;
    mapping(address => bool) private hasMinted;

    constructor() ERC20("Ape Monkey", unicode"🐒") Ownable(msg.sender) {

    }

    function mint() external {
        require(totalSupply() + MINT_AMOUNT <= MAX_SUPPLY, "Total supply exceeded");
        require(!hasMinted[msg.sender], "Address has already minted");
        require(msg.sender == tx.origin, "Contracts are not allowed to mint");
        uint256 currentBlock = block.number;
        require(mintCountPerBlock[currentBlock] < MAX_MINTS_PER_BLOCK, "Minting limit reached for this block");

        mintCountPerBlock[currentBlock] += 1;
        hasMinted[msg.sender] = true;

        uint fivePercent = MINT_AMOUNT * 5 / 100;
        _mint(address(this), fivePercent);
        _mint(msg.sender, MINT_AMOUNT - fivePercent);
    }


    function donate(address tokenAddress, address daoAddress) external onlyOwner {
        IERC20 tokenContract = IERC20(tokenAddress);
        uint256 totalBalance = tokenContract.balanceOf(address(this));
        if(totalBalance > 0) {
            tokenContract.transfer(daoAddress, totalBalance);
        }

        if(address(this).balance > 0) {
            payable(daoAddress).transfer(address(this).balance);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"daoAddress","type":"address"}],"name":"donate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintCountPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50336040518060400160405280600a81526020017f417065204d6f6e6b6579000000000000000000000000000000000000000000008152506040518060400160405280600481526020017ff09f909200000000000000000000000000000000000000000000000000000000815250816003908161008c9190610421565b50806004908161009c9190610421565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610106919061052f565b60405180910390fd5b61011e8161012460201b60201c565b50610548565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061026257607f821691505b6020821081036102755761027461021e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261029c565b6102e1868361029c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61032561032061031b846102f9565b610302565b6102f9565b9050919050565b5f819050919050565b61033e8361030b565b61035261034a8261032c565b8484546102a8565b825550505050565b5f90565b61036661035a565b610371818484610335565b505050565b5b81811015610394576103895f8261035e565b600181019050610377565b5050565b601f8211156103d9576103aa8161027b565b6103b38461028d565b810160208510156103c2578190505b6103d66103ce8561028d565b830182610376565b50505b505050565b5f82821c905092915050565b5f6103f95f19846008026103de565b1980831691505092915050565b5f61041183836103ea565b9150826002028217905092915050565b61042a826101e7565b67ffffffffffffffff811115610443576104426101f1565b5b61044d825461024b565b610458828285610398565b5f60209050601f831160018114610489575f8415610477578287015190505b6104818582610406565b8655506104e8565b601f1984166104978661027b565b5f5b828110156104be57848901518255600182019150602085019450602081019050610499565b868310156104db57848901516104d7601f8916826103ea565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610519826104f0565b9050919050565b6105298161050f565b82525050565b5f6020820190506105425f830184610520565b92915050565b61199b806105555f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80635427789c116100a057806395d89b411161006f57806395d89b41146102bc578063a9059cbb146102da578063dd62ed3e1461030a578063e2da2b4f1461033a578063f2fde38b1461035857610114565b80635427789c1461024657806370a0823114610264578063715018a6146102945780638da5cb5b1461029e57610114565b806321bea7cc116100e757806321bea7cc1461018e57806323b872dd146101aa578063313ce567146101da57806332cb6b0c146101f85780634eed96661461021657610114565b806306fdde0314610118578063095ea7b3146101365780631249c58b1461016657806318160ddd14610170575b5f80fd5b610120610374565b60405161012d9190611271565b60405180910390f35b610150600480360381019061014b9190611322565b610404565b60405161015d919061137a565b60405180910390f35b61016e610426565b005b6101786106aa565b60405161018591906113a2565b60405180910390f35b6101a860048036038101906101a391906113bb565b6106b3565b005b6101c460048036038101906101bf91906113f9565b610812565b6040516101d1919061137a565b60405180910390f35b6101e2610840565b6040516101ef9190611464565b60405180910390f35b610200610848565b60405161020d91906113a2565b60405180910390f35b610230600480360381019061022b919061147d565b610857565b60405161023d91906113a2565b60405180910390f35b61024e61086c565b60405161025b91906113a2565b60405180910390f35b61027e600480360381019061027991906114a8565b610878565b60405161028b91906113a2565b60405180910390f35b61029c6108bd565b005b6102a66108d0565b6040516102b391906114e2565b60405180910390f35b6102c46108f8565b6040516102d19190611271565b60405180910390f35b6102f460048036038101906102ef9190611322565b610988565b604051610301919061137a565b60405180910390f35b610324600480360381019061031f91906113bb565b6109aa565b60405161033191906113a2565b60405180910390f35b610342610a2c565b60405161034f91906113a2565b60405180910390f35b610372600480360381019061036d91906114a8565b610a31565b005b60606003805461038390611528565b80601f01602080910402602001604051908101604052809291908181526020018280546103af90611528565b80156103fa5780601f106103d1576101008083540402835291602001916103fa565b820191905f5260205f20905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b5f8061040e610ab5565b905061041b818585610abc565b600191505092915050565b6a084595161401484a000000670de0b6b3a76400006104436106aa565b61044d9190611585565b111561048e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048590611602565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050f9061166a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d906116f8565b60405180910390fd5b5f439050604560065f8381526020019081526020015f2054106105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d590611786565b60405180910390fd5b600160065f8381526020019081526020015f205f8282546105ff9190611585565b92505081905550600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f60646005670de0b6b3a764000061067391906117a4565b61067d9190611812565b90506106893082610ace565b6106a63382670de0b6b3a76400006106a19190611842565b610ace565b5050565b5f600254905090565b6106bb610b4d565b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106f991906114e2565b602060405180830381865afa158015610714573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107389190611889565b90505f8111156107bf578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161077d9291906118b4565b6020604051808303815f875af1158015610799573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bd9190611905565b505b5f47111561080c578273ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561080a573d5f803e3d5ffd5b505b50505050565b5f8061081c610ab5565b9050610829858285610bd4565b610834858585610c66565b60019150509392505050565b5f6012905090565b6a084595161401484a00000081565b6006602052805f5260405f205f915090505481565b670de0b6b3a764000081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108c5610b4d565b6108ce5f610d56565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090790611528565b80601f016020809104026020016040519081016040528092919081815260200182805461093390611528565b801561097e5780601f106109555761010080835404028352916020019161097e565b820191905f5260205f20905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b5f80610992610ab5565b905061099f818585610c66565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b604581565b610a39610b4d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa9575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aa091906114e2565b60405180910390fd5b610ab281610d56565b50565b5f33905090565b610ac98383836001610e19565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b3591906114e2565b60405180910390fd5b610b495f8383610fe8565b5050565b610b55610ab5565b73ffffffffffffffffffffffffffffffffffffffff16610b736108d0565b73ffffffffffffffffffffffffffffffffffffffff1614610bd257610b96610ab5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bc991906114e2565b60405180910390fd5b565b5f610bdf84846109aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c605781811015610c51578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c4893929190611930565b60405180910390fd5b610c5f84848484035f610e19565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ccd91906114e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d46575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d3d91906114e2565b60405180910390fd5b610d51838383610fe8565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e89575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e8091906114e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ef091906114e2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fe2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fd991906113a2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611038578060025f82825461102c9190611585565b92505081905550611106565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110c1578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016110b893929190611930565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114d578060025f8282540392505081905550611197565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f491906113a2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61124382611201565b61124d818561120b565b935061125d81856020860161121b565b61126681611229565b840191505092915050565b5f6020820190508181035f8301526112898184611239565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112be82611295565b9050919050565b6112ce816112b4565b81146112d8575f80fd5b50565b5f813590506112e9816112c5565b92915050565b5f819050919050565b611301816112ef565b811461130b575f80fd5b50565b5f8135905061131c816112f8565b92915050565b5f806040838503121561133857611337611291565b5b5f611345858286016112db565b92505060206113568582860161130e565b9150509250929050565b5f8115159050919050565b61137481611360565b82525050565b5f60208201905061138d5f83018461136b565b92915050565b61139c816112ef565b82525050565b5f6020820190506113b55f830184611393565b92915050565b5f80604083850312156113d1576113d0611291565b5b5f6113de858286016112db565b92505060206113ef858286016112db565b9150509250929050565b5f805f606084860312156114105761140f611291565b5b5f61141d868287016112db565b935050602061142e868287016112db565b925050604061143f8682870161130e565b9150509250925092565b5f60ff82169050919050565b61145e81611449565b82525050565b5f6020820190506114775f830184611455565b92915050565b5f6020828403121561149257611491611291565b5b5f61149f8482850161130e565b91505092915050565b5f602082840312156114bd576114bc611291565b5b5f6114ca848285016112db565b91505092915050565b6114dc816112b4565b82525050565b5f6020820190506114f55f8301846114d3565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061153f57607f821691505b602082108103611552576115516114fb565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61158f826112ef565b915061159a836112ef565b92508282019050808211156115b2576115b1611558565b5b92915050565b7f546f74616c20737570706c7920657863656564656400000000000000000000005f82015250565b5f6115ec60158361120b565b91506115f7826115b8565b602082019050919050565b5f6020820190508181035f830152611619816115e0565b9050919050565b7f416464726573732068617320616c7265616479206d696e7465640000000000005f82015250565b5f611654601a8361120b565b915061165f82611620565b602082019050919050565b5f6020820190508181035f83015261168181611648565b9050919050565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116e260218361120b565b91506116ed82611688565b604082019050919050565b5f6020820190508181035f83015261170f816116d6565b9050919050565b7f4d696e74696e67206c696d6974207265616368656420666f72207468697320625f8201527f6c6f636b00000000000000000000000000000000000000000000000000000000602082015250565b5f61177060248361120b565b915061177b82611716565b604082019050919050565b5f6020820190508181035f83015261179d81611764565b9050919050565b5f6117ae826112ef565b91506117b9836112ef565b92508282026117c7816112ef565b915082820484148315176117de576117dd611558565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61181c826112ef565b9150611827836112ef565b925082611837576118366117e5565b5b828204905092915050565b5f61184c826112ef565b9150611857836112ef565b925082820390508181111561186f5761186e611558565b5b92915050565b5f81519050611883816112f8565b92915050565b5f6020828403121561189e5761189d611291565b5b5f6118ab84828501611875565b91505092915050565b5f6040820190506118c75f8301856114d3565b6118d46020830184611393565b9392505050565b6118e481611360565b81146118ee575f80fd5b50565b5f815190506118ff816118db565b92915050565b5f6020828403121561191a57611919611291565b5b5f611927848285016118f1565b91505092915050565b5f6060820190506119435f8301866114d3565b6119506020830185611393565b61195d6040830184611393565b94935050505056fea2646970667358221220700c75074a35e48ec10842908c2fd15a612cd7500bf516b320dc7583763b050664736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80635427789c116100a057806395d89b411161006f57806395d89b41146102bc578063a9059cbb146102da578063dd62ed3e1461030a578063e2da2b4f1461033a578063f2fde38b1461035857610114565b80635427789c1461024657806370a0823114610264578063715018a6146102945780638da5cb5b1461029e57610114565b806321bea7cc116100e757806321bea7cc1461018e57806323b872dd146101aa578063313ce567146101da57806332cb6b0c146101f85780634eed96661461021657610114565b806306fdde0314610118578063095ea7b3146101365780631249c58b1461016657806318160ddd14610170575b5f80fd5b610120610374565b60405161012d9190611271565b60405180910390f35b610150600480360381019061014b9190611322565b610404565b60405161015d919061137a565b60405180910390f35b61016e610426565b005b6101786106aa565b60405161018591906113a2565b60405180910390f35b6101a860048036038101906101a391906113bb565b6106b3565b005b6101c460048036038101906101bf91906113f9565b610812565b6040516101d1919061137a565b60405180910390f35b6101e2610840565b6040516101ef9190611464565b60405180910390f35b610200610848565b60405161020d91906113a2565b60405180910390f35b610230600480360381019061022b919061147d565b610857565b60405161023d91906113a2565b60405180910390f35b61024e61086c565b60405161025b91906113a2565b60405180910390f35b61027e600480360381019061027991906114a8565b610878565b60405161028b91906113a2565b60405180910390f35b61029c6108bd565b005b6102a66108d0565b6040516102b391906114e2565b60405180910390f35b6102c46108f8565b6040516102d19190611271565b60405180910390f35b6102f460048036038101906102ef9190611322565b610988565b604051610301919061137a565b60405180910390f35b610324600480360381019061031f91906113bb565b6109aa565b60405161033191906113a2565b60405180910390f35b610342610a2c565b60405161034f91906113a2565b60405180910390f35b610372600480360381019061036d91906114a8565b610a31565b005b60606003805461038390611528565b80601f01602080910402602001604051908101604052809291908181526020018280546103af90611528565b80156103fa5780601f106103d1576101008083540402835291602001916103fa565b820191905f5260205f20905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b5f8061040e610ab5565b905061041b818585610abc565b600191505092915050565b6a084595161401484a000000670de0b6b3a76400006104436106aa565b61044d9190611585565b111561048e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048590611602565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050f9061166a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d906116f8565b60405180910390fd5b5f439050604560065f8381526020019081526020015f2054106105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d590611786565b60405180910390fd5b600160065f8381526020019081526020015f205f8282546105ff9190611585565b92505081905550600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f60646005670de0b6b3a764000061067391906117a4565b61067d9190611812565b90506106893082610ace565b6106a63382670de0b6b3a76400006106a19190611842565b610ace565b5050565b5f600254905090565b6106bb610b4d565b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106f991906114e2565b602060405180830381865afa158015610714573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107389190611889565b90505f8111156107bf578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b815260040161077d9291906118b4565b6020604051808303815f875af1158015610799573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bd9190611905565b505b5f47111561080c578273ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561080a573d5f803e3d5ffd5b505b50505050565b5f8061081c610ab5565b9050610829858285610bd4565b610834858585610c66565b60019150509392505050565b5f6012905090565b6a084595161401484a00000081565b6006602052805f5260405f205f915090505481565b670de0b6b3a764000081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108c5610b4d565b6108ce5f610d56565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090790611528565b80601f016020809104026020016040519081016040528092919081815260200182805461093390611528565b801561097e5780601f106109555761010080835404028352916020019161097e565b820191905f5260205f20905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b5f80610992610ab5565b905061099f818585610c66565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b604581565b610a39610b4d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa9575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aa091906114e2565b60405180910390fd5b610ab281610d56565b50565b5f33905090565b610ac98383836001610e19565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b3591906114e2565b60405180910390fd5b610b495f8383610fe8565b5050565b610b55610ab5565b73ffffffffffffffffffffffffffffffffffffffff16610b736108d0565b73ffffffffffffffffffffffffffffffffffffffff1614610bd257610b96610ab5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bc991906114e2565b60405180910390fd5b565b5f610bdf84846109aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c605781811015610c51578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c4893929190611930565b60405180910390fd5b610c5f84848484035f610e19565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ccd91906114e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d46575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d3d91906114e2565b60405180910390fd5b610d51838383610fe8565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e89575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e8091906114e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ef091906114e2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fe2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fd991906113a2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611038578060025f82825461102c9190611585565b92505081905550611106565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110c1578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016110b893929190611930565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114d578060025f8282540392505081905550611197565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f491906113a2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61124382611201565b61124d818561120b565b935061125d81856020860161121b565b61126681611229565b840191505092915050565b5f6020820190508181035f8301526112898184611239565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112be82611295565b9050919050565b6112ce816112b4565b81146112d8575f80fd5b50565b5f813590506112e9816112c5565b92915050565b5f819050919050565b611301816112ef565b811461130b575f80fd5b50565b5f8135905061131c816112f8565b92915050565b5f806040838503121561133857611337611291565b5b5f611345858286016112db565b92505060206113568582860161130e565b9150509250929050565b5f8115159050919050565b61137481611360565b82525050565b5f60208201905061138d5f83018461136b565b92915050565b61139c816112ef565b82525050565b5f6020820190506113b55f830184611393565b92915050565b5f80604083850312156113d1576113d0611291565b5b5f6113de858286016112db565b92505060206113ef858286016112db565b9150509250929050565b5f805f606084860312156114105761140f611291565b5b5f61141d868287016112db565b935050602061142e868287016112db565b925050604061143f8682870161130e565b9150509250925092565b5f60ff82169050919050565b61145e81611449565b82525050565b5f6020820190506114775f830184611455565b92915050565b5f6020828403121561149257611491611291565b5b5f61149f8482850161130e565b91505092915050565b5f602082840312156114bd576114bc611291565b5b5f6114ca848285016112db565b91505092915050565b6114dc816112b4565b82525050565b5f6020820190506114f55f8301846114d3565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061153f57607f821691505b602082108103611552576115516114fb565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61158f826112ef565b915061159a836112ef565b92508282019050808211156115b2576115b1611558565b5b92915050565b7f546f74616c20737570706c7920657863656564656400000000000000000000005f82015250565b5f6115ec60158361120b565b91506115f7826115b8565b602082019050919050565b5f6020820190508181035f830152611619816115e0565b9050919050565b7f416464726573732068617320616c7265616479206d696e7465640000000000005f82015250565b5f611654601a8361120b565b915061165f82611620565b602082019050919050565b5f6020820190508181035f83015261168181611648565b9050919050565b7f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e5f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116e260218361120b565b91506116ed82611688565b604082019050919050565b5f6020820190508181035f83015261170f816116d6565b9050919050565b7f4d696e74696e67206c696d6974207265616368656420666f72207468697320625f8201527f6c6f636b00000000000000000000000000000000000000000000000000000000602082015250565b5f61177060248361120b565b915061177b82611716565b604082019050919050565b5f6020820190508181035f83015261179d81611764565b9050919050565b5f6117ae826112ef565b91506117b9836112ef565b92508282026117c7816112ef565b915082820484148315176117de576117dd611558565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61181c826112ef565b9150611827836112ef565b925082611837576118366117e5565b5b828204905092915050565b5f61184c826112ef565b9150611857836112ef565b925082820390508181111561186f5761186e611558565b5b92915050565b5f81519050611883816112f8565b92915050565b5f6020828403121561189e5761189d611291565b5b5f6118ab84828501611875565b91505092915050565b5f6040820190506118c75f8301856114d3565b6118d46020830184611393565b9392505050565b6118e481611360565b81146118ee575f80fd5b50565b5f815190506118ff816118db565b92915050565b5f6020828403121561191a57611919611291565b5b5f611927848285016118f1565b91505092915050565b5f6060820190506119435f8301866114d3565b6119506020830185611393565b61195d6040830184611393565b94935050505056fea2646970667358221220700c75074a35e48ec10842908c2fd15a612cd7500bf516b320dc7583763b050664736f6c634300081a0033

Deployed Bytecode Sourcemap

28592:1532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18302:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29002:670;;;:::i;:::-;;17111:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29682:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19070:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16962:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28752:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28693;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28811:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17273:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27684:103;;;:::i;:::-;;27009:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16219:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17596:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17841:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28638:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27942:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16009:91;16054:13;16087:5;16080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009:91;:::o;18302:190::-;18375:4;18392:13;18408:12;:10;:12::i;:::-;18392:28;;18431:31;18440:5;18447:7;18456:5;18431:8;:31::i;:::-;18480:4;18473:11;;;18302:190;;;;:::o;29002:670::-;28786:18;28846:11;29046:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;29038:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;29133:9;:21;29143:10;29133:21;;;;;;;;;;;;;;;;;;;;;;;;;29132:22;29124:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29218:9;29204:23;;:10;:23;;;29196:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;29276:20;29299:12;29276:35;;28684:2;29330:17;:31;29348:12;29330:31;;;;;;;;;;;;:53;29322:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;29472:1;29437:17;:31;29455:12;29437:31;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;29508:4;29484:9;:21;29494:10;29484:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;29525:16;29562:3;29558:1;28846:11;29544:15;;;;:::i;:::-;:21;;;;:::i;:::-;29525:40;;29576:33;29590:4;29597:11;29576:5;:33::i;:::-;29620:44;29626:10;29652:11;28846;29638:25;;;;:::i;:::-;29620:5;:44::i;:::-;29027:645;;29002:670::o;17111:99::-;17163:7;17190:12;;17183:19;;17111:99;:::o;29682:437::-;26895:13;:11;:13::i;:::-;29770:20:::1;29800:12;29770:43;;29824:20;29847:13;:23;;;29879:4;29847:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29824:61;;29914:1;29899:12;:16;29896:96;;;29932:13;:22;;;29955:10;29967:12;29932:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29896:96;30031:1;30007:21;:25;30004:108;;;30057:10;30049:28;;:51;30078:21;30049:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;30004:108;29759:360;;29682:437:::0;;:::o;19070:249::-;19157:4;19174:15;19192:12;:10;:12::i;:::-;19174:30;;19215:37;19231:4;19237:7;19246:5;19215:15;:37::i;:::-;19263:26;19273:4;19279:2;19283:5;19263:9;:26::i;:::-;19307:4;19300:11;;;19070:249;;;;;:::o;16962:84::-;17011:5;17036:2;17029:9;;16962:84;:::o;28752:52::-;28786:18;28752:52;:::o;28693:::-;;;;;;;;;;;;;;;;;:::o;28811:46::-;28846:11;28811:46;:::o;17273:118::-;17338:7;17365:9;:18;17375:7;17365:18;;;;;;;;;;;;;;;;17358:25;;17273:118;;;:::o;27684:103::-;26895:13;:11;:13::i;:::-;27749:30:::1;27776:1;27749:18;:30::i;:::-;27684:103::o:0;27009:87::-;27055:7;27082:6;;;;;;;;;;;27075:13;;27009:87;:::o;16219:95::-;16266:13;16299:7;16292:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16219:95;:::o;17596:182::-;17665:4;17682:13;17698:12;:10;:12::i;:::-;17682:28;;17721:27;17731:5;17738:2;17742:5;17721:9;:27::i;:::-;17766:4;17759:11;;;17596:182;;;;:::o;17841:142::-;17921:7;17948:11;:18;17960:5;17948:18;;;;;;;;;;;;;;;:27;17967:7;17948:27;;;;;;;;;;;;;;;;17941:34;;17841:142;;;;:::o;28638:48::-;28684:2;28638:48;:::o;27942:220::-;26895:13;:11;:13::i;:::-;28047:1:::1;28027:22;;:8;:22;;::::0;28023:93:::1;;28101:1;28073:31;;;;;;;;;;;:::i;:::-;;;;;;;;28023:93;28126:28;28145:8;28126:18;:28::i;:::-;27942:220:::0;:::o;7014:98::-;7067:7;7094:10;7087:17;;7014:98;:::o;23129:130::-;23214:37;23223:5;23230:7;23239:5;23246:4;23214:8;:37::i;:::-;23129:130;;;:::o;21824:213::-;21914:1;21895:21;;:7;:21;;;21891:93;;21969:1;21940:32;;;;;;;;;;;:::i;:::-;;;;;;;;21891:93;21994:35;22010:1;22014:7;22023:5;21994:7;:35::i;:::-;21824:213;;:::o;27174:166::-;27245:12;:10;:12::i;:::-;27234:23;;:7;:5;:7::i;:::-;:23;;;27230:103;;27308:12;:10;:12::i;:::-;27281:40;;;;;;;;;;;:::i;:::-;;;;;;;;27230:103;27174:166::o;24845:487::-;24945:24;24972:25;24982:5;24989:7;24972:9;:25::i;:::-;24945:52;;25032:17;25012:16;:37;25008:317;;25089:5;25070:16;:24;25066:132;;;25149:7;25158:16;25176:5;25122:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25066:132;25241:57;25250:5;25257:7;25285:5;25266:16;:24;25292:5;25241:8;:57::i;:::-;25008:317;24934:398;24845:487;;;:::o;19704:308::-;19804:1;19788:18;;:4;:18;;;19784:88;;19857:1;19830:30;;;;;;;;;;;:::i;:::-;;;;;;;;19784:88;19900:1;19886:16;;:2;:16;;;19882:88;;19955:1;19926:32;;;;;;;;;;;:::i;:::-;;;;;;;;19882:88;19980:24;19988:4;19994:2;19998:5;19980:7;:24::i;:::-;19704:308;;;:::o;28322:191::-;28396:16;28415:6;;;;;;;;;;;28396:25;;28441:8;28432:6;;:17;;;;;;;;;;;;;;;;;;28496:8;28465:40;;28486:8;28465:40;;;;;;;;;;;;28385:128;28322:191;:::o;24110:443::-;24240:1;24223:19;;:5;:19;;;24219:91;;24295:1;24266:32;;;;;;;;;;;:::i;:::-;;;;;;;;24219:91;24343:1;24324:21;;:7;:21;;;24320:92;;24397:1;24369:31;;;;;;;;;;;:::i;:::-;;;;;;;;24320:92;24452:5;24422:11;:18;24434:5;24422:18;;;;;;;;;;;;;;;:27;24441:7;24422:27;;;;;;;;;;;;;;;:35;;;;24472:9;24468:78;;;24519:7;24503:31;;24512:5;24503:31;;;24528:5;24503:31;;;;;;:::i;:::-;;;;;;;;24468:78;24110:443;;;;:::o;20336:1135::-;20442:1;20426:18;;:4;:18;;;20422:552;;20580:5;20564:12;;:21;;;;;;;:::i;:::-;;;;;;;;20422:552;;;20618:19;20640:9;:15;20650:4;20640:15;;;;;;;;;;;;;;;;20618:37;;20688:5;20674:11;:19;20670:117;;;20746:4;20752:11;20765:5;20721:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;20670:117;20942:5;20928:11;:19;20910:9;:15;20920:4;20910:15;;;;;;;;;;;;;;;:37;;;;20603:371;20422:552;21004:1;20990:16;;:2;:16;;;20986:435;;21172:5;21156:12;;:21;;;;;;;;;;;20986:435;;;21389:5;21372:9;:13;21382:2;21372:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;20986:435;21453:2;21438:25;;21447:4;21438:25;;;21457:5;21438:25;;;;;;:::i;:::-;;;;;;;;20336:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:474::-;3759:6;3767;3816:2;3804:9;3795:7;3791:23;3787:32;3784:119;;;3822:79;;:::i;:::-;3784:119;3942:1;3967:53;4012:7;4003:6;3992:9;3988:22;3967:53;:::i;:::-;3957:63;;3913:117;4069:2;4095:53;4140:7;4131:6;4120:9;4116:22;4095:53;:::i;:::-;4085:63;;4040:118;3691:474;;;;;:::o;4171:619::-;4248:6;4256;4264;4313:2;4301:9;4292:7;4288:23;4284:32;4281:119;;;4319:79;;:::i;:::-;4281:119;4439:1;4464:53;4509:7;4500:6;4489:9;4485:22;4464:53;:::i;:::-;4454:63;;4410:117;4566:2;4592:53;4637:7;4628:6;4617:9;4613:22;4592:53;:::i;:::-;4582:63;;4537:118;4694:2;4720:53;4765:7;4756:6;4745:9;4741:22;4720:53;:::i;:::-;4710:63;;4665:118;4171:619;;;;;:::o;4796:86::-;4831:7;4871:4;4864:5;4860:16;4849:27;;4796:86;;;:::o;4888:112::-;4971:22;4987:5;4971:22;:::i;:::-;4966:3;4959:35;4888:112;;:::o;5006:214::-;5095:4;5133:2;5122:9;5118:18;5110:26;;5146:67;5210:1;5199:9;5195:17;5186:6;5146:67;:::i;:::-;5006:214;;;;:::o;5226:329::-;5285:6;5334:2;5322:9;5313:7;5309:23;5305:32;5302:119;;;5340:79;;:::i;:::-;5302:119;5460:1;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5431:117;5226:329;;;;:::o;5561:::-;5620:6;5669:2;5657:9;5648:7;5644:23;5640:32;5637:119;;;5675:79;;:::i;:::-;5637:119;5795:1;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5766:117;5561:329;;;;:::o;5896:118::-;5983:24;6001:5;5983:24;:::i;:::-;5978:3;5971:37;5896:118;;:::o;6020:222::-;6113:4;6151:2;6140:9;6136:18;6128:26;;6164:71;6232:1;6221:9;6217:17;6208:6;6164:71;:::i;:::-;6020:222;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:171::-;7283:23;7279:1;7271:6;7267:14;7260:47;7143:171;:::o;7320:366::-;7462:3;7483:67;7547:2;7542:3;7483:67;:::i;:::-;7476:74;;7559:93;7648:3;7559:93;:::i;:::-;7677:2;7672:3;7668:12;7661:19;;7320:366;;;:::o;7692:419::-;7858:4;7896:2;7885:9;7881:18;7873:26;;7945:9;7939:4;7935:20;7931:1;7920:9;7916:17;7909:47;7973:131;8099:4;7973:131;:::i;:::-;7965:139;;7692:419;;;:::o;8117:176::-;8257:28;8253:1;8245:6;8241:14;8234:52;8117:176;:::o;8299:366::-;8441:3;8462:67;8526:2;8521:3;8462:67;:::i;:::-;8455:74;;8538:93;8627:3;8538:93;:::i;:::-;8656:2;8651:3;8647:12;8640:19;;8299:366;;;:::o;8671:419::-;8837:4;8875:2;8864:9;8860:18;8852:26;;8924:9;8918:4;8914:20;8910:1;8899:9;8895:17;8888:47;8952:131;9078:4;8952:131;:::i;:::-;8944:139;;8671:419;;;:::o;9096:220::-;9236:34;9232:1;9224:6;9220:14;9213:58;9305:3;9300:2;9292:6;9288:15;9281:28;9096:220;:::o;9322:366::-;9464:3;9485:67;9549:2;9544:3;9485:67;:::i;:::-;9478:74;;9561:93;9650:3;9561:93;:::i;:::-;9679:2;9674:3;9670:12;9663:19;;9322:366;;;:::o;9694:419::-;9860:4;9898:2;9887:9;9883:18;9875:26;;9947:9;9941:4;9937:20;9933:1;9922:9;9918:17;9911:47;9975:131;10101:4;9975:131;:::i;:::-;9967:139;;9694:419;;;:::o;10119:223::-;10259:34;10255:1;10247:6;10243:14;10236:58;10328:6;10323:2;10315:6;10311:15;10304:31;10119:223;:::o;10348:366::-;10490:3;10511:67;10575:2;10570:3;10511:67;:::i;:::-;10504:74;;10587:93;10676:3;10587:93;:::i;:::-;10705:2;10700:3;10696:12;10689:19;;10348:366;;;:::o;10720:419::-;10886:4;10924:2;10913:9;10909:18;10901:26;;10973:9;10967:4;10963:20;10959:1;10948:9;10944:17;10937:47;11001:131;11127:4;11001:131;:::i;:::-;10993:139;;10720:419;;;:::o;11145:410::-;11185:7;11208:20;11226:1;11208:20;:::i;:::-;11203:25;;11242:20;11260:1;11242:20;:::i;:::-;11237:25;;11297:1;11294;11290:9;11319:30;11337:11;11319:30;:::i;:::-;11308:41;;11498:1;11489:7;11485:15;11482:1;11479:22;11459:1;11452:9;11432:83;11409:139;;11528:18;;:::i;:::-;11409:139;11193:362;11145:410;;;;:::o;11561:180::-;11609:77;11606:1;11599:88;11706:4;11703:1;11696:15;11730:4;11727:1;11720:15;11747:185;11787:1;11804:20;11822:1;11804:20;:::i;:::-;11799:25;;11838:20;11856:1;11838:20;:::i;:::-;11833:25;;11877:1;11867:35;;11882:18;;:::i;:::-;11867:35;11924:1;11921;11917:9;11912:14;;11747:185;;;;:::o;11938:194::-;11978:4;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12032:20;12050:1;12032:20;:::i;:::-;12027:25;;12076:1;12073;12069:9;12061:17;;12100:1;12094:4;12091:11;12088:37;;;12105:18;;:::i;:::-;12088:37;11938:194;;;;:::o;12138:143::-;12195:5;12226:6;12220:13;12211:22;;12242:33;12269:5;12242:33;:::i;:::-;12138:143;;;;:::o;12287:351::-;12357:6;12406:2;12394:9;12385:7;12381:23;12377:32;12374:119;;;12412:79;;:::i;:::-;12374:119;12532:1;12557:64;12613:7;12604:6;12593:9;12589:22;12557:64;:::i;:::-;12547:74;;12503:128;12287:351;;;;:::o;12644:332::-;12765:4;12803:2;12792:9;12788:18;12780:26;;12816:71;12884:1;12873:9;12869:17;12860:6;12816:71;:::i;:::-;12897:72;12965:2;12954:9;12950:18;12941:6;12897:72;:::i;:::-;12644:332;;;;;:::o;12982:116::-;13052:21;13067:5;13052:21;:::i;:::-;13045:5;13042:32;13032:60;;13088:1;13085;13078:12;13032:60;12982:116;:::o;13104:137::-;13158:5;13189:6;13183:13;13174:22;;13205:30;13229:5;13205:30;:::i;:::-;13104:137;;;;:::o;13247:345::-;13314:6;13363:2;13351:9;13342:7;13338:23;13334:32;13331:119;;;13369:79;;:::i;:::-;13331:119;13489:1;13514:61;13567:7;13558:6;13547:9;13543:22;13514:61;:::i;:::-;13504:71;;13460:125;13247:345;;;;:::o;13598:442::-;13747:4;13785:2;13774:9;13770:18;13762:26;;13798:71;13866:1;13855:9;13851:17;13842:6;13798:71;:::i;:::-;13879:72;13947:2;13936:9;13932:18;13923:6;13879:72;:::i;:::-;13961;14029:2;14018:9;14014:18;14005:6;13961:72;:::i;:::-;13598:442;;;;;;:::o

Swarm Source

ipfs://700c75074a35e48ec10842908c2fd15a612cd7500bf516b320dc7583763b0506
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.