ETH Price: $3,488.29 (-0.43%)
Gas: 2 Gwei

Token

DAO Moonolopis City (DAOMoon)
 

Overview

Max Total Supply

103 DAOMoon

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vsemoe.eth
Balance
1 DAOMoon
0xc629d1dc6340b83263756c9a5a6e4b5a16aaa705
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:
NftMoonAvatar

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-11
*/

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// 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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: nftmoon_avatar.sol


pragma solidity ^0.8.7;



contract NftMoonAvatar is ERC721A, Ownable {

    uint256 public MAX_SUPPLY =10000;    //total supply

    uint256 public Max_Per_Mint;  //max per mint

    uint256 mintRate;  //price

    uint256 public startingIndex;

    address payable beneficiary;

    bool private _saleStarted ;

    string public provenanceHash = "";
    string public baseURI;

    bool private _presaleActive;



    constructor(uint256 _startPrice, 
        uint256 _maxPerMint,
        string memory _uri,
        address payable _beneficiary) ERC721A("DAO Moonolopis City", "DAOMoon") {
            mintRate = _startPrice;
            Max_Per_Mint = _maxPerMint;
            baseURI = _uri;
            beneficiary = _beneficiary;
        }

    function setBeneficiary(address payable _beneficiary) public virtual onlyOwner {
        beneficiary = _beneficiary;
    }

    function setBaseURI(string calldata uri ) public onlyOwner {
        baseURI = uri;
    }

    

    function setMaxPerMint(uint256 Value) public onlyOwner {
        Max_Per_Mint = Value;
    }

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


    //set price
    function setPrice(uint256 _newprice) public onlyOwner {
        mintRate = _newprice;
    }

    function getPrice() public view virtual returns (uint256){
        return mintRate;
    }

    function WithdrawAddress() public view virtual returns (address){
        return beneficiary;
    }

    // when sale started for public
    modifier whenSaleStarted() {
        require(_saleStarted, "Sale not active");
        _;
    }

    //when sale started for Whitelisted 
    modifier whenPresaleStarted() {
        require(_presaleActive, "Presale not active");
        _;
    }

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        provenanceHash = _provenanceHash;
    }

    // public mint
    function mint(uint256 quantity) whenSaleStarted external payable {
        
        require(quantity <= Max_Per_Mint, "Maximum mint per transaction limit reached");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    // whitelist Mint
    function whitelistMint(uint256 quantity) whenPresaleStarted external payable {
        require(quantity <= Max_Per_Mint, "Maximum mint per transaction limit reached");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    // mint by owner
    function MintByOwner(address _receiver,uint256 quantity) external onlyOwner virtual {
        require(_receiver != address(0), "Not mint to null address");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(_receiver, quantity);
    }


    // giveawayS Airdrop mints
    function Giveaway(address _receiver, uint256 quantity) external onlyOwner virtual {
        require(_receiver != address(0), "Not mint to null address");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(_receiver, quantity);
    }

    // start public sale
    function SaleStarted() external onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");

        _saleStarted = !_saleStarted;
    }

    // start presale for whitelisted users
    function presaleStarted() external onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");
        _presaleActive = !_presaleActive;
    }

    //check if public sale is active
    function saleActive() public view returns(bool) {
        return _saleStarted;
    }

    
    // withdraw money
    function withdraw() public virtual onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");
        uint256 _balance = address(this).balance;
        require(payable(beneficiary).send(_balance));
    }

    //check if presale is active
    function presaleIsActive() public view returns(bool) {
        return _presaleActive;
    }

    function DEVELOPER_ADDRESS() public pure returns (address payable developer) {
        developer = payable(0x2F1b87C0EE11e810b8Bf9B5D78e70D400eb3f645);
    }

    function DEV_TEAM() public pure returns (string memory web_url) {
        web_url = "https://cmdevs.org";
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_maxPerMint","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address payable","name":"_beneficiary","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[],"name":"DEVELOPER_ADDRESS","outputs":[{"internalType":"address payable","name":"developer","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"DEV_TEAM","outputs":[{"internalType":"string","name":"web_url","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Per_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WithdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_beneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Value","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261271060095560405180602001604052806000815250600e90805190602001906200003192919062000280565b503480156200003f57600080fd5b5060405162004979380380620049798339818101604052810190620000659190620003dc565b6040518060400160405280601381526020017f44414f204d6f6f6e6f6c6f7069732043697479000000000000000000000000008152506040518060400160405280600781526020017f44414f4d6f6f6e000000000000000000000000000000000000000000000000008152508160029080519060200190620000e992919062000280565b5080600390805190602001906200010292919062000280565b5062000113620001ad60201b60201c565b60008190555050506200013b6200012f620001b260201b60201c565b620001ba60201b60201c565b83600b8190555082600a8190555081600f90805190602001906200016192919062000280565b5080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000663565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028e9062000540565b90600052602060002090601f016020900481019282620002b25760008555620002fe565b82601f10620002cd57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fd578251825591602001919060010190620002e0565b5b5090506200030d919062000311565b5090565b5b808211156200032c57600081600090555060010162000312565b5090565b600062000347620003418462000496565b6200046d565b9050828152602081018484840111156200036657620003656200060f565b5b620003738482856200050a565b509392505050565b6000815190506200038c816200062f565b92915050565b600082601f830112620003aa57620003a96200060a565b5b8151620003bc84826020860162000330565b91505092915050565b600081519050620003d68162000649565b92915050565b60008060008060808587031215620003f957620003f862000619565b5b60006200040987828801620003c5565b94505060206200041c87828801620003c5565b935050604085015167ffffffffffffffff81111562000440576200043f62000614565b5b6200044e8782880162000392565b925050606062000461878288016200037b565b91505092959194509250565b6000620004796200048c565b905062000487828262000576565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b457620004b3620005db565b5b620004bf826200061e565b9050602081019050919050565b6000620004d982620004e0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200052a5780820151818401526020810190506200050d565b838111156200053a576000848401525b50505050565b600060028204905060018216806200055957607f821691505b6020821081141562000570576200056f620005ac565b5b50919050565b62000581826200061e565b810181811067ffffffffffffffff82111715620005a357620005a2620005db565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200063a81620004cc565b81146200064657600080fd5b50565b620006548162000500565b81146200066057600080fd5b50565b61430680620006736000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107e5578063cb774d4714610822578063db6242c31461084d578063e985e9c514610876578063f2fde38b146108b35761023b565b8063a0712d6814610723578063a22cb4651461073f578063b88d4fde14610768578063bfa26a5814610791578063c6ab67a3146107ba5761023b565b80638da5cb5b116100f25780638da5cb5b14610662578063912ee23d1461068d57806391b7f5ed146106a457806395d89b41146106cd57806398d5fdca146106f85761023b565b806370a082311461059c578063715018a6146105d9578063868ff4a2146105f057806387f503fd1461060c5780638be6c6bf146106375761023b565b806330f72cd4116101bc57806346cde9891161018057806346cde989146104b557806355f804b3146104e05780636352211e1461050957806368428a1b146105465780636c0360eb146105715761023b565b806330f72cd4146103f457806332cb6b0c1461041f5780633ccfd60b1461044a57806342842e0e14610461578063454e66c81461048a5761023b565b80631096952311610203578063109695231461032557806318160ddd1461034e5780631c31f710146103795780632118eda2146103a257806323b872dd146103cb5761023b565b806301ffc9a71461024057806304549d6f1461027d57806306fdde0314610294578063081812fc146102bf578063095ea7b3146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ad565b6108dc565b6040516102749190613a8a565b60405180910390f35b34801561028957600080fd5b506102926109be565b005b3480156102a057600080fd5b506102a9610af8565b6040516102b69190613aa5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061379d565b610b8a565b6040516102f39190613a08565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061366d565b610c06565b005b34801561033157600080fd5b5061034c60048036038101906103479190613754565b610d11565b005b34801561035a57600080fd5b50610363610da7565b6040516103709190613be7565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906134ea565b610dbe565b005b3480156103ae57600080fd5b506103c960048036038101906103c4919061366d565b610e7e565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613557565b610fcf565b005b34801561040057600080fd5b50610409610fdf565b6040516104169190613a8a565b60405180910390f35b34801561042b57600080fd5b50610434610ff6565b6040516104419190613be7565b60405180910390f35b34801561045657600080fd5b5061045f610ffc565b005b34801561046d57600080fd5b5061048860048036038101906104839190613557565b611172565b005b34801561049657600080fd5b5061049f611192565b6040516104ac9190613a23565b60405180910390f35b3480156104c157600080fd5b506104ca6111ae565b6040516104d79190613be7565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613707565b6111b4565b005b34801561051557600080fd5b50610530600480360381019061052b919061379d565b611246565b60405161053d9190613a08565b60405180910390f35b34801561055257600080fd5b5061055b61125c565b6040516105689190613a8a565b60405180910390f35b34801561057d57600080fd5b50610586611273565b6040516105939190613aa5565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906134bd565b611301565b6040516105d09190613be7565b60405180910390f35b3480156105e557600080fd5b506105ee6113d1565b005b61060a6004803603810190610605919061379d565b611459565b005b34801561061857600080fd5b506106216115a1565b60405161062e9190613aa5565b60405180910390f35b34801561064357600080fd5b5061064c6115de565b6040516106599190613a08565b60405180910390f35b34801561066e57600080fd5b50610677611608565b6040516106849190613a08565b60405180910390f35b34801561069957600080fd5b506106a2611632565b005b3480156106b057600080fd5b506106cb60048036038101906106c6919061379d565b61176c565b005b3480156106d957600080fd5b506106e26117f2565b6040516106ef9190613aa5565b60405180910390f35b34801561070457600080fd5b5061070d611884565b60405161071a9190613be7565b60405180910390f35b61073d6004803603810190610738919061379d565b61188e565b005b34801561074b57600080fd5b506107666004803603810190610761919061362d565b6119d6565b005b34801561077457600080fd5b5061078f600480360381019061078a91906135aa565b611b4e565b005b34801561079d57600080fd5b506107b860048036038101906107b3919061366d565b611bca565b005b3480156107c657600080fd5b506107cf611d1b565b6040516107dc9190613aa5565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061379d565b611da9565b6040516108199190613aa5565b60405180910390f35b34801561082e57600080fd5b50610837611e48565b6040516108449190613be7565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061379d565b611e4e565b005b34801561088257600080fd5b5061089d60048036038101906108989190613517565b611ed4565b6040516108aa9190613a8a565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d591906134bd565b611f68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b757506109b682612060565b5b9050919050565b6109c66120ca565b73ffffffffffffffffffffffffffffffffffffffff166109e4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390613b07565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606060028054610b0790613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390613ea9565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b95826120d2565b610bcb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1182611246565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c986120ca565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cca5750610cc881610cc36120ca565b611ed4565b155b15610d01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0c838383612120565b505050565b610d196120ca565b73ffffffffffffffffffffffffffffffffffffffff16610d37611608565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613b87565b60405180910390fd5b80600e9080519060200190610da392919061319d565b5050565b6000610db16121d2565b6001546000540303905090565b610dc66120ca565b73ffffffffffffffffffffffffffffffffffffffff16610de4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613b87565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e866120ca565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613ae7565b60405180910390fd5b60095481610f76610da7565b610f809190613ccc565b1115610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b67565b60405180910390fd5b610fcb82826121d7565b5050565b610fda8383836121f5565b505050565b6000601060009054906101000a900460ff16905090565b60095481565b6110046120ca565b73ffffffffffffffffffffffffffffffffffffffff16611022611608565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613b07565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061116f57600080fd5b50565b61118d83838360405180602001604052806000815250611b4e565b505050565b6000732f1b87c0ee11e810b8bf9b5d78e70d400eb3f645905090565b600a5481565b6111bc6120ca565b73ffffffffffffffffffffffffffffffffffffffff166111da611608565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613b87565b60405180910390fd5b8181600f9190611241929190613223565b505050565b6000611251826126e6565b600001519050919050565b6000600d60149054906101000a900460ff16905090565b600f805461128090613ea9565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac90613ea9565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611369576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113d96120ca565b73ffffffffffffffffffffffffffffffffffffffff166113f7611608565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613b87565b60405180910390fd5b6114576000612975565b565b601060009054906101000a900460ff166114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613b27565b60405180910390fd5b600a548111156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613ba7565b60405180910390fd5b600954816114f9610da7565b6115039190613ccc565b1115611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613b67565b60405180910390fd5b80600b546115529190613d53565b341015611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613bc7565b60405180910390fd5b61159e33826121d7565b50565b60606040518060400160405280601281526020017f68747470733a2f2f636d646576732e6f72670000000000000000000000000000815250905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a6120ca565b73ffffffffffffffffffffffffffffffffffffffff16611658611608565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613b07565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b6117746120ca565b73ffffffffffffffffffffffffffffffffffffffff16611792611608565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613b87565b60405180910390fd5b80600b8190555050565b60606003805461180190613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461182d90613ea9565b801561187a5780601f1061184f5761010080835404028352916020019161187a565b820191906000526020600020905b81548152906001019060200180831161185d57829003601f168201915b5050505050905090565b6000600b54905090565b600d60149054906101000a900460ff166118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613b47565b60405180910390fd5b600a54811115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613ba7565b60405180910390fd5b6009548161192e610da7565b6119389190613ccc565b1115611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613b67565b60405180910390fd5b80600b546119879190613d53565b3410156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613bc7565b60405180910390fd5b6119d333826121d7565b50565b6119de6120ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a43576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a506120ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611afd6120ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b429190613a8a565b60405180910390a35050565b611b598484846121f5565b611b788373ffffffffffffffffffffffffffffffffffffffff16612a3b565b8015611b8d5750611b8b84848484612a5e565b155b15611bc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bd26120ca565b73ffffffffffffffffffffffffffffffffffffffff16611bf0611608565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613ae7565b60405180910390fd5b60095481611cc2610da7565b611ccc9190613ccc565b1115611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0490613b67565b60405180910390fd5b611d1782826121d7565b5050565b600e8054611d2890613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490613ea9565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b505050505081565b6060611db4826120d2565b611dea576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611df4612bbe565b9050600081511415611e155760405180602001604052806000815250611e40565b80611e1f84612c50565b604051602001611e309291906139e4565b6040516020818303038152906040525b915050919050565b600c5481565b611e566120ca565b73ffffffffffffffffffffffffffffffffffffffff16611e74611608565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190613b87565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f706120ca565b73ffffffffffffffffffffffffffffffffffffffff16611f8e611608565b73ffffffffffffffffffffffffffffffffffffffff1614611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90613ac7565b60405180910390fd5b61205d81612975565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816120dd6121d2565b111580156120ec575060005482105b8015612119575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6121f1828260405180602001604052806000815250612db1565b5050565b6000612200826126e6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122276120ca565b73ffffffffffffffffffffffffffffffffffffffff16148061225a575061225982600001516122546120ca565b611ed4565b5b8061229f57506122686120ca565b73ffffffffffffffffffffffffffffffffffffffff1661228784610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122d8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612341576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b58585856001612dc3565b6123c56000848460000151612120565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612676576000548110156126755782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126df8585856001612dc9565b5050505050565b6126ee6132a9565b6000829050806126fc6121d2565b1115801561270b575060005481105b1561293e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612820578092505050612970565b5b60011561293b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612936578092505050612970565b612821565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a846120ca565b8786866040518563ffffffff1660e01b8152600401612aa69493929190613a3e565b602060405180830381600087803b158015612ac057600080fd5b505af1925050508015612af157506040513d601f19601f82011682018060405250810190612aee91906136da565b60015b612b6b573d8060008114612b21576040519150601f19603f3d011682016040523d82523d6000602084013e612b26565b606091505b50600081511415612b63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612bcd90613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf990613ea9565b8015612c465780601f10612c1b57610100808354040283529160200191612c46565b820191906000526020600020905b815481529060010190602001808311612c2957829003601f168201915b5050505050905090565b60606000821415612c98576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dac565b600082905060005b60008214612cca578080612cb390613f0c565b915050600a82612cc39190613d22565b9150612ca0565b60008167ffffffffffffffff811115612ce657612ce5614042565b5b6040519080825280601f01601f191660200182016040528015612d185781602001600182028036833780820191505090505b5090505b60008514612da557600182612d319190613dad565b9150600a85612d409190613f55565b6030612d4c9190613ccc565b60f81b818381518110612d6257612d61614013565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9e9190613d22565b9450612d1c565b8093505050505b919050565b612dbe8383836001612dcf565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e77576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e846000868387612dc3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561304e575061304d8773ffffffffffffffffffffffffffffffffffffffff16612a3b565b5b15613114575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130c36000888480600101955088612a5e565b6130f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561305457826000541461310f57600080fd5b613180565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613115575b8160008190555050506131966000868387612dc9565b5050505050565b8280546131a990613ea9565b90600052602060002090601f0160209004810192826131cb5760008555613212565b82601f106131e457805160ff1916838001178555613212565b82800160010185558215613212579182015b828111156132115782518255916020019190600101906131f6565b5b50905061321f91906132ec565b5090565b82805461322f90613ea9565b90600052602060002090601f0160209004810192826132515760008555613298565b82601f1061326a57803560ff1916838001178555613298565b82800160010185558215613298579182015b8281111561329757823582559160200191906001019061327c565b5b5090506132a591906132ec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133055760008160009055506001016132ed565b5090565b600061331c61331784613c27565b613c02565b90508281526020810184848401111561333857613337614080565b5b613343848285613e67565b509392505050565b600061335e61335984613c58565b613c02565b90508281526020810184848401111561337a57613379614080565b5b613385848285613e67565b509392505050565b60008135905061339c8161425d565b92915050565b6000813590506133b181614274565b92915050565b6000813590506133c68161428b565b92915050565b6000813590506133db816142a2565b92915050565b6000815190506133f0816142a2565b92915050565b600082601f83011261340b5761340a614076565b5b813561341b848260208601613309565b91505092915050565b60008083601f84011261343a57613439614076565b5b8235905067ffffffffffffffff81111561345757613456614071565b5b6020830191508360018202830111156134735761347261407b565b5b9250929050565b600082601f83011261348f5761348e614076565b5b813561349f84826020860161334b565b91505092915050565b6000813590506134b7816142b9565b92915050565b6000602082840312156134d3576134d261408a565b5b60006134e18482850161338d565b91505092915050565b600060208284031215613500576134ff61408a565b5b600061350e848285016133a2565b91505092915050565b6000806040838503121561352e5761352d61408a565b5b600061353c8582860161338d565b925050602061354d8582860161338d565b9150509250929050565b6000806000606084860312156135705761356f61408a565b5b600061357e8682870161338d565b935050602061358f8682870161338d565b92505060406135a0868287016134a8565b9150509250925092565b600080600080608085870312156135c4576135c361408a565b5b60006135d28782880161338d565b94505060206135e38782880161338d565b93505060406135f4878288016134a8565b925050606085013567ffffffffffffffff81111561361557613614614085565b5b613621878288016133f6565b91505092959194509250565b600080604083850312156136445761364361408a565b5b60006136528582860161338d565b9250506020613663858286016133b7565b9150509250929050565b600080604083850312156136845761368361408a565b5b60006136928582860161338d565b92505060206136a3858286016134a8565b9150509250929050565b6000602082840312156136c3576136c261408a565b5b60006136d1848285016133cc565b91505092915050565b6000602082840312156136f0576136ef61408a565b5b60006136fe848285016133e1565b91505092915050565b6000806020838503121561371e5761371d61408a565b5b600083013567ffffffffffffffff81111561373c5761373b614085565b5b61374885828601613424565b92509250509250929050565b60006020828403121561376a5761376961408a565b5b600082013567ffffffffffffffff81111561378857613787614085565b5b6137948482850161347a565b91505092915050565b6000602082840312156137b3576137b261408a565b5b60006137c1848285016134a8565b91505092915050565b6137d381613df3565b82525050565b6137e281613de1565b82525050565b6137f181613e05565b82525050565b600061380282613c89565b61380c8185613c9f565b935061381c818560208601613e76565b6138258161408f565b840191505092915050565b600061383b82613c94565b6138458185613cb0565b9350613855818560208601613e76565b61385e8161408f565b840191505092915050565b600061387482613c94565b61387e8185613cc1565b935061388e818560208601613e76565b80840191505092915050565b60006138a7602683613cb0565b91506138b2826140a0565b604082019050919050565b60006138ca601883613cb0565b91506138d5826140ef565b602082019050919050565b60006138ed601383613cb0565b91506138f882614118565b602082019050919050565b6000613910601283613cb0565b915061391b82614141565b602082019050919050565b6000613933600f83613cb0565b915061393e8261416a565b602082019050919050565b6000613956601683613cb0565b915061396182614193565b602082019050919050565b6000613979602083613cb0565b9150613984826141bc565b602082019050919050565b600061399c602a83613cb0565b91506139a7826141e5565b604082019050919050565b60006139bf601583613cb0565b91506139ca82614234565b602082019050919050565b6139de81613e5d565b82525050565b60006139f08285613869565b91506139fc8284613869565b91508190509392505050565b6000602082019050613a1d60008301846137d9565b92915050565b6000602082019050613a3860008301846137ca565b92915050565b6000608082019050613a5360008301876137d9565b613a6060208301866137d9565b613a6d60408301856139d5565b8181036060830152613a7f81846137f7565b905095945050505050565b6000602082019050613a9f60008301846137e8565b92915050565b60006020820190508181036000830152613abf8184613830565b905092915050565b60006020820190508181036000830152613ae08161389a565b9050919050565b60006020820190508181036000830152613b00816138bd565b9050919050565b60006020820190508181036000830152613b20816138e0565b9050919050565b60006020820190508181036000830152613b4081613903565b9050919050565b60006020820190508181036000830152613b6081613926565b9050919050565b60006020820190508181036000830152613b8081613949565b9050919050565b60006020820190508181036000830152613ba08161396c565b9050919050565b60006020820190508181036000830152613bc08161398f565b9050919050565b60006020820190508181036000830152613be0816139b2565b9050919050565b6000602082019050613bfc60008301846139d5565b92915050565b6000613c0c613c1d565b9050613c188282613edb565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4257613c41614042565b5b613c4b8261408f565b9050602081019050919050565b600067ffffffffffffffff821115613c7357613c72614042565b5b613c7c8261408f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd782613e5d565b9150613ce283613e5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1757613d16613f86565b5b828201905092915050565b6000613d2d82613e5d565b9150613d3883613e5d565b925082613d4857613d47613fb5565b5b828204905092915050565b6000613d5e82613e5d565b9150613d6983613e5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da257613da1613f86565b5b828202905092915050565b6000613db882613e5d565b9150613dc383613e5d565b925082821015613dd657613dd5613f86565b5b828203905092915050565b6000613dec82613e3d565b9050919050565b6000613dfe82613e3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e94578082015181840152602081019050613e79565b83811115613ea3576000848401525b50505050565b60006002820490506001821680613ec157607f821691505b60208210811415613ed557613ed4613fe4565b5b50919050565b613ee48261408f565b810181811067ffffffffffffffff82111715613f0357613f02614042565b5b80604052505050565b6000613f1782613e5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4a57613f49613f86565b5b600182019050919050565b6000613f6082613e5d565b9150613f6b83613e5d565b925082613f7b57613f7a613fb5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d696e7420746f206e756c6c20616464726573730000000000000000600082015250565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974207265616368656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61426681613de1565b811461427157600080fd5b50565b61427d81613df3565b811461428857600080fd5b50565b61429481613e05565b811461429f57600080fd5b50565b6142ab81613e11565b81146142b657600080fd5b50565b6142c281613e5d565b81146142cd57600080fd5b5056fea264697066735822122080746c56e873e6eb40eee0eced9e781946fc1582648ff58e527e576979f9d71264736f6c6343000807003300000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000197727ad2ec7326952843fbd83a0d57b907afbdf000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e6170702f6170692f6e66746d6f6f6e2d6176617461722f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107e5578063cb774d4714610822578063db6242c31461084d578063e985e9c514610876578063f2fde38b146108b35761023b565b8063a0712d6814610723578063a22cb4651461073f578063b88d4fde14610768578063bfa26a5814610791578063c6ab67a3146107ba5761023b565b80638da5cb5b116100f25780638da5cb5b14610662578063912ee23d1461068d57806391b7f5ed146106a457806395d89b41146106cd57806398d5fdca146106f85761023b565b806370a082311461059c578063715018a6146105d9578063868ff4a2146105f057806387f503fd1461060c5780638be6c6bf146106375761023b565b806330f72cd4116101bc57806346cde9891161018057806346cde989146104b557806355f804b3146104e05780636352211e1461050957806368428a1b146105465780636c0360eb146105715761023b565b806330f72cd4146103f457806332cb6b0c1461041f5780633ccfd60b1461044a57806342842e0e14610461578063454e66c81461048a5761023b565b80631096952311610203578063109695231461032557806318160ddd1461034e5780631c31f710146103795780632118eda2146103a257806323b872dd146103cb5761023b565b806301ffc9a71461024057806304549d6f1461027d57806306fdde0314610294578063081812fc146102bf578063095ea7b3146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ad565b6108dc565b6040516102749190613a8a565b60405180910390f35b34801561028957600080fd5b506102926109be565b005b3480156102a057600080fd5b506102a9610af8565b6040516102b69190613aa5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061379d565b610b8a565b6040516102f39190613a08565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061366d565b610c06565b005b34801561033157600080fd5b5061034c60048036038101906103479190613754565b610d11565b005b34801561035a57600080fd5b50610363610da7565b6040516103709190613be7565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906134ea565b610dbe565b005b3480156103ae57600080fd5b506103c960048036038101906103c4919061366d565b610e7e565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613557565b610fcf565b005b34801561040057600080fd5b50610409610fdf565b6040516104169190613a8a565b60405180910390f35b34801561042b57600080fd5b50610434610ff6565b6040516104419190613be7565b60405180910390f35b34801561045657600080fd5b5061045f610ffc565b005b34801561046d57600080fd5b5061048860048036038101906104839190613557565b611172565b005b34801561049657600080fd5b5061049f611192565b6040516104ac9190613a23565b60405180910390f35b3480156104c157600080fd5b506104ca6111ae565b6040516104d79190613be7565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613707565b6111b4565b005b34801561051557600080fd5b50610530600480360381019061052b919061379d565b611246565b60405161053d9190613a08565b60405180910390f35b34801561055257600080fd5b5061055b61125c565b6040516105689190613a8a565b60405180910390f35b34801561057d57600080fd5b50610586611273565b6040516105939190613aa5565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906134bd565b611301565b6040516105d09190613be7565b60405180910390f35b3480156105e557600080fd5b506105ee6113d1565b005b61060a6004803603810190610605919061379d565b611459565b005b34801561061857600080fd5b506106216115a1565b60405161062e9190613aa5565b60405180910390f35b34801561064357600080fd5b5061064c6115de565b6040516106599190613a08565b60405180910390f35b34801561066e57600080fd5b50610677611608565b6040516106849190613a08565b60405180910390f35b34801561069957600080fd5b506106a2611632565b005b3480156106b057600080fd5b506106cb60048036038101906106c6919061379d565b61176c565b005b3480156106d957600080fd5b506106e26117f2565b6040516106ef9190613aa5565b60405180910390f35b34801561070457600080fd5b5061070d611884565b60405161071a9190613be7565b60405180910390f35b61073d6004803603810190610738919061379d565b61188e565b005b34801561074b57600080fd5b506107666004803603810190610761919061362d565b6119d6565b005b34801561077457600080fd5b5061078f600480360381019061078a91906135aa565b611b4e565b005b34801561079d57600080fd5b506107b860048036038101906107b3919061366d565b611bca565b005b3480156107c657600080fd5b506107cf611d1b565b6040516107dc9190613aa5565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061379d565b611da9565b6040516108199190613aa5565b60405180910390f35b34801561082e57600080fd5b50610837611e48565b6040516108449190613be7565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061379d565b611e4e565b005b34801561088257600080fd5b5061089d60048036038101906108989190613517565b611ed4565b6040516108aa9190613a8a565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d591906134bd565b611f68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b757506109b682612060565b5b9050919050565b6109c66120ca565b73ffffffffffffffffffffffffffffffffffffffff166109e4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390613b07565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606060028054610b0790613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390613ea9565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b95826120d2565b610bcb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1182611246565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c79576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c986120ca565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cca5750610cc881610cc36120ca565b611ed4565b155b15610d01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0c838383612120565b505050565b610d196120ca565b73ffffffffffffffffffffffffffffffffffffffff16610d37611608565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613b87565b60405180910390fd5b80600e9080519060200190610da392919061319d565b5050565b6000610db16121d2565b6001546000540303905090565b610dc66120ca565b73ffffffffffffffffffffffffffffffffffffffff16610de4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613b87565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e866120ca565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613ae7565b60405180910390fd5b60095481610f76610da7565b610f809190613ccc565b1115610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b67565b60405180910390fd5b610fcb82826121d7565b5050565b610fda8383836121f5565b505050565b6000601060009054906101000a900460ff16905090565b60095481565b6110046120ca565b73ffffffffffffffffffffffffffffffffffffffff16611022611608565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613b07565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061116f57600080fd5b50565b61118d83838360405180602001604052806000815250611b4e565b505050565b6000732f1b87c0ee11e810b8bf9b5d78e70d400eb3f645905090565b600a5481565b6111bc6120ca565b73ffffffffffffffffffffffffffffffffffffffff166111da611608565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613b87565b60405180910390fd5b8181600f9190611241929190613223565b505050565b6000611251826126e6565b600001519050919050565b6000600d60149054906101000a900460ff16905090565b600f805461128090613ea9565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac90613ea9565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611369576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113d96120ca565b73ffffffffffffffffffffffffffffffffffffffff166113f7611608565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613b87565b60405180910390fd5b6114576000612975565b565b601060009054906101000a900460ff166114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613b27565b60405180910390fd5b600a548111156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613ba7565b60405180910390fd5b600954816114f9610da7565b6115039190613ccc565b1115611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613b67565b60405180910390fd5b80600b546115529190613d53565b341015611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613bc7565b60405180910390fd5b61159e33826121d7565b50565b60606040518060400160405280601281526020017f68747470733a2f2f636d646576732e6f72670000000000000000000000000000815250905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a6120ca565b73ffffffffffffffffffffffffffffffffffffffff16611658611608565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613b07565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b6117746120ca565b73ffffffffffffffffffffffffffffffffffffffff16611792611608565b73ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613b87565b60405180910390fd5b80600b8190555050565b60606003805461180190613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461182d90613ea9565b801561187a5780601f1061184f5761010080835404028352916020019161187a565b820191906000526020600020905b81548152906001019060200180831161185d57829003601f168201915b5050505050905090565b6000600b54905090565b600d60149054906101000a900460ff166118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613b47565b60405180910390fd5b600a54811115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613ba7565b60405180910390fd5b6009548161192e610da7565b6119389190613ccc565b1115611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613b67565b60405180910390fd5b80600b546119879190613d53565b3410156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613bc7565b60405180910390fd5b6119d333826121d7565b50565b6119de6120ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a43576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a506120ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611afd6120ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b429190613a8a565b60405180910390a35050565b611b598484846121f5565b611b788373ffffffffffffffffffffffffffffffffffffffff16612a3b565b8015611b8d5750611b8b84848484612a5e565b155b15611bc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bd26120ca565b73ffffffffffffffffffffffffffffffffffffffff16611bf0611608565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613ae7565b60405180910390fd5b60095481611cc2610da7565b611ccc9190613ccc565b1115611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0490613b67565b60405180910390fd5b611d1782826121d7565b5050565b600e8054611d2890613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490613ea9565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b505050505081565b6060611db4826120d2565b611dea576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611df4612bbe565b9050600081511415611e155760405180602001604052806000815250611e40565b80611e1f84612c50565b604051602001611e309291906139e4565b6040516020818303038152906040525b915050919050565b600c5481565b611e566120ca565b73ffffffffffffffffffffffffffffffffffffffff16611e74611608565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190613b87565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f706120ca565b73ffffffffffffffffffffffffffffffffffffffff16611f8e611608565b73ffffffffffffffffffffffffffffffffffffffff1614611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90613ac7565b60405180910390fd5b61205d81612975565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816120dd6121d2565b111580156120ec575060005482105b8015612119575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6121f1828260405180602001604052806000815250612db1565b5050565b6000612200826126e6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122276120ca565b73ffffffffffffffffffffffffffffffffffffffff16148061225a575061225982600001516122546120ca565b611ed4565b5b8061229f57506122686120ca565b73ffffffffffffffffffffffffffffffffffffffff1661228784610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122d8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612341576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b58585856001612dc3565b6123c56000848460000151612120565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612676576000548110156126755782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126df8585856001612dc9565b5050505050565b6126ee6132a9565b6000829050806126fc6121d2565b1115801561270b575060005481105b1561293e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161293c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612820578092505050612970565b5b60011561293b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612936578092505050612970565b612821565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a846120ca565b8786866040518563ffffffff1660e01b8152600401612aa69493929190613a3e565b602060405180830381600087803b158015612ac057600080fd5b505af1925050508015612af157506040513d601f19601f82011682018060405250810190612aee91906136da565b60015b612b6b573d8060008114612b21576040519150601f19603f3d011682016040523d82523d6000602084013e612b26565b606091505b50600081511415612b63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612bcd90613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf990613ea9565b8015612c465780601f10612c1b57610100808354040283529160200191612c46565b820191906000526020600020905b815481529060010190602001808311612c2957829003601f168201915b5050505050905090565b60606000821415612c98576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dac565b600082905060005b60008214612cca578080612cb390613f0c565b915050600a82612cc39190613d22565b9150612ca0565b60008167ffffffffffffffff811115612ce657612ce5614042565b5b6040519080825280601f01601f191660200182016040528015612d185781602001600182028036833780820191505090505b5090505b60008514612da557600182612d319190613dad565b9150600a85612d409190613f55565b6030612d4c9190613ccc565b60f81b818381518110612d6257612d61614013565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9e9190613d22565b9450612d1c565b8093505050505b919050565b612dbe8383836001612dcf565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e77576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e846000868387612dc3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561304e575061304d8773ffffffffffffffffffffffffffffffffffffffff16612a3b565b5b15613114575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130c36000888480600101955088612a5e565b6130f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561305457826000541461310f57600080fd5b613180565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613115575b8160008190555050506131966000868387612dc9565b5050505050565b8280546131a990613ea9565b90600052602060002090601f0160209004810192826131cb5760008555613212565b82601f106131e457805160ff1916838001178555613212565b82800160010185558215613212579182015b828111156132115782518255916020019190600101906131f6565b5b50905061321f91906132ec565b5090565b82805461322f90613ea9565b90600052602060002090601f0160209004810192826132515760008555613298565b82601f1061326a57803560ff1916838001178555613298565b82800160010185558215613298579182015b8281111561329757823582559160200191906001019061327c565b5b5090506132a591906132ec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133055760008160009055506001016132ed565b5090565b600061331c61331784613c27565b613c02565b90508281526020810184848401111561333857613337614080565b5b613343848285613e67565b509392505050565b600061335e61335984613c58565b613c02565b90508281526020810184848401111561337a57613379614080565b5b613385848285613e67565b509392505050565b60008135905061339c8161425d565b92915050565b6000813590506133b181614274565b92915050565b6000813590506133c68161428b565b92915050565b6000813590506133db816142a2565b92915050565b6000815190506133f0816142a2565b92915050565b600082601f83011261340b5761340a614076565b5b813561341b848260208601613309565b91505092915050565b60008083601f84011261343a57613439614076565b5b8235905067ffffffffffffffff81111561345757613456614071565b5b6020830191508360018202830111156134735761347261407b565b5b9250929050565b600082601f83011261348f5761348e614076565b5b813561349f84826020860161334b565b91505092915050565b6000813590506134b7816142b9565b92915050565b6000602082840312156134d3576134d261408a565b5b60006134e18482850161338d565b91505092915050565b600060208284031215613500576134ff61408a565b5b600061350e848285016133a2565b91505092915050565b6000806040838503121561352e5761352d61408a565b5b600061353c8582860161338d565b925050602061354d8582860161338d565b9150509250929050565b6000806000606084860312156135705761356f61408a565b5b600061357e8682870161338d565b935050602061358f8682870161338d565b92505060406135a0868287016134a8565b9150509250925092565b600080600080608085870312156135c4576135c361408a565b5b60006135d28782880161338d565b94505060206135e38782880161338d565b93505060406135f4878288016134a8565b925050606085013567ffffffffffffffff81111561361557613614614085565b5b613621878288016133f6565b91505092959194509250565b600080604083850312156136445761364361408a565b5b60006136528582860161338d565b9250506020613663858286016133b7565b9150509250929050565b600080604083850312156136845761368361408a565b5b60006136928582860161338d565b92505060206136a3858286016134a8565b9150509250929050565b6000602082840312156136c3576136c261408a565b5b60006136d1848285016133cc565b91505092915050565b6000602082840312156136f0576136ef61408a565b5b60006136fe848285016133e1565b91505092915050565b6000806020838503121561371e5761371d61408a565b5b600083013567ffffffffffffffff81111561373c5761373b614085565b5b61374885828601613424565b92509250509250929050565b60006020828403121561376a5761376961408a565b5b600082013567ffffffffffffffff81111561378857613787614085565b5b6137948482850161347a565b91505092915050565b6000602082840312156137b3576137b261408a565b5b60006137c1848285016134a8565b91505092915050565b6137d381613df3565b82525050565b6137e281613de1565b82525050565b6137f181613e05565b82525050565b600061380282613c89565b61380c8185613c9f565b935061381c818560208601613e76565b6138258161408f565b840191505092915050565b600061383b82613c94565b6138458185613cb0565b9350613855818560208601613e76565b61385e8161408f565b840191505092915050565b600061387482613c94565b61387e8185613cc1565b935061388e818560208601613e76565b80840191505092915050565b60006138a7602683613cb0565b91506138b2826140a0565b604082019050919050565b60006138ca601883613cb0565b91506138d5826140ef565b602082019050919050565b60006138ed601383613cb0565b91506138f882614118565b602082019050919050565b6000613910601283613cb0565b915061391b82614141565b602082019050919050565b6000613933600f83613cb0565b915061393e8261416a565b602082019050919050565b6000613956601683613cb0565b915061396182614193565b602082019050919050565b6000613979602083613cb0565b9150613984826141bc565b602082019050919050565b600061399c602a83613cb0565b91506139a7826141e5565b604082019050919050565b60006139bf601583613cb0565b91506139ca82614234565b602082019050919050565b6139de81613e5d565b82525050565b60006139f08285613869565b91506139fc8284613869565b91508190509392505050565b6000602082019050613a1d60008301846137d9565b92915050565b6000602082019050613a3860008301846137ca565b92915050565b6000608082019050613a5360008301876137d9565b613a6060208301866137d9565b613a6d60408301856139d5565b8181036060830152613a7f81846137f7565b905095945050505050565b6000602082019050613a9f60008301846137e8565b92915050565b60006020820190508181036000830152613abf8184613830565b905092915050565b60006020820190508181036000830152613ae08161389a565b9050919050565b60006020820190508181036000830152613b00816138bd565b9050919050565b60006020820190508181036000830152613b20816138e0565b9050919050565b60006020820190508181036000830152613b4081613903565b9050919050565b60006020820190508181036000830152613b6081613926565b9050919050565b60006020820190508181036000830152613b8081613949565b9050919050565b60006020820190508181036000830152613ba08161396c565b9050919050565b60006020820190508181036000830152613bc08161398f565b9050919050565b60006020820190508181036000830152613be0816139b2565b9050919050565b6000602082019050613bfc60008301846139d5565b92915050565b6000613c0c613c1d565b9050613c188282613edb565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4257613c41614042565b5b613c4b8261408f565b9050602081019050919050565b600067ffffffffffffffff821115613c7357613c72614042565b5b613c7c8261408f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd782613e5d565b9150613ce283613e5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1757613d16613f86565b5b828201905092915050565b6000613d2d82613e5d565b9150613d3883613e5d565b925082613d4857613d47613fb5565b5b828204905092915050565b6000613d5e82613e5d565b9150613d6983613e5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da257613da1613f86565b5b828202905092915050565b6000613db882613e5d565b9150613dc383613e5d565b925082821015613dd657613dd5613f86565b5b828203905092915050565b6000613dec82613e3d565b9050919050565b6000613dfe82613e3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e94578082015181840152602081019050613e79565b83811115613ea3576000848401525b50505050565b60006002820490506001821680613ec157607f821691505b60208210811415613ed557613ed4613fe4565b5b50919050565b613ee48261408f565b810181811067ffffffffffffffff82111715613f0357613f02614042565b5b80604052505050565b6000613f1782613e5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4a57613f49613f86565b5b600182019050919050565b6000613f6082613e5d565b9150613f6b83613e5d565b925082613f7b57613f7a613fb5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d696e7420746f206e756c6c20616464726573730000000000000000600082015250565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974207265616368656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61426681613de1565b811461427157600080fd5b50565b61427d81613df3565b811461428857600080fd5b50565b61429481613e05565b811461429f57600080fd5b50565b6142ab81613e11565b81146142b657600080fd5b50565b6142c281613e5d565b81146142cd57600080fd5b5056fea264697066735822122080746c56e873e6eb40eee0eced9e781946fc1582648ff58e527e576979f9d71264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000197727ad2ec7326952843fbd83a0d57b907afbdf000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e6170702f6170692f6e66746d6f6f6e2d6176617461722f00000000000000000000

-----Decoded View---------------
Arg [0] : _startPrice (uint256): 50000000000000000
Arg [1] : _maxPerMint (uint256): 5
Arg [2] : _uri (string): https://metadata-ak-dev.vercel.app/api/nftmoon-avatar/
Arg [3] : _beneficiary (address): 0x197727Ad2EC7326952843Fbd83A0d57B907afbdF

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 000000000000000000000000197727ad2ec7326952843fbd83a0d57b907afbdf
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 68747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e61
Arg [6] : 70702f6170692f6e66746d6f6f6e2d6176617461722f00000000000000000000


Deployed Bytecode Sourcemap

45799:4661:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49466:164;;;;;;;;;;;;;:::i;:::-;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47632:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46556:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48935:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50068:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45851:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49799:227;;;;;;;;;;;;;:::i;:::-;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50169:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45910:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46688:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49676:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46144:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;48195:380;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50336:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47224:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49255:159;;;;;;;;;;;;;:::i;:::-;;47024:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47125:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47786:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48605:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46104:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32001:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45996:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46795:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;49466:164::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49553:1:::1;49530:25;;:11;;;;;;;;;;;:25;;;;49522:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49608:14;;;;;;;;;;;49607:15;49590:14;;:32;;;;;;;;;;;;;;;;;;49466:164::o:0;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;47632:126::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47735:15:::1;47718:14;:32;;;;;;;;;;;;:::i;:::-;;47632:126:::0;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;46556:124::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46660:12:::1;46646:11;;:26;;;;;;;;;;;;;;;;;;46556:124:::0;:::o;48935:286::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49057:1:::1;49036:23;;:9;:23;;;;49028:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49135:10;;49123:8;49107:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49099:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49183:30;49193:9;49204:8;49183:9;:30::i;:::-;48935:286:::0;;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;50068:93::-;50115:4;50139:14;;;;;;;;;;;50132:21;;50068:93;:::o;45851:32::-;;;;:::o;49799:227::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49886:1:::1;49863:25;;:11;;;;;;;;;;;:25;;;;49855:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49923:16;49942:21;49923:40;;49990:11;;;;;;;;;;;49982:25;;:35;50008:8;49982:35;;;;;;;;;;;;;;;;;;;;;;;49974:44;;;::::0;::::1;;49844:182;49799:227::o:0;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;50169:159::-;50219:25;50277:42;50257:63;;50169:159;:::o;45910:27::-;;;;:::o;46688:91::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46768:3:::1;;46758:7;:13;;;;;;;:::i;:::-;;46688:91:::0;;:::o;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;49676:86::-;49718:4;49742:12;;;;;;;;;;;49735:19;;49676:86;:::o;46144:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48195:380::-;47567:14;;;;;;;;;;;47559:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48303:12:::1;;48291:8;:24;;48283:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48409:10;;48397:8;48381:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48373:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48490:8;48479;;:19;;;;:::i;:::-;48465:9;:34;;48457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48536:31;48546:10;48558:8;48536:9;:31::i;:::-;48195:380:::0;:::o;50336:113::-;50377:21;50411:30;;;;;;;;;;;;;;;;;;;50336:113;:::o;47224:101::-;47280:7;47306:11;;;;;;;;;;;47299:18;;47224:101;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;49255:159::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49339:1:::1;49316:25;;:11;;;;;;;;;;;:25;;;;49308:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49394:12;;;;;;;;;;;49393:13;49378:12;;:28;;;;;;;;;;;;;;;;;;49255:159::o:0;47024:93::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47100:9:::1;47089:8;:20;;;;47024:93:::0;:::o;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;47125:91::-;47174:7;47200:8;;47193:15;;47125:91;:::o;47786:378::-;47416:12;;;;;;;;;;;47408:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47892:12:::1;;47880:8;:24;;47872:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47998:10;;47986:8;47970:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;47962:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48079:8;48068;;:19;;;;:::i;:::-;48054:9;:34;;48046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48125:31;48135:10;48147:8;48125:9;:31::i;:::-;47786:378:::0;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;48605:288::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48729:1:::1;48708:23;;:9;:23;;;;48700:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48807:10;;48795:8;48779:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48771:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48855:30;48865:9;48876:8;48855:9;:30::i;:::-;48605:288:::0;;:::o;46104:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32001:318::-;32074:13;32105:16;32113:7;32105;:16::i;:::-;32100:59;;32130:29;;;;;;;;;;;;;;32100:59;32172:21;32196:10;:8;:10::i;:::-;32172:34;;32249:1;32230:7;32224:21;:26;;:87;;;;;;;;;;;;;;;;;32277:7;32286:18;:7;:16;:18::i;:::-;32260:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32224:87;32217:94;;;32001:318;;;:::o;45996:28::-;;;;:::o;46795:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46876:5:::1;46861:12;:20;;;;46795:94:::0;:::o;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;27245:92::-;27301:7;27245:92;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;46897:100::-;46949:13;46982:7;46975:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46897:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1331:5;1369:6;1356:20;1347:29;;1385:32;1411:5;1385:32;:::i;:::-;1286:137;;;;:::o;1429:141::-;1485:5;1516:6;1510:13;1501:22;;1532:32;1558:5;1532:32;:::i;:::-;1429:141;;;;:::o;1589:338::-;1644:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:122;;1701:79;;:::i;:::-;1660:122;1818:6;1805:20;1843:78;1917:3;1909:6;1902:4;1894:6;1890:17;1843:78;:::i;:::-;1834:87;;1650:277;1589:338;;;;:::o;1947:553::-;2005:8;2015:6;2065:3;2058:4;2050:6;2046:17;2042:27;2032:122;;2073:79;;:::i;:::-;2032:122;2186:6;2173:20;2163:30;;2216:18;2208:6;2205:30;2202:117;;;2238:79;;:::i;:::-;2202:117;2352:4;2344:6;2340:17;2328:29;;2406:3;2398:4;2390:6;2386:17;2376:8;2372:32;2369:41;2366:128;;;2413:79;;:::i;:::-;2366:128;1947:553;;;;;:::o;2520:340::-;2576:5;2625:3;2618:4;2610:6;2606:17;2602:27;2592:122;;2633:79;;:::i;:::-;2592:122;2750:6;2737:20;2775:79;2850:3;2842:6;2835:4;2827:6;2823:17;2775:79;:::i;:::-;2766:88;;2582:278;2520:340;;;;:::o;2866:139::-;2912:5;2950:6;2937:20;2928:29;;2966:33;2993:5;2966:33;:::i;:::-;2866:139;;;;:::o;3011:329::-;3070:6;3119:2;3107:9;3098:7;3094:23;3090:32;3087:119;;;3125:79;;:::i;:::-;3087:119;3245:1;3270:53;3315:7;3306:6;3295:9;3291:22;3270:53;:::i;:::-;3260:63;;3216:117;3011:329;;;;:::o;3346:345::-;3413:6;3462:2;3450:9;3441:7;3437:23;3433:32;3430:119;;;3468:79;;:::i;:::-;3430:119;3588:1;3613:61;3666:7;3657:6;3646:9;3642:22;3613:61;:::i;:::-;3603:71;;3559:125;3346:345;;;;:::o;3697:474::-;3765:6;3773;3822:2;3810:9;3801:7;3797:23;3793:32;3790:119;;;3828:79;;:::i;:::-;3790:119;3948:1;3973:53;4018:7;4009:6;3998:9;3994:22;3973:53;:::i;:::-;3963:63;;3919:117;4075:2;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4046:118;3697:474;;;;;:::o;4177:619::-;4254:6;4262;4270;4319:2;4307:9;4298:7;4294:23;4290:32;4287:119;;;4325:79;;:::i;:::-;4287:119;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4177:619;;;;;:::o;4802:943::-;4897:6;4905;4913;4921;4970:3;4958:9;4949:7;4945:23;4941:33;4938:120;;;4977:79;;:::i;:::-;4938:120;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;5352:2;5378:53;5423:7;5414:6;5403:9;5399:22;5378:53;:::i;:::-;5368:63;;5323:118;5508:2;5497:9;5493:18;5480:32;5539:18;5531:6;5528:30;5525:117;;;5561:79;;:::i;:::-;5525:117;5666:62;5720:7;5711:6;5700:9;5696:22;5666:62;:::i;:::-;5656:72;;5451:287;4802:943;;;;;;;:::o;5751:468::-;5816:6;5824;5873:2;5861:9;5852:7;5848:23;5844:32;5841:119;;;5879:79;;:::i;:::-;5841:119;5999:1;6024:53;6069:7;6060:6;6049:9;6045:22;6024:53;:::i;:::-;6014:63;;5970:117;6126:2;6152:50;6194:7;6185:6;6174:9;6170:22;6152:50;:::i;:::-;6142:60;;6097:115;5751:468;;;;;:::o;6225:474::-;6293:6;6301;6350:2;6338:9;6329:7;6325:23;6321:32;6318:119;;;6356:79;;:::i;:::-;6318:119;6476:1;6501:53;6546:7;6537:6;6526:9;6522:22;6501:53;:::i;:::-;6491:63;;6447:117;6603:2;6629:53;6674:7;6665:6;6654:9;6650:22;6629:53;:::i;:::-;6619:63;;6574:118;6225:474;;;;;:::o;6705:327::-;6763:6;6812:2;6800:9;6791:7;6787:23;6783:32;6780:119;;;6818:79;;:::i;:::-;6780:119;6938:1;6963:52;7007:7;6998:6;6987:9;6983:22;6963:52;:::i;:::-;6953:62;;6909:116;6705:327;;;;:::o;7038:349::-;7107:6;7156:2;7144:9;7135:7;7131:23;7127:32;7124:119;;;7162:79;;:::i;:::-;7124:119;7282:1;7307:63;7362:7;7353:6;7342:9;7338:22;7307:63;:::i;:::-;7297:73;;7253:127;7038:349;;;;:::o;7393:529::-;7464:6;7472;7521:2;7509:9;7500:7;7496:23;7492:32;7489:119;;;7527:79;;:::i;:::-;7489:119;7675:1;7664:9;7660:17;7647:31;7705:18;7697:6;7694:30;7691:117;;;7727:79;;:::i;:::-;7691:117;7840:65;7897:7;7888:6;7877:9;7873:22;7840:65;:::i;:::-;7822:83;;;;7618:297;7393:529;;;;;:::o;7928:509::-;7997:6;8046:2;8034:9;8025:7;8021:23;8017:32;8014:119;;;8052:79;;:::i;:::-;8014:119;8200:1;8189:9;8185:17;8172:31;8230:18;8222:6;8219:30;8216:117;;;8252:79;;:::i;:::-;8216:117;8357:63;8412:7;8403:6;8392:9;8388:22;8357:63;:::i;:::-;8347:73;;8143:287;7928:509;;;;:::o;8443:329::-;8502:6;8551:2;8539:9;8530:7;8526:23;8522:32;8519:119;;;8557:79;;:::i;:::-;8519:119;8677:1;8702:53;8747:7;8738:6;8727:9;8723:22;8702:53;:::i;:::-;8692:63;;8648:117;8443:329;;;;:::o;8778:142::-;8881:32;8907:5;8881:32;:::i;:::-;8876:3;8869:45;8778:142;;:::o;8926:118::-;9013:24;9031:5;9013:24;:::i;:::-;9008:3;9001:37;8926:118;;:::o;9050:109::-;9131:21;9146:5;9131:21;:::i;:::-;9126:3;9119:34;9050:109;;:::o;9165:360::-;9251:3;9279:38;9311:5;9279:38;:::i;:::-;9333:70;9396:6;9391:3;9333:70;:::i;:::-;9326:77;;9412:52;9457:6;9452:3;9445:4;9438:5;9434:16;9412:52;:::i;:::-;9489:29;9511:6;9489:29;:::i;:::-;9484:3;9480:39;9473:46;;9255:270;9165:360;;;;:::o;9531:364::-;9619:3;9647:39;9680:5;9647:39;:::i;:::-;9702:71;9766:6;9761:3;9702:71;:::i;:::-;9695:78;;9782:52;9827:6;9822:3;9815:4;9808:5;9804:16;9782:52;:::i;:::-;9859:29;9881:6;9859:29;:::i;:::-;9854:3;9850:39;9843:46;;9623:272;9531:364;;;;:::o;9901:377::-;10007:3;10035:39;10068:5;10035:39;:::i;:::-;10090:89;10172:6;10167:3;10090:89;:::i;:::-;10083:96;;10188:52;10233:6;10228:3;10221:4;10214:5;10210:16;10188:52;:::i;:::-;10265:6;10260:3;10256:16;10249:23;;10011:267;9901:377;;;;:::o;10284:366::-;10426:3;10447:67;10511:2;10506:3;10447:67;:::i;:::-;10440:74;;10523:93;10612:3;10523:93;:::i;:::-;10641:2;10636:3;10632:12;10625:19;;10284:366;;;:::o;10656:::-;10798:3;10819:67;10883:2;10878:3;10819:67;:::i;:::-;10812:74;;10895:93;10984:3;10895:93;:::i;:::-;11013:2;11008:3;11004:12;10997:19;;10656:366;;;:::o;11028:::-;11170:3;11191:67;11255:2;11250:3;11191:67;:::i;:::-;11184:74;;11267:93;11356:3;11267:93;:::i;:::-;11385:2;11380:3;11376:12;11369:19;;11028:366;;;:::o;11400:::-;11542:3;11563:67;11627:2;11622:3;11563:67;:::i;:::-;11556:74;;11639:93;11728:3;11639:93;:::i;:::-;11757:2;11752:3;11748:12;11741:19;;11400:366;;;:::o;11772:::-;11914:3;11935:67;11999:2;11994:3;11935:67;:::i;:::-;11928:74;;12011:93;12100:3;12011:93;:::i;:::-;12129:2;12124:3;12120:12;12113:19;;11772:366;;;:::o;12144:::-;12286:3;12307:67;12371:2;12366:3;12307:67;:::i;:::-;12300:74;;12383:93;12472:3;12383:93;:::i;:::-;12501:2;12496:3;12492:12;12485:19;;12144:366;;;:::o;12516:::-;12658:3;12679:67;12743:2;12738:3;12679:67;:::i;:::-;12672:74;;12755:93;12844:3;12755:93;:::i;:::-;12873:2;12868:3;12864:12;12857:19;;12516:366;;;:::o;12888:::-;13030:3;13051:67;13115:2;13110:3;13051:67;:::i;:::-;13044:74;;13127:93;13216:3;13127:93;:::i;:::-;13245:2;13240:3;13236:12;13229:19;;12888:366;;;:::o;13260:::-;13402:3;13423:67;13487:2;13482:3;13423:67;:::i;:::-;13416:74;;13499:93;13588:3;13499:93;:::i;:::-;13617:2;13612:3;13608:12;13601:19;;13260:366;;;:::o;13632:118::-;13719:24;13737:5;13719:24;:::i;:::-;13714:3;13707:37;13632:118;;:::o;13756:435::-;13936:3;13958:95;14049:3;14040:6;13958:95;:::i;:::-;13951:102;;14070:95;14161:3;14152:6;14070:95;:::i;:::-;14063:102;;14182:3;14175:10;;13756:435;;;;;:::o;14197:222::-;14290:4;14328:2;14317:9;14313:18;14305:26;;14341:71;14409:1;14398:9;14394:17;14385:6;14341:71;:::i;:::-;14197:222;;;;:::o;14425:254::-;14534:4;14572:2;14561:9;14557:18;14549:26;;14585:87;14669:1;14658:9;14654:17;14645:6;14585:87;:::i;:::-;14425:254;;;;:::o;14685:640::-;14880:4;14918:3;14907:9;14903:19;14895:27;;14932:71;15000:1;14989:9;14985:17;14976:6;14932:71;:::i;:::-;15013:72;15081:2;15070:9;15066:18;15057:6;15013:72;:::i;:::-;15095;15163:2;15152:9;15148:18;15139:6;15095:72;:::i;:::-;15214:9;15208:4;15204:20;15199:2;15188:9;15184:18;15177:48;15242:76;15313:4;15304:6;15242:76;:::i;:::-;15234:84;;14685:640;;;;;;;:::o;15331:210::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15469:65;15531:1;15520:9;15516:17;15507:6;15469:65;:::i;:::-;15331:210;;;;:::o;15547:313::-;15660:4;15698:2;15687:9;15683:18;15675:26;;15747:9;15741:4;15737:20;15733:1;15722:9;15718:17;15711:47;15775:78;15848:4;15839:6;15775:78;:::i;:::-;15767:86;;15547:313;;;;:::o;15866:419::-;16032:4;16070:2;16059:9;16055:18;16047:26;;16119:9;16113:4;16109:20;16105:1;16094:9;16090:17;16083:47;16147:131;16273:4;16147:131;:::i;:::-;16139:139;;15866:419;;;:::o;16291:::-;16457:4;16495:2;16484:9;16480:18;16472:26;;16544:9;16538:4;16534:20;16530:1;16519:9;16515:17;16508:47;16572:131;16698:4;16572:131;:::i;:::-;16564:139;;16291:419;;;:::o;16716:::-;16882:4;16920:2;16909:9;16905:18;16897:26;;16969:9;16963:4;16959:20;16955:1;16944:9;16940:17;16933:47;16997:131;17123:4;16997:131;:::i;:::-;16989:139;;16716:419;;;:::o;17141:::-;17307:4;17345:2;17334:9;17330:18;17322:26;;17394:9;17388:4;17384:20;17380:1;17369:9;17365:17;17358:47;17422:131;17548:4;17422:131;:::i;:::-;17414:139;;17141:419;;;:::o;17566:::-;17732:4;17770:2;17759:9;17755:18;17747:26;;17819:9;17813:4;17809:20;17805:1;17794:9;17790:17;17783:47;17847:131;17973:4;17847:131;:::i;:::-;17839:139;;17566:419;;;:::o;17991:::-;18157:4;18195:2;18184:9;18180:18;18172:26;;18244:9;18238:4;18234:20;18230:1;18219:9;18215:17;18208:47;18272:131;18398:4;18272:131;:::i;:::-;18264:139;;17991:419;;;:::o;18416:::-;18582:4;18620:2;18609:9;18605:18;18597:26;;18669:9;18663:4;18659:20;18655:1;18644:9;18640:17;18633:47;18697:131;18823:4;18697:131;:::i;:::-;18689:139;;18416:419;;;:::o;18841:::-;19007:4;19045:2;19034:9;19030:18;19022:26;;19094:9;19088:4;19084:20;19080:1;19069:9;19065:17;19058:47;19122:131;19248:4;19122:131;:::i;:::-;19114:139;;18841:419;;;:::o;19266:::-;19432:4;19470:2;19459:9;19455:18;19447:26;;19519:9;19513:4;19509:20;19505:1;19494:9;19490:17;19483:47;19547:131;19673:4;19547:131;:::i;:::-;19539:139;;19266:419;;;:::o;19691:222::-;19784:4;19822:2;19811:9;19807:18;19799:26;;19835:71;19903:1;19892:9;19888:17;19879:6;19835:71;:::i;:::-;19691:222;;;;:::o;19919:129::-;19953:6;19980:20;;:::i;:::-;19970:30;;20009:33;20037:4;20029:6;20009:33;:::i;:::-;19919:129;;;:::o;20054:75::-;20087:6;20120:2;20114:9;20104:19;;20054:75;:::o;20135:307::-;20196:4;20286:18;20278:6;20275:30;20272:56;;;20308:18;;:::i;:::-;20272:56;20346:29;20368:6;20346:29;:::i;:::-;20338:37;;20430:4;20424;20420:15;20412:23;;20135:307;;;:::o;20448:308::-;20510:4;20600:18;20592:6;20589:30;20586:56;;;20622:18;;:::i;:::-;20586:56;20660:29;20682:6;20660:29;:::i;:::-;20652:37;;20744:4;20738;20734:15;20726:23;;20448:308;;;:::o;20762:98::-;20813:6;20847:5;20841:12;20831:22;;20762:98;;;:::o;20866:99::-;20918:6;20952:5;20946:12;20936:22;;20866:99;;;:::o;20971:168::-;21054:11;21088:6;21083:3;21076:19;21128:4;21123:3;21119:14;21104:29;;20971:168;;;;:::o;21145:169::-;21229:11;21263:6;21258:3;21251:19;21303:4;21298:3;21294:14;21279:29;;21145:169;;;;:::o;21320:148::-;21422:11;21459:3;21444:18;;21320:148;;;;:::o;21474:305::-;21514:3;21533:20;21551:1;21533:20;:::i;:::-;21528:25;;21567:20;21585:1;21567:20;:::i;:::-;21562:25;;21721:1;21653:66;21649:74;21646:1;21643:81;21640:107;;;21727:18;;:::i;:::-;21640:107;21771:1;21768;21764:9;21757:16;;21474:305;;;;:::o;21785:185::-;21825:1;21842:20;21860:1;21842:20;:::i;:::-;21837:25;;21876:20;21894:1;21876:20;:::i;:::-;21871:25;;21915:1;21905:35;;21920:18;;:::i;:::-;21905:35;21962:1;21959;21955:9;21950:14;;21785:185;;;;:::o;21976:348::-;22016:7;22039:20;22057:1;22039:20;:::i;:::-;22034:25;;22073:20;22091:1;22073:20;:::i;:::-;22068:25;;22261:1;22193:66;22189:74;22186:1;22183:81;22178:1;22171:9;22164:17;22160:105;22157:131;;;22268:18;;:::i;:::-;22157:131;22316:1;22313;22309:9;22298:20;;21976:348;;;;:::o;22330:191::-;22370:4;22390:20;22408:1;22390:20;:::i;:::-;22385:25;;22424:20;22442:1;22424:20;:::i;:::-;22419:25;;22463:1;22460;22457:8;22454:34;;;22468:18;;:::i;:::-;22454:34;22513:1;22510;22506:9;22498:17;;22330:191;;;;:::o;22527:96::-;22564:7;22593:24;22611:5;22593:24;:::i;:::-;22582:35;;22527:96;;;:::o;22629:104::-;22674:7;22703:24;22721:5;22703:24;:::i;:::-;22692:35;;22629:104;;;:::o;22739:90::-;22773:7;22816:5;22809:13;22802:21;22791:32;;22739:90;;;:::o;22835:149::-;22871:7;22911:66;22904:5;22900:78;22889:89;;22835:149;;;:::o;22990:126::-;23027:7;23067:42;23060:5;23056:54;23045:65;;22990:126;;;:::o;23122:77::-;23159:7;23188:5;23177:16;;23122:77;;;:::o;23205:154::-;23289:6;23284:3;23279;23266:30;23351:1;23342:6;23337:3;23333:16;23326:27;23205:154;;;:::o;23365:307::-;23433:1;23443:113;23457:6;23454:1;23451:13;23443:113;;;23542:1;23537:3;23533:11;23527:18;23523:1;23518:3;23514:11;23507:39;23479:2;23476:1;23472:10;23467:15;;23443:113;;;23574:6;23571:1;23568:13;23565:101;;;23654:1;23645:6;23640:3;23636:16;23629:27;23565:101;23414:258;23365:307;;;:::o;23678:320::-;23722:6;23759:1;23753:4;23749:12;23739:22;;23806:1;23800:4;23796:12;23827:18;23817:81;;23883:4;23875:6;23871:17;23861:27;;23817:81;23945:2;23937:6;23934:14;23914:18;23911:38;23908:84;;;23964:18;;:::i;:::-;23908:84;23729:269;23678:320;;;:::o;24004:281::-;24087:27;24109:4;24087:27;:::i;:::-;24079:6;24075:40;24217:6;24205:10;24202:22;24181:18;24169:10;24166:34;24163:62;24160:88;;;24228:18;;:::i;:::-;24160:88;24268:10;24264:2;24257:22;24047:238;24004:281;;:::o;24291:233::-;24330:3;24353:24;24371:5;24353:24;:::i;:::-;24344:33;;24399:66;24392:5;24389:77;24386:103;;;24469:18;;:::i;:::-;24386:103;24516:1;24509:5;24505:13;24498:20;;24291:233;;;:::o;24530:176::-;24562:1;24579:20;24597:1;24579:20;:::i;:::-;24574:25;;24613:20;24631:1;24613:20;:::i;:::-;24608:25;;24652:1;24642:35;;24657:18;;:::i;:::-;24642:35;24698:1;24695;24691:9;24686:14;;24530:176;;;;:::o;24712:180::-;24760:77;24757:1;24750:88;24857:4;24854:1;24847:15;24881:4;24878:1;24871:15;24898:180;24946:77;24943:1;24936:88;25043:4;25040:1;25033:15;25067:4;25064:1;25057:15;25084:180;25132:77;25129:1;25122:88;25229:4;25226:1;25219:15;25253:4;25250:1;25243:15;25270:180;25318:77;25315:1;25308:88;25415:4;25412:1;25405:15;25439:4;25436:1;25429:15;25456:180;25504:77;25501:1;25494:88;25601:4;25598:1;25591:15;25625:4;25622:1;25615:15;25642:117;25751:1;25748;25741:12;25765:117;25874:1;25871;25864:12;25888:117;25997:1;25994;25987:12;26011:117;26120:1;26117;26110:12;26134:117;26243:1;26240;26233:12;26257:117;26366:1;26363;26356:12;26380:102;26421:6;26472:2;26468:7;26463:2;26456:5;26452:14;26448:28;26438:38;;26380:102;;;:::o;26488:225::-;26628:34;26624:1;26616:6;26612:14;26605:58;26697:8;26692:2;26684:6;26680:15;26673:33;26488:225;:::o;26719:174::-;26859:26;26855:1;26847:6;26843:14;26836:50;26719:174;:::o;26899:169::-;27039:21;27035:1;27027:6;27023:14;27016:45;26899:169;:::o;27074:168::-;27214:20;27210:1;27202:6;27198:14;27191:44;27074:168;:::o;27248:165::-;27388:17;27384:1;27376:6;27372:14;27365:41;27248:165;:::o;27419:172::-;27559:24;27555:1;27547:6;27543:14;27536:48;27419:172;:::o;27597:182::-;27737:34;27733:1;27725:6;27721:14;27714:58;27597:182;:::o;27785:229::-;27925:34;27921:1;27913:6;27909:14;27902:58;27994:12;27989:2;27981:6;27977:15;27970:37;27785:229;:::o;28020:171::-;28160:23;28156:1;28148:6;28144:14;28137:47;28020:171;:::o;28197:122::-;28270:24;28288:5;28270:24;:::i;:::-;28263:5;28260:35;28250:63;;28309:1;28306;28299:12;28250:63;28197:122;:::o;28325:138::-;28406:32;28432:5;28406:32;:::i;:::-;28399:5;28396:43;28386:71;;28453:1;28450;28443:12;28386:71;28325:138;:::o;28469:116::-;28539:21;28554:5;28539:21;:::i;:::-;28532:5;28529:32;28519:60;;28575:1;28572;28565:12;28519:60;28469:116;:::o;28591:120::-;28663:23;28680:5;28663:23;:::i;:::-;28656:5;28653:34;28643:62;;28701:1;28698;28691:12;28643:62;28591:120;:::o;28717:122::-;28790:24;28808:5;28790:24;:::i;:::-;28783:5;28780:35;28770:63;;28829:1;28826;28819:12;28770:63;28717:122;:::o

Swarm Source

ipfs://80746c56e873e6eb40eee0eced9e781946fc1582648ff58e527e576979f9d712
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.