ETH Price: $2,918.57 (-3.69%)
Gas: 1 Gwei

Token

WTPhunks (WTP)
 

Overview

Max Total Supply

10,000 WTP

Holders

4,529

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 WTP
0x76cce08f3aa4d989d28f5ebb4cc44b9bdcebdfea
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:
WTPhunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-07
*/

// File: contracts/utils/Strings.sol



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: contracts/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: contracts/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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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(), "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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    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 (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @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 {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        _balances[to] += 1;
        _owners[tokenId] = 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);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        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);

        _balances[from] -= 1;
        _balances[to] += 1;
        _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 {}
}

// File: tests/LeanWTPhunks.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;



contract WTPhunks is ERC721, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public bulkCost = 0 ether;
    uint256 public bulkNum = 10;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 20;
    uint256 public saleLimit = 1000;
    bool public paused = false;
    uint16 public totalSupply = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mint(msg.sender, 1);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(totalSupply + _mintAmount <= saleLimit);

        if (msg.sender != owner()) {
            if(_mintAmount >= bulkNum) {
                require(msg.value >= bulkCost * _mintAmount);
            } else {
                require(msg.value >= cost * _mintAmount);
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, totalSupply + 1);
            totalSupply += 1;
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setBulkCost(uint256 _newBulkCost) public onlyOwner {
        bulkCost = _newBulkCost;
    }

    function setBulkNum(uint256 _newBulkNum) public onlyOwner {
        bulkNum = _newBulkNum;
    }

    function setSaleLimit(uint256 _saleLimit) public onlyOwner {
        require(_saleLimit <= maxSupply);
        saleLimit = _saleLimit;
    }

    function updateSalePhase(uint256 _saleLimit, uint256 _cost, uint256 _bulkCost) public onlyOwner {
        setSaleLimit(_saleLimit);
        setCost(_cost);
        setBulkCost(_bulkCost);
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bulkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bulkNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBulkCost","type":"uint256"}],"name":"setBulkCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBulkNum","type":"uint256"}],"name":"setBulkNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleLimit","type":"uint256"}],"name":"setSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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"},{"inputs":[{"internalType":"uint256","name":"_saleLimit","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_bulkCost","type":"uint256"}],"name":"updateSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600891906200064d565b5060006009819055600a908155600b55612710600c556014600d556103e8600e55600f805462ffffff191690553480156200006257600080fd5b5060405162003118380380620031188339810160408190526200008591620007b7565b8251839083906200009e9060009060208501906200064d565b508051620000b49060019060208401906200064d565b505050620000d1620000cb620000f260201b60201c565b620000f6565b620000dc8162000148565b620000e9336001620001c1565b505050620009be565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001bd9060079060208401906200064d565b5050565b600f5460ff1615620001d257600080fd5b60008111620001e057600080fd5b600d54811115620001f057600080fd5b600e54600f546200020c908390610100900461ffff16620008c7565b11156200021857600080fd5b6006546001600160a01b031633146200027557600b548110620002585780600a54620002459190620008e2565b3410156200025257600080fd5b62000275565b80600954620002689190620008e2565b3410156200027557600080fd5b60015b818111620002fc57600f54620002aa908490620002a090610100900461ffff1660016200089e565b61ffff1662000301565b6001600f60018282829054906101000a900461ffff16620002cc91906200089e565b92506101000a81548161ffff021916908361ffff1602179055508080620002f39062000974565b91505062000278565b505050565b620001bd8282604051806020016040528060008152506200032360201b60201c565b6200032f838362000396565b6200033e6000848484620004de565b620002fc5760405162461bcd60e51b81526020600482015260326024820152600080516020620030f883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019f565b6001600160a01b038216620003ee5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019f565b6000818152600260205260409020546001600160a01b031615620004555760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019f565b6001600160a01b038216600090815260036020526040812080546001929062000480908490620008c7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004ff846001600160a01b03166200064760201b620015f81760201c565b156200063b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200053990339089908890889060040162000848565b602060405180830381600087803b1580156200055457600080fd5b505af192505050801562000587575060408051601f3d908101601f19168201909252620005849181019062000784565b60015b62000620573d808015620005b8576040519150601f19603f3d011682016040523d82523d6000602084013e620005bd565b606091505b508051620006185760405162461bcd60e51b81526020600482015260326024820152600080516020620030f883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200063f565b5060015b949350505050565b3b151590565b8280546200065b9062000937565b90600052602060002090601f0160209004810192826200067f5760008555620006ca565b82601f106200069a57805160ff1916838001178555620006ca565b82800160010185558215620006ca579182015b82811115620006ca578251825591602001919060010190620006ad565b50620006d8929150620006dc565b5090565b5b80821115620006d85760008155600101620006dd565b600082601f8301126200070557600080fd5b81516001600160401b0380821115620007225762000722620009a8565b604051601f8301601f19908116603f011681019082821181831017156200074d576200074d620009a8565b816040528381528660208588010111156200076757600080fd5b6200077a84602083016020890162000904565b9695505050505050565b6000602082840312156200079757600080fd5b81516001600160e01b031981168114620007b057600080fd5b9392505050565b600080600060608486031215620007cd57600080fd5b83516001600160401b0380821115620007e557600080fd5b620007f387838801620006f3565b945060208601519150808211156200080a57600080fd5b6200081887838801620006f3565b935060408601519150808211156200082f57600080fd5b506200083e86828701620006f3565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620008878160a085016020870162000904565b601f01601f19169190910160a00195945050505050565b600061ffff808316818516808303821115620008be57620008be62000992565b01949350505050565b60008219821115620008dd57620008dd62000992565b500190565b6000816000190483118215151615620008ff57620008ff62000992565b500290565b60005b838110156200092157818101518382015260200162000907565b8381111562000931576000848401525b50505050565b600181811c908216806200094c57607f821691505b602082108114156200096e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200098b576200098b62000992565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61272a80620009ce6000396000f3fe60806040526004361061026a5760003560e01c806368b8e37e11610153578063a22cb465116100cb578063d5abeb011161007f578063da3ef23f11610064578063da3ef23f1461066c578063e985e9c51461068c578063f2fde38b146106d557600080fd5b8063d5abeb0114610636578063d87d6bd51461064c57600080fd5b8063c6682862116100b0578063c6682862146105e1578063c87b56dd146105f6578063cf229c0e1461061657600080fd5b8063a22cb465146105a1578063b88d4fde146105c157600080fd5b80637e26639f116101225780638da5cb5b116101075780638da5cb5b1461055857806395d89b4114610576578063987a57921461058b57600080fd5b80637e26639f146105225780637f00c7a61461053857600080fd5b806368b8e37e146104b85780636c0360eb146104d857806370a08231146104ed578063715018a61461050d57600080fd5b806323b872dd116101e657806344a0d68a116101b557806355f804b31161019a57806355f804b31461045e5780635c975abb1461047e5780636352211e1461049857600080fd5b806344a0d68a1461041e5780635307b7501461043e57600080fd5b806323b872dd146103c35780633ccfd60b146103e357806340c10f19146103eb57806342842e0e146103fe57600080fd5b8063095ea7b31161023d57806318160ddd1161022257806318160ddd14610364578063215b530514610397578063239c70ae146103ad57600080fd5b8063095ea7b31461032057806313faede61461034057600080fd5b806301ffc9a71461026f57806302329a29146102a457806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561027b57600080fd5b5061028f61028a36600461223b565b6106f5565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102c46102bf366004612220565b6107da565b005b3480156102d257600080fd5b506102db61086a565b60405161029b9190612484565b3480156102f457600080fd5b506103086103033660046122be565b6108fc565b6040516001600160a01b03909116815260200161029b565b34801561032c57600080fd5b506102c461033b3660046121f6565b6109a2565b34801561034c57600080fd5b5061035660095481565b60405190815260200161029b565b34801561037057600080fd5b50600f5461038490610100900461ffff1681565b60405161ffff909116815260200161029b565b3480156103a357600080fd5b50610356600a5481565b3480156103b957600080fd5b50610356600d5481565b3480156103cf57600080fd5b506102c46103de366004612114565b610ad4565b6102c4610b5b565b6102c46103f93660046121f6565b610c0d565b34801561040a57600080fd5b506102c4610419366004612114565b610d2f565b34801561042a57600080fd5b506102c46104393660046122be565b610d4a565b34801561044a57600080fd5b506102c46104593660046122be565b610da9565b34801561046a57600080fd5b506102c4610479366004612275565b610e08565b34801561048a57600080fd5b50600f5461028f9060ff1681565b3480156104a457600080fd5b506103086104b33660046122be565b610e79565b3480156104c457600080fd5b506102c46104d33660046122be565b610f04565b3480156104e457600080fd5b506102db610f63565b3480156104f957600080fd5b506103566105083660046120c6565b610ff1565b34801561051957600080fd5b506102c461108b565b34801561052e57600080fd5b50610356600e5481565b34801561054457600080fd5b506102c46105533660046122be565b6110f1565b34801561056457600080fd5b506006546001600160a01b0316610308565b34801561058257600080fd5b506102db611150565b34801561059757600080fd5b50610356600b5481565b3480156105ad57600080fd5b506102c46105bc3660046121cc565b61115f565b3480156105cd57600080fd5b506102c46105dc366004612150565b611242565b3480156105ed57600080fd5b506102db6112d0565b34801561060257600080fd5b506102db6106113660046122be565b6112dd565b34801561062257600080fd5b506102c46106313660046122d7565b6113c9565b34801561064257600080fd5b50610356600c5481565b34801561065857600080fd5b506102c46106673660046122be565b61143e565b34801561067857600080fd5b506102c4610687366004612275565b6114ac565b34801561069857600080fd5b5061028f6106a73660046120e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e157600080fd5b506102c46106f03660046120c6565b611519565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061078857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b031633146108395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606000805461087990612569565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612569565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610830565b506000908152600460205260409020546001600160a01b031690565b60006109ad82610e79565b9050806001600160a01b0316836001600160a01b03161415610a375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610830565b336001600160a01b0382161480610a535750610a5381336106a7565b610ac55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610830565b610acf83836115fe565b505050565b610ade3382611684565b610b505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610830565b610acf83838361178c565b6006546001600160a01b03163314610bb55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b604051600090339047908381818185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50565b600f5460ff1615610c1d57600080fd5b60008111610c2a57600080fd5b600d54811115610c3957600080fd5b600e54600f54610c53908390610100900461ffff166124bd565b1115610c5e57600080fd5b6006546001600160a01b03163314610cb257600b548110610c985780600a54610c8791906124e9565b341015610c9357600080fd5b610cb2565b80600954610ca691906124e9565b341015610cb257600080fd5b60015b818111610acf57600f54610ce2908490610cd990610100900461ffff166001612497565b61ffff16611971565b6001600f60018282829054906101000a900461ffff16610d029190612497565b92506101000a81548161ffff021916908361ffff1602179055508080610d27906125bd565b915050610cb5565b610acf83838360405180602001604052806000815250611242565b6006546001600160a01b03163314610da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600955565b6006546001600160a01b03163314610e035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600a55565b6006546001600160a01b03163314610e625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b8051610e75906007906020840190611f6d565b5050565b6000818152600260205260408120546001600160a01b0316806107d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610830565b6006546001600160a01b03163314610f5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600b55565b60078054610f7090612569565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90612569565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b505050505081565b60006001600160a01b03821661106f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610830565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b6110ef600061198b565b565b6006546001600160a01b0316331461114b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600d55565b60606001805461087990612569565b6001600160a01b0382163314156111b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610830565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124c3383611684565b6112be5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610830565b6112ca848484846119f5565b50505050565b60088054610f7090612569565b6000818152600260205260409020546060906001600160a01b031661136a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610830565b6000611374611a7e565b9050600081511161139457604051806020016040528060008152506113c2565b8061139e84611a8d565b60086040516020016113b29392919061234d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b61142c8361143e565b61143582610d4a565b610acf81610da9565b6006546001600160a01b031633146114985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600c548111156114a757600080fd5b600e55565b6006546001600160a01b031633146115065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b8051610e75906008906020840190611f6d565b6006546001600160a01b031633146115735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b6001600160a01b0381166115ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610830565b610c0a8161198b565b3b151590565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061164b82610e79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661170e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610830565b600061171983610e79565b9050806001600160a01b0316846001600160a01b031614806117545750836001600160a01b0316611749846108fc565b6001600160a01b0316145b8061178457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179f82610e79565b6001600160a01b03161461181b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610830565b6001600160a01b0382166118965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610830565b6118a16000826115fe565b6001600160a01b03831660009081526003602052604081208054600192906118ca908490612526565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f89084906124bd565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e75828260405180602001604052806000815250611bbf565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a0084848461178c565b611a0c84848484611c48565b6112ca5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b60606007805461087990612569565b606081611acd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611af75780611ae1816125bd565b9150611af09050600a836124d5565b9150611ad1565b60008167ffffffffffffffff811115611b1257611b12612697565b6040519080825280601f01601f191660200182016040528015611b3c576020820181803683370190505b5090505b841561178457611b51600183612526565b9150611b5e600a866125f6565b611b699060306124bd565b60f81b818381518110611b7e57611b7e612668565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bb8600a866124d5565b9450611b40565b611bc98383611e13565b611bd66000848484611c48565b610acf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b60006001600160a01b0384163b15611e08576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611ca5903390899088908890600401612448565b602060405180830381600087803b158015611cbf57600080fd5b505af1925050508015611d0d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611d0a91810190612258565b60015b611dbd573d808015611d3b576040519150601f19603f3d011682016040523d82523d6000602084013e611d40565b606091505b508051611db55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611784565b506001949350505050565b6001600160a01b038216611e695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610830565b6000818152600260205260409020546001600160a01b031615611ece5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610830565b6001600160a01b0382166000908152600360205260408120805460019290611ef79084906124bd565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f7990612569565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b600067ffffffffffffffff8084111561202157612021612697565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561206757612067612697565b8160405280935085815286868601111561208057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120b157600080fd5b919050565b803580151581146120b157600080fd5b6000602082840312156120d857600080fd5b6113c28261209a565b600080604083850312156120f457600080fd5b6120fd8361209a565b915061210b6020840161209a565b90509250929050565b60008060006060848603121561212957600080fd5b6121328461209a565b92506121406020850161209a565b9150604084013590509250925092565b6000806000806080858703121561216657600080fd5b61216f8561209a565b935061217d6020860161209a565b925060408501359150606085013567ffffffffffffffff8111156121a057600080fd5b8501601f810187136121b157600080fd5b6121c087823560208401612006565b91505092959194509250565b600080604083850312156121df57600080fd5b6121e88361209a565b915061210b602084016120b6565b6000806040838503121561220957600080fd5b6122128361209a565b946020939093013593505050565b60006020828403121561223257600080fd5b6113c2826120b6565b60006020828403121561224d57600080fd5b81356113c2816126c6565b60006020828403121561226a57600080fd5b81516113c2816126c6565b60006020828403121561228757600080fd5b813567ffffffffffffffff81111561229e57600080fd5b8201601f810184136122af57600080fd5b61178484823560208401612006565b6000602082840312156122d057600080fd5b5035919050565b6000806000606084860312156122ec57600080fd5b505081359360208301359350604090920135919050565b6000815180845261231b81602086016020860161253d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000845160206123608285838a0161253d565b8551918401916123738184848a0161253d565b8554920191600090600181811c908083168061239057607f831692505b8583108114156123c7577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b8080156123db576001811461240a57612437565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550612437565b60008b81526020902060005b8581101561242f5781548a820152908401908801612416565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261247a6080830184612303565b9695505050505050565b6020815260006113c26020830184612303565b600061ffff8083168185168083038211156124b4576124b461260a565b01949350505050565b600082198211156124d0576124d061260a565b500190565b6000826124e4576124e4612639565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125215761252161260a565b500290565b6000828210156125385761253861260a565b500390565b60005b83811015612558578181015183820152602001612540565b838111156112ca5750506000910152565b600181811c9082168061257d57607f821691505b602082108114156125b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125ef576125ef61260a565b5060010190565b60008261260557612605612639565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c0a57600080fdfea2646970667358221220919aaeefd4b09a29dddabd05edb627a836cfd7153197bdb2a9de58464e381e2b64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000857545068756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616e634e33355a65543551364c7a6d573854397463646f4e6162746863584b4e597446653663336f3978554e2f00000000000000000000

Deployed Bytecode

0x60806040526004361061026a5760003560e01c806368b8e37e11610153578063a22cb465116100cb578063d5abeb011161007f578063da3ef23f11610064578063da3ef23f1461066c578063e985e9c51461068c578063f2fde38b146106d557600080fd5b8063d5abeb0114610636578063d87d6bd51461064c57600080fd5b8063c6682862116100b0578063c6682862146105e1578063c87b56dd146105f6578063cf229c0e1461061657600080fd5b8063a22cb465146105a1578063b88d4fde146105c157600080fd5b80637e26639f116101225780638da5cb5b116101075780638da5cb5b1461055857806395d89b4114610576578063987a57921461058b57600080fd5b80637e26639f146105225780637f00c7a61461053857600080fd5b806368b8e37e146104b85780636c0360eb146104d857806370a08231146104ed578063715018a61461050d57600080fd5b806323b872dd116101e657806344a0d68a116101b557806355f804b31161019a57806355f804b31461045e5780635c975abb1461047e5780636352211e1461049857600080fd5b806344a0d68a1461041e5780635307b7501461043e57600080fd5b806323b872dd146103c35780633ccfd60b146103e357806340c10f19146103eb57806342842e0e146103fe57600080fd5b8063095ea7b31161023d57806318160ddd1161022257806318160ddd14610364578063215b530514610397578063239c70ae146103ad57600080fd5b8063095ea7b31461032057806313faede61461034057600080fd5b806301ffc9a71461026f57806302329a29146102a457806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561027b57600080fd5b5061028f61028a36600461223b565b6106f5565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102c46102bf366004612220565b6107da565b005b3480156102d257600080fd5b506102db61086a565b60405161029b9190612484565b3480156102f457600080fd5b506103086103033660046122be565b6108fc565b6040516001600160a01b03909116815260200161029b565b34801561032c57600080fd5b506102c461033b3660046121f6565b6109a2565b34801561034c57600080fd5b5061035660095481565b60405190815260200161029b565b34801561037057600080fd5b50600f5461038490610100900461ffff1681565b60405161ffff909116815260200161029b565b3480156103a357600080fd5b50610356600a5481565b3480156103b957600080fd5b50610356600d5481565b3480156103cf57600080fd5b506102c46103de366004612114565b610ad4565b6102c4610b5b565b6102c46103f93660046121f6565b610c0d565b34801561040a57600080fd5b506102c4610419366004612114565b610d2f565b34801561042a57600080fd5b506102c46104393660046122be565b610d4a565b34801561044a57600080fd5b506102c46104593660046122be565b610da9565b34801561046a57600080fd5b506102c4610479366004612275565b610e08565b34801561048a57600080fd5b50600f5461028f9060ff1681565b3480156104a457600080fd5b506103086104b33660046122be565b610e79565b3480156104c457600080fd5b506102c46104d33660046122be565b610f04565b3480156104e457600080fd5b506102db610f63565b3480156104f957600080fd5b506103566105083660046120c6565b610ff1565b34801561051957600080fd5b506102c461108b565b34801561052e57600080fd5b50610356600e5481565b34801561054457600080fd5b506102c46105533660046122be565b6110f1565b34801561056457600080fd5b506006546001600160a01b0316610308565b34801561058257600080fd5b506102db611150565b34801561059757600080fd5b50610356600b5481565b3480156105ad57600080fd5b506102c46105bc3660046121cc565b61115f565b3480156105cd57600080fd5b506102c46105dc366004612150565b611242565b3480156105ed57600080fd5b506102db6112d0565b34801561060257600080fd5b506102db6106113660046122be565b6112dd565b34801561062257600080fd5b506102c46106313660046122d7565b6113c9565b34801561064257600080fd5b50610356600c5481565b34801561065857600080fd5b506102c46106673660046122be565b61143e565b34801561067857600080fd5b506102c4610687366004612275565b6114ac565b34801561069857600080fd5b5061028f6106a73660046120e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e157600080fd5b506102c46106f03660046120c6565b611519565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061078857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b031633146108395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606000805461087990612569565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612569565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610830565b506000908152600460205260409020546001600160a01b031690565b60006109ad82610e79565b9050806001600160a01b0316836001600160a01b03161415610a375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610830565b336001600160a01b0382161480610a535750610a5381336106a7565b610ac55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610830565b610acf83836115fe565b505050565b610ade3382611684565b610b505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610830565b610acf83838361178c565b6006546001600160a01b03163314610bb55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b604051600090339047908381818185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50565b600f5460ff1615610c1d57600080fd5b60008111610c2a57600080fd5b600d54811115610c3957600080fd5b600e54600f54610c53908390610100900461ffff166124bd565b1115610c5e57600080fd5b6006546001600160a01b03163314610cb257600b548110610c985780600a54610c8791906124e9565b341015610c9357600080fd5b610cb2565b80600954610ca691906124e9565b341015610cb257600080fd5b60015b818111610acf57600f54610ce2908490610cd990610100900461ffff166001612497565b61ffff16611971565b6001600f60018282829054906101000a900461ffff16610d029190612497565b92506101000a81548161ffff021916908361ffff1602179055508080610d27906125bd565b915050610cb5565b610acf83838360405180602001604052806000815250611242565b6006546001600160a01b03163314610da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600955565b6006546001600160a01b03163314610e035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600a55565b6006546001600160a01b03163314610e625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b8051610e75906007906020840190611f6d565b5050565b6000818152600260205260408120546001600160a01b0316806107d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610830565b6006546001600160a01b03163314610f5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600b55565b60078054610f7090612569565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90612569565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b505050505081565b60006001600160a01b03821661106f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610830565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b6110ef600061198b565b565b6006546001600160a01b0316331461114b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600d55565b60606001805461087990612569565b6001600160a01b0382163314156111b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610830565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124c3383611684565b6112be5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610830565b6112ca848484846119f5565b50505050565b60088054610f7090612569565b6000818152600260205260409020546060906001600160a01b031661136a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610830565b6000611374611a7e565b9050600081511161139457604051806020016040528060008152506113c2565b8061139e84611a8d565b60086040516020016113b29392919061234d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b61142c8361143e565b61143582610d4a565b610acf81610da9565b6006546001600160a01b031633146114985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b600c548111156114a757600080fd5b600e55565b6006546001600160a01b031633146115065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b8051610e75906008906020840190611f6d565b6006546001600160a01b031633146115735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610830565b6001600160a01b0381166115ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610830565b610c0a8161198b565b3b151590565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061164b82610e79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661170e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610830565b600061171983610e79565b9050806001600160a01b0316846001600160a01b031614806117545750836001600160a01b0316611749846108fc565b6001600160a01b0316145b8061178457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179f82610e79565b6001600160a01b03161461181b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610830565b6001600160a01b0382166118965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610830565b6118a16000826115fe565b6001600160a01b03831660009081526003602052604081208054600192906118ca908490612526565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f89084906124bd565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e75828260405180602001604052806000815250611bbf565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a0084848461178c565b611a0c84848484611c48565b6112ca5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b60606007805461087990612569565b606081611acd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611af75780611ae1816125bd565b9150611af09050600a836124d5565b9150611ad1565b60008167ffffffffffffffff811115611b1257611b12612697565b6040519080825280601f01601f191660200182016040528015611b3c576020820181803683370190505b5090505b841561178457611b51600183612526565b9150611b5e600a866125f6565b611b699060306124bd565b60f81b818381518110611b7e57611b7e612668565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bb8600a866124d5565b9450611b40565b611bc98383611e13565b611bd66000848484611c48565b610acf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b60006001600160a01b0384163b15611e08576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611ca5903390899088908890600401612448565b602060405180830381600087803b158015611cbf57600080fd5b505af1925050508015611d0d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611d0a91810190612258565b60015b611dbd573d808015611d3b576040519150601f19603f3d011682016040523d82523d6000602084013e611d40565b606091505b508051611db55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610830565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611784565b506001949350505050565b6001600160a01b038216611e695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610830565b6000818152600260205260409020546001600160a01b031615611ece5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610830565b6001600160a01b0382166000908152600360205260408120805460019290611ef79084906124bd565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f7990612569565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b600067ffffffffffffffff8084111561202157612021612697565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561206757612067612697565b8160405280935085815286868601111561208057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120b157600080fd5b919050565b803580151581146120b157600080fd5b6000602082840312156120d857600080fd5b6113c28261209a565b600080604083850312156120f457600080fd5b6120fd8361209a565b915061210b6020840161209a565b90509250929050565b60008060006060848603121561212957600080fd5b6121328461209a565b92506121406020850161209a565b9150604084013590509250925092565b6000806000806080858703121561216657600080fd5b61216f8561209a565b935061217d6020860161209a565b925060408501359150606085013567ffffffffffffffff8111156121a057600080fd5b8501601f810187136121b157600080fd5b6121c087823560208401612006565b91505092959194509250565b600080604083850312156121df57600080fd5b6121e88361209a565b915061210b602084016120b6565b6000806040838503121561220957600080fd5b6122128361209a565b946020939093013593505050565b60006020828403121561223257600080fd5b6113c2826120b6565b60006020828403121561224d57600080fd5b81356113c2816126c6565b60006020828403121561226a57600080fd5b81516113c2816126c6565b60006020828403121561228757600080fd5b813567ffffffffffffffff81111561229e57600080fd5b8201601f810184136122af57600080fd5b61178484823560208401612006565b6000602082840312156122d057600080fd5b5035919050565b6000806000606084860312156122ec57600080fd5b505081359360208301359350604090920135919050565b6000815180845261231b81602086016020860161253d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000845160206123608285838a0161253d565b8551918401916123738184848a0161253d565b8554920191600090600181811c908083168061239057607f831692505b8583108114156123c7577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b8080156123db576001811461240a57612437565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550612437565b60008b81526020902060005b8581101561242f5781548a820152908401908801612416565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261247a6080830184612303565b9695505050505050565b6020815260006113c26020830184612303565b600061ffff8083168185168083038211156124b4576124b461260a565b01949350505050565b600082198211156124d0576124d061260a565b500190565b6000826124e4576124e4612639565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125215761252161260a565b500290565b6000828210156125385761253861260a565b500390565b60005b83811015612558578181015183820152602001612540565b838111156112ca5750506000910152565b600181811c9082168061257d57607f821691505b602082108114156125b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125ef576125ef61260a565b5060010190565b60008261260557612605612639565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c0a57600080fdfea2646970667358221220919aaeefd4b09a29dddabd05edb627a836cfd7153197bdb2a9de58464e381e2b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000857545068756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616e634e33355a65543551364c7a6d573854397463646f4e6162746863584b4e597446653663336f3978554e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): WTPhunks
Arg [1] : _symbol (string): WTP
Arg [2] : _initBaseURI (string): ipfs://QmancN35ZeT5Q6LzmW8T9tcdoNabthcXKNYtFe6c3o9xUN/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 57545068756e6b73000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5754500000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d616e634e33355a65543551364c7a6d573854397463646f
Arg [9] : 4e6162746863584b4e597446653663336f3978554e2f00000000000000000000


Deployed Bytecode Sourcemap

36733:3478:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23550:355;;;;;;;;;;-1:-1:-1;23550:355:0;;;;;:::i;:::-;;:::i;:::-;;;7793:14:1;;7786:22;7768:41;;7756:2;7741:18;23550:355:0;;;;;;;;39929:79;;;;;;;;;;-1:-1:-1;39929:79:0;;;;;:::i;:::-;;:::i;:::-;;24719:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26412:308::-;;;;;;;;;;-1:-1:-1;26412:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7045:55:1;;;7027:74;;7015:2;7000:18;26412:308:0;6881:226:1;25935:411:0;;;;;;;;;;-1:-1:-1;25935:411:0;;;;;:::i;:::-;;:::i;36883:29::-;;;;;;;;;;;;;;;;;;;14765:25:1;;;14753:2;14738:18;36883:29:0;14619:177:1;37143:29:0;;;;;;;;;;-1:-1:-1;37143:29:0;;;;;;;;;;;;;;14600:6:1;14588:19;;;14570:38;;14558:2;14543:18;37143:29:0;14426:188:1;36919:33:0;;;;;;;;;;;;;;;;37032;;;;;;;;;;;;;;;;27471:376;;;;;;;;;;-1:-1:-1;27471:376:0;;;;;:::i;:::-;;:::i;40016:192::-;;;:::i;37551:635::-;;;;;;:::i;:::-;;:::i;27918:185::-;;;;;;;;;;-1:-1:-1;27918:185:0;;;;;:::i;:::-;;:::i;38862:86::-;;;;;;;;;;-1:-1:-1;38862:86:0;;;;;:::i;:::-;;:::i;38956:102::-;;;;;;;;;;-1:-1:-1;38956:102:0;;;;;:::i;:::-;;:::i;39658:104::-;;;;;;;;;;-1:-1:-1;39658:104:0;;;;;:::i;:::-;;:::i;37110:26::-;;;;;;;;;;-1:-1:-1;37110:26:0;;;;;;;;24326:326;;;;;;;;;;-1:-1:-1;24326:326:0;;;;;:::i;:::-;;:::i;39066:98::-;;;;;;;;;;-1:-1:-1;39066:98:0;;;;;:::i;:::-;;:::i;36811:21::-;;;;;;;;;;;;;:::i;23969:295::-;;;;;;;;;;-1:-1:-1;23969:295:0;;;;;:::i;:::-;;:::i;4573:94::-;;;;;;;;;;;;;:::i;37072:31::-;;;;;;;;;;;;;;;;39528:122;;;;;;;;;;-1:-1:-1;39528:122:0;;;;;:::i;:::-;;:::i;3922:87::-;;;;;;;;;;-1:-1:-1;3995:6:0;;-1:-1:-1;;;;;3995:6:0;3922:87;;24888:104;;;;;;;;;;;;;:::i;36959:27::-;;;;;;;;;;;;;;;;26792:327;;;;;;;;;;-1:-1:-1;26792:327:0;;;;;:::i;:::-;;:::i;28174:365::-;;;;;;;;;;-1:-1:-1;28174:365:0;;;;;:::i;:::-;;:::i;36839:37::-;;;;;;;;;;;;;:::i;38194:642::-;;;;;;;;;;-1:-1:-1;38194:642:0;;;;;:::i;:::-;;:::i;39323:197::-;;;;;;;;;;-1:-1:-1;39323:197:0;;;;;:::i;:::-;;:::i;36993:32::-;;;;;;;;;;;;;;;;39172:143;;;;;;;;;;-1:-1:-1;39172:143:0;;;;;:::i;:::-;;:::i;39770:151::-;;;;;;;;;;-1:-1:-1;39770:151:0;;;;;:::i;:::-;;:::i;27190:214::-;;;;;;;;;;-1:-1:-1;27190:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27361:25:0;;;27332:4;27361:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27190:214;4822:229;;;;;;;;;;-1:-1:-1;4822:229:0;;;;;:::i;:::-;;:::i;23550:355::-;23697:4;23739:40;;;23754:25;23739:40;;:105;;-1:-1:-1;23796:48:0;;;23811:33;23796:48;23739:105;:158;;;-1:-1:-1;16530:25:0;16515:40;;;;23861:36;23719:178;23550:355;-1:-1:-1;;23550:355:0:o;39929:79::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;;;;;;;;;39985:6:::1;:15:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39929:79::o;24719:100::-;24773:13;24806:5;24799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24719:100;:::o;26412:308::-;26533:7;30175:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30175:16:0;26558:110;;;;-1:-1:-1;;;26558:110:0;;12208:2:1;26558:110:0;;;12190:21:1;12247:2;12227:18;;;12220:30;12286:34;12266:18;;;12259:62;12357:14;12337:18;;;12330:42;12389:19;;26558:110:0;12006:408:1;26558:110:0;-1:-1:-1;26688:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26688:24:0;;26412:308::o;25935:411::-;26016:13;26032:23;26047:7;26032:14;:23::i;:::-;26016:39;;26080:5;-1:-1:-1;;;;;26074:11:0;:2;-1:-1:-1;;;;;26074:11:0;;;26066:57;;;;-1:-1:-1;;;26066:57:0;;13808:2:1;26066:57:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;13957:3;13937:18;;;13930:31;13978:19;;26066:57:0;13606:397:1;26066:57:0;2779:10;-1:-1:-1;;;;;26158:21:0;;;;:62;;-1:-1:-1;26183:37:0;26200:5;2779:10;27190:214;:::i;26183:37::-;26136:168;;;;-1:-1:-1;;;26136:168:0;;10601:2:1;26136:168:0;;;10583:21:1;10640:2;10620:18;;;10613:30;10679:34;10659:18;;;10652:62;10750:26;10730:18;;;10723:54;10794:19;;26136:168:0;10399:420:1;26136:168:0;26317:21;26326:2;26330:7;26317:8;:21::i;:::-;26005:341;25935:411;;:::o;27471:376::-;27680:41;2779:10;27713:7;27680:18;:41::i;:::-;27658:140;;;;-1:-1:-1;;;27658:140:0;;14210:2:1;27658:140:0;;;14192:21:1;14249:2;14229:18;;;14222:30;14288:34;14268:18;;;14261:62;14359:19;14339:18;;;14332:47;14396:19;;27658:140:0;14008:413:1;27658:140:0;27811:28;27821:4;27827:2;27831:7;27811:9;:28::i;40016:192::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;40091:82:::1;::::0;40073:12:::1;::::0;40099:10:::1;::::0;40137:21:::1;::::0;40073:12;40091:82;40073:12;40091:82;40137:21;40099:10;40091:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40072:101;;;40192:7;40184:16;;;::::0;::::1;;40061:147;40016:192::o:0;37551:635::-;37634:6;;;;37633:7;37625:16;;;;;;37674:1;37660:11;:15;37652:24;;;;;;37710:13;;37695:11;:28;;37687:37;;;;;;37772:9;;37743:11;;:25;;37757:11;;37743;;;;;:25;:::i;:::-;:38;;37735:47;;;;;;3995:6;;-1:-1:-1;;;;;3995:6:0;37799:10;:21;37795:240;;37855:7;;37840:11;:22;37837:187;;37915:11;37904:8;;:22;;;;:::i;:::-;37891:9;:35;;37883:44;;;;;;37837:187;;;37996:11;37989:4;;:18;;;;:::i;:::-;37976:9;:31;;37968:40;;;;;;38064:1;38047:132;38072:11;38067:1;:16;38047:132;;38120:11;;38105:31;;38115:3;;38120:15;;:11;;;;;;:15;:::i;:::-;38105:31;;:9;:31::i;:::-;38166:1;38151:11;;:16;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38085:3;;;;;:::i;:::-;;;;38047:132;;27918:185;28056:39;28073:4;28079:2;28083:7;28056:39;;;;;;;;;;;;:16;:39::i;38862:86::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;38925:4:::1;:15:::0;38862:86::o;38956:102::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39027:8:::1;:23:::0;38956:102::o;39658:104::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39733:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39658:104:::0;:::o;24326:326::-;24443:7;24484:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24484:16:0;24533:19;24511:110;;;;-1:-1:-1;;;24511:110:0;;11437:2:1;24511:110:0;;;11419:21:1;11476:2;11456:18;;;11449:30;11515:34;11495:18;;;11488:62;11586:11;11566:18;;;11559:39;11615:19;;24511:110:0;11235:405:1;39066:98:0;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39135:7:::1;:21:::0;39066:98::o;36811:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23969:295::-;24086:7;-1:-1:-1;;;;;24133:19:0;;24111:111;;;;-1:-1:-1;;;24111:111:0;;11026:2:1;24111:111:0;;;11008:21:1;11065:2;11045:18;;;11038:30;11104:34;11084:18;;;11077:62;11175:12;11155:18;;;11148:40;11205:19;;24111:111:0;10824:406:1;24111:111:0;-1:-1:-1;;;;;;24240:16:0;;;;;:9;:16;;;;;;;23969:295::o;4573:94::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;4638:21:::1;4656:1;4638:9;:21::i;:::-;4573:94::o:0;39528:122::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39609:13:::1;:33:::0;39528:122::o;24888:104::-;24944:13;24977:7;24970:14;;;;;:::i;26792:327::-;-1:-1:-1;;;;;26927:24:0;;2779:10;26927:24;;26919:62;;;;-1:-1:-1;;;26919:62:0;;9834:2:1;26919:62:0;;;9816:21:1;9873:2;9853:18;;;9846:30;9912:27;9892:18;;;9885:55;9957:18;;26919:62:0;9632:349:1;26919:62:0;2779:10;26994:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26994:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;27063:48;;7768:41:1;;;26994:42:0;;2779:10;27063:48;;7741:18:1;27063:48:0;;;;;;;26792:327;;:::o;28174:365::-;28363:41;2779:10;28396:7;28363:18;:41::i;:::-;28341:140;;;;-1:-1:-1;;;28341:140:0;;14210:2:1;28341:140:0;;;14192:21:1;14249:2;14229:18;;;14222:30;14288:34;14268:18;;;14261:62;14359:19;14339:18;;;14332:47;14396:19;;28341:140:0;14008:413:1;28341:140:0;28492:39;28506:4;28512:2;28516:7;28525:5;28492:13;:39::i;:::-;28174:365;;;;:::o;36839:37::-;;;;;;;:::i;38194:642::-;30151:4;30175:16;;;:7;:16;;;;;;38312:13;;-1:-1:-1;;;;;30175:16:0;38343:113;;;;-1:-1:-1;;;38343:113:0;;13392:2:1;38343:113:0;;;13374:21:1;13431:2;13411:18;;;13404:30;13470:34;13450:18;;;13443:62;13541:17;13521:18;;;13514:45;13576:19;;38343:113:0;13190:411:1;38343:113:0;38469:28;38500:10;:8;:10::i;:::-;38469:41;;38572:1;38547:14;38541:28;:32;:287;;;;;;;;;;;;;;;;;38665:14;38706:18;:7;:16;:18::i;:::-;38751:13;38622:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38541:287;38521:307;38194:642;-1:-1:-1;;;38194:642:0:o;39323:197::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39430:24:::1;39443:10;39430:12;:24::i;:::-;39465:14;39473:5;39465:7;:14::i;:::-;39490:22;39502:9;39490:11;:22::i;39172:143::-:0;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39264:9:::1;;39250:10;:23;;39242:32;;;::::0;::::1;;39285:9;:22:::0;39172:143::o;39770:151::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;39880:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4822:229::-:0;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;12621:2:1;4134:68:0;;;12603:21:1;;;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;12751:18;;4134:68:0;12419:356:1;4134:68:0;-1:-1:-1;;;;;4925:22:0;::::1;4903:110;;;::::0;-1:-1:-1;;;4903:110:0;;8665:2:1;4903:110:0::1;::::0;::::1;8647:21:1::0;8704:2;8684:18;;;8677:30;8743:34;8723:18;;;8716:62;8814:8;8794:18;;;8787:36;8840:19;;4903:110:0::1;8463:402:1::0;4903:110:0::1;5024:19;5034:8;5024:9;:19::i;5991:387::-:0;6314:20;6362:8;;;5991:387::o;34209:174::-;34284:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;34284:29:0;;;;;;;;:24;;34338:23;34284:24;34338:14;:23::i;:::-;-1:-1:-1;;;;;34329:46:0;;;;;;;;;;;34209:174;;:::o;30380:452::-;30509:4;30175:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30175:16:0;30531:110;;;;-1:-1:-1;;;30531:110:0;;10188:2:1;30531:110:0;;;10170:21:1;10227:2;10207:18;;;10200:30;10266:34;10246:18;;;10239:62;10337:14;10317:18;;;10310:42;10369:19;;30531:110:0;9986:408:1;30531:110:0;30652:13;30668:23;30683:7;30668:14;:23::i;:::-;30652:39;;30721:5;-1:-1:-1;;;;;30710:16:0;:7;-1:-1:-1;;;;;30710:16:0;;:64;;;;30767:7;-1:-1:-1;;;;;30743:31:0;:20;30755:7;30743:11;:20::i;:::-;-1:-1:-1;;;;;30743:31:0;;30710:64;:113;;;-1:-1:-1;;;;;;27361:25:0;;;27332:4;27361:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30791:32;30702:122;30380:452;-1:-1:-1;;;;30380:452:0:o;33476:615::-;33649:4;-1:-1:-1;;;;;33622:31:0;:23;33637:7;33622:14;:23::i;:::-;-1:-1:-1;;;;;33622:31:0;;33600:122;;;;-1:-1:-1;;;33600:122:0;;12982:2:1;33600:122:0;;;12964:21:1;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;13131:11;13111:18;;;13104:39;13160:19;;33600:122:0;12780:405:1;33600:122:0;-1:-1:-1;;;;;33741:16:0;;33733:65;;;;-1:-1:-1;;;33733:65:0;;9429:2:1;33733:65:0;;;9411:21:1;9468:2;9448:18;;;9441:30;9507:34;9487:18;;;9480:62;9578:6;9558:18;;;9551:34;9602:19;;33733:65:0;9227:400:1;33733:65:0;33915:29;33932:1;33936:7;33915:8;:29::i;:::-;-1:-1:-1;;;;;33957:15:0;;;;;;:9;:15;;;;;:20;;33976:1;;33957:15;:20;;33976:1;;33957:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33988:13:0;;;;;;:9;:13;;;;;:18;;34005:1;;33988:13;:18;;34005:1;;33988:18;:::i;:::-;;;;-1:-1:-1;;34017:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;34017:21:0;;;;;;;;;34056:27;;34017:16;;34056:27;;;;;;;33476:615;;;:::o;31174:110::-;31250:26;31260:2;31264:7;31250:26;;;;;;;;;;;;:9;:26::i;5059:173::-;5134:6;;;-1:-1:-1;;;;;5151:17:0;;;;;;;;;;;5184:40;;5134:6;;;5151:17;5134:6;;5184:40;;5115:16;;5184:40;5104:128;5059:173;:::o;29421:352::-;29578:28;29588:4;29594:2;29598:7;29578:9;:28::i;:::-;29639:48;29662:4;29668:2;29672:7;29681:5;29639:22;:48::i;:::-;29617:148;;;;-1:-1:-1;;;29617:148:0;;8246:2:1;29617:148:0;;;8228:21:1;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;8395:20;8375:18;;;8368:48;8433:19;;29617:148:0;8044:414:1;37420:108:0;37480:13;37513:7;37506:14;;;;;:::i;297:723::-;353:13;574:10;570:53;;-1:-1:-1;;601:10:0;;;;;;;;;;;;;;;;;;297:723::o;570:53::-;648:5;633:12;689:78;696:9;;689:78;;722:8;;;;:::i;:::-;;-1:-1:-1;745:10:0;;-1:-1:-1;753:2:0;745:10;;:::i;:::-;;;689:78;;;777:19;809:6;799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;799:17:0;;777:39;;827:154;834:10;;827:154;;861:11;871:1;861:11;;:::i;:::-;;-1:-1:-1;930:10:0;938:2;930:5;:10;:::i;:::-;917:24;;:2;:24;:::i;:::-;904:39;;887:6;894;887:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;958:11:0;967:2;958:11;;:::i;:::-;;;827:154;;31511:321;31641:18;31647:2;31651:7;31641:5;:18::i;:::-;31692:54;31723:1;31727:2;31731:7;31740:5;31692:22;:54::i;:::-;31670:154;;;;-1:-1:-1;;;31670:154:0;;8246:2:1;31670:154:0;;;8228:21:1;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;8395:20;8375:18;;;8368:48;8433:19;;31670:154:0;8044:414:1;34948:980:0;35103:4;-1:-1:-1;;;;;35124:13:0;;6314:20;6362:8;35120:801;;35177:175;;;;;-1:-1:-1;;;;;35177:36:0;;;;;:175;;2779:10;;35271:4;;35298:7;;35328:5;;35177:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35177:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35156:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35535:13:0;;35531:320;;35578:108;;-1:-1:-1;;;35578:108:0;;8246:2:1;35578:108:0;;;8228:21:1;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;8395:20;8375:18;;;8368:48;8433:19;;35578:108:0;8044:414:1;35531:320:0;35801:6;35795:13;35786:6;35782:2;35778:15;35771:38;35156:710;35416:51;;35426:41;35416:51;;-1:-1:-1;35409:58:0;;35120:801;-1:-1:-1;35905:4:0;34948:980;;;;;;:::o;32168:382::-;-1:-1:-1;;;;;32248:16:0;;32240:61;;;;-1:-1:-1;;;32240:61:0;;11847:2:1;32240:61:0;;;11829:21:1;;;11866:18;;;11859:30;11925:34;11905:18;;;11898:62;11977:18;;32240:61:0;11645:356:1;32240:61:0;30151:4;30175:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30175:16:0;:30;32312:58;;;;-1:-1:-1;;;32312:58:0;;9072:2:1;32312:58:0;;;9054:21:1;9111:2;9091:18;;;9084:30;9150;9130:18;;;9123:58;9198:18;;32312:58:0;8870:352:1;32312:58:0;-1:-1:-1;;;;;32441:13:0;;;;;;:9;:13;;;;;:18;;32458:1;;32441:13;:18;;32458:1;;32441:18;:::i;:::-;;;;-1:-1:-1;;32470:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;32470:21:0;;;;;;;;32509:33;;32470:16;;;32509:33;;32470:16;;32509:33;32168:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:160::-;975:20;;1031:13;;1024:21;1014:32;;1004:60;;1060:1;1057;1050:12;1075:186;1134:6;1187:2;1175:9;1166:7;1162:23;1158:32;1155:52;;;1203:1;1200;1193:12;1155:52;1226:29;1245:9;1226:29;:::i;1266:260::-;1334:6;1342;1395:2;1383:9;1374:7;1370:23;1366:32;1363:52;;;1411:1;1408;1401:12;1363:52;1434:29;1453:9;1434:29;:::i;:::-;1424:39;;1482:38;1516:2;1505:9;1501:18;1482:38;:::i;:::-;1472:48;;1266:260;;;;;:::o;1531:328::-;1608:6;1616;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:52;;;1693:1;1690;1683:12;1645:52;1716:29;1735:9;1716:29;:::i;:::-;1706:39;;1764:38;1798:2;1787:9;1783:18;1764:38;:::i;:::-;1754:48;;1849:2;1838:9;1834:18;1821:32;1811:42;;1531:328;;;;;:::o;1864:666::-;1959:6;1967;1975;1983;2036:3;2024:9;2015:7;2011:23;2007:33;2004:53;;;2053:1;2050;2043:12;2004:53;2076:29;2095:9;2076:29;:::i;:::-;2066:39;;2124:38;2158:2;2147:9;2143:18;2124:38;:::i;:::-;2114:48;;2209:2;2198:9;2194:18;2181:32;2171:42;;2264:2;2253:9;2249:18;2236:32;2291:18;2283:6;2280:30;2277:50;;;2323:1;2320;2313:12;2277:50;2346:22;;2399:4;2391:13;;2387:27;-1:-1:-1;2377:55:1;;2428:1;2425;2418:12;2377:55;2451:73;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2451:73;:::i;:::-;2441:83;;;1864:666;;;;;;;:::o;2535:254::-;2600:6;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:35;2779:2;2768:9;2764:18;2748:35;:::i;2794:254::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:29;2981:9;2962:29;:::i;:::-;2952:39;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2794:254:1:o;3053:180::-;3109:6;3162:2;3150:9;3141:7;3137:23;3133:32;3130:52;;;3178:1;3175;3168:12;3130:52;3201:26;3217:9;3201:26;:::i;3238:245::-;3296:6;3349:2;3337:9;3328:7;3324:23;3320:32;3317:52;;;3365:1;3362;3355:12;3317:52;3404:9;3391:23;3423:30;3447:5;3423:30;:::i;3488:249::-;3557:6;3610:2;3598:9;3589:7;3585:23;3581:32;3578:52;;;3626:1;3623;3616:12;3578:52;3658:9;3652:16;3677:30;3701:5;3677:30;:::i;3742:450::-;3811:6;3864:2;3852:9;3843:7;3839:23;3835:32;3832:52;;;3880:1;3877;3870:12;3832:52;3920:9;3907:23;3953:18;3945:6;3942:30;3939:50;;;3985:1;3982;3975:12;3939:50;4008:22;;4061:4;4053:13;;4049:27;-1:-1:-1;4039:55:1;;4090:1;4087;4080:12;4039:55;4113:73;4178:7;4173:2;4160:16;4155:2;4151;4147:11;4113:73;:::i;4197:180::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;-1:-1:-1;4348:23:1;;4197:180;-1:-1:-1;4197:180:1:o;4382:316::-;4459:6;4467;4475;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;-1:-1:-1;;4567:23:1;;;4637:2;4622:18;;4609:32;;-1:-1:-1;4688:2:1;4673:18;;;4660:32;;4382:316;-1:-1:-1;4382:316:1:o;4703:::-;4744:3;4782:5;4776:12;4809:6;4804:3;4797:19;4825:63;4881:6;4874:4;4869:3;4865:14;4858:4;4851:5;4847:16;4825:63;:::i;:::-;4933:2;4921:15;4938:66;4917:88;4908:98;;;;5008:4;4904:109;;4703:316;-1:-1:-1;;4703:316:1:o;5024:1642::-;5248:3;5286:6;5280:13;5312:4;5325:51;5369:6;5364:3;5359:2;5351:6;5347:15;5325:51;:::i;:::-;5439:13;;5398:16;;;;5461:55;5439:13;5398:16;5483:15;;;5461:55;:::i;:::-;5605:13;;5538:20;;;5578:1;;5665;5687:18;;;;5740;;;;5767:93;;5845:4;5835:8;5831:19;5819:31;;5767:93;5908:2;5898:8;5895:16;5875:18;5872:40;5869:224;;;5947:77;5942:3;5935:90;6048:4;6045:1;6038:15;6078:4;6073:3;6066:17;5869:224;6109:18;6136:168;;;;6318:1;6313:328;;;;6102:539;;6136:168;6186:66;6175:9;6171:82;6164:5;6157:97;6285:8;6278:5;6274:20;6267:27;;6136:168;;6313:328;14874:1;14867:14;;;14911:4;14898:18;;6408:1;6422:169;6436:8;6433:1;6430:15;6422:169;;;6518:14;;6503:13;;;6496:37;6561:16;;;;6453:10;;6422:169;;;6426:3;;6622:8;6615:5;6611:20;6604:27;;6102:539;-1:-1:-1;6657:3:1;;5024:1642;-1:-1:-1;;;;;;;;;;;5024:1642:1:o;7112:511::-;7306:4;-1:-1:-1;;;;;7416:2:1;7408:6;7404:15;7393:9;7386:34;7468:2;7460:6;7456:15;7451:2;7440:9;7436:18;7429:43;;7508:6;7503:2;7492:9;7488:18;7481:34;7551:3;7546:2;7535:9;7531:18;7524:31;7572:45;7612:3;7601:9;7597:19;7589:6;7572:45;:::i;:::-;7564:53;7112:511;-1:-1:-1;;;;;;7112:511:1:o;7820:219::-;7969:2;7958:9;7951:21;7932:4;7989:44;8029:2;8018:9;8014:18;8006:6;7989:44;:::i;14927:224::-;14966:3;14994:6;15027:2;15024:1;15020:10;15057:2;15054:1;15050:10;15088:3;15084:2;15080:12;15075:3;15072:21;15069:47;;;15096:18;;:::i;:::-;15132:13;;14927:224;-1:-1:-1;;;;14927:224:1:o;15156:128::-;15196:3;15227:1;15223:6;15220:1;15217:13;15214:39;;;15233:18;;:::i;:::-;-1:-1:-1;15269:9:1;;15156:128::o;15289:120::-;15329:1;15355;15345:35;;15360:18;;:::i;:::-;-1:-1:-1;15394:9:1;;15289:120::o;15414:228::-;15454:7;15580:1;15512:66;15508:74;15505:1;15502:81;15497:1;15490:9;15483:17;15479:105;15476:131;;;15587:18;;:::i;:::-;-1:-1:-1;15627:9:1;;15414:228::o;15647:125::-;15687:4;15715:1;15712;15709:8;15706:34;;;15720:18;;:::i;:::-;-1:-1:-1;15757:9:1;;15647:125::o;15777:258::-;15849:1;15859:113;15873:6;15870:1;15867:13;15859:113;;;15949:11;;;15943:18;15930:11;;;15923:39;15895:2;15888:10;15859:113;;;15990:6;15987:1;15984:13;15981:48;;;-1:-1:-1;;16025:1:1;16007:16;;16000:27;15777:258::o;16040:437::-;16119:1;16115:12;;;;16162;;;16183:61;;16237:4;16229:6;16225:17;16215:27;;16183:61;16290:2;16282:6;16279:14;16259:18;16256:38;16253:218;;;16327:77;16324:1;16317:88;16428:4;16425:1;16418:15;16456:4;16453:1;16446:15;16253:218;;16040:437;;;:::o;16482:195::-;16521:3;16552:66;16545:5;16542:77;16539:103;;;16622:18;;:::i;:::-;-1:-1:-1;16669:1:1;16658:13;;16482:195::o;16682:112::-;16714:1;16740;16730:35;;16745:18;;:::i;:::-;-1:-1:-1;16779:9:1;;16682:112::o;16799:184::-;16851:77;16848:1;16841:88;16948:4;16945:1;16938:15;16972:4;16969:1;16962:15;16988:184;17040:77;17037:1;17030:88;17137:4;17134:1;17127:15;17161:4;17158:1;17151:15;17177:184;17229:77;17226:1;17219:88;17326:4;17323:1;17316:15;17350:4;17347:1;17340:15;17366:184;17418:77;17415:1;17408:88;17515:4;17512:1;17505:15;17539:4;17536:1;17529:15;17555:177;17640:66;17633:5;17629:78;17622:5;17619:89;17609:117;;17722:1;17719;17712:12

Swarm Source

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