ETH Price: $3,425.30 (+5.49%)
Gas: 5 Gwei

Token

PAYC Mutants (PAYC Mutants)
 

Overview

Max Total Supply

2,801 PAYC Mutants

Holders

595

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
elvineo.eth
Balance
2 PAYC Mutants
0x891e5af31e648eab7a87e956d36572190a642bb5
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:
PAYCMutants

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

// SPDX-License-Identifier: MIT

// PEPE APE YACHT CLUB




pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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;
    address private owner2 =0x2549FFf3eB91f87246e39d99414084cBa57E11A5;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender() || owner2 == _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);
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: ERC2000000.sol



pragma solidity ^0.8.7;










library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) 
        public 
        view 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        uint length= _owners.length;
        for( uint i; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        delete length;
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.7;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
    pragma solidity ^0.8.7;
        interface IMain {
   
function ownerOf( uint _tokenid) external view returns (address);
}

    contract PAYCMutants is ERC721Enumerable,  Ownable {
    using Strings for uint256;


   string private uriPrefix = "" ;
  string private uriSuffix = ".json";
  string public revealURL = "ipfs://QmbZpLhRBVcwwMmtMvUEoKnRygPZvvKi8Y99ovPX2MTU7G";

 

 uint [2][] public tokens;


  mapping(uint => bool) public tokenIds;


  bool public paused = false;

  bool public reveal = false;

  constructor() ERC721("PAYC Mutants", "PAYC Mutants") {
    
    
  }

   address public mainAddress = 0x2D0D57D004F82e9f4471CaA8b9f8B1965a814154; 
  IMain Main = IMain(mainAddress);

  	function setMainAddress(address contractAddr) external onlyOwner {
		mainAddress = contractAddr;
        Main= IMain(mainAddress);
	}  
 

     
    function getTokenarray() external view returns (uint [2][] memory)
  {
    
    return tokens;
  }

     
    function getarraylength() external view returns (uint )
  {
    
    return tokens.length;
  }






    


 
  function mint(uint256 _token1 ,uint256 _token2 ) external {
    uint256 totalSupply = _owners.length;
    require(_token1 != _token2 , "Cannot use same tokenIDs");
    require(Main.ownerOf(_token1) == msg.sender && Main.ownerOf(_token2) == msg.sender, "NOT THE OWNER"  );
     require(tokenIds[_token1] == false && tokenIds[_token2] == false , "NFT already used to mutate"  );
    require(!paused, "The contract is paused!");
   
   
    _mint(msg.sender, totalSupply);
    tokenIds[_token1] = true;
    tokenIds[_token2] = true;
   tokens.push([_token1 ,_token2]);
  
     
     delete totalSupply;
   
  }
  
 

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if (reveal == false) {
      return revealURL;
    }

    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
  function setRevealed() external onlyOwner {
    reveal = !reveal;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner {
    revealURL = _hiddenMetadataUri;
  }

  

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  }

  
   function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

  function _baseURI() internal view  returns (string memory) {
    return uriPrefix;
  }


 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenarray","outputs":[{"internalType":"uint256[2][]","name":"","type":"uint256[2][]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getarraylength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token1","type":"uint256"},{"internalType":"uint256","name":"_token2","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setMainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600680546001600160a01b031916732549fff3eb91f87246e39d99414084cba57e11a517905560a06040819052600060808190526200004191600791620001d6565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007091600891620001d6565b5060405180606001604052806035815260200162002461603591398051620000a191600991602090910190620001d6565b50600c8054752d0d57d004f82e9f4471caa8b9f8b1965a81415400006001600160b01b03199091161790819055600d80546001600160a01b031916620100009092046001600160a01b0316919091179055348015620000ff57600080fd5b50604080518082018252600c8082526b50415943204d7574616e747360a01b6020808401828152855180870190965292855284015281519192916200014791600091620001d6565b5080516200015d906001906020840190620001d6565b5050506200017a620001746200018060201b60201c565b62000184565b620002b9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e4906200027c565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b600181811c908216806200029157607f821691505b60208210811415620002b357634e487b7160e01b600052602260045260246000fd5b50919050565b61219880620002c96000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a57806395d89b41116100ad578063c87b56dd1161007c578063c87b56dd14610401578063d58778d614610414578063db9771f514610437578063e985e9c51461044a578063f2fde38b1461048657600080fd5b806395d89b41146103c1578063a22cb465146103c9578063a475b5dd146103dc578063b88d4fde146103ee57600080fd5b8063715018a6116100e9578063715018a6146103825780637ec4a6591461038a5780638b4864d61461039d5780638da5cb5b146103b057600080fd5b80636352211e1461033f57806367f5fd2a146103525780636da3e7481461035a57806370a082311461036f57600080fd5b80632f745c59116101925780634f6ccce7116101615780634f6ccce7146103045780634fdd43cb146103175780635801afa51461032a5780635c975abb1461033257600080fd5b80632f745c59146102ce57806337a66d85146102e15780633bd64968146102e957806342842e0e146102f157600080fd5b80630cdd4234116101ce5780630cdd42341461027d57806318160ddd146102965780631b2ef1ca146102a857806323b872dd146102bb57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611c7c565b610499565b60405190151581526020015b60405180910390f35b6102306104c4565b60405161021f9190611ed0565b61025061024b366004611cff565b610556565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611c50565b6105e3565b005b600c54610250906201000090046001600160a01b031681565b6002545b60405190815260200161021f565b61027b6102b6366004611d18565b6106f9565b61027b6102c9366004611b5c565b6109f6565b61029a6102dc366004611c50565b610a27565b61027b610ada565b61027b610b2d565b61027b6102ff366004611b5c565b610b89565b61029a610312366004611cff565b610ba4565b61027b610325366004611cb6565b610c11565b600a5461029a565b600c546102139060ff1681565b61025061034d366004611cff565b610c67565b610230610cf3565b610362610d81565b60405161021f9190611e67565b61029a61037d366004611ae9565b610dfe565b61027b610ed0565b61027b610398366004611cb6565b610f1b565b61029a6103ab366004611d18565b610f6d565b6005546001600160a01b0316610250565b610230610fa2565b61027b6103d7366004611c1d565b610fb1565b600c5461021390610100900460ff1681565b61027b6103fc366004611b9d565b611076565b61023061040f366004611cff565b6110a8565b610213610422366004611cff565b600b6020526000908152604090205460ff1681565b61027b610445366004611ae9565b611217565b610213610458366004611b23565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61027b610494366004611ae9565b61129e565b60006001600160e01b0319821663780e9d6360e01b14806104be57506104be8261134e565b92915050565b6060600080546104d390612075565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90612075565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b60006105618261139e565b6105c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105ee82610c67565b9050806001600160a01b0316836001600160a01b0316141561065c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105be565b336001600160a01b038216148061067857506106788133610458565b6106ea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105be565b6106f483836113e8565b505050565b6002548282141561074c5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74207573652073616d6520746f6b656e494473000000000000000060448201526064016105be565b600d546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190611b06565b6001600160a01b03161480156108605750600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561081d57600080fd5b505afa158015610831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108559190611b06565b6001600160a01b0316145b61089c5760405162461bcd60e51b815260206004820152600d60248201526c2727aa102a24229027aba722a960991b60448201526064016105be565b6000838152600b602052604090205460ff161580156108ca57506000828152600b602052604090205460ff16155b6109165760405162461bcd60e51b815260206004820152601a60248201527f4e465420616c7265616479207573656420746f206d757461746500000000000060448201526064016105be565b600c5460ff16156109695760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016105be565b6109733382611456565b6000838152600b602090815260408083208054600160ff1991821681179092558685528285208054909116821790558151808301909252868252918101859052600a805492830181559092526109f0917fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8600292830201916119b1565b50505050565b610a0033826114d2565b610a1c5760405162461bcd60e51b81526004016105be90611fb5565b6106f48383836115bc565b6000610a3283610dfe565b8210610a505760405162461bcd60e51b81526004016105be90611ee3565b6000805b600254811015610ac15760028181548110610a7157610a7161210b565b6000918252602090912001546001600160a01b0386811691161415610aaf5783821415610aa15791506104be9050565b81610aab816120b0565b9250505b80610ab9816120b0565b915050610a54565b5060405162461bcd60e51b81526004016105be90611ee3565b6005546001600160a01b0316331480610afd57506006546001600160a01b031633145b610b195760405162461bcd60e51b81526004016105be90611f80565b600c805460ff19811660ff90911615179055565b6005546001600160a01b0316331480610b5057506006546001600160a01b031633145b610b6c5760405162461bcd60e51b81526004016105be90611f80565b600c805461ff001981166101009182900460ff1615909102179055565b6106f483838360405180602001604052806000815250611076565b6002546000908210610c0d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105be565b5090565b6005546001600160a01b0316331480610c3457506006546001600160a01b031633145b610c505760405162461bcd60e51b81526004016105be90611f80565b8051610c639060099060208401906119eb565b5050565b60008060028381548110610c7d57610c7d61210b565b6000918252602090912001546001600160a01b03169050806104be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105be565b60098054610d0090612075565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2c90612075565b8015610d795780601f10610d4e57610100808354040283529160200191610d79565b820191906000526020600020905b815481529060010190602001808311610d5c57829003601f168201915b505050505081565b6060600a805480602002602001604051908101604052809291908181526020016000905b82821015610df55760008481526020902060408051808201918290529160028581029091019182845b815481526020019060010190808311610dce57505050505081526020019060010190610da5565b50505050905090565b60006001600160a01b038216610e695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105be565b600254600090815b81811015610ec75760028181548110610e8c57610e8c61210b565b6000918252602090912001546001600160a01b0386811691161415610eb757610eb4836120b0565b92505b610ec0816120b0565b9050610e71565b50909392505050565b6005546001600160a01b0316331480610ef357506006546001600160a01b031633145b610f0f5760405162461bcd60e51b81526004016105be90611f80565b610f196000611712565b565b6005546001600160a01b0316331480610f3e57506006546001600160a01b031633145b610f5a5760405162461bcd60e51b81526004016105be90611f80565b8051610c639060079060208401906119eb565b600a8281548110610f7d57600080fd5b90600052602060002090600202018160028110610f9957600080fd5b01549150829050565b6060600180546104d390612075565b6001600160a01b03821633141561100a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105be565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108033836114d2565b61109c5760405162461bcd60e51b81526004016105be90611fb5565b6109f084848484611764565b60606110b38261139e565b6111175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105be565b600c54610100900460ff166111b8576009805461113390612075565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612075565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b50505050509050919050565b60006111c2611797565b905060008151116111e25760405180602001604052806000815250611210565b806111ec846117a6565b600860405160200161120093929190611d66565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633148061123a57506006546001600160a01b031633145b6112565760405162461bcd60e51b81526004016105be90611f80565b600c805462010000600160b01b031916620100006001600160a01b0393841681029190911791829055600d8054919092049092166001600160a01b0319909216919091179055565b6005546001600160a01b03163314806112c157506006546001600160a01b031633145b6112dd5760405162461bcd60e51b81526004016105be90611f80565b6001600160a01b0381166113425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105be565b61134b81611712565b50565b60006001600160e01b031982166380ac58cd60e01b148061137f57506001600160e01b03198216635b5e139f60e01b145b806104be57506301ffc9a760e01b6001600160e01b03198316146104be565b600254600090821080156104be575060006001600160a01b0316600283815481106113cb576113cb61210b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141d82610c67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006114dd8261139e565b61153e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105be565b600061154983610c67565b9050806001600160a01b0316846001600160a01b031614806115845750836001600160a01b031661157984610556565b6001600160a01b0316145b806115b457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cf82610c67565b6001600160a01b0316146116375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105be565b6001600160a01b0382166116995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105be565b6116a46000826113e8565b81600282815481106116b8576116b861210b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61176f8484846115bc565b61177b848484846118a4565b6109f05760405162461bcd60e51b81526004016105be90611f2e565b6060600780546104d390612075565b6060816117ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117f457806117de816120b0565b91506117ed9050600a8361201e565b91506117ce565b60008167ffffffffffffffff81111561180f5761180f612121565b6040519080825280601f01601f191660200182016040528015611839576020820181803683370190505b5090505b84156115b45761184e600183612032565b915061185b600a866120cb565b611866906030612006565b60f81b81838151811061187b5761187b61210b565b60200101906001600160f81b031916908160001a90535061189d600a8661201e565b945061183d565b60006001600160a01b0384163b156119a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e8903390899088908890600401611e2a565b602060405180830381600087803b15801561190257600080fd5b505af1925050508015611932575060408051601f3d908101601f1916820190925261192f91810190611c99565b60015b61198c573d808015611960576040519150601f19603f3d011682016040523d82523d6000602084013e611965565b606091505b5080516119845760405162461bcd60e51b81526004016105be90611f2e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b4565b506001949350505050565b82600281019282156119df579160200282015b828111156119df5782518255916020019190600101906119c4565b50610c0d929150611a5e565b8280546119f790612075565b90600052602060002090601f016020900481019282611a1957600085556119df565b82601f10611a3257805160ff19168380011785556119df565b828001600101855582156119df57918201828111156119df5782518255916020019190600101906119c4565b5b80821115610c0d5760008155600101611a5f565b600067ffffffffffffffff80841115611a8e57611a8e612121565b604051601f8501601f19908116603f01168101908282118183101715611ab657611ab6612121565b81604052809350858152868686011115611acf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611afb57600080fd5b813561121081612137565b600060208284031215611b1857600080fd5b815161121081612137565b60008060408385031215611b3657600080fd5b8235611b4181612137565b91506020830135611b5181612137565b809150509250929050565b600080600060608486031215611b7157600080fd5b8335611b7c81612137565b92506020840135611b8c81612137565b929592945050506040919091013590565b60008060008060808587031215611bb357600080fd5b8435611bbe81612137565b93506020850135611bce81612137565b925060408501359150606085013567ffffffffffffffff811115611bf157600080fd5b8501601f81018713611c0257600080fd5b611c1187823560208401611a73565b91505092959194509250565b60008060408385031215611c3057600080fd5b8235611c3b81612137565b915060208301358015158114611b5157600080fd5b60008060408385031215611c6357600080fd5b8235611c6e81612137565b946020939093013593505050565b600060208284031215611c8e57600080fd5b81356112108161214c565b600060208284031215611cab57600080fd5b81516112108161214c565b600060208284031215611cc857600080fd5b813567ffffffffffffffff811115611cdf57600080fd5b8201601f81018413611cf057600080fd5b6115b484823560208401611a73565b600060208284031215611d1157600080fd5b5035919050565b60008060408385031215611d2b57600080fd5b50508035926020909101359150565b60008151808452611d52816020860160208601612049565b601f01601f19169290920160200192915050565b600084516020611d798285838a01612049565b855191840191611d8c8184848a01612049565b8554920191600090600181811c9080831680611da957607f831692505b858310811415611dc757634e487b7160e01b85526022600452602485fd5b808015611ddb5760018114611dec57611e19565b60ff19851688528388019550611e19565b60008b81526020902060005b85811015611e115781548a820152908401908801611df8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5d90830184611d3a565b9695505050505050565b60208082528251828201819052600091906040908185019086840185805b83811015611ec257825185835b6002811015611eaf57825182529189019190890190600101611e92565b5050509385019391860191600101611e85565b509298975050505050505050565b6020815260006112106020830184611d3a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612019576120196120df565b500190565b60008261202d5761202d6120f5565b500490565b600082821015612044576120446120df565b500390565b60005b8381101561206457818101518382015260200161204c565b838111156109f05750506000910152565b600181811c9082168061208957607f821691505b602082108114156120aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120c4576120c46120df565b5060010190565b6000826120da576120da6120f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461134b57600080fd5b6001600160e01b03198116811461134b57600080fdfea2646970667358221220ab1adaa85d7e7f656100dd1bc463d064172fd62699f143c01d558810f28c8b6864736f6c63430008070033697066733a2f2f516d625a704c685242566377774d6d744d7655456f4b6e527967505a76764b69385939396f765058324d54553747

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a57806395d89b41116100ad578063c87b56dd1161007c578063c87b56dd14610401578063d58778d614610414578063db9771f514610437578063e985e9c51461044a578063f2fde38b1461048657600080fd5b806395d89b41146103c1578063a22cb465146103c9578063a475b5dd146103dc578063b88d4fde146103ee57600080fd5b8063715018a6116100e9578063715018a6146103825780637ec4a6591461038a5780638b4864d61461039d5780638da5cb5b146103b057600080fd5b80636352211e1461033f57806367f5fd2a146103525780636da3e7481461035a57806370a082311461036f57600080fd5b80632f745c59116101925780634f6ccce7116101615780634f6ccce7146103045780634fdd43cb146103175780635801afa51461032a5780635c975abb1461033257600080fd5b80632f745c59146102ce57806337a66d85146102e15780633bd64968146102e957806342842e0e146102f157600080fd5b80630cdd4234116101ce5780630cdd42341461027d57806318160ddd146102965780631b2ef1ca146102a857806323b872dd146102bb57600080fd5b806301ffc9a71461020057806306fdde0314610228578063081812fc1461023d578063095ea7b314610268575b600080fd5b61021361020e366004611c7c565b610499565b60405190151581526020015b60405180910390f35b6102306104c4565b60405161021f9190611ed0565b61025061024b366004611cff565b610556565b6040516001600160a01b03909116815260200161021f565b61027b610276366004611c50565b6105e3565b005b600c54610250906201000090046001600160a01b031681565b6002545b60405190815260200161021f565b61027b6102b6366004611d18565b6106f9565b61027b6102c9366004611b5c565b6109f6565b61029a6102dc366004611c50565b610a27565b61027b610ada565b61027b610b2d565b61027b6102ff366004611b5c565b610b89565b61029a610312366004611cff565b610ba4565b61027b610325366004611cb6565b610c11565b600a5461029a565b600c546102139060ff1681565b61025061034d366004611cff565b610c67565b610230610cf3565b610362610d81565b60405161021f9190611e67565b61029a61037d366004611ae9565b610dfe565b61027b610ed0565b61027b610398366004611cb6565b610f1b565b61029a6103ab366004611d18565b610f6d565b6005546001600160a01b0316610250565b610230610fa2565b61027b6103d7366004611c1d565b610fb1565b600c5461021390610100900460ff1681565b61027b6103fc366004611b9d565b611076565b61023061040f366004611cff565b6110a8565b610213610422366004611cff565b600b6020526000908152604090205460ff1681565b61027b610445366004611ae9565b611217565b610213610458366004611b23565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61027b610494366004611ae9565b61129e565b60006001600160e01b0319821663780e9d6360e01b14806104be57506104be8261134e565b92915050565b6060600080546104d390612075565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90612075565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b60006105618261139e565b6105c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105ee82610c67565b9050806001600160a01b0316836001600160a01b0316141561065c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105be565b336001600160a01b038216148061067857506106788133610458565b6106ea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105be565b6106f483836113e8565b505050565b6002548282141561074c5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74207573652073616d6520746f6b656e494473000000000000000060448201526064016105be565b600d546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190611b06565b6001600160a01b03161480156108605750600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561081d57600080fd5b505afa158015610831573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108559190611b06565b6001600160a01b0316145b61089c5760405162461bcd60e51b815260206004820152600d60248201526c2727aa102a24229027aba722a960991b60448201526064016105be565b6000838152600b602052604090205460ff161580156108ca57506000828152600b602052604090205460ff16155b6109165760405162461bcd60e51b815260206004820152601a60248201527f4e465420616c7265616479207573656420746f206d757461746500000000000060448201526064016105be565b600c5460ff16156109695760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016105be565b6109733382611456565b6000838152600b602090815260408083208054600160ff1991821681179092558685528285208054909116821790558151808301909252868252918101859052600a805492830181559092526109f0917fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8600292830201916119b1565b50505050565b610a0033826114d2565b610a1c5760405162461bcd60e51b81526004016105be90611fb5565b6106f48383836115bc565b6000610a3283610dfe565b8210610a505760405162461bcd60e51b81526004016105be90611ee3565b6000805b600254811015610ac15760028181548110610a7157610a7161210b565b6000918252602090912001546001600160a01b0386811691161415610aaf5783821415610aa15791506104be9050565b81610aab816120b0565b9250505b80610ab9816120b0565b915050610a54565b5060405162461bcd60e51b81526004016105be90611ee3565b6005546001600160a01b0316331480610afd57506006546001600160a01b031633145b610b195760405162461bcd60e51b81526004016105be90611f80565b600c805460ff19811660ff90911615179055565b6005546001600160a01b0316331480610b5057506006546001600160a01b031633145b610b6c5760405162461bcd60e51b81526004016105be90611f80565b600c805461ff001981166101009182900460ff1615909102179055565b6106f483838360405180602001604052806000815250611076565b6002546000908210610c0d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105be565b5090565b6005546001600160a01b0316331480610c3457506006546001600160a01b031633145b610c505760405162461bcd60e51b81526004016105be90611f80565b8051610c639060099060208401906119eb565b5050565b60008060028381548110610c7d57610c7d61210b565b6000918252602090912001546001600160a01b03169050806104be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105be565b60098054610d0090612075565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2c90612075565b8015610d795780601f10610d4e57610100808354040283529160200191610d79565b820191906000526020600020905b815481529060010190602001808311610d5c57829003601f168201915b505050505081565b6060600a805480602002602001604051908101604052809291908181526020016000905b82821015610df55760008481526020902060408051808201918290529160028581029091019182845b815481526020019060010190808311610dce57505050505081526020019060010190610da5565b50505050905090565b60006001600160a01b038216610e695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105be565b600254600090815b81811015610ec75760028181548110610e8c57610e8c61210b565b6000918252602090912001546001600160a01b0386811691161415610eb757610eb4836120b0565b92505b610ec0816120b0565b9050610e71565b50909392505050565b6005546001600160a01b0316331480610ef357506006546001600160a01b031633145b610f0f5760405162461bcd60e51b81526004016105be90611f80565b610f196000611712565b565b6005546001600160a01b0316331480610f3e57506006546001600160a01b031633145b610f5a5760405162461bcd60e51b81526004016105be90611f80565b8051610c639060079060208401906119eb565b600a8281548110610f7d57600080fd5b90600052602060002090600202018160028110610f9957600080fd5b01549150829050565b6060600180546104d390612075565b6001600160a01b03821633141561100a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105be565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108033836114d2565b61109c5760405162461bcd60e51b81526004016105be90611fb5565b6109f084848484611764565b60606110b38261139e565b6111175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105be565b600c54610100900460ff166111b8576009805461113390612075565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612075565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b50505050509050919050565b60006111c2611797565b905060008151116111e25760405180602001604052806000815250611210565b806111ec846117a6565b600860405160200161120093929190611d66565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633148061123a57506006546001600160a01b031633145b6112565760405162461bcd60e51b81526004016105be90611f80565b600c805462010000600160b01b031916620100006001600160a01b0393841681029190911791829055600d8054919092049092166001600160a01b0319909216919091179055565b6005546001600160a01b03163314806112c157506006546001600160a01b031633145b6112dd5760405162461bcd60e51b81526004016105be90611f80565b6001600160a01b0381166113425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105be565b61134b81611712565b50565b60006001600160e01b031982166380ac58cd60e01b148061137f57506001600160e01b03198216635b5e139f60e01b145b806104be57506301ffc9a760e01b6001600160e01b03198316146104be565b600254600090821080156104be575060006001600160a01b0316600283815481106113cb576113cb61210b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141d82610c67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006114dd8261139e565b61153e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105be565b600061154983610c67565b9050806001600160a01b0316846001600160a01b031614806115845750836001600160a01b031661157984610556565b6001600160a01b0316145b806115b457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cf82610c67565b6001600160a01b0316146116375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105be565b6001600160a01b0382166116995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105be565b6116a46000826113e8565b81600282815481106116b8576116b861210b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61176f8484846115bc565b61177b848484846118a4565b6109f05760405162461bcd60e51b81526004016105be90611f2e565b6060600780546104d390612075565b6060816117ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117f457806117de816120b0565b91506117ed9050600a8361201e565b91506117ce565b60008167ffffffffffffffff81111561180f5761180f612121565b6040519080825280601f01601f191660200182016040528015611839576020820181803683370190505b5090505b84156115b45761184e600183612032565b915061185b600a866120cb565b611866906030612006565b60f81b81838151811061187b5761187b61210b565b60200101906001600160f81b031916908160001a90535061189d600a8661201e565b945061183d565b60006001600160a01b0384163b156119a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e8903390899088908890600401611e2a565b602060405180830381600087803b15801561190257600080fd5b505af1925050508015611932575060408051601f3d908101601f1916820190925261192f91810190611c99565b60015b61198c573d808015611960576040519150601f19603f3d011682016040523d82523d6000602084013e611965565b606091505b5080516119845760405162461bcd60e51b81526004016105be90611f2e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b4565b506001949350505050565b82600281019282156119df579160200282015b828111156119df5782518255916020019190600101906119c4565b50610c0d929150611a5e565b8280546119f790612075565b90600052602060002090601f016020900481019282611a1957600085556119df565b82601f10611a3257805160ff19168380011785556119df565b828001600101855582156119df57918201828111156119df5782518255916020019190600101906119c4565b5b80821115610c0d5760008155600101611a5f565b600067ffffffffffffffff80841115611a8e57611a8e612121565b604051601f8501601f19908116603f01168101908282118183101715611ab657611ab6612121565b81604052809350858152868686011115611acf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611afb57600080fd5b813561121081612137565b600060208284031215611b1857600080fd5b815161121081612137565b60008060408385031215611b3657600080fd5b8235611b4181612137565b91506020830135611b5181612137565b809150509250929050565b600080600060608486031215611b7157600080fd5b8335611b7c81612137565b92506020840135611b8c81612137565b929592945050506040919091013590565b60008060008060808587031215611bb357600080fd5b8435611bbe81612137565b93506020850135611bce81612137565b925060408501359150606085013567ffffffffffffffff811115611bf157600080fd5b8501601f81018713611c0257600080fd5b611c1187823560208401611a73565b91505092959194509250565b60008060408385031215611c3057600080fd5b8235611c3b81612137565b915060208301358015158114611b5157600080fd5b60008060408385031215611c6357600080fd5b8235611c6e81612137565b946020939093013593505050565b600060208284031215611c8e57600080fd5b81356112108161214c565b600060208284031215611cab57600080fd5b81516112108161214c565b600060208284031215611cc857600080fd5b813567ffffffffffffffff811115611cdf57600080fd5b8201601f81018413611cf057600080fd5b6115b484823560208401611a73565b600060208284031215611d1157600080fd5b5035919050565b60008060408385031215611d2b57600080fd5b50508035926020909101359150565b60008151808452611d52816020860160208601612049565b601f01601f19169290920160200192915050565b600084516020611d798285838a01612049565b855191840191611d8c8184848a01612049565b8554920191600090600181811c9080831680611da957607f831692505b858310811415611dc757634e487b7160e01b85526022600452602485fd5b808015611ddb5760018114611dec57611e19565b60ff19851688528388019550611e19565b60008b81526020902060005b85811015611e115781548a820152908401908801611df8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5d90830184611d3a565b9695505050505050565b60208082528251828201819052600091906040908185019086840185805b83811015611ec257825185835b6002811015611eaf57825182529189019190890190600101611e92565b5050509385019391860191600101611e85565b509298975050505050505050565b6020815260006112106020830184611d3a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612019576120196120df565b500190565b60008261202d5761202d6120f5565b500490565b600082821015612044576120446120df565b500390565b60005b8381101561206457818101518382015260200161204c565b838111156109f05750506000910152565b600181811c9082168061208957607f821691505b602082108114156120aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120c4576120c46120df565b5060010190565b6000826120da576120da6120f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461134b57600080fd5b6001600160e01b03198116811461134b57600080fdfea2646970667358221220ab1adaa85d7e7f656100dd1bc463d064172fd62699f143c01d558810f28c8b6864736f6c63430008070033

Deployed Bytecode Sourcemap

30469:2797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29061:224;;;;;;:::i;:::-;;:::i;:::-;;;8665:14:1;;8658:22;8640:41;;8628:2;8613:18;29061:224:0;;;;;;;;17674:100;;;:::i;:::-;;;;;;;:::i;18486:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6907:32:1;;;6889:51;;6877:2;6862:18;18486:308:0;6743:203:1;18009:411:0;;;;;;:::i;:::-;;:::i;:::-;;30951:71;;;;;;;;-1:-1:-1;;;;;30951:71:0;;;29361:110;29449:7;:14;29361:110;;;16953:25:1;;;16941:2;16926:18;29361:110:0;16807:177:1;31467:623:0;;;;;;:::i;:::-;;:::i;19545:376::-;;;;;;:::i;:::-;;:::i;29837:490::-;;;;;;:::i;:::-;;:::i;32928:69::-;;;:::i;32603:71::-;;;:::i;19992:185::-;;;;;;:::i;:::-;;:::i;29548:205::-;;;;;;:::i;:::-;;:::i;32680:126::-;;;;;;:::i;:::-;;:::i;31340:98::-;31419:6;:13;31340:98;;30807:26;;;;;;;;;17281:326;;;;;;:::i;:::-;;:::i;30636:81::-;;;:::i;31223:102::-;;;:::i;:::-;;;;;;;:::i;16773:446::-;;;;;;:::i;:::-;;:::i;4784:103::-;;;:::i;32818:102::-;;;;;;:::i;:::-;;:::i;30728:24::-;;;;;;:::i;:::-;;:::i;4105:87::-;4178:6;;-1:-1:-1;;;;;4178:6:0;4105:87;;17843:104;;;:::i;18866:327::-;;;;;;:::i;:::-;;:::i;30840:26::-;;;;;;;;;;;;20248:365;;;;;;:::i;:::-;;:::i;32103:496::-;;;;;;:::i;:::-;;:::i;30761:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31067:136;;;;;;:::i;:::-;;:::i;19264:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19435:25:0;;;19406:4;19435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19264:214;5042:201;;;;;;:::i;:::-;;:::i;29061:224::-;29163:4;-1:-1:-1;;;;;;29187:50:0;;-1:-1:-1;;;29187:50:0;;:90;;;29241:36;29265:11;29241:23;:36::i;:::-;29180:97;29061:224;-1:-1:-1;;29061:224:0:o;17674:100::-;17728:13;17761:5;17754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17674:100;:::o;18486:308::-;18607:7;18654:16;18662:7;18654;:16::i;:::-;18632:110;;;;-1:-1:-1;;;18632:110:0;;13129:2:1;18632:110:0;;;13111:21:1;13168:2;13148:18;;;13141:30;13207:34;13187:18;;;13180:62;-1:-1:-1;;;13258:18:1;;;13251:42;13310:19;;18632:110:0;;;;;;;;;-1:-1:-1;18762:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;18762:24:0;;18486:308::o;18009:411::-;18090:13;18106:23;18121:7;18106:14;:23::i;:::-;18090:39;;18154:5;-1:-1:-1;;;;;18148:11:0;:2;-1:-1:-1;;;;;18148:11:0;;;18140:57;;;;-1:-1:-1;;;18140:57:0;;15081:2:1;18140:57:0;;;15063:21:1;15120:2;15100:18;;;15093:30;15159:34;15139:18;;;15132:62;-1:-1:-1;;;15210:18:1;;;15203:31;15251:19;;18140:57:0;14879:397:1;18140:57:0;2836:10;-1:-1:-1;;;;;18232:21:0;;;;:62;;-1:-1:-1;18257:37:0;18274:5;2836:10;19264:214;:::i;18257:37::-;18210:168;;;;-1:-1:-1;;;18210:168:0;;11883:2:1;18210:168:0;;;11865:21:1;11922:2;11902:18;;;11895:30;11961:34;11941:18;;;11934:62;12032:26;12012:18;;;12005:54;12076:19;;18210:168:0;11681:420:1;18210:168:0;18391:21;18400:2;18404:7;18391:8;:21::i;:::-;18079:341;18009:411;;:::o;31467:623::-;31554:7;:14;31583:18;;;;31575:56;;;;-1:-1:-1;;;31575:56:0;;16314:2:1;31575:56:0;;;16296:21:1;16353:2;16333:18;;;16326:30;16392:26;16372:18;;;16365:54;16436:18;;31575:56:0;16112:348:1;31575:56:0;31646:4;;:21;;-1:-1:-1;;;31646:21:0;;;;;16953:25:1;;;31671:10:0;;-1:-1:-1;;;;;31646:4:0;;:12;;16926:18:1;;31646:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31646:35:0;;:74;;;;-1:-1:-1;31685:4:0;;:21;;-1:-1:-1;;;31685:21:0;;;;;16953:25:1;;;31710:10:0;;-1:-1:-1;;;;;31685:4:0;;:12;;16926:18:1;;31685:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31685:35:0;;31646:74;31638:102;;;;-1:-1:-1;;;31638:102:0;;16667:2:1;31638:102:0;;;16649:21:1;16706:2;16686:18;;;16679:30;-1:-1:-1;;;16725:18:1;;;16718:43;16778:18;;31638:102:0;16465:337:1;31638:102:0;31756:17;;;;:8;:17;;;;;;;;:26;;;:56;;-1:-1:-1;31786:17:0;;;;:8;:17;;;;;;;;:26;31756:56;31748:98;;;;-1:-1:-1;;;31748:98:0;;11528:2:1;31748:98:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:28;11586:18;;;11579:56;11652:18;;31748:98:0;11326:350:1;31748:98:0;31862:6;;;;31861:7;31853:43;;;;-1:-1:-1;;;31853:43:0;;13903:2:1;31853:43:0;;;13885:21:1;13942:2;13922:18;;;13915:30;13981:25;13961:18;;;13954:53;14024:18;;31853:43:0;13701:347:1;31853:43:0;31913:30;31919:10;31931:11;31913:5;:30::i;:::-;31950:17;;;;:8;:17;;;;;;;;:24;;31970:4;-1:-1:-1;;31950:24:0;;;;;;;;31981:17;;;;;;:24;;;;;;;;;32011:31;;;;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;31467:623:0:o;19545:376::-;19754:41;2836:10;19787:7;19754:18;:41::i;:::-;19732:140;;;;-1:-1:-1;;;19732:140:0;;;;;;;:::i;:::-;19885:28;19895:4;19901:2;19905:7;19885:9;:28::i;29837:490::-;29934:15;29978:16;29988:5;29978:9;:16::i;:::-;29970:5;:24;29962:80;;;;-1:-1:-1;;;29962:80:0;;;;;;;:::i;:::-;30055:10;30080:6;30076:178;30092:7;:14;30088:18;;30076:178;;;30139:7;30147:1;30139:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;30130:19:0;;;30139:10;;30130:19;30127:116;;;30181:5;30172;:14;30169:58;;;30195:1;-1:-1:-1;30188:8:0;;-1:-1:-1;30188:8:0;30169:58;30220:7;;;;:::i;:::-;;;;30169:58;30108:3;;;;:::i;:::-;;;;30076:178;;;;30266:53;;-1:-1:-1;;;30266:53:0;;;;;;;:::i;32928:69::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;32985:6:::1;::::0;;-1:-1:-1;;32975:16:0;::::1;32985:6;::::0;;::::1;32984:7;32975:16;::::0;;32928:69::o;32603:71::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;32662:6:::1;::::0;;-1:-1:-1;;32652:16:0;::::1;32662:6;::::0;;;::::1;;;32661:7;32652:16:::0;;::::1;;::::0;;32603:71::o;19992:185::-;20130:39;20147:4;20153:2;20157:7;20130:39;;;;;;;;;;;;:16;:39::i;29548:205::-;29659:7;:14;29623:7;;29651:22;;29643:79;;;;-1:-1:-1;;;29643:79:0;;15901:2:1;29643:79:0;;;15883:21:1;15940:2;15920:18;;;15913:30;15979:34;15959:18;;;15952:62;-1:-1:-1;;;16030:18:1;;;16023:42;16082:19;;29643:79:0;15699:408:1;29643:79:0;-1:-1:-1;29740:5:0;29548:205::o;32680:126::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;32770:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;32680:126:::0;:::o;17281:326::-;17398:7;17423:13;17439:7;17447;17439:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;17439:16:0;;-1:-1:-1;17488:19:0;17466:110;;;;-1:-1:-1;;;17466:110:0;;12719:2:1;17466:110:0;;;12701:21:1;12758:2;12738:18;;;12731:30;12797:34;12777:18;;;12770:62;-1:-1:-1;;;12848:18:1;;;12841:39;12897:19;;17466:110:0;12517:405:1;30636:81:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31223:102::-;31271:17;31313:6;31306:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31223:102;:::o;16773:446::-;16895:4;-1:-1:-1;;;;;16926:19:0;;16918:74;;;;-1:-1:-1;;;16918:74:0;;12308:2:1;16918:74:0;;;12290:21:1;12347:2;12327:18;;;12320:30;12386:34;12366:18;;;12359:62;-1:-1:-1;;;12437:18:1;;;12430:40;12487:19;;16918:74:0;12106:406:1;16918:74:0;17039:7;:14;17005:10;;;17064:101;17081:6;17077:1;:10;17064:101;;;17120:7;17128:1;17120:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;17111:19:0;;;17120:10;;17111:19;17107:46;;;17146:7;;;:::i;:::-;;;17107:46;17089:3;;;:::i;:::-;;;17064:101;;;-1:-1:-1;17206:5:0;;16773:446;-1:-1:-1;;;16773:446:0:o;4784:103::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;4849:30:::1;4876:1;4849:18;:30::i;:::-;4784:103::o:0;32818:102::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;32892:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30728:24::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30728:24:0;;-1:-1:-1;30728:24:0:o;17843:104::-;17899:13;17932:7;17925:14;;;;;:::i;18866:327::-;-1:-1:-1;;;;;19001:24:0;;2836:10;19001:24;;18993:62;;;;-1:-1:-1;;;18993:62:0;;10761:2:1;18993:62:0;;;10743:21:1;10800:2;10780:18;;;10773:30;10839:27;10819:18;;;10812:55;10884:18;;18993:62:0;10559:349:1;18993:62:0;2836:10;19068:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19068:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19068:53:0;;;;;;;;;;19137:48;;8640:41:1;;;19068:42:0;;2836:10;19137:48;;8613:18:1;19137:48:0;;;;;;;18866:327;;:::o;20248:365::-;20437:41;2836:10;20470:7;20437:18;:41::i;:::-;20415:140;;;;-1:-1:-1;;;20415:140:0;;;;;;;:::i;:::-;20566:39;20580:4;20586:2;20590:7;20599:5;20566:13;:39::i;32103:496::-;32202:13;32243:17;32251:8;32243:7;:17::i;:::-;32227:98;;;;-1:-1:-1;;;32227:98:0;;14665:2:1;32227:98:0;;;14647:21:1;14704:2;14684:18;;;14677:30;14743:34;14723:18;;;14716:62;-1:-1:-1;;;14794:18:1;;;14787:45;14849:19;;32227:98:0;14463:411:1;32227:98:0;32342:6;;;;;;;32338:54;;32375:9;32368:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32103:496;;;:::o;32338:54::-;32408:28;32439:10;:8;:10::i;:::-;32408:41;;32494:1;32469:14;32463:28;:32;:130;;;;;;;;;;;;;;;;;32531:14;32547:19;:8;:17;:19::i;:::-;32568:9;32514:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32463:130;32456:137;32103:496;-1:-1:-1;;;32103:496:0:o;31067:136::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;31137:11:::1;:26:::0;;-1:-1:-1;;;;;;31137:26:0::1;::::0;-1:-1:-1;;;;;31137:26:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;31174:4:::1;:24:::0;;31186:11;;;::::1;::::0;;::::1;-1:-1:-1::0;;;;;;31174:24:0;;::::1;::::0;;;::::1;::::0;;31067:136::o;5042:201::-;4178:6;;-1:-1:-1;;;;;4178:6:0;2836:10;4325:23;;:49;;-1:-1:-1;4352:6:0;;-1:-1:-1;;;;;4352:6:0;2836:10;4352:22;4325:49;4317:96;;;;-1:-1:-1;;;4317:96:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5131:22:0;::::1;5123:73;;;::::0;-1:-1:-1;;;5123:73:0;;9949:2:1;5123:73:0::1;::::0;::::1;9931:21:1::0;9988:2;9968:18;;;9961:30;10027:34;10007:18;;;10000:62;-1:-1:-1;;;10078:18:1;;;10071:36;10124:19;;5123:73:0::1;9747:402:1::0;5123:73:0::1;5207:28;5226:8;5207:18;:28::i;:::-;5042:201:::0;:::o;16354:355::-;16501:4;-1:-1:-1;;;;;;16543:40:0;;-1:-1:-1;;;16543:40:0;;:105;;-1:-1:-1;;;;;;;16600:48:0;;-1:-1:-1;;;16600:48:0;16543:105;:158;;;-1:-1:-1;;;;;;;;;;8523:40:0;;;16665:36;8414:157;22160:155;22259:7;:14;22225:4;;22249:24;;:58;;;;;22305:1;-1:-1:-1;;;;;22277:30:0;:7;22285;22277:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;22277:16:0;:30;;22242:65;22160:155;-1:-1:-1;;22160:155:0:o;26185:174::-;26260:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;26260:29:0;-1:-1:-1;;;;;26260:29:0;;;;;;;;:24;;26314:23;26260:24;26314:14;:23::i;:::-;-1:-1:-1;;;;;26305:46:0;;;;;;;;;;;26185:174;;:::o;33008:154::-;33089:7;:16;;;;;;;-1:-1:-1;33089:16:0;;;;;;;-1:-1:-1;;;;;;33089:16:0;-1:-1:-1;;;;;33089:16:0;;;;;;;;33121:33;;33146:7;;-1:-1:-1;33121:33:0;;-1:-1:-1;;33121:33:0;33008:154;;:::o;22482:452::-;22611:4;22655:16;22663:7;22655;:16::i;:::-;22633:110;;;;-1:-1:-1;;;22633:110:0;;11115:2:1;22633:110:0;;;11097:21:1;11154:2;11134:18;;;11127:30;11193:34;11173:18;;;11166:62;-1:-1:-1;;;11244:18:1;;;11237:42;11296:19;;22633:110:0;10913:408:1;22633:110:0;22754:13;22770:23;22785:7;22770:14;:23::i;:::-;22754:39;;22823:5;-1:-1:-1;;;;;22812:16:0;:7;-1:-1:-1;;;;;22812:16:0;;:64;;;;22869:7;-1:-1:-1;;;;;22845:31:0;:20;22857:7;22845:11;:20::i;:::-;-1:-1:-1;;;;;22845:31:0;;22812:64;:113;;;-1:-1:-1;;;;;;19435:25:0;;;19406:4;19435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;22893:32;22804:122;22482:452;-1:-1:-1;;;;22482:452:0:o;25514:553::-;25687:4;-1:-1:-1;;;;;25660:31:0;:23;25675:7;25660:14;:23::i;:::-;-1:-1:-1;;;;;25660:31:0;;25638:122;;;;-1:-1:-1;;;25638:122:0;;14255:2:1;25638:122:0;;;14237:21:1;14294:2;14274:18;;;14267:30;14333:34;14313:18;;;14306:62;-1:-1:-1;;;14384:18:1;;;14377:39;14433:19;;25638:122:0;14053:405:1;25638:122:0;-1:-1:-1;;;;;25779:16:0;;25771:65;;;;-1:-1:-1;;;25771:65:0;;10356:2:1;25771:65:0;;;10338:21:1;10395:2;10375:18;;;10368:30;10434:34;10414:18;;;10407:62;-1:-1:-1;;;10485:18:1;;;10478:34;10529:19;;25771:65:0;10154:400:1;25771:65:0;25953:29;25970:1;25974:7;25953:8;:29::i;:::-;26012:2;25993:7;26001;25993:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;25993:21:0;-1:-1:-1;;;;;25993:21:0;;;;;;26032:27;;26051:7;;26032:27;;;;;;;;;;25993:16;26032:27;25514:553;;;:::o;5403:191::-;5496:6;;;-1:-1:-1;;;;;5513:17:0;;;-1:-1:-1;;;;;;5513:17:0;;;;;;;5546:40;;5496:6;;;5513:17;5496:6;;5546:40;;5477:16;;5546:40;5466:128;5403:191;:::o;21495:352::-;21652:28;21662:4;21668:2;21672:7;21652:9;:28::i;:::-;21713:48;21736:4;21742:2;21746:7;21755:5;21713:22;:48::i;:::-;21691:148;;;;-1:-1:-1;;;21691:148:0;;;;;;;:::i;33168:88::-;33212:13;33241:9;33234:16;;;;;:::i;318:723::-;374:13;595:10;591:53;;-1:-1:-1;;622:10:0;;;;;;;;;;;;-1:-1:-1;;;622:10:0;;;;;318:723::o;591:53::-;669:5;654:12;710:78;717:9;;710:78;;743:8;;;;:::i;:::-;;-1:-1:-1;766:10:0;;-1:-1:-1;774:2:0;766:10;;:::i;:::-;;;710:78;;;798:19;830:6;820:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;820:17:0;;798:39;;848:154;855:10;;848:154;;882:11;892:1;882:11;;:::i;:::-;;-1:-1:-1;951:10:0;959:2;951:5;:10;:::i;:::-;938:24;;:2;:24;:::i;:::-;925:39;;908:6;915;908:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;908:56:0;;;;;;;;-1:-1:-1;979:11:0;988:2;979:11;;:::i;:::-;;;848:154;;26924:980;27079:4;-1:-1:-1;;;;;27100:13:0;;15554:20;15602:8;27096:801;;27153:175;;-1:-1:-1;;;27153:175:0;;-1:-1:-1;;;;;27153:36:0;;;;;:175;;2836:10;;27247:4;;27274:7;;27304:5;;27153:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27153:175:0;;;;;;;;-1:-1:-1;;27153:175:0;;;;;;;;;;;;:::i;:::-;;;27132:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27511:13:0;;27507:320;;27554:108;;-1:-1:-1;;;27554:108:0;;;;;;;:::i;27507:320::-;27777:6;27771:13;27762:6;27758:2;27754:15;27747:38;27132:710;-1:-1:-1;;;;;;27392:51:0;-1:-1:-1;;;27392:51:0;;-1:-1:-1;27385:58:0;;27096:801;-1:-1:-1;27881:4:0;26924:980;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:50;;;2599:1;2596;2589:12;2553:50;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:55:1;;2704:1;2701;2694:12;2653:55;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2012:794;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:64;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3552:245::-;3610:6;3663:2;3651:9;3642:7;3638:23;3634:32;3631:52;;;3679:1;3676;3669:12;3631:52;3718:9;3705:23;3737:30;3761:5;3737:30;:::i;3802:249::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:52;;;3940:1;3937;3930:12;3892:52;3972:9;3966:16;3991:30;4015:5;3991:30;:::i;4056:450::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4234:9;4221:23;4267:18;4259:6;4256:30;4253:50;;;4299:1;4296;4289:12;4253:50;4322:22;;4375:4;4367:13;;4363:27;-1:-1:-1;4353:55:1;;4404:1;4401;4394:12;4353:55;4427:73;4492:7;4487:2;4474:16;4469:2;4465;4461:11;4427:73;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:52;;;4639:1;4636;4629:12;4591:52;-1:-1:-1;4662:23:1;;4511:180;-1:-1:-1;4511:180:1:o;4696:248::-;4764:6;4772;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;-1:-1:-1;;4864:23:1;;;4934:2;4919:18;;;4906:32;;-1:-1:-1;4696:248:1:o;4949:257::-;4990:3;5028:5;5022:12;5055:6;5050:3;5043:19;5071:63;5127:6;5120:4;5115:3;5111:14;5104:4;5097:5;5093:16;5071:63;:::i;:::-;5188:2;5167:15;-1:-1:-1;;5163:29:1;5154:39;;;;5195:4;5150:50;;4949:257;-1:-1:-1;;4949:257:1:o;5211:1527::-;5435:3;5473:6;5467:13;5499:4;5512:51;5556:6;5551:3;5546:2;5538:6;5534:15;5512:51;:::i;:::-;5626:13;;5585:16;;;;5648:55;5626:13;5585:16;5670:15;;;5648:55;:::i;:::-;5792:13;;5725:20;;;5765:1;;5852;5874:18;;;;5927;;;;5954:93;;6032:4;6022:8;6018:19;6006:31;;5954:93;6095:2;6085:8;6082:16;6062:18;6059:40;6056:167;;;-1:-1:-1;;;6122:33:1;;6178:4;6175:1;6168:15;6208:4;6129:3;6196:17;6056:167;6239:18;6266:110;;;;6390:1;6385:328;;;;6232:481;;6266:110;-1:-1:-1;;6301:24:1;;6287:39;;6346:20;;;;-1:-1:-1;6266:110:1;;6385:328;17062:1;17055:14;;;17099:4;17086:18;;6480:1;6494:169;6508:8;6505:1;6502:15;6494:169;;;6590:14;;6575:13;;;6568:37;6633:16;;;;6525:10;;6494:169;;;6498:3;;6694:8;6687:5;6683:20;6676:27;;6232:481;-1:-1:-1;6729:3:1;;5211:1527;-1:-1:-1;;;;;;;;;;;5211:1527:1:o;6951:488::-;-1:-1:-1;;;;;7220:15:1;;;7202:34;;7272:15;;7267:2;7252:18;;7245:43;7319:2;7304:18;;7297:34;;;7367:3;7362:2;7347:18;;7340:31;;;7145:4;;7388:45;;7413:19;;7405:6;7388:45;:::i;:::-;7380:53;6951:488;-1:-1:-1;;;;;;6951:488:1:o;7444:1051::-;7661:2;7713:21;;;7783:13;;7686:18;;;7805:22;;;7632:4;;7661:2;7846;;7864:18;;;;7905:15;;;7632:4;;7969:500;7985:6;7980:3;7977:15;7969:500;;;8048:13;;8087:3;8170:1;8184:205;8200:4;8195:3;8192:13;8184:205;;;8273:15;;8259:30;;8358:17;;;;8315:14;;;;8224:1;8215:11;8184:205;;;-1:-1:-1;;;8409:12:1;;;;8444:15;;;;8011:1;8002:11;7969:500;;;-1:-1:-1;8486:3:1;;7444:1051;-1:-1:-1;;;;;;;;7444:1051:1:o;8692:219::-;8841:2;8830:9;8823:21;8804:4;8861:44;8901:2;8890:9;8886:18;8878:6;8861:44;:::i;8916:407::-;9118:2;9100:21;;;9157:2;9137:18;;;9130:30;9196:34;9191:2;9176:18;;9169:62;-1:-1:-1;;;9262:2:1;9247:18;;9240:41;9313:3;9298:19;;8916:407::o;9328:414::-;9530:2;9512:21;;;9569:2;9549:18;;;9542:30;9608:34;9603:2;9588:18;;9581:62;-1:-1:-1;;;9674:2:1;9659:18;;9652:48;9732:3;9717:19;;9328:414::o;13340:356::-;13542:2;13524:21;;;13561:18;;;13554:30;13620:34;13615:2;13600:18;;13593:62;13687:2;13672:18;;13340:356::o;15281:413::-;15483:2;15465:21;;;15522:2;15502:18;;;15495:30;15561:34;15556:2;15541:18;;15534:62;-1:-1:-1;;;15627:2:1;15612:18;;15605:47;15684:3;15669:19;;15281:413::o;17115:128::-;17155:3;17186:1;17182:6;17179:1;17176:13;17173:39;;;17192:18;;:::i;:::-;-1:-1:-1;17228:9:1;;17115:128::o;17248:120::-;17288:1;17314;17304:35;;17319:18;;:::i;:::-;-1:-1:-1;17353:9:1;;17248:120::o;17373:125::-;17413:4;17441:1;17438;17435:8;17432:34;;;17446:18;;:::i;:::-;-1:-1:-1;17483:9:1;;17373:125::o;17503:258::-;17575:1;17585:113;17599:6;17596:1;17593:13;17585:113;;;17675:11;;;17669:18;17656:11;;;17649:39;17621:2;17614:10;17585:113;;;17716:6;17713:1;17710:13;17707:48;;;-1:-1:-1;;17751:1:1;17733:16;;17726:27;17503:258::o;17766:380::-;17845:1;17841:12;;;;17888;;;17909:61;;17963:4;17955:6;17951:17;17941:27;;17909:61;18016:2;18008:6;18005:14;17985:18;17982:38;17979:161;;;18062:10;18057:3;18053:20;18050:1;18043:31;18097:4;18094:1;18087:15;18125:4;18122:1;18115:15;17979:161;;17766:380;;;:::o;18151:135::-;18190:3;-1:-1:-1;;18211:17:1;;18208:43;;;18231:18;;:::i;:::-;-1:-1:-1;18278:1:1;18267:13;;18151:135::o;18291:112::-;18323:1;18349;18339:35;;18354:18;;:::i;:::-;-1:-1:-1;18388:9:1;;18291:112::o;18408:127::-;18469:10;18464:3;18460:20;18457:1;18450:31;18500:4;18497:1;18490:15;18524:4;18521:1;18514:15;18540:127;18601:10;18596:3;18592:20;18589:1;18582:31;18632:4;18629:1;18622:15;18656:4;18653:1;18646:15;18672:127;18733:10;18728:3;18724:20;18721:1;18714:31;18764:4;18761:1;18754:15;18788:4;18785:1;18778:15;18804:127;18865:10;18860:3;18856:20;18853:1;18846:31;18896:4;18893:1;18886:15;18920:4;18917:1;18910:15;18936:131;-1:-1:-1;;;;;19011:31:1;;19001:42;;18991:70;;19057:1;19054;19047:12;19072:131;-1:-1:-1;;;;;;19146:32:1;;19136:43;;19126:71;;19193:1;19190;19183:12

Swarm Source

ipfs://ab1adaa85d7e7f656100dd1bc463d064172fd62699f143c01d558810f28c8b68
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.