ETH Price: $2,941.09 (-6.06%)
Gas: 8 Gwei

Token

KittyCatNFT (KCACT)
 

Overview

Max Total Supply

9,177 KCACT

Holders

1,533

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
louiscat.eth
Balance
60 KCACT
0xDa439ba79ceC7fe1d2EcaE8A33c5405cDb258D54
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KittyCatNFT

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-10-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

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


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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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


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


abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



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


 
 
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;
    
    // metadata api
    string baseUri = "ipfs://QmNqUtjuLH2th8pdM39d9AfL2YrqWdaTkSimkUMt7uoXoj/KittyCat"; 

    /**
     * @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(),".json")) : "";
    }

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

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




 contract KittyCatNFT is ERC721, Ownable{
     
     uint256 public totalSupply = 0; // Total Supply
     uint256 private constant totalSale = 10000; // for user minting
     uint256 private constant reserved = 1000;  // for admin
     uint256 public mintPrice = 4 * 10 ** 16;  // minting price 0.04 ETH
     bool public publicSaleIsActive = false; // minting paused
     uint256 public admin_mint = 0;
     uint256 public user_mint = 0;
    
    
      modifier checkPublicSaleIsActive {
        require ( publicSaleIsActive == true, "Public Sale is not Started");
        _;
      }
     
     constructor() ERC721("KittyCatNFT", "KCACT"){}
    
    
      function mintByUser(uint256 quantity) public checkPublicSaleIsActive payable{
        
        require(quantity > 0, "Mint Quantity should be more than zero");
        require(user_mint < totalSale - reserved, "Minting End");
        require(user_mint + quantity <= totalSale - reserved, "Max Limit To Total Sale");
        require(quantity <= 10, "Exceeds Public Sale Amount");
        require(mintPrice * quantity == msg.value, "Invalid Price To Mint");
        
        (bool success,) = owner().call{value: msg.value}("");
         if(!success) {
            revert("Payment Sending Failed");
         }
         else{
             for (uint256 i=0; i < quantity; i++) {
              totalSupply++;
              user_mint++;
             _safeMint(msg.sender,totalSupply);
            }     
         }
        
     } 
     
    
    function setPublicSaleStatus() external onlyOwner {
        publicSaleIsActive = !publicSaleIsActive;
    }
    
    function setMintPrice(uint256 newPrice) external onlyOwner {
        mintPrice = newPrice;
    }
    
    function _setbaseURI(string memory _baseUri) external onlyOwner{
         baseUri = _baseUri;
    }
    
    function mintByOwner(address _to, uint256 quantity) public onlyOwner {
        require(admin_mint < reserved, "Admin Minting Limit is Exceed");
        require(admin_mint + quantity <= reserved, "Max Limit To Admin Mint");

        for (uint256 i=0; i<quantity; i++) {
             totalSupply++;
             admin_mint++;    
            _safeMint(_to,totalSupply);
        }
        
    }
    
    
    function batchMintByOwner(address[] memory mintAddressList,uint256[] memory quantityList) external onlyOwner {
        require (mintAddressList.length == quantityList.length, "The length should be same");

        for (uint256 i=0; i<mintAddressList.length; i++) {
            mintByOwner(mintAddressList[i], quantityList[i]);
        }
    }
     
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"_setbaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"mintAddressList","type":"address[]"},{"internalType":"uint256[]","name":"quantityList","type":"uint256[]"}],"name":"batchMintByOwner","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByUser","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"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":[],"name":"user_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e0604052603e6080818152906200246460a039805162000029916006916020909101906200013b565b5060006008819055668e1bc9bf040000600955600a805460ff19169055600b819055600c553480156200005b57600080fd5b50604080518082018252600b81526a12da5d1d1e50d85d13919560aa1b60208083019182528351808501909452600584526412d0d050d560da1b908401528151919291620000ac916000916200013b565b508051620000c29060019060208401906200013b565b505050620000df620000d9620000e560201b60201c565b620000e9565b6200021e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014990620001e1565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600281046001821680620001f657607f821691505b602082108114156200021857634e487b7160e01b600052602260045260246000fd5b50919050565b612236806200022e6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063db8ff1fd11610064578063db8ff1fd14610445578063e985e9c514610465578063f2fde38b14610485578063f4a0a528146104a55761019c565b8063b88d4fde146103f0578063bf22225a14610410578063c87b56dd146104255761019c565b80638da5cb5b116100c65780638da5cb5b1461039157806395d89b41146103a6578063a22cb465146103bb578063a8d81cca146103db5761019c565b806370a0823114610347578063715018a6146103675780637dfed9fe1461037c5761019c565b806323b872dd116101595780634985fb5b116101335780634985fb5b146102df5780636352211e146102ff57806366102d2d1461031f5780636817c76c146103325761019c565b806323b872dd1461027f5780633542aee21461029f57806342842e0e146102bf5761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b3146102265780630fcf2e751461024857806318160ddd1461025d575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461186c565b6104c5565b6040516101ce91906119c1565b60405180910390f35b3480156101e357600080fd5b506101ec61050d565b6040516101ce91906119cc565b34801561020557600080fd5b506102196102143660046118ea565b61059f565b6040516101ce9190611970565b34801561023257600080fd5b50610246610241366004611785565b6105eb565b005b34801561025457600080fd5b506101c1610683565b34801561026957600080fd5b5061027261068c565b6040516101ce9190612059565b34801561028b57600080fd5b5061024661029a366004611697565b610692565b3480156102ab57600080fd5b506102466102ba366004611785565b6106ca565b3480156102cb57600080fd5b506102466102da366004611697565b6107ae565b3480156102eb57600080fd5b506102466102fa3660046118a4565b6107c9565b34801561030b57600080fd5b5061021961031a3660046118ea565b61081f565b61024661032d3660046118ea565b610854565b34801561033e57600080fd5b50610272610a26565b34801561035357600080fd5b5061027261036236600461164b565b610a2c565b34801561037357600080fd5b50610246610a70565b34801561038857600080fd5b50610246610abb565b34801561039d57600080fd5b50610219610b0e565b3480156103b257600080fd5b506101ec610b1d565b3480156103c757600080fd5b506102466103d636600461174b565b610b2c565b3480156103e757600080fd5b50610272610bfa565b3480156103fc57600080fd5b5061024661040b3660046116d2565b610c00565b34801561041c57600080fd5b50610272610c3f565b34801561043157600080fd5b506101ec6104403660046118ea565b610c45565b34801561045157600080fd5b506102466104603660046117ae565b610cc8565b34801561047157600080fd5b506101c1610480366004611665565b610d9e565b34801561049157600080fd5b506102466104a036600461164b565b610dcc565b3480156104b157600080fd5b506102466104c03660046118ea565b610e3d565b60006001600160e01b031982166380ac58cd60e01b14806104f657506001600160e01b03198216635b5e139f60e01b145b80610505575061050582610e81565b90505b919050565b60606000805461051c9061213e565b80601f01602080910402602001604051908101604052809291908181526020018280546105489061213e565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610e9a565b6105cf5760405162461bcd60e51b81526004016105c690611dec565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f68261081f565b9050806001600160a01b0316836001600160a01b0316141561062a5760405162461bcd60e51b81526004016105c690611f3c565b806001600160a01b031661063c610eb7565b6001600160a01b03161480610658575061065881610480610eb7565b6106745760405162461bcd60e51b81526004016105c690611c60565b61067e8383610ebb565b505050565b600a5460ff1681565b60085481565b6106a361069d610eb7565b82610f29565b6106bf5760405162461bcd60e51b81526004016105c690611f7d565b61067e838383610fae565b6106d2610eb7565b6001600160a01b03166106e3610b0e565b6001600160a01b0316146107095760405162461bcd60e51b81526004016105c690611e38565b6103e8600b541061072c5760405162461bcd60e51b81526004016105c690611bdd565b6103e881600b5461073d91906120b0565b111561075b5760405162461bcd60e51b81526004016105c6906119df565b60005b8181101561067e576008805490600061077683612179565b9091555050600b805490600061078b83612179565b919050555061079c836008546110db565b806107a681612179565b91505061075e565b61067e83838360405180602001604052806000815250610c00565b6107d1610eb7565b6001600160a01b03166107e2610b0e565b6001600160a01b0316146108085760405162461bcd60e51b81526004016105c690611e38565b805161081b9060069060208401906114d7565b5050565b6000818152600260205260408120546001600160a01b0316806105055760405162461bcd60e51b81526004016105c690611d37565b600a5460ff16151560011461087b5760405162461bcd60e51b81526004016105c690611ff3565b6000811161089b5760405162461bcd60e51b81526004016105c690611b1c565b6108a96103e86127106120fb565b600c54106108c95760405162461bcd60e51b81526004016105c690611fce565b6108d76103e86127106120fb565b81600c546108e591906120b0565b11156109035760405162461bcd60e51b81526004016105c690611e6d565b600a8111156109245760405162461bcd60e51b81526004016105c690611a68565b348160095461093391906120dc565b146109505760405162461bcd60e51b81526004016105c69061202a565b600061095a610b0e565b6001600160a01b0316346040516109709061196d565b60006040518083038185875af1925050503d80600081146109ad576040519150601f19603f3d011682016040523d82523d6000602084013e6109b2565b606091505b50509050806109d35760405162461bcd60e51b81526004016105c690611d07565b60005b8281101561067e57600880549060006109ee83612179565b9091555050600c8054906000610a0383612179565b9190505550610a14336008546110db565b80610a1e81612179565b9150506109d6565b60095481565b60006001600160a01b038216610a545760405162461bcd60e51b81526004016105c690611cbd565b506001600160a01b031660009081526003602052604090205490565b610a78610eb7565b6001600160a01b0316610a89610b0e565b6001600160a01b031614610aaf5760405162461bcd60e51b81526004016105c690611e38565b610ab960006110f5565b565b610ac3610eb7565b6001600160a01b0316610ad4610b0e565b6001600160a01b031614610afa5760405162461bcd60e51b81526004016105c690611e38565b600a805460ff19811660ff90911615179055565b6007546001600160a01b031690565b60606001805461051c9061213e565b610b34610eb7565b6001600160a01b0316826001600160a01b03161415610b655760405162461bcd60e51b81526004016105c690611ba6565b8060056000610b72610eb7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bb6610eb7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bee91906119c1565b60405180910390a35050565b600c5481565b610c11610c0b610eb7565b83610f29565b610c2d5760405162461bcd60e51b81526004016105c690611f7d565b610c3984848484611147565b50505050565b600b5481565b6060610c5082610e9a565b610c6c5760405162461bcd60e51b81526004016105c690611eed565b6000610c7661117a565b90506000815111610c965760405180602001604052806000815250610cc1565b80610ca084611189565b604051602001610cb192919061192e565b6040516020818303038152906040525b9392505050565b610cd0610eb7565b6001600160a01b0316610ce1610b0e565b6001600160a01b031614610d075760405162461bcd60e51b81526004016105c690611e38565b8051825114610d285760405162461bcd60e51b81526004016105c690611d80565b60005b825181101561067e57610d8c838281518110610d5757634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110610d7f57634e487b7160e01b600052603260045260246000fd5b60200260200101516106ca565b80610d9681612179565b915050610d2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dd4610eb7565b6001600160a01b0316610de5610b0e565b6001600160a01b031614610e0b5760405162461bcd60e51b81526004016105c690611e38565b6001600160a01b038116610e315760405162461bcd60e51b81526004016105c690611a9f565b610e3a816110f5565b50565b610e45610eb7565b6001600160a01b0316610e56610b0e565b6001600160a01b031614610e7c5760405162461bcd60e51b81526004016105c690611e38565b600955565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ef08261081f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f3482610e9a565b610f505760405162461bcd60e51b81526004016105c690611c14565b6000610f5b8361081f565b9050806001600160a01b0316846001600160a01b03161480610f965750836001600160a01b0316610f8b8461059f565b6001600160a01b0316145b80610fa65750610fa68185610d9e565b949350505050565b826001600160a01b0316610fc18261081f565b6001600160a01b031614610fe75760405162461bcd60e51b81526004016105c690611ea4565b6001600160a01b03821661100d5760405162461bcd60e51b81526004016105c690611b62565b61101883838361067e565b611023600082610ebb565b6001600160a01b038316600090815260036020526040812080546001929061104c9084906120fb565b90915550506001600160a01b038216600090815260036020526040812080546001929061107a9084906120b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61081b8282604051806020016040528060008152506112a4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611152848484610fae565b61115e848484846112d7565b610c395760405162461bcd60e51b81526004016105c690611a16565b60606006805461051c9061213e565b6060816111ae57506040805180820190915260018152600360fc1b6020820152610508565b8160005b81156111d857806111c281612179565b91506111d19050600a836120c8565b91506111b2565b60008167ffffffffffffffff81111561120157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561122b576020820181803683370190505b5090505b8415610fa6576112406001836120fb565b915061124d600a86612194565b6112589060306120b0565b60f81b81838151811061127b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061129d600a866120c8565b945061122f565b6112ae83836113f2565b6112bb60008484846112d7565b61067e5760405162461bcd60e51b81526004016105c690611a16565b60006112eb846001600160a01b03166114d1565b156113e757836001600160a01b031663150b7a02611307610eb7565b8786866040518563ffffffff1660e01b81526004016113299493929190611984565b602060405180830381600087803b15801561134357600080fd5b505af1925050508015611373575060408051601f3d908101601f1916820190925261137091810190611888565b60015b6113cd573d8080156113a1576040519150601f19603f3d011682016040523d82523d6000602084013e6113a6565b606091505b5080516113c55760405162461bcd60e51b81526004016105c690611a16565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa6565b506001949350505050565b6001600160a01b0382166114185760405162461bcd60e51b81526004016105c690611db7565b61142181610e9a565b1561143e5760405162461bcd60e51b81526004016105c690611ae5565b61144a6000838361067e565b6001600160a01b03821660009081526003602052604081208054600192906114739084906120b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546114e39061213e565b90600052602060002090601f016020900481019282611505576000855561154b565b82601f1061151e57805160ff191683800117855561154b565b8280016001018555821561154b579182015b8281111561154b578251825591602001919060010190611530565b5061155792915061155b565b5090565b5b80821115611557576000815560010161155c565b600067ffffffffffffffff83111561158a5761158a6121d4565b61159d601f8401601f1916602001612062565b90508281528383830111156115b157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461050857600080fd5b600082601f8301126115ef578081fd5b813560206116046115ff8361208c565b612062565b8281528181019085830183850287018401881015611620578586fd5b855b8581101561163e57813584529284019290840190600101611622565b5090979650505050505050565b60006020828403121561165c578081fd5b610cc1826115c8565b60008060408385031215611677578081fd5b611680836115c8565b915061168e602084016115c8565b90509250929050565b6000806000606084860312156116ab578081fd5b6116b4846115c8565b92506116c2602085016115c8565b9150604084013590509250925092565b600080600080608085870312156116e7578081fd5b6116f0856115c8565b93506116fe602086016115c8565b925060408501359150606085013567ffffffffffffffff811115611720578182fd5b8501601f81018713611730578182fd5b61173f87823560208401611570565b91505092959194509250565b6000806040838503121561175d578182fd5b611766836115c8565b91506020830135801515811461177a578182fd5b809150509250929050565b60008060408385031215611797578182fd5b6117a0836115c8565b946020939093013593505050565b600080604083850312156117c0578182fd5b823567ffffffffffffffff808211156117d7578384fd5b818501915085601f8301126117ea578384fd5b813560206117fa6115ff8361208c565b82815281810190858301838502870184018b1015611816578889fd5b8896505b8487101561183f5761182b816115c8565b83526001969096019591830191830161181a565b5096505086013592505080821115611855578283fd5b50611862858286016115df565b9150509250929050565b60006020828403121561187d578081fd5b8135610cc1816121ea565b600060208284031215611899578081fd5b8151610cc1816121ea565b6000602082840312156118b5578081fd5b813567ffffffffffffffff8111156118cb578182fd5b8201601f810184136118db578182fd5b610fa684823560208401611570565b6000602082840312156118fb578081fd5b5035919050565b6000815180845261191a816020860160208601612112565b601f01601f19169290920160200192915050565b60008351611940818460208801612112565b835190830190611954818360208801612112565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b790830184611902565b9695505050505050565b901515815260200190565b600060208252610cc16020830184611902565b60208082526017908201527f4d6178204c696d697420546f2041646d696e204d696e74000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f45786365656473205075626c69632053616c6520416d6f756e74000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526026908201527f4d696e74205175616e746974792073686f756c64206265206d6f7265207468616040820152656e207a65726f60d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f41646d696e204d696e74696e67204c696d697420697320457863656564000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526016908201527514185e5b595b9d0814d95b991a5b99c811985a5b195960521b604082015260600190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f546865206c656e6774682073686f756c642062652073616d6500000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4d6178204c696d697420546f20546f74616c2053616c65000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600b908201526a135a5b9d1a5b99c8115b9960aa1b604082015260600190565b6020808252601a908201527f5075626c69632053616c65206973206e6f742053746172746564000000000000604082015260600190565b602080825260159082015274125b9d985b1a5908141c9a58d948151bc8135a5b9d605a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612084576120846121d4565b604052919050565b600067ffffffffffffffff8211156120a6576120a66121d4565b5060209081020190565b600082198211156120c3576120c36121a8565b500190565b6000826120d7576120d76121be565b500490565b60008160001904831182151516156120f6576120f66121a8565b500290565b60008282101561210d5761210d6121a8565b500390565b60005b8381101561212d578181015183820152602001612115565b83811115610c395750506000910152565b60028104600182168061215257607f821691505b6020821081141561217357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561218d5761218d6121a8565b5060010190565b6000826121a3576121a36121be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3a57600080fdfea2646970667358221220774e2e98d5d30a9dffd0f65cb6063cf157bc2b4c9c5aa2cd059742d0bb22ef7a64736f6c63430008000033697066733a2f2f516d4e7155746a754c483274683870644d3339643941664c32597271576461546b53696d6b554d7437756f586f6a2f4b69747479436174

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063db8ff1fd11610064578063db8ff1fd14610445578063e985e9c514610465578063f2fde38b14610485578063f4a0a528146104a55761019c565b8063b88d4fde146103f0578063bf22225a14610410578063c87b56dd146104255761019c565b80638da5cb5b116100c65780638da5cb5b1461039157806395d89b41146103a6578063a22cb465146103bb578063a8d81cca146103db5761019c565b806370a0823114610347578063715018a6146103675780637dfed9fe1461037c5761019c565b806323b872dd116101595780634985fb5b116101335780634985fb5b146102df5780636352211e146102ff57806366102d2d1461031f5780636817c76c146103325761019c565b806323b872dd1461027f5780633542aee21461029f57806342842e0e146102bf5761019c565b806301ffc9a7146101a157806306fdde03146101d7578063081812fc146101f9578063095ea7b3146102265780630fcf2e751461024857806318160ddd1461025d575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461186c565b6104c5565b6040516101ce91906119c1565b60405180910390f35b3480156101e357600080fd5b506101ec61050d565b6040516101ce91906119cc565b34801561020557600080fd5b506102196102143660046118ea565b61059f565b6040516101ce9190611970565b34801561023257600080fd5b50610246610241366004611785565b6105eb565b005b34801561025457600080fd5b506101c1610683565b34801561026957600080fd5b5061027261068c565b6040516101ce9190612059565b34801561028b57600080fd5b5061024661029a366004611697565b610692565b3480156102ab57600080fd5b506102466102ba366004611785565b6106ca565b3480156102cb57600080fd5b506102466102da366004611697565b6107ae565b3480156102eb57600080fd5b506102466102fa3660046118a4565b6107c9565b34801561030b57600080fd5b5061021961031a3660046118ea565b61081f565b61024661032d3660046118ea565b610854565b34801561033e57600080fd5b50610272610a26565b34801561035357600080fd5b5061027261036236600461164b565b610a2c565b34801561037357600080fd5b50610246610a70565b34801561038857600080fd5b50610246610abb565b34801561039d57600080fd5b50610219610b0e565b3480156103b257600080fd5b506101ec610b1d565b3480156103c757600080fd5b506102466103d636600461174b565b610b2c565b3480156103e757600080fd5b50610272610bfa565b3480156103fc57600080fd5b5061024661040b3660046116d2565b610c00565b34801561041c57600080fd5b50610272610c3f565b34801561043157600080fd5b506101ec6104403660046118ea565b610c45565b34801561045157600080fd5b506102466104603660046117ae565b610cc8565b34801561047157600080fd5b506101c1610480366004611665565b610d9e565b34801561049157600080fd5b506102466104a036600461164b565b610dcc565b3480156104b157600080fd5b506102466104c03660046118ea565b610e3d565b60006001600160e01b031982166380ac58cd60e01b14806104f657506001600160e01b03198216635b5e139f60e01b145b80610505575061050582610e81565b90505b919050565b60606000805461051c9061213e565b80601f01602080910402602001604051908101604052809291908181526020018280546105489061213e565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610e9a565b6105cf5760405162461bcd60e51b81526004016105c690611dec565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f68261081f565b9050806001600160a01b0316836001600160a01b0316141561062a5760405162461bcd60e51b81526004016105c690611f3c565b806001600160a01b031661063c610eb7565b6001600160a01b03161480610658575061065881610480610eb7565b6106745760405162461bcd60e51b81526004016105c690611c60565b61067e8383610ebb565b505050565b600a5460ff1681565b60085481565b6106a361069d610eb7565b82610f29565b6106bf5760405162461bcd60e51b81526004016105c690611f7d565b61067e838383610fae565b6106d2610eb7565b6001600160a01b03166106e3610b0e565b6001600160a01b0316146107095760405162461bcd60e51b81526004016105c690611e38565b6103e8600b541061072c5760405162461bcd60e51b81526004016105c690611bdd565b6103e881600b5461073d91906120b0565b111561075b5760405162461bcd60e51b81526004016105c6906119df565b60005b8181101561067e576008805490600061077683612179565b9091555050600b805490600061078b83612179565b919050555061079c836008546110db565b806107a681612179565b91505061075e565b61067e83838360405180602001604052806000815250610c00565b6107d1610eb7565b6001600160a01b03166107e2610b0e565b6001600160a01b0316146108085760405162461bcd60e51b81526004016105c690611e38565b805161081b9060069060208401906114d7565b5050565b6000818152600260205260408120546001600160a01b0316806105055760405162461bcd60e51b81526004016105c690611d37565b600a5460ff16151560011461087b5760405162461bcd60e51b81526004016105c690611ff3565b6000811161089b5760405162461bcd60e51b81526004016105c690611b1c565b6108a96103e86127106120fb565b600c54106108c95760405162461bcd60e51b81526004016105c690611fce565b6108d76103e86127106120fb565b81600c546108e591906120b0565b11156109035760405162461bcd60e51b81526004016105c690611e6d565b600a8111156109245760405162461bcd60e51b81526004016105c690611a68565b348160095461093391906120dc565b146109505760405162461bcd60e51b81526004016105c69061202a565b600061095a610b0e565b6001600160a01b0316346040516109709061196d565b60006040518083038185875af1925050503d80600081146109ad576040519150601f19603f3d011682016040523d82523d6000602084013e6109b2565b606091505b50509050806109d35760405162461bcd60e51b81526004016105c690611d07565b60005b8281101561067e57600880549060006109ee83612179565b9091555050600c8054906000610a0383612179565b9190505550610a14336008546110db565b80610a1e81612179565b9150506109d6565b60095481565b60006001600160a01b038216610a545760405162461bcd60e51b81526004016105c690611cbd565b506001600160a01b031660009081526003602052604090205490565b610a78610eb7565b6001600160a01b0316610a89610b0e565b6001600160a01b031614610aaf5760405162461bcd60e51b81526004016105c690611e38565b610ab960006110f5565b565b610ac3610eb7565b6001600160a01b0316610ad4610b0e565b6001600160a01b031614610afa5760405162461bcd60e51b81526004016105c690611e38565b600a805460ff19811660ff90911615179055565b6007546001600160a01b031690565b60606001805461051c9061213e565b610b34610eb7565b6001600160a01b0316826001600160a01b03161415610b655760405162461bcd60e51b81526004016105c690611ba6565b8060056000610b72610eb7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bb6610eb7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bee91906119c1565b60405180910390a35050565b600c5481565b610c11610c0b610eb7565b83610f29565b610c2d5760405162461bcd60e51b81526004016105c690611f7d565b610c3984848484611147565b50505050565b600b5481565b6060610c5082610e9a565b610c6c5760405162461bcd60e51b81526004016105c690611eed565b6000610c7661117a565b90506000815111610c965760405180602001604052806000815250610cc1565b80610ca084611189565b604051602001610cb192919061192e565b6040516020818303038152906040525b9392505050565b610cd0610eb7565b6001600160a01b0316610ce1610b0e565b6001600160a01b031614610d075760405162461bcd60e51b81526004016105c690611e38565b8051825114610d285760405162461bcd60e51b81526004016105c690611d80565b60005b825181101561067e57610d8c838281518110610d5757634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110610d7f57634e487b7160e01b600052603260045260246000fd5b60200260200101516106ca565b80610d9681612179565b915050610d2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610dd4610eb7565b6001600160a01b0316610de5610b0e565b6001600160a01b031614610e0b5760405162461bcd60e51b81526004016105c690611e38565b6001600160a01b038116610e315760405162461bcd60e51b81526004016105c690611a9f565b610e3a816110f5565b50565b610e45610eb7565b6001600160a01b0316610e56610b0e565b6001600160a01b031614610e7c5760405162461bcd60e51b81526004016105c690611e38565b600955565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ef08261081f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f3482610e9a565b610f505760405162461bcd60e51b81526004016105c690611c14565b6000610f5b8361081f565b9050806001600160a01b0316846001600160a01b03161480610f965750836001600160a01b0316610f8b8461059f565b6001600160a01b0316145b80610fa65750610fa68185610d9e565b949350505050565b826001600160a01b0316610fc18261081f565b6001600160a01b031614610fe75760405162461bcd60e51b81526004016105c690611ea4565b6001600160a01b03821661100d5760405162461bcd60e51b81526004016105c690611b62565b61101883838361067e565b611023600082610ebb565b6001600160a01b038316600090815260036020526040812080546001929061104c9084906120fb565b90915550506001600160a01b038216600090815260036020526040812080546001929061107a9084906120b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61081b8282604051806020016040528060008152506112a4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611152848484610fae565b61115e848484846112d7565b610c395760405162461bcd60e51b81526004016105c690611a16565b60606006805461051c9061213e565b6060816111ae57506040805180820190915260018152600360fc1b6020820152610508565b8160005b81156111d857806111c281612179565b91506111d19050600a836120c8565b91506111b2565b60008167ffffffffffffffff81111561120157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561122b576020820181803683370190505b5090505b8415610fa6576112406001836120fb565b915061124d600a86612194565b6112589060306120b0565b60f81b81838151811061127b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061129d600a866120c8565b945061122f565b6112ae83836113f2565b6112bb60008484846112d7565b61067e5760405162461bcd60e51b81526004016105c690611a16565b60006112eb846001600160a01b03166114d1565b156113e757836001600160a01b031663150b7a02611307610eb7565b8786866040518563ffffffff1660e01b81526004016113299493929190611984565b602060405180830381600087803b15801561134357600080fd5b505af1925050508015611373575060408051601f3d908101601f1916820190925261137091810190611888565b60015b6113cd573d8080156113a1576040519150601f19603f3d011682016040523d82523d6000602084013e6113a6565b606091505b5080516113c55760405162461bcd60e51b81526004016105c690611a16565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa6565b506001949350505050565b6001600160a01b0382166114185760405162461bcd60e51b81526004016105c690611db7565b61142181610e9a565b1561143e5760405162461bcd60e51b81526004016105c690611ae5565b61144a6000838361067e565b6001600160a01b03821660009081526003602052604081208054600192906114739084906120b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546114e39061213e565b90600052602060002090601f016020900481019282611505576000855561154b565b82601f1061151e57805160ff191683800117855561154b565b8280016001018555821561154b579182015b8281111561154b578251825591602001919060010190611530565b5061155792915061155b565b5090565b5b80821115611557576000815560010161155c565b600067ffffffffffffffff83111561158a5761158a6121d4565b61159d601f8401601f1916602001612062565b90508281528383830111156115b157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461050857600080fd5b600082601f8301126115ef578081fd5b813560206116046115ff8361208c565b612062565b8281528181019085830183850287018401881015611620578586fd5b855b8581101561163e57813584529284019290840190600101611622565b5090979650505050505050565b60006020828403121561165c578081fd5b610cc1826115c8565b60008060408385031215611677578081fd5b611680836115c8565b915061168e602084016115c8565b90509250929050565b6000806000606084860312156116ab578081fd5b6116b4846115c8565b92506116c2602085016115c8565b9150604084013590509250925092565b600080600080608085870312156116e7578081fd5b6116f0856115c8565b93506116fe602086016115c8565b925060408501359150606085013567ffffffffffffffff811115611720578182fd5b8501601f81018713611730578182fd5b61173f87823560208401611570565b91505092959194509250565b6000806040838503121561175d578182fd5b611766836115c8565b91506020830135801515811461177a578182fd5b809150509250929050565b60008060408385031215611797578182fd5b6117a0836115c8565b946020939093013593505050565b600080604083850312156117c0578182fd5b823567ffffffffffffffff808211156117d7578384fd5b818501915085601f8301126117ea578384fd5b813560206117fa6115ff8361208c565b82815281810190858301838502870184018b1015611816578889fd5b8896505b8487101561183f5761182b816115c8565b83526001969096019591830191830161181a565b5096505086013592505080821115611855578283fd5b50611862858286016115df565b9150509250929050565b60006020828403121561187d578081fd5b8135610cc1816121ea565b600060208284031215611899578081fd5b8151610cc1816121ea565b6000602082840312156118b5578081fd5b813567ffffffffffffffff8111156118cb578182fd5b8201601f810184136118db578182fd5b610fa684823560208401611570565b6000602082840312156118fb578081fd5b5035919050565b6000815180845261191a816020860160208601612112565b601f01601f19169290920160200192915050565b60008351611940818460208801612112565b835190830190611954818360208801612112565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b790830184611902565b9695505050505050565b901515815260200190565b600060208252610cc16020830184611902565b60208082526017908201527f4d6178204c696d697420546f2041646d696e204d696e74000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f45786365656473205075626c69632053616c6520416d6f756e74000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526026908201527f4d696e74205175616e746974792073686f756c64206265206d6f7265207468616040820152656e207a65726f60d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f41646d696e204d696e74696e67204c696d697420697320457863656564000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526016908201527514185e5b595b9d0814d95b991a5b99c811985a5b195960521b604082015260600190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f546865206c656e6774682073686f756c642062652073616d6500000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4d6178204c696d697420546f20546f74616c2053616c65000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600b908201526a135a5b9d1a5b99c8115b9960aa1b604082015260600190565b6020808252601a908201527f5075626c69632053616c65206973206e6f742053746172746564000000000000604082015260600190565b602080825260159082015274125b9d985b1a5908141c9a58d948151bc8135a5b9d605a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612084576120846121d4565b604052919050565b600067ffffffffffffffff8211156120a6576120a66121d4565b5060209081020190565b600082198211156120c3576120c36121a8565b500190565b6000826120d7576120d76121be565b500490565b60008160001904831182151516156120f6576120f66121a8565b500290565b60008282101561210d5761210d6121a8565b500390565b60005b8381101561212d578181015183820152602001612115565b83811115610c395750506000910152565b60028104600182168061215257607f821691505b6020821081141561217357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561218d5761218d6121a8565b5060010190565b6000826121a3576121a36121be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3a57600080fdfea2646970667358221220774e2e98d5d30a9dffd0f65cb6063cf157bc2b4c9c5aa2cd059742d0bb22ef7a64736f6c63430008000033

Deployed Bytecode Sourcemap

32178:2668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20007:305;;;;;;;;;;-1:-1:-1;20007:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20952:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22536:221::-;;;;;;;;;;-1:-1:-1;22536:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22059:411::-;;;;;;;;;;-1:-1:-1;22059:411:0;;;;;:::i;:::-;;:::i;:::-;;32492:38;;;;;;;;;;;;;:::i;32232:30::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23426:339::-;;;;;;;;;;-1:-1:-1;23426:339:0;;;;;:::i;:::-;;:::i;34063:402::-;;;;;;;;;;-1:-1:-1;34063:402:0;;;;;:::i;:::-;;:::i;23836:185::-;;;;;;;;;;-1:-1:-1;23836:185:0;;;;;:::i;:::-;;:::i;33950:101::-;;;;;;;;;;-1:-1:-1;33950:101:0;;;;;:::i;:::-;;:::i;20646:239::-;;;;;;;;;;-1:-1:-1;20646:239:0;;;;;:::i;:::-;;:::i;32855:844::-;;;;;;:::i;:::-;;:::i;32418:39::-;;;;;;;;;;;;;:::i;20376:208::-;;;;;;;;;;-1:-1:-1;20376:208:0;;;;;:::i;:::-;;:::i;10279:103::-;;;;;;;;;;;;;:::i;33719:109::-;;;;;;;;;;;;;:::i;9628:87::-;;;;;;;;;;;;;:::i;21121:104::-;;;;;;;;;;;;;:::i;22829:295::-;;;;;;;;;;-1:-1:-1;22829:295:0;;;;;:::i;:::-;;:::i;32593:28::-;;;;;;;;;;;;;:::i;24092:328::-;;;;;;;;;;-1:-1:-1;24092:328:0;;;;;:::i;:::-;;:::i;32556:29::-;;;;;;;;;;;;;:::i;21302:342::-;;;;;;;;;;-1:-1:-1;21302:342:0;;;;;:::i;:::-;;:::i;34483:348::-;;;;;;;;;;-1:-1:-1;34483:348:0;;;;;:::i;:::-;;:::i;23195:164::-;;;;;;;;;;-1:-1:-1;23195:164:0;;;;;:::i;:::-;;:::i;10537:201::-;;;;;;;;;;-1:-1:-1;10537:201:0;;;;;:::i;:::-;;:::i;33840:98::-;;;;;;;;;;-1:-1:-1;33840:98:0;;;;;:::i;:::-;;:::i;20007:305::-;20109:4;-1:-1:-1;;;;;;20146:40:0;;-1:-1:-1;;;20146:40:0;;:105;;-1:-1:-1;;;;;;;20203:48:0;;-1:-1:-1;;;20203:48:0;20146:105;:158;;;;20268:36;20292:11;20268:23;:36::i;:::-;20126:178;;20007:305;;;;:::o;20952:100::-;21006:13;21039:5;21032:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20952:100;:::o;22536:221::-;22612:7;22640:16;22648:7;22640;:16::i;:::-;22632:73;;;;-1:-1:-1;;;22632:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22725:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22725:24:0;;22536:221::o;22059:411::-;22140:13;22156:23;22171:7;22156:14;:23::i;:::-;22140:39;;22204:5;-1:-1:-1;;;;;22198:11:0;:2;-1:-1:-1;;;;;22198:11:0;;;22190:57;;;;-1:-1:-1;;;22190:57:0;;;;;;;:::i;:::-;22298:5;-1:-1:-1;;;;;22282:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22282:21:0;;:62;;;;22307:37;22324:5;22331:12;:10;:12::i;22307:37::-;22260:168;;;;-1:-1:-1;;;22260:168:0;;;;;;;:::i;:::-;22441:21;22450:2;22454:7;22441:8;:21::i;:::-;22059:411;;;:::o;32492:38::-;;;;;;:::o;32232:30::-;;;;:::o;23426:339::-;23621:41;23640:12;:10;:12::i;:::-;23654:7;23621:18;:41::i;:::-;23613:103;;;;-1:-1:-1;;;23613:103:0;;;;;;;:::i;:::-;23729:28;23739:4;23745:2;23749:7;23729:9;:28::i;34063:402::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;32392:4:::1;34151:10;;:21;34143:63;;;;-1:-1:-1::0;;;34143:63:0::1;;;;;;;:::i;:::-;32392:4;34238:8;34225:10;;:21;;;;:::i;:::-;:33;;34217:69;;;;-1:-1:-1::0;;;34217:69:0::1;;;;;;;:::i;:::-;34304:9;34299:149;34319:8;34317:1;:10;34299:149;;;34350:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;34379:10:0::1;:12:::0;;;:10:::1;:12;::::0;::::1;:::i;:::-;;;;;;34410:26;34420:3;34424:11;;34410:9;:26::i;:::-;34329:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34299:149;;23836:185:::0;23974:39;23991:4;23997:2;24001:7;23974:39;;;;;;;;;;;;:16;:39::i;33950:101::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;34025:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;33950:101:::0;:::o;20646:239::-;20718:7;20754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20754:16:0;20789:19;20781:73;;;;-1:-1:-1;;;20781:73:0;;;;;;;:::i;32855:844::-;32696:18;;;;:26;;:18;:26;32686:67;;;;-1:-1:-1;;;32686:67:0;;;;;;;:::i;:::-;32971:1:::1;32960:8;:12;32952:63;;;;-1:-1:-1::0;;;32952:63:0::1;;;;;;;:::i;:::-;33046:20;32392:4;32323:5;33046:20;:::i;:::-;33034:9;;:32;33026:56;;;;-1:-1:-1::0;;;33026:56:0::1;;;;;;;:::i;:::-;33125:20;32392:4;32323:5;33125:20;:::i;:::-;33113:8;33101:9;;:20;;;;:::i;:::-;:44;;33093:80;;;;-1:-1:-1::0;;;33093:80:0::1;;;;;;;:::i;:::-;33204:2;33192:8;:14;;33184:53;;;;-1:-1:-1::0;;;33184:53:0::1;;;;;;;:::i;:::-;33280:9;33268:8;33256:9;;:20;;;;:::i;:::-;:33;33248:67;;;;-1:-1:-1::0;;;33248:67:0::1;;;;;;;:::i;:::-;33337:12;33354:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;33354:12:0::1;33374:9;33354:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33336:52;;;33404:7;33400:281;;33428:32;;-1:-1:-1::0;;;33428:32:0::1;;;;;;;:::i;33400:281::-;33509:9;33504:160;33526:8;33522:1;:12;33504:160;;;33558:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;33588:9:0::1;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;;;;;;33615:33;33625:10;33636:11;;33615:9;:33::i;:::-;33536:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33504:160;;32418:39:::0;;;;:::o;20376:208::-;20448:7;-1:-1:-1;;;;;20476:19:0;;20468:74;;;;-1:-1:-1;;;20468:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20560:16:0;;;;;:9;:16;;;;;;;20376:208::o;10279:103::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;10344:30:::1;10371:1;10344:18;:30::i;:::-;10279:103::o:0;33719:109::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;33802:18:::1;::::0;;-1:-1:-1;;33780:40:0;::::1;33802:18;::::0;;::::1;33801:19;33780:40;::::0;;33719:109::o;9628:87::-;9701:6;;-1:-1:-1;;;;;9701:6:0;9628:87;:::o;21121:104::-;21177:13;21210:7;21203:14;;;;;:::i;22829:295::-;22944:12;:10;:12::i;:::-;-1:-1:-1;;;;;22932:24:0;:8;-1:-1:-1;;;;;22932:24:0;;;22924:62;;;;-1:-1:-1;;;22924:62:0;;;;;;;:::i;:::-;23044:8;22999:18;:32;23018:12;:10;:12::i;:::-;-1:-1:-1;;;;;22999:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22999:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22999:53:0;;;;;;;;;;;23083:12;:10;:12::i;:::-;-1:-1:-1;;;;;23068:48:0;;23107:8;23068:48;;;;;;:::i;:::-;;;;;;;;22829:295;;:::o;32593:28::-;;;;:::o;24092:328::-;24267:41;24286:12;:10;:12::i;:::-;24300:7;24267:18;:41::i;:::-;24259:103;;;;-1:-1:-1;;;24259:103:0;;;;;;;:::i;:::-;24373:39;24387:4;24393:2;24397:7;24406:5;24373:13;:39::i;:::-;24092:328;;;;:::o;32556:29::-;;;;:::o;21302:342::-;21375:13;21409:16;21417:7;21409;:16::i;:::-;21401:76;;;;-1:-1:-1;;;21401:76:0;;;;;;;:::i;:::-;21490:21;21514:10;:8;:10::i;:::-;21490:34;;21566:1;21548:7;21542:21;:25;:94;;;;;;;;;;;;;;;;;21594:7;21603:18;:7;:16;:18::i;:::-;21577:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21542:94;21535:101;21302:342;-1:-1:-1;;;21302:342:0:o;34483:348::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;34638:12:::1;:19;34612:15;:22;:45;34603:84;;;;-1:-1:-1::0;;;34603:84:0::1;;;;;;;:::i;:::-;34705:9;34700:124;34720:15;:22;34718:1;:24;34700:124;;;34764:48;34776:15;34792:1;34776:18;;;;;;-1:-1:-1::0;;;34776:18:0::1;;;;;;;;;;;;;;;34796:12;34809:1;34796:15;;;;;;-1:-1:-1::0;;;34796:15:0::1;;;;;;;;;;;;;;;34764:11;:48::i;:::-;34744:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34700:124;;23195:164:::0;-1:-1:-1;;;;;23316:25:0;;;23292:4;23316:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23195:164::o;10537:201::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10626:22:0;::::1;10618:73;;;;-1:-1:-1::0;;;10618:73:0::1;;;;;;;:::i;:::-;10702:28;10721:8;10702:18;:28::i;:::-;10537:201:::0;:::o;33840:98::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;33910:9:::1;:20:::0;33840:98::o;13617:157::-;-1:-1:-1;;;;;;13726:40:0;;-1:-1:-1;;;13726:40:0;13617:157;;;:::o;25930:127::-;25995:4;26019:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26019:16:0;:30;;;25930:127::o;9000:98::-;9080:10;9000:98;:::o;29928:174::-;30003:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30003:29:0;-1:-1:-1;;;;;30003:29:0;;;;;;;;:24;;30057:23;30003:24;30057:14;:23::i;:::-;-1:-1:-1;;;;;30048:46:0;;;;;;;;;;;29928:174;;:::o;26224:348::-;26317:4;26342:16;26350:7;26342;:16::i;:::-;26334:73;;;;-1:-1:-1;;;26334:73:0;;;;;;;:::i;:::-;26418:13;26434:23;26449:7;26434:14;:23::i;:::-;26418:39;;26487:5;-1:-1:-1;;;;;26476:16:0;:7;-1:-1:-1;;;;;26476:16:0;;:51;;;;26520:7;-1:-1:-1;;;;;26496:31:0;:20;26508:7;26496:11;:20::i;:::-;-1:-1:-1;;;;;26496:31:0;;26476:51;:87;;;;26531:32;26548:5;26555:7;26531:16;:32::i;:::-;26468:96;26224:348;-1:-1:-1;;;;26224:348:0:o;29220:578::-;29379:4;-1:-1:-1;;;;;29352:31:0;:23;29367:7;29352:14;:23::i;:::-;-1:-1:-1;;;;;29352:31:0;;29344:85;;;;-1:-1:-1;;;29344:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29448:16:0;;29440:65;;;;-1:-1:-1;;;29440:65:0;;;;;;;:::i;:::-;29518:39;29539:4;29545:2;29549:7;29518:20;:39::i;:::-;29622:29;29639:1;29643:7;29622:8;:29::i;:::-;-1:-1:-1;;;;;29664:15:0;;;;;;:9;:15;;;;;:20;;29683:1;;29664:15;:20;;29683:1;;29664:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29695:13:0;;;;;;:9;:13;;;;;:18;;29712:1;;29695:13;:18;;29712:1;;29695:18;:::i;:::-;;;;-1:-1:-1;;29724:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29724:21:0;-1:-1:-1;;;;;29724:21:0;;;;;;;;;29763:27;;29724:16;;29763:27;;;;;;;29220:578;;;:::o;26914:110::-;26990:26;27000:2;27004:7;26990:26;;;;;;;;;;;;:9;:26::i;10898:191::-;10991:6;;;-1:-1:-1;;;;;11008:17:0;;;-1:-1:-1;;;;;;11008:17:0;;;;;;;11041:40;;10991:6;;;11008:17;10991:6;;11041:40;;10972:16;;11041:40;10898:191;;:::o;25302:315::-;25459:28;25469:4;25475:2;25479:7;25459:9;:28::i;:::-;25506:48;25529:4;25535:2;25539:7;25548:5;25506:22;:48::i;:::-;25498:111;;;;-1:-1:-1;;;25498:111:0;;;;;;;:::i;21892:99::-;21943:13;21976:7;21969:14;;;;;:::i;11286:723::-;11342:13;11563:10;11559:53;;-1:-1:-1;11590:10:0;;;;;;;;;;;;-1:-1:-1;;;11590:10:0;;;;;;11559:53;11637:5;11622:12;11678:78;11685:9;;11678:78;;11711:8;;;;:::i;:::-;;-1:-1:-1;11734:10:0;;-1:-1:-1;11742:2:0;11734:10;;:::i;:::-;;;11678:78;;;11766:19;11798:6;11788:17;;;;;;-1:-1:-1;;;11788:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11788:17:0;;11766:39;;11816:154;11823:10;;11816:154;;11850:11;11860:1;11850:11;;:::i;:::-;;-1:-1:-1;11919:10:0;11927:2;11919:5;:10;:::i;:::-;11906:24;;:2;:24;:::i;:::-;11893:39;;11876:6;11883;11876:14;;;;;;-1:-1:-1;;;11876:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;11876:56:0;;;;;;;;-1:-1:-1;11947:11:0;11956:2;11947:11;;:::i;:::-;;;11816:154;;27251:321;27381:18;27387:2;27391:7;27381:5;:18::i;:::-;27432:54;27463:1;27467:2;27471:7;27480:5;27432:22;:54::i;:::-;27410:154;;;;-1:-1:-1;;;27410:154:0;;;;;;;:::i;30667:799::-;30822:4;30843:15;:2;-1:-1:-1;;;;;30843:13:0;;:15::i;:::-;30839:620;;;30895:2;-1:-1:-1;;;;;30879:36:0;;30916:12;:10;:12::i;:::-;30930:4;30936:7;30945:5;30879:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30879:72:0;;;;;;;;-1:-1:-1;;30879:72:0;;;;;;;;;;;;:::i;:::-;;;30875:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31121:13:0;;31117:272;;31164:60;;-1:-1:-1;;;31164:60:0;;;;;;;:::i;31117:272::-;31339:6;31333:13;31324:6;31320:2;31316:15;31309:38;30875:529;-1:-1:-1;;;;;;31002:51:0;-1:-1:-1;;;31002:51:0;;-1:-1:-1;30995:58:0;;30839:620;-1:-1:-1;31443:4:0;30667:799;;;;;;:::o;27908:386::-;-1:-1:-1;;;;;27988:16:0;;27980:61;;;;-1:-1:-1;;;27980:61:0;;;;;;;:::i;:::-;28061:16;28069:7;28061;:16::i;:::-;28060:17;28052:58;;;;-1:-1:-1;;;28052:58:0;;;;;;;:::i;:::-;28123:45;28152:1;28156:2;28160:7;28123:20;:45::i;:::-;-1:-1:-1;;;;;28181:13:0;;;;;;:9;:13;;;;;:18;;28198:1;;28181:13;:18;;28198:1;;28181:18;:::i;:::-;;;;-1:-1:-1;;28210:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28210:21:0;-1:-1:-1;;;;;28210:21:0;;;;;;;;28253:33;;28210:16;;;28253:33;;28210:16;;28253:33;27908:386;;:::o;1634:387::-;1957:20;2005:8;;;1634:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:198::-;;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1451:6;1443;1436:22;1398:2;1479:31;1500:9;1479:31;:::i;1521:274::-;;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1671:6;1663;1656:22;1618:2;1699:31;1720:9;1699:31;:::i;:::-;1689:41;;1749:40;1785:2;1774:9;1770:18;1749:40;:::i;:::-;1739:50;;1608:187;;;;;:::o;1800:342::-;;;;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;1995:31;2016:9;1995:31;:::i;:::-;1985:41;;2045:40;2081:2;2070:9;2066:18;2045:40;:::i;:::-;2035:50;;2132:2;2121:9;2117:18;2104:32;2094:42;;1904:238;;;;;:::o;2147:702::-;;;;;2319:3;2307:9;2298:7;2294:23;2290:33;2287:2;;;2341:6;2333;2326:22;2287:2;2369:31;2390:9;2369:31;:::i;:::-;2359:41;;2419:40;2455:2;2444:9;2440:18;2419:40;:::i;:::-;2409:50;;2506:2;2495:9;2491:18;2478:32;2468:42;;2561:2;2550:9;2546:18;2533:32;2588:18;2580:6;2577:30;2574:2;;;2625:6;2617;2610:22;2574:2;2653:22;;2706:4;2698:13;;2694:27;-1:-1:-1;2684:2:1;;2740:6;2732;2725:22;2684:2;2768:75;2835:7;2830:2;2817:16;2812:2;2808;2804:11;2768:75;:::i;:::-;2758:85;;;2277:572;;;;;;;:::o;2854:369::-;;;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;3001:6;2993;2986:22;2948:2;3029:31;3050:9;3029:31;:::i;:::-;3019:41;;3110:2;3099:9;3095:18;3082:32;3157:5;3150:13;3143:21;3136:5;3133:32;3123:2;;3184:6;3176;3169:22;3123:2;3212:5;3202:15;;;2938:285;;;;;:::o;3228:266::-;;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3406:31;3427:9;3406:31;:::i;:::-;3396:41;3484:2;3469:18;;;;3456:32;;-1:-1:-1;;;3315:179:1:o;3499:1226::-;;;3678:2;3666:9;3657:7;3653:23;3649:32;3646:2;;;3699:6;3691;3684:22;3646:2;3744:9;3731:23;3773:18;3814:2;3806:6;3803:14;3800:2;;;3835:6;3827;3820:22;3800:2;3878:6;3867:9;3863:22;3853:32;;3923:7;3916:4;3912:2;3908:13;3904:27;3894:2;;3950:6;3942;3935:22;3894:2;3991;3978:16;4013:4;4037:65;4052:49;4098:2;4052:49;:::i;4037:65::-;4136:15;;;4167:12;;;;4199:11;;;4237;;;4229:20;;4225:29;;4222:42;-1:-1:-1;4219:2:1;;;4282:6;4274;4267:22;4219:2;4309:6;4300:15;;4324:171;4338:2;4335:1;4332:9;4324:171;;;4395:25;4416:3;4395:25;:::i;:::-;4383:38;;4356:1;4349:9;;;;;4441:12;;;;4473;;4324:171;;;-1:-1:-1;4514:5:1;-1:-1:-1;;4557:18:1;;4544:32;;-1:-1:-1;;4588:16:1;;;4585:2;;;4622:6;4614;4607:22;4585:2;;4650:69;4711:7;4700:8;4689:9;4685:24;4650:69;:::i;:::-;4640:79;;;3636:1089;;;;;:::o;4730:257::-;;4841:2;4829:9;4820:7;4816:23;4812:32;4809:2;;;4862:6;4854;4847:22;4809:2;4906:9;4893:23;4925:32;4951:5;4925:32;:::i;4992:261::-;;5114:2;5102:9;5093:7;5089:23;5085:32;5082:2;;;5135:6;5127;5120:22;5082:2;5172:9;5166:16;5191:32;5217:5;5191:32;:::i;5258:482::-;;5380:2;5368:9;5359:7;5355:23;5351:32;5348:2;;;5401:6;5393;5386:22;5348:2;5446:9;5433:23;5479:18;5471:6;5468:30;5465:2;;;5516:6;5508;5501:22;5465:2;5544:22;;5597:4;5589:13;;5585:27;-1:-1:-1;5575:2:1;;5631:6;5623;5616:22;5575:2;5659:75;5726:7;5721:2;5708:16;5703:2;5699;5695:11;5659:75;:::i;5745:190::-;;5857:2;5845:9;5836:7;5832:23;5828:32;5825:2;;;5878:6;5870;5863:22;5825:2;-1:-1:-1;5906:23:1;;5815:120;-1:-1:-1;5815:120:1:o;5940:259::-;;6021:5;6015:12;6048:6;6043:3;6036:19;6064:63;6120:6;6113:4;6108:3;6104:14;6097:4;6090:5;6086:16;6064:63;:::i;:::-;6181:2;6160:15;-1:-1:-1;;6156:29:1;6147:39;;;;6188:4;6143:50;;5991:208;-1:-1:-1;;5991:208:1:o;6204:637::-;;6522:6;6516:13;6538:53;6584:6;6579:3;6572:4;6564:6;6560:17;6538:53;:::i;:::-;6654:13;;6613:16;;;;6676:57;6654:13;6613:16;6710:4;6698:17;;6676:57;:::i;:::-;-1:-1:-1;;;6755:20:1;;6784:22;;;6833:1;6822:13;;6492:349;-1:-1:-1;;;;6492:349:1:o;6846:205::-;7046:3;7037:14::o;7056:203::-;-1:-1:-1;;;;;7220:32:1;;;;7202:51;;7190:2;7175:18;;7157:102::o;7264:490::-;-1:-1:-1;;;;;7533:15:1;;;7515:34;;7585:15;;7580:2;7565:18;;7558:43;7632:2;7617:18;;7610:34;;;7680:3;7675:2;7660:18;;7653:31;;;7264:490;;7701:47;;7728:19;;7720:6;7701:47;:::i;:::-;7693:55;7467:287;-1:-1:-1;;;;;;7467:287:1:o;7759:187::-;7924:14;;7917:22;7899:41;;7887:2;7872:18;;7854:92::o;7951:221::-;;8100:2;8089:9;8082:21;8120:46;8162:2;8151:9;8147:18;8139:6;8120:46;:::i;8177:347::-;8379:2;8361:21;;;8418:2;8398:18;;;8391:30;8457:25;8452:2;8437:18;;8430:53;8515:2;8500:18;;8351:173::o;8529:414::-;8731:2;8713:21;;;8770:2;8750:18;;;8743:30;8809:34;8804:2;8789:18;;8782:62;-1:-1:-1;;;8875:2:1;8860:18;;8853:48;8933:3;8918:19;;8703:240::o;8948:350::-;9150:2;9132:21;;;9189:2;9169:18;;;9162:30;9228:28;9223:2;9208:18;;9201:56;9289:2;9274:18;;9122:176::o;9303:402::-;9505:2;9487:21;;;9544:2;9524:18;;;9517:30;9583:34;9578:2;9563:18;;9556:62;-1:-1:-1;;;9649:2:1;9634:18;;9627:36;9695:3;9680:19;;9477:228::o;9710:352::-;9912:2;9894:21;;;9951:2;9931:18;;;9924:30;9990;9985:2;9970:18;;9963:58;10053:2;10038:18;;9884:178::o;10067:402::-;10269:2;10251:21;;;10308:2;10288:18;;;10281:30;10347:34;10342:2;10327:18;;10320:62;-1:-1:-1;;;10413:2:1;10398:18;;10391:36;10459:3;10444:19;;10241:228::o;10474:400::-;10676:2;10658:21;;;10715:2;10695:18;;;10688:30;10754:34;10749:2;10734:18;;10727:62;-1:-1:-1;;;10820:2:1;10805:18;;10798:34;10864:3;10849:19;;10648:226::o;10879:349::-;11081:2;11063:21;;;11120:2;11100:18;;;11093:30;11159:27;11154:2;11139:18;;11132:55;11219:2;11204:18;;11053:175::o;11233:353::-;11435:2;11417:21;;;11474:2;11454:18;;;11447:30;11513:31;11508:2;11493:18;;11486:59;11577:2;11562:18;;11407:179::o;11591:408::-;11793:2;11775:21;;;11832:2;11812:18;;;11805:30;11871:34;11866:2;11851:18;;11844:62;-1:-1:-1;;;11937:2:1;11922:18;;11915:42;11989:3;11974:19;;11765:234::o;12004:420::-;12206:2;12188:21;;;12245:2;12225:18;;;12218:30;12284:34;12279:2;12264:18;;12257:62;12355:26;12350:2;12335:18;;12328:54;12414:3;12399:19;;12178:246::o;12429:406::-;12631:2;12613:21;;;12670:2;12650:18;;;12643:30;12709:34;12704:2;12689:18;;12682:62;-1:-1:-1;;;12775:2:1;12760:18;;12753:40;12825:3;12810:19;;12603:232::o;12840:346::-;13042:2;13024:21;;;13081:2;13061:18;;;13054:30;-1:-1:-1;;;13115:2:1;13100:18;;13093:52;13177:2;13162:18;;13014:172::o;13191:405::-;13393:2;13375:21;;;13432:2;13412:18;;;13405:30;13471:34;13466:2;13451:18;;13444:62;-1:-1:-1;;;13537:2:1;13522:18;;13515:39;13586:3;13571:19;;13365:231::o;13601:349::-;13803:2;13785:21;;;13842:2;13822:18;;;13815:30;13881:27;13876:2;13861:18;;13854:55;13941:2;13926:18;;13775:175::o;13955:356::-;14157:2;14139:21;;;14176:18;;;14169:30;14235:34;14230:2;14215:18;;14208:62;14302:2;14287:18;;14129:182::o;14316:408::-;14518:2;14500:21;;;14557:2;14537:18;;;14530:30;14596:34;14591:2;14576:18;;14569:62;-1:-1:-1;;;14662:2:1;14647:18;;14640:42;14714:3;14699:19;;14490:234::o;14729:356::-;14931:2;14913:21;;;14950:18;;;14943:30;15009:34;15004:2;14989:18;;14982:62;15076:2;15061:18;;14903:182::o;15090:347::-;15292:2;15274:21;;;15331:2;15311:18;;;15304:30;15370:25;15365:2;15350:18;;15343:53;15428:2;15413:18;;15264:173::o;15442:405::-;15644:2;15626:21;;;15683:2;15663:18;;;15656:30;15722:34;15717:2;15702:18;;15695:62;-1:-1:-1;;;15788:2:1;15773:18;;15766:39;15837:3;15822:19;;15616:231::o;15852:411::-;16054:2;16036:21;;;16093:2;16073:18;;;16066:30;16132:34;16127:2;16112:18;;16105:62;-1:-1:-1;;;16198:2:1;16183:18;;16176:45;16253:3;16238:19;;16026:237::o;16268:397::-;16470:2;16452:21;;;16509:2;16489:18;;;16482:30;16548:34;16543:2;16528:18;;16521:62;-1:-1:-1;;;16614:2:1;16599:18;;16592:31;16655:3;16640:19;;16442:223::o;16670:413::-;16872:2;16854:21;;;16911:2;16891:18;;;16884:30;16950:34;16945:2;16930:18;;16923:62;-1:-1:-1;;;17016:2:1;17001:18;;16994:47;17073:3;17058:19;;16844:239::o;17088:335::-;17290:2;17272:21;;;17329:2;17309:18;;;17302:30;-1:-1:-1;;;17363:2:1;17348:18;;17341:41;17414:2;17399:18;;17262:161::o;17428:350::-;17630:2;17612:21;;;17669:2;17649:18;;;17642:30;17708:28;17703:2;17688:18;;17681:56;17769:2;17754:18;;17602:176::o;17783:345::-;17985:2;17967:21;;;18024:2;18004:18;;;17997:30;-1:-1:-1;;;18058:2:1;18043:18;;18036:51;18119:2;18104:18;;17957:171::o;18133:177::-;18279:25;;;18267:2;18252:18;;18234:76::o;18315:251::-;18385:2;18379:9;18415:17;;;18462:18;18447:34;;18483:22;;;18444:62;18441:2;;;18509:18;;:::i;:::-;18545:2;18538:22;18359:207;;-1:-1:-1;18359:207:1:o;18571:192::-;;18670:18;18662:6;18659:30;18656:2;;;18692:18;;:::i;:::-;-1:-1:-1;18752:4:1;18733:17;;;18729:28;;18646:117::o;18768:128::-;;18839:1;18835:6;18832:1;18829:13;18826:2;;;18845:18;;:::i;:::-;-1:-1:-1;18881:9:1;;18816:80::o;18901:120::-;;18967:1;18957:2;;18972:18;;:::i;:::-;-1:-1:-1;19006:9:1;;18947:74::o;19026:168::-;;19132:1;19128;19124:6;19120:14;19117:1;19114:21;19109:1;19102:9;19095:17;19091:45;19088:2;;;19139:18;;:::i;:::-;-1:-1:-1;19179:9:1;;19078:116::o;19199:125::-;;19267:1;19264;19261:8;19258:2;;;19272:18;;:::i;:::-;-1:-1:-1;19309:9:1;;19248:76::o;19329:258::-;19401:1;19411:113;19425:6;19422:1;19419:13;19411:113;;;19501:11;;;19495:18;19482:11;;;19475:39;19447:2;19440:10;19411:113;;;19542:6;19539:1;19536:13;19533:2;;;-1:-1:-1;;19577:1:1;19559:16;;19552:27;19382:205::o;19592:380::-;19677:1;19667:12;;19724:1;19714:12;;;19735:2;;19789:4;19781:6;19777:17;19767:27;;19735:2;19842;19834:6;19831:14;19811:18;19808:38;19805:2;;;19888:10;19883:3;19879:20;19876:1;19869:31;19923:4;19920:1;19913:15;19951:4;19948:1;19941:15;19805:2;;19647:325;;;:::o;19977:135::-;;-1:-1:-1;;20037:17:1;;20034:2;;;20057:18;;:::i;:::-;-1:-1:-1;20104:1:1;20093:13;;20024:88::o;20117:112::-;;20175:1;20165:2;;20180:18;;:::i;:::-;-1:-1:-1;20214:9:1;;20155:74::o;20234:127::-;20295:10;20290:3;20286:20;20283:1;20276:31;20326:4;20323:1;20316:15;20350:4;20347:1;20340:15;20366:127;20427:10;20422:3;20418:20;20415:1;20408:31;20458:4;20455:1;20448:15;20482:4;20479:1;20472:15;20498:127;20559:10;20554:3;20550:20;20547:1;20540:31;20590:4;20587:1;20580:15;20614:4;20611:1;20604:15;20630:133;-1:-1:-1;;;;;;20706:32:1;;20696:43;;20686:2;;20753:1;20750;20743:12

Swarm Source

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