ETH Price: $3,486.17 (+3.69%)
Gas: 2 Gwei

Token

CHEDDA (CHEDDA)
 

Overview

Max Total Supply

51,626.48211772514607 CHEDDA

Holders

99

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000008 CHEDDA

Value
$0.00
0x936f0860047866ff0258d7351d8448b9deee0e60
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Chedda

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev 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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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);
    }
}

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


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


/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _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;
        _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;
        }
        _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 {}
}


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

contract Chedda is ERC20Burnable, Ownable {

    using SafeMath for uint256;

    uint256 public MAX_WALLET_STAKED = 20;
    uint256 public EMISSIONS_RATE = 11574074074000;
    uint256 private fee = 1 * 10**15;

    address nullAddress = 0x0000000000000000000000000000000000000000;

    address public moonratAddress;

    //Mapping of mouse to timestamp
    mapping(uint256 => uint256) internal tokenIdToTimeStamp;

    //Mapping of mouse to staker
    mapping(uint256 => address) internal tokenIdToStaker;

    //Mapping of staker to mice
    mapping(address => uint256[]) internal stakerToTokenIds;

    event EmissionRateUpdated(uint256 newVal);
    event MaxStakedLimitUpdated(uint256 newVal);

    constructor(address _moonratAddress) ERC20("CHEDDA", "CHEDDA") {
        moonratAddress = _moonratAddress;
    }

    function _updateMaxStakedLimit(uint256 newVal) external onlyOwner {
        require(newVal >= 1, "Can't set below 1 NFTs");
        MAX_WALLET_STAKED = newVal;

        emit MaxStakedLimitUpdated(newVal);
    }

    function _updateMoonratzAddress(address _moonratAddress) public onlyOwner {
        require(_moonratAddress != moonratAddress, "Address is already of that value.");
        moonratAddress = _moonratAddress;
        return;
    }

    function _updateFee(uint256 _fee) external onlyOwner {
        fee = _fee;
    }

    function getTokensStaked(address staker)
        public
        view
        returns (uint256[] memory)
    {
        return stakerToTokenIds[staker];
    }

    function remove(address staker, uint256 index) internal {
        if (index >= stakerToTokenIds[staker].length) return;

        for (uint256 i = index; i < stakerToTokenIds[staker].length - 1; i++) {
            stakerToTokenIds[staker][i] = stakerToTokenIds[staker][i + 1];
        }
        stakerToTokenIds[staker].pop();
    }

    function removeTokenIdFromStaker(address staker, uint256 tokenId) internal {
        for (uint256 i = 0; i < stakerToTokenIds[staker].length; i++) {
            if (stakerToTokenIds[staker][i] == tokenId) {
                //This is the tokenId to remove;
                remove(staker, i);
            }
        }
    }

    function stakeByIds(uint256[] memory tokenIds) public payable {
        require(msg.value >= fee, "Need to pay the fee");
        require(
            stakerToTokenIds[msg.sender].length + tokenIds.length <=
                MAX_WALLET_STAKED,
            "A wallet can have 20 MoonRatz staked at max!"
        );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                IERC721(moonratAddress).ownerOf(tokenIds[i]) == msg.sender &&
                    tokenIdToStaker[tokenIds[i]] == nullAddress,
                "Token must be stakable by you!"
            );

            IERC721(moonratAddress).transferFrom(
                msg.sender,
                address(this),
                tokenIds[i]
            );

            stakerToTokenIds[msg.sender].push(tokenIds[i]);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
            tokenIdToStaker[tokenIds[i]] = msg.sender;
        }
    }

    function unstakeAll() public payable {
        require(msg.value >= fee, "Need to pay the fee");
        require(
            stakerToTokenIds[msg.sender].length > 0,
            "Must have at least one token staked!"
        );
        uint256 totalRewards = 0;

        for (uint256 i = stakerToTokenIds[msg.sender].length; i > 0; i--) {
            uint256 tokenId = stakerToTokenIds[msg.sender][i - 1];

            IERC721(moonratAddress).transferFrom(
                address(this),
                msg.sender,
                tokenId
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenId]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenId);

            tokenIdToStaker[tokenId] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function unstakeByIds(uint256[] memory tokenIds) public payable{
        require(msg.value >= fee, "Need to pay the fee");
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Message Sender was not original staker!"
            );

            IERC721(moonratAddress).transferFrom(
                address(this),
                msg.sender,
                tokenIds[i]
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenIds[i]);

            tokenIdToStaker[tokenIds[i]] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function claimByTokenId(uint256 tokenId) public {
        require(
            tokenIdToStaker[tokenId] == msg.sender,
            "Token is not claimable by you!"
        );

        _mint(
            msg.sender,
            ((block.timestamp - tokenIdToTimeStamp[tokenId]) * EMISSIONS_RATE)
        );

        tokenIdToTimeStamp[tokenId] = block.timestamp;
    }

    function claimAll() public {
        uint256[] memory tokenIds = stakerToTokenIds[msg.sender];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Token is not claimable by you!"
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
    }

    function getAllRewards(address staker) public view returns (uint256) {
        uint256[] memory tokenIds = stakerToTokenIds[staker];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);
        }

        return totalRewards;
    }

    function getRewardsByTokenId(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        require(
            tokenIdToStaker[tokenId] != nullAddress,
            "Token is not staked!"
        );

        uint256 secondsStaked = block.timestamp - tokenIdToTimeStamp[tokenId];

        return secondsStaked * EMISSIONS_RATE;
    }

    function getStaker(uint256 tokenId) public view returns (address) {
        return tokenIdToStaker[tokenId];
    }

    function updateEmissionRate(uint256 newVal) external onlyOwner {
        require(newVal >= 11574074074000, "Can't lower than initial value" );
        EMISSIONS_RATE = newVal;

        emit EmissionRateUpdated(newVal);
    }

   function recoverLostETH() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function WithdrawOtherTokens(address _token, uint256 amount) public onlyOwner {
        IERC20(_token).transfer(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_moonratAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"EmissionRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"MaxStakedLimitUpdated","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":"EMISSIONS_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_STAKED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"_updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"_updateMaxStakedLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_moonratAddress","type":"address"}],"name":"_updateMoonratzAddress","outputs":[],"stateMutability":"nonpayable","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":"amount","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimByTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardsByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTokensStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"moonratAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"recoverLostETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeByIds","outputs":[],"stateMutability":"payable","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":"amount","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":"amount","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"},{"inputs":[],"name":"unstakeAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeByIds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600655650a86cc92e39060075566038d7ea4c68000600855600980546001600160a01b03191690553480156200003b57600080fd5b506040516200259d3803806200259d8339810160408190526200005e9162000144565b60408051808201825260068082526543484544444160d01b60208084018290528451808601909552918452908301529060036200009c83826200021b565b506004620000ab82826200021b565b505050620000c8620000c2620000ee60201b60201c565b620000f2565b600a80546001600160a01b0319166001600160a01b0392909216919091179055620002e7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200015757600080fd5b81516001600160a01b03811681146200016f57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001a157607f821691505b602082108103620001c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021657600081815260208120601f850160051c81016020861015620001f15750805b601f850160051c820191505b818110156200021257828155600101620001fd565b5050505b505050565b81516001600160401b0381111562000237576200023762000176565b6200024f816200024884546200018c565b84620001c8565b602080601f8311600181146200028757600084156200026e5750858301515b600019600386901b1c1916600185901b17855562000212565b600085815260208120601f198616915b82811015620002b85788860151825594840194600190910190840162000297565b5085821015620002d75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122a680620002f76000396000f3fe6080604052600436106101f95760003560e01c806362268a981161010d57806395d89b41116100a0578063d1058e591161006f578063d1058e5914610595578063d9ffad47146105aa578063dd62ed3e146105bd578063e3c998fe146105dd578063f2fde38b1461061357600080fd5b806395d89b411461052a578063a457c2d71461053f578063a9059cbb1461055f578063ba7e76621461057f57600080fd5b806379cc6790116100dc57806379cc6790146104b657806386dce0a8146104d65780638ab8fab3146104f65780638da5cb5b1461050c57600080fd5b806362268a9814610413578063680997f61461044b57806370a082311461046b578063715018a6146104a157600080fd5b806335322f371161019057806348aa19361161015f57806348aa193614610373578063515ec1051461038657806352eb7796146103a65780635e1f1e2a146103d35780636022c9ce146103f357600080fd5b806335322f371461030b578063362a3fad14610313578063395093511461033357806342966c681461035357600080fd5b806318160ddd116101cc57806318160ddd1461029b57806323b872dd146102ba578063302f627d146102da578063313ce567146102ef57600080fd5b806306fdde03146101fe578063095ea7b3146102295780630ba84cd2146102595780630c5e8ad31461027b575b600080fd5b34801561020a57600080fd5b50610213610633565b6040516102209190611eac565b60405180910390f35b34801561023557600080fd5b50610249610244366004611f16565b6106c5565b6040519015158152602001610220565b34801561026557600080fd5b50610279610274366004611f42565b6106dd565b005b34801561028757600080fd5b50610279610296366004611f5b565b61077c565b3480156102a757600080fd5b506002545b604051908152602001610220565b3480156102c657600080fd5b506102496102d5366004611f78565b61080b565b3480156102e657600080fd5b5061027961082f565b3480156102fb57600080fd5b5060405160128152602001610220565b610279610870565b34801561031f57600080fd5b506102ac61032e366004611f5b565b610a3c565b34801561033f57600080fd5b5061024961034e366004611f16565b610b18565b34801561035f57600080fd5b5061027961036e366004611f42565b610b3a565b610279610381366004611fcf565b610b44565b34801561039257600080fd5b506102ac6103a1366004611f42565b610daf565b3480156103b257600080fd5b506103c66103c1366004611f5b565b610e44565b604051610220919061208d565b3480156103df57600080fd5b506102796103ee366004611f42565b610eb0565b3480156103ff57600080fd5b5061027961040e366004611f42565b610f5a565b34801561041f57600080fd5b50600a54610433906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561045757600080fd5b50610279610466366004611f16565b610fe1565b34801561047757600080fd5b506102ac610486366004611f5b565b6001600160a01b031660009081526020819052604090205490565b3480156104ad57600080fd5b5061027961105f565b3480156104c257600080fd5b506102796104d1366004611f16565b611073565b3480156104e257600080fd5b506102796104f1366004611f42565b611088565b34801561050257600080fd5b506102ac60065481565b34801561051857600080fd5b506005546001600160a01b0316610433565b34801561053657600080fd5b50610213611095565b34801561054b57600080fd5b5061024961055a366004611f16565b6110a4565b34801561056b57600080fd5b5061024961057a366004611f16565b61111f565b34801561058b57600080fd5b506102ac60075481565b3480156105a157600080fd5b5061027961112d565b6102796105b8366004611fcf565b6112be565b3480156105c957600080fd5b506102ac6105d83660046120d1565b611625565b3480156105e957600080fd5b506104336105f8366004611f42565b6000908152600c60205260409020546001600160a01b031690565b34801561061f57600080fd5b5061027961062e366004611f5b565b611650565b6060600380546106429061210a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061210a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000336106d38185856116c6565b5060019392505050565b6106e56117ea565b650a86cc92e3908110156107405760405162461bcd60e51b815260206004820152601e60248201527f43616e2774206c6f776572207468616e20696e697469616c2076616c7565000060448201526064015b60405180910390fd5b60078190556040518181527fffcc630bf88a67ba7c8b27440787c31777ae923aee1e9bbd0127feea56da2cd0906020015b60405180910390a150565b6107846117ea565b600a546001600160a01b03908116908216036107ec5760405162461bcd60e51b815260206004820152602160248201527f4164647265737320697320616c7265616479206f6620746861742076616c75656044820152601760f91b6064820152608401610737565b600a80546001600160a01b0319166001600160a01b0383161790555b50565b600033610819858285611844565b6108248585856118be565b506001949350505050565b6108376117ea565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610808573d6000803e3d6000fd5b6008543410156108925760405162461bcd60e51b815260040161073790612144565b336000908152600d60205260409020546108fa5760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610737565b336000908152600d60205260408120545b8015610a3157336000908152600d6020526040812061092b600184612187565b8154811061093b5761093b61219e565b600091825260209091200154600a546040516323b872dd60e01b8152306004820152336024820152604481018390529192506001600160a01b0316906323b872dd90606401600060405180830381600087803b15801561099a57600080fd5b505af11580156109ae573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506109d0915042612187565b6109da91906121b4565b6109e490846121d3565b92506109f03382611a8c565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b0390921691909117905580610a29816121eb565b91505061090b565b506108083382611b08565b6001600160a01b0381166000908152600d6020908152604080832080548251818502810185019093528083528493830182828015610a9957602002820191906000526020600020905b815481526020019060010190808311610a85575b505050505090506000805b8251811015610b1057600754600b6000858481518110610ac657610ac661219e565b602002602001015181526020019081526020016000205442610ae89190612187565b610af291906121b4565b610afc90836121d3565b915080610b0881612202565b915050610aa4565b509392505050565b6000336106d3818585610b2b8383611625565b610b3591906121d3565b6116c6565b6108083382611be7565b600854341015610b665760405162461bcd60e51b815260040161073790612144565b6000805b8251811015610da057336001600160a01b0316600c6000858481518110610b9357610b9361219e565b6020908102919091018101518252810191909152604001600020546001600160a01b031614610c145760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610737565b600a5483516001600160a01b03909116906323b872dd9030903390879086908110610c4157610c4161219e565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610c9b57600080fd5b505af1158015610caf573d6000803e3d6000fd5b50505050600754600b6000858481518110610ccc57610ccc61219e565b602002602001015181526020019081526020016000205442610cee9190612187565b610cf891906121b4565b610d0290836121d3565b9150610d2733848381518110610d1a57610d1a61219e565b6020026020010151611a8c565b600960009054906101000a90046001600160a01b0316600c6000858481518110610d5357610d5361219e565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610d9890612202565b915050610b6a565b50610dab3382611b08565b5050565b6009546000828152600c602052604081205490916001600160a01b03908116911603610e145760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610737565b6000828152600b6020526040812054610e2d9042612187565b905060075481610e3d91906121b4565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610ea457602002820191906000526020600020905b815481526020019060010190808311610e90575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610f165760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610737565b6007546000828152600b6020526040902054610f47913391610f389042612187565b610f4291906121b4565b611b08565b6000908152600b60205260409020429055565b610f626117ea565b6001811015610fac5760405162461bcd60e51b815260206004820152601660248201527543616e2774207365742062656c6f772031204e46547360501b6044820152606401610737565b60068190556040518181527f466bb82c44801d0517275071c43d623d23acc651d607d8c2f36ef83f8aff826390602001610771565b610fe96117ea565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a919061221b565b505050565b6110676117ea565b6110716000611d35565b565b61107e823383611844565b610dab8282611be7565b6110906117ea565b600855565b6060600480546106429061210a565b600033816110b28286611625565b9050838110156111125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610737565b61082482868684036116c6565b6000336106d38185856118be565b336000908152600d602090815260408083208054825181850281018501909352808352919290919083018282801561118457602002820191906000526020600020905b815481526020019060010190808311611170575b505050505090506000805b8251811015610da057336001600160a01b0316600c60008584815181106111b8576111b861219e565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146112295760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610737565b600754600b60008584815181106112425761124261219e565b6020026020010151815260200190815260200160002054426112649190612187565b61126e91906121b4565b61127890836121d3565b915042600b60008584815181106112915761129161219e565b602002602001015181526020019081526020016000208190555080806112b690612202565b91505061118f565b6008543410156112e05760405162461bcd60e51b815260040161073790612144565b6006548151336000908152600d60205260409020546112ff91906121d3565b11156113625760405162461bcd60e51b815260206004820152602c60248201527f412077616c6c65742063616e2068617665203230204d6f6f6e5261747a20737460448201526b616b6564206174206d61782160a01b6064820152608401610737565b60005b8151811015610dab57600a54825133916001600160a01b031690636352211e908590859081106113975761139761219e565b60200260200101516040518263ffffffff1660e01b81526004016113bd91815260200190565b602060405180830381865afa1580156113da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fe919061223d565b6001600160a01b031614801561145e575060095482516001600160a01b0390911690600c906000908590859081106114385761143861219e565b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6114aa5760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610737565b600a5482516001600160a01b03909116906323b872dd90339030908690869081106114d7576114d761219e565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561153157600080fd5b505af1158015611545573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061156e5761156e61219e565b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106115a7576115a761219e565b602002602001015181526020019081526020016000208190555033600c60008484815181106115d8576115d861219e565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061161d90612202565b915050611365565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116586117ea565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610737565b61080881611d35565b6001600160a01b0383166117285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610737565b6001600160a01b0382166117895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610737565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146110715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b60006118508484611625565b905060001981146118b857818110156118ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610737565b6118b884848484036116c6565b50505050565b6001600160a01b0383166119225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610737565b6001600160a01b0382166119845760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610737565b6001600160a01b038316600090815260208190526040902054818110156119fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610737565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a339084906121d3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7f91815260200190565b60405180910390a36118b8565b60005b6001600160a01b0383166000908152600d602052604090205481101561105a576001600160a01b0383166000908152600d60205260409020805483919083908110611adc57611adc61219e565b906000526020600020015403611af657611af68382611d87565b80611b0081612202565b915050611a8f565b6001600160a01b038216611b5e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610737565b8060026000828254611b7091906121d3565b90915550506001600160a01b03821660009081526020819052604081208054839290611b9d9084906121d3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216611c475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610737565b6001600160a01b03821660009081526020819052604090205481811015611cbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610737565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611cea908490612187565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611daa575050565b805b6001600160a01b0383166000908152600d6020526040902054611dd190600190612187565b811015611e6a576001600160a01b0383166000908152600d60205260409020611dfb8260016121d3565b81548110611e0b57611e0b61219e565b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611e4c57611e4c61219e565b60009182526020909120015580611e6281612202565b915050611dac565b506001600160a01b0382166000908152600d60205260409020805480611e9257611e9261225a565b600190038181906000526020600020016000905590555050565b600060208083528351808285015260005b81811015611ed957858101830151858201604001528201611ebd565b81811115611eeb576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461080857600080fd5b60008060408385031215611f2957600080fd5b8235611f3481611f01565b946020939093013593505050565b600060208284031215611f5457600080fd5b5035919050565b600060208284031215611f6d57600080fd5b8135610e3d81611f01565b600080600060608486031215611f8d57600080fd5b8335611f9881611f01565b92506020840135611fa881611f01565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611fe257600080fd5b823567ffffffffffffffff80821115611ffa57600080fd5b818501915085601f83011261200e57600080fd5b81358181111561202057612020611fb9565b8060051b604051601f19603f8301168101818110858211171561204557612045611fb9565b60405291825284820192508381018501918883111561206357600080fd5b938501935b8285101561208157843584529385019392850192612068565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120c5578351835292840192918401916001016120a9565b50909695505050505050565b600080604083850312156120e457600080fd5b82356120ef81611f01565b915060208301356120ff81611f01565b809150509250929050565b600181811c9082168061211e57607f821691505b60208210810361213e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601390820152724e65656420746f20706179207468652066656560681b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561219957612199612171565b500390565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156121ce576121ce612171565b500290565b600082198211156121e6576121e6612171565b500190565b6000816121fa576121fa612171565b506000190190565b60006001820161221457612214612171565b5060010190565b60006020828403121561222d57600080fd5b81518015158114610e3d57600080fd5b60006020828403121561224f57600080fd5b8151610e3d81611f01565b634e487b7160e01b600052603160045260246000fdfea264697066735822122048490e4c4b3a06cfa57e38c828a54fa1ada4c9358fd4828c9772e3eae62e379564736f6c634300080f0033000000000000000000000000efeea2efd639df58f4476b6129e0ae4694d26b78

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806362268a981161010d57806395d89b41116100a0578063d1058e591161006f578063d1058e5914610595578063d9ffad47146105aa578063dd62ed3e146105bd578063e3c998fe146105dd578063f2fde38b1461061357600080fd5b806395d89b411461052a578063a457c2d71461053f578063a9059cbb1461055f578063ba7e76621461057f57600080fd5b806379cc6790116100dc57806379cc6790146104b657806386dce0a8146104d65780638ab8fab3146104f65780638da5cb5b1461050c57600080fd5b806362268a9814610413578063680997f61461044b57806370a082311461046b578063715018a6146104a157600080fd5b806335322f371161019057806348aa19361161015f57806348aa193614610373578063515ec1051461038657806352eb7796146103a65780635e1f1e2a146103d35780636022c9ce146103f357600080fd5b806335322f371461030b578063362a3fad14610313578063395093511461033357806342966c681461035357600080fd5b806318160ddd116101cc57806318160ddd1461029b57806323b872dd146102ba578063302f627d146102da578063313ce567146102ef57600080fd5b806306fdde03146101fe578063095ea7b3146102295780630ba84cd2146102595780630c5e8ad31461027b575b600080fd5b34801561020a57600080fd5b50610213610633565b6040516102209190611eac565b60405180910390f35b34801561023557600080fd5b50610249610244366004611f16565b6106c5565b6040519015158152602001610220565b34801561026557600080fd5b50610279610274366004611f42565b6106dd565b005b34801561028757600080fd5b50610279610296366004611f5b565b61077c565b3480156102a757600080fd5b506002545b604051908152602001610220565b3480156102c657600080fd5b506102496102d5366004611f78565b61080b565b3480156102e657600080fd5b5061027961082f565b3480156102fb57600080fd5b5060405160128152602001610220565b610279610870565b34801561031f57600080fd5b506102ac61032e366004611f5b565b610a3c565b34801561033f57600080fd5b5061024961034e366004611f16565b610b18565b34801561035f57600080fd5b5061027961036e366004611f42565b610b3a565b610279610381366004611fcf565b610b44565b34801561039257600080fd5b506102ac6103a1366004611f42565b610daf565b3480156103b257600080fd5b506103c66103c1366004611f5b565b610e44565b604051610220919061208d565b3480156103df57600080fd5b506102796103ee366004611f42565b610eb0565b3480156103ff57600080fd5b5061027961040e366004611f42565b610f5a565b34801561041f57600080fd5b50600a54610433906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561045757600080fd5b50610279610466366004611f16565b610fe1565b34801561047757600080fd5b506102ac610486366004611f5b565b6001600160a01b031660009081526020819052604090205490565b3480156104ad57600080fd5b5061027961105f565b3480156104c257600080fd5b506102796104d1366004611f16565b611073565b3480156104e257600080fd5b506102796104f1366004611f42565b611088565b34801561050257600080fd5b506102ac60065481565b34801561051857600080fd5b506005546001600160a01b0316610433565b34801561053657600080fd5b50610213611095565b34801561054b57600080fd5b5061024961055a366004611f16565b6110a4565b34801561056b57600080fd5b5061024961057a366004611f16565b61111f565b34801561058b57600080fd5b506102ac60075481565b3480156105a157600080fd5b5061027961112d565b6102796105b8366004611fcf565b6112be565b3480156105c957600080fd5b506102ac6105d83660046120d1565b611625565b3480156105e957600080fd5b506104336105f8366004611f42565b6000908152600c60205260409020546001600160a01b031690565b34801561061f57600080fd5b5061027961062e366004611f5b565b611650565b6060600380546106429061210a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061210a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000336106d38185856116c6565b5060019392505050565b6106e56117ea565b650a86cc92e3908110156107405760405162461bcd60e51b815260206004820152601e60248201527f43616e2774206c6f776572207468616e20696e697469616c2076616c7565000060448201526064015b60405180910390fd5b60078190556040518181527fffcc630bf88a67ba7c8b27440787c31777ae923aee1e9bbd0127feea56da2cd0906020015b60405180910390a150565b6107846117ea565b600a546001600160a01b03908116908216036107ec5760405162461bcd60e51b815260206004820152602160248201527f4164647265737320697320616c7265616479206f6620746861742076616c75656044820152601760f91b6064820152608401610737565b600a80546001600160a01b0319166001600160a01b0383161790555b50565b600033610819858285611844565b6108248585856118be565b506001949350505050565b6108376117ea565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610808573d6000803e3d6000fd5b6008543410156108925760405162461bcd60e51b815260040161073790612144565b336000908152600d60205260409020546108fa5760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610737565b336000908152600d60205260408120545b8015610a3157336000908152600d6020526040812061092b600184612187565b8154811061093b5761093b61219e565b600091825260209091200154600a546040516323b872dd60e01b8152306004820152336024820152604481018390529192506001600160a01b0316906323b872dd90606401600060405180830381600087803b15801561099a57600080fd5b505af11580156109ae573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506109d0915042612187565b6109da91906121b4565b6109e490846121d3565b92506109f03382611a8c565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b0390921691909117905580610a29816121eb565b91505061090b565b506108083382611b08565b6001600160a01b0381166000908152600d6020908152604080832080548251818502810185019093528083528493830182828015610a9957602002820191906000526020600020905b815481526020019060010190808311610a85575b505050505090506000805b8251811015610b1057600754600b6000858481518110610ac657610ac661219e565b602002602001015181526020019081526020016000205442610ae89190612187565b610af291906121b4565b610afc90836121d3565b915080610b0881612202565b915050610aa4565b509392505050565b6000336106d3818585610b2b8383611625565b610b3591906121d3565b6116c6565b6108083382611be7565b600854341015610b665760405162461bcd60e51b815260040161073790612144565b6000805b8251811015610da057336001600160a01b0316600c6000858481518110610b9357610b9361219e565b6020908102919091018101518252810191909152604001600020546001600160a01b031614610c145760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610737565b600a5483516001600160a01b03909116906323b872dd9030903390879086908110610c4157610c4161219e565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610c9b57600080fd5b505af1158015610caf573d6000803e3d6000fd5b50505050600754600b6000858481518110610ccc57610ccc61219e565b602002602001015181526020019081526020016000205442610cee9190612187565b610cf891906121b4565b610d0290836121d3565b9150610d2733848381518110610d1a57610d1a61219e565b6020026020010151611a8c565b600960009054906101000a90046001600160a01b0316600c6000858481518110610d5357610d5361219e565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610d9890612202565b915050610b6a565b50610dab3382611b08565b5050565b6009546000828152600c602052604081205490916001600160a01b03908116911603610e145760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610737565b6000828152600b6020526040812054610e2d9042612187565b905060075481610e3d91906121b4565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610ea457602002820191906000526020600020905b815481526020019060010190808311610e90575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610f165760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610737565b6007546000828152600b6020526040902054610f47913391610f389042612187565b610f4291906121b4565b611b08565b6000908152600b60205260409020429055565b610f626117ea565b6001811015610fac5760405162461bcd60e51b815260206004820152601660248201527543616e2774207365742062656c6f772031204e46547360501b6044820152606401610737565b60068190556040518181527f466bb82c44801d0517275071c43d623d23acc651d607d8c2f36ef83f8aff826390602001610771565b610fe96117ea565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a919061221b565b505050565b6110676117ea565b6110716000611d35565b565b61107e823383611844565b610dab8282611be7565b6110906117ea565b600855565b6060600480546106429061210a565b600033816110b28286611625565b9050838110156111125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610737565b61082482868684036116c6565b6000336106d38185856118be565b336000908152600d602090815260408083208054825181850281018501909352808352919290919083018282801561118457602002820191906000526020600020905b815481526020019060010190808311611170575b505050505090506000805b8251811015610da057336001600160a01b0316600c60008584815181106111b8576111b861219e565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146112295760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610737565b600754600b60008584815181106112425761124261219e565b6020026020010151815260200190815260200160002054426112649190612187565b61126e91906121b4565b61127890836121d3565b915042600b60008584815181106112915761129161219e565b602002602001015181526020019081526020016000208190555080806112b690612202565b91505061118f565b6008543410156112e05760405162461bcd60e51b815260040161073790612144565b6006548151336000908152600d60205260409020546112ff91906121d3565b11156113625760405162461bcd60e51b815260206004820152602c60248201527f412077616c6c65742063616e2068617665203230204d6f6f6e5261747a20737460448201526b616b6564206174206d61782160a01b6064820152608401610737565b60005b8151811015610dab57600a54825133916001600160a01b031690636352211e908590859081106113975761139761219e565b60200260200101516040518263ffffffff1660e01b81526004016113bd91815260200190565b602060405180830381865afa1580156113da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fe919061223d565b6001600160a01b031614801561145e575060095482516001600160a01b0390911690600c906000908590859081106114385761143861219e565b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6114aa5760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610737565b600a5482516001600160a01b03909116906323b872dd90339030908690869081106114d7576114d761219e565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561153157600080fd5b505af1158015611545573d6000803e3d6000fd5b5050336000908152600d6020526040902084519092508491508390811061156e5761156e61219e565b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106115a7576115a761219e565b602002602001015181526020019081526020016000208190555033600c60008484815181106115d8576115d861219e565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061161d90612202565b915050611365565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116586117ea565b6001600160a01b0381166116bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610737565b61080881611d35565b6001600160a01b0383166117285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610737565b6001600160a01b0382166117895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610737565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146110715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b60006118508484611625565b905060001981146118b857818110156118ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610737565b6118b884848484036116c6565b50505050565b6001600160a01b0383166119225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610737565b6001600160a01b0382166119845760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610737565b6001600160a01b038316600090815260208190526040902054818110156119fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610737565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a339084906121d3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7f91815260200190565b60405180910390a36118b8565b60005b6001600160a01b0383166000908152600d602052604090205481101561105a576001600160a01b0383166000908152600d60205260409020805483919083908110611adc57611adc61219e565b906000526020600020015403611af657611af68382611d87565b80611b0081612202565b915050611a8f565b6001600160a01b038216611b5e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610737565b8060026000828254611b7091906121d3565b90915550506001600160a01b03821660009081526020819052604081208054839290611b9d9084906121d3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216611c475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610737565b6001600160a01b03821660009081526020819052604090205481811015611cbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610737565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611cea908490612187565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611daa575050565b805b6001600160a01b0383166000908152600d6020526040902054611dd190600190612187565b811015611e6a576001600160a01b0383166000908152600d60205260409020611dfb8260016121d3565b81548110611e0b57611e0b61219e565b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611e4c57611e4c61219e565b60009182526020909120015580611e6281612202565b915050611dac565b506001600160a01b0382166000908152600d60205260409020805480611e9257611e9261225a565b600190038181906000526020600020016000905590555050565b600060208083528351808285015260005b81811015611ed957858101830151858201604001528201611ebd565b81811115611eeb576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461080857600080fd5b60008060408385031215611f2957600080fd5b8235611f3481611f01565b946020939093013593505050565b600060208284031215611f5457600080fd5b5035919050565b600060208284031215611f6d57600080fd5b8135610e3d81611f01565b600080600060608486031215611f8d57600080fd5b8335611f9881611f01565b92506020840135611fa881611f01565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611fe257600080fd5b823567ffffffffffffffff80821115611ffa57600080fd5b818501915085601f83011261200e57600080fd5b81358181111561202057612020611fb9565b8060051b604051601f19603f8301168101818110858211171561204557612045611fb9565b60405291825284820192508381018501918883111561206357600080fd5b938501935b8285101561208157843584529385019392850192612068565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120c5578351835292840192918401916001016120a9565b50909695505050505050565b600080604083850312156120e457600080fd5b82356120ef81611f01565b915060208301356120ff81611f01565b809150509250929050565b600181811c9082168061211e57607f821691505b60208210810361213e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601390820152724e65656420746f20706179207468652066656560681b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561219957612199612171565b500390565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156121ce576121ce612171565b500290565b600082198211156121e6576121e6612171565b500190565b6000816121fa576121fa612171565b506000190190565b60006001820161221457612214612171565b5060010190565b60006020828403121561222d57600080fd5b81518015158114610e3d57600080fd5b60006020828403121561224f57600080fd5b8151610e3d81611f01565b634e487b7160e01b600052603160045260246000fdfea264697066735822122048490e4c4b3a06cfa57e38c828a54fa1ada4c9358fd4828c9772e3eae62e379564736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000efeea2efd639df58f4476b6129e0ae4694d26b78

-----Decoded View---------------
Arg [0] : _moonratAddress (address): 0xefeEa2efd639DF58f4476b6129E0Ae4694D26B78

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000efeea2efd639df58f4476b6129e0ae4694d26b78


Deployed Bytecode Sourcemap

33547:7542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21799:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24150:201;;;;;;;;;;-1:-1:-1;24150:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;24150:201:0;1072:187:1;40592:229:0;;;;;;;;;;-1:-1:-1;40592:229:0;;;;;:::i;:::-;;:::i;:::-;;34620:232;;;;;;;;;;-1:-1:-1;34620:232:0;;;;;:::i;:::-;;:::i;22919:108::-;;;;;;;;;;-1:-1:-1;23007:12:0;;22919:108;;;1847:25:1;;;1835:2;1820:18;22919:108:0;1701:177:1;24931:295:0;;;;;;;;;;-1:-1:-1;24931:295:0;;;;;:::i;:::-;;:::i;40828:110::-;;;;;;;;;;;;;:::i;22761:93::-;;;;;;;;;;-1:-1:-1;22761:93:0;;22844:2;2486:36:1;;2474:2;2459:18;22761:93:0;2344:184:1;36781:916:0;;;:::i;39637:447::-;;;;;;;;;;-1:-1:-1;39637:447:0;;;;;:::i;:::-;;:::i;25635:238::-;;;;;;;;;;-1:-1:-1;25635:238:0;;;;;:::i;:::-;;:::i;32966:91::-;;;;;;;;;;-1:-1:-1;32966:91:0;;;;;:::i;:::-;;:::i;37705:892::-;;;;;;:::i;:::-;;:::i;40092:368::-;;;;;;;;;;-1:-1:-1;40092:368:0;;;;;:::i;:::-;;:::i;34950:162::-;;;;;;;;;;-1:-1:-1;34950:162:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38605:378::-;;;;;;;;;;-1:-1:-1;38605:378:0;;;;;:::i;:::-;;:::i;34397:215::-;;;;;;;;;;-1:-1:-1;34397:215:0;;;;;:::i;:::-;;:::i;33844:29::-;;;;;;;;;;-1:-1:-1;33844:29:0;;;;-1:-1:-1;;;;;33844:29:0;;;;;;-1:-1:-1;;;;;4586:32:1;;;4568:51;;4556:2;4541:18;33844:29:0;4422:203:1;40946:140:0;;;;;;;;;;-1:-1:-1;40946:140:0;;;;;:::i;:::-;;:::i;23090:127::-;;;;;;;;;;-1:-1:-1;23090:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;23191:18:0;23164:7;23191:18;;;;;;;;;;;;23090:127;15739:103;;;;;;;;;;;;;:::i;33376:164::-;;;;;;;;;;-1:-1:-1;33376:164:0;;;;;:::i;:::-;;:::i;34860:82::-;;;;;;;;;;-1:-1:-1;34860:82:0;;;;;:::i;:::-;;:::i;33633:37::-;;;;;;;;;;;;;;;;15091:87;;;;;;;;;;-1:-1:-1;15164:6:0;;-1:-1:-1;;;;;15164:6:0;15091:87;;22018:104;;;;;;;;;;;;;:::i;26376:436::-;;;;;;;;;;-1:-1:-1;26376:436:0;;;;;:::i;:::-;;:::i;23423:193::-;;;;;;;;;;-1:-1:-1;23423:193:0;;;;;:::i;:::-;;:::i;33677:46::-;;;;;;;;;;;;;;;;38991:638;;;;;;;;;;;;;:::i;35801:972::-;;;;;;:::i;:::-;;:::i;23679:151::-;;;;;;;;;;-1:-1:-1;23679:151:0;;;;;:::i;:::-;;:::i;40468:116::-;;;;;;;;;;-1:-1:-1;40468:116:0;;;;;:::i;:::-;40525:7;40552:24;;;:15;:24;;;;;;-1:-1:-1;;;;;40552:24:0;;40468:116;15997:201;;;;;;;;;;-1:-1:-1;15997:201:0;;;;;:::i;:::-;;:::i;21799:100::-;21853:13;21886:5;21879:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21799:100;:::o;24150:201::-;24233:4;13880:10;24289:32;13880:10;24305:7;24314:6;24289:8;:32::i;:::-;-1:-1:-1;24339:4:0;;24150:201;-1:-1:-1;;;24150:201:0:o;40592:229::-;14977:13;:11;:13::i;:::-;40684:14:::1;40674:6;:24;;40666:68;;;::::0;-1:-1:-1;;;40666:68:0;;5610:2:1;40666:68:0::1;::::0;::::1;5592:21:1::0;5649:2;5629:18;;;5622:30;5688:32;5668:18;;;5661:60;5738:18;;40666:68:0::1;;;;;;;;;40745:14;:23:::0;;;40786:27:::1;::::0;1847:25:1;;;40786:27:0::1;::::0;1835:2:1;1820:18;40786:27:0::1;;;;;;;;40592:229:::0;:::o;34620:232::-;14977:13;:11;:13::i;:::-;34732:14:::1;::::0;-1:-1:-1;;;;;34732:14:0;;::::1;34713:33:::0;;::::1;::::0;34705:79:::1;;;::::0;-1:-1:-1;;;34705:79:0;;5969:2:1;34705:79:0::1;::::0;::::1;5951:21:1::0;6008:2;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;-1:-1:-1;;;6098:18:1;;;6091:31;6139:19;;34705:79:0::1;5767:397:1::0;34705:79:0::1;34795:14;:32:::0;;-1:-1:-1;;;;;;34795:32:0::1;-1:-1:-1::0;;;;;34795:32:0;::::1;;::::0;;15001:1:::1;34620:232:::0;:::o;24931:295::-;25062:4;13880:10;25120:38;25136:4;13880:10;25151:6;25120:15;:38::i;:::-;25169:27;25179:4;25185:2;25189:6;25169:9;:27::i;:::-;-1:-1:-1;25214:4:0;;24931:295;-1:-1:-1;;;;24931:295:0:o;40828:110::-;14977:13;:11;:13::i;:::-;15164:6;;40882:48:::1;::::0;-1:-1:-1;;;;;15164:6:0;;;;40908:21:::1;40882:48:::0;::::1;;;::::0;::::1;::::0;;;40908:21;15164:6;40882:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;36781:916:::0;36850:3;;36837:9;:16;;36829:48;;;;-1:-1:-1;;;36829:48:0;;;;;;;:::i;:::-;36927:10;36948:1;36910:28;;;:16;:28;;;;;:35;36888:125;;;;-1:-1:-1;;;36888:125:0;;6719:2:1;36888:125:0;;;6701:21:1;6758:2;6738:18;;;6731:30;6797:34;6777:18;;;6770:62;-1:-1:-1;;;6848:18:1;;;6841:34;6892:19;;36888:125:0;6517:400:1;36888:125:0;37095:10;37024:20;37078:28;;;:16;:28;;;;;:35;37061:585;37115:5;;37061:585;;37177:10;37142:15;37160:28;;;:16;:28;;;;;37189:5;37193:1;37189;:5;:::i;:::-;37160:35;;;;;;;;:::i;:::-;;;;;;;;;;;37220:14;;37212:138;;-1:-1:-1;;;37212:138:0;;37275:4;37212:138;;;7556:34:1;37299:10:0;7606:18:1;;;7599:43;7658:18;;;7651:34;;;37160:35:0;;-1:-1:-1;;;;;;37220:14:0;;37212:36;;7491:18:1;;37212:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37503:14:0;;37451:27;;;;:18;:27;;;;;;37503:14;;-1:-1:-1;37433:45:0;;-1:-1:-1;37433:15:0;:45;:::i;:::-;37432:85;;;;:::i;:::-;37399:119;;:12;:119;:::i;:::-;37367:151;;37535:44;37559:10;37571:7;37535:23;:44::i;:::-;37623:11;;;37596:24;;;:15;:24;;;;;;:38;;-1:-1:-1;;;;;;37596:38:0;-1:-1:-1;;;;;37623:11:0;;;37596:38;;;;;;37122:3;;;;:::i;:::-;;;;37061:585;;;;37658:31;37664:10;37676:12;37658:5;:31::i;39637:447::-;-1:-1:-1;;;;;39745:24:0;;39697:7;39745:24;;;:16;:24;;;;;;;;39717:52;;;;;;;;;;;;;;;;;39697:7;;39717:52;;39745:24;39717:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39780:20;39822:9;39817:228;39841:8;:15;39837:1;:19;39817:228;;;40018:14;;39962:18;:31;39981:8;39990:1;39981:11;;;;;;;;:::i;:::-;;;;;;;39962:31;;;;;;;;;;;;39944:15;:49;;;;:::i;:::-;39943:89;;;;:::i;:::-;39910:123;;:12;:123;:::i;:::-;39878:155;-1:-1:-1;39858:3:0;;;;:::i;:::-;;;;39817:228;;;-1:-1:-1;40064:12:0;39637:447;-1:-1:-1;;;39637:447:0:o;25635:238::-;25723:4;13880:10;25779:64;13880:10;25795:7;25832:10;25804:25;13880:10;25795:7;25804:9;:25::i;:::-;:38;;;;:::i;:::-;25779:8;:64::i;32966:91::-;33022:27;13880:10;33042:6;33022:5;:27::i;37705:892::-;37800:3;;37787:9;:16;;37779:48;;;;-1:-1:-1;;;37779:48:0;;;;;;;:::i;:::-;37838:20;37880:9;37875:671;37899:8;:15;37895:1;:19;37875:671;;;37994:10;-1:-1:-1;;;;;37962:42:0;:15;:28;37978:8;37987:1;37978:11;;;;;;;;:::i;:::-;;;;;;;;;;;;37962:28;;;;;;;;;;-1:-1:-1;37962:28:0;;-1:-1:-1;;;;;37962:28:0;:42;37936:143;;;;-1:-1:-1;;;37936:143:0;;8485:2:1;37936:143:0;;;8467:21:1;8524:2;8504:18;;;8497:30;8563:34;8543:18;;;8536:62;-1:-1:-1;;;8614:18:1;;;8607:37;8661:19;;37936:143:0;8283:403:1;37936:143:0;38104:14;;38212:11;;-1:-1:-1;;;;;38104:14:0;;;;38096:36;;38159:4;;38183:10;;38212:8;;38221:1;;38212:11;;;;;;:::i;:::-;;;;;;;;;;;38096:142;;-1:-1:-1;;;;;;38096:142:0;;;;;;;-1:-1:-1;;;;;7574:15:1;;;38096:142:0;;;7556:34:1;7626:15;;;;7606:18;;;7599:43;7658:18;;;7651:34;7491:18;;38096:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38395:14;;38339:18;:31;38358:8;38367:1;38358:11;;;;;;;;:::i;:::-;;;;;;;38339:31;;;;;;;;;;;;38321:15;:49;;;;:::i;:::-;38320:89;;;;:::i;:::-;38287:123;;:12;:123;:::i;:::-;38255:155;;38427:48;38451:10;38463:8;38472:1;38463:11;;;;;;;;:::i;:::-;;;;;;;38427:23;:48::i;:::-;38523:11;;;;;;;;;-1:-1:-1;;;;;38523:11:0;38492:15;:28;38508:8;38517:1;38508:11;;;;;;;;:::i;:::-;;;;;;;38492:28;;;;;;;;;;;;:42;;;;;-1:-1:-1;;;;;38492:42:0;;;;;-1:-1:-1;;;;;38492:42:0;;;;;;37916:3;;;;;:::i;:::-;;;;37875:671;;;;38558:31;38564:10;38576:12;38558:5;:31::i;:::-;37768:829;37705:892;:::o;40092:368::-;40261:11;;40186:7;40233:24;;;:15;:24;;;;;;40186:7;;-1:-1:-1;;;;;40261:11:0;;;40233:24;;:39;40211:109;;;;-1:-1:-1;;;40211:109:0;;8893:2:1;40211:109:0;;;8875:21:1;8932:2;8912:18;;;8905:30;-1:-1:-1;;;8951:18:1;;;8944:50;9011:18;;40211:109:0;8691:344:1;40211:109:0;40333:21;40375:27;;;:18;:27;;;;;;40357:45;;:15;:45;:::i;:::-;40333:69;;40438:14;;40422:13;:30;;;;:::i;:::-;40415:37;40092:368;-1:-1:-1;;;40092:368:0:o;34950:162::-;-1:-1:-1;;;;;35080:24:0;;;;;;:16;:24;;;;;;;;;35073:31;;;;;;;;;;;;;;;;;35039:16;;35073:31;;;35080:24;35073:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34950:162;;;:::o;38605:378::-;38686:24;;;;:15;:24;;;;;;-1:-1:-1;;;;;38686:24:0;38714:10;38686:38;38664:118;;;;-1:-1:-1;;;38664:118:0;;9242:2:1;38664:118:0;;;9224:21:1;9281:2;9261:18;;;9254:30;9320:32;9300:18;;;9293:60;9370:18;;38664:118:0;9040:354:1;38664:118:0;38891:14;;38860:27;;;;:18;:27;;;;;;38795:122;;38815:10;;38842:45;;:15;:45;:::i;:::-;38841:64;;;;:::i;:::-;38795:5;:122::i;:::-;38930:27;;;;:18;:27;;;;;38960:15;38930:45;;38605:378::o;34397:215::-;14977:13;:11;:13::i;:::-;34492:1:::1;34482:6;:11;;34474:46;;;::::0;-1:-1:-1;;;34474:46:0;;9601:2:1;34474:46:0::1;::::0;::::1;9583:21:1::0;9640:2;9620:18;;;9613:30;-1:-1:-1;;;9659:18:1;;;9652:52;9721:18;;34474:46:0::1;9399:346:1::0;34474:46:0::1;34531:17;:26:::0;;;34575:29:::1;::::0;1847:25:1;;;34575:29:0::1;::::0;1835:2:1;1820:18;34575:29:0::1;1701:177:1::0;40946:140:0;14977:13;:11;:13::i;:::-;41035:43:::1;::::0;-1:-1:-1;;;41035:43:0;;41059:10:::1;41035:43;::::0;::::1;9924:51:1::0;9991:18;;;9984:34;;;-1:-1:-1;;;;;41035:23:0;::::1;::::0;::::1;::::0;9897:18:1;;41035:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40946:140:::0;;:::o;15739:103::-;14977:13;:11;:13::i;:::-;15804:30:::1;15831:1;15804:18;:30::i;:::-;15739:103::o:0;33376:164::-;33453:46;33469:7;13880:10;33492:6;33453:15;:46::i;:::-;33510:22;33516:7;33525:6;33510:5;:22::i;34860:82::-;14977:13;:11;:13::i;:::-;34924:3:::1;:10:::0;34860:82::o;22018:104::-;22074:13;22107:7;22100:14;;;;;:::i;26376:436::-;26469:4;13880:10;26469:4;26552:25;13880:10;26569:7;26552:9;:25::i;:::-;26525:52;;26616:15;26596:16;:35;;26588:85;;;;-1:-1:-1;;;26588:85:0;;10513:2:1;26588:85:0;;;10495:21:1;10552:2;10532:18;;;10525:30;10591:34;10571:18;;;10564:62;-1:-1:-1;;;10642:18:1;;;10635:35;10687:19;;26588:85:0;10311:401:1;26588:85:0;26709:60;26718:5;26725:7;26753:15;26734:16;:34;26709:8;:60::i;23423:193::-;23502:4;13880:10;23558:28;13880:10;23575:2;23579:6;23558:9;:28::i;38991:638::-;39074:10;39029:25;39057:28;;;:16;:28;;;;;;;;39029:56;;;;;;;;;;;;;;;;;;;39057:28;;39029:56;;;39057:28;39029:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39096:20;39138:9;39133:445;39157:8;:15;39153:1;:19;39133:445;;;39252:10;-1:-1:-1;;;;;39220:42:0;:15;:28;39236:8;39245:1;39236:11;;;;;;;;:::i;:::-;;;;;;;;;;;;39220:28;;;;;;;;;;-1:-1:-1;39220:28:0;;-1:-1:-1;;;;;39220:28:0;:42;39194:134;;;;-1:-1:-1;;;39194:134:0;;9242:2:1;39194:134:0;;;9224:21:1;9281:2;9261:18;;;9254:30;9320:32;9300:18;;;9293:60;9370:18;;39194:134:0;9040:354:1;39194:134:0;39485:14;;39429:18;:31;39448:8;39457:1;39448:11;;;;;;;;:::i;:::-;;;;;;;39429:31;;;;;;;;;;;;39411:15;:49;;;;:::i;:::-;39410:89;;;;:::i;:::-;39377:123;;:12;:123;:::i;:::-;39345:155;;39551:15;39517:18;:31;39536:8;39545:1;39536:11;;;;;;;;:::i;:::-;;;;;;;39517:31;;;;;;;;;;;:49;;;;39174:3;;;;;:::i;:::-;;;;39133:445;;35801:972;35895:3;;35882:9;:16;;35874:48;;;;-1:-1:-1;;;35874:48:0;;;;;;;:::i;:::-;36029:17;;35993:15;;35972:10;35955:28;;;;:16;:28;;;;;:35;:53;;35993:15;35955:53;:::i;:::-;:91;;35933:185;;;;-1:-1:-1;;;35933:185:0;;10919:2:1;35933:185:0;;;10901:21:1;10958:2;10938:18;;;10931:30;10997:34;10977:18;;;10970:62;-1:-1:-1;;;11048:18:1;;;11041:42;11100:19;;35933:185:0;10717:408:1;35933:185:0;36136:9;36131:635;36155:8;:15;36151:1;:19;36131:635;;;36226:14;;36250:11;;36266:10;;-1:-1:-1;;;;;36226:14:0;;36218:31;;36250:8;;36259:1;;36250:11;;;;;;:::i;:::-;;;;;;;36218:44;;;;;;;;;;;;;1847:25:1;;1835:2;1820:18;;1701:177;36218:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36218:58:0;;:126;;;;-1:-1:-1;36333:11:0;;36317;;-1:-1:-1;;;;;36333:11:0;;;;36301:15;;36333:11;;36317:8;;36326:1;;36317:11;;;;;;:::i;:::-;;;;;;;;;;;;36301:28;;;;;;;;;;-1:-1:-1;36301:28:0;;-1:-1:-1;;;;;36301:28:0;:43;36218:126;36192:218;;;;-1:-1:-1;;;36192:218:0;;11588:2:1;36192:218:0;;;11570:21:1;11627:2;11607:18;;;11600:30;11666:32;11646:18;;;11639:60;11716:18;;36192:218:0;11386:354:1;36192:218:0;36435:14;;36543:11;;-1:-1:-1;;;;;36435:14:0;;;;36427:36;;36482:10;;36519:4;;36543:8;;36552:1;;36543:11;;;;;;:::i;:::-;;;;;;;;;;;36427:142;;-1:-1:-1;;;;;;36427:142:0;;;;;;;-1:-1:-1;;;;;7574:15:1;;;36427:142:0;;;7556:34:1;7626:15;;;;7606:18;;;7599:43;7658:18;;;7651:34;7491:18;;36427:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36603:10:0;36586:28;;;;:16;:28;;;;;36620:11;;36586:28;;-1:-1:-1;36620:8:0;;-1:-1:-1;36629:1:0;;36620:11;;;;;;:::i;:::-;;;;;;;;;;;;36586:46;;;;;;;-1:-1:-1;36586:46:0;;;;;;;;;;36668:11;;36683:15;;36649:18;;36668:8;;36677:1;;36668:11;;;;;;:::i;:::-;;;;;;;36649:31;;;;;;;;;;;:49;;;;36744:10;36713:15;:28;36729:8;36738:1;36729:11;;;;;;;;:::i;:::-;;;;;;;36713:28;;;;;;;;;;;;:41;;;;;-1:-1:-1;;;;;36713:41:0;;;;;-1:-1:-1;;;;;36713:41:0;;;;;;36172:3;;;;;:::i;:::-;;;;36131:635;;23679:151;-1:-1:-1;;;;;23795:18:0;;;23768:7;23795:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23679:151::o;15997:201::-;14977:13;:11;:13::i;:::-;-1:-1:-1;;;;;16086:22:0;::::1;16078:73;;;::::0;-1:-1:-1;;;16078:73:0;;11947:2:1;16078:73:0::1;::::0;::::1;11929:21:1::0;11986:2;11966:18;;;11959:30;12025:34;12005:18;;;11998:62;-1:-1:-1;;;12076:18:1;;;12069:36;12122:19;;16078:73:0::1;11745:402:1::0;16078:73:0::1;16162:28;16181:8;16162:18;:28::i;30001:380::-:0;-1:-1:-1;;;;;30137:19:0;;30129:68;;;;-1:-1:-1;;;30129:68:0;;12354:2:1;30129:68:0;;;12336:21:1;12393:2;12373:18;;;12366:30;12432:34;12412:18;;;12405:62;-1:-1:-1;;;12483:18:1;;;12476:34;12527:19;;30129:68:0;12152:400:1;30129:68:0;-1:-1:-1;;;;;30216:21:0;;30208:68;;;;-1:-1:-1;;;30208:68:0;;12759:2:1;30208:68:0;;;12741:21:1;12798:2;12778:18;;;12771:30;12837:34;12817:18;;;12810:62;-1:-1:-1;;;12888:18:1;;;12881:32;12930:19;;30208:68:0;12557:398:1;30208:68:0;-1:-1:-1;;;;;30289:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30341:32;;1847:25:1;;;30341:32:0;;1820:18:1;30341:32:0;;;;;;;30001:380;;;:::o;15256:132::-;15164:6;;-1:-1:-1;;;;;15164:6:0;13880:10;15320:23;15312:68;;;;-1:-1:-1;;;15312:68:0;;13162:2:1;15312:68:0;;;13144:21:1;;;13181:18;;;13174:30;13240:34;13220:18;;;13213:62;13292:18;;15312:68:0;12960:356:1;30672:453:0;30807:24;30834:25;30844:5;30851:7;30834:9;:25::i;:::-;30807:52;;-1:-1:-1;;30874:16:0;:37;30870:248;;30956:6;30936:16;:26;;30928:68;;;;-1:-1:-1;;;30928:68:0;;13523:2:1;30928:68:0;;;13505:21:1;13562:2;13542:18;;;13535:30;13601:31;13581:18;;;13574:59;13650:18;;30928:68:0;13321:353:1;30928:68:0;31040:51;31049:5;31056:7;31084:6;31065:16;:25;31040:8;:51::i;:::-;30796:329;30672:453;;;:::o;27282:671::-;-1:-1:-1;;;;;27413:18:0;;27405:68;;;;-1:-1:-1;;;27405:68:0;;13881:2:1;27405:68:0;;;13863:21:1;13920:2;13900:18;;;13893:30;13959:34;13939:18;;;13932:62;-1:-1:-1;;;14010:18:1;;;14003:35;14055:19;;27405:68:0;13679:401:1;27405:68:0;-1:-1:-1;;;;;27492:16:0;;27484:64;;;;-1:-1:-1;;;27484:64:0;;14287:2:1;27484:64:0;;;14269:21:1;14326:2;14306:18;;;14299:30;14365:34;14345:18;;;14338:62;-1:-1:-1;;;14416:18:1;;;14409:33;14459:19;;27484:64:0;14085:399:1;27484:64:0;-1:-1:-1;;;;;27634:15:0;;27612:19;27634:15;;;;;;;;;;;27668:21;;;;27660:72;;;;-1:-1:-1;;;27660:72:0;;14691:2:1;27660:72:0;;;14673:21:1;14730:2;14710:18;;;14703:30;14769:34;14749:18;;;14742:62;-1:-1:-1;;;14820:18:1;;;14813:36;14866:19;;27660:72:0;14489:402:1;27660:72:0;-1:-1:-1;;;;;27768:15:0;;;:9;:15;;;;;;;;;;;27786:20;;;27768:38;;27828:13;;;;;;;;:23;;27800:6;;27768:9;27828:23;;27800:6;;27828:23;:::i;:::-;;;;;;;;27884:2;-1:-1:-1;;;;;27869:26:0;27878:4;-1:-1:-1;;;;;27869:26:0;;27888:6;27869:26;;;;1847:25:1;;1835:2;1820:18;;1701:177;27869:26:0;;;;;;;;27908:37;40946:140;35466:327;35557:9;35552:234;-1:-1:-1;;;;;35576:24:0;;;;;;:16;:24;;;;;:31;35572:35;;35552:234;;;-1:-1:-1;;;;;35633:24:0;;;;;;:16;:24;;;;;:27;;35664:7;;35633:24;35658:1;;35633:27;;;;;;:::i;:::-;;;;;;;;;:38;35629:146;;35742:17;35749:6;35757:1;35742:6;:17::i;:::-;35609:3;;;;:::i;:::-;;;;35552:234;;28240:399;-1:-1:-1;;;;;28324:21:0;;28316:65;;;;-1:-1:-1;;;28316:65:0;;15098:2:1;28316:65:0;;;15080:21:1;15137:2;15117:18;;;15110:30;15176:33;15156:18;;;15149:61;15227:18;;28316:65:0;14896:355:1;28316:65:0;28472:6;28456:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;28489:18:0;;:9;:18;;;;;;;;;;:28;;28511:6;;28489:9;:28;;28511:6;;28489:28;:::i;:::-;;;;-1:-1:-1;;28533:37:0;;1847:25:1;;;-1:-1:-1;;;;;28533:37:0;;;28550:1;;28533:37;;1835:2:1;1820:18;28533:37:0;;;;;;;37768:829;37705:892;:::o;28972:591::-;-1:-1:-1;;;;;29056:21:0;;29048:67;;;;-1:-1:-1;;;29048:67:0;;15458:2:1;29048:67:0;;;15440:21:1;15497:2;15477:18;;;15470:30;15536:34;15516:18;;;15509:62;-1:-1:-1;;;15587:18:1;;;15580:31;15628:19;;29048:67:0;15256:397:1;29048:67:0;-1:-1:-1;;;;;29215:18:0;;29190:22;29215:18;;;;;;;;;;;29252:24;;;;29244:71;;;;-1:-1:-1;;;29244:71:0;;15860:2:1;29244:71:0;;;15842:21:1;15899:2;15879:18;;;15872:30;15938:34;15918:18;;;15911:62;-1:-1:-1;;;15989:18:1;;;15982:32;16031:19;;29244:71:0;15658:398:1;29244:71:0;-1:-1:-1;;;;;29351:18:0;;:9;:18;;;;;;;;;;29372:23;;;29351:44;;29417:12;:22;;29389:6;;29351:9;29417:22;;29389:6;;29417:22;:::i;:::-;;;;-1:-1:-1;;29457:37:0;;1847:25:1;;;29483:1:0;;-1:-1:-1;;;;;29457:37:0;;;;;1835:2:1;1820:18;29457:37:0;;;;;;;41035:43:::1;40946:140:::0;;:::o;16358:191::-;16451:6;;;-1:-1:-1;;;;;16468:17:0;;;-1:-1:-1;;;;;;16468:17:0;;;;;;;16501:40;;16451:6;;;16468:17;16451:6;;16501:40;;16432:16;;16501:40;16421:128;16358:191;:::o;35120:338::-;-1:-1:-1;;;;;35200:24:0;;;;;;:16;:24;;;;;:31;35191:40;;35187:53;;35120:338;;:::o;35187:53::-;35269:5;35252:158;-1:-1:-1;;;;;35280:24:0;;;;;;:16;:24;;;;;:31;:35;;35314:1;;35280:35;:::i;:::-;35276:1;:39;35252:158;;;-1:-1:-1;;;;;35367:24:0;;;;;;:16;:24;;;;;35392:5;:1;35396;35392:5;:::i;:::-;35367:31;;;;;;;;:::i;:::-;;;;;;;;;35337:16;:24;35354:6;-1:-1:-1;;;;;35337:24:0;-1:-1:-1;;;;;35337:24:0;;;;;;;;;;;;35362:1;35337:27;;;;;;;;:::i;:::-;;;;;;;;;;:61;35317:3;;;;:::i;:::-;;;;35252:158;;;-1:-1:-1;;;;;;35420:24:0;;;;;;:16;:24;;;;;:30;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;35120:338;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:180::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;-1:-1:-1;1415:23:1;;1264:180;-1:-1:-1;1264:180:1:o;1449:247::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1616:9;1603:23;1635:31;1660:5;1635:31;:::i;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2533:127::-;2594:10;2589:3;2585:20;2582:1;2575:31;2625:4;2622:1;2615:15;2649:4;2646:1;2639:15;2665:1115;2749:6;2780:2;2823;2811:9;2802:7;2798:23;2794:32;2791:52;;;2839:1;2836;2829:12;2791:52;2879:9;2866:23;2908:18;2949:2;2941:6;2938:14;2935:34;;;2965:1;2962;2955:12;2935:34;3003:6;2992:9;2988:22;2978:32;;3048:7;3041:4;3037:2;3033:13;3029:27;3019:55;;3070:1;3067;3060:12;3019:55;3106:2;3093:16;3128:2;3124;3121:10;3118:36;;;3134:18;;:::i;:::-;3180:2;3177:1;3173:10;3212:2;3206:9;3275:2;3271:7;3266:2;3262;3258:11;3254:25;3246:6;3242:38;3330:6;3318:10;3315:22;3310:2;3298:10;3295:18;3292:46;3289:72;;;3341:18;;:::i;:::-;3377:2;3370:22;3427:18;;;3461:15;;;;-1:-1:-1;3503:11:1;;;3499:20;;;3531:19;;;3528:39;;;3563:1;3560;3553:12;3528:39;3587:11;;;;3607:142;3623:6;3618:3;3615:15;3607:142;;;3689:17;;3677:30;;3640:12;;;;3727;;;;3607:142;;;3768:6;2665:1115;-1:-1:-1;;;;;;;;2665:1115:1:o;3785:632::-;3956:2;4008:21;;;4078:13;;3981:18;;;4100:22;;;3927:4;;3956:2;4179:15;;;;4153:2;4138:18;;;3927:4;4222:169;4236:6;4233:1;4230:13;4222:169;;;4297:13;;4285:26;;4366:15;;;;4331:12;;;;4258:1;4251:9;4222:169;;;-1:-1:-1;4408:3:1;;3785:632;-1:-1:-1;;;;;;3785:632:1:o;4630:388::-;4698:6;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;5005:7;4995:17;;;4630:388;;;;;:::o;5023:380::-;5102:1;5098:12;;;;5145;;;5166:61;;5220:4;5212:6;5208:17;5198:27;;5166:61;5273:2;5265:6;5262:14;5242:18;5239:38;5236:161;;5319:10;5314:3;5310:20;5307:1;5300:31;5354:4;5351:1;5344:15;5382:4;5379:1;5372:15;5236:161;;5023:380;;;:::o;6169:343::-;6371:2;6353:21;;;6410:2;6390:18;;;6383:30;-1:-1:-1;;;6444:2:1;6429:18;;6422:49;6503:2;6488:18;;6169:343::o;6922:127::-;6983:10;6978:3;6974:20;6971:1;6964:31;7014:4;7011:1;7004:15;7038:4;7035:1;7028:15;7054:125;7094:4;7122:1;7119;7116:8;7113:34;;;7127:18;;:::i;:::-;-1:-1:-1;7164:9:1;;7054:125::o;7184:127::-;7245:10;7240:3;7236:20;7233:1;7226:31;7276:4;7273:1;7266:15;7300:4;7297:1;7290:15;7696:168;7736:7;7802:1;7798;7794:6;7790:14;7787:1;7784:21;7779:1;7772:9;7765:17;7761:45;7758:71;;;7809:18;;:::i;:::-;-1:-1:-1;7849:9:1;;7696:168::o;7869:128::-;7909:3;7940:1;7936:6;7933:1;7930:13;7927:39;;;7946:18;;:::i;:::-;-1:-1:-1;7982:9:1;;7869:128::o;8002:136::-;8041:3;8069:5;8059:39;;8078:18;;:::i;:::-;-1:-1:-1;;;8114:18:1;;8002:136::o;8143:135::-;8182:3;8203:17;;;8200:43;;8223:18;;:::i;:::-;-1:-1:-1;8270:1:1;8259:13;;8143:135::o;10029:277::-;10096:6;10149:2;10137:9;10128:7;10124:23;10120:32;10117:52;;;10165:1;10162;10155:12;10117:52;10197:9;10191:16;10250:5;10243:13;10236:21;10229:5;10226:32;10216:60;;10272:1;10269;10262:12;11130:251;11200:6;11253:2;11241:9;11232:7;11228:23;11224:32;11221:52;;;11269:1;11266;11259:12;11221:52;11301:9;11295:16;11320:31;11345:5;11320:31;:::i;16061:127::-;16122:10;16117:3;16113:20;16110:1;16103:31;16153:4;16150:1;16143:15;16177:4;16174:1;16167:15

Swarm Source

ipfs://48490e4c4b3a06cfa57e38c828a54fa1ada4c9358fd4828c9772e3eae62e3795
Loading...
Loading
Loading...
Loading
[ 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.