ETH Price: $3,147.55 (+0.90%)
Gas: 3 Gwei

Token

metaGAN - Zombie Punks (mG.1)
 

Overview

Max Total Supply

220 mG.1

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 mG.1
0xe536eca92b17c3886eb8aee0df348efe9f040de7
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:
zp_minter

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-15
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract zp_minter is ERC721, ERC721Enumerable, Ownable {

    uint256 private _tokenIds;
    string _baseTokenURI;
   
    uint256 constant public ETH_PRICE = 0.0333 ether;
    uint256 constant public MAX_PER_TX = 5;
    uint256 constant public MAX_SUPPLY = 1000;
    bool public mintingEnabled = false;


    event Minted(address to, uint256 quantity);

    constructor(string memory baseURI) ERC721("metaGAN - Zombie Punks", "mG.1") {
        setBaseURI(baseURI);
    }

    function mint(uint256 quantity) public payable {
        require(msg.sender == owner() || mintingEnabled, "minting is not enabled yet");
        require(quantity <= MAX_PER_TX, "minting too many");
        require(msg.value == getPrice(quantity), "wrong amount");
        require(totalSupply() < MAX_SUPPLY, "sold out!");
        require(totalSupply() + quantity <= MAX_SUPPLY, "exceeds max supply");
       
        for (uint i = 0; i < quantity; i++) {
            _tokenIds++;

            uint256 newTokenId = _tokenIds;
            _safeMint(msg.sender, newTokenId);
        }

        emit Minted(msg.sender, quantity);
    }

    function getPrice(uint256 quantity) public pure returns(uint256) {
        return ETH_PRICE * quantity;
    }

    function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    payable(msg.sender).transfer(balance);
    }

    function toggleMintingEnabled() public onlyOwner {
        mintingEnabled = !mintingEnabled;
    }
   
    function remainingSupply() public view returns(uint256) {
        return MAX_SUPPLY - totalSupply();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
   
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","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":[],"name":"ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004573380380620045738339818101604052810190620000529190620003ef565b6040518060400160405280601681526020017f6d65746147414e202d205a6f6d6269652050756e6b73000000000000000000008152506040518060400160405280600481526020017f6d472e31000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d6929190620002cd565b508060019080519060200190620000ef929190620002cd565b50505062000112620001066200012a60201b60201c565b6200013260201b60201c565b6200012381620001f860201b60201c565b5062000627565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002086200012a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022e620002a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027e906200045b565b60405180910390fd5b80600c90805190602001906200029f929190620002cd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002db9062000523565b90600052602060002090601f016020900481019282620002ff57600085556200034b565b82601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b6000620003946200038e84620004a6565b6200047d565b905082815260208101848484011115620003ad57600080fd5b620003ba848285620004ed565b509392505050565b600082601f830112620003d457600080fd5b8151620003e68482602086016200037d565b91505092915050565b6000602082840312156200040257600080fd5b600082015167ffffffffffffffff8111156200041d57600080fd5b6200042b84828501620003c2565b91505092915050565b600062000443602083620004dc565b91506200045082620005fe565b602082019050919050565b60006020820190508181036000830152620004768162000434565b9050919050565b6000620004896200049c565b905062000497828262000559565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c457620004c3620005be565b5b620004cf82620005ed565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200050d578082015181840152602081019050620004f0565b838111156200051d576000848401525b50505050565b600060028204905060018216806200053c57607f821691505b602082108114156200055357620005526200058f565b5b50919050565b6200056482620005ed565b810181811067ffffffffffffffff82111715620005865762000585620005be565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f3c80620006376000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063e757223011610064578063e757223014610621578063e985e9c51461065e578063f2fde38b1461069b578063f43a22dc146106c4576101c2565b8063a22cb46514610567578063b88d4fde14610590578063c87b56dd146105b9578063da0239a6146105f6576101c2565b80638da5cb5b116100d15780638da5cb5b146104ca57806395d89b41146104f55780639fd6db1214610520578063a0712d681461054b576101c2565b806370a082311461044b578063715018a6146104885780638832bc291461049f576101c2565b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce7146103915780635196e060146103ce57806355f804b3146103e55780636352211e1461040e576101c2565b806332cb6b0c146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c0b565b6106ef565b6040516101fb9190613170565b60405180910390f35b34801561021057600080fd5b50610219610701565b604051610226919061318b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c9e565b610793565b60405161026391906130e0565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612bcf565b610818565b005b3480156102a157600080fd5b506102aa610930565b6040516102b7919061348d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612ac9565b61093d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612bcf565b61099d565b60405161031d919061348d565b60405180910390f35b34801561033257600080fd5b5061033b610a42565b604051610348919061348d565b60405180910390f35b34801561035d57600080fd5b50610366610a48565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612ac9565b610b13565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612c9e565b610b33565b6040516103c5919061348d565b60405180910390f35b3480156103da57600080fd5b506103e3610bca565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612c5d565b610c72565b005b34801561041a57600080fd5b5061043560048036038101906104309190612c9e565b610d08565b60405161044291906130e0565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190612a64565b610dba565b60405161047f919061348d565b60405180910390f35b34801561049457600080fd5b5061049d610e72565b005b3480156104ab57600080fd5b506104b4610efa565b6040516104c1919061348d565b60405180910390f35b3480156104d657600080fd5b506104df610f05565b6040516104ec91906130e0565b60405180910390f35b34801561050157600080fd5b5061050a610f2f565b604051610517919061318b565b60405180910390f35b34801561052c57600080fd5b50610535610fc1565b6040516105429190613170565b60405180910390f35b61056560048036038101906105609190612c9e565b610fd4565b005b34801561057357600080fd5b5061058e60048036038101906105899190612b93565b611215565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612b18565b611396565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612c9e565b6113f8565b6040516105ed919061318b565b60405180910390f35b34801561060257600080fd5b5061060b61149f565b604051610618919061348d565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612c9e565b6114bb565b604051610655919061348d565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612a8d565b6114d7565b6040516106929190613170565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612a64565b61156b565b005b3480156106d057600080fd5b506106d9611663565b6040516106e6919061348d565b60405180910390f35b60006106fa82611668565b9050919050565b6060600080546107109061373d565b80601f016020809104026020016040519081016040528092919081815260200182805461073c9061373d565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b600061079e826116e2565b6107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d49061336d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082382610d08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b9061340d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b361174e565b73ffffffffffffffffffffffffffffffffffffffff1614806108e257506108e1816108dc61174e565b6114d7565b5b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906132ed565b60405180910390fd5b61092b8383611756565b505050565b6000600880549050905090565b61094e61094861174e565b8261180f565b61098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061342d565b60405180910390fd5b6109988383836118ed565b505050565b60006109a883610dba565b82106109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906131cd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610a5061174e565b73ffffffffffffffffffffffffffffffffffffffff16610a6e610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906133ad565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b0f573d6000803e3d6000fd5b5050565b610b2e83838360405180602001604052806000815250611396565b505050565b6000610b3d610930565b8210610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b759061344d565b60405180910390fd5b60088281548110610bb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bd261174e565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d906133ad565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c7a61174e565b73ffffffffffffffffffffffffffffffffffffffff16610c98610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906133ad565b60405180910390fd5b80600c9080519060200190610d04929190612888565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da89061332d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e229061330d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7a61174e565b73ffffffffffffffffffffffffffffffffffffffff16610e98610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee5906133ad565b60405180910390fd5b610ef86000611b49565b565b66764e2c6f05400081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f3e9061373d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a9061373d565b8015610fb75780601f10610f8c57610100808354040283529160200191610fb7565b820191906000526020600020905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b610fdc610f05565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110215750600d60009054906101000a900460ff165b611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906131ad565b60405180910390fd5b60058111156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061338d565b60405180910390fd5b6110ad816114bb565b34146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061324d565b60405180910390fd5b6103e86110f9610930565b10611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061346d565b60405180910390fd5b6103e881611145610930565b61114f9190613572565b1115611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906132cd565b60405180910390fd5b60005b818110156111d857600b60008154809291906111ae906137a0565b91905055506000600b5490506111c43382611c0f565b5080806111d0906137a0565b915050611193565b507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe338260405161120a929190613147565b60405180910390a150565b61121d61174e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112829061328d565b60405180910390fd5b806005600061129861174e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134561174e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138a9190613170565b60405180910390a35050565b6113a76113a161174e565b8361180f565b6113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061342d565b60405180910390fd5b6113f284848484611c2d565b50505050565b6060611403826116e2565b611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906133ed565b60405180910390fd5b600061144c611c89565b9050600081511161146c5760405180602001604052806000815250611497565b8061147684611d1b565b6040516020016114879291906130bc565b6040516020818303038152906040525b915050919050565b60006114a9610930565b6103e86114b69190613653565b905090565b60008166764e2c6f0540006114d091906135f9565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157361174e565b73ffffffffffffffffffffffffffffffffffffffff16611591610f05565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906133ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e9061320d565b60405180910390fd5b61166081611b49565b50565b600581565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116db57506116da82611ec8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c983610d08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061181a826116e2565b611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611850906132ad565b60405180910390fd5b600061186483610d08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118d357508373ffffffffffffffffffffffffffffffffffffffff166118bb84610793565b73ffffffffffffffffffffffffffffffffffffffff16145b806118e457506118e381856114d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190d82610d08565b73ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906133cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca9061326d565b60405180910390fd5b6119de838383611faa565b6119e9600082611756565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a399190613653565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a909190613572565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c29828260405180602001604052806000815250611fba565b5050565b611c388484846118ed565b611c4484848484612015565b611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a906131ed565b60405180910390fd5b50505050565b6060600c8054611c989061373d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc49061373d565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b5050505050905090565b60606000821415611d63576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ec3565b600082905060005b60008214611d95578080611d7e906137a0565b915050600a82611d8e91906135c8565b9150611d6b565b60008167ffffffffffffffff811115611dd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e095781602001600182028036833780820191505090505b5090505b60008514611ebc57600182611e229190613653565b9150600a85611e3191906137e9565b6030611e3d9190613572565b60f81b818381518110611e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eb591906135c8565b9450611e0d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f9357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fa35750611fa2826121ac565b5b9050919050565b611fb5838383612216565b505050565b611fc4838361232a565b611fd16000848484612015565b612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906131ed565b60405180910390fd5b505050565b60006120368473ffffffffffffffffffffffffffffffffffffffff166124f8565b1561219f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205f61174e565b8786866040518563ffffffff1660e01b815260040161208194939291906130fb565b602060405180830381600087803b15801561209b57600080fd5b505af19250505080156120cc57506040513d601f19601f820116820180604052508101906120c99190612c34565b60015b61214f573d80600081146120fc576040519150601f19603f3d011682016040523d82523d6000602084013e612101565b606091505b50600081511415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e906131ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121a4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61222183838361250b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122645761225f81612510565b6122a3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a2576122a18382612559565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e6576122e1816126c6565b612325565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612324576123238282612809565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123919061334d565b60405180910390fd5b6123a3816116e2565b156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da9061322d565b60405180910390fd5b6123ef60008383611faa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243f9190613572565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161256684610dba565b6125709190613653565b9050600060076000848152602001908152602001600020549050818114612655576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126da9190613653565b9050600060096000848152602001908152602001600020549050600060088381548110612730577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612778577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281483610dba565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546128949061373d565b90600052602060002090601f0160209004810192826128b657600085556128fd565b82601f106128cf57805160ff19168380011785556128fd565b828001600101855582156128fd579182015b828111156128fc5782518255916020019190600101906128e1565b5b50905061290a919061290e565b5090565b5b8082111561292757600081600090555060010161290f565b5090565b600061293e612939846134cd565b6134a8565b90508281526020810184848401111561295657600080fd5b6129618482856136fb565b509392505050565b600061297c612977846134fe565b6134a8565b90508281526020810184848401111561299457600080fd5b61299f8482856136fb565b509392505050565b6000813590506129b681613eaa565b92915050565b6000813590506129cb81613ec1565b92915050565b6000813590506129e081613ed8565b92915050565b6000815190506129f581613ed8565b92915050565b600082601f830112612a0c57600080fd5b8135612a1c84826020860161292b565b91505092915050565b600082601f830112612a3657600080fd5b8135612a46848260208601612969565b91505092915050565b600081359050612a5e81613eef565b92915050565b600060208284031215612a7657600080fd5b6000612a84848285016129a7565b91505092915050565b60008060408385031215612aa057600080fd5b6000612aae858286016129a7565b9250506020612abf858286016129a7565b9150509250929050565b600080600060608486031215612ade57600080fd5b6000612aec868287016129a7565b9350506020612afd868287016129a7565b9250506040612b0e86828701612a4f565b9150509250925092565b60008060008060808587031215612b2e57600080fd5b6000612b3c878288016129a7565b9450506020612b4d878288016129a7565b9350506040612b5e87828801612a4f565b925050606085013567ffffffffffffffff811115612b7b57600080fd5b612b87878288016129fb565b91505092959194509250565b60008060408385031215612ba657600080fd5b6000612bb4858286016129a7565b9250506020612bc5858286016129bc565b9150509250929050565b60008060408385031215612be257600080fd5b6000612bf0858286016129a7565b9250506020612c0185828601612a4f565b9150509250929050565b600060208284031215612c1d57600080fd5b6000612c2b848285016129d1565b91505092915050565b600060208284031215612c4657600080fd5b6000612c54848285016129e6565b91505092915050565b600060208284031215612c6f57600080fd5b600082013567ffffffffffffffff811115612c8957600080fd5b612c9584828501612a25565b91505092915050565b600060208284031215612cb057600080fd5b6000612cbe84828501612a4f565b91505092915050565b612cd081613687565b82525050565b612cdf81613699565b82525050565b6000612cf08261352f565b612cfa8185613545565b9350612d0a81856020860161370a565b612d13816138d6565b840191505092915050565b6000612d298261353a565b612d338185613556565b9350612d4381856020860161370a565b612d4c816138d6565b840191505092915050565b6000612d628261353a565b612d6c8185613567565b9350612d7c81856020860161370a565b80840191505092915050565b6000612d95601a83613556565b9150612da0826138e7565b602082019050919050565b6000612db8602b83613556565b9150612dc382613910565b604082019050919050565b6000612ddb603283613556565b9150612de68261395f565b604082019050919050565b6000612dfe602683613556565b9150612e09826139ae565b604082019050919050565b6000612e21601c83613556565b9150612e2c826139fd565b602082019050919050565b6000612e44600c83613556565b9150612e4f82613a26565b602082019050919050565b6000612e67602483613556565b9150612e7282613a4f565b604082019050919050565b6000612e8a601983613556565b9150612e9582613a9e565b602082019050919050565b6000612ead602c83613556565b9150612eb882613ac7565b604082019050919050565b6000612ed0601283613556565b9150612edb82613b16565b602082019050919050565b6000612ef3603883613556565b9150612efe82613b3f565b604082019050919050565b6000612f16602a83613556565b9150612f2182613b8e565b604082019050919050565b6000612f39602983613556565b9150612f4482613bdd565b604082019050919050565b6000612f5c602083613556565b9150612f6782613c2c565b602082019050919050565b6000612f7f602c83613556565b9150612f8a82613c55565b604082019050919050565b6000612fa2601083613556565b9150612fad82613ca4565b602082019050919050565b6000612fc5602083613556565b9150612fd082613ccd565b602082019050919050565b6000612fe8602983613556565b9150612ff382613cf6565b604082019050919050565b600061300b602f83613556565b915061301682613d45565b604082019050919050565b600061302e602183613556565b915061303982613d94565b604082019050919050565b6000613051603183613556565b915061305c82613de3565b604082019050919050565b6000613074602c83613556565b915061307f82613e32565b604082019050919050565b6000613097600983613556565b91506130a282613e81565b602082019050919050565b6130b6816136f1565b82525050565b60006130c88285612d57565b91506130d48284612d57565b91508190509392505050565b60006020820190506130f56000830184612cc7565b92915050565b60006080820190506131106000830187612cc7565b61311d6020830186612cc7565b61312a60408301856130ad565b818103606083015261313c8184612ce5565b905095945050505050565b600060408201905061315c6000830185612cc7565b61316960208301846130ad565b9392505050565b60006020820190506131856000830184612cd6565b92915050565b600060208201905081810360008301526131a58184612d1e565b905092915050565b600060208201905081810360008301526131c681612d88565b9050919050565b600060208201905081810360008301526131e681612dab565b9050919050565b6000602082019050818103600083015261320681612dce565b9050919050565b6000602082019050818103600083015261322681612df1565b9050919050565b6000602082019050818103600083015261324681612e14565b9050919050565b6000602082019050818103600083015261326681612e37565b9050919050565b6000602082019050818103600083015261328681612e5a565b9050919050565b600060208201905081810360008301526132a681612e7d565b9050919050565b600060208201905081810360008301526132c681612ea0565b9050919050565b600060208201905081810360008301526132e681612ec3565b9050919050565b6000602082019050818103600083015261330681612ee6565b9050919050565b6000602082019050818103600083015261332681612f09565b9050919050565b6000602082019050818103600083015261334681612f2c565b9050919050565b6000602082019050818103600083015261336681612f4f565b9050919050565b6000602082019050818103600083015261338681612f72565b9050919050565b600060208201905081810360008301526133a681612f95565b9050919050565b600060208201905081810360008301526133c681612fb8565b9050919050565b600060208201905081810360008301526133e681612fdb565b9050919050565b6000602082019050818103600083015261340681612ffe565b9050919050565b6000602082019050818103600083015261342681613021565b9050919050565b6000602082019050818103600083015261344681613044565b9050919050565b6000602082019050818103600083015261346681613067565b9050919050565b600060208201905081810360008301526134868161308a565b9050919050565b60006020820190506134a260008301846130ad565b92915050565b60006134b26134c3565b90506134be828261376f565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e8576134e76138a7565b5b6134f1826138d6565b9050602081019050919050565b600067ffffffffffffffff821115613519576135186138a7565b5b613522826138d6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061357d826136f1565b9150613588836136f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bd576135bc61381a565b5b828201905092915050565b60006135d3826136f1565b91506135de836136f1565b9250826135ee576135ed613849565b5b828204905092915050565b6000613604826136f1565b915061360f836136f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136485761364761381a565b5b828202905092915050565b600061365e826136f1565b9150613669836136f1565b92508282101561367c5761367b61381a565b5b828203905092915050565b6000613692826136d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561372857808201518184015260208101905061370d565b83811115613737576000848401525b50505050565b6000600282049050600182168061375557607f821691505b6020821081141561376957613768613878565b5b50919050565b613778826138d6565b810181811067ffffffffffffffff82111715613797576137966138a7565b5b80604052505050565b60006137ab826136f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137de576137dd61381a565b5b600182019050919050565b60006137f4826136f1565b91506137ff836136f1565b92508261380f5761380e613849565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6d696e74696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f77726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f65786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720746f6f206d616e7900000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b613eb381613687565b8114613ebe57600080fd5b50565b613eca81613699565b8114613ed557600080fd5b50565b613ee1816136a5565b8114613eec57600080fd5b50565b613ef8816136f1565b8114613f0357600080fd5b5056fea264697066735822122040c900c0a5ac2b517b2d482b9792d037d9e00becb0c18dc3140503be9bc0316164736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d665064564a754e677a75735456354e37524c61576732596d347a54436b6958634a32566b63773363343432692f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063e757223011610064578063e757223014610621578063e985e9c51461065e578063f2fde38b1461069b578063f43a22dc146106c4576101c2565b8063a22cb46514610567578063b88d4fde14610590578063c87b56dd146105b9578063da0239a6146105f6576101c2565b80638da5cb5b116100d15780638da5cb5b146104ca57806395d89b41146104f55780639fd6db1214610520578063a0712d681461054b576101c2565b806370a082311461044b578063715018a6146104885780638832bc291461049f576101c2565b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce7146103915780635196e060146103ce57806355f804b3146103e55780636352211e1461040e576101c2565b806332cb6b0c146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c0b565b6106ef565b6040516101fb9190613170565b60405180910390f35b34801561021057600080fd5b50610219610701565b604051610226919061318b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c9e565b610793565b60405161026391906130e0565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612bcf565b610818565b005b3480156102a157600080fd5b506102aa610930565b6040516102b7919061348d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612ac9565b61093d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612bcf565b61099d565b60405161031d919061348d565b60405180910390f35b34801561033257600080fd5b5061033b610a42565b604051610348919061348d565b60405180910390f35b34801561035d57600080fd5b50610366610a48565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612ac9565b610b13565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612c9e565b610b33565b6040516103c5919061348d565b60405180910390f35b3480156103da57600080fd5b506103e3610bca565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612c5d565b610c72565b005b34801561041a57600080fd5b5061043560048036038101906104309190612c9e565b610d08565b60405161044291906130e0565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190612a64565b610dba565b60405161047f919061348d565b60405180910390f35b34801561049457600080fd5b5061049d610e72565b005b3480156104ab57600080fd5b506104b4610efa565b6040516104c1919061348d565b60405180910390f35b3480156104d657600080fd5b506104df610f05565b6040516104ec91906130e0565b60405180910390f35b34801561050157600080fd5b5061050a610f2f565b604051610517919061318b565b60405180910390f35b34801561052c57600080fd5b50610535610fc1565b6040516105429190613170565b60405180910390f35b61056560048036038101906105609190612c9e565b610fd4565b005b34801561057357600080fd5b5061058e60048036038101906105899190612b93565b611215565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612b18565b611396565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612c9e565b6113f8565b6040516105ed919061318b565b60405180910390f35b34801561060257600080fd5b5061060b61149f565b604051610618919061348d565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612c9e565b6114bb565b604051610655919061348d565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612a8d565b6114d7565b6040516106929190613170565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612a64565b61156b565b005b3480156106d057600080fd5b506106d9611663565b6040516106e6919061348d565b60405180910390f35b60006106fa82611668565b9050919050565b6060600080546107109061373d565b80601f016020809104026020016040519081016040528092919081815260200182805461073c9061373d565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b600061079e826116e2565b6107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d49061336d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082382610d08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b9061340d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b361174e565b73ffffffffffffffffffffffffffffffffffffffff1614806108e257506108e1816108dc61174e565b6114d7565b5b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906132ed565b60405180910390fd5b61092b8383611756565b505050565b6000600880549050905090565b61094e61094861174e565b8261180f565b61098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061342d565b60405180910390fd5b6109988383836118ed565b505050565b60006109a883610dba565b82106109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906131cd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610a5061174e565b73ffffffffffffffffffffffffffffffffffffffff16610a6e610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906133ad565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b0f573d6000803e3d6000fd5b5050565b610b2e83838360405180602001604052806000815250611396565b505050565b6000610b3d610930565b8210610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b759061344d565b60405180910390fd5b60088281548110610bb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bd261174e565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d906133ad565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c7a61174e565b73ffffffffffffffffffffffffffffffffffffffff16610c98610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906133ad565b60405180910390fd5b80600c9080519060200190610d04929190612888565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da89061332d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e229061330d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7a61174e565b73ffffffffffffffffffffffffffffffffffffffff16610e98610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee5906133ad565b60405180910390fd5b610ef86000611b49565b565b66764e2c6f05400081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f3e9061373d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a9061373d565b8015610fb75780601f10610f8c57610100808354040283529160200191610fb7565b820191906000526020600020905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b610fdc610f05565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110215750600d60009054906101000a900460ff165b611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906131ad565b60405180910390fd5b60058111156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061338d565b60405180910390fd5b6110ad816114bb565b34146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061324d565b60405180910390fd5b6103e86110f9610930565b10611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061346d565b60405180910390fd5b6103e881611145610930565b61114f9190613572565b1115611190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611187906132cd565b60405180910390fd5b60005b818110156111d857600b60008154809291906111ae906137a0565b91905055506000600b5490506111c43382611c0f565b5080806111d0906137a0565b915050611193565b507f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe338260405161120a929190613147565b60405180910390a150565b61121d61174e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112829061328d565b60405180910390fd5b806005600061129861174e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134561174e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138a9190613170565b60405180910390a35050565b6113a76113a161174e565b8361180f565b6113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061342d565b60405180910390fd5b6113f284848484611c2d565b50505050565b6060611403826116e2565b611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906133ed565b60405180910390fd5b600061144c611c89565b9050600081511161146c5760405180602001604052806000815250611497565b8061147684611d1b565b6040516020016114879291906130bc565b6040516020818303038152906040525b915050919050565b60006114a9610930565b6103e86114b69190613653565b905090565b60008166764e2c6f0540006114d091906135f9565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61157361174e565b73ffffffffffffffffffffffffffffffffffffffff16611591610f05565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906133ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e9061320d565b60405180910390fd5b61166081611b49565b50565b600581565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116db57506116da82611ec8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c983610d08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061181a826116e2565b611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611850906132ad565b60405180910390fd5b600061186483610d08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118d357508373ffffffffffffffffffffffffffffffffffffffff166118bb84610793565b73ffffffffffffffffffffffffffffffffffffffff16145b806118e457506118e381856114d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190d82610d08565b73ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a906133cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca9061326d565b60405180910390fd5b6119de838383611faa565b6119e9600082611756565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a399190613653565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a909190613572565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c29828260405180602001604052806000815250611fba565b5050565b611c388484846118ed565b611c4484848484612015565b611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a906131ed565b60405180910390fd5b50505050565b6060600c8054611c989061373d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc49061373d565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b5050505050905090565b60606000821415611d63576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ec3565b600082905060005b60008214611d95578080611d7e906137a0565b915050600a82611d8e91906135c8565b9150611d6b565b60008167ffffffffffffffff811115611dd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e095781602001600182028036833780820191505090505b5090505b60008514611ebc57600182611e229190613653565b9150600a85611e3191906137e9565b6030611e3d9190613572565b60f81b818381518110611e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eb591906135c8565b9450611e0d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f9357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fa35750611fa2826121ac565b5b9050919050565b611fb5838383612216565b505050565b611fc4838361232a565b611fd16000848484612015565b612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906131ed565b60405180910390fd5b505050565b60006120368473ffffffffffffffffffffffffffffffffffffffff166124f8565b1561219f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205f61174e565b8786866040518563ffffffff1660e01b815260040161208194939291906130fb565b602060405180830381600087803b15801561209b57600080fd5b505af19250505080156120cc57506040513d601f19601f820116820180604052508101906120c99190612c34565b60015b61214f573d80600081146120fc576040519150601f19603f3d011682016040523d82523d6000602084013e612101565b606091505b50600081511415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e906131ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121a4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61222183838361250b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122645761225f81612510565b6122a3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a2576122a18382612559565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e6576122e1816126c6565b612325565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612324576123238282612809565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123919061334d565b60405180910390fd5b6123a3816116e2565b156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da9061322d565b60405180910390fd5b6123ef60008383611faa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243f9190613572565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161256684610dba565b6125709190613653565b9050600060076000848152602001908152602001600020549050818114612655576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126da9190613653565b9050600060096000848152602001908152602001600020549050600060088381548110612730577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612778577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281483610dba565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546128949061373d565b90600052602060002090601f0160209004810192826128b657600085556128fd565b82601f106128cf57805160ff19168380011785556128fd565b828001600101855582156128fd579182015b828111156128fc5782518255916020019190600101906128e1565b5b50905061290a919061290e565b5090565b5b8082111561292757600081600090555060010161290f565b5090565b600061293e612939846134cd565b6134a8565b90508281526020810184848401111561295657600080fd5b6129618482856136fb565b509392505050565b600061297c612977846134fe565b6134a8565b90508281526020810184848401111561299457600080fd5b61299f8482856136fb565b509392505050565b6000813590506129b681613eaa565b92915050565b6000813590506129cb81613ec1565b92915050565b6000813590506129e081613ed8565b92915050565b6000815190506129f581613ed8565b92915050565b600082601f830112612a0c57600080fd5b8135612a1c84826020860161292b565b91505092915050565b600082601f830112612a3657600080fd5b8135612a46848260208601612969565b91505092915050565b600081359050612a5e81613eef565b92915050565b600060208284031215612a7657600080fd5b6000612a84848285016129a7565b91505092915050565b60008060408385031215612aa057600080fd5b6000612aae858286016129a7565b9250506020612abf858286016129a7565b9150509250929050565b600080600060608486031215612ade57600080fd5b6000612aec868287016129a7565b9350506020612afd868287016129a7565b9250506040612b0e86828701612a4f565b9150509250925092565b60008060008060808587031215612b2e57600080fd5b6000612b3c878288016129a7565b9450506020612b4d878288016129a7565b9350506040612b5e87828801612a4f565b925050606085013567ffffffffffffffff811115612b7b57600080fd5b612b87878288016129fb565b91505092959194509250565b60008060408385031215612ba657600080fd5b6000612bb4858286016129a7565b9250506020612bc5858286016129bc565b9150509250929050565b60008060408385031215612be257600080fd5b6000612bf0858286016129a7565b9250506020612c0185828601612a4f565b9150509250929050565b600060208284031215612c1d57600080fd5b6000612c2b848285016129d1565b91505092915050565b600060208284031215612c4657600080fd5b6000612c54848285016129e6565b91505092915050565b600060208284031215612c6f57600080fd5b600082013567ffffffffffffffff811115612c8957600080fd5b612c9584828501612a25565b91505092915050565b600060208284031215612cb057600080fd5b6000612cbe84828501612a4f565b91505092915050565b612cd081613687565b82525050565b612cdf81613699565b82525050565b6000612cf08261352f565b612cfa8185613545565b9350612d0a81856020860161370a565b612d13816138d6565b840191505092915050565b6000612d298261353a565b612d338185613556565b9350612d4381856020860161370a565b612d4c816138d6565b840191505092915050565b6000612d628261353a565b612d6c8185613567565b9350612d7c81856020860161370a565b80840191505092915050565b6000612d95601a83613556565b9150612da0826138e7565b602082019050919050565b6000612db8602b83613556565b9150612dc382613910565b604082019050919050565b6000612ddb603283613556565b9150612de68261395f565b604082019050919050565b6000612dfe602683613556565b9150612e09826139ae565b604082019050919050565b6000612e21601c83613556565b9150612e2c826139fd565b602082019050919050565b6000612e44600c83613556565b9150612e4f82613a26565b602082019050919050565b6000612e67602483613556565b9150612e7282613a4f565b604082019050919050565b6000612e8a601983613556565b9150612e9582613a9e565b602082019050919050565b6000612ead602c83613556565b9150612eb882613ac7565b604082019050919050565b6000612ed0601283613556565b9150612edb82613b16565b602082019050919050565b6000612ef3603883613556565b9150612efe82613b3f565b604082019050919050565b6000612f16602a83613556565b9150612f2182613b8e565b604082019050919050565b6000612f39602983613556565b9150612f4482613bdd565b604082019050919050565b6000612f5c602083613556565b9150612f6782613c2c565b602082019050919050565b6000612f7f602c83613556565b9150612f8a82613c55565b604082019050919050565b6000612fa2601083613556565b9150612fad82613ca4565b602082019050919050565b6000612fc5602083613556565b9150612fd082613ccd565b602082019050919050565b6000612fe8602983613556565b9150612ff382613cf6565b604082019050919050565b600061300b602f83613556565b915061301682613d45565b604082019050919050565b600061302e602183613556565b915061303982613d94565b604082019050919050565b6000613051603183613556565b915061305c82613de3565b604082019050919050565b6000613074602c83613556565b915061307f82613e32565b604082019050919050565b6000613097600983613556565b91506130a282613e81565b602082019050919050565b6130b6816136f1565b82525050565b60006130c88285612d57565b91506130d48284612d57565b91508190509392505050565b60006020820190506130f56000830184612cc7565b92915050565b60006080820190506131106000830187612cc7565b61311d6020830186612cc7565b61312a60408301856130ad565b818103606083015261313c8184612ce5565b905095945050505050565b600060408201905061315c6000830185612cc7565b61316960208301846130ad565b9392505050565b60006020820190506131856000830184612cd6565b92915050565b600060208201905081810360008301526131a58184612d1e565b905092915050565b600060208201905081810360008301526131c681612d88565b9050919050565b600060208201905081810360008301526131e681612dab565b9050919050565b6000602082019050818103600083015261320681612dce565b9050919050565b6000602082019050818103600083015261322681612df1565b9050919050565b6000602082019050818103600083015261324681612e14565b9050919050565b6000602082019050818103600083015261326681612e37565b9050919050565b6000602082019050818103600083015261328681612e5a565b9050919050565b600060208201905081810360008301526132a681612e7d565b9050919050565b600060208201905081810360008301526132c681612ea0565b9050919050565b600060208201905081810360008301526132e681612ec3565b9050919050565b6000602082019050818103600083015261330681612ee6565b9050919050565b6000602082019050818103600083015261332681612f09565b9050919050565b6000602082019050818103600083015261334681612f2c565b9050919050565b6000602082019050818103600083015261336681612f4f565b9050919050565b6000602082019050818103600083015261338681612f72565b9050919050565b600060208201905081810360008301526133a681612f95565b9050919050565b600060208201905081810360008301526133c681612fb8565b9050919050565b600060208201905081810360008301526133e681612fdb565b9050919050565b6000602082019050818103600083015261340681612ffe565b9050919050565b6000602082019050818103600083015261342681613021565b9050919050565b6000602082019050818103600083015261344681613044565b9050919050565b6000602082019050818103600083015261346681613067565b9050919050565b600060208201905081810360008301526134868161308a565b9050919050565b60006020820190506134a260008301846130ad565b92915050565b60006134b26134c3565b90506134be828261376f565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e8576134e76138a7565b5b6134f1826138d6565b9050602081019050919050565b600067ffffffffffffffff821115613519576135186138a7565b5b613522826138d6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061357d826136f1565b9150613588836136f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bd576135bc61381a565b5b828201905092915050565b60006135d3826136f1565b91506135de836136f1565b9250826135ee576135ed613849565b5b828204905092915050565b6000613604826136f1565b915061360f836136f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136485761364761381a565b5b828202905092915050565b600061365e826136f1565b9150613669836136f1565b92508282101561367c5761367b61381a565b5b828203905092915050565b6000613692826136d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561372857808201518184015260208101905061370d565b83811115613737576000848401525b50505050565b6000600282049050600182168061375557607f821691505b6020821081141561376957613768613878565b5b50919050565b613778826138d6565b810181811067ffffffffffffffff82111715613797576137966138a7565b5b80604052505050565b60006137ab826136f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137de576137dd61381a565b5b600182019050919050565b60006137f4826136f1565b91506137ff836136f1565b92508261380f5761380e613849565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6d696e74696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f77726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f65786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720746f6f206d616e7900000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b613eb381613687565b8114613ebe57600080fd5b50565b613eca81613699565b8114613ed557600080fd5b50565b613ee1816136a5565b8114613eec57600080fd5b50565b613ef8816136f1565b8114613f0357600080fd5b5056fea264697066735822122040c900c0a5ac2b517b2d482b9792d037d9e00becb0c18dc3140503be9bc0316164736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d665064564a754e677a75735456354e37524c61576732596d347a54436b6958634a32566b63773363343432692f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmfPdVJuNgzusTV5N7RLaWg2Ym4zTCkiXcJ2Vkcw3c442i/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d665064564a754e677a
Arg [3] : 75735456354e37524c61576732596d347a54436b6958634a32566b6377336334
Arg [4] : 3432692f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48487:2308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50337:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20568:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22127:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21650:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34080:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23017:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33748:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48716:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49755:135;;;;;;;;;;;;;:::i;:::-;;23427:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34270:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49898:100;;;;;;;;;;;;;:::i;:::-;;50685:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20262:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19992:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41149:94;;;;;;;;;;;;;:::i;:::-;;48616:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40498:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20737:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48764:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48982:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22420:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23683:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20912:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50009:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49636:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41398:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48671:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50337:212;50476:4;50505:36;50529:11;50505:23;:36::i;:::-;50498:43;;50337:212;;;:::o;20568:100::-;20622:13;20655:5;20648:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20568:100;:::o;22127:221::-;22203:7;22231:16;22239:7;22231;:16::i;:::-;22223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22316:15;:24;22332:7;22316:24;;;;;;;;;;;;;;;;;;;;;22309:31;;22127:221;;;:::o;21650:411::-;21731:13;21747:23;21762:7;21747:14;:23::i;:::-;21731:39;;21795:5;21789:11;;:2;:11;;;;21781:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21889:5;21873:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21898:37;21915:5;21922:12;:10;:12::i;:::-;21898:16;:37::i;:::-;21873:62;21851:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22032:21;22041:2;22045:7;22032:8;:21::i;:::-;21650:411;;;:::o;34080:113::-;34141:7;34168:10;:17;;;;34161:24;;34080:113;:::o;23017:339::-;23212:41;23231:12;:10;:12::i;:::-;23245:7;23212:18;:41::i;:::-;23204:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23320:28;23330:4;23336:2;23340:7;23320:9;:28::i;:::-;23017:339;;;:::o;33748:256::-;33845:7;33881:23;33898:5;33881:16;:23::i;:::-;33873:5;:31;33865:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33970:12;:19;33983:5;33970:19;;;;;;;;;;;;;;;:26;33990:5;33970:26;;;;;;;;;;;;33963:33;;33748:256;;;;:::o;48716:41::-;48753:4;48716:41;:::o;49755:135::-;40729:12;:10;:12::i;:::-;40718:23;;:7;:5;:7::i;:::-;:23;;;40710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49799:15:::1;49817:21;49799:39;;49853:10;49845:28;;:37;49874:7;49845:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40789:1;49755:135::o:0;23427:185::-;23565:39;23582:4;23588:2;23592:7;23565:39;;;;;;;;;;;;:16;:39::i;:::-;23427:185;;;:::o;34270:233::-;34345:7;34381:30;:28;:30::i;:::-;34373:5;:38;34365:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34478:10;34489:5;34478:17;;;;;;;;;;;;;;;;;;;;;;;;34471:24;;34270:233;;;:::o;49898:100::-;40729:12;:10;:12::i;:::-;40718:23;;:7;:5;:7::i;:::-;:23;;;40710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49976:14:::1;;;;;;;;;;;49975:15;49958:14;;:32;;;;;;;;;;;;;;;;;;49898:100::o:0;50685:102::-;40729:12;:10;:12::i;:::-;40718:23;;:7;:5;:7::i;:::-;:23;;;40710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50772:7:::1;50756:13;:23;;;;;;;;;;;;:::i;:::-;;50685:102:::0;:::o;20262:239::-;20334:7;20354:13;20370:7;:16;20378:7;20370:16;;;;;;;;;;;;;;;;;;;;;20354:32;;20422:1;20405:19;;:5;:19;;;;20397:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20488:5;20481:12;;;20262:239;;;:::o;19992:208::-;20064:7;20109:1;20092:19;;:5;:19;;;;20084:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20176:9;:16;20186:5;20176:16;;;;;;;;;;;;;;;;20169:23;;19992:208;;;:::o;41149:94::-;40729:12;:10;:12::i;:::-;40718:23;;:7;:5;:7::i;:::-;:23;;;40710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41214:21:::1;41232:1;41214:9;:21::i;:::-;41149:94::o:0;48616:48::-;48652:12;48616:48;:::o;40498:87::-;40544:7;40571:6;;;;;;;;;;;40564:13;;40498:87;:::o;20737:104::-;20793:13;20826:7;20819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20737:104;:::o;48764:34::-;;;;;;;;;;;;;:::o;48982:646::-;49062:7;:5;:7::i;:::-;49048:21;;:10;:21;;;:39;;;;49073:14;;;;;;;;;;;49048:39;49040:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;48708:1;49137:8;:22;;49129:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49212:18;49221:8;49212;:18::i;:::-;49199:9;:31;49191:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;48753:4;49266:13;:11;:13::i;:::-;:26;49258:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48753:4;49341:8;49325:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49317:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49411:6;49406:169;49427:8;49423:1;:12;49406:169;;;49457:9;;:11;;;;;;;;;:::i;:::-;;;;;;49485:18;49506:9;;49485:30;;49530:33;49540:10;49552;49530:9;:33::i;:::-;49406:169;49437:3;;;;;:::i;:::-;;;;49406:169;;;;49592:28;49599:10;49611:8;49592:28;;;;;;;:::i;:::-;;;;;;;;48982:646;:::o;22420:295::-;22535:12;:10;:12::i;:::-;22523:24;;:8;:24;;;;22515:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22635:8;22590:18;:32;22609:12;:10;:12::i;:::-;22590:32;;;;;;;;;;;;;;;:42;22623:8;22590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22688:8;22659:48;;22674:12;:10;:12::i;:::-;22659:48;;;22698:8;22659:48;;;;;;:::i;:::-;;;;;;;;22420:295;;:::o;23683:328::-;23858:41;23877:12;:10;:12::i;:::-;23891:7;23858:18;:41::i;:::-;23850:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23964:39;23978:4;23984:2;23988:7;23997:5;23964:13;:39::i;:::-;23683:328;;;;:::o;20912:334::-;20985:13;21019:16;21027:7;21019;:16::i;:::-;21011:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21100:21;21124:10;:8;:10::i;:::-;21100:34;;21176:1;21158:7;21152:21;:25;:86;;;;;;;;;;;;;;;;;21204:7;21213:18;:7;:16;:18::i;:::-;21187:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21152:86;21145:93;;;20912:334;;;:::o;50009:108::-;50056:7;50096:13;:11;:13::i;:::-;48753:4;50083:26;;;;:::i;:::-;50076:33;;50009:108;:::o;49636:111::-;49692:7;49731:8;48652:12;49719:20;;;;:::i;:::-;49712:27;;49636:111;;;:::o;22786:164::-;22883:4;22907:18;:25;22926:5;22907:25;;;;;;;;;;;;;;;:35;22933:8;22907:35;;;;;;;;;;;;;;;;;;;;;;;;;22900:42;;22786:164;;;;:::o;41398:192::-;40729:12;:10;:12::i;:::-;40718:23;;:7;:5;:7::i;:::-;:23;;;40710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41507:1:::1;41487:22;;:8;:22;;;;41479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41563:19;41573:8;41563:9;:19::i;:::-;41398:192:::0;:::o;48671:38::-;48708:1;48671:38;:::o;33440:224::-;33542:4;33581:35;33566:50;;;:11;:50;;;;:90;;;;33620:36;33644:11;33620:23;:36::i;:::-;33566:90;33559:97;;33440:224;;;:::o;25521:127::-;25586:4;25638:1;25610:30;;:7;:16;25618:7;25610:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25603:37;;25521:127;;;:::o;15335:98::-;15388:7;15415:10;15408:17;;15335:98;:::o;29503:174::-;29605:2;29578:15;:24;29594:7;29578:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29661:7;29657:2;29623:46;;29632:23;29647:7;29632:14;:23::i;:::-;29623:46;;;;;;;;;;;;29503:174;;:::o;25815:348::-;25908:4;25933:16;25941:7;25933;:16::i;:::-;25925:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26009:13;26025:23;26040:7;26025:14;:23::i;:::-;26009:39;;26078:5;26067:16;;:7;:16;;;:51;;;;26111:7;26087:31;;:20;26099:7;26087:11;:20::i;:::-;:31;;;26067:51;:87;;;;26122:32;26139:5;26146:7;26122:16;:32::i;:::-;26067:87;26059:96;;;25815:348;;;;:::o;28807:578::-;28966:4;28939:31;;:23;28954:7;28939:14;:23::i;:::-;:31;;;28931:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29049:1;29035:16;;:2;:16;;;;29027:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29105:39;29126:4;29132:2;29136:7;29105:20;:39::i;:::-;29209:29;29226:1;29230:7;29209:8;:29::i;:::-;29270:1;29251:9;:15;29261:4;29251:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29299:1;29282:9;:13;29292:2;29282:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29330:2;29311:7;:16;29319:7;29311:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29369:7;29365:2;29350:27;;29359:4;29350:27;;;;;;;;;;;;28807:578;;;:::o;41598:173::-;41654:16;41673:6;;;;;;;;;;;41654:25;;41699:8;41690:6;;:17;;;;;;;;;;;;;;;;;;41754:8;41723:40;;41744:8;41723:40;;;;;;;;;;;;41598:173;;:::o;26505:110::-;26581:26;26591:2;26595:7;26581:26;;;;;;;;;;;;:9;:26::i;:::-;26505:110;;:::o;24893:315::-;25050:28;25060:4;25066:2;25070:7;25050:9;:28::i;:::-;25097:48;25120:4;25126:2;25130:7;25139:5;25097:22;:48::i;:::-;25089:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24893:315;;;;:::o;50560:114::-;50620:13;50653;50646:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50560:114;:::o;15775:723::-;15831:13;16061:1;16052:5;:10;16048:53;;;16079:10;;;;;;;;;;;;;;;;;;;;;16048:53;16111:12;16126:5;16111:20;;16142:14;16167:78;16182:1;16174:4;:9;16167:78;;16200:8;;;;;:::i;:::-;;;;16231:2;16223:10;;;;;:::i;:::-;;;16167:78;;;16255:19;16287:6;16277:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16255:39;;16305:154;16321:1;16312:5;:10;16305:154;;16349:1;16339:11;;;;;:::i;:::-;;;16416:2;16408:5;:10;;;;:::i;:::-;16395:2;:24;;;;:::i;:::-;16382:39;;16365:6;16372;16365:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16445:2;16436:11;;;;;:::i;:::-;;;16305:154;;;16483:6;16469:21;;;;;15775:723;;;;:::o;19623:305::-;19725:4;19777:25;19762:40;;;:11;:40;;;;:105;;;;19834:33;19819:48;;;:11;:48;;;;19762:105;:158;;;;19884:36;19908:11;19884:23;:36::i;:::-;19762:158;19742:178;;19623:305;;;:::o;50125:204::-;50276:45;50303:4;50309:2;50313:7;50276:26;:45::i;:::-;50125:204;;;:::o;26842:321::-;26972:18;26978:2;26982:7;26972:5;:18::i;:::-;27023:54;27054:1;27058:2;27062:7;27071:5;27023:22;:54::i;:::-;27001:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26842:321;;;:::o;30242:803::-;30397:4;30418:15;:2;:13;;;:15::i;:::-;30414:624;;;30470:2;30454:36;;;30491:12;:10;:12::i;:::-;30505:4;30511:7;30520:5;30454:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30450:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30717:1;30700:6;:13;:18;30696:272;;;30743:60;;;;;;;;;;:::i;:::-;;;;;;;;30696:272;30918:6;30912:13;30903:6;30899:2;30895:15;30888:38;30450:533;30587:45;;;30577:55;;;:6;:55;;;;30570:62;;;;;30414:624;31022:4;31015:11;;30242:803;;;;;;;:::o;18232:157::-;18317:4;18356:25;18341:40;;;:11;:40;;;;18334:47;;18232:157;;;:::o;35116:589::-;35260:45;35287:4;35293:2;35297:7;35260:26;:45::i;:::-;35338:1;35322:18;;:4;:18;;;35318:187;;;35357:40;35389:7;35357:31;:40::i;:::-;35318:187;;;35427:2;35419:10;;:4;:10;;;35415:90;;35446:47;35479:4;35485:7;35446:32;:47::i;:::-;35415:90;35318:187;35533:1;35519:16;;:2;:16;;;35515:183;;;35552:45;35589:7;35552:36;:45::i;:::-;35515:183;;;35625:4;35619:10;;:2;:10;;;35615:83;;35646:40;35674:2;35678:7;35646:27;:40::i;:::-;35615:83;35515:183;35116:589;;;:::o;27499:382::-;27593:1;27579:16;;:2;:16;;;;27571:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27652:16;27660:7;27652;:16::i;:::-;27651:17;27643:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27714:45;27743:1;27747:2;27751:7;27714:20;:45::i;:::-;27789:1;27772:9;:13;27782:2;27772:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27820:2;27801:7;:16;27809:7;27801:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27865:7;27861:2;27840:33;;27857:1;27840:33;;;;;;;;;;;;27499:382;;:::o;7682:387::-;7742:4;7950:12;8017:7;8005:20;7997:28;;8060:1;8053:4;:8;8046:15;;;7682:387;;;:::o;31617:126::-;;;;:::o;36428:164::-;36532:10;:17;;;;36505:15;:24;36521:7;36505:24;;;;;;;;;;;:44;;;;36560:10;36576:7;36560:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36428:164;:::o;37219:988::-;37485:22;37535:1;37510:22;37527:4;37510:16;:22::i;:::-;:26;;;;:::i;:::-;37485:51;;37547:18;37568:17;:26;37586:7;37568:26;;;;;;;;;;;;37547:47;;37715:14;37701:10;:28;37697:328;;37746:19;37768:12;:18;37781:4;37768:18;;;;;;;;;;;;;;;:34;37787:14;37768:34;;;;;;;;;;;;37746:56;;37852:11;37819:12;:18;37832:4;37819:18;;;;;;;;;;;;;;;:30;37838:10;37819:30;;;;;;;;;;;:44;;;;37969:10;37936:17;:30;37954:11;37936:30;;;;;;;;;;;:43;;;;37697:328;;38121:17;:26;38139:7;38121:26;;;;;;;;;;;38114:33;;;38165:12;:18;38178:4;38165:18;;;;;;;;;;;;;;;:34;38184:14;38165:34;;;;;;;;;;;38158:41;;;37219:988;;;;:::o;38502:1079::-;38755:22;38800:1;38780:10;:17;;;;:21;;;;:::i;:::-;38755:46;;38812:18;38833:15;:24;38849:7;38833:24;;;;;;;;;;;;38812:45;;39184:19;39206:10;39217:14;39206:26;;;;;;;;;;;;;;;;;;;;;;;;39184:48;;39270:11;39245:10;39256;39245:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;39381:10;39350:15;:28;39366:11;39350:28;;;;;;;;;;;:41;;;;39522:15;:24;39538:7;39522:24;;;;;;;;;;;39515:31;;;39557:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38502:1079;;;;:::o;36006:221::-;36091:14;36108:20;36125:2;36108:16;:20::i;:::-;36091:37;;36166:7;36139:12;:16;36152:2;36139:16;;;;;;;;;;;;;;;:24;36156:6;36139:24;;;;;;;;;;;:34;;;;36213:6;36184:17;:26;36202:7;36184:26;;;;;;;;;;;:35;;;;36006:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15402:220;;;:::o;15628:365::-;15770:3;15791:66;15855:1;15850:3;15791:66;:::i;:::-;15784:73;;15866:93;15955:3;15866:93;:::i;:::-;15984:2;15979:3;15975:12;15968:19;;15774:219;;;:::o;15999:118::-;16086:24;16104:5;16086:24;:::i;:::-;16081:3;16074:37;16064:53;;:::o;16123:435::-;16303:3;16325:95;16416:3;16407:6;16325:95;:::i;:::-;16318:102;;16437:95;16528:3;16519:6;16437:95;:::i;:::-;16430:102;;16549:3;16542:10;;16307:251;;;;;:::o;16564:222::-;16657:4;16695:2;16684:9;16680:18;16672:26;;16708:71;16776:1;16765:9;16761:17;16752:6;16708:71;:::i;:::-;16662:124;;;;:::o;16792:640::-;16987:4;17025:3;17014:9;17010:19;17002:27;;17039:71;17107:1;17096:9;17092:17;17083:6;17039:71;:::i;:::-;17120:72;17188:2;17177:9;17173:18;17164:6;17120:72;:::i;:::-;17202;17270:2;17259:9;17255:18;17246:6;17202:72;:::i;:::-;17321:9;17315:4;17311:20;17306:2;17295:9;17291:18;17284:48;17349:76;17420:4;17411:6;17349:76;:::i;:::-;17341:84;;16992:440;;;;;;;:::o;17438:332::-;17559:4;17597:2;17586:9;17582:18;17574:26;;17610:71;17678:1;17667:9;17663:17;17654:6;17610:71;:::i;:::-;17691:72;17759:2;17748:9;17744:18;17735:6;17691:72;:::i;:::-;17564:206;;;;;:::o;17776:210::-;17863:4;17901:2;17890:9;17886:18;17878:26;;17914:65;17976:1;17965:9;17961:17;17952:6;17914:65;:::i;:::-;17868:118;;;;:::o;17992:313::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:78;18293:4;18284:6;18220:78;:::i;:::-;18212:86;;18110:195;;;;:::o;18311:419::-;18477:4;18515:2;18504:9;18500:18;18492:26;;18564:9;18558:4;18554:20;18550:1;18539:9;18535:17;18528:47;18592:131;18718:4;18592:131;:::i;:::-;18584:139;;18482:248;;;:::o;18736:419::-;18902:4;18940:2;18929:9;18925:18;18917:26;;18989:9;18983:4;18979:20;18975:1;18964:9;18960:17;18953:47;19017:131;19143:4;19017:131;:::i;:::-;19009:139;;18907:248;;;:::o;19161:419::-;19327:4;19365:2;19354:9;19350:18;19342:26;;19414:9;19408:4;19404:20;19400:1;19389:9;19385:17;19378:47;19442:131;19568:4;19442:131;:::i;:::-;19434:139;;19332:248;;;:::o;19586:419::-;19752:4;19790:2;19779:9;19775:18;19767:26;;19839:9;19833:4;19829:20;19825:1;19814:9;19810:17;19803:47;19867:131;19993:4;19867:131;:::i;:::-;19859:139;;19757:248;;;:::o;20011:419::-;20177:4;20215:2;20204:9;20200:18;20192:26;;20264:9;20258:4;20254:20;20250:1;20239:9;20235:17;20228:47;20292:131;20418:4;20292:131;:::i;:::-;20284:139;;20182:248;;;:::o;20436:419::-;20602:4;20640:2;20629:9;20625:18;20617:26;;20689:9;20683:4;20679:20;20675:1;20664:9;20660:17;20653:47;20717:131;20843:4;20717:131;:::i;:::-;20709:139;;20607:248;;;:::o;20861:419::-;21027:4;21065:2;21054:9;21050:18;21042:26;;21114:9;21108:4;21104:20;21100:1;21089:9;21085:17;21078:47;21142:131;21268:4;21142:131;:::i;:::-;21134:139;;21032:248;;;:::o;21286:419::-;21452:4;21490:2;21479:9;21475:18;21467:26;;21539:9;21533:4;21529:20;21525:1;21514:9;21510:17;21503:47;21567:131;21693:4;21567:131;:::i;:::-;21559:139;;21457:248;;;:::o;21711:419::-;21877:4;21915:2;21904:9;21900:18;21892:26;;21964:9;21958:4;21954:20;21950:1;21939:9;21935:17;21928:47;21992:131;22118:4;21992:131;:::i;:::-;21984:139;;21882:248;;;:::o;22136:419::-;22302:4;22340:2;22329:9;22325:18;22317:26;;22389:9;22383:4;22379:20;22375:1;22364:9;22360:17;22353:47;22417:131;22543:4;22417:131;:::i;:::-;22409:139;;22307:248;;;:::o;22561:419::-;22727:4;22765:2;22754:9;22750:18;22742:26;;22814:9;22808:4;22804:20;22800:1;22789:9;22785:17;22778:47;22842:131;22968:4;22842:131;:::i;:::-;22834:139;;22732:248;;;:::o;22986:419::-;23152:4;23190:2;23179:9;23175:18;23167:26;;23239:9;23233:4;23229:20;23225:1;23214:9;23210:17;23203:47;23267:131;23393:4;23267:131;:::i;:::-;23259:139;;23157:248;;;:::o;23411:419::-;23577:4;23615:2;23604:9;23600:18;23592:26;;23664:9;23658:4;23654:20;23650:1;23639:9;23635:17;23628:47;23692:131;23818:4;23692:131;:::i;:::-;23684:139;;23582:248;;;:::o;23836:419::-;24002:4;24040:2;24029:9;24025:18;24017:26;;24089:9;24083:4;24079:20;24075:1;24064:9;24060:17;24053:47;24117:131;24243:4;24117:131;:::i;:::-;24109:139;;24007:248;;;:::o;24261:419::-;24427:4;24465:2;24454:9;24450:18;24442:26;;24514:9;24508:4;24504:20;24500:1;24489:9;24485:17;24478:47;24542:131;24668:4;24542:131;:::i;:::-;24534:139;;24432:248;;;:::o;24686:419::-;24852:4;24890:2;24879:9;24875:18;24867:26;;24939:9;24933:4;24929:20;24925:1;24914:9;24910:17;24903:47;24967:131;25093:4;24967:131;:::i;:::-;24959:139;;24857:248;;;:::o;25111:419::-;25277:4;25315:2;25304:9;25300:18;25292:26;;25364:9;25358:4;25354:20;25350:1;25339:9;25335:17;25328:47;25392:131;25518:4;25392:131;:::i;:::-;25384:139;;25282:248;;;:::o;25536:419::-;25702:4;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25707:248;;;:::o;25961:419::-;26127:4;26165:2;26154:9;26150:18;26142:26;;26214:9;26208:4;26204:20;26200:1;26189:9;26185:17;26178:47;26242:131;26368:4;26242:131;:::i;:::-;26234:139;;26132:248;;;:::o;26386:419::-;26552:4;26590:2;26579:9;26575:18;26567:26;;26639:9;26633:4;26629:20;26625:1;26614:9;26610:17;26603:47;26667:131;26793:4;26667:131;:::i;:::-;26659:139;;26557:248;;;:::o;26811:419::-;26977:4;27015:2;27004:9;27000:18;26992:26;;27064:9;27058:4;27054:20;27050:1;27039:9;27035:17;27028:47;27092:131;27218:4;27092:131;:::i;:::-;27084:139;;26982:248;;;:::o;27236:419::-;27402:4;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27407:248;;;:::o;27661:419::-;27827:4;27865:2;27854:9;27850:18;27842:26;;27914:9;27908:4;27904:20;27900:1;27889:9;27885:17;27878:47;27942:131;28068:4;27942:131;:::i;:::-;27934:139;;27832:248;;;:::o;28086:222::-;28179:4;28217:2;28206:9;28202:18;28194:26;;28230:71;28298:1;28287:9;28283:17;28274:6;28230:71;:::i;:::-;28184:124;;;;:::o;28314:129::-;28348:6;28375:20;;:::i;:::-;28365:30;;28404:33;28432:4;28424:6;28404:33;:::i;:::-;28355:88;;;:::o;28449:75::-;28482:6;28515:2;28509:9;28499:19;;28489:35;:::o;28530:307::-;28591:4;28681:18;28673:6;28670:30;28667:2;;;28703:18;;:::i;:::-;28667:2;28741:29;28763:6;28741:29;:::i;:::-;28733:37;;28825:4;28819;28815:15;28807:23;;28596:241;;;:::o;28843:308::-;28905:4;28995:18;28987:6;28984:30;28981:2;;;29017:18;;:::i;:::-;28981:2;29055:29;29077:6;29055:29;:::i;:::-;29047:37;;29139:4;29133;29129:15;29121:23;;28910:241;;;:::o;29157:98::-;29208:6;29242:5;29236:12;29226:22;;29215:40;;;:::o;29261:99::-;29313:6;29347:5;29341:12;29331:22;;29320:40;;;:::o;29366:168::-;29449:11;29483:6;29478:3;29471:19;29523:4;29518:3;29514:14;29499:29;;29461:73;;;;:::o;29540:169::-;29624:11;29658:6;29653:3;29646:19;29698:4;29693:3;29689:14;29674:29;;29636:73;;;;:::o;29715:148::-;29817:11;29854:3;29839:18;;29829:34;;;;:::o;29869:305::-;29909:3;29928:20;29946:1;29928:20;:::i;:::-;29923:25;;29962:20;29980:1;29962:20;:::i;:::-;29957:25;;30116:1;30048:66;30044:74;30041:1;30038:81;30035:2;;;30122:18;;:::i;:::-;30035:2;30166:1;30163;30159:9;30152:16;;29913:261;;;;:::o;30180:185::-;30220:1;30237:20;30255:1;30237:20;:::i;:::-;30232:25;;30271:20;30289:1;30271:20;:::i;:::-;30266:25;;30310:1;30300:2;;30315:18;;:::i;:::-;30300:2;30357:1;30354;30350:9;30345:14;;30222:143;;;;:::o;30371:348::-;30411:7;30434:20;30452:1;30434:20;:::i;:::-;30429:25;;30468:20;30486:1;30468:20;:::i;:::-;30463:25;;30656:1;30588:66;30584:74;30581:1;30578:81;30573:1;30566:9;30559:17;30555:105;30552:2;;;30663:18;;:::i;:::-;30552:2;30711:1;30708;30704:9;30693:20;;30419:300;;;;:::o;30725:191::-;30765:4;30785:20;30803:1;30785:20;:::i;:::-;30780:25;;30819:20;30837:1;30819:20;:::i;:::-;30814:25;;30858:1;30855;30852:8;30849:2;;;30863:18;;:::i;:::-;30849:2;30908:1;30905;30901:9;30893:17;;30770:146;;;;:::o;30922:96::-;30959:7;30988:24;31006:5;30988:24;:::i;:::-;30977:35;;30967:51;;;:::o;31024:90::-;31058:7;31101:5;31094:13;31087:21;31076:32;;31066:48;;;:::o;31120:149::-;31156:7;31196:66;31189:5;31185:78;31174:89;;31164:105;;;:::o;31275:126::-;31312:7;31352:42;31345:5;31341:54;31330:65;;31320:81;;;:::o;31407:77::-;31444:7;31473:5;31462:16;;31452:32;;;:::o;31490:154::-;31574:6;31569:3;31564;31551:30;31636:1;31627:6;31622:3;31618:16;31611:27;31541:103;;;:::o;31650:307::-;31718:1;31728:113;31742:6;31739:1;31736:13;31728:113;;;31827:1;31822:3;31818:11;31812:18;31808:1;31803:3;31799:11;31792:39;31764:2;31761:1;31757:10;31752:15;;31728:113;;;31859:6;31856:1;31853:13;31850:2;;;31939:1;31930:6;31925:3;31921:16;31914:27;31850:2;31699:258;;;;:::o;31963:320::-;32007:6;32044:1;32038:4;32034:12;32024:22;;32091:1;32085:4;32081:12;32112:18;32102:2;;32168:4;32160:6;32156:17;32146:27;;32102:2;32230;32222:6;32219:14;32199:18;32196:38;32193:2;;;32249:18;;:::i;:::-;32193:2;32014:269;;;;:::o;32289:281::-;32372:27;32394:4;32372:27;:::i;:::-;32364:6;32360:40;32502:6;32490:10;32487:22;32466:18;32454:10;32451:34;32448:62;32445:2;;;32513:18;;:::i;:::-;32445:2;32553:10;32549:2;32542:22;32332:238;;;:::o;32576:233::-;32615:3;32638:24;32656:5;32638:24;:::i;:::-;32629:33;;32684:66;32677:5;32674:77;32671:2;;;32754:18;;:::i;:::-;32671:2;32801:1;32794:5;32790:13;32783:20;;32619:190;;;:::o;32815:176::-;32847:1;32864:20;32882:1;32864:20;:::i;:::-;32859:25;;32898:20;32916:1;32898:20;:::i;:::-;32893:25;;32937:1;32927:2;;32942:18;;:::i;:::-;32927:2;32983:1;32980;32976:9;32971:14;;32849:142;;;;:::o;32997:180::-;33045:77;33042:1;33035:88;33142:4;33139:1;33132:15;33166:4;33163:1;33156:15;33183:180;33231:77;33228:1;33221:88;33328:4;33325:1;33318:15;33352:4;33349:1;33342:15;33369:180;33417:77;33414:1;33407:88;33514:4;33511:1;33504:15;33538:4;33535:1;33528:15;33555:180;33603:77;33600:1;33593:88;33700:4;33697:1;33690:15;33724:4;33721:1;33714:15;33741:102;33782:6;33833:2;33829:7;33824:2;33817:5;33813:14;33809:28;33799:38;;33789:54;;;:::o;33849:176::-;33989:28;33985:1;33977:6;33973:14;33966:52;33955:70;:::o;34031:230::-;34171:34;34167:1;34159:6;34155:14;34148:58;34240:13;34235:2;34227:6;34223:15;34216:38;34137:124;:::o;34267:237::-;34407:34;34403:1;34395:6;34391:14;34384:58;34476:20;34471:2;34463:6;34459:15;34452:45;34373:131;:::o;34510:225::-;34650:34;34646:1;34638:6;34634:14;34627:58;34719:8;34714:2;34706:6;34702:15;34695:33;34616:119;:::o;34741:178::-;34881:30;34877:1;34869:6;34865:14;34858:54;34847:72;:::o;34925:162::-;35065:14;35061:1;35053:6;35049:14;35042:38;35031:56;:::o;35093:223::-;35233:34;35229:1;35221:6;35217:14;35210:58;35302:6;35297:2;35289:6;35285:15;35278:31;35199:117;:::o;35322:175::-;35462:27;35458:1;35450:6;35446:14;35439:51;35428:69;:::o;35503:231::-;35643:34;35639:1;35631:6;35627:14;35620:58;35712:14;35707:2;35699:6;35695:15;35688:39;35609:125;:::o;35740:168::-;35880:20;35876:1;35868:6;35864:14;35857:44;35846:62;:::o;35914:243::-;36054:34;36050:1;36042:6;36038:14;36031:58;36123:26;36118:2;36110:6;36106:15;36099:51;36020:137;:::o;36163:229::-;36303:34;36299:1;36291:6;36287:14;36280:58;36372:12;36367:2;36359:6;36355:15;36348:37;36269:123;:::o;36398:228::-;36538:34;36534:1;36526:6;36522:14;36515:58;36607:11;36602:2;36594:6;36590:15;36583:36;36504:122;:::o;36632:182::-;36772:34;36768:1;36760:6;36756:14;36749:58;36738:76;:::o;36820:231::-;36960:34;36956:1;36948:6;36944:14;36937:58;37029:14;37024:2;37016:6;37012:15;37005:39;36926:125;:::o;37057:166::-;37197:18;37193:1;37185:6;37181:14;37174:42;37163:60;:::o;37229:182::-;37369:34;37365:1;37357:6;37353:14;37346:58;37335:76;:::o;37417:228::-;37557:34;37553:1;37545:6;37541:14;37534:58;37626:11;37621:2;37613:6;37609:15;37602:36;37523:122;:::o;37651:234::-;37791:34;37787:1;37779:6;37775:14;37768:58;37860:17;37855:2;37847:6;37843:15;37836:42;37757:128;:::o;37891:220::-;38031:34;38027:1;38019:6;38015:14;38008:58;38100:3;38095:2;38087:6;38083:15;38076:28;37997:114;:::o;38117:236::-;38257:34;38253:1;38245:6;38241:14;38234:58;38326:19;38321:2;38313:6;38309:15;38302:44;38223:130;:::o;38359:231::-;38499:34;38495:1;38487:6;38483:14;38476:58;38568:14;38563:2;38555:6;38551:15;38544:39;38465:125;:::o;38596:159::-;38736:11;38732:1;38724:6;38720:14;38713:35;38702:53;:::o;38761:122::-;38834:24;38852:5;38834:24;:::i;:::-;38827:5;38824:35;38814:2;;38873:1;38870;38863:12;38814:2;38804:79;:::o;38889:116::-;38959:21;38974:5;38959:21;:::i;:::-;38952:5;38949:32;38939:2;;38995:1;38992;38985:12;38939:2;38929:76;:::o;39011:120::-;39083:23;39100:5;39083:23;:::i;:::-;39076:5;39073:34;39063:2;;39121:1;39118;39111:12;39063:2;39053:78;:::o;39137:122::-;39210:24;39228:5;39210:24;:::i;:::-;39203:5;39200:35;39190:2;;39249:1;39246;39239:12;39190:2;39180:79;:::o

Swarm Source

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