ETH Price: $2,599.66 (-2.44%)

Token

Azuki Ape (AA)
 

Overview

Max Total Supply

741 AA

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AA
0x9f69781eec12a139bfe18f96648d3cbdfed4022f
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:
AzukiApe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

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

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

pragma solidity >=0.7.0 <0.9.0;

contract AzukiApe is ERC721A, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public maxTokensPerWallet = 6;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => uint256) public _tokensMintedPerWallet;

  constructor() ERC721A("Azuki Ape", "AA") {
    setHiddenMetadataUri("ipfs://QmR7xJF1cp73sRmEQ1BPwHTbQ1oiJecTboUFxrUgAkqWSD/hidden.json");
  }
 
  modifier mintCompliance(uint256 _mintAmount) {
    require( (_tokensMintedPerWallet[msg.sender] + _mintAmount) <= needToUpdateMaxPerWallet(totalSupply()), "Exceeds max tokens per account!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function costCheck() public view returns (uint256 _cost) {
      return needToUpdateCost(totalSupply());
  }

  function maxTokensPerWalletCheck() public view returns (uint256 _cost) {
      return needToUpdateMaxPerWallet(totalSupply());
  }

  function needToUpdateCost(uint256 _supply) internal view returns(uint256 _cost)
  {
      if(_supply < 300 && cost == 10000000000000000){
           return 0.00 ether;
       } 
      else if (_supply < 300 && cost != 10000000000000000){
           return cost;
       }
      else if (_supply <= maxSupply && cost == 10000000000000000){
           return 0.01 ether;
       }
       else if (_supply <= maxSupply && cost != 10000000000000000){
           return cost;
       }
  }

  function needToUpdateMaxPerWallet(uint256 _supply) internal view returns(uint256 _cost)
  {
       if(_supply < 300 && maxTokensPerWallet == 5) {
           return 5;
       } 
       else if (_supply < 300 &&  maxTokensPerWallet != 5){
           return maxTokensPerWallet;
       }
       else if (_supply <= maxSupply && maxTokensPerWallet == 5){
           return 500;
       }
        else if (_supply <= maxSupply && maxTokensPerWallet != 5){
           return maxTokensPerWallet;
       }
  }


  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= needToUpdateCost(totalSupply()) * _mintAmount, "Insufficient funds!");
    require( (_tokensMintedPerWallet[msg.sender] + _mintAmount) <= needToUpdateMaxPerWallet(totalSupply()), "Exceeds max tokens per account!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

   function setMaxTokensPerWallet(uint8 _maxTokensPerWallet) external onlyOwner {
        maxTokensPerWallet = _maxTokensPerWallet;
    }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function Set_Token(uint256 _token) public onlyOwner {
    maxSupply = _token;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {    
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _tokensMintedPerWallet[msg.sender]++;
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_token","type":"uint256"}],"name":"Set_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_tokensMintedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costCheck","outputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWalletCheck","outputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxTokensPerWallet","type":"uint8"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a91620001f3565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001f3565b50662386f26fc10000600d55610d05600e556014600f5560066010556011805461ffff191660011790553480156200008157600080fd5b5060405180604001604052806009815260200168417a756b692041706560b81b81525060405180604001604052806002815260200161414160f01b8152508160029080519060200190620000d7929190620001f3565b508051620000ed906003906020840190620001f3565b50506000805550620000ff3362000129565b6200012360405180608001604052806041815260200162002803604191396200017b565b620002d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ef90600c906020840190620001f3565b5050565b828054620002019062000299565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b600181811c90821680620002ae57607f821691505b60208210811415620002d057634e487b7160e01b600052602260045260246000fd5b50919050565b61251d80620002e66000396000f3fe6080604052600436106102515760003560e01c806364b7218811610139578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb011461069c578063e0a80853146106b2578063e985e9c5146106d2578063efbd73f41461071b578063f2fde38b1461073b578063fee67f1d1461075b57600080fd5b8063a45ba8e714610612578063b071401b14610627578063b88d4fde14610647578063c5a8fb3914610667578063c87b56dd1461067c57600080fd5b80638dd5da7e116100fd5780638dd5da7e1461058757806394354fd0146105b457806395d89b41146105ca578063a0712d68146105df578063a22cb465146105f257600080fd5b806364b72188146104ff57806370a0823114610514578063715018a6146105345780637ec4a659146105495780638da5cb5b1461056957600080fd5b80633ccfd60b116101d25780634fdd43cb116101965780634fdd43cb1461045c578063518302271461047c5780635503a0e81461049b5780635c975abb146104b057806362b99ad4146104ca5780636352211e146104df57600080fd5b80633ccfd60b146103c457806342842e0e146103d9578063438b6300146103f957806344a0d68a14610426578063469132ce1461044657600080fd5b8063141129f911610219578063141129f91461032b57806316ba10e01461034b57806316c38b3c1461036b57806318160ddd1461038b57806323b872dd146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b506102766102713660046120af565b61077b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107cd565b6040516102829190612302565b3480156102b957600080fd5b506102cd6102c8366004612132565b61085f565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461206a565b6108a3565b005b34801561031357600080fd5b5061031d600d5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461216e565b610931565b34801561035757600080fd5b506103056103663660046120e9565b61096c565b34801561037757600080fd5b50610305610386366004612094565b6109ad565b34801561039757600080fd5b506001546000540361031d565b3480156103b057600080fd5b506103056103bf366004611f88565b6109ea565b3480156103d057600080fd5b506103056109f5565b3480156103e557600080fd5b506103056103f4366004611f88565b610a93565b34801561040557600080fd5b50610419610414366004611f3a565b610aae565b60405161028291906122be565b34801561043257600080fd5b50610305610441366004612132565b610b8f565b34801561045257600080fd5b5061031d60105481565b34801561046857600080fd5b506103056104773660046120e9565b610bbe565b34801561048857600080fd5b5060115461027690610100900460ff1681565b3480156104a757600080fd5b506102a0610bfb565b3480156104bc57600080fd5b506011546102769060ff1681565b3480156104d657600080fd5b506102a0610c89565b3480156104eb57600080fd5b506102cd6104fa366004612132565b610c96565b34801561050b57600080fd5b5061031d610ca8565b34801561052057600080fd5b5061031d61052f366004611f3a565b610cc4565b34801561054057600080fd5b50610305610d13565b34801561055557600080fd5b506103056105643660046120e9565b610d49565b34801561057557600080fd5b506008546001600160a01b03166102cd565b34801561059357600080fd5b5061031d6105a2366004611f3a565b60126020526000908152604090205481565b3480156105c057600080fd5b5061031d600f5481565b3480156105d657600080fd5b506102a0610d86565b6103056105ed366004612132565b610d95565b3480156105fe57600080fd5b5061030561060d366004612040565b610f9b565b34801561061e57600080fd5b506102a0611031565b34801561063357600080fd5b50610305610642366004612132565b61103e565b34801561065357600080fd5b50610305610662366004611fc4565b61106d565b34801561067357600080fd5b5061031d6110be565b34801561068857600080fd5b506102a0610697366004612132565b6110d0565b3480156106a857600080fd5b5061031d600e5481565b3480156106be57600080fd5b506103056106cd366004612094565b61123f565b3480156106de57600080fd5b506102766106ed366004611f55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072757600080fd5b5061030561073636600461214b565b611283565b34801561074757600080fd5b50610305610756366004611f3a565b6113b2565b34801561076757600080fd5b50610305610776366004612132565b61144a565b60006001600160e01b031982166380ac58cd60e01b14806107ac57506001600160e01b03198216635b5e139f60e01b145b806107c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107dc9061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061240f565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611479565b610887576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ae82610c96565b9050806001600160a01b0316836001600160a01b031614156108e35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610903575061090181336106ed565b155b15610921576040516367d9dca160e11b815260040160405180910390fd5b61092c8383836114a4565b505050565b6008546001600160a01b031633146109645760405162461bcd60e51b815260040161095b9061234c565b60405180910390fd5b60ff16601055565b6008546001600160a01b031633146109965760405162461bcd60e51b815260040161095b9061234c565b80516109a990600b906020840190611e04565b5050565b6008546001600160a01b031633146109d75760405162461bcd60e51b815260040161095b9061234c565b6011805460ff1916911515919091179055565b61092c838383611500565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161095b9061234c565b6000610a336008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7d576040519150601f19603f3d011682016040523d82523d6000602084013e610a82565b606091505b5050905080610a9057600080fd5b50565b61092c8383836040518060200160405280600081525061106d565b60606000610abb83610cc4565b905060008167ffffffffffffffff811115610ad857610ad86124bb565b604051908082528060200260200182016040528015610b01578160200160208202803683370190505b509050600160005b8381108015610b1a5750600e548211155b15610b85576000610b2a83610c96565b9050866001600160a01b0316816001600160a01b03161415610b725782848381518110610b5957610b596124a5565b602090810291909101015281610b6e8161244a565b9250505b82610b7c8161244a565b93505050610b09565b5090949350505050565b6008546001600160a01b03163314610bb95760405162461bcd60e51b815260040161095b9061234c565b600d55565b6008546001600160a01b03163314610be85760405162461bcd60e51b815260040161095b9061234c565b80516109a990600c906020840190611e04565b600b8054610c089061240f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c349061240f565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b505050505081565b600a8054610c089061240f565b6000610ca182611716565b5192915050565b6000610cbf610cba6001546000540390565b611832565b905090565b60006001600160a01b038216610ced576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161095b9061234c565b610d4760006118db565b565b6008546001600160a01b03163314610d735760405162461bcd60e51b815260040161095b9061234c565b80516109a990600a906020840190611e04565b6060600380546107dc9061240f565b80610dab610da66001546000540390565b61192d565b33600090815260126020526040902054610dc6908390612381565b1115610de45760405162461bcd60e51b815260040161095b90612315565b600081118015610df65750600f548111155b610e395760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095b565b600e5481610e4660095490565b610e509190612381565b1115610e955760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095b565b60115460ff1615610ee85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161095b565b81610ef9610cba6001546000540390565b610f0391906123ad565b341015610f485760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095b565b610f58610da66001546000540390565b33600090815260126020526040902054610f73908490612381565b1115610f915760405162461bcd60e51b815260040161095b90612315565b6109a933836119b4565b6001600160a01b038216331415610fc55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c089061240f565b6008546001600160a01b031633146110685760405162461bcd60e51b815260040161095b9061234c565b600f55565b611078848484611500565b6001600160a01b0383163b1515801561109a575061109884848484611a11565b155b156110b8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610cbf610da66001546000540390565b60606110db82611479565b61113f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161095b565b601154610100900460ff166111e057600c805461115b9061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546111879061240f565b80156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b50505050509050919050565b60006111ea611b09565b9050600081511161120a5760405180602001604052806000815250611238565b8061121484611b18565b600b604051602001611228939291906121bd565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112695760405162461bcd60e51b815260040161095b9061234c565b601180549115156101000261ff0019909216919091179055565b81611294610da66001546000540390565b336000908152601260205260409020546112af908390612381565b11156112cd5760405162461bcd60e51b815260040161095b90612315565b6000811180156112df5750600f548111155b6113225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095b565b600e548161132f60095490565b6113399190612381565b111561137e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095b565b6008546001600160a01b031633146113a85760405162461bcd60e51b815260040161095b9061234c565b61092c82846119b4565b6008546001600160a01b031633146113dc5760405162461bcd60e51b815260040161095b9061234c565b6001600160a01b0381166114415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b610a90816118db565b6008546001600160a01b031633146114745760405162461bcd60e51b815260040161095b9061234c565b600e55565b60008054821080156107c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150b82611716565b80519091506000906001600160a01b0316336001600160a01b031614806115395750815161153990336106ed565b806115545750336115498461085f565b6001600160a01b0316145b90508061157457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115a95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166115d057604051633a954ecd60e21b815260040160405180910390fd5b6115e060008484600001516114a4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166116cc576000548110156116cc578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561181957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118175780516001600160a01b0316156117ad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611812579392505050565b6117ad565b505b604051636f96cda160e11b815260040160405180910390fd5b600061012c8210801561184d5750600d54662386f26fc10000145b1561185a57506000919050565b61012c821080156118745750600d54662386f26fc1000014155b15611881575050600d5490565b600e54821115801561189b5750600d54662386f26fc10000145b156118ae5750662386f26fc10000919050565b600e5482111580156118c95750600d54662386f26fc1000014155b156118d6575050600d5490565b919050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061012c8210801561194257506010546005145b1561194f57506005919050565b61012c821080156119635750601054600514155b1561197057505060105490565b600e54821115801561198457506010546005145b1561199257506101f4919050565b600e5482111580156119a75750601054600514155b156118d657505060105490565b60005b8181101561092c576119cd600980546001019055565b3360009081526012602052604081208054916119e88361244a565b91905055506119ff836119fa60095490565b611c16565b80611a098161244a565b9150506119b7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a46903390899088908890600401612281565b602060405180830381600087803b158015611a6057600080fd5b505af1925050508015611a90575060408051601f3d908101601f19168201909252611a8d918101906120cc565b60015b611aeb573d808015611abe576040519150601f19603f3d011682016040523d82523d6000602084013e611ac3565b606091505b508051611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107dc9061240f565b606081611b3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b665780611b508161244a565b9150611b5f9050600a83612399565b9150611b40565b60008167ffffffffffffffff811115611b8157611b816124bb565b6040519080825280601f01601f191660200182016040528015611bab576020820181803683370190505b5090505b8415611b0157611bc06001836123cc565b9150611bcd600a86612465565b611bd8906030612381565b60f81b818381518110611bed57611bed6124a5565b60200101906001600160f81b031916908160001a905350611c0f600a86612399565b9450611baf565b6109a982826040518060200160405280600081525061092c83838360016000546001600160a01b038516611c5c57604051622e076360e81b815260040160405180910390fd5b83611c7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d2c57506001600160a01b0387163b15155b15611db5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d7d6000888480600101955088611a11565b611d9a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d32578260005414611db057600080fd5b611dfb565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611db6575b5060005561170f565b828054611e109061240f565b90600052602060002090601f016020900481019282611e325760008555611e78565b82601f10611e4b57805160ff1916838001178555611e78565b82800160010185558215611e78579182015b82811115611e78578251825591602001919060010190611e5d565b50611e84929150611e88565b5090565b5b80821115611e845760008155600101611e89565b600067ffffffffffffffff80841115611eb857611eb86124bb565b604051601f8501601f19908116603f01168101908282118183101715611ee057611ee06124bb565b81604052809350858152868686011115611ef957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118d657600080fd5b803580151581146118d657600080fd5b600060208284031215611f4c57600080fd5b61123882611f13565b60008060408385031215611f6857600080fd5b611f7183611f13565b9150611f7f60208401611f13565b90509250929050565b600080600060608486031215611f9d57600080fd5b611fa684611f13565b9250611fb460208501611f13565b9150604084013590509250925092565b60008060008060808587031215611fda57600080fd5b611fe385611f13565b9350611ff160208601611f13565b925060408501359150606085013567ffffffffffffffff81111561201457600080fd5b8501601f8101871361202557600080fd5b61203487823560208401611e9d565b91505092959194509250565b6000806040838503121561205357600080fd5b61205c83611f13565b9150611f7f60208401611f2a565b6000806040838503121561207d57600080fd5b61208683611f13565b946020939093013593505050565b6000602082840312156120a657600080fd5b61123882611f2a565b6000602082840312156120c157600080fd5b8135611238816124d1565b6000602082840312156120de57600080fd5b8151611238816124d1565b6000602082840312156120fb57600080fd5b813567ffffffffffffffff81111561211257600080fd5b8201601f8101841361212357600080fd5b611b0184823560208401611e9d565b60006020828403121561214457600080fd5b5035919050565b6000806040838503121561215e57600080fd5b82359150611f7f60208401611f13565b60006020828403121561218057600080fd5b813560ff8116811461123857600080fd5b600081518084526121a98160208601602086016123e3565b601f01601f19169290920160200192915050565b6000845160206121d08285838a016123e3565b8551918401916121e38184848a016123e3565b8554920191600090600181811c908083168061220057607f831692505b85831081141561221e57634e487b7160e01b85526022600452602485fd5b808015612232576001811461224357612270565b60ff19851688528388019550612270565b60008b81526020902060005b858110156122685781548a82015290840190880161224f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b490830184612191565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122f6578351835292840192918401916001016122da565b50909695505050505050565b6020815260006112386020830184612191565b6020808252601f908201527f45786365656473206d617820746f6b656e7320706572206163636f756e742100604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561239457612394612479565b500190565b6000826123a8576123a861248f565b500490565b60008160001904831182151516156123c7576123c7612479565b500290565b6000828210156123de576123de612479565b500390565b60005b838110156123fe5781810151838201526020016123e6565b838111156110b85750506000910152565b600181811c9082168061242357607f821691505b6020821081141561244457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245e5761245e612479565b5060010190565b6000826124745761247461248f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9057600080fdfea2646970667358221220f33d5f5175741a0d27000054f03b00c56e27908f91ff533e465b66038461786b64736f6c63430008070033697066733a2f2f516d5237784a46316370373373526d45513142507748546251316f694a656354626f554678725567416b715753442f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102515760003560e01c806364b7218811610139578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb011461069c578063e0a80853146106b2578063e985e9c5146106d2578063efbd73f41461071b578063f2fde38b1461073b578063fee67f1d1461075b57600080fd5b8063a45ba8e714610612578063b071401b14610627578063b88d4fde14610647578063c5a8fb3914610667578063c87b56dd1461067c57600080fd5b80638dd5da7e116100fd5780638dd5da7e1461058757806394354fd0146105b457806395d89b41146105ca578063a0712d68146105df578063a22cb465146105f257600080fd5b806364b72188146104ff57806370a0823114610514578063715018a6146105345780637ec4a659146105495780638da5cb5b1461056957600080fd5b80633ccfd60b116101d25780634fdd43cb116101965780634fdd43cb1461045c578063518302271461047c5780635503a0e81461049b5780635c975abb146104b057806362b99ad4146104ca5780636352211e146104df57600080fd5b80633ccfd60b146103c457806342842e0e146103d9578063438b6300146103f957806344a0d68a14610426578063469132ce1461044657600080fd5b8063141129f911610219578063141129f91461032b57806316ba10e01461034b57806316c38b3c1461036b57806318160ddd1461038b57806323b872dd146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b506102766102713660046120af565b61077b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107cd565b6040516102829190612302565b3480156102b957600080fd5b506102cd6102c8366004612132565b61085f565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461206a565b6108a3565b005b34801561031357600080fd5b5061031d600d5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461216e565b610931565b34801561035757600080fd5b506103056103663660046120e9565b61096c565b34801561037757600080fd5b50610305610386366004612094565b6109ad565b34801561039757600080fd5b506001546000540361031d565b3480156103b057600080fd5b506103056103bf366004611f88565b6109ea565b3480156103d057600080fd5b506103056109f5565b3480156103e557600080fd5b506103056103f4366004611f88565b610a93565b34801561040557600080fd5b50610419610414366004611f3a565b610aae565b60405161028291906122be565b34801561043257600080fd5b50610305610441366004612132565b610b8f565b34801561045257600080fd5b5061031d60105481565b34801561046857600080fd5b506103056104773660046120e9565b610bbe565b34801561048857600080fd5b5060115461027690610100900460ff1681565b3480156104a757600080fd5b506102a0610bfb565b3480156104bc57600080fd5b506011546102769060ff1681565b3480156104d657600080fd5b506102a0610c89565b3480156104eb57600080fd5b506102cd6104fa366004612132565b610c96565b34801561050b57600080fd5b5061031d610ca8565b34801561052057600080fd5b5061031d61052f366004611f3a565b610cc4565b34801561054057600080fd5b50610305610d13565b34801561055557600080fd5b506103056105643660046120e9565b610d49565b34801561057557600080fd5b506008546001600160a01b03166102cd565b34801561059357600080fd5b5061031d6105a2366004611f3a565b60126020526000908152604090205481565b3480156105c057600080fd5b5061031d600f5481565b3480156105d657600080fd5b506102a0610d86565b6103056105ed366004612132565b610d95565b3480156105fe57600080fd5b5061030561060d366004612040565b610f9b565b34801561061e57600080fd5b506102a0611031565b34801561063357600080fd5b50610305610642366004612132565b61103e565b34801561065357600080fd5b50610305610662366004611fc4565b61106d565b34801561067357600080fd5b5061031d6110be565b34801561068857600080fd5b506102a0610697366004612132565b6110d0565b3480156106a857600080fd5b5061031d600e5481565b3480156106be57600080fd5b506103056106cd366004612094565b61123f565b3480156106de57600080fd5b506102766106ed366004611f55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072757600080fd5b5061030561073636600461214b565b611283565b34801561074757600080fd5b50610305610756366004611f3a565b6113b2565b34801561076757600080fd5b50610305610776366004612132565b61144a565b60006001600160e01b031982166380ac58cd60e01b14806107ac57506001600160e01b03198216635b5e139f60e01b145b806107c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107dc9061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546108089061240f565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611479565b610887576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ae82610c96565b9050806001600160a01b0316836001600160a01b031614156108e35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610903575061090181336106ed565b155b15610921576040516367d9dca160e11b815260040160405180910390fd5b61092c8383836114a4565b505050565b6008546001600160a01b031633146109645760405162461bcd60e51b815260040161095b9061234c565b60405180910390fd5b60ff16601055565b6008546001600160a01b031633146109965760405162461bcd60e51b815260040161095b9061234c565b80516109a990600b906020840190611e04565b5050565b6008546001600160a01b031633146109d75760405162461bcd60e51b815260040161095b9061234c565b6011805460ff1916911515919091179055565b61092c838383611500565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161095b9061234c565b6000610a336008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7d576040519150601f19603f3d011682016040523d82523d6000602084013e610a82565b606091505b5050905080610a9057600080fd5b50565b61092c8383836040518060200160405280600081525061106d565b60606000610abb83610cc4565b905060008167ffffffffffffffff811115610ad857610ad86124bb565b604051908082528060200260200182016040528015610b01578160200160208202803683370190505b509050600160005b8381108015610b1a5750600e548211155b15610b85576000610b2a83610c96565b9050866001600160a01b0316816001600160a01b03161415610b725782848381518110610b5957610b596124a5565b602090810291909101015281610b6e8161244a565b9250505b82610b7c8161244a565b93505050610b09565b5090949350505050565b6008546001600160a01b03163314610bb95760405162461bcd60e51b815260040161095b9061234c565b600d55565b6008546001600160a01b03163314610be85760405162461bcd60e51b815260040161095b9061234c565b80516109a990600c906020840190611e04565b600b8054610c089061240f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c349061240f565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b505050505081565b600a8054610c089061240f565b6000610ca182611716565b5192915050565b6000610cbf610cba6001546000540390565b611832565b905090565b60006001600160a01b038216610ced576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161095b9061234c565b610d4760006118db565b565b6008546001600160a01b03163314610d735760405162461bcd60e51b815260040161095b9061234c565b80516109a990600a906020840190611e04565b6060600380546107dc9061240f565b80610dab610da66001546000540390565b61192d565b33600090815260126020526040902054610dc6908390612381565b1115610de45760405162461bcd60e51b815260040161095b90612315565b600081118015610df65750600f548111155b610e395760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095b565b600e5481610e4660095490565b610e509190612381565b1115610e955760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095b565b60115460ff1615610ee85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161095b565b81610ef9610cba6001546000540390565b610f0391906123ad565b341015610f485760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095b565b610f58610da66001546000540390565b33600090815260126020526040902054610f73908490612381565b1115610f915760405162461bcd60e51b815260040161095b90612315565b6109a933836119b4565b6001600160a01b038216331415610fc55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c089061240f565b6008546001600160a01b031633146110685760405162461bcd60e51b815260040161095b9061234c565b600f55565b611078848484611500565b6001600160a01b0383163b1515801561109a575061109884848484611a11565b155b156110b8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610cbf610da66001546000540390565b60606110db82611479565b61113f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161095b565b601154610100900460ff166111e057600c805461115b9061240f565b80601f01602080910402602001604051908101604052809291908181526020018280546111879061240f565b80156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b50505050509050919050565b60006111ea611b09565b9050600081511161120a5760405180602001604052806000815250611238565b8061121484611b18565b600b604051602001611228939291906121bd565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112695760405162461bcd60e51b815260040161095b9061234c565b601180549115156101000261ff0019909216919091179055565b81611294610da66001546000540390565b336000908152601260205260409020546112af908390612381565b11156112cd5760405162461bcd60e51b815260040161095b90612315565b6000811180156112df5750600f548111155b6113225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095b565b600e548161132f60095490565b6113399190612381565b111561137e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095b565b6008546001600160a01b031633146113a85760405162461bcd60e51b815260040161095b9061234c565b61092c82846119b4565b6008546001600160a01b031633146113dc5760405162461bcd60e51b815260040161095b9061234c565b6001600160a01b0381166114415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b610a90816118db565b6008546001600160a01b031633146114745760405162461bcd60e51b815260040161095b9061234c565b600e55565b60008054821080156107c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150b82611716565b80519091506000906001600160a01b0316336001600160a01b031614806115395750815161153990336106ed565b806115545750336115498461085f565b6001600160a01b0316145b90508061157457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115a95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166115d057604051633a954ecd60e21b815260040160405180910390fd5b6115e060008484600001516114a4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166116cc576000548110156116cc578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561181957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118175780516001600160a01b0316156117ad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611812579392505050565b6117ad565b505b604051636f96cda160e11b815260040160405180910390fd5b600061012c8210801561184d5750600d54662386f26fc10000145b1561185a57506000919050565b61012c821080156118745750600d54662386f26fc1000014155b15611881575050600d5490565b600e54821115801561189b5750600d54662386f26fc10000145b156118ae5750662386f26fc10000919050565b600e5482111580156118c95750600d54662386f26fc1000014155b156118d6575050600d5490565b919050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061012c8210801561194257506010546005145b1561194f57506005919050565b61012c821080156119635750601054600514155b1561197057505060105490565b600e54821115801561198457506010546005145b1561199257506101f4919050565b600e5482111580156119a75750601054600514155b156118d657505060105490565b60005b8181101561092c576119cd600980546001019055565b3360009081526012602052604081208054916119e88361244a565b91905055506119ff836119fa60095490565b611c16565b80611a098161244a565b9150506119b7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a46903390899088908890600401612281565b602060405180830381600087803b158015611a6057600080fd5b505af1925050508015611a90575060408051601f3d908101601f19168201909252611a8d918101906120cc565b60015b611aeb573d808015611abe576040519150601f19603f3d011682016040523d82523d6000602084013e611ac3565b606091505b508051611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107dc9061240f565b606081611b3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b665780611b508161244a565b9150611b5f9050600a83612399565b9150611b40565b60008167ffffffffffffffff811115611b8157611b816124bb565b6040519080825280601f01601f191660200182016040528015611bab576020820181803683370190505b5090505b8415611b0157611bc06001836123cc565b9150611bcd600a86612465565b611bd8906030612381565b60f81b818381518110611bed57611bed6124a5565b60200101906001600160f81b031916908160001a905350611c0f600a86612399565b9450611baf565b6109a982826040518060200160405280600081525061092c83838360016000546001600160a01b038516611c5c57604051622e076360e81b815260040160405180910390fd5b83611c7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d2c57506001600160a01b0387163b15155b15611db5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d7d6000888480600101955088611a11565b611d9a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d32578260005414611db057600080fd5b611dfb565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611db6575b5060005561170f565b828054611e109061240f565b90600052602060002090601f016020900481019282611e325760008555611e78565b82601f10611e4b57805160ff1916838001178555611e78565b82800160010185558215611e78579182015b82811115611e78578251825591602001919060010190611e5d565b50611e84929150611e88565b5090565b5b80821115611e845760008155600101611e89565b600067ffffffffffffffff80841115611eb857611eb86124bb565b604051601f8501601f19908116603f01168101908282118183101715611ee057611ee06124bb565b81604052809350858152868686011115611ef957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118d657600080fd5b803580151581146118d657600080fd5b600060208284031215611f4c57600080fd5b61123882611f13565b60008060408385031215611f6857600080fd5b611f7183611f13565b9150611f7f60208401611f13565b90509250929050565b600080600060608486031215611f9d57600080fd5b611fa684611f13565b9250611fb460208501611f13565b9150604084013590509250925092565b60008060008060808587031215611fda57600080fd5b611fe385611f13565b9350611ff160208601611f13565b925060408501359150606085013567ffffffffffffffff81111561201457600080fd5b8501601f8101871361202557600080fd5b61203487823560208401611e9d565b91505092959194509250565b6000806040838503121561205357600080fd5b61205c83611f13565b9150611f7f60208401611f2a565b6000806040838503121561207d57600080fd5b61208683611f13565b946020939093013593505050565b6000602082840312156120a657600080fd5b61123882611f2a565b6000602082840312156120c157600080fd5b8135611238816124d1565b6000602082840312156120de57600080fd5b8151611238816124d1565b6000602082840312156120fb57600080fd5b813567ffffffffffffffff81111561211257600080fd5b8201601f8101841361212357600080fd5b611b0184823560208401611e9d565b60006020828403121561214457600080fd5b5035919050565b6000806040838503121561215e57600080fd5b82359150611f7f60208401611f13565b60006020828403121561218057600080fd5b813560ff8116811461123857600080fd5b600081518084526121a98160208601602086016123e3565b601f01601f19169290920160200192915050565b6000845160206121d08285838a016123e3565b8551918401916121e38184848a016123e3565b8554920191600090600181811c908083168061220057607f831692505b85831081141561221e57634e487b7160e01b85526022600452602485fd5b808015612232576001811461224357612270565b60ff19851688528388019550612270565b60008b81526020902060005b858110156122685781548a82015290840190880161224f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122b490830184612191565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122f6578351835292840192918401916001016122da565b50909695505050505050565b6020815260006112386020830184612191565b6020808252601f908201527f45786365656473206d617820746f6b656e7320706572206163636f756e742100604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561239457612394612479565b500190565b6000826123a8576123a861248f565b500490565b60008160001904831182151516156123c7576123c7612479565b500290565b6000828210156123de576123de612479565b500390565b60005b838110156123fe5781810151838201526020016123e6565b838111156110b85750506000910152565b600181811c9082168061242357607f821691505b6020821081141561244457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245e5761245e612479565b5060010190565b6000826124745761247461248f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a9057600080fdfea2646970667358221220f33d5f5175741a0d27000054f03b00c56e27908f91ff533e465b66038461786b64736f6c63430008070033

Deployed Bytecode Sourcemap

45764:5896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28233:305;;;;;;;;;;-1:-1:-1;28233:305:0;;;;;:::i;:::-;;:::i;:::-;;;8340:14:1;;8333:22;8315:41;;8303:2;8288:18;28233:305:0;;;;;;;;31618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33121:204::-;;;;;;;;;;-1:-1:-1;33121:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7001:32:1;;;6983:51;;6971:2;6956:18;33121:204:0;6837:203:1;32684:371:0;;;;;;;;;;-1:-1:-1;32684:371:0;;;;;:::i;:::-;;:::i;:::-;;46028:32;;;;;;;;;;;;;;;;;;;11679:25:1;;;11667:2;11652:18;46028:32:0;11533:177:1;49858:136:0;;;;;;;;;;-1:-1:-1;49858:136:0;;;;;:::i;:::-;;:::i;50637:100::-;;;;;;;;;;-1:-1:-1;50637:100:0;;;;;:::i;:::-;;:::i;50743:77::-;;;;;;;;;;-1:-1:-1;50743:77:0;;;;;:::i;:::-;;:::i;27482:303::-;;;;;;;;;;-1:-1:-1;27736:12:0;;27526:7;27720:13;:28;27482:303;;33978:170;;;;;;;;;;-1:-1:-1;33978:170:0;;;;;:::i;:::-;;:::i;50826:466::-;;;;;;;;;;;;;:::i;34219:185::-;;;;;;;;;;-1:-1:-1;34219:185:0;;;;;:::i;:::-;;:::i;48716:635::-;;;;;;;;;;-1:-1:-1;48716:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50087:74::-;;;;;;;;;;-1:-1:-1;50087:74:0;;;;;:::i;:::-;;:::i;46144:37::-;;;;;;;;;;;;;;;;50393:132;;;;;;;;;;-1:-1:-1;50393:132:0;;;;;:::i;:::-;;:::i;46218:28::-;;;;;;;;;;-1:-1:-1;46218:28:0;;;;;;;;;;;45950:33;;;;;;;;;;;;;:::i;46188:25::-;;;;;;;;;;-1:-1:-1;46188:25:0;;;;;;;;45917:28;;;;;;;;;;;;;:::i;31427:124::-;;;;;;;;;;-1:-1:-1;31427:124:0;;;;;:::i;:::-;;:::i;46852:110::-;;;;;;;;;;;;;:::i;28602:206::-;;;;;;;;;;-1:-1:-1;28602:206:0;;;;;:::i;:::-;;:::i;6054:103::-;;;;;;;;;;;;;:::i;50531:100::-;;;;;;;;;;-1:-1:-1;50531:100:0;;;;;:::i;:::-;;:::i;5403:87::-;;;;;;;;;;-1:-1:-1;5476:6:0;;-1:-1:-1;;;;;5476:6:0;5403:87;;46253:57;;;;;;;;;;-1:-1:-1;46253:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;46101:38;;;;;;;;;;;;;;;;31787:104;;;;;;;;;;;;;:::i;48128:419::-;;;;;;:::i;:::-;;:::i;33397:279::-;;;;;;;;;;-1:-1:-1;33397:279:0;;;;;:::i;:::-;;:::i;45988:31::-;;;;;;;;;;;;;:::i;50167:130::-;;;;;;;;;;-1:-1:-1;50167:130:0;;;;;:::i;:::-;;:::i;34475:369::-;;;;;;;;;;-1:-1:-1;34475:369:0;;;;;:::i;:::-;;:::i;46968:132::-;;;;;;;;;;;;;:::i;49357:494::-;;;;;;;;;;-1:-1:-1;49357:494:0;;;;;:::i;:::-;;:::i;46065:31::-;;;;;;;;;;;;;;;;50000:81;;;;;;;;;;-1:-1:-1;50000:81:0;;;;;:::i;:::-;;:::i;33747:164::-;;;;;;;;;;-1:-1:-1;33747:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33868:25:0;;;33844:4;33868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33747:164;48555:155;;;;;;;;;;-1:-1:-1;48555:155:0;;;;;:::i;:::-;;:::i;6312:201::-;;;;;;;;;;-1:-1:-1;6312:201:0;;;;;:::i;:::-;;:::i;50304:83::-;;;;;;;;;;-1:-1:-1;50304:83:0;;;;;:::i;:::-;;:::i;28233:305::-;28335:4;-1:-1:-1;;;;;;28372:40:0;;-1:-1:-1;;;28372:40:0;;:105;;-1:-1:-1;;;;;;;28429:48:0;;-1:-1:-1;;;28429:48:0;28372:105;:158;;;-1:-1:-1;;;;;;;;;;17946:40:0;;;28494:36;28352:178;28233:305;-1:-1:-1;;28233:305:0:o;31618:100::-;31672:13;31705:5;31698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31618:100;:::o;33121:204::-;33189:7;33214:16;33222:7;33214;:16::i;:::-;33209:64;;33239:34;;-1:-1:-1;;;33239:34:0;;;;;;;;;;;33209:64;-1:-1:-1;33293:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33293:24:0;;33121:204::o;32684:371::-;32757:13;32773:24;32789:7;32773:15;:24::i;:::-;32757:40;;32818:5;-1:-1:-1;;;;;32812:11:0;:2;-1:-1:-1;;;;;32812:11:0;;32808:48;;;32832:24;;-1:-1:-1;;;32832:24:0;;;;;;;;;;;32808:48;4207:10;-1:-1:-1;;;;;32873:21:0;;;;;;:63;;-1:-1:-1;32899:37:0;32916:5;4207:10;33747:164;:::i;32899:37::-;32898:38;32873:63;32869:138;;;32960:35;;-1:-1:-1;;;32960:35:0;;;;;;;;;;;32869:138;33019:28;33028:2;33032:7;33041:5;33019:8;:28::i;:::-;32746:309;32684:371;;:::o;49858:136::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;;;;;;;;;49946:40:::1;;:18;:40:::0;49858:136::o;50637:100::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50709:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50637:100:::0;:::o;50743:77::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50799:6:::1;:15:::0;;-1:-1:-1;;50799:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50743:77::o;33978:170::-;34112:28;34122:4;34128:2;34132:7;34112:9;:28::i;50826:466::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;51114:7:::1;51135;5476:6:::0;;-1:-1:-1;;;;;5476:6:0;;5403:87;51135:7:::1;-1:-1:-1::0;;;;;51127:21:0::1;51156;51127:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51113:69;;;51197:2;51189:11;;;::::0;::::1;;50863:429;50826:466::o:0;34219:185::-;34357:39;34374:4;34380:2;34384:7;34357:39;;;;;;;;;;;;:16;:39::i;48716:635::-;48791:16;48819:23;48845:17;48855:6;48845:9;:17::i;:::-;48819:43;;48869:30;48916:15;48902:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48902:30:0;-1:-1:-1;48869:63:0;-1:-1:-1;48964:1:0;48939:22;49008:309;49033:15;49015;:33;:64;;;;;49070:9;;49052:14;:27;;49015:64;49008:309;;;49090:25;49118:23;49126:14;49118:7;:23::i;:::-;49090:51;;49177:6;-1:-1:-1;;;;;49156:27:0;:17;-1:-1:-1;;;;;49156:27:0;;49152:131;;;49229:14;49196:13;49210:15;49196:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;49256:17;;;;:::i;:::-;;;;49152:131;49293:16;;;;:::i;:::-;;;;49081:236;49008:309;;;-1:-1:-1;49332:13:0;;48716:635;-1:-1:-1;;;;48716:635:0:o;50087:74::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50143:4:::1;:12:::0;50087:74::o;50393:132::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50481:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;45950:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45917:28::-;;;;;;;:::i;31427:124::-;31491:7;31518:20;31530:7;31518:11;:20::i;:::-;:25;;31427:124;-1:-1:-1;;31427:124:0:o;46852:110::-;46894:13;46925:31;46942:13;27736:12;;27526:7;27720:13;:28;;27482:303;46942:13;46925:16;:31::i;:::-;46918:38;;46852:110;:::o;28602:206::-;28666:7;-1:-1:-1;;;;;28690:19:0;;28686:60;;28718:28;;-1:-1:-1;;;28718:28:0;;;;;;;;;;;28686:60;-1:-1:-1;;;;;;28772:19:0;;;;;:12;:19;;;;;:27;;;;28602:206::o;6054:103::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;6119:30:::1;6146:1;6119:18;:30::i;:::-;6054:103::o:0;50531:100::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50603:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31787:104::-:0;31843:13;31876:7;31869:14;;;;;:::i;48128:419::-;48193:11;46582:39;46607:13;27736:12;;27526:7;27720:13;:28;;27482:303;46607:13;46582:24;:39::i;:::-;46552:10;46529:34;;;;:22;:34;;;;;;:48;;46566:11;;46529:48;:::i;:::-;46528:93;;46519:138;;;;-1:-1:-1;;;46519:138:0;;;;;;;:::i;:::-;46686:1;46672:11;:15;:52;;;;;46706:18;;46691:11;:33;;46672:52;46664:85;;;;-1:-1:-1;;;46664:85:0;;9200:2:1;46664:85:0;;;9182:21:1;9239:2;9219:18;;;9212:30;-1:-1:-1;;;9258:18:1;;;9251:50;9318:18;;46664:85:0;8998:344:1;46664:85:0;46798:9;;46783:11;46764:16;:6;823:14;;731:114;46764:16;:30;;;;:::i;:::-;:43;;46756:76;;;;-1:-1:-1;;;46756:76:0;;11038:2:1;46756:76:0;;;11020:21:1;11077:2;11057:18;;;11050:30;-1:-1:-1;;;11096:18:1;;;11089:50;11156:18;;46756:76:0;10836:344:1;46756:76:0;48222:6:::1;::::0;::::1;;48221:7;48213:43;;;::::0;-1:-1:-1;;;48213:43:0;;10270:2:1;48213:43:0::1;::::0;::::1;10252:21:1::0;10309:2;10289:18;;;10282:30;10348:25;10328:18;;;10321:53;10391:18;;48213:43:0::1;10068:347:1::0;48213:43:0::1;48318:11;48284:31;48301:13;27736:12:::0;;27526:7;27720:13;:28;;27482:303;48284:31:::1;:45;;;;:::i;:::-;48271:9;:58;;48263:90;;;::::0;-1:-1:-1;;;48263:90:0;;11387:2:1;48263:90:0::1;::::0;::::1;11369:21:1::0;11426:2;11406:18;;;11399:30;-1:-1:-1;;;11445:18:1;;;11438:49;11504:18;;48263:90:0::1;11185:343:1::0;48263:90:0::1;48423:39;48448:13;27736:12:::0;;27526:7;27720:13;:28;;27482:303;48423:39:::1;48393:10;48370:34;::::0;;;:22:::1;:34;::::0;;;;;:48:::1;::::0;48407:11;;48370:48:::1;:::i;:::-;48369:93;;48360:138;;;;-1:-1:-1::0;;;48360:138:0::1;;;;;;;:::i;:::-;48507:34;48517:10;48529:11;48507:9;:34::i;33397:279::-:0;-1:-1:-1;;;;;33488:24:0;;4207:10;33488:24;33484:54;;;33521:17;;-1:-1:-1;;;33521:17:0;;;;;;;;;;;33484:54;4207:10;33551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33551:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33551:53:0;;;;;;;;;;33620:48;;8315:41:1;;;33551:42:0;;4207:10;33620:48;;8288:18:1;33620:48:0;;;;;;;33397:279;;:::o;45988:31::-;;;;;;;:::i;50167:130::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50251:18:::1;:40:::0;50167:130::o;34475:369::-;34642:28;34652:4;34658:2;34662:7;34642:9;:28::i;:::-;-1:-1:-1;;;;;34685:13:0;;8014:20;8062:8;;34685:76;;;;;34705:56;34736:4;34742:2;34746:7;34755:5;34705:30;:56::i;:::-;34704:57;34685:76;34681:156;;;34785:40;;-1:-1:-1;;;34785:40:0;;;;;;;;;;;34681:156;34475:369;;;;:::o;46968:132::-;47024:13;47055:39;47080:13;27736:12;;27526:7;27720:13;:28;;27482:303;49357:494;49456:13;49497:17;49505:8;49497:7;:17::i;:::-;49481:98;;;;-1:-1:-1;;;49481:98:0;;10622:2:1;49481:98:0;;;10604:21:1;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:1;;;10744:45;10806:19;;49481:98:0;10420:411:1;49481:98:0;49592:8;;;;;;;49588:64;;49627:17;49620:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49357:494;;;:::o;49588:64::-;49660:28;49691:10;:8;:10::i;:::-;49660:41;;49746:1;49721:14;49715:28;:32;:130;;;;;;;;;;;;;;;;;49783:14;49799:19;:8;:17;:19::i;:::-;49820:9;49766:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49715:130;49708:137;49357:494;-1:-1:-1;;;49357:494:0:o;50000:81::-;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50058:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50058:17:0;;::::1;::::0;;;::::1;::::0;;50000:81::o;48555:155::-;48641:11;46582:39;46607:13;27736:12;;27526:7;27720:13;:28;;27482:303;46582:39;46552:10;46529:34;;;;:22;:34;;;;;;:48;;46566:11;;46529:48;:::i;:::-;46528:93;;46519:138;;;;-1:-1:-1;;;46519:138:0;;;;;;;:::i;:::-;46686:1;46672:11;:15;:52;;;;;46706:18;;46691:11;:33;;46672:52;46664:85;;;;-1:-1:-1;;;46664:85:0;;9200:2:1;46664:85:0;;;9182:21:1;9239:2;9219:18;;;9212:30;-1:-1:-1;;;9258:18:1;;;9251:50;9318:18;;46664:85:0;8998:344:1;46664:85:0;46798:9;;46783:11;46764:16;:6;823:14;;731:114;46764:16;:30;;;;:::i;:::-;:43;;46756:76;;;;-1:-1:-1;;;46756:76:0;;11038:2:1;46756:76:0;;;11020:21:1;11077:2;11057:18;;;11050:30;-1:-1:-1;;;11096:18:1;;;11089:50;11156:18;;46756:76:0;10836:344:1;46756:76:0;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23:::1;5615:68;;;;-1:-1:-1::0;;;5615:68:0::1;;;;;;;:::i;:::-;48671:33:::2;48681:9;48692:11;48671:9;:33::i;6312:201::-:0;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6401:22:0;::::1;6393:73;;;::::0;-1:-1:-1;;;6393:73:0;;8793:2:1;6393:73:0::1;::::0;::::1;8775:21:1::0;8832:2;8812:18;;;8805:30;8871:34;8851:18;;;8844:62;-1:-1:-1;;;8922:18:1;;;8915:36;8968:19;;6393:73:0::1;8591:402:1::0;6393:73:0::1;6477:28;6496:8;6477:18;:28::i;50304:83::-:0;5476:6;;-1:-1:-1;;;;;5476:6:0;4207:10;5623:23;5615:68;;;;-1:-1:-1;;;5615:68:0;;;;;;;:::i;:::-;50363:9:::1;:18:::0;50304:83::o;35099:187::-;35156:4;35220:13;;35210:7;:23;35180:98;;;;-1:-1:-1;;35251:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35251:27:0;;;;35250:28;;35099:187::o;42710:196::-;42825:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42825:29:0;-1:-1:-1;;;;;42825:29:0;;;;;;;;;42870:28;;42825:24;;42870:28;;;;;;;42710:196;;;:::o;38212:2112::-;38327:35;38365:20;38377:7;38365:11;:20::i;:::-;38440:18;;38327:58;;-1:-1:-1;38398:22:0;;-1:-1:-1;;;;;38424:34:0;4207:10;-1:-1:-1;;;;;38424:34:0;;:101;;;-1:-1:-1;38492:18:0;;38475:50;;4207:10;33747:164;:::i;38475:50::-;38424:154;;;-1:-1:-1;4207:10:0;38542:20;38554:7;38542:11;:20::i;:::-;-1:-1:-1;;;;;38542:36:0;;38424:154;38398:181;;38597:17;38592:66;;38623:35;;-1:-1:-1;;;38623:35:0;;;;;;;;;;;38592:66;38695:4;-1:-1:-1;;;;;38673:26:0;:13;:18;;;-1:-1:-1;;;;;38673:26:0;;38669:67;;38708:28;;-1:-1:-1;;;38708:28:0;;;;;;;;;;;38669:67;-1:-1:-1;;;;;38751:16:0;;38747:52;;38776:23;;-1:-1:-1;;;38776:23:0;;;;;;;;;;;38747:52;38920:49;38937:1;38941:7;38950:13;:18;;;38920:8;:49::i;:::-;-1:-1:-1;;;;;39265:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39265:31:0;;;;;;;-1:-1:-1;;39265:31:0;;;;;;;39311:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39311:29:0;;;;;;;;;;;39357:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39402:61:0;;;;-1:-1:-1;;;39447:15:0;39402:61;;;;;;;;;;;39737:11;;;39767:24;;;;;:29;39737:11;;39767:29;39763:445;;39992:13;;39978:11;:27;39974:219;;;40062:18;;;40030:24;;;:11;:24;;;;;;;;:50;;40145:28;;;;40103:70;;-1:-1:-1;;;40103:70:0;-1:-1:-1;;;;;;40103:70:0;;;-1:-1:-1;;;;;40030:50:0;;;40103:70;;;;;;;39974:219;39240:979;40255:7;40251:2;-1:-1:-1;;;;;40236:27:0;40245:4;-1:-1:-1;;;;;40236:27:0;;;;;;;;;;;40274:42;38316:2008;;38212:2112;;;:::o;30257:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30367:7:0;30450:13;;30443:4;:20;30412:886;;;30484:31;30518:17;;;:11;:17;;;;;;;;;30484:51;;;;;;;;;-1:-1:-1;;;;;30484:51:0;;;;-1:-1:-1;;;30484:51:0;;;;;;;;;;;-1:-1:-1;;;30484:51:0;;;;;;;;;;;;;;30554:729;;30604:14;;-1:-1:-1;;;;;30604:28:0;;30600:101;;30668:9;30257:1108;-1:-1:-1;;;30257:1108:0:o;30600:101::-;-1:-1:-1;;;31043:6:0;31088:17;;;;:11;:17;;;;;;;;;31076:29;;;;;;;;;-1:-1:-1;;;;;31076:29:0;;;;;-1:-1:-1;;;31076:29:0;;;;;;;;;;;-1:-1:-1;;;31076:29:0;;;;;;;;;;;;;31136:28;31132:109;;31204:9;30257:1108;-1:-1:-1;;;30257:1108:0:o;31132:109::-;31003:261;;;30465:833;30412:886;31326:31;;-1:-1:-1;;;31326:31:0;;;;;;;;;;;47106:495;47171:13;47211:3;47201:7;:13;:42;;;;;47218:4;;47226:17;47218:25;47201:42;47198:398;;;-1:-1:-1;47265:10:0;;47106:495;-1:-1:-1;47106:495:0:o;47198:398::-;47314:3;47304:7;:13;:42;;;;;47321:4;;47329:17;47321:25;;47304:42;47300:296;;;-1:-1:-1;;47368:4:0;;;47106:495::o;47300:296::-;47411:9;;47400:7;:20;;:49;;;;;47424:4;;47432:17;47424:25;47400:49;47396:200;;;-1:-1:-1;47471:10:0;;47106:495;-1:-1:-1;47106:495:0:o;47396:200::-;47521:9;;47510:7;:20;;:49;;;;;47534:4;;47542:17;47534:25;;47510:49;47506:90;;;-1:-1:-1;;47581:4:0;;;47106:495::o;47506:90::-;47106:495;;;:::o;6673:191::-;6766:6;;;-1:-1:-1;;;;;6783:17:0;;;-1:-1:-1;;;;;;6783:17:0;;;;;;;6816:40;;6766:6;;;6783:17;6766:6;;6816:40;;6747:16;;6816:40;6736:128;6673:191;:::o;47607:513::-;47680:13;47721:3;47711:7;:13;:40;;;;;47728:18;;47750:1;47728:23;47711:40;47708:407;;;-1:-1:-1;47774:1:0;;47607:513;-1:-1:-1;47607:513:0:o;47708:407::-;47815:3;47805:7;:13;:41;;;;;47823:18;;47845:1;47823:23;;47805:41;47801:314;;;-1:-1:-1;;47868:18:0;;;47607:513::o;47801:314::-;47926:9;;47915:7;:20;;:47;;;;;47939:18;;47961:1;47939:23;47915:47;47911:204;;;-1:-1:-1;47984:3:0;;47607:513;-1:-1:-1;47607:513:0:o;47911:204::-;48028:9;;48017:7;:20;;:47;;;;;48041:18;;48063:1;48041:23;;48017:47;48013:102;;;-1:-1:-1;;48086:18:0;;;47607:513::o;51298:249::-;51378:9;51373:169;51397:11;51393:1;:15;51373:169;;;51424:18;:6;942:19;;960:1;942:19;;;853:127;51424:18;51474:10;51451:34;;;;:22;:34;;;;;:36;;;;;;:::i;:::-;;;;;;51496:38;51506:9;51517:16;:6;823:14;;731:114;51517:16;51496:9;:38::i;:::-;51410:3;;;;:::i;:::-;;;;51373:169;;43398:667;43582:72;;-1:-1:-1;;;43582:72:0;;43561:4;;-1:-1:-1;;;;;43582:36:0;;;;;:72;;4207:10;;43633:4;;43639:7;;43648:5;;43582:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43582:72:0;;;;;;;;-1:-1:-1;;43582:72:0;;;;;;;;;;;;:::i;:::-;;;43578:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43816:13:0;;43812:235;;43862:40;;-1:-1:-1;;;43862:40:0;;;;;;;;;;;43812:235;44005:6;43999:13;43990:6;43986:2;43982:15;43975:38;43578:480;-1:-1:-1;;;;;;43701:55:0;-1:-1:-1;;;43701:55:0;;-1:-1:-1;43578:480:0;43398:667;;;;;;:::o;51553:104::-;51613:13;51642:9;51635:16;;;;;:::i;1689:723::-;1745:13;1966:10;1962:53;;-1:-1:-1;;1993:10:0;;;;;;;;;;;;-1:-1:-1;;;1993:10:0;;;;;1689:723::o;1962:53::-;2040:5;2025:12;2081:78;2088:9;;2081:78;;2114:8;;;;:::i;:::-;;-1:-1:-1;2137:10:0;;-1:-1:-1;2145:2:0;2137:10;;:::i;:::-;;;2081:78;;;2169:19;2201:6;2191:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2191:17:0;;2169:39;;2219:154;2226:10;;2219:154;;2253:11;2263:1;2253:11;;:::i;:::-;;-1:-1:-1;2322:10:0;2330:2;2322:5;:10;:::i;:::-;2309:24;;:2;:24;:::i;:::-;2296:39;;2279:6;2286;2279:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2279:56:0;;;;;;;;-1:-1:-1;2350:11:0;2359:2;2350:11;;:::i;:::-;;;2219:154;;35294:104;35363:27;35373:2;35377:8;35363:27;;;;;;;;;;;;35884:32;35890:2;35894:8;35904:5;35911:4;36322:20;36345:13;-1:-1:-1;;;;;36373:16:0;;36369:48;;36398:19;;-1:-1:-1;;;36398:19:0;;;;;;;;;;;36369:48;36432:13;36428:44;;36454:18;;-1:-1:-1;;;36454:18:0;;;;;;;;;;;36428:44;-1:-1:-1;;;;;36823:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36882:49:0;;36823:44;;;;;;;;36882:49;;;;-1:-1:-1;;36823:44:0;;;;;;36882:49;;;;;;;;;;;;;;;;36948:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36998:66:0;;;;-1:-1:-1;;;37048:15:0;36998:66;;;;;;;;;;36948:25;37145:23;;;37189:4;:23;;;;-1:-1:-1;;;;;;37197:13:0;;8014:20;8062:8;;37197:15;37185:641;;;37233:314;37264:38;;37289:12;;-1:-1:-1;;;;;37264:38:0;;;37281:1;;37264:38;;37281:1;;37264:38;37330:69;37369:1;37373:2;37377:14;;;;;;37393:5;37330:30;:69::i;:::-;37325:174;;37435:40;;-1:-1:-1;;;37435:40:0;;;;;;;;;;;37325:174;37542:3;37526:12;:19;;37233:314;;37628:12;37611:13;;:29;37607:43;;37642:8;;;37607:43;37185:641;;;37691:120;37722:40;;37747:14;;;;;-1:-1:-1;;;;;37722:40:0;;;37739:1;;37722:40;;37739:1;;37722:40;37806:3;37790:12;:19;;37691:120;;37185:641;-1:-1:-1;37840:13:0;:28;37890:60;34475:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:269::-;4616:6;4669:2;4657:9;4648:7;4644:23;4640:32;4637:52;;;4685:1;4682;4675:12;4637:52;4724:9;4711:23;4774:4;4767:5;4763:16;4756:5;4753:27;4743:55;;4794:1;4791;4784:12;4833:257;4874:3;4912:5;4906:12;4939:6;4934:3;4927:19;4955:63;5011:6;5004:4;4999:3;4995:14;4988:4;4981:5;4977:16;4955:63;:::i;:::-;5072:2;5051:15;-1:-1:-1;;5047:29:1;5038:39;;;;5079:4;5034:50;;4833:257;-1:-1:-1;;4833:257:1:o;5095:1527::-;5319:3;5357:6;5351:13;5383:4;5396:51;5440:6;5435:3;5430:2;5422:6;5418:15;5396:51;:::i;:::-;5510:13;;5469:16;;;;5532:55;5510:13;5469:16;5554:15;;;5532:55;:::i;:::-;5676:13;;5609:20;;;5649:1;;5736;5758:18;;;;5811;;;;5838:93;;5916:4;5906:8;5902:19;5890:31;;5838:93;5979:2;5969:8;5966:16;5946:18;5943:40;5940:167;;;-1:-1:-1;;;6006:33:1;;6062:4;6059:1;6052:15;6092:4;6013:3;6080:17;5940:167;6123:18;6150:110;;;;6274:1;6269:328;;;;6116:481;;6150:110;-1:-1:-1;;6185:24:1;;6171:39;;6230:20;;;;-1:-1:-1;6150:110:1;;6269:328;11788:1;11781:14;;;11825:4;11812:18;;6364:1;6378:169;6392:8;6389:1;6386:15;6378:169;;;6474:14;;6459:13;;;6452:37;6517:16;;;;6409:10;;6378:169;;;6382:3;;6578:8;6571:5;6567:20;6560:27;;6116:481;-1:-1:-1;6613:3:1;;5095:1527;-1:-1:-1;;;;;;;;;;;5095:1527:1:o;7045:488::-;-1:-1:-1;;;;;7314:15:1;;;7296:34;;7366:15;;7361:2;7346:18;;7339:43;7413:2;7398:18;;7391:34;;;7461:3;7456:2;7441:18;;7434:31;;;7239:4;;7482:45;;7507:19;;7499:6;7482:45;:::i;:::-;7474:53;7045:488;-1:-1:-1;;;;;;7045:488:1:o;7538:632::-;7709:2;7761:21;;;7831:13;;7734:18;;;7853:22;;;7680:4;;7709:2;7932:15;;;;7906:2;7891:18;;;7680:4;7975:169;7989:6;7986:1;7983:13;7975:169;;;8050:13;;8038:26;;8119:15;;;;8084:12;;;;8011:1;8004:9;7975:169;;;-1:-1:-1;8161:3:1;;7538:632;-1:-1:-1;;;;;;7538:632:1:o;8367:219::-;8516:2;8505:9;8498:21;8479:4;8536:44;8576:2;8565:9;8561:18;8553:6;8536:44;:::i;9347:355::-;9549:2;9531:21;;;9588:2;9568:18;;;9561:30;9627:33;9622:2;9607:18;;9600:61;9693:2;9678:18;;9347:355::o;9707:356::-;9909:2;9891:21;;;9928:18;;;9921:30;9987:34;9982:2;9967:18;;9960:62;10054:2;10039:18;;9707:356::o;11841:128::-;11881:3;11912:1;11908:6;11905:1;11902:13;11899:39;;;11918:18;;:::i;:::-;-1:-1:-1;11954:9:1;;11841:128::o;11974:120::-;12014:1;12040;12030:35;;12045:18;;:::i;:::-;-1:-1:-1;12079:9:1;;11974:120::o;12099:168::-;12139:7;12205:1;12201;12197:6;12193:14;12190:1;12187:21;12182:1;12175:9;12168:17;12164:45;12161:71;;;12212:18;;:::i;:::-;-1:-1:-1;12252:9:1;;12099:168::o;12272:125::-;12312:4;12340:1;12337;12334:8;12331:34;;;12345:18;;:::i;:::-;-1:-1:-1;12382:9:1;;12272:125::o;12402:258::-;12474:1;12484:113;12498:6;12495:1;12492:13;12484:113;;;12574:11;;;12568:18;12555:11;;;12548:39;12520:2;12513:10;12484:113;;;12615:6;12612:1;12609:13;12606:48;;;-1:-1:-1;;12650:1:1;12632:16;;12625:27;12402:258::o;12665:380::-;12744:1;12740:12;;;;12787;;;12808:61;;12862:4;12854:6;12850:17;12840:27;;12808:61;12915:2;12907:6;12904:14;12884:18;12881:38;12878:161;;;12961:10;12956:3;12952:20;12949:1;12942:31;12996:4;12993:1;12986:15;13024:4;13021:1;13014:15;12878:161;;12665:380;;;:::o;13050:135::-;13089:3;-1:-1:-1;;13110:17:1;;13107:43;;;13130:18;;:::i;:::-;-1:-1:-1;13177:1:1;13166:13;;13050:135::o;13190:112::-;13222:1;13248;13238:35;;13253:18;;:::i;:::-;-1:-1:-1;13287:9:1;;13190:112::o;13307:127::-;13368:10;13363:3;13359:20;13356:1;13349:31;13399:4;13396:1;13389:15;13423:4;13420:1;13413:15;13439:127;13500:10;13495:3;13491:20;13488:1;13481:31;13531:4;13528:1;13521:15;13555:4;13552:1;13545:15;13571:127;13632:10;13627:3;13623:20;13620:1;13613:31;13663:4;13660:1;13653:15;13687:4;13684:1;13677:15;13703:127;13764:10;13759:3;13755:20;13752:1;13745:31;13795:4;13792:1;13785:15;13819:4;13816:1;13809:15;13835:131;-1:-1:-1;;;;;;13909:32:1;;13899:43;;13889:71;;13956:1;13953;13946:12

Swarm Source

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