ETH Price: $2,279.11 (+2.06%)

Token

Mecha (MECHA)
 

Overview

Max Total Supply

0 MECHA

Holders

192

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MECHA
0x5603cbc34c876be9b6cacfe52140026a347eb4ce
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:
Mecha

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-27
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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);

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: Mecha.sol


pragma solidity ^0.8.11;





contract Mecha is ERC721, Ownable {

    using Strings for uint;
    using Counters for Counters.Counter;

    string private _tokenURI;
    string private _contractURI;
    Counters.Counter private _tokenIdCounter;

    uint public maxSupply = 250;
    uint public tokenPrice = 0.25 ether;
    uint public renewalPrice = 0.25 ether;
    bool public privateSaleActive = false;
    bool public saleActive = false;
    bool public transfersEnabled = false;

    mapping(address => bool) whitelistedAddresses;
    mapping(uint => uint) public expiryTime;

    constructor(string memory tokenURI_, string memory contractURI_) ERC721("Mecha", "MECHA") {
        _tokenURI = tokenURI_;
        _contractURI = contractURI_;
    }

    modifier nonOwner(address to) {
        if (msg.sender != owner()) {
            require(transfersEnabled, "Token transfers are currently disabled.");
            require(balanceOf(to) == 0, "User already holds a token.");
        }
        _;
    }

    function ownerOnlyMint(address _receiver) public onlyOwner {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(_receiver != address(0), "Receiver cannot be zero address.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        if (msg.sender != _receiver) {
            require(balanceOf(_receiver) == 0, "Individual already owns a token.");
        }

        _tokenIdCounter.increment();

        _safeMint(_receiver, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
    }

    function ownerRenewToken(uint _tokenId) external onlyOwner {
        require(_exists(_tokenId), "Token does not exist.");
        
        uint _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
    }

    function publicMint() public payable {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(tx.origin == msg.sender, "You cannot send tx from another contract.");
        require(saleActive, "Sale is currently not active.");
        require(balanceOf(msg.sender) == 0, "Individual already owns a token.");
        require(msg.value == tokenPrice, "Incorrect amount of ether sent.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
    }

    function privateMint() public payable {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(tx.origin == msg.sender, "You cannot send tx from another contract.");
        require(privateSaleActive, "Private sale is currently not active.");
        require(whitelistedAddresses[msg.sender], "Wallet is not whitelisted.");
        require(balanceOf(msg.sender) == 0, "Individual already owns a token.");
        require(msg.value == tokenPrice, "Incorrect amount of ether sent.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
    }

    function renewToken(uint _tokenId) public payable {
        require(tx.origin == msg.sender, "You cannot send tx from another contract.");
        require(msg.value == renewalPrice, "Incorrect amount of ether sent.");
        require(_exists(_tokenId), "Token does not exist.");

        uint _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
    }

    function changeRenewalPrice(uint _changedRenewalPrice) external onlyOwner {
        require(renewalPrice != _changedRenewalPrice, "Price did not change.");
        renewalPrice = _changedRenewalPrice;
    }

    function addWhitelist(address[] memory _addresses) public onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            whitelistedAddresses[_addresses[i]] = true;
        }
    }

    function hasWhitelist(address _address) public view returns (bool) {
        bool userIsWhitelisted = whitelistedAddresses[_address];
        return userIsWhitelisted;
    }

    function authenticateUser(uint _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp, "Token has expired. Please renew your token!");

        return msg.sender == ownerOf(_tokenId) ? true : false;
    }

    function addTokenSupply(uint _newTokens) external onlyOwner {
        maxSupply += _newTokens;
    }

    function removeTokens(uint _numTokens) external onlyOwner {
        require(maxSupply - _numTokens >= currentSupply(), "Supply cannot fall below minted tokens.");
        maxSupply -= _numTokens;
    }

    function currentSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }

    function tokenURI(uint _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(_tokenURI, _tokenId.toString()));
    }

    function setTokenURI(string calldata tokenURI_) external onlyOwner {
        _tokenURI = tokenURI_;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function setContractURI(string calldata contractURI_) external onlyOwner {
        _contractURI = contractURI_;
    }

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

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

        function togglePrivateSale() public onlyOwner {
        privateSaleActive = !privateSaleActive;
    }

    function toggleTransfers() public onlyOwner {
        transfersEnabled = !transfersEnabled;
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override nonOwner(to) {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Transfer caller is not owner nor approved.");
        require(expiryTime[tokenId] > block.timestamp, "Token has expired.");
        _safeTransfer(from, to, tokenId, _data);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override nonOwner(to) {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Transfer caller is not owner nor approved.");
        require(expiryTime[tokenId] > block.timestamp, "Token has expired.");
        _transfer(from, to, tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_newTokens","type":"uint256"}],"name":"addTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_changedRenewalPrice","type":"uint256"}],"name":"changeRenewalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hasWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerOnlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerRenewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"removeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"renewToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renewalPrice","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","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":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","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":[{"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":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260fa600a556703782dace9d90000600b819055600c55600d805462ffffff191690553480156200003357600080fd5b5060405162002c3f38038062002c3f8339810160408190526200005691620002da565b604051806040016040528060058152602001644d6563686160d81b815250604051806040016040528060058152602001644d4543484160d81b8152508160009080519060200190620000aa92919062000167565b508051620000c090600190602084019062000167565b505050620000dd620000d76200011160201b60201c565b62000115565b8151620000f290600790602085019062000167565b5080516200010890600890602084019062000167565b50505062000381565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001759062000344565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023557600080fd5b81516001600160401b03808211156200025257620002526200020d565b604051601f8301601f19908116603f011681019082821181831017156200027d576200027d6200020d565b816040528381526020925086838588010111156200029a57600080fd5b600091505b83821015620002be57858201830151818301840152908201906200029f565b83821115620002d05760008385830101525b9695505050505050565b60008060408385031215620002ee57600080fd5b82516001600160401b03808211156200030657600080fd5b620003148683870162000223565b935060208501519150808211156200032b57600080fd5b506200033a8582860162000223565b9150509250929050565b600181811c908216806200035957607f821691505b602082108114156200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b6128ae80620003916000396000f3fe6080604052600436106102515760003560e01c80638cdb7e8b11610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d4851461068a578063e985e9c51461069f578063edac985b146106e8578063f18d4dbb14610708578063f2fde38b14610728578063faab3def1461074857600080fd5b8063c87b56dd146105ff578063cdffd6ed1461061f578063d5abeb011461063f578063dfe5dd6814610655578063e0df5b6f1461066a57600080fd5b8063b88d4fde116100fd578063b88d4fde14610552578063b8cb65ee14610572578063bb026e3214610592578063be010c40146105b2578063bef97c87146105df57600080fd5b80638cdb7e8b146104a65780638da5cb5b146104df578063938e3d7b146104fd57806395d89b411461051d578063a22cb4651461053257600080fd5b80635fd8c710116101d2578063715018a611610196578063715018a61461042857806371e239471461043d578063771282f6146104505780637b55297a146104655780637d8966e41461047b5780637ff9b5961461049057600080fd5b80635fd8c710146103865780636352211e1461039b57806367805d71146103bb57806368428a1b146103db57806370a08231146103fa57600080fd5b806326092b831161021957806326092b83146103275780632a237bb61461032f5780633e5ac28f146103495780633f5ab2241461035e57806342842e0e1461036657600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806323b872dd14610307575b600080fd5b34801561026257600080fd5b506102766102713660046120b5565b610768565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107ba565b6040516102829190612131565b3480156102b957600080fd5b506102cd6102c8366004612144565b61084c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612179565b6108d9565b005b34801561031357600080fd5b506103056103223660046121a3565b6109ef565b610305610b21565b34801561033b57600080fd5b50600d546102769060ff1681565b34801561035557600080fd5b50610305610caf565b610305610cf8565b34801561037257600080fd5b506103056103813660046121a3565b610dee565b34801561039257600080fd5b50610305610e09565b3480156103a757600080fd5b506102cd6103b6366004612144565b610e62565b3480156103c757600080fd5b506103056103d63660046121df565b610ed9565b3480156103e757600080fd5b50600d5461027690610100900460ff1681565b34801561040657600080fd5b5061041a6104153660046121df565b611031565b604051908152602001610282565b34801561043457600080fd5b506103056110b8565b61030561044b366004612144565b6110ee565b34801561045c57600080fd5b5061041a6111e5565b34801561047157600080fd5b5061041a600c5481565b34801561048757600080fd5b506103056111f5565b34801561049c57600080fd5b5061041a600b5481565b3480156104b257600080fd5b506102766104c13660046121df565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156104eb57600080fd5b506006546001600160a01b03166102cd565b34801561050957600080fd5b506103056105183660046121fa565b61123c565b34801561052957600080fd5b506102a0611272565b34801561053e57600080fd5b5061030561054d36600461226c565b611281565b34801561055e57600080fd5b5061030561056d3660046122ef565b61128c565b34801561057e57600080fd5b5061030561058d366004612144565b6113c0565b34801561059e57600080fd5b506103056105ad366004612144565b611478565b3480156105be57600080fd5b5061041a6105cd366004612144565b600f6020526000908152604090205481565b3480156105eb57600080fd5b50600d546102769062010000900460ff1681565b34801561060b57600080fd5b506102a061061a366004612144565b6114f1565b34801561062b57600080fd5b5061027661063a366004612144565b61154a565b34801561064b57600080fd5b5061041a600a5481565b34801561066157600080fd5b50610305611612565b34801561067657600080fd5b506103056106853660046121fa565b611650565b34801561069657600080fd5b506102a0611686565b3480156106ab57600080fd5b506102766106ba3660046123af565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f457600080fd5b506103056107033660046123e2565b611695565b34801561071457600080fd5b50610305610723366004612144565b611727565b34801561073457600080fd5b506103056107433660046121df565b611763565b34801561075457600080fd5b50610305610763366004612144565b6117fb565b60006001600160e01b031982166380ac58cd60e01b148061079957506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c99061248f565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061248f565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b600061085782611825565b6108bd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108e482610e62565b9050806001600160a01b0316836001600160a01b031614156109525760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b4565b336001600160a01b038216148061096e575061096e81336106ba565b6109e05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b4565b6109ea8383611842565b505050565b81610a026006546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a9857600d5462010000900460ff16610a425760405162461bcd60e51b81526004016108b4906124ca565b610a4b81611031565b15610a985760405162461bcd60e51b815260206004820152601b60248201527f5573657220616c726561647920686f6c6473206120746f6b656e2e000000000060448201526064016108b4565b610aa233836118b0565b610abe5760405162461bcd60e51b81526004016108b490612511565b6000828152600f60205260409020544210610b105760405162461bcd60e51b81526020600482015260126024820152712a37b5b2b7103430b99032bc3834b932b21760711b60448201526064016108b4565b610b1b84848461199a565b50505050565b6000610b2c60095490565b610b37906001612571565b9050323314610b585760405162461bcd60e51b81526004016108b490612589565b600d54610100900460ff16610baf5760405162461bcd60e51b815260206004820152601d60248201527f53616c652069732063757272656e746c79206e6f74206163746976652e00000060448201526064016108b4565b610bb833611031565b15610c055760405162461bcd60e51b815260206004820181905260248201527f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e60448201526064016108b4565b600b543414610c565760405162461bcd60e51b815260206004820152601f60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e742e0060448201526064016108b4565b600a54811115610c785760405162461bcd60e51b81526004016108b4906125d2565b610c86600980546001019055565b610c903382611b36565b610c9d4262278d00612571565b6000918252600f602052604090912055565b6006546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b49061261f565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000610d0360095490565b610d0e906001612571565b9050323314610d2f5760405162461bcd60e51b81526004016108b490612589565b600d5460ff16610d8f5760405162461bcd60e51b815260206004820152602560248201527f507269766174652073616c652069732063757272656e746c79206e6f742061636044820152643a34bb329760d91b60648201526084016108b4565b336000908152600e602052604090205460ff16610baf5760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f742077686974656c69737465642e00000000000060448201526064016108b4565b6109ea8383836040518060200160405280600081525061128c565b6006546001600160a01b03163314610e335760405162461bcd60e51b81526004016108b49061261f565b60405133904780156108fc02916000818181858888f19350505050158015610e5f573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b4565b6006546001600160a01b03163314610f035760405162461bcd60e51b81526004016108b49061261f565b6000610f0e60095490565b610f19906001612571565b90506001600160a01b038216610f715760405162461bcd60e51b815260206004820181905260248201527f52656365697665722063616e6e6f74206265207a65726f20616464726573732e60448201526064016108b4565b600a54811115610f935760405162461bcd60e51b81526004016108b4906125d2565b336001600160a01b03831614610ff957610fac82611031565b15610ff95760405162461bcd60e51b815260206004820181905260248201527f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e60448201526064016108b4565b611007600980546001019055565b6110118282611b36565b61101e4262278d00612571565b6000918252600f60205260409091205550565b60006001600160a01b03821661109c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e25760405162461bcd60e51b81526004016108b49061261f565b6110ec6000611b50565b565b32331461110d5760405162461bcd60e51b81526004016108b490612589565b600c54341461115e5760405162461bcd60e51b815260206004820152601f60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e742e0060448201526064016108b4565b61116781611825565b6111835760405162461bcd60e51b81526004016108b490612654565b6000818152600f6020526040902054428110156111ba576111a74262278d00612571565b6000838152600f60205260409020555050565b6000828152600f60205260408120805462278d0092906111db908490612571565b90915550505b5050565b60006111f060095490565b905090565b6006546001600160a01b0316331461121f5760405162461bcd60e51b81526004016108b49061261f565b600d805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b031633146112665760405162461bcd60e51b81526004016108b49061261f565b6109ea60088383612006565b6060600180546107c99061248f565b6111e1338383611ba2565b8261129f6006546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461133557600d5462010000900460ff166112df5760405162461bcd60e51b81526004016108b4906124ca565b6112e881611031565b156113355760405162461bcd60e51b815260206004820152601b60248201527f5573657220616c726561647920686f6c6473206120746f6b656e2e000000000060448201526064016108b4565b61133f33846118b0565b61135b5760405162461bcd60e51b81526004016108b490612511565b6000838152600f602052604090205442106113ad5760405162461bcd60e51b81526020600482015260126024820152712a37b5b2b7103430b99032bc3834b932b21760711b60448201526064016108b4565b6113b985858585611c71565b5050505050565b6006546001600160a01b031633146113ea5760405162461bcd60e51b81526004016108b49061261f565b6113f26111e5565b81600a546114009190612683565b101561145e5760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b60648201526084016108b4565b80600a60008282546114709190612683565b909155505050565b6006546001600160a01b031633146114a25760405162461bcd60e51b81526004016108b49061261f565b80600c5414156114ec5760405162461bcd60e51b8152602060048201526015602482015274283934b1b2903234b2103737ba1031b430b733b29760591b60448201526064016108b4565b600c55565b60606114fc82611825565b6115185760405162461bcd60e51b81526004016108b490612654565b600761152383611ca4565b6040516020016115349291906126b6565b6040516020818303038152906040529050919050565b600061155582611825565b6115715760405162461bcd60e51b81526004016108b490612654565b6000828152600f602052604090205442106115e25760405162461bcd60e51b815260206004820152602b60248201527f546f6b656e2068617320657870697265642e20506c656173652072656e65772060448201526a796f757220746f6b656e2160a81b60648201526084016108b4565b6115eb82610e62565b6001600160a01b0316336001600160a01b03161461160a5760006107b4565b600192915050565b6006546001600160a01b0316331461163c5760405162461bcd60e51b81526004016108b49061261f565b600d805460ff19811660ff90911615179055565b6006546001600160a01b0316331461167a5760405162461bcd60e51b81526004016108b49061261f565b6109ea60078383612006565b6060600880546107c99061248f565b6006546001600160a01b031633146116bf5760405162461bcd60e51b81526004016108b49061261f565b60005b81518110156111e1576001600e60008484815181106116e3576116e361275d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061171f81612773565b9150506116c2565b6006546001600160a01b031633146117515760405162461bcd60e51b81526004016108b49061261f565b80600a60008282546114709190612571565b6006546001600160a01b0316331461178d5760405162461bcd60e51b81526004016108b49061261f565b6001600160a01b0381166117f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b4565b610e5f81611b50565b6006546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108b49061261f565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187782610e62565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118bb82611825565b61191c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b4565b600061192783610e62565b9050806001600160a01b0316846001600160a01b031614806119625750836001600160a01b03166119578461084c565b6001600160a01b0316145b8061199257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ad82610e62565b6001600160a01b031614611a115760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108b4565b6001600160a01b038216611a735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b4565b611a7e600082611842565b6001600160a01b0383166000908152600360205260408120805460019290611aa7908490612683565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ad5908490612571565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111e1828260405180602001604052806000815250611da2565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c7c84848461199a565b611c8884848484611dd5565b610b1b5760405162461bcd60e51b81526004016108b49061278e565b606081611cc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf25780611cdc81612773565b9150611ceb9050600a836127f6565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d6122a8565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b841561199257611d4c600183612683565b9150611d59600a8661280a565b611d64906030612571565b60f81b818381518110611d7957611d7961275d565b60200101906001600160f81b031916908160001a905350611d9b600a866127f6565b9450611d3b565b611dac8383611ed3565b611db96000848484611dd5565b6109ea5760405162461bcd60e51b81526004016108b49061278e565b60006001600160a01b0384163b15611ec857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e1990339089908890889060040161281e565b6020604051808303816000875af1925050508015611e54575060408051601f3d908101601f19168201909252611e519181019061285b565b60015b611eae573d808015611e82576040519150601f19603f3d011682016040523d82523d6000602084013e611e87565b606091505b508051611ea65760405162461bcd60e51b81526004016108b49061278e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611992565b506001949350505050565b6001600160a01b038216611f295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b4565b611f3281611825565b15611f7f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b4565b6001600160a01b0382166000908152600360205260408120805460019290611fa8908490612571565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120129061248f565b90600052602060002090601f016020900481019282612034576000855561207a565b82601f1061204d5782800160ff1982351617855561207a565b8280016001018555821561207a579182015b8281111561207a57823582559160200191906001019061205f565b5061208692915061208a565b5090565b5b80821115612086576000815560010161208b565b6001600160e01b031981168114610e5f57600080fd5b6000602082840312156120c757600080fd5b81356120d28161209f565b9392505050565b60005b838110156120f45781810151838201526020016120dc565b83811115610b1b5750506000910152565b6000815180845261211d8160208601602086016120d9565b601f01601f19169290920160200192915050565b6020815260006120d26020830184612105565b60006020828403121561215657600080fd5b5035919050565b80356001600160a01b038116811461217457600080fd5b919050565b6000806040838503121561218c57600080fd5b6121958361215d565b946020939093013593505050565b6000806000606084860312156121b857600080fd5b6121c18461215d565b92506121cf6020850161215d565b9150604084013590509250925092565b6000602082840312156121f157600080fd5b6120d28261215d565b6000806020838503121561220d57600080fd5b823567ffffffffffffffff8082111561222557600080fd5b818501915085601f83011261223957600080fd5b81358181111561224857600080fd5b86602082850101111561225a57600080fd5b60209290920196919550909350505050565b6000806040838503121561227f57600080fd5b6122888361215d565b91506020830135801515811461229d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122e7576122e76122a8565b604052919050565b6000806000806080858703121561230557600080fd5b61230e8561215d565b9350602061231d81870161215d565b935060408601359250606086013567ffffffffffffffff8082111561234157600080fd5b818801915088601f83011261235557600080fd5b813581811115612367576123676122a8565b612379601f8201601f191685016122be565b9150808252898482850101111561238f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123c257600080fd5b6123cb8361215d565b91506123d96020840161215d565b90509250929050565b600060208083850312156123f557600080fd5b823567ffffffffffffffff8082111561240d57600080fd5b818501915085601f83011261242157600080fd5b813581811115612433576124336122a8565b8060051b91506124448483016122be565b818152918301840191848101908884111561245e57600080fd5b938501935b83851015612483576124748561215d565b82529385019390850190612463565b98975050505050505050565b600181811c908216806124a357607f821691505b602082108114156124c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526027908201527f546f6b656e207472616e7366657273206172652063757272656e746c7920646960408201526639b0b13632b21760c91b606082015260800190565b6020808252602a908201527f5472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f726040820152691030b8383937bb32b21760b11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156125845761258461255b565b500190565b60208082526029908201527f596f752063616e6e6f742073656e642074782066726f6d20616e6f746865722060408201526831b7b73a3930b1ba1760b91b606082015260800190565b6020808252602d908201527f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060408201526c3a37ba30b61039bab838363c9760991b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604082015260600190565b6000828210156126955761269561255b565b500390565b600081516126ac8185602086016120d9565b9290920192915050565b600080845481600182811c9150808316806126d257607f831692505b60208084108214156126f257634e487b7160e01b86526022600452602486fd5b818015612706576001811461271757612744565b60ff19861689528489019650612744565b60008b81526020902060005b8681101561273c5781548b820152908501908301612723565b505084890196505b505050505050612754818561269a565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156127875761278761255b565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612805576128056127e0565b500490565b600082612819576128196127e0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285190830184612105565b9695505050505050565b60006020828403121561286d57600080fd5b81516120d28161209f56fea2646970667358221220177be6b52df513615d0dc9320ea826c7657567d3609c0a08fbb6cbc2067f390d64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f7777772e6d656368612e736f6674776172652f6170692f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65314166735542535637616864457531737773703438725944376633447a5468446e5969464b323854516a5100000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638cdb7e8b11610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d4851461068a578063e985e9c51461069f578063edac985b146106e8578063f18d4dbb14610708578063f2fde38b14610728578063faab3def1461074857600080fd5b8063c87b56dd146105ff578063cdffd6ed1461061f578063d5abeb011461063f578063dfe5dd6814610655578063e0df5b6f1461066a57600080fd5b8063b88d4fde116100fd578063b88d4fde14610552578063b8cb65ee14610572578063bb026e3214610592578063be010c40146105b2578063bef97c87146105df57600080fd5b80638cdb7e8b146104a65780638da5cb5b146104df578063938e3d7b146104fd57806395d89b411461051d578063a22cb4651461053257600080fd5b80635fd8c710116101d2578063715018a611610196578063715018a61461042857806371e239471461043d578063771282f6146104505780637b55297a146104655780637d8966e41461047b5780637ff9b5961461049057600080fd5b80635fd8c710146103865780636352211e1461039b57806367805d71146103bb57806368428a1b146103db57806370a08231146103fa57600080fd5b806326092b831161021957806326092b83146103275780632a237bb61461032f5780633e5ac28f146103495780633f5ab2241461035e57806342842e0e1461036657600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806323b872dd14610307575b600080fd5b34801561026257600080fd5b506102766102713660046120b5565b610768565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107ba565b6040516102829190612131565b3480156102b957600080fd5b506102cd6102c8366004612144565b61084c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612179565b6108d9565b005b34801561031357600080fd5b506103056103223660046121a3565b6109ef565b610305610b21565b34801561033b57600080fd5b50600d546102769060ff1681565b34801561035557600080fd5b50610305610caf565b610305610cf8565b34801561037257600080fd5b506103056103813660046121a3565b610dee565b34801561039257600080fd5b50610305610e09565b3480156103a757600080fd5b506102cd6103b6366004612144565b610e62565b3480156103c757600080fd5b506103056103d63660046121df565b610ed9565b3480156103e757600080fd5b50600d5461027690610100900460ff1681565b34801561040657600080fd5b5061041a6104153660046121df565b611031565b604051908152602001610282565b34801561043457600080fd5b506103056110b8565b61030561044b366004612144565b6110ee565b34801561045c57600080fd5b5061041a6111e5565b34801561047157600080fd5b5061041a600c5481565b34801561048757600080fd5b506103056111f5565b34801561049c57600080fd5b5061041a600b5481565b3480156104b257600080fd5b506102766104c13660046121df565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156104eb57600080fd5b506006546001600160a01b03166102cd565b34801561050957600080fd5b506103056105183660046121fa565b61123c565b34801561052957600080fd5b506102a0611272565b34801561053e57600080fd5b5061030561054d36600461226c565b611281565b34801561055e57600080fd5b5061030561056d3660046122ef565b61128c565b34801561057e57600080fd5b5061030561058d366004612144565b6113c0565b34801561059e57600080fd5b506103056105ad366004612144565b611478565b3480156105be57600080fd5b5061041a6105cd366004612144565b600f6020526000908152604090205481565b3480156105eb57600080fd5b50600d546102769062010000900460ff1681565b34801561060b57600080fd5b506102a061061a366004612144565b6114f1565b34801561062b57600080fd5b5061027661063a366004612144565b61154a565b34801561064b57600080fd5b5061041a600a5481565b34801561066157600080fd5b50610305611612565b34801561067657600080fd5b506103056106853660046121fa565b611650565b34801561069657600080fd5b506102a0611686565b3480156106ab57600080fd5b506102766106ba3660046123af565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f457600080fd5b506103056107033660046123e2565b611695565b34801561071457600080fd5b50610305610723366004612144565b611727565b34801561073457600080fd5b506103056107433660046121df565b611763565b34801561075457600080fd5b50610305610763366004612144565b6117fb565b60006001600160e01b031982166380ac58cd60e01b148061079957506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c99061248f565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061248f565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b600061085782611825565b6108bd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108e482610e62565b9050806001600160a01b0316836001600160a01b031614156109525760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b4565b336001600160a01b038216148061096e575061096e81336106ba565b6109e05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b4565b6109ea8383611842565b505050565b81610a026006546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a9857600d5462010000900460ff16610a425760405162461bcd60e51b81526004016108b4906124ca565b610a4b81611031565b15610a985760405162461bcd60e51b815260206004820152601b60248201527f5573657220616c726561647920686f6c6473206120746f6b656e2e000000000060448201526064016108b4565b610aa233836118b0565b610abe5760405162461bcd60e51b81526004016108b490612511565b6000828152600f60205260409020544210610b105760405162461bcd60e51b81526020600482015260126024820152712a37b5b2b7103430b99032bc3834b932b21760711b60448201526064016108b4565b610b1b84848461199a565b50505050565b6000610b2c60095490565b610b37906001612571565b9050323314610b585760405162461bcd60e51b81526004016108b490612589565b600d54610100900460ff16610baf5760405162461bcd60e51b815260206004820152601d60248201527f53616c652069732063757272656e746c79206e6f74206163746976652e00000060448201526064016108b4565b610bb833611031565b15610c055760405162461bcd60e51b815260206004820181905260248201527f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e60448201526064016108b4565b600b543414610c565760405162461bcd60e51b815260206004820152601f60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e742e0060448201526064016108b4565b600a54811115610c785760405162461bcd60e51b81526004016108b4906125d2565b610c86600980546001019055565b610c903382611b36565b610c9d4262278d00612571565b6000918252600f602052604090912055565b6006546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b49061261f565b600d805462ff0000198116620100009182900460ff1615909102179055565b6000610d0360095490565b610d0e906001612571565b9050323314610d2f5760405162461bcd60e51b81526004016108b490612589565b600d5460ff16610d8f5760405162461bcd60e51b815260206004820152602560248201527f507269766174652073616c652069732063757272656e746c79206e6f742061636044820152643a34bb329760d91b60648201526084016108b4565b336000908152600e602052604090205460ff16610baf5760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f742077686974656c69737465642e00000000000060448201526064016108b4565b6109ea8383836040518060200160405280600081525061128c565b6006546001600160a01b03163314610e335760405162461bcd60e51b81526004016108b49061261f565b60405133904780156108fc02916000818181858888f19350505050158015610e5f573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b4565b6006546001600160a01b03163314610f035760405162461bcd60e51b81526004016108b49061261f565b6000610f0e60095490565b610f19906001612571565b90506001600160a01b038216610f715760405162461bcd60e51b815260206004820181905260248201527f52656365697665722063616e6e6f74206265207a65726f20616464726573732e60448201526064016108b4565b600a54811115610f935760405162461bcd60e51b81526004016108b4906125d2565b336001600160a01b03831614610ff957610fac82611031565b15610ff95760405162461bcd60e51b815260206004820181905260248201527f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e60448201526064016108b4565b611007600980546001019055565b6110118282611b36565b61101e4262278d00612571565b6000918252600f60205260409091205550565b60006001600160a01b03821661109c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e25760405162461bcd60e51b81526004016108b49061261f565b6110ec6000611b50565b565b32331461110d5760405162461bcd60e51b81526004016108b490612589565b600c54341461115e5760405162461bcd60e51b815260206004820152601f60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e742e0060448201526064016108b4565b61116781611825565b6111835760405162461bcd60e51b81526004016108b490612654565b6000818152600f6020526040902054428110156111ba576111a74262278d00612571565b6000838152600f60205260409020555050565b6000828152600f60205260408120805462278d0092906111db908490612571565b90915550505b5050565b60006111f060095490565b905090565b6006546001600160a01b0316331461121f5760405162461bcd60e51b81526004016108b49061261f565b600d805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b031633146112665760405162461bcd60e51b81526004016108b49061261f565b6109ea60088383612006565b6060600180546107c99061248f565b6111e1338383611ba2565b8261129f6006546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461133557600d5462010000900460ff166112df5760405162461bcd60e51b81526004016108b4906124ca565b6112e881611031565b156113355760405162461bcd60e51b815260206004820152601b60248201527f5573657220616c726561647920686f6c6473206120746f6b656e2e000000000060448201526064016108b4565b61133f33846118b0565b61135b5760405162461bcd60e51b81526004016108b490612511565b6000838152600f602052604090205442106113ad5760405162461bcd60e51b81526020600482015260126024820152712a37b5b2b7103430b99032bc3834b932b21760711b60448201526064016108b4565b6113b985858585611c71565b5050505050565b6006546001600160a01b031633146113ea5760405162461bcd60e51b81526004016108b49061261f565b6113f26111e5565b81600a546114009190612683565b101561145e5760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b60648201526084016108b4565b80600a60008282546114709190612683565b909155505050565b6006546001600160a01b031633146114a25760405162461bcd60e51b81526004016108b49061261f565b80600c5414156114ec5760405162461bcd60e51b8152602060048201526015602482015274283934b1b2903234b2103737ba1031b430b733b29760591b60448201526064016108b4565b600c55565b60606114fc82611825565b6115185760405162461bcd60e51b81526004016108b490612654565b600761152383611ca4565b6040516020016115349291906126b6565b6040516020818303038152906040529050919050565b600061155582611825565b6115715760405162461bcd60e51b81526004016108b490612654565b6000828152600f602052604090205442106115e25760405162461bcd60e51b815260206004820152602b60248201527f546f6b656e2068617320657870697265642e20506c656173652072656e65772060448201526a796f757220746f6b656e2160a81b60648201526084016108b4565b6115eb82610e62565b6001600160a01b0316336001600160a01b03161461160a5760006107b4565b600192915050565b6006546001600160a01b0316331461163c5760405162461bcd60e51b81526004016108b49061261f565b600d805460ff19811660ff90911615179055565b6006546001600160a01b0316331461167a5760405162461bcd60e51b81526004016108b49061261f565b6109ea60078383612006565b6060600880546107c99061248f565b6006546001600160a01b031633146116bf5760405162461bcd60e51b81526004016108b49061261f565b60005b81518110156111e1576001600e60008484815181106116e3576116e361275d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061171f81612773565b9150506116c2565b6006546001600160a01b031633146117515760405162461bcd60e51b81526004016108b49061261f565b80600a60008282546114709190612571565b6006546001600160a01b0316331461178d5760405162461bcd60e51b81526004016108b49061261f565b6001600160a01b0381166117f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b4565b610e5f81611b50565b6006546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108b49061261f565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187782610e62565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118bb82611825565b61191c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b4565b600061192783610e62565b9050806001600160a01b0316846001600160a01b031614806119625750836001600160a01b03166119578461084c565b6001600160a01b0316145b8061199257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ad82610e62565b6001600160a01b031614611a115760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108b4565b6001600160a01b038216611a735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b4565b611a7e600082611842565b6001600160a01b0383166000908152600360205260408120805460019290611aa7908490612683565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ad5908490612571565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111e1828260405180602001604052806000815250611da2565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c7c84848461199a565b611c8884848484611dd5565b610b1b5760405162461bcd60e51b81526004016108b49061278e565b606081611cc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf25780611cdc81612773565b9150611ceb9050600a836127f6565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d6122a8565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b841561199257611d4c600183612683565b9150611d59600a8661280a565b611d64906030612571565b60f81b818381518110611d7957611d7961275d565b60200101906001600160f81b031916908160001a905350611d9b600a866127f6565b9450611d3b565b611dac8383611ed3565b611db96000848484611dd5565b6109ea5760405162461bcd60e51b81526004016108b49061278e565b60006001600160a01b0384163b15611ec857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e1990339089908890889060040161281e565b6020604051808303816000875af1925050508015611e54575060408051601f3d908101601f19168201909252611e519181019061285b565b60015b611eae573d808015611e82576040519150601f19603f3d011682016040523d82523d6000602084013e611e87565b606091505b508051611ea65760405162461bcd60e51b81526004016108b49061278e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611992565b506001949350505050565b6001600160a01b038216611f295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b4565b611f3281611825565b15611f7f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b4565b6001600160a01b0382166000908152600360205260408120805460019290611fa8908490612571565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120129061248f565b90600052602060002090601f016020900481019282612034576000855561207a565b82601f1061204d5782800160ff1982351617855561207a565b8280016001018555821561207a579182015b8281111561207a57823582559160200191906001019061205f565b5061208692915061208a565b5090565b5b80821115612086576000815560010161208b565b6001600160e01b031981168114610e5f57600080fd5b6000602082840312156120c757600080fd5b81356120d28161209f565b9392505050565b60005b838110156120f45781810151838201526020016120dc565b83811115610b1b5750506000910152565b6000815180845261211d8160208601602086016120d9565b601f01601f19169290920160200192915050565b6020815260006120d26020830184612105565b60006020828403121561215657600080fd5b5035919050565b80356001600160a01b038116811461217457600080fd5b919050565b6000806040838503121561218c57600080fd5b6121958361215d565b946020939093013593505050565b6000806000606084860312156121b857600080fd5b6121c18461215d565b92506121cf6020850161215d565b9150604084013590509250925092565b6000602082840312156121f157600080fd5b6120d28261215d565b6000806020838503121561220d57600080fd5b823567ffffffffffffffff8082111561222557600080fd5b818501915085601f83011261223957600080fd5b81358181111561224857600080fd5b86602082850101111561225a57600080fd5b60209290920196919550909350505050565b6000806040838503121561227f57600080fd5b6122888361215d565b91506020830135801515811461229d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122e7576122e76122a8565b604052919050565b6000806000806080858703121561230557600080fd5b61230e8561215d565b9350602061231d81870161215d565b935060408601359250606086013567ffffffffffffffff8082111561234157600080fd5b818801915088601f83011261235557600080fd5b813581811115612367576123676122a8565b612379601f8201601f191685016122be565b9150808252898482850101111561238f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156123c257600080fd5b6123cb8361215d565b91506123d96020840161215d565b90509250929050565b600060208083850312156123f557600080fd5b823567ffffffffffffffff8082111561240d57600080fd5b818501915085601f83011261242157600080fd5b813581811115612433576124336122a8565b8060051b91506124448483016122be565b818152918301840191848101908884111561245e57600080fd5b938501935b83851015612483576124748561215d565b82529385019390850190612463565b98975050505050505050565b600181811c908216806124a357607f821691505b602082108114156124c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526027908201527f546f6b656e207472616e7366657273206172652063757272656e746c7920646960408201526639b0b13632b21760c91b606082015260800190565b6020808252602a908201527f5472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f726040820152691030b8383937bb32b21760b11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156125845761258461255b565b500190565b60208082526029908201527f596f752063616e6e6f742073656e642074782066726f6d20616e6f746865722060408201526831b7b73a3930b1ba1760b91b606082015260800190565b6020808252602d908201527f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060408201526c3a37ba30b61039bab838363c9760991b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604082015260600190565b6000828210156126955761269561255b565b500390565b600081516126ac8185602086016120d9565b9290920192915050565b600080845481600182811c9150808316806126d257607f831692505b60208084108214156126f257634e487b7160e01b86526022600452602486fd5b818015612706576001811461271757612744565b60ff19861689528489019650612744565b60008b81526020902060005b8681101561273c5781548b820152908501908301612723565b505084890196505b505050505050612754818561269a565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156127875761278761255b565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612805576128056127e0565b500490565b600082612819576128196127e0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285190830184612105565b9695505050505050565b60006020828403121561286d57600080fd5b81516120d28161209f56fea2646970667358221220177be6b52df513615d0dc9320ea826c7657567d3609c0a08fbb6cbc2067f390d64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f7777772e6d656368612e736f6674776172652f6170692f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65314166735542535637616864457531737773703438725944376633447a5468446e5969464b323854516a5100000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenURI_ (string): https://www.mecha.software/api/metadata/
Arg [1] : contractURI_ (string): https://gateway.pinata.cloud/ipfs/Qme1AfsUBSV7ahdEu1swsp48rYD7f3DzThDnYiFK28TQjQ

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [3] : 68747470733a2f2f7777772e6d656368612e736f6674776172652f6170692f6d
Arg [4] : 657461646174612f000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [6] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [7] : 732f516d65314166735542535637616864457531737773703438725944376633
Arg [8] : 447a5468446e5969464b323854516a5100000000000000000000000000000000


Deployed Bytecode Sourcemap

38748:7126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25574:305:0;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;28078:221:0;1550:203:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;45500:369;;;;;;;;;;-1:-1:-1;45500:369:0;;;;;:::i;:::-;;:::i;40750:653::-;;;:::i;39098:37::-;;;;;;;;;;-1:-1:-1;39098:37:0;;;;;;;;44972:99;;;;;;;;;;;;;:::i;41411:751::-;;;:::i;29238:185::-;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;44654:105::-;;;;;;;;;;;;;:::i;26213:239::-;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;39763:582::-;;;;;;;;;;-1:-1:-1;39763:582:0;;;;;:::i;:::-;;:::i;39142:30::-;;;;;;;;;;-1:-1:-1;39142:30:0;;;;;;;;;;;25943:208;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;:::-;;;2865:25:1;;;2853:2;2838:18;25943:208:0;2719:177:1;6195:103:0;;;;;;;;;;;;;:::i;42170:540::-;;;;;;:::i;:::-;;:::i;43966:103::-;;;;;;;;;;;;;:::i;39054:37::-;;;;;;;;;;;;;;;;44767:82;;;;;;;;;;;;;:::i;39012:35::-;;;;;;;;;;;;;;;;43143:176;;;;;;;;;;-1:-1:-1;43143:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;43246:30:0;43204:4;43246:30;;;:20;:30;;;;;;;;;43143:176;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;44527:119;;;;;;;;;;-1:-1:-1;44527:119:0;;;;;:::i;:::-;;:::i;26688:104::-;;;;;;;;;;;;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;45079:413::-;;;;;;;;;;-1:-1:-1;45079:413:0;;;;;:::i;:::-;;:::i;43754:204::-;;;;;;;;;;-1:-1:-1;43754:204:0;;;;;:::i;:::-;;:::i;42718:209::-;;;;;;;;;;-1:-1:-1;42718:209:0;;;;;:::i;:::-;;:::i;39276:39::-;;;;;;;;;;-1:-1:-1;39276:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;39179:36;;;;;;;;;;-1:-1:-1;39179:36:0;;;;;;;;;;;44077:222;;;;;;;;;;-1:-1:-1;44077:222:0;;;;;:::i;:::-;;:::i;43327:309::-;;;;;;;;;;-1:-1:-1;43327:309:0;;;;;:::i;:::-;;:::i;38978:27::-;;;;;;;;;;;;;;;;44861:103;;;;;;;;;;;;;:::i;44307:107::-;;;;;;;;;;-1:-1:-1;44307:107:0;;;;;:::i;:::-;;:::i;44422:97::-;;;;;;;;;;;;;:::i;28597:164::-;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164;42935:200;;;;;;;;;;-1:-1:-1;42935:200:0;;;;;:::i;:::-;;:::i;43644:102::-;;;;;;;;;;-1:-1:-1;43644:102:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;40353:389::-;;;;;;;;;;-1:-1:-1;40353:389:0;;;;;:::i;:::-;;:::i;25574:305::-;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;-1:-1:-1;;;28174:73:0;;7056:2:1;28174:73:0;;;7038:21:1;7095:2;7075:18;;;7068:30;7134:34;7114:18;;;7107:62;-1:-1:-1;;;7185:18:1;;;7178:42;7237:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;7469:2:1;27732:57:0;;;7451:21:1;7508:2;7488:18;;;7481:30;7547:34;7527:18;;;7520:62;-1:-1:-1;;;7598:18:1;;;7591:31;7639:19;;27732:57:0;7267:397:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;28597:164;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;7871:2:1;27802:168:0;;;7853:21:1;7910:2;7890:18;;;7883:30;7949:34;7929:18;;;7922:62;8020:26;8000:18;;;7993:54;8064:19;;27802:168:0;7669:420:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;45500:369::-;45632:2;39559:7;5617:6;;-1:-1:-1;;;;;5617:6:0;;5544:87;39559:7;-1:-1:-1;;;;;39545:21:0;:10;-1:-1:-1;;;;;39545:21:0;;39541:195;;39591:16;;;;;;;39583:68;;;;-1:-1:-1;;;39583:68:0;;;;;;;:::i;:::-;39674:13;39684:2;39674:9;:13::i;:::-;:18;39666:58;;;;-1:-1:-1;;;39666:58:0;;8704:2:1;39666:58:0;;;8686:21:1;8743:2;8723:18;;;8716:30;8782:29;8762:18;;;8755:57;8829:18;;39666:58:0;8502:351:1;39666:58:0;45655:41:::1;4348:10:::0;45688:7:::1;45655:18;:41::i;:::-;45647:96;;;;-1:-1:-1::0;;;45647:96:0::1;;;;;;;:::i;:::-;45762:19;::::0;;;:10:::1;:19;::::0;;;;;45784:15:::1;-1:-1:-1::0;45754:68:0::1;;;::::0;-1:-1:-1;;;45754:68:0;;9471:2:1;45754:68:0::1;::::0;::::1;9453:21:1::0;9510:2;9490:18;;;9483:30;-1:-1:-1;;;9529:18:1;;;9522:48;9587:18;;45754:68:0::1;9269:342:1::0;45754:68:0::1;45833:28;45843:4;45849:2;45853:7;45833:9;:28::i;:::-;45500:369:::0;;;;:::o;40750:653::-;40798:15;40816:25;:15;964:14;;872:114;40816:25;:29;;40844:1;40816:29;:::i;:::-;40798:47;-1:-1:-1;40866:9:0;40879:10;40866:23;40858:77;;;;-1:-1:-1;;;40858:77:0;;;;;;;:::i;:::-;40954:10;;;;;;;40946:52;;;;-1:-1:-1;;;40946:52:0;;10493:2:1;40946:52:0;;;10475:21:1;10532:2;10512:18;;;10505:30;10571:31;10551:18;;;10544:59;10620:18;;40946:52:0;10291:353:1;40946:52:0;41017:21;41027:10;41017:9;:21::i;:::-;:26;41009:71;;;;-1:-1:-1;;;41009:71:0;;10851:2:1;41009:71:0;;;10833:21:1;;;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;10981:18;;41009:71:0;10649:356:1;41009:71:0;41112:10;;41099:9;:23;41091:67;;;;-1:-1:-1;;;41091:67:0;;11212:2:1;41091:67:0;;;11194:21:1;11251:2;11231:18;;;11224:30;11290:33;11270:18;;;11263:61;11341:18;;41091:67:0;11010:355:1;41091:67:0;41191:9;;41177:10;:23;;41169:81;;;;-1:-1:-1;;;41169:81:0;;;;;;;:::i;:::-;41263:27;:15;1083:19;;1101:1;1083:19;;;994:127;41263:27;41301:33;41311:10;41323;41301:9;:33::i;:::-;41370:25;:15;41388:7;41370:25;:::i;:::-;41345:22;;;;:10;:22;;;;;;:50;40750:653::o;44972:99::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45047:16:::1;::::0;;-1:-1:-1;;45027:36:0;::::1;45047:16:::0;;;;::::1;;;45046:17;45027:36:::0;;::::1;;::::0;;44972:99::o;41411:751::-;41460:15;41478:25;:15;964:14;;872:114;41478:25;:29;;41506:1;41478:29;:::i;:::-;41460:47;-1:-1:-1;41528:9:0;41541:10;41528:23;41520:77;;;;-1:-1:-1;;;41520:77:0;;;;;;;:::i;:::-;41616:17;;;;41608:67;;;;-1:-1:-1;;;41608:67:0;;12347:2:1;41608:67:0;;;12329:21:1;12386:2;12366:18;;;12359:30;12425:34;12405:18;;;12398:62;-1:-1:-1;;;12476:18:1;;;12469:35;12521:19;;41608:67:0;12145:401:1;41608:67:0;41715:10;41694:32;;;;:20;:32;;;;;;;;41686:71;;;;-1:-1:-1;;;41686:71:0;;12753:2:1;41686:71:0;;;12735:21:1;12792:2;12772:18;;;12765:30;12831:28;12811:18;;;12804:56;12877:18;;41686:71:0;12551:350:1;29238:185:0;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;44654:105::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44703:51:::1;::::0;44711:10:::1;::::0;44732:21:::1;44703:51:::0;::::1;;;::::0;::::1;::::0;;;44732:21;44711:10;44703:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44654:105::o:0;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;13108:2:1;26348:73:0;;;13090:21:1;13147:2;13127:18;;;13120:30;13186:34;13166:18;;;13159:62;-1:-1:-1;;;13237:18:1;;;13230:39;13286:19;;26348:73:0;12906:405:1;39763:582:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39833:15:::1;39851:25;:15;964:14:::0;;872:114;39851:25:::1;:29;::::0;39879:1:::1;39851:29;:::i;:::-;39833:47:::0;-1:-1:-1;;;;;;39901:23:0;::::1;39893:68;;;::::0;-1:-1:-1;;;39893:68:0;;13518:2:1;39893:68:0::1;::::0;::::1;13500:21:1::0;;;13537:18;;;13530:30;13596:34;13576:18;;;13569:62;13648:18;;39893:68:0::1;13316:356:1::0;39893:68:0::1;39994:9;;39980:10;:23;;39972:81;;;;-1:-1:-1::0;;;39972:81:0::1;;;;;;;:::i;:::-;40070:10;-1:-1:-1::0;;;;;40070:23:0;::::1;;40066:126;;40118:20;40128:9;40118;:20::i;:::-;:25:::0;40110:70:::1;;;::::0;-1:-1:-1;;;40110:70:0;;10851:2:1;40110:70:0::1;::::0;::::1;10833:21:1::0;;;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;10981:18;;40110:70:0::1;10649:356:1::0;40110:70:0::1;40204:27;:15;1083:19:::0;;1101:1;1083:19;;;994:127;40204:27:::1;40244:32;40254:9;40265:10;40244:9;:32::i;:::-;40312:25;:15;40330:7;40312:25;:::i;:::-;40287:22;::::0;;;:10:::1;:22;::::0;;;;;:50;-1:-1:-1;39763:582:0:o;25943:208::-;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;13879:2:1;26035:74:0;;;13861:21:1;13918:2;13898:18;;;13891:30;13957:34;13937:18;;;13930:62;-1:-1:-1;;;14008:18:1;;;14001:40;14058:19;;26035:74:0;13677:406:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;42170:540::-;42239:9;42252:10;42239:23;42231:77;;;;-1:-1:-1;;;42231:77:0;;;;;;;:::i;:::-;42340:12;;42327:9;:25;42319:69;;;;-1:-1:-1;;;42319:69:0;;11212:2:1;42319:69:0;;;11194:21:1;11251:2;11231:18;;;11224:30;11290:33;11270:18;;;11263:61;11341:18;;42319:69:0;11010:355:1;42319:69:0;42407:17;42415:8;42407:7;:17::i;:::-;42399:51;;;;-1:-1:-1;;;42399:51:0;;;;;;;:::i;:::-;42463:23;42489:20;;;:10;:20;;;;;;42526:15;:36;-1:-1:-1;42522:181:0;;;42602:25;:15;42620:7;42602:25;:::i;:::-;42579:20;;;;:10;:20;;;;;:48;42220:490;42170:540;:::o;42522:181::-;42660:20;;;;:10;:20;;;;;:31;;42684:7;;42660:20;:31;;42684:7;;42660:31;:::i;:::-;;;;-1:-1:-1;;42522:181:0;42220:490;42170:540;:::o;43966:103::-;44012:4;44036:25;:15;964:14;;872:114;44036:25;44029:32;;43966:103;:::o;44767:82::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44831:10:::1;::::0;;-1:-1:-1;;44817:24:0;::::1;44831:10;::::0;;;::::1;;;44830:11;44817:24:::0;;::::1;;::::0;;44767:82::o;44527:119::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44611:27:::1;:12;44626::::0;;44611:27:::1;:::i;26688:104::-:0;26744:13;26777:7;26770:14;;;;;:::i;28371:155::-;28466:52;4348:10;28499:8;28509;28466:18;:52::i;45079:413::-;45244:2;39559:7;5617:6;;-1:-1:-1;;;;;5617:6:0;;5544:87;39559:7;-1:-1:-1;;;;;39545:21:0;:10;-1:-1:-1;;;;;39545:21:0;;39541:195;;39591:16;;;;;;;39583:68;;;;-1:-1:-1;;;39583:68:0;;;;;;;:::i;:::-;39674:13;39684:2;39674:9;:13::i;:::-;:18;39666:58;;;;-1:-1:-1;;;39666:58:0;;8704:2:1;39666:58:0;;;8686:21:1;8743:2;8723:18;;;8716:30;8782:29;8762:18;;;8755:57;8829:18;;39666:58:0;8502:351:1;39666:58:0;45267:41:::1;4348:10:::0;45300:7:::1;45267:18;:41::i;:::-;45259:96;;;;-1:-1:-1::0;;;45259:96:0::1;;;;;;;:::i;:::-;45374:19;::::0;;;:10:::1;:19;::::0;;;;;45396:15:::1;-1:-1:-1::0;45366:68:0::1;;;::::0;-1:-1:-1;;;45366:68:0;;9471:2:1;45366:68:0::1;::::0;::::1;9453:21:1::0;9510:2;9490:18;;;9483:30;-1:-1:-1;;;9529:18:1;;;9522:48;9587:18;;45366:68:0::1;9269:342:1::0;45366:68:0::1;45445:39;45459:4;45465:2;45469:7;45478:5;45445:13;:39::i;:::-;45079:413:::0;;;;;:::o;43754:204::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43857:15:::1;:13;:15::i;:::-;43843:10;43831:9;;:22;;;;:::i;:::-;:41;;43823:93;;;::::0;-1:-1:-1;;;43823:93:0;;14770:2:1;43823:93:0::1;::::0;::::1;14752:21:1::0;14809:2;14789:18;;;14782:30;14848:34;14828:18;;;14821:62;-1:-1:-1;;;14899:18:1;;;14892:37;14946:19;;43823:93:0::1;14568:403:1::0;43823:93:0::1;43940:10;43927:9;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;43754:204:0:o;42718:209::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42827:20:::1;42811:12;;:36;;42803:70;;;::::0;-1:-1:-1;;;42803:70:0;;15178:2:1;42803:70:0::1;::::0;::::1;15160:21:1::0;15217:2;15197:18;;;15190:30;-1:-1:-1;;;15236:18:1;;;15229:51;15297:18;;42803:70:0::1;14976:345:1::0;42803:70:0::1;42884:12;:35:::0;42718:209::o;44077:222::-;44140:13;44174:17;44182:8;44174:7;:17::i;:::-;44166:51;;;;-1:-1:-1;;;44166:51:0;;;;;;;:::i;:::-;44259:9;44270:19;:8;:17;:19::i;:::-;44242:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44228:63;;44077:222;;;:::o;43327:309::-;43389:4;43414:17;43422:8;43414:7;:17::i;:::-;43406:51;;;;-1:-1:-1;;;43406:51:0;;;;;;;:::i;:::-;43476:20;;;;:10;:20;;;;;;43499:15;-1:-1:-1;43468:94:0;;;;-1:-1:-1;;;43468:94:0;;17023:2:1;43468:94:0;;;17005:21:1;17062:2;17042:18;;;17035:30;17101:34;17081:18;;;17074:62;-1:-1:-1;;;17152:18:1;;;17145:41;17203:19;;43468:94:0;16821:407:1;43468:94:0;43596:17;43604:8;43596:7;:17::i;:::-;-1:-1:-1;;;;;43582:31:0;:10;-1:-1:-1;;;;;43582:31:0;;:46;;43623:5;43582:46;;;43616:4;43575:53;43327:309;-1:-1:-1;;43327:309:0:o;44861:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44939:17:::1;::::0;;-1:-1:-1;;44918:38:0;::::1;44939:17;::::0;;::::1;44938:18;44918:38;::::0;;44861:103::o;44307:107::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44385:21:::1;:9;44397::::0;;44385:21:::1;:::i;44422:97::-:0;44466:13;44499:12;44492:19;;;;;:::i;42935:200::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43019:6:::1;43014:114;43035:10;:17;43031:1;:21;43014:114;;;43112:4;43074:20;:35;43095:10;43106:1;43095:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;43074:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;43074:35:0;:42;;-1:-1:-1;;43074:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43054:3;::::1;::::0;::::1;:::i;:::-;;;;43014:114;;43644:102:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43728:10:::1;43715:9;;:23;;;;;;;:::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;17707:2:1;6534:73:0::1;::::0;::::1;17689:21:1::0;17746:2;17726:18;;;17719:30;17785:34;17765:18;;;17758:62;-1:-1:-1;;;17836:18:1;;;17829:36;17882:19;;6534:73:0::1;17505:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;40353:389::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;31332:127::-;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;;;31332:127::o;35478:174::-;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;-1:-1:-1;;;31736:73:0;;18114:2:1;31736:73:0;;;18096:21:1;18153:2;18133:18;;;18126:30;18192:34;18172:18;;;18165:62;-1:-1:-1;;;18243:18:1;;;18236:42;18295:19;;31736:73:0;17912:408:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;-1:-1:-1;;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31933:32;31870:96;31626:348;-1:-1:-1;;;;31626:348:0:o;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;18527:2:1;34859:81:0;;;18509:21:1;18566:2;18546:18;;;18539:30;18605:34;18585:18;;;18578:62;-1:-1:-1;;;18656:18:1;;;18649:35;18701:19;;34859:81:0;18325:401:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;18933:2:1;34951:65:0;;;18915:21:1;18972:2;18952:18;;;18945:30;19011:34;18991:18;;;18984:62;-1:-1:-1;;;19062:18:1;;;19055:34;19106:19;;34951:65:0;18731:400:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27671:341;27601:411;;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;19338:2:1;35932:55:0;;;19320:21:1;19377:2;19357:18;;;19350:30;19416:27;19396:18;;;19389:55;19461:18;;35932:55:0;19136:349:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;540::1;;;36060::0;;513:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32653:321;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;36674:799::-;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;21244:2:1;33382:61:0;;;21226:21:1;;;21263:18;;;21256:30;21322:34;21302:18;;;21295:62;21374:18;;33382:61:0;21042:356:1;33382:61:0;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;-1:-1:-1;;;33454:58:0;;21605:2:1;33454:58:0;;;21587:21:1;21644:2;21624:18;;;21617:30;21683;21663:18;;;21656:58;21731:18;;33454:58:0;21403:352:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;42220:490;42170:540;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:328::-;2272:6;2280;2288;2341:2;2329:9;2320:7;2316:23;2312:32;2309:52;;;2357:1;2354;2347:12;2309:52;2380:29;2399:9;2380:29;:::i;:::-;2370:39;;2428:38;2462:2;2451:9;2447:18;2428:38;:::i;:::-;2418:48;;2513:2;2502:9;2498:18;2485:32;2475:42;;2195:328;;;;;:::o;2528:186::-;2587:6;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;2901:592::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3089:9;3076:23;3118:18;3159:2;3151:6;3148:14;3145:34;;;3175:1;3172;3165:12;3145:34;3213:6;3202:9;3198:22;3188:32;;3258:7;3251:4;3247:2;3243:13;3239:27;3229:55;;3280:1;3277;3270:12;3229:55;3320:2;3307:16;3346:2;3338:6;3335:14;3332:34;;;3362:1;3359;3352:12;3332:34;3407:7;3402:2;3393:6;3389:2;3385:15;3381:24;3378:37;3375:57;;;3428:1;3425;3418:12;3375:57;3459:2;3451:11;;;;;3481:6;;-1:-1:-1;2901:592:1;;-1:-1:-1;;;;2901:592:1:o;3498:347::-;3563:6;3571;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3663:29;3682:9;3663:29;:::i;:::-;3653:39;;3742:2;3731:9;3727:18;3714:32;3789:5;3782:13;3775:21;3768:5;3765:32;3755:60;;3811:1;3808;3801:12;3755:60;3834:5;3824:15;;;3498:347;;;;;:::o;3850:127::-;3911:10;3906:3;3902:20;3899:1;3892:31;3942:4;3939:1;3932:15;3966:4;3963:1;3956:15;3982:275;4053:2;4047:9;4118:2;4099:13;;-1:-1:-1;;4095:27:1;4083:40;;4153:18;4138:34;;4174:22;;;4135:62;4132:88;;;4200:18;;:::i;:::-;4236:2;4229:22;3982:275;;-1:-1:-1;3982:275:1:o;4262:980::-;4357:6;4365;4373;4381;4434:3;4422:9;4413:7;4409:23;4405:33;4402:53;;;4451:1;4448;4441:12;4402:53;4474:29;4493:9;4474:29;:::i;:::-;4464:39;;4522:2;4543:38;4577:2;4566:9;4562:18;4543:38;:::i;:::-;4533:48;;4628:2;4617:9;4613:18;4600:32;4590:42;;4683:2;4672:9;4668:18;4655:32;4706:18;4747:2;4739:6;4736:14;4733:34;;;4763:1;4760;4753:12;4733:34;4801:6;4790:9;4786:22;4776:32;;4846:7;4839:4;4835:2;4831:13;4827:27;4817:55;;4868:1;4865;4858:12;4817:55;4904:2;4891:16;4926:2;4922;4919:10;4916:36;;;4932:18;;:::i;:::-;4974:53;5017:2;4998:13;;-1:-1:-1;;4994:27:1;4990:36;;4974:53;:::i;:::-;4961:66;;5050:2;5043:5;5036:17;5090:7;5085:2;5080;5076;5072:11;5068:20;5065:33;5062:53;;;5111:1;5108;5101:12;5062:53;5166:2;5161;5157;5153:11;5148:2;5141:5;5137:14;5124:45;5210:1;5205:2;5200;5193:5;5189:14;5185:23;5178:34;;5231:5;5221:15;;;;;4262:980;;;;;;;:::o;5247:260::-;5315:6;5323;5376:2;5364:9;5355:7;5351:23;5347:32;5344:52;;;5392:1;5389;5382:12;5344:52;5415:29;5434:9;5415:29;:::i;:::-;5405:39;;5463:38;5497:2;5486:9;5482:18;5463:38;:::i;:::-;5453:48;;5247:260;;;;;:::o;5512:952::-;5596:6;5627:2;5670;5658:9;5649:7;5645:23;5641:32;5638:52;;;5686:1;5683;5676:12;5638:52;5726:9;5713:23;5755:18;5796:2;5788:6;5785:14;5782:34;;;5812:1;5809;5802:12;5782:34;5850:6;5839:9;5835:22;5825:32;;5895:7;5888:4;5884:2;5880:13;5876:27;5866:55;;5917:1;5914;5907:12;5866:55;5953:2;5940:16;5975:2;5971;5968:10;5965:36;;;5981:18;;:::i;:::-;6027:2;6024:1;6020:10;6010:20;;6050:28;6074:2;6070;6066:11;6050:28;:::i;:::-;6112:15;;;6182:11;;;6178:20;;;6143:12;;;;6210:19;;;6207:39;;;6242:1;6239;6232:12;6207:39;6266:11;;;;6286:148;6302:6;6297:3;6294:15;6286:148;;;6368:23;6387:3;6368:23;:::i;:::-;6356:36;;6319:12;;;;6412;;;;6286:148;;;6453:5;5512:952;-1:-1:-1;;;;;;;;5512:952:1:o;6469:380::-;6548:1;6544:12;;;;6591;;;6612:61;;6666:4;6658:6;6654:17;6644:27;;6612:61;6719:2;6711:6;6708:14;6688:18;6685:38;6682:161;;;6765:10;6760:3;6756:20;6753:1;6746:31;6800:4;6797:1;6790:15;6828:4;6825:1;6818:15;6682:161;;6469:380;;;:::o;8094:403::-;8296:2;8278:21;;;8335:2;8315:18;;;8308:30;8374:34;8369:2;8354:18;;8347:62;-1:-1:-1;;;8440:2:1;8425:18;;8418:37;8487:3;8472:19;;8094:403::o;8858:406::-;9060:2;9042:21;;;9099:2;9079:18;;;9072:30;9138:34;9133:2;9118:18;;9111:62;-1:-1:-1;;;9204:2:1;9189:18;;9182:40;9254:3;9239:19;;8858:406::o;9616:127::-;9677:10;9672:3;9668:20;9665:1;9658:31;9708:4;9705:1;9698:15;9732:4;9729:1;9722:15;9748:128;9788:3;9819:1;9815:6;9812:1;9809:13;9806:39;;;9825:18;;:::i;:::-;-1:-1:-1;9861:9:1;;9748:128::o;9881:405::-;10083:2;10065:21;;;10122:2;10102:18;;;10095:30;10161:34;10156:2;10141:18;;10134:62;-1:-1:-1;;;10227:2:1;10212:18;;10205:39;10276:3;10261:19;;9881:405::o;11370:409::-;11572:2;11554:21;;;11611:2;11591:18;;;11584:30;11650:34;11645:2;11630:18;;11623:62;-1:-1:-1;;;11716:2:1;11701:18;;11694:43;11769:3;11754:19;;11370:409::o;11784:356::-;11986:2;11968:21;;;12005:18;;;11998:30;12064:34;12059:2;12044:18;;12037:62;12131:2;12116:18;;11784:356::o;14088:345::-;14290:2;14272:21;;;14329:2;14309:18;;;14302:30;-1:-1:-1;;;14363:2:1;14348:18;;14341:51;14424:2;14409:18;;14088:345::o;14438:125::-;14478:4;14506:1;14503;14500:8;14497:34;;;14511:18;;:::i;:::-;-1:-1:-1;14548:9:1;;14438:125::o;15452:185::-;15494:3;15532:5;15526:12;15547:52;15592:6;15587:3;15580:4;15573:5;15569:16;15547:52;:::i;:::-;15615:16;;;;;15452:185;-1:-1:-1;;15452:185:1:o;15642:1174::-;15818:3;15847:1;15880:6;15874:13;15910:3;15932:1;15960:9;15956:2;15952:18;15942:28;;16020:2;16009:9;16005:18;16042;16032:61;;16086:4;16078:6;16074:17;16064:27;;16032:61;16112:2;16160;16152:6;16149:14;16129:18;16126:38;16123:165;;;-1:-1:-1;;;16187:33:1;;16243:4;16240:1;16233:15;16273:4;16194:3;16261:17;16123:165;16304:18;16331:104;;;;16449:1;16444:320;;;;16297:467;;16331:104;-1:-1:-1;;16364:24:1;;16352:37;;16409:16;;;;-1:-1:-1;16331:104:1;;16444:320;15399:1;15392:14;;;15436:4;15423:18;;16539:1;16553:165;16567:6;16564:1;16561:13;16553:165;;;16645:14;;16632:11;;;16625:35;16688:16;;;;16582:10;;16553:165;;;16557:3;;16747:6;16742:3;16738:16;16731:23;;16297:467;;;;;;;16780:30;16806:3;16798:6;16780:30;:::i;:::-;16773:37;15642:1174;-1:-1:-1;;;;;15642:1174:1:o;17233:127::-;17294:10;17289:3;17285:20;17282:1;17275:31;17325:4;17322:1;17315:15;17349:4;17346:1;17339:15;17365:135;17404:3;-1:-1:-1;;17425:17:1;;17422:43;;;17445:18;;:::i;:::-;-1:-1:-1;17492:1:1;17481:13;;17365:135::o;19490:414::-;19692:2;19674:21;;;19731:2;19711:18;;;19704:30;19770:34;19765:2;19750:18;;19743:62;-1:-1:-1;;;19836:2:1;19821:18;;19814:48;19894:3;19879:19;;19490:414::o;19909:127::-;19970:10;19965:3;19961:20;19958:1;19951:31;20001:4;19998:1;19991:15;20025:4;20022:1;20015:15;20041:120;20081:1;20107;20097:35;;20112:18;;:::i;:::-;-1:-1:-1;20146:9:1;;20041:120::o;20166:112::-;20198:1;20224;20214:35;;20229:18;;:::i;:::-;-1:-1:-1;20263:9:1;;20166:112::o;20283:500::-;-1:-1:-1;;;;;20552:15:1;;;20534:34;;20604:15;;20599:2;20584:18;;20577:43;20651:2;20636:18;;20629:34;;;20699:3;20694:2;20679:18;;20672:31;;;20477:4;;20720:57;;20757:19;;20749:6;20720:57;:::i;:::-;20712:65;20283:500;-1:-1:-1;;;;;;20283:500:1:o;20788:249::-;20857:6;20910:2;20898:9;20889:7;20885:23;20881:32;20878:52;;;20926:1;20923;20916:12;20878:52;20958:9;20952:16;20977:30;21001:5;20977:30;:::i

Swarm Source

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