ETH Price: $3,340.83 (-1.69%)

Token

PITTYS (PITTYS)
 

Overview

Max Total Supply

21 PITTYS

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
PITTYS: Deployer
Balance
1 PITTYS
0xd0da925592a1805924043cd691207b352e301fb2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pittys Coin & NFT- a ERC 20- coin project as well as a collection of 5,000 generative Pits made with a goal to give back big to the pit community. Our team is experienced in both the dog space and crypto space- we are here to spread awareness, build a community- and most of all help some pups.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PITTYS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

// SPDX-License-Identifier: MIT

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


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


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



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



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



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



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





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


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



pragma solidity ^0.8.0;




pragma solidity ^0.8.0;



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

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

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


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


 contract PITTYS is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    string private PROVENANCE;
    string private baseURI;
    
    uint256 public maxSupply;
    uint256 public price = 0.06 ether;

    bool public presaleActive = false;
    bool public saleActive = false;

    mapping (address => uint256) public presaleWhitelist;
    
    //map team addresses 
    
    address private constant AAddress = 0x6c045Aa85e2b0197600974D63190C692CAA3AC65;
    address private constant BAddress = 0x5936D1A718DA5B07c3c2105BD1F24c05B3A09fa3;
    address private constant CAddress = 0x0a14b7CAF0EB7ed12d5cf6D603dD617E19043f25;
    address private constant DAddress = 0xADaC28c09C56e65C53904A24207e45335e700695;
    address private constant EAddress = 0x7533004995d2f14d71500EAB26C9CB77d224232d;
    address private constant FAddress = 0xA4c99bFCC4700215f9353ba8F0D071da5eCFc55A;
    address private constant GAddress = 0xCA7767e52e72852025Aa6bdf4F498620F211C5B8;
    address private constant HAddress = 0x5B51E2bbB17265326e58f82da72f05147aE08124;
    address private constant IAddress = 0x7E8cb246d1F334ce30E84Fa065827F79cEE2ff32; 

    constructor(string memory name, string memory symbol, uint256 supply) ERC721(name, symbol) {
        maxSupply = supply;
    }
    
    function reserve() public onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < 10; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mintPresale(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive,                              "Presale must be active to mint");
        require(reserved > 0,                               "No tokens reserved for this address");
        require(numberOfMints <= reserved,                  "Can't mint more than reserved");
        require(supply.add(numberOfMints) <= maxSupply,     "Purchase would exceed max supply of tokens");
        require(price.mul(numberOfMints) == msg.value,      "Ether value sent is not correct");
        presaleWhitelist[msg.sender] = reserved - numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    function mint(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        require(saleActive,                                 "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints < 1000,    "Invalid purchase amount");
        require(supply.add(numberOfMints) <= maxSupply,     "Purchase would exceed max supply of tokens");
        require(price.mul(numberOfMints) == msg.value,      "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function editPresale(address[] calldata presaleAddresses, uint256[] calldata amount) public onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = amount[i];
        }
    }
    
    function walletOfOwner(address owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }
    
    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;

        require(balance > 0);
        _withdraw(AAddress, balance.mul(1000).div(10000));
        _withdraw(BAddress, balance.mul(1000).div(10000));
        _withdraw(CAddress, balance.mul(1200).div(10000));
        _withdraw(DAddress, balance.mul(1200).div(10000));
        _withdraw(EAddress, balance.mul(1200).div(10000));
        _withdraw(FAddress, balance.mul(1200).div(10000));
        _withdraw(GAddress, balance.mul(1200).div(10000));
        _withdraw(HAddress, balance.mul(1000).div(10000));
        _withdraw(IAddress, balance.mul(1000).div(10000));
    }

     function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function togglePresale() public onlyOwner {
        presaleActive = !presaleActive;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }


    function setProvenance(string memory provenance) private onlyOwner {
        PROVENANCE = provenance;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"editPresale","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","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":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266d529ae9e860000600e55600f805461ffff191690553480156200002757600080fd5b5060405162002cfd38038062002cfd8339810160408190526200004a9162000249565b82518390839062000063906000906020850190620000f8565b50805162000079906001906020840190620000f8565b5050506200009662000090620000a260201b60201c565b620000a6565b600d55506200030c9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010690620002b9565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600082601f830112620001af578081fd5b81516001600160401b0380821115620001cc57620001cc620002f6565b6040516020601f8401601f1916820181018381118382101715620001f457620001f4620002f6565b60405283825285840181018710156200020b578485fd5b8492505b838310156200022e57858301810151828401820152918201916200020f565b838311156200023f57848185840101525b5095945050505050565b6000806000606084860312156200025e578283fd5b83516001600160401b038082111562000275578485fd5b62000283878388016200019e565b9450602086015191508082111562000299578384fd5b50620002a8868287016200019e565b925050604084015190509250925092565b600281046001821680620002ce57607f821691505b60208210811415620002f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129e1806200031c6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054c578063e985e9c514610561578063eb8835ab14610581578063f2fde38b146105a1578063f759867a146105c1576101f9565b8063a22cb465146104d7578063b88d4fde146104f7578063c87b56dd14610517578063cd3293de14610537576101f9565b806391b7f5ed116100dc57806391b7f5ed1461047a57806395d89b411461049a578063a035b1fe146104af578063a0712d68146104c4576101f9565b8063715018a6146104335780637d8966e414610448578063853828b61461045d5780638da5cb5b14610465576101f9565b8063343937431161019057806353135ca01161015f57806353135ca0146103a957806355f804b3146103be5780636352211e146103de57806368428a1b146103fe57806370a0823114610413576101f9565b8063343937431461032757806342842e0e1461033c578063438b63001461035c5780634f6ccce714610389576101f9565b806318160ddd116101cc57806318160ddd146102a557806323b872dd146102c757806326ed7155146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fe4565b6105d4565b60405161022b919061216d565b60405180910390f35b34801561024057600080fd5b50610249610601565b60405161022b9190612178565b34801561026257600080fd5b50610276610271366004612062565b610693565b60405161022b91906120d8565b34801561028f57600080fd5b506102a361029e366004611f52565b6106df565b005b3480156102b157600080fd5b506102ba610777565b60405161022b9190612852565b3480156102d357600080fd5b506102a36102e2366004611e64565b61077d565b3480156102f357600080fd5b506102a3610302366004611f7b565b6107b5565b34801561031357600080fd5b506102ba610322366004611f52565b610892565b34801561033357600080fd5b506102a36108e4565b34801561034857600080fd5b506102a3610357366004611e64565b610937565b34801561036857600080fd5b5061037c610377366004611e18565b610952565b60405161022b9190612129565b34801561039557600080fd5b506102ba6103a4366004612062565b610a10565b3480156103b557600080fd5b5061021e610a6b565b3480156103ca57600080fd5b506102a36103d936600461201c565b610a74565b3480156103ea57600080fd5b506102766103f9366004612062565b610aca565b34801561040a57600080fd5b5061021e610aff565b34801561041f57600080fd5b506102ba61042e366004611e18565b610b0d565b34801561043f57600080fd5b506102a3610b51565b34801561045457600080fd5b506102a3610b9c565b6102a3610bf8565b34801561047157600080fd5b50610276610dca565b34801561048657600080fd5b506102a3610495366004612062565b610dd9565b3480156104a657600080fd5b50610249610e1d565b3480156104bb57600080fd5b506102ba610e2c565b6102a36104d2366004612062565b610e32565b3480156104e357600080fd5b506102a36104f2366004611f18565b610f1a565b34801561050357600080fd5b506102a3610512366004611e9f565b610fe8565b34801561052357600080fd5b50610249610532366004612062565b611027565b34801561054357600080fd5b506102a36110aa565b34801561055857600080fd5b506102ba611121565b34801561056d57600080fd5b5061021e61057c366004611e32565b611127565b34801561058d57600080fd5b506102ba61059c366004611e18565b611155565b3480156105ad57600080fd5b506102a36105bc366004611e18565b611167565b6102a36105cf366004612062565b6111d5565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f9826112f2565b90505b919050565b606060008054610610906128e9565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906128e9565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b600061069e82611332565b6106c35760405162461bcd60e51b81526004016106ba906125fa565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ea82610aca565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b81526004016106ba90612713565b806001600160a01b031661073061134f565b6001600160a01b0316148061074c575061074c8161057c61134f565b6107685760405162461bcd60e51b81526004016106ba90612454565b6107728383611353565b505050565b60085490565b61078e61078861134f565b826113c1565b6107aa5760405162461bcd60e51b81526004016106ba9061277e565b610772838383611446565b6107bd61134f565b6001600160a01b03166107ce610dca565b6001600160a01b0316146107f45760405162461bcd60e51b81526004016106ba90612646565b60005b8381101561088b5782828281811061081f57634e487b7160e01b600052603260045260246000fd5b905060200201356010600087878581811061084a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061085f9190611e18565b6001600160a01b031681526020810191909152604001600020558061088381612924565b9150506107f7565b5050505050565b600061089d83610b0d565b82106108bb5760405162461bcd60e51b81526004016106ba906121c2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ec61134f565b6001600160a01b03166108fd610dca565b6001600160a01b0316146109235760405162461bcd60e51b81526004016106ba90612646565b600f805460ff19811660ff90911615179055565b61077283838360405180602001604052806000815250610fe8565b6060600061095f83610b0d565b905060008167ffffffffffffffff81111561098a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b3578160200160208202803683370190505b50905060005b82811015610a08576109cb8582610892565b8282815181106109eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a0081612924565b9150506109b9565b509392505050565b6000610a1a610777565b8210610a385760405162461bcd60e51b81526004016106ba906127cf565b60088281548110610a5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f5460ff1681565b610a7c61134f565b6001600160a01b0316610a8d610dca565b6001600160a01b031614610ab35760405162461bcd60e51b81526004016106ba90612646565b8051610ac690600c906020840190611caf565b5050565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b81526004016106ba90612532565b600f54610100900460ff1681565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016106ba906124e8565b506001600160a01b031660009081526003602052604090205490565b610b5961134f565b6001600160a01b0316610b6a610dca565b6001600160a01b031614610b905760405162461bcd60e51b81526004016106ba90612646565b610b9a6000611573565b565b610ba461134f565b6001600160a01b0316610bb5610dca565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106ba90612646565b600f805461ff001981166101009182900460ff1615909102179055565b610c0061134f565b6001600160a01b0316610c11610dca565b6001600160a01b031614610c375760405162461bcd60e51b81526004016106ba90612646565b4780610c4257600080fd5b610c77736c045aa85e2b0197600974d63190c692caa3ac65610c72612710610c6c856103e86115c5565b906115d1565b6115dd565b610ca1735936d1a718da5b07c3c2105bd1f24c05b3a09fa3610c72612710610c6c856103e86115c5565b610ccb730a14b7caf0eb7ed12d5cf6d603dd617e19043f25610c72612710610c6c856104b06115c5565b610cf573adac28c09c56e65c53904a24207e45335e700695610c72612710610c6c856104b06115c5565b610d1f737533004995d2f14d71500eab26c9cb77d224232d610c72612710610c6c856104b06115c5565b610d4973a4c99bfcc4700215f9353ba8f0d071da5ecfc55a610c72612710610c6c856104b06115c5565b610d7373ca7767e52e72852025aa6bdf4f498620f211c5b8610c72612710610c6c856104b06115c5565b610d9d735b51e2bbb17265326e58f82da72f05147ae08124610c72612710610c6c856103e86115c5565b610dc7737e8cb246d1f334ce30e84fa065827f79cee2ff32610c72612710610c6c856103e86115c5565b50565b600a546001600160a01b031690565b610de161134f565b6001600160a01b0316610df2610dca565b6001600160a01b031614610e185760405162461bcd60e51b81526004016106ba90612646565b600e55565b606060018054610610906128e9565b600e5481565b6000610e3c610777565b600f54909150610100900460ff16610e665760405162461bcd60e51b81526004016106ba9061238e565b600082118015610e7757506103e882105b610e935760405162461bcd60e51b81526004016106ba9061281b565b600d54610ea08284611659565b1115610ebe5760405162461bcd60e51b81526004016106ba9061257b565b600e543490610ecd90846115c5565b14610eea5760405162461bcd60e51b81526004016106ba90612357565b60005b8281101561077257610f0833610f03838561285b565b611665565b80610f1281612924565b915050610eed565b610f2261134f565b6001600160a01b0316826001600160a01b03161415610f535760405162461bcd60e51b81526004016106ba90612320565b8060056000610f6061134f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fa461134f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fdc919061216d565b60405180910390a35050565b610ff9610ff361134f565b836113c1565b6110155760405162461bcd60e51b81526004016106ba9061277e565b6110218484848461167f565b50505050565b606061103282611332565b61104e5760405162461bcd60e51b81526004016106ba906126c4565b60006110586116b2565b9050600081511161107857604051806020016040528060008152506110a3565b80611082846116c1565b6040516020016110939291906120a6565b6040516020818303038152906040525b9392505050565b6110b261134f565b6001600160a01b03166110c3610dca565b6001600160a01b0316146110e95760405162461bcd60e51b81526004016106ba90612646565b60006110f3610777565b905060005b600a811015610ac65761110f33610f03838561285b565b8061111981612924565b9150506110f8565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60106020526000908152604090205481565b61116f61134f565b6001600160a01b0316611180610dca565b6001600160a01b0316146111a65760405162461bcd60e51b81526004016106ba90612646565b6001600160a01b0381166111cc5760405162461bcd60e51b81526004016106ba9061225f565b610dc781611573565b60006111df610777565b33600090815260106020526040902054600f549192509060ff166112155760405162461bcd60e51b81526004016106ba906124b1565b600081116112355760405162461bcd60e51b81526004016106ba90612411565b808311156112555760405162461bcd60e51b81526004016106ba9061218b565b600d546112628385611659565b11156112805760405162461bcd60e51b81526004016106ba9061257b565b600e54349061128f90856115c5565b146112ac5760405162461bcd60e51b81526004016106ba90612357565b6112b683826128a6565b336000908152601060205260408120919091555b83811015611021576112e033610f03838661285b565b806112ea81612924565b9150506112ca565b60006001600160e01b031982166380ac58cd60e01b148061132357506001600160e01b03198216635b5e139f60e01b145b806105f957506105f9826117dc565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138882610aca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113cc82611332565b6113e85760405162461bcd60e51b81526004016106ba906123c5565b60006113f383610aca565b9050806001600160a01b0316846001600160a01b0316148061142e5750836001600160a01b031661142384610693565b6001600160a01b0316145b8061143e575061143e8185611127565b949350505050565b826001600160a01b031661145982610aca565b6001600160a01b03161461147f5760405162461bcd60e51b81526004016106ba9061267b565b6001600160a01b0382166114a55760405162461bcd60e51b81526004016106ba906122dc565b6114b08383836117f5565b6114bb600082611353565b6001600160a01b03831660009081526003602052604081208054600192906114e49084906128a6565b90915550506001600160a01b038216600090815260036020526040812080546001929061151290849061285b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110a38284612887565b60006110a38284612873565b6000826001600160a01b0316826040516115f6906120d5565b60006040518083038185875af1925050503d8060008114611633576040519150601f19603f3d011682016040523d82523d6000602084013e611638565b606091505b50509050806107725760405162461bcd60e51b81526004016106ba90612754565b60006110a3828461285b565b610ac682826040518060200160405280600081525061187e565b61168a848484611446565b611696848484846118b1565b6110215760405162461bcd60e51b81526004016106ba9061220d565b6060600c8054610610906128e9565b6060816116e657506040805180820190915260018152600360fc1b60208201526105fc565b8160005b811561171057806116fa81612924565b91506117099050600a83612873565b91506116ea565b60008167ffffffffffffffff81111561173957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611763576020820181803683370190505b5090505b841561143e576117786001836128a6565b9150611785600a8661293f565b61179090603061285b565b60f81b8183815181106117b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117d5600a86612873565b9450611767565b6001600160e01b031981166301ffc9a760e01b14919050565b611800838383610772565b6001600160a01b03831661181c57611817816119cc565b61183f565b816001600160a01b0316836001600160a01b03161461183f5761183f8382611a10565b6001600160a01b03821661185b5761185681611aad565b610772565b826001600160a01b0316826001600160a01b031614610772576107728282611b86565b6118888383611bca565b61189560008484846118b1565b6107725760405162461bcd60e51b81526004016106ba9061220d565b60006118c5846001600160a01b0316611ca9565b156119c157836001600160a01b031663150b7a026118e161134f565b8786866040518563ffffffff1660e01b815260040161190394939291906120ec565b602060405180830381600087803b15801561191d57600080fd5b505af192505050801561194d575060408051601f3d908101601f1916820190925261194a91810190612000565b60015b6119a7573d80801561197b576040519150601f19603f3d011682016040523d82523d6000602084013e611980565b606091505b50805161199f5760405162461bcd60e51b81526004016106ba9061220d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061143e565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a1d84610b0d565b611a2791906128a6565b600083815260076020526040902054909150808214611a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611abf906001906128a6565b60008381526009602052604081205460088054939450909284908110611af557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b2457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9183610b0d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bf05760405162461bcd60e51b81526004016106ba906125c5565b611bf981611332565b15611c165760405162461bcd60e51b81526004016106ba906122a5565b611c22600083836117f5565b6001600160a01b0382166000908152600360205260408120805460019290611c4b90849061285b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611cbb906128e9565b90600052602060002090601f016020900481019282611cdd5760008555611d23565b82601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b5b80821115611d2f5760008155600101611d34565b600067ffffffffffffffff80841115611d6357611d6361297f565b604051601f8501601f191681016020018281118282101715611d8757611d8761297f565b604052848152915081838501861015611d9f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105fc57600080fd5b60008083601f840112611de0578081fd5b50813567ffffffffffffffff811115611df7578182fd5b6020830191508360208083028501011115611e1157600080fd5b9250929050565b600060208284031215611e29578081fd5b6110a382611db8565b60008060408385031215611e44578081fd5b611e4d83611db8565b9150611e5b60208401611db8565b90509250929050565b600080600060608486031215611e78578081fd5b611e8184611db8565b9250611e8f60208501611db8565b9150604084013590509250925092565b60008060008060808587031215611eb4578081fd5b611ebd85611db8565b9350611ecb60208601611db8565b925060408501359150606085013567ffffffffffffffff811115611eed578182fd5b8501601f81018713611efd578182fd5b611f0c87823560208401611d48565b91505092959194509250565b60008060408385031215611f2a578182fd5b611f3383611db8565b915060208301358015158114611f47578182fd5b809150509250929050565b60008060408385031215611f64578182fd5b611f6d83611db8565b946020939093013593505050565b60008060008060408587031215611f90578384fd5b843567ffffffffffffffff80821115611fa7578586fd5b611fb388838901611dcf565b90965094506020870135915080821115611fcb578384fd5b50611fd887828801611dcf565b95989497509550505050565b600060208284031215611ff5578081fd5b81356110a381612995565b600060208284031215612011578081fd5b81516110a381612995565b60006020828403121561202d578081fd5b813567ffffffffffffffff811115612043578182fd5b8201601f81018413612053578182fd5b61143e84823560208401611d48565b600060208284031215612073578081fd5b5035919050565b600081518084526120928160208601602086016128bd565b601f01601f19169290920160200192915050565b600083516120b88184602088016128bd565b8351908301906120cc8183602088016128bd565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211f9083018461207a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561216157835183529284019291840191600101612145565b50909695505050505050565b901515815260200190565b6000602082526110a3602083018461207a565b6020808252601d908201527f43616e2774206d696e74206d6f7265207468616e207265736572766564000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260408201526265737360e81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f50726573616c65206d7573742062652061637469766520746f206d696e740000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b90815260200190565b6000821982111561286e5761286e612953565b500190565b60008261288257612882612969565b500490565b60008160001904831182151516156128a1576128a1612953565b500290565b6000828210156128b8576128b8612953565b500390565b60005b838110156128d85781810151838201526020016128c0565b838111156110215750506000910152565b6002810460018216806128fd57607f821691505b6020821081141561291e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293857612938612953565b5060010190565b60008261294e5761294e612969565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc757600080fdfea264697066735822122054d96ddc06958be698cc2d9dba4aa7f2646521364fcc8784a977c34d40caefd064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000006504954545953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065049545459530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054c578063e985e9c514610561578063eb8835ab14610581578063f2fde38b146105a1578063f759867a146105c1576101f9565b8063a22cb465146104d7578063b88d4fde146104f7578063c87b56dd14610517578063cd3293de14610537576101f9565b806391b7f5ed116100dc57806391b7f5ed1461047a57806395d89b411461049a578063a035b1fe146104af578063a0712d68146104c4576101f9565b8063715018a6146104335780637d8966e414610448578063853828b61461045d5780638da5cb5b14610465576101f9565b8063343937431161019057806353135ca01161015f57806353135ca0146103a957806355f804b3146103be5780636352211e146103de57806368428a1b146103fe57806370a0823114610413576101f9565b8063343937431461032757806342842e0e1461033c578063438b63001461035c5780634f6ccce714610389576101f9565b806318160ddd116101cc57806318160ddd146102a557806323b872dd146102c757806326ed7155146102e75780632f745c5914610307576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fe4565b6105d4565b60405161022b919061216d565b60405180910390f35b34801561024057600080fd5b50610249610601565b60405161022b9190612178565b34801561026257600080fd5b50610276610271366004612062565b610693565b60405161022b91906120d8565b34801561028f57600080fd5b506102a361029e366004611f52565b6106df565b005b3480156102b157600080fd5b506102ba610777565b60405161022b9190612852565b3480156102d357600080fd5b506102a36102e2366004611e64565b61077d565b3480156102f357600080fd5b506102a3610302366004611f7b565b6107b5565b34801561031357600080fd5b506102ba610322366004611f52565b610892565b34801561033357600080fd5b506102a36108e4565b34801561034857600080fd5b506102a3610357366004611e64565b610937565b34801561036857600080fd5b5061037c610377366004611e18565b610952565b60405161022b9190612129565b34801561039557600080fd5b506102ba6103a4366004612062565b610a10565b3480156103b557600080fd5b5061021e610a6b565b3480156103ca57600080fd5b506102a36103d936600461201c565b610a74565b3480156103ea57600080fd5b506102766103f9366004612062565b610aca565b34801561040a57600080fd5b5061021e610aff565b34801561041f57600080fd5b506102ba61042e366004611e18565b610b0d565b34801561043f57600080fd5b506102a3610b51565b34801561045457600080fd5b506102a3610b9c565b6102a3610bf8565b34801561047157600080fd5b50610276610dca565b34801561048657600080fd5b506102a3610495366004612062565b610dd9565b3480156104a657600080fd5b50610249610e1d565b3480156104bb57600080fd5b506102ba610e2c565b6102a36104d2366004612062565b610e32565b3480156104e357600080fd5b506102a36104f2366004611f18565b610f1a565b34801561050357600080fd5b506102a3610512366004611e9f565b610fe8565b34801561052357600080fd5b50610249610532366004612062565b611027565b34801561054357600080fd5b506102a36110aa565b34801561055857600080fd5b506102ba611121565b34801561056d57600080fd5b5061021e61057c366004611e32565b611127565b34801561058d57600080fd5b506102ba61059c366004611e18565b611155565b3480156105ad57600080fd5b506102a36105bc366004611e18565b611167565b6102a36105cf366004612062565b6111d5565b60006001600160e01b0319821663780e9d6360e01b14806105f957506105f9826112f2565b90505b919050565b606060008054610610906128e9565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906128e9565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b600061069e82611332565b6106c35760405162461bcd60e51b81526004016106ba906125fa565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ea82610aca565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b81526004016106ba90612713565b806001600160a01b031661073061134f565b6001600160a01b0316148061074c575061074c8161057c61134f565b6107685760405162461bcd60e51b81526004016106ba90612454565b6107728383611353565b505050565b60085490565b61078e61078861134f565b826113c1565b6107aa5760405162461bcd60e51b81526004016106ba9061277e565b610772838383611446565b6107bd61134f565b6001600160a01b03166107ce610dca565b6001600160a01b0316146107f45760405162461bcd60e51b81526004016106ba90612646565b60005b8381101561088b5782828281811061081f57634e487b7160e01b600052603260045260246000fd5b905060200201356010600087878581811061084a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061085f9190611e18565b6001600160a01b031681526020810191909152604001600020558061088381612924565b9150506107f7565b5050505050565b600061089d83610b0d565b82106108bb5760405162461bcd60e51b81526004016106ba906121c2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ec61134f565b6001600160a01b03166108fd610dca565b6001600160a01b0316146109235760405162461bcd60e51b81526004016106ba90612646565b600f805460ff19811660ff90911615179055565b61077283838360405180602001604052806000815250610fe8565b6060600061095f83610b0d565b905060008167ffffffffffffffff81111561098a57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b3578160200160208202803683370190505b50905060005b82811015610a08576109cb8582610892565b8282815181106109eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a0081612924565b9150506109b9565b509392505050565b6000610a1a610777565b8210610a385760405162461bcd60e51b81526004016106ba906127cf565b60088281548110610a5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f5460ff1681565b610a7c61134f565b6001600160a01b0316610a8d610dca565b6001600160a01b031614610ab35760405162461bcd60e51b81526004016106ba90612646565b8051610ac690600c906020840190611caf565b5050565b6000818152600260205260408120546001600160a01b0316806105f95760405162461bcd60e51b81526004016106ba90612532565b600f54610100900460ff1681565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016106ba906124e8565b506001600160a01b031660009081526003602052604090205490565b610b5961134f565b6001600160a01b0316610b6a610dca565b6001600160a01b031614610b905760405162461bcd60e51b81526004016106ba90612646565b610b9a6000611573565b565b610ba461134f565b6001600160a01b0316610bb5610dca565b6001600160a01b031614610bdb5760405162461bcd60e51b81526004016106ba90612646565b600f805461ff001981166101009182900460ff1615909102179055565b610c0061134f565b6001600160a01b0316610c11610dca565b6001600160a01b031614610c375760405162461bcd60e51b81526004016106ba90612646565b4780610c4257600080fd5b610c77736c045aa85e2b0197600974d63190c692caa3ac65610c72612710610c6c856103e86115c5565b906115d1565b6115dd565b610ca1735936d1a718da5b07c3c2105bd1f24c05b3a09fa3610c72612710610c6c856103e86115c5565b610ccb730a14b7caf0eb7ed12d5cf6d603dd617e19043f25610c72612710610c6c856104b06115c5565b610cf573adac28c09c56e65c53904a24207e45335e700695610c72612710610c6c856104b06115c5565b610d1f737533004995d2f14d71500eab26c9cb77d224232d610c72612710610c6c856104b06115c5565b610d4973a4c99bfcc4700215f9353ba8f0d071da5ecfc55a610c72612710610c6c856104b06115c5565b610d7373ca7767e52e72852025aa6bdf4f498620f211c5b8610c72612710610c6c856104b06115c5565b610d9d735b51e2bbb17265326e58f82da72f05147ae08124610c72612710610c6c856103e86115c5565b610dc7737e8cb246d1f334ce30e84fa065827f79cee2ff32610c72612710610c6c856103e86115c5565b50565b600a546001600160a01b031690565b610de161134f565b6001600160a01b0316610df2610dca565b6001600160a01b031614610e185760405162461bcd60e51b81526004016106ba90612646565b600e55565b606060018054610610906128e9565b600e5481565b6000610e3c610777565b600f54909150610100900460ff16610e665760405162461bcd60e51b81526004016106ba9061238e565b600082118015610e7757506103e882105b610e935760405162461bcd60e51b81526004016106ba9061281b565b600d54610ea08284611659565b1115610ebe5760405162461bcd60e51b81526004016106ba9061257b565b600e543490610ecd90846115c5565b14610eea5760405162461bcd60e51b81526004016106ba90612357565b60005b8281101561077257610f0833610f03838561285b565b611665565b80610f1281612924565b915050610eed565b610f2261134f565b6001600160a01b0316826001600160a01b03161415610f535760405162461bcd60e51b81526004016106ba90612320565b8060056000610f6061134f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fa461134f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fdc919061216d565b60405180910390a35050565b610ff9610ff361134f565b836113c1565b6110155760405162461bcd60e51b81526004016106ba9061277e565b6110218484848461167f565b50505050565b606061103282611332565b61104e5760405162461bcd60e51b81526004016106ba906126c4565b60006110586116b2565b9050600081511161107857604051806020016040528060008152506110a3565b80611082846116c1565b6040516020016110939291906120a6565b6040516020818303038152906040525b9392505050565b6110b261134f565b6001600160a01b03166110c3610dca565b6001600160a01b0316146110e95760405162461bcd60e51b81526004016106ba90612646565b60006110f3610777565b905060005b600a811015610ac65761110f33610f03838561285b565b8061111981612924565b9150506110f8565b600d5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60106020526000908152604090205481565b61116f61134f565b6001600160a01b0316611180610dca565b6001600160a01b0316146111a65760405162461bcd60e51b81526004016106ba90612646565b6001600160a01b0381166111cc5760405162461bcd60e51b81526004016106ba9061225f565b610dc781611573565b60006111df610777565b33600090815260106020526040902054600f549192509060ff166112155760405162461bcd60e51b81526004016106ba906124b1565b600081116112355760405162461bcd60e51b81526004016106ba90612411565b808311156112555760405162461bcd60e51b81526004016106ba9061218b565b600d546112628385611659565b11156112805760405162461bcd60e51b81526004016106ba9061257b565b600e54349061128f90856115c5565b146112ac5760405162461bcd60e51b81526004016106ba90612357565b6112b683826128a6565b336000908152601060205260408120919091555b83811015611021576112e033610f03838661285b565b806112ea81612924565b9150506112ca565b60006001600160e01b031982166380ac58cd60e01b148061132357506001600160e01b03198216635b5e139f60e01b145b806105f957506105f9826117dc565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138882610aca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113cc82611332565b6113e85760405162461bcd60e51b81526004016106ba906123c5565b60006113f383610aca565b9050806001600160a01b0316846001600160a01b0316148061142e5750836001600160a01b031661142384610693565b6001600160a01b0316145b8061143e575061143e8185611127565b949350505050565b826001600160a01b031661145982610aca565b6001600160a01b03161461147f5760405162461bcd60e51b81526004016106ba9061267b565b6001600160a01b0382166114a55760405162461bcd60e51b81526004016106ba906122dc565b6114b08383836117f5565b6114bb600082611353565b6001600160a01b03831660009081526003602052604081208054600192906114e49084906128a6565b90915550506001600160a01b038216600090815260036020526040812080546001929061151290849061285b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110a38284612887565b60006110a38284612873565b6000826001600160a01b0316826040516115f6906120d5565b60006040518083038185875af1925050503d8060008114611633576040519150601f19603f3d011682016040523d82523d6000602084013e611638565b606091505b50509050806107725760405162461bcd60e51b81526004016106ba90612754565b60006110a3828461285b565b610ac682826040518060200160405280600081525061187e565b61168a848484611446565b611696848484846118b1565b6110215760405162461bcd60e51b81526004016106ba9061220d565b6060600c8054610610906128e9565b6060816116e657506040805180820190915260018152600360fc1b60208201526105fc565b8160005b811561171057806116fa81612924565b91506117099050600a83612873565b91506116ea565b60008167ffffffffffffffff81111561173957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611763576020820181803683370190505b5090505b841561143e576117786001836128a6565b9150611785600a8661293f565b61179090603061285b565b60f81b8183815181106117b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117d5600a86612873565b9450611767565b6001600160e01b031981166301ffc9a760e01b14919050565b611800838383610772565b6001600160a01b03831661181c57611817816119cc565b61183f565b816001600160a01b0316836001600160a01b03161461183f5761183f8382611a10565b6001600160a01b03821661185b5761185681611aad565b610772565b826001600160a01b0316826001600160a01b031614610772576107728282611b86565b6118888383611bca565b61189560008484846118b1565b6107725760405162461bcd60e51b81526004016106ba9061220d565b60006118c5846001600160a01b0316611ca9565b156119c157836001600160a01b031663150b7a026118e161134f565b8786866040518563ffffffff1660e01b815260040161190394939291906120ec565b602060405180830381600087803b15801561191d57600080fd5b505af192505050801561194d575060408051601f3d908101601f1916820190925261194a91810190612000565b60015b6119a7573d80801561197b576040519150601f19603f3d011682016040523d82523d6000602084013e611980565b606091505b50805161199f5760405162461bcd60e51b81526004016106ba9061220d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061143e565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a1d84610b0d565b611a2791906128a6565b600083815260076020526040902054909150808214611a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611abf906001906128a6565b60008381526009602052604081205460088054939450909284908110611af557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b2457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9183610b0d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bf05760405162461bcd60e51b81526004016106ba906125c5565b611bf981611332565b15611c165760405162461bcd60e51b81526004016106ba906122a5565b611c22600083836117f5565b6001600160a01b0382166000908152600360205260408120805460019290611c4b90849061285b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611cbb906128e9565b90600052602060002090601f016020900481019282611cdd5760008555611d23565b82601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b5b80821115611d2f5760008155600101611d34565b600067ffffffffffffffff80841115611d6357611d6361297f565b604051601f8501601f191681016020018281118282101715611d8757611d8761297f565b604052848152915081838501861015611d9f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105fc57600080fd5b60008083601f840112611de0578081fd5b50813567ffffffffffffffff811115611df7578182fd5b6020830191508360208083028501011115611e1157600080fd5b9250929050565b600060208284031215611e29578081fd5b6110a382611db8565b60008060408385031215611e44578081fd5b611e4d83611db8565b9150611e5b60208401611db8565b90509250929050565b600080600060608486031215611e78578081fd5b611e8184611db8565b9250611e8f60208501611db8565b9150604084013590509250925092565b60008060008060808587031215611eb4578081fd5b611ebd85611db8565b9350611ecb60208601611db8565b925060408501359150606085013567ffffffffffffffff811115611eed578182fd5b8501601f81018713611efd578182fd5b611f0c87823560208401611d48565b91505092959194509250565b60008060408385031215611f2a578182fd5b611f3383611db8565b915060208301358015158114611f47578182fd5b809150509250929050565b60008060408385031215611f64578182fd5b611f6d83611db8565b946020939093013593505050565b60008060008060408587031215611f90578384fd5b843567ffffffffffffffff80821115611fa7578586fd5b611fb388838901611dcf565b90965094506020870135915080821115611fcb578384fd5b50611fd887828801611dcf565b95989497509550505050565b600060208284031215611ff5578081fd5b81356110a381612995565b600060208284031215612011578081fd5b81516110a381612995565b60006020828403121561202d578081fd5b813567ffffffffffffffff811115612043578182fd5b8201601f81018413612053578182fd5b61143e84823560208401611d48565b600060208284031215612073578081fd5b5035919050565b600081518084526120928160208601602086016128bd565b601f01601f19169290920160200192915050565b600083516120b88184602088016128bd565b8351908301906120cc8183602088016128bd565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211f9083018461207a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561216157835183529284019291840191600101612145565b50909695505050505050565b901515815260200190565b6000602082526110a3602083018461207a565b6020808252601d908201527f43616e2774206d696e74206d6f7265207468616e207265736572766564000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4e6f20746f6b656e7320726573657276656420666f722074686973206164647260408201526265737360e81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f50726573616c65206d7573742062652061637469766520746f206d696e740000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b90815260200190565b6000821982111561286e5761286e612953565b500190565b60008261288257612882612969565b500490565b60008160001904831182151516156128a1576128a1612953565b500290565b6000828210156128b8576128b8612953565b500390565b60005b838110156128d85781810151838201526020016128c0565b838111156110215750506000910152565b6002810460018216806128fd57607f821691505b6020821081141561291e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293857612938612953565b5060010190565b60008261294e5761294e612969565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc757600080fdfea264697066735822122054d96ddc06958be698cc2d9dba4aa7f2646521364fcc8784a977c34d40caefd064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000006504954545953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065049545459530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): PITTYS
Arg [1] : symbol (string): PITTYS
Arg [2] : supply (uint256): 1000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 5049545459530000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5049545459530000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49228:5110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33955:224;;;;;;;;;;-1:-1:-1;33955:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21017:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22576:221::-;;;;;;;;;;-1:-1:-1;22576:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22099:411::-;;;;;;;;;;-1:-1:-1;22099:411:0;;;;;:::i;:::-;;:::i;:::-;;34595:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23466:339::-;;;;;;;;;;-1:-1:-1;23466:339:0;;;;;:::i;:::-;;:::i;52242:244::-;;;;;;;;;;-1:-1:-1;52242:244:0;;;;;:::i;:::-;;:::i;34263:256::-;;;;;;;;;;-1:-1:-1;34263:256:0;;;;;:::i;:::-;;:::i;53727:91::-;;;;;;;;;;;;;:::i;23876:185::-;;;;;;;;;;-1:-1:-1;23876:185:0;;;;;:::i;:::-;;:::i;52498:341::-;;;;;;;;;;-1:-1:-1;52498:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34785:233::-;;;;;;;;;;-1:-1:-1;34785:233:0;;;;;:::i;:::-;;:::i;49491:33::-;;;;;;;;;;;;;:::i;54135:88::-;;;;;;;;;;-1:-1:-1;54135:88:0;;;;;:::i;:::-;;:::i;20711:239::-;;;;;;;;;;-1:-1:-1;20711:239:0;;;;;:::i;:::-;;:::i;49531:30::-;;;;;;;;;;;;;:::i;20441:208::-;;;;;;;;;;-1:-1:-1;20441:208:0;;;;;:::i;:::-;;:::i;41699:94::-;;;;;;;;;;;;;:::i;53826:82::-;;;;;;;;;;;;;:::i;52851:679::-;;;:::i;41048:87::-;;;;;;;;;;;;;:::i;53916:88::-;;;;;;;;;;-1:-1:-1;53916:88:0;;;;;:::i;:::-;;:::i;21186:104::-;;;;;;;;;;;;;:::i;49449:33::-;;;;;;;;;;;;;:::i;51625:609::-;;;;;;:::i;:::-;;:::i;22869:295::-;;;;;;;;;;-1:-1:-1;22869:295:0;;;;;:::i;:::-;;:::i;24132:328::-;;;;;;;;;;-1:-1:-1;24132:328:0;;;;;:::i;:::-;;:::i;21361:334::-;;;;;;;;;;-1:-1:-1;21361:334:0;;;;;:::i;:::-;;:::i;50576:188::-;;;;;;;;;;;;;:::i;49418:24::-;;;;;;;;;;;;;:::i;23235:164::-;;;;;;;;;;-1:-1:-1;23235:164:0;;;;;:::i;:::-;;:::i;49570:52::-;;;;;;;;;;-1:-1:-1;49570:52:0;;;;;:::i;:::-;;:::i;41948:192::-;;;;;;;;;;-1:-1:-1;41948:192:0;;;;;:::i;:::-;;:::i;50772:841::-;;;;;;:::i;:::-;;:::i;33955:224::-;34057:4;-1:-1:-1;;;;;;34081:50:0;;-1:-1:-1;;;34081:50:0;;:90;;;34135:36;34159:11;34135:23;:36::i;:::-;34074:97;;33955:224;;;;:::o;21017:100::-;21071:13;21104:5;21097:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21017:100;:::o;22576:221::-;22652:7;22680:16;22688:7;22680;:16::i;:::-;22672:73;;;;-1:-1:-1;;;22672:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22765:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22765:24:0;;22576:221::o;22099:411::-;22180:13;22196:23;22211:7;22196:14;:23::i;:::-;22180:39;;22244:5;-1:-1:-1;;;;;22238:11:0;:2;-1:-1:-1;;;;;22238:11:0;;;22230:57;;;;-1:-1:-1;;;22230:57:0;;;;;;;:::i;:::-;22338:5;-1:-1:-1;;;;;22322:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22322:21:0;;:62;;;;22347:37;22364:5;22371:12;:10;:12::i;22347:37::-;22300:168;;;;-1:-1:-1;;;22300:168:0;;;;;;;:::i;:::-;22481:21;22490:2;22494:7;22481:8;:21::i;:::-;22099:411;;;:::o;34595:113::-;34683:10;:17;34595:113;:::o;23466:339::-;23661:41;23680:12;:10;:12::i;:::-;23694:7;23661:18;:41::i;:::-;23653:103;;;;-1:-1:-1;;;23653:103:0;;;;;;;:::i;:::-;23769:28;23779:4;23785:2;23789:7;23769:9;:28::i;52242:244::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;52359:9:::1;52355:124;52370:27:::0;;::::1;52355:124;;;52458:6;;52465:1;52458:9;;;;;-1:-1:-1::0;;;52458:9:0::1;;;;;;;;;;;;;;;52418:16;:37;52435:16;;52452:1;52435:19;;;;;-1:-1:-1::0;;;52435:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52418:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52418:37:0;:49;52399:3;::::1;::::0;::::1;:::i;:::-;;;;52355:124;;;;52242:244:::0;;;;:::o;34263:256::-;34360:7;34396:23;34413:5;34396:16;:23::i;:::-;34388:5;:31;34380:87;;;;-1:-1:-1;;;34380:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34485:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34263:256::o;53727:91::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53797:13:::1;::::0;;-1:-1:-1;;53780:30:0;::::1;53797:13;::::0;;::::1;53796:14;53780:30;::::0;;53727:91::o;23876:185::-;24014:39;24031:4;24037:2;24041:7;24014:39;;;;;;;;;;;;:16;:39::i;52498:341::-;52558:16;52587:18;52608:16;52618:5;52608:9;:16::i;:::-;52587:37;;52637:25;52679:10;52665:25;;;;;;-1:-1:-1;;;52665:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52665:25:0;;52637:53;;52705:9;52701:105;52720:10;52716:1;:14;52701:105;;;52765:29;52785:5;52792:1;52765:19;:29::i;:::-;52751:8;52760:1;52751:11;;;;;;-1:-1:-1;;;52751:11:0;;;;;;;;;;;;;;;;;;:43;52732:3;;;;:::i;:::-;;;;52701:105;;;-1:-1:-1;52823:8:0;52498:341;-1:-1:-1;;;52498:341:0:o;34785:233::-;34860:7;34896:30;:28;:30::i;:::-;34888:5;:38;34880:95;;;;-1:-1:-1;;;34880:95:0;;;;;;;:::i;:::-;34993:10;35004:5;34993:17;;;;;;-1:-1:-1;;;34993:17:0;;;;;;;;;;;;;;;;;34986:24;;34785:233;;;:::o;49491:33::-;;;;;;:::o;54135:88::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;54202:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54135:88:::0;:::o;20711:239::-;20783:7;20819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20819:16:0;20854:19;20846:73;;;;-1:-1:-1;;;20846:73:0;;;;;;;:::i;49531:30::-;;;;;;;;;:::o;20441:208::-;20513:7;-1:-1:-1;;;;;20541:19:0;;20533:74;;;;-1:-1:-1;;;20533:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20625:16:0;;;;;:9;:16;;;;;;;20441:208::o;41699:94::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;41764:21:::1;41782:1;41764:9;:21::i;:::-;41699:94::o:0;53826:82::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53890:10:::1;::::0;;-1:-1:-1;;53876:24:0;::::1;53890:10;::::0;;;::::1;;;53889:11;53876:24:::0;;::::1;;::::0;;53826:82::o;52851:679::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;52928:21:::1;52970:11:::0;52962:20:::1;;;::::0;::::1;;52993:49;49704:42;53013:28;53035:5;53013:17;:7:::0;53025:4:::1;53013:11;:17::i;:::-;:21:::0;::::1;:28::i;:::-;52993:9;:49::i;:::-;53053;49789:42;53073:28;53095:5;53073:17;:7:::0;53085:4:::1;53073:11;:17::i;53053:49::-;53113;49874:42;53133:28;53155:5;53133:17;:7:::0;53145:4:::1;53133:11;:17::i;53113:49::-;53173;49959:42;53193:28;53215:5;53193:17;:7:::0;53205:4:::1;53193:11;:17::i;53173:49::-;53233;50044:42;53253:28;53275:5;53253:17;:7:::0;53265:4:::1;53253:11;:17::i;53233:49::-;53293;50129:42;53313:28;53335:5;53313:17;:7:::0;53325:4:::1;53313:11;:17::i;53293:49::-;53353;50214:42;53373:28;53395:5;53373:17;:7:::0;53385:4:::1;53373:11;:17::i;53353:49::-;53413;50299:42;53433:28;53455:5;53433:17;:7:::0;53445:4:::1;53433:11;:17::i;53413:49::-;53473;50384:42;53493:28;53515:5;53493:17;:7:::0;53505:4:::1;53493:11;:17::i;53473:49::-;41339:1;52851:679::o:0;41048:87::-;41121:6;;-1:-1:-1;;;;;41121:6:0;41048:87;:::o;53916:88::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;53980:5:::1;:16:::0;53916:88::o;21186:104::-;21242:13;21275:7;21268:14;;;;;:::i;49449:33::-;;;;:::o;51625:609::-;51688:14;51705:13;:11;:13::i;:::-;51737:10;;51688:30;;-1:-1:-1;51737:10:0;;;;;51729:82;;;;-1:-1:-1;;;51729:82:0;;;;;;;:::i;:::-;51846:1;51830:13;:17;:41;;;;;51867:4;51851:13;:20;51830:41;51822:80;;;;-1:-1:-1;;;51822:80:0;;;;;;;:::i;:::-;51950:9;;51921:25;:6;51932:13;51921:10;:25::i;:::-;:38;;51913:97;;;;-1:-1:-1;;;51913:97:0;;;;;;;:::i;:::-;52029:5;;52057:9;;52029:24;;52039:13;52029:9;:24::i;:::-;:37;52021:86;;;;-1:-1:-1;;;52021:86:0;;;;;;;:::i;:::-;52132:9;52128:99;52147:13;52143:1;:17;52128:99;;;52182:33;52192:10;52204;52213:1;52204:6;:10;:::i;:::-;52182:9;:33::i;:::-;52162:3;;;;:::i;:::-;;;;52128:99;;22869:295;22984:12;:10;:12::i;:::-;-1:-1:-1;;;;;22972:24:0;:8;-1:-1:-1;;;;;22972:24:0;;;22964:62;;;;-1:-1:-1;;;22964:62:0;;;;;;;:::i;:::-;23084:8;23039:18;:32;23058:12;:10;:12::i;:::-;-1:-1:-1;;;;;23039:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23039:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23039:53:0;;;;;;;;;;;23123:12;:10;:12::i;:::-;-1:-1:-1;;;;;23108:48:0;;23147:8;23108:48;;;;;;:::i;:::-;;;;;;;;22869:295;;:::o;24132:328::-;24307:41;24326:12;:10;:12::i;:::-;24340:7;24307:18;:41::i;:::-;24299:103;;;;-1:-1:-1;;;24299:103:0;;;;;;;:::i;:::-;24413:39;24427:4;24433:2;24437:7;24446:5;24413:13;:39::i;:::-;24132:328;;;;:::o;21361:334::-;21434:13;21468:16;21476:7;21468;:16::i;:::-;21460:76;;;;-1:-1:-1;;;21460:76:0;;;;;;;:::i;:::-;21549:21;21573:10;:8;:10::i;:::-;21549:34;;21625:1;21607:7;21601:21;:25;:86;;;;;;;;;;;;;;;;;21653:7;21662:18;:7;:16;:18::i;:::-;21636:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21601:86;21594:93;21361:334;-1:-1:-1;;;21361:334:0:o;50576:188::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;50623:14:::1;50640:13;:11;:13::i;:::-;50623:30;;50669:9;50664:93;50688:2;50684:1;:6;50664:93;;;50712:33;50722:10;50734;50743:1:::0;50734:6;:10:::1;:::i;50712:33::-;50692:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50664:93;;49418:24:::0;;;;:::o;23235:164::-;-1:-1:-1;;;;;23356:25:0;;;23332:4;23356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23235:164::o;49570:52::-;;;;;;;;;;;;;:::o;41948:192::-;41279:12;:10;:12::i;:::-;-1:-1:-1;;;;;41268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41268:23:0;;41260:68;;;;-1:-1:-1;;;41260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42037:22:0;::::1;42029:73;;;;-1:-1:-1::0;;;42029:73:0::1;;;;;;;:::i;:::-;42113:19;42123:8;42113:9;:19::i;50772:841::-:0;50842:14;50859:13;:11;:13::i;:::-;50919:10;50883:16;50902:28;;;:16;:28;;;;;;50949:13;;50842:30;;-1:-1:-1;50902:28:0;50949:13;;50941:85;;;;-1:-1:-1;;;50941:85:0;;;;;;;:::i;:::-;51056:1;51045:8;:12;51037:90;;;;-1:-1:-1;;;51037:90:0;;;;;;;:::i;:::-;51163:8;51146:13;:25;;51138:84;;;;-1:-1:-1;;;51138:84:0;;;;;;;:::i;:::-;51270:9;;51241:25;:6;51252:13;51241:10;:25::i;:::-;:38;;51233:97;;;;-1:-1:-1;;;51233:97:0;;;;;;;:::i;:::-;51349:5;;51377:9;;51349:24;;51359:13;51349:9;:24::i;:::-;:37;51341:86;;;;-1:-1:-1;;;51341:86:0;;;;;;;:::i;:::-;51469:24;51480:13;51469:8;:24;:::i;:::-;51455:10;51438:28;;;;:16;:28;;;;;:55;;;;51506:100;51525:13;51521:1;:17;51506:100;;;51559:35;51570:10;51582;51591:1;51582:6;:10;:::i;51559:35::-;51540:3;;;;:::i;:::-;;;;51506:100;;20072:305;20174:4;-1:-1:-1;;;;;;20211:40:0;;-1:-1:-1;;;20211:40:0;;:105;;-1:-1:-1;;;;;;;20268:48:0;;-1:-1:-1;;;20268:48:0;20211:105;:158;;;;20333:36;20357:11;20333:23;:36::i;25970:127::-;26035:4;26059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26059:16:0;:30;;;25970:127::o;1381:98::-;1461:10;1381:98;:::o;29952:174::-;30027:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30027:29:0;-1:-1:-1;;;;;30027:29:0;;;;;;;;:24;;30081:23;30027:24;30081:14;:23::i;:::-;-1:-1:-1;;;;;30072:46:0;;;;;;;;;;;29952:174;;:::o;26264:348::-;26357:4;26382:16;26390:7;26382;:16::i;:::-;26374:73;;;;-1:-1:-1;;;26374:73:0;;;;;;;:::i;:::-;26458:13;26474:23;26489:7;26474:14;:23::i;:::-;26458:39;;26527:5;-1:-1:-1;;;;;26516:16:0;:7;-1:-1:-1;;;;;26516:16:0;;:51;;;;26560:7;-1:-1:-1;;;;;26536:31:0;:20;26548:7;26536:11;:20::i;:::-;-1:-1:-1;;;;;26536:31:0;;26516:51;:87;;;;26571:32;26588:5;26595:7;26571:16;:32::i;:::-;26508:96;26264:348;-1:-1:-1;;;;26264:348:0:o;29256:578::-;29415:4;-1:-1:-1;;;;;29388:31:0;:23;29403:7;29388:14;:23::i;:::-;-1:-1:-1;;;;;29388:31:0;;29380:85;;;;-1:-1:-1;;;29380:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29484:16:0;;29476:65;;;;-1:-1:-1;;;29476:65:0;;;;;;;:::i;:::-;29554:39;29575:4;29581:2;29585:7;29554:20;:39::i;:::-;29658:29;29675:1;29679:7;29658:8;:29::i;:::-;-1:-1:-1;;;;;29700:15:0;;;;;;:9;:15;;;;;:20;;29719:1;;29700:15;:20;;29719:1;;29700:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29731:13:0;;;;;;:9;:13;;;;;:18;;29748:1;;29731:13;:18;;29748:1;;29731:18;:::i;:::-;;;;-1:-1:-1;;29760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29760:21:0;-1:-1:-1;;;;;29760:21:0;;;;;;;;;29799:27;;29760:16;;29799:27;;;;;;;29256:578;;;:::o;42148:173::-;42223:6;;;-1:-1:-1;;;;;42240:17:0;;;-1:-1:-1;;;;;;42240:17:0;;;;;;;42273:40;;42223:6;;;42240:17;42223:6;;42273:40;;42204:16;;42273:40;42148:173;;:::o;45798:98::-;45856:7;45883:5;45887:1;45883;:5;:::i;46197:98::-;46255:7;46282:5;46286:1;46282;:5;:::i;53539:180::-;53613:12;53631:8;-1:-1:-1;;;;;53631:13:0;53652:7;53631:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53612:52;;;53683:7;53675:36;;;;-1:-1:-1;;;53675:36:0;;;;;;;:::i;45060:98::-;45118:7;45145:5;45149:1;45145;:5;:::i;26954:110::-;27030:26;27040:2;27044:7;27030:26;;;;;;;;;;;;:9;:26::i;25342:315::-;25499:28;25509:4;25515:2;25519:7;25499:9;:28::i;:::-;25546:48;25569:4;25575:2;25579:7;25588:5;25546:22;:48::i;:::-;25538:111;;;;-1:-1:-1;;;25538:111:0;;;;;;;:::i;54235:100::-;54287:13;54320:7;54313:14;;;;;:::i;1850:723::-;1906:13;2127:10;2123:53;;-1:-1:-1;2154:10:0;;;;;;;;;;;;-1:-1:-1;;;2154:10:0;;;;;;2123:53;2201:5;2186:12;2242:78;2249:9;;2242:78;;2275:8;;;;:::i;:::-;;-1:-1:-1;2298:10:0;;-1:-1:-1;2306:2:0;2298:10;;:::i;:::-;;;2242:78;;;2330:19;2362:6;2352:17;;;;;;-1:-1:-1;;;2352:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2352:17:0;;2330:39;;2380:154;2387:10;;2380:154;;2414:11;2424:1;2414:11;;:::i;:::-;;-1:-1:-1;2483:10:0;2491:2;2483:5;:10;:::i;:::-;2470:24;;:2;:24;:::i;:::-;2457:39;;2440:6;2447;2440:14;;;;;;-1:-1:-1;;;2440:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2440:56:0;;;;;;;;-1:-1:-1;2511:11:0;2520:2;2511:11;;:::i;:::-;;;2380:154;;18679:157;-1:-1:-1;;;;;;18788:40:0;;-1:-1:-1;;;18788:40:0;18679:157;;;:::o;35631:589::-;35775:45;35802:4;35808:2;35812:7;35775:26;:45::i;:::-;-1:-1:-1;;;;;35837:18:0;;35833:187;;35872:40;35904:7;35872:31;:40::i;:::-;35833:187;;;35942:2;-1:-1:-1;;;;;35934:10:0;:4;-1:-1:-1;;;;;35934:10:0;;35930:90;;35961:47;35994:4;36000:7;35961:32;:47::i;:::-;-1:-1:-1;;;;;36034:16:0;;36030:183;;36067:45;36104:7;36067:36;:45::i;:::-;36030:183;;;36140:4;-1:-1:-1;;;;;36134:10:0;:2;-1:-1:-1;;;;;36134:10:0;;36130:83;;36161:40;36189:2;36193:7;36161:27;:40::i;27291:321::-;27421:18;27427:2;27431:7;27421:5;:18::i;:::-;27472:54;27503:1;27507:2;27511:7;27520:5;27472:22;:54::i;:::-;27450:154;;;;-1:-1:-1;;;27450:154:0;;;;;;;:::i;30691:799::-;30846:4;30867:15;:2;-1:-1:-1;;;;;30867:13:0;;:15::i;:::-;30863:620;;;30919:2;-1:-1:-1;;;;;30903:36:0;;30940:12;:10;:12::i;:::-;30954:4;30960:7;30969:5;30903:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30903:72:0;;;;;;;;-1:-1:-1;;30903:72:0;;;;;;;;;;;;:::i;:::-;;;30899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31145:13:0;;31141:272;;31188:60;;-1:-1:-1;;;31188:60:0;;;;;;;:::i;31141:272::-;31363:6;31357:13;31348:6;31344:2;31340:15;31333:38;30899:529;-1:-1:-1;;;;;;31026:51:0;-1:-1:-1;;;31026:51:0;;-1:-1:-1;31019:58:0;;30863:620;-1:-1:-1;31467:4:0;30691:799;;;;;;:::o;36943:164::-;37047:10;:17;;37020:24;;;;:15;:24;;;;;:44;;;37075:24;;;;;;;;;;;;36943:164::o;37734:988::-;38000:22;38050:1;38025:22;38042:4;38025:16;:22::i;:::-;:26;;;;:::i;:::-;38062:18;38083:26;;;:17;:26;;;;;;38000:51;;-1:-1:-1;38216:28:0;;;38212:328;;-1:-1:-1;;;;;38283:18:0;;38261:19;38283:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38334:30;;;;;;:44;;;38451:30;;:17;:30;;;;;:43;;;38212:328;-1:-1:-1;38636:26:0;;;;:17;:26;;;;;;;;38629:33;;;-1:-1:-1;;;;;38680:18:0;;;;;:12;:18;;;;;:34;;;;;;;38673:41;37734:988::o;39017:1079::-;39295:10;:17;39270:22;;39295:21;;39315:1;;39295:21;:::i;:::-;39327:18;39348:24;;;:15;:24;;;;;;39721:10;:26;;39270:46;;-1:-1:-1;39348:24:0;;39270:46;;39721:26;;;;-1:-1:-1;;;39721:26:0;;;;;;;;;;;;;;;;;39699:48;;39785:11;39760:10;39771;39760:22;;;;;;-1:-1:-1;;;39760:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;39865:28;;;:15;:28;;;;;;;:41;;;40037:24;;;;;40030:31;40072:10;:16;;;;;-1:-1:-1;;;40072:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39017:1079;;;;:::o;36521:221::-;36606:14;36623:20;36640:2;36623:16;:20::i;:::-;-1:-1:-1;;;;;36654:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36699:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36521:221:0:o;27948:382::-;-1:-1:-1;;;;;28028:16:0;;28020:61;;;;-1:-1:-1;;;28020:61:0;;;;;;;:::i;:::-;28101:16;28109:7;28101;:16::i;:::-;28100:17;28092:58;;;;-1:-1:-1;;;28092:58:0;;;;;;;:::i;:::-;28163:45;28192:1;28196:2;28200:7;28163:20;:45::i;:::-;-1:-1:-1;;;;;28221:13:0;;;;;;:9;:13;;;;;:18;;28238:1;;28221:13;:18;;28238:1;;28221:18;:::i;:::-;;;;-1:-1:-1;;28250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28250:21:0;-1:-1:-1;;;;;28250:21:0;;;;;;;;28289:33;;28250:16;;;28289:33;;28250:16;;28289:33;27948:382;;:::o;10611:387::-;10934:20;10982:8;;;10611:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:198::-;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:31;1393:9;1372:31;:::i;1414:274::-;;;1543:2;1531:9;1522:7;1518:23;1514:32;1511:2;;;1564:6;1556;1549:22;1511:2;1592:31;1613:9;1592:31;:::i;:::-;1582:41;;1642:40;1678:2;1667:9;1663:18;1642:40;:::i;:::-;1632:50;;1501:187;;;;;:::o;1693:342::-;;;;1839:2;1827:9;1818:7;1814:23;1810:32;1807:2;;;1860:6;1852;1845:22;1807:2;1888:31;1909:9;1888:31;:::i;:::-;1878:41;;1938:40;1974:2;1963:9;1959:18;1938:40;:::i;:::-;1928:50;;2025:2;2014:9;2010:18;1997:32;1987:42;;1797:238;;;;;:::o;2040:702::-;;;;;2212:3;2200:9;2191:7;2187:23;2183:33;2180:2;;;2234:6;2226;2219:22;2180:2;2262:31;2283:9;2262:31;:::i;:::-;2252:41;;2312:40;2348:2;2337:9;2333:18;2312:40;:::i;:::-;2302:50;;2399:2;2388:9;2384:18;2371:32;2361:42;;2454:2;2443:9;2439:18;2426:32;2481:18;2473:6;2470:30;2467:2;;;2518:6;2510;2503:22;2467:2;2546:22;;2599:4;2591:13;;2587:27;-1:-1:-1;2577:2:1;;2633:6;2625;2618:22;2577:2;2661:75;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2661:75;:::i;:::-;2651:85;;;2170:572;;;;;;;:::o;2747:369::-;;;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:31;2943:9;2922:31;:::i;:::-;2912:41;;3003:2;2992:9;2988:18;2975:32;3050:5;3043:13;3036:21;3029:5;3026:32;3016:2;;3077:6;3069;3062:22;3016:2;3105:5;3095:15;;;2831:285;;;;;:::o;3121:266::-;;;3250:2;3238:9;3229:7;3225:23;3221:32;3218:2;;;3271:6;3263;3256:22;3218:2;3299:31;3320:9;3299:31;:::i;:::-;3289:41;3377:2;3362:18;;;;3349:32;;-1:-1:-1;;;3208:179:1:o;3392:815::-;;;;;3591:2;3579:9;3570:7;3566:23;3562:32;3559:2;;;3612:6;3604;3597:22;3559:2;3657:9;3644:23;3686:18;3727:2;3719:6;3716:14;3713:2;;;3748:6;3740;3733:22;3713:2;3792:76;3860:7;3851:6;3840:9;3836:22;3792:76;:::i;:::-;3887:8;;-1:-1:-1;3766:102:1;-1:-1:-1;3975:2:1;3960:18;;3947:32;;-1:-1:-1;3991:16:1;;;3988:2;;;4025:6;4017;4010:22;3988:2;;4069:78;4139:7;4128:8;4117:9;4113:24;4069:78;:::i;:::-;3549:658;;;;-1:-1:-1;4166:8:1;-1:-1:-1;;;;3549:658:1:o;4212:257::-;;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4344:6;4336;4329:22;4291:2;4388:9;4375:23;4407:32;4433:5;4407:32;:::i;4474:261::-;;4596:2;4584:9;4575:7;4571:23;4567:32;4564:2;;;4617:6;4609;4602:22;4564:2;4654:9;4648:16;4673:32;4699:5;4673:32;:::i;4740:482::-;;4862:2;4850:9;4841:7;4837:23;4833:32;4830:2;;;4883:6;4875;4868:22;4830:2;4928:9;4915:23;4961:18;4953:6;4950:30;4947:2;;;4998:6;4990;4983:22;4947:2;5026:22;;5079:4;5071:13;;5067:27;-1:-1:-1;5057:2:1;;5113:6;5105;5098:22;5057:2;5141:75;5208:7;5203:2;5190:16;5185:2;5181;5177:11;5141:75;:::i;5227:190::-;;5339:2;5327:9;5318:7;5314:23;5310:32;5307:2;;;5360:6;5352;5345:22;5307:2;-1:-1:-1;5388:23:1;;5297:120;-1:-1:-1;5297:120:1:o;5422:259::-;;5503:5;5497:12;5530:6;5525:3;5518:19;5546:63;5602:6;5595:4;5590:3;5586:14;5579:4;5572:5;5568:16;5546:63;:::i;:::-;5663:2;5642:15;-1:-1:-1;;5638:29:1;5629:39;;;;5670:4;5625:50;;5473:208;-1:-1:-1;;5473:208:1:o;5686:470::-;;5903:6;5897:13;5919:53;5965:6;5960:3;5953:4;5945:6;5941:17;5919:53;:::i;:::-;6035:13;;5994:16;;;;6057:57;6035:13;5994:16;6091:4;6079:17;;6057:57;:::i;:::-;6130:20;;5873:283;-1:-1:-1;;;;5873:283:1:o;6161:205::-;6361:3;6352:14::o;6371:203::-;-1:-1:-1;;;;;6535:32:1;;;;6517:51;;6505:2;6490:18;;6472:102::o;6579:490::-;-1:-1:-1;;;;;6848:15:1;;;6830:34;;6900:15;;6895:2;6880:18;;6873:43;6947:2;6932:18;;6925:34;;;6995:3;6990:2;6975:18;;6968:31;;;6579:490;;7016:47;;7043:19;;7035:6;7016:47;:::i;:::-;7008:55;6782:287;-1:-1:-1;;;;;;6782:287:1:o;7074:635::-;7245:2;7297:21;;;7367:13;;7270:18;;;7389:22;;;7074:635;;7245:2;7468:15;;;;7442:2;7427:18;;;7074:635;7514:169;7528:6;7525:1;7522:13;7514:169;;;7589:13;;7577:26;;7658:15;;;;7623:12;;;;7550:1;7543:9;7514:169;;;-1:-1:-1;7700:3:1;;7225:484;-1:-1:-1;;;;;;7225:484:1:o;7714:187::-;7879:14;;7872:22;7854:41;;7842:2;7827:18;;7809:92::o;7906:221::-;;8055:2;8044:9;8037:21;8075:46;8117:2;8106:9;8102:18;8094:6;8075:46;:::i;8132:353::-;8334:2;8316:21;;;8373:2;8353:18;;;8346:30;8412:31;8407:2;8392:18;;8385:59;8476:2;8461:18;;8306:179::o;8490:407::-;8692:2;8674:21;;;8731:2;8711:18;;;8704:30;8770:34;8765:2;8750:18;;8743:62;-1:-1:-1;;;8836:2:1;8821:18;;8814:41;8887:3;8872:19;;8664:233::o;8902:414::-;9104:2;9086:21;;;9143:2;9123:18;;;9116:30;9182:34;9177:2;9162:18;;9155:62;-1:-1:-1;;;9248:2:1;9233:18;;9226:48;9306:3;9291:19;;9076:240::o;9321:402::-;9523:2;9505:21;;;9562:2;9542:18;;;9535:30;9601:34;9596:2;9581:18;;9574:62;-1:-1:-1;;;9667:2:1;9652:18;;9645:36;9713:3;9698:19;;9495:228::o;9728:352::-;9930:2;9912:21;;;9969:2;9949:18;;;9942:30;10008;10003:2;9988:18;;9981:58;10071:2;10056:18;;9902:178::o;10085:400::-;10287:2;10269:21;;;10326:2;10306:18;;;10299:30;10365:34;10360:2;10345:18;;10338:62;-1:-1:-1;;;10431:2:1;10416:18;;10409:34;10475:3;10460:19;;10259:226::o;10490:349::-;10692:2;10674:21;;;10731:2;10711:18;;;10704:30;10770:27;10765:2;10750:18;;10743:55;10830:2;10815:18;;10664:175::o;10844:355::-;11046:2;11028:21;;;11085:2;11065:18;;;11058:30;11124:33;11119:2;11104:18;;11097:61;11190:2;11175:18;;11018:181::o;11204:351::-;11406:2;11388:21;;;11445:2;11425:18;;;11418:30;11484:29;11479:2;11464:18;;11457:57;11546:2;11531:18;;11378:177::o;11560:408::-;11762:2;11744:21;;;11801:2;11781:18;;;11774:30;11840:34;11835:2;11820:18;;11813:62;-1:-1:-1;;;11906:2:1;11891:18;;11884:42;11958:3;11943:19;;11734:234::o;11973:399::-;12175:2;12157:21;;;12214:2;12194:18;;;12187:30;12253:34;12248:2;12233:18;;12226:62;-1:-1:-1;;;12319:2:1;12304:18;;12297:33;12362:3;12347:19;;12147:225::o;12377:420::-;12579:2;12561:21;;;12618:2;12598:18;;;12591:30;12657:34;12652:2;12637:18;;12630:62;12728:26;12723:2;12708:18;;12701:54;12787:3;12772:19;;12551:246::o;12802:354::-;13004:2;12986:21;;;13043:2;13023:18;;;13016:30;13082:32;13077:2;13062:18;;13055:60;13147:2;13132:18;;12976:180::o;13161:406::-;13363:2;13345:21;;;13402:2;13382:18;;;13375:30;13441:34;13436:2;13421:18;;13414:62;-1:-1:-1;;;13507:2:1;13492:18;;13485:40;13557:3;13542:19;;13335:232::o;13572:405::-;13774:2;13756:21;;;13813:2;13793:18;;;13786:30;13852:34;13847:2;13832:18;;13825:62;-1:-1:-1;;;13918:2:1;13903:18;;13896:39;13967:3;13952:19;;13746:231::o;13982:406::-;14184:2;14166:21;;;14223:2;14203:18;;;14196:30;14262:34;14257:2;14242:18;;14235:62;-1:-1:-1;;;14328:2:1;14313:18;;14306:40;14378:3;14363:19;;14156:232::o;14393:356::-;14595:2;14577:21;;;14614:18;;;14607:30;14673:34;14668:2;14653:18;;14646:62;14740:2;14725:18;;14567:182::o;14754:408::-;14956:2;14938:21;;;14995:2;14975:18;;;14968:30;15034:34;15029:2;15014:18;;15007:62;-1:-1:-1;;;15100:2:1;15085:18;;15078:42;15152:3;15137:19;;14928:234::o;15167:356::-;15369:2;15351:21;;;15388:18;;;15381:30;15447:34;15442:2;15427:18;;15420:62;15514:2;15499:18;;15341:182::o;15528:405::-;15730:2;15712:21;;;15769:2;15749:18;;;15742:30;15808:34;15803:2;15788:18;;15781:62;-1:-1:-1;;;15874:2:1;15859:18;;15852:39;15923:3;15908:19;;15702:231::o;15938:411::-;16140:2;16122:21;;;16179:2;16159:18;;;16152:30;16218:34;16213:2;16198:18;;16191:62;-1:-1:-1;;;16284:2:1;16269:18;;16262:45;16339:3;16324:19;;16112:237::o;16354:397::-;16556:2;16538:21;;;16595:2;16575:18;;;16568:30;16634:34;16629:2;16614:18;;16607:62;-1:-1:-1;;;16700:2:1;16685:18;;16678:31;16741:3;16726:19;;16528:223::o;16756:340::-;16958:2;16940:21;;;16997:2;16977:18;;;16970:30;-1:-1:-1;;;17031:2:1;17016:18;;17009:46;17087:2;17072:18;;16930:166::o;17101:413::-;17303:2;17285:21;;;17342:2;17322:18;;;17315:30;17381:34;17376:2;17361:18;;17354:62;-1:-1:-1;;;17447:2:1;17432:18;;17425:47;17504:3;17489:19;;17275:239::o;17519:408::-;17721:2;17703:21;;;17760:2;17740:18;;;17733:30;17799:34;17794:2;17779:18;;17772:62;-1:-1:-1;;;17865:2:1;17850:18;;17843:42;17917:3;17902:19;;17693:234::o;17932:347::-;18134:2;18116:21;;;18173:2;18153:18;;;18146:30;18212:25;18207:2;18192:18;;18185:53;18270:2;18255:18;;18106:173::o;18284:177::-;18430:25;;;18418:2;18403:18;;18385:76::o;18466:128::-;;18537:1;18533:6;18530:1;18527:13;18524:2;;;18543:18;;:::i;:::-;-1:-1:-1;18579:9:1;;18514:80::o;18599:120::-;;18665:1;18655:2;;18670:18;;:::i;:::-;-1:-1:-1;18704:9:1;;18645:74::o;18724:168::-;;18830:1;18826;18822:6;18818:14;18815:1;18812:21;18807:1;18800:9;18793:17;18789:45;18786:2;;;18837:18;;:::i;:::-;-1:-1:-1;18877:9:1;;18776:116::o;18897:125::-;;18965:1;18962;18959:8;18956:2;;;18970:18;;:::i;:::-;-1:-1:-1;19007:9:1;;18946:76::o;19027:258::-;19099:1;19109:113;19123:6;19120:1;19117:13;19109:113;;;19199:11;;;19193:18;19180:11;;;19173:39;19145:2;19138:10;19109:113;;;19240:6;19237:1;19234:13;19231:2;;;-1:-1:-1;;19275:1:1;19257:16;;19250:27;19080:205::o;19290:380::-;19375:1;19365:12;;19422:1;19412:12;;;19433:2;;19487:4;19479:6;19475:17;19465:27;;19433:2;19540;19532:6;19529:14;19509:18;19506:38;19503:2;;;19586:10;19581:3;19577:20;19574:1;19567:31;19621:4;19618:1;19611:15;19649:4;19646:1;19639:15;19503:2;;19345:325;;;:::o;19675:135::-;;-1:-1:-1;;19735:17:1;;19732:2;;;19755:18;;:::i;:::-;-1:-1:-1;19802:1:1;19791:13;;19722:88::o;19815:112::-;;19873:1;19863:2;;19878:18;;:::i;:::-;-1:-1:-1;19912:9:1;;19853:74::o;19932:127::-;19993:10;19988:3;19984:20;19981:1;19974:31;20024:4;20021:1;20014:15;20048:4;20045:1;20038:15;20064:127;20125:10;20120:3;20116:20;20113:1;20106:31;20156:4;20153:1;20146:15;20180:4;20177:1;20170:15;20196:127;20257:10;20252:3;20248:20;20245:1;20238:31;20288:4;20285:1;20278:15;20312:4;20309:1;20302:15;20328:133;-1:-1:-1;;;;;;20404:32:1;;20394:43;;20384:2;;20451:1;20448;20441:12

Swarm Source

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