ETH Price: $3,099.46 (+0.52%)
Gas: 9 Gwei

Token

Whitelist Ape Club (WAC)
 

Overview

Max Total Supply

200 WAC

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
qqman.eth
Balance
69 WAC
0x3090eeF25c05c6CF6fF2988646EE27Aa2f5C0178
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:
WAC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        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) {
        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) {
        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 {
        _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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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: @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: WAC/WAC.sol

// Contract based on https://chiru-labs.github.io/ERC721A/#/

pragma solidity ^0.8.0;




contract WAC is ERC721A, Ownable {
    using Strings for uint256;

    bool public _isSaleActive = true;
    bool public _revealed = false;

    // Constants
    uint256 public constant MAX_SUPPLY = 1111;
    uint256 public mintPrice = 0 ether;
    uint256 public maxBalance = 1111;
    uint256 public maxMint = 1111;

    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory initBaseURI, string memory initNotRevealedUri)
        ERC721A("Whitelist Ape Club", "WAC"){}

    function mint(uint256 tokenQuantity) public payable {
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );
        require(_isSaleActive, "Sale must be active to mint WAC");
        require(
            balanceOf(msg.sender) + tokenQuantity <= maxBalance,
            "Sale would exceed max balance"
        );
        require(
            tokenQuantity * mintPrice <= msg.value,
            "Not enough ether sent"
        );
        require(tokenQuantity <= maxMint, "Can only mint 1111 tokens at a time");

        _mint(tokenQuantity);
    }

    function _mint(uint256 tokenQuantity) internal {
        if (totalSupply() + tokenQuantity < MAX_SUPPLY) {
            _safeMint(msg.sender, tokenQuantity);
        }
    }

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

        if (_revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

    //only owner
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506000600955610457600a55610457600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000989291906200027d565b50348015620000a657600080fd5b506040516200427a3803806200427a8339818101604052810190620000cc9190620003ab565b6040518060400160405280601281526020017f57686974656c6973742041706520436c756200000000000000000000000000008152506040518060400160405280600381526020017f57414300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001509291906200027d565b508060039080519060200190620001699291906200027d565b506200017a620001aa60201b60201c565b6000819055505050620001a262000196620001af60201b60201c565b620001b760201b60201c565b5050620005b4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028b90620004c5565b90600052602060002090601f016020900481019282620002af5760008555620002fb565b82601f10620002ca57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fa578251825591602001919060010190620002dd565b5b5090506200030a91906200030e565b5090565b5b80821115620003295760008160009055506001016200030f565b5090565b6000620003446200033e8462000459565b62000430565b90508281526020810184848401111562000363576200036262000594565b5b620003708482856200048f565b509392505050565b600082601f83011262000390576200038f6200058f565b5b8151620003a28482602086016200032d565b91505092915050565b60008060408385031215620003c557620003c46200059e565b5b600083015167ffffffffffffffff811115620003e657620003e562000599565b5b620003f48582860162000378565b925050602083015167ffffffffffffffff81111562000418576200041762000599565b5b620004268582860162000378565b9150509250929050565b60006200043c6200044f565b90506200044a8282620004fb565b919050565b6000604051905090565b600067ffffffffffffffff82111562000477576200047662000560565b5b6200048282620005a3565b9050602081019050919050565b60005b83811015620004af57808201518184015260208101905062000492565b83811115620004bf576000848401525b50505050565b60006002820490506001821680620004de57607f821691505b60208210811415620004f557620004f462000531565b5b50919050565b6200050682620005a3565b810181811067ffffffffffffffff8211171562000528576200052762000560565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613cb680620005c46000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063de8b51e11161006f578063de8b51e114610722578063e985e9c514610739578063f2c4ce1e14610776578063f2fde38b1461079f578063f4a0a528146107c857610204565b8063b88d4fde14610668578063c668286214610691578063c87b56dd146106bc578063da3ef23f146106f957610204565b80638da5cb5b116100e75780638da5cb5b146105a457806395d89b41146105cf5780639d51d9b7146105fa578063a0712d6814610623578063a22cb4651461063f57610204565b806370a08231146104fa578063715018a61461053757806373ad468a1461054e5780637501f7411461057957610204565b80633b84d9c61161019b57806355f804b31161016a57806355f804b3146104135780636352211e1461043c5780636817c76c146104795780636ebeac85146104a45780637080d6fc146104cf57610204565b80633b84d9c61461038157806342842e0e1461039857806351cff8d9146103c1578063547520fe146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806323b872dd1461032d57806332cb6b0c1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613088565b6107f1565b60405161023d919061347b565b60405180910390f35b34801561025257600080fd5b5061025b6108d3565b6040516102689190613496565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061312b565b610965565b6040516102a59190613414565b60405180910390f35b3480156102ba57600080fd5b506102c36109e1565b6040516102d09190613496565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613048565b610a6f565b005b34801561030e57600080fd5b50610317610b7a565b60405161032491906135b8565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612f32565b610b91565b005b34801561036257600080fd5b5061036b610ba1565b60405161037891906135b8565b60405180910390f35b34801561038d57600080fd5b50610396610ba7565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612f32565b610c4f565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612ec5565b610c6f565b005b3480156103f657600080fd5b50610411600480360381019061040c919061312b565b610d3b565b005b34801561041f57600080fd5b5061043a600480360381019061043591906130e2565b610dc1565b005b34801561044857600080fd5b50610463600480360381019061045e919061312b565b610e57565b6040516104709190613414565b60405180910390f35b34801561048557600080fd5b5061048e610e6d565b60405161049b91906135b8565b60405180910390f35b3480156104b057600080fd5b506104b9610e73565b6040516104c6919061347b565b60405180910390f35b3480156104db57600080fd5b506104e4610e86565b6040516104f1919061347b565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612ec5565b610e99565b60405161052e91906135b8565b60405180910390f35b34801561054357600080fd5b5061054c610f69565b005b34801561055a57600080fd5b50610563610ff1565b60405161057091906135b8565b60405180910390f35b34801561058557600080fd5b5061058e610ff7565b60405161059b91906135b8565b60405180910390f35b3480156105b057600080fd5b506105b9610ffd565b6040516105c69190613414565b60405180910390f35b3480156105db57600080fd5b506105e4611027565b6040516105f19190613496565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c919061312b565b6110b9565b005b61063d6004803603810190610638919061312b565b61113f565b005b34801561064b57600080fd5b5061066660048036038101906106619190613008565b6112de565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612f85565b611456565b005b34801561069d57600080fd5b506106a66114d2565b6040516106b39190613496565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de919061312b565b611560565b6040516106f09190613496565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906130e2565b611784565b005b34801561072e57600080fd5b5061073761181a565b005b34801561074557600080fd5b50610760600480360381019061075b9190612ef2565b6118c2565b60405161076d919061347b565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906130e2565b611956565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612ec5565b6119ec565b005b3480156107d457600080fd5b506107ef60048036038101906107ea919061312b565b611ae4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108cc57506108cb82611b6a565b5b9050919050565b6060600280546108e29061387d565b80601f016020809104026020016040519081016040528092919081815260200182805461090e9061387d565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600061097082611bd4565b6109a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d80546109ee9061387d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a9061387d565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b505050505081565b6000610a7a82610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b01611c22565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b335750610b3181610b2c611c22565b6118c2565b155b15610b6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b75838383611c2a565b505050565b6000610b84611cdc565b6001546000540303905090565b610b9c838383611ce1565b505050565b61045781565b610baf611c22565b73ffffffffffffffffffffffffffffffffffffffff16610bcd610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613558565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b610c6a83838360405180602001604052806000815250611456565b505050565b610c77611c22565b73ffffffffffffffffffffffffffffffffffffffff16610c95610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613558565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d36573d6000803e3d6000fd5b505050565b610d43611c22565b73ffffffffffffffffffffffffffffffffffffffff16610d61610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613558565b60405180910390fd5b80600b8190555050565b610dc9611c22565b73ffffffffffffffffffffffffffffffffffffffff16610de7610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613558565b60405180910390fd5b80600c9080519060200190610e53929190612c96565b5050565b6000610e6282612197565b600001519050919050565b60095481565b600860159054906101000a900460ff1681565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f71611c22565b73ffffffffffffffffffffffffffffffffffffffff16610f8f610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613558565b60405180910390fd5b610fef6000612426565b565b600a5481565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110369061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546110629061387d565b80156110af5780601f10611084576101008083540402835291602001916110af565b820191906000526020600020905b81548152906001019060200180831161109257829003601f168201915b5050505050905090565b6110c1611c22565b73ffffffffffffffffffffffffffffffffffffffff166110df610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90613558565b60405180910390fd5b80600a8190555050565b6104578161114b610b7a565b61115591906136b2565b1115611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613518565b60405180910390fd5b600860149054906101000a900460ff166111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906134d8565b60405180910390fd5b600a54816111f233610e99565b6111fc91906136b2565b111561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613538565b60405180910390fd5b346009548261124c9190613739565b111561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613598565b60405180910390fd5b600b548111156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906134b8565b60405180910390fd5b6112db816124ec565b50565b6112e6611c22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611358611c22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611405611c22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144a919061347b565b60405180910390a35050565b611461848484611ce1565b6114808373ffffffffffffffffffffffffffffffffffffffff16612516565b8015611495575061149384848484612539565b155b156114cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e80546114df9061387d565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061387d565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b505050505081565b606061156b82611bd4565b6115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613578565b60405180910390fd5b60001515600860159054906101000a900460ff161515141561165857600d80546115d39061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff9061387d565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050905061177f565b6000600f600084815260200190815260200160002080546116789061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546116a49061387d565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505090506000611702612699565b905060008151141561171857819250505061177f565b60008251111561174d5780826040516020016117359291906133bf565b6040516020818303038152906040529250505061177f565b806117578561272b565b600e60405160200161176b939291906133e3565b604051602081830303815290604052925050505b919050565b61178c611c22565b73ffffffffffffffffffffffffffffffffffffffff166117aa610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613558565b60405180910390fd5b80600e9080519060200190611816929190612c96565b5050565b611822611c22565b73ffffffffffffffffffffffffffffffffffffffff16611840610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613558565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195e611c22565b73ffffffffffffffffffffffffffffffffffffffff1661197c610ffd565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613558565b60405180910390fd5b80600d90805190602001906119e8929190612c96565b5050565b6119f4611c22565b73ffffffffffffffffffffffffffffffffffffffff16611a12610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134f8565b60405180910390fd5b611ae181612426565b50565b611aec611c22565b73ffffffffffffffffffffffffffffffffffffffff16611b0a610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613558565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bdf611cdc565b11158015611bee575060005482105b8015611c1b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cec82612197565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d78611c22565b73ffffffffffffffffffffffffffffffffffffffff161480611da75750611da685611da1611c22565b6118c2565b5b80611dec5750611db5611c22565b73ffffffffffffffffffffffffffffffffffffffff16611dd484610965565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e99858585600161288c565b611ea560008487611c2a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561212557600054821461212457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121908585856001612892565b5050505050565b61219f612d1c565b6000829050806121ad611cdc565b111580156121bc575060005481105b156123ef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123ed57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d1578092505050612421565b5b6001156123ec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e7578092505050612421565b6122d2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610457816124f8610b7a565b61250291906136b2565b1015612513576125123382612898565b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255f611c22565b8786866040518563ffffffff1660e01b8152600401612581949392919061342f565b602060405180830381600087803b15801561259b57600080fd5b505af19250505080156125cc57506040513d601f19601f820116820180604052508101906125c991906130b5565b60015b612646573d80600081146125fc576040519150601f19603f3d011682016040523d82523d6000602084013e612601565b606091505b5060008151141561263e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126a89061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546126d49061387d565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e906138e0565b915050600a8261279e9190613708565b915061277b565b60008167ffffffffffffffff8111156127c1576127c0613a16565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c9190613793565b9150600a8561281b9190613929565b603061282791906136b2565b60f81b81838151811061283d5761283c6139e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128799190613708565b94506127f7565b8093505050505b919050565b50505050565b50505050565b6128b28282604051806020016040528060008152506128b6565b5050565b6128c383838360016128c8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612935576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612970576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297d600086838761288c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b475750612b468773ffffffffffffffffffffffffffffffffffffffff16612516565b5b15612c0d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbc6000888480600101955088612539565b612bf2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b4d578260005414612c0857600080fd5b612c79565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c0e575b816000819055505050612c8f6000868387612892565b5050505050565b828054612ca29061387d565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d5f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d78576000816000905550600101612d60565b5090565b6000612d8f612d8a846135f8565b6135d3565b905082815260208101848484011115612dab57612daa613a4a565b5b612db684828561383b565b509392505050565b6000612dd1612dcc84613629565b6135d3565b905082815260208101848484011115612ded57612dec613a4a565b5b612df884828561383b565b509392505050565b600081359050612e0f81613c24565b92915050565b600081359050612e2481613c3b565b92915050565b600081359050612e3981613c52565b92915050565b600081519050612e4e81613c52565b92915050565b600082601f830112612e6957612e68613a45565b5b8135612e79848260208601612d7c565b91505092915050565b600082601f830112612e9757612e96613a45565b5b8135612ea7848260208601612dbe565b91505092915050565b600081359050612ebf81613c69565b92915050565b600060208284031215612edb57612eda613a54565b5b6000612ee984828501612e00565b91505092915050565b60008060408385031215612f0957612f08613a54565b5b6000612f1785828601612e00565b9250506020612f2885828601612e00565b9150509250929050565b600080600060608486031215612f4b57612f4a613a54565b5b6000612f5986828701612e00565b9350506020612f6a86828701612e00565b9250506040612f7b86828701612eb0565b9150509250925092565b60008060008060808587031215612f9f57612f9e613a54565b5b6000612fad87828801612e00565b9450506020612fbe87828801612e00565b9350506040612fcf87828801612eb0565b925050606085013567ffffffffffffffff811115612ff057612fef613a4f565b5b612ffc87828801612e54565b91505092959194509250565b6000806040838503121561301f5761301e613a54565b5b600061302d85828601612e00565b925050602061303e85828601612e15565b9150509250929050565b6000806040838503121561305f5761305e613a54565b5b600061306d85828601612e00565b925050602061307e85828601612eb0565b9150509250929050565b60006020828403121561309e5761309d613a54565b5b60006130ac84828501612e2a565b91505092915050565b6000602082840312156130cb576130ca613a54565b5b60006130d984828501612e3f565b91505092915050565b6000602082840312156130f8576130f7613a54565b5b600082013567ffffffffffffffff81111561311657613115613a4f565b5b61312284828501612e82565b91505092915050565b60006020828403121561314157613140613a54565b5b600061314f84828501612eb0565b91505092915050565b613161816137c7565b82525050565b613170816137d9565b82525050565b60006131818261366f565b61318b8185613685565b935061319b81856020860161384a565b6131a481613a59565b840191505092915050565b60006131ba8261367a565b6131c48185613696565b93506131d481856020860161384a565b6131dd81613a59565b840191505092915050565b60006131f38261367a565b6131fd81856136a7565b935061320d81856020860161384a565b80840191505092915050565b600081546132268161387d565b61323081866136a7565b9450600182166000811461324b576001811461325c5761328f565b60ff1983168652818601935061328f565b6132658561365a565b60005b8381101561328757815481890152600182019150602081019050613268565b838801955050505b50505092915050565b60006132a5602383613696565b91506132b082613a6a565b604082019050919050565b60006132c8601f83613696565b91506132d382613ab9565b602082019050919050565b60006132eb602683613696565b91506132f682613ae2565b604082019050919050565b600061330e601c83613696565b915061331982613b31565b602082019050919050565b6000613331601d83613696565b915061333c82613b5a565b602082019050919050565b6000613354602083613696565b915061335f82613b83565b602082019050919050565b6000613377602f83613696565b915061338282613bac565b604082019050919050565b600061339a601583613696565b91506133a582613bfb565b602082019050919050565b6133b981613831565b82525050565b60006133cb82856131e8565b91506133d782846131e8565b91508190509392505050565b60006133ef82866131e8565b91506133fb82856131e8565b91506134078284613219565b9150819050949350505050565b60006020820190506134296000830184613158565b92915050565b60006080820190506134446000830187613158565b6134516020830186613158565b61345e60408301856133b0565b81810360608301526134708184613176565b905095945050505050565b60006020820190506134906000830184613167565b92915050565b600060208201905081810360008301526134b081846131af565b905092915050565b600060208201905081810360008301526134d181613298565b9050919050565b600060208201905081810360008301526134f1816132bb565b9050919050565b60006020820190508181036000830152613511816132de565b9050919050565b6000602082019050818103600083015261353181613301565b9050919050565b6000602082019050818103600083015261355181613324565b9050919050565b6000602082019050818103600083015261357181613347565b9050919050565b600060208201905081810360008301526135918161336a565b9050919050565b600060208201905081810360008301526135b18161338d565b9050919050565b60006020820190506135cd60008301846133b0565b92915050565b60006135dd6135ee565b90506135e982826138af565b919050565b6000604051905090565b600067ffffffffffffffff82111561361357613612613a16565b5b61361c82613a59565b9050602081019050919050565b600067ffffffffffffffff82111561364457613643613a16565b5b61364d82613a59565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136bd82613831565b91506136c883613831565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fd576136fc61395a565b5b828201905092915050565b600061371382613831565b915061371e83613831565b92508261372e5761372d613989565b5b828204905092915050565b600061374482613831565b915061374f83613831565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137885761378761395a565b5b828202905092915050565b600061379e82613831565b91506137a983613831565b9250828210156137bc576137bb61395a565b5b828203905092915050565b60006137d282613811565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386857808201518184015260208101905061384d565b83811115613877576000848401525b50505050565b6000600282049050600182168061389557607f821691505b602082108114156138a9576138a86139b8565b5b50919050565b6138b882613a59565b810181811067ffffffffffffffff821117156138d7576138d6613a16565b5b80604052505050565b60006138eb82613831565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391e5761391d61395a565b5b600182019050919050565b600061393482613831565b915061393f83613831565b92508261394f5761394e613989565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74203131313120746f6b656e732061742061207460008201527f696d650000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742057414300600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613c2d816137c7565b8114613c3857600080fd5b50565b613c44816137d9565b8114613c4f57600080fd5b50565b613c5b816137e5565b8114613c6657600080fd5b50565b613c7281613831565b8114613c7d57600080fd5b5056fea26469706673582212204829072806971a8509c36899088730eda24d8d2a1d3ea6e82e12a87428c9a4b864736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063de8b51e11161006f578063de8b51e114610722578063e985e9c514610739578063f2c4ce1e14610776578063f2fde38b1461079f578063f4a0a528146107c857610204565b8063b88d4fde14610668578063c668286214610691578063c87b56dd146106bc578063da3ef23f146106f957610204565b80638da5cb5b116100e75780638da5cb5b146105a457806395d89b41146105cf5780639d51d9b7146105fa578063a0712d6814610623578063a22cb4651461063f57610204565b806370a08231146104fa578063715018a61461053757806373ad468a1461054e5780637501f7411461057957610204565b80633b84d9c61161019b57806355f804b31161016a57806355f804b3146104135780636352211e1461043c5780636817c76c146104795780636ebeac85146104a45780637080d6fc146104cf57610204565b80633b84d9c61461038157806342842e0e1461039857806351cff8d9146103c1578063547520fe146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806323b872dd1461032d57806332cb6b0c1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613088565b6107f1565b60405161023d919061347b565b60405180910390f35b34801561025257600080fd5b5061025b6108d3565b6040516102689190613496565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061312b565b610965565b6040516102a59190613414565b60405180910390f35b3480156102ba57600080fd5b506102c36109e1565b6040516102d09190613496565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613048565b610a6f565b005b34801561030e57600080fd5b50610317610b7a565b60405161032491906135b8565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612f32565b610b91565b005b34801561036257600080fd5b5061036b610ba1565b60405161037891906135b8565b60405180910390f35b34801561038d57600080fd5b50610396610ba7565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612f32565b610c4f565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612ec5565b610c6f565b005b3480156103f657600080fd5b50610411600480360381019061040c919061312b565b610d3b565b005b34801561041f57600080fd5b5061043a600480360381019061043591906130e2565b610dc1565b005b34801561044857600080fd5b50610463600480360381019061045e919061312b565b610e57565b6040516104709190613414565b60405180910390f35b34801561048557600080fd5b5061048e610e6d565b60405161049b91906135b8565b60405180910390f35b3480156104b057600080fd5b506104b9610e73565b6040516104c6919061347b565b60405180910390f35b3480156104db57600080fd5b506104e4610e86565b6040516104f1919061347b565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612ec5565b610e99565b60405161052e91906135b8565b60405180910390f35b34801561054357600080fd5b5061054c610f69565b005b34801561055a57600080fd5b50610563610ff1565b60405161057091906135b8565b60405180910390f35b34801561058557600080fd5b5061058e610ff7565b60405161059b91906135b8565b60405180910390f35b3480156105b057600080fd5b506105b9610ffd565b6040516105c69190613414565b60405180910390f35b3480156105db57600080fd5b506105e4611027565b6040516105f19190613496565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c919061312b565b6110b9565b005b61063d6004803603810190610638919061312b565b61113f565b005b34801561064b57600080fd5b5061066660048036038101906106619190613008565b6112de565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612f85565b611456565b005b34801561069d57600080fd5b506106a66114d2565b6040516106b39190613496565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de919061312b565b611560565b6040516106f09190613496565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906130e2565b611784565b005b34801561072e57600080fd5b5061073761181a565b005b34801561074557600080fd5b50610760600480360381019061075b9190612ef2565b6118c2565b60405161076d919061347b565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906130e2565b611956565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612ec5565b6119ec565b005b3480156107d457600080fd5b506107ef60048036038101906107ea919061312b565b611ae4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108cc57506108cb82611b6a565b5b9050919050565b6060600280546108e29061387d565b80601f016020809104026020016040519081016040528092919081815260200182805461090e9061387d565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600061097082611bd4565b6109a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d80546109ee9061387d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a9061387d565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b505050505081565b6000610a7a82610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b01611c22565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b335750610b3181610b2c611c22565b6118c2565b155b15610b6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b75838383611c2a565b505050565b6000610b84611cdc565b6001546000540303905090565b610b9c838383611ce1565b505050565b61045781565b610baf611c22565b73ffffffffffffffffffffffffffffffffffffffff16610bcd610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613558565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b610c6a83838360405180602001604052806000815250611456565b505050565b610c77611c22565b73ffffffffffffffffffffffffffffffffffffffff16610c95610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613558565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d36573d6000803e3d6000fd5b505050565b610d43611c22565b73ffffffffffffffffffffffffffffffffffffffff16610d61610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613558565b60405180910390fd5b80600b8190555050565b610dc9611c22565b73ffffffffffffffffffffffffffffffffffffffff16610de7610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613558565b60405180910390fd5b80600c9080519060200190610e53929190612c96565b5050565b6000610e6282612197565b600001519050919050565b60095481565b600860159054906101000a900460ff1681565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f71611c22565b73ffffffffffffffffffffffffffffffffffffffff16610f8f610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613558565b60405180910390fd5b610fef6000612426565b565b600a5481565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110369061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546110629061387d565b80156110af5780601f10611084576101008083540402835291602001916110af565b820191906000526020600020905b81548152906001019060200180831161109257829003601f168201915b5050505050905090565b6110c1611c22565b73ffffffffffffffffffffffffffffffffffffffff166110df610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90613558565b60405180910390fd5b80600a8190555050565b6104578161114b610b7a565b61115591906136b2565b1115611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90613518565b60405180910390fd5b600860149054906101000a900460ff166111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906134d8565b60405180910390fd5b600a54816111f233610e99565b6111fc91906136b2565b111561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613538565b60405180910390fd5b346009548261124c9190613739565b111561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613598565b60405180910390fd5b600b548111156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906134b8565b60405180910390fd5b6112db816124ec565b50565b6112e6611c22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611358611c22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611405611c22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144a919061347b565b60405180910390a35050565b611461848484611ce1565b6114808373ffffffffffffffffffffffffffffffffffffffff16612516565b8015611495575061149384848484612539565b155b156114cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e80546114df9061387d565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061387d565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b505050505081565b606061156b82611bd4565b6115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613578565b60405180910390fd5b60001515600860159054906101000a900460ff161515141561165857600d80546115d39061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff9061387d565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050905061177f565b6000600f600084815260200190815260200160002080546116789061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546116a49061387d565b80156116f15780601f106116c6576101008083540402835291602001916116f1565b820191906000526020600020905b8154815290600101906020018083116116d457829003601f168201915b505050505090506000611702612699565b905060008151141561171857819250505061177f565b60008251111561174d5780826040516020016117359291906133bf565b6040516020818303038152906040529250505061177f565b806117578561272b565b600e60405160200161176b939291906133e3565b604051602081830303815290604052925050505b919050565b61178c611c22565b73ffffffffffffffffffffffffffffffffffffffff166117aa610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613558565b60405180910390fd5b80600e9080519060200190611816929190612c96565b5050565b611822611c22565b73ffffffffffffffffffffffffffffffffffffffff16611840610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613558565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195e611c22565b73ffffffffffffffffffffffffffffffffffffffff1661197c610ffd565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613558565b60405180910390fd5b80600d90805190602001906119e8929190612c96565b5050565b6119f4611c22565b73ffffffffffffffffffffffffffffffffffffffff16611a12610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134f8565b60405180910390fd5b611ae181612426565b50565b611aec611c22565b73ffffffffffffffffffffffffffffffffffffffff16611b0a610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613558565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bdf611cdc565b11158015611bee575060005482105b8015611c1b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cec82612197565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d78611c22565b73ffffffffffffffffffffffffffffffffffffffff161480611da75750611da685611da1611c22565b6118c2565b5b80611dec5750611db5611c22565b73ffffffffffffffffffffffffffffffffffffffff16611dd484610965565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e99858585600161288c565b611ea560008487611c2a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561212557600054821461212457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121908585856001612892565b5050505050565b61219f612d1c565b6000829050806121ad611cdc565b111580156121bc575060005481105b156123ef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123ed57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d1578092505050612421565b5b6001156123ec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e7578092505050612421565b6122d2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610457816124f8610b7a565b61250291906136b2565b1015612513576125123382612898565b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255f611c22565b8786866040518563ffffffff1660e01b8152600401612581949392919061342f565b602060405180830381600087803b15801561259b57600080fd5b505af19250505080156125cc57506040513d601f19601f820116820180604052508101906125c991906130b5565b60015b612646573d80600081146125fc576040519150601f19603f3d011682016040523d82523d6000602084013e612601565b606091505b5060008151141561263e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126a89061387d565b80601f01602080910402602001604051908101604052809291908181526020018280546126d49061387d565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e906138e0565b915050600a8261279e9190613708565b915061277b565b60008167ffffffffffffffff8111156127c1576127c0613a16565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c9190613793565b9150600a8561281b9190613929565b603061282791906136b2565b60f81b81838151811061283d5761283c6139e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128799190613708565b94506127f7565b8093505050505b919050565b50505050565b50505050565b6128b28282604051806020016040528060008152506128b6565b5050565b6128c383838360016128c8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612935576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612970576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297d600086838761288c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b475750612b468773ffffffffffffffffffffffffffffffffffffffff16612516565b5b15612c0d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbc6000888480600101955088612539565b612bf2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b4d578260005414612c0857600080fd5b612c79565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c0e575b816000819055505050612c8f6000868387612892565b5050505050565b828054612ca29061387d565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d5f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d78576000816000905550600101612d60565b5090565b6000612d8f612d8a846135f8565b6135d3565b905082815260208101848484011115612dab57612daa613a4a565b5b612db684828561383b565b509392505050565b6000612dd1612dcc84613629565b6135d3565b905082815260208101848484011115612ded57612dec613a4a565b5b612df884828561383b565b509392505050565b600081359050612e0f81613c24565b92915050565b600081359050612e2481613c3b565b92915050565b600081359050612e3981613c52565b92915050565b600081519050612e4e81613c52565b92915050565b600082601f830112612e6957612e68613a45565b5b8135612e79848260208601612d7c565b91505092915050565b600082601f830112612e9757612e96613a45565b5b8135612ea7848260208601612dbe565b91505092915050565b600081359050612ebf81613c69565b92915050565b600060208284031215612edb57612eda613a54565b5b6000612ee984828501612e00565b91505092915050565b60008060408385031215612f0957612f08613a54565b5b6000612f1785828601612e00565b9250506020612f2885828601612e00565b9150509250929050565b600080600060608486031215612f4b57612f4a613a54565b5b6000612f5986828701612e00565b9350506020612f6a86828701612e00565b9250506040612f7b86828701612eb0565b9150509250925092565b60008060008060808587031215612f9f57612f9e613a54565b5b6000612fad87828801612e00565b9450506020612fbe87828801612e00565b9350506040612fcf87828801612eb0565b925050606085013567ffffffffffffffff811115612ff057612fef613a4f565b5b612ffc87828801612e54565b91505092959194509250565b6000806040838503121561301f5761301e613a54565b5b600061302d85828601612e00565b925050602061303e85828601612e15565b9150509250929050565b6000806040838503121561305f5761305e613a54565b5b600061306d85828601612e00565b925050602061307e85828601612eb0565b9150509250929050565b60006020828403121561309e5761309d613a54565b5b60006130ac84828501612e2a565b91505092915050565b6000602082840312156130cb576130ca613a54565b5b60006130d984828501612e3f565b91505092915050565b6000602082840312156130f8576130f7613a54565b5b600082013567ffffffffffffffff81111561311657613115613a4f565b5b61312284828501612e82565b91505092915050565b60006020828403121561314157613140613a54565b5b600061314f84828501612eb0565b91505092915050565b613161816137c7565b82525050565b613170816137d9565b82525050565b60006131818261366f565b61318b8185613685565b935061319b81856020860161384a565b6131a481613a59565b840191505092915050565b60006131ba8261367a565b6131c48185613696565b93506131d481856020860161384a565b6131dd81613a59565b840191505092915050565b60006131f38261367a565b6131fd81856136a7565b935061320d81856020860161384a565b80840191505092915050565b600081546132268161387d565b61323081866136a7565b9450600182166000811461324b576001811461325c5761328f565b60ff1983168652818601935061328f565b6132658561365a565b60005b8381101561328757815481890152600182019150602081019050613268565b838801955050505b50505092915050565b60006132a5602383613696565b91506132b082613a6a565b604082019050919050565b60006132c8601f83613696565b91506132d382613ab9565b602082019050919050565b60006132eb602683613696565b91506132f682613ae2565b604082019050919050565b600061330e601c83613696565b915061331982613b31565b602082019050919050565b6000613331601d83613696565b915061333c82613b5a565b602082019050919050565b6000613354602083613696565b915061335f82613b83565b602082019050919050565b6000613377602f83613696565b915061338282613bac565b604082019050919050565b600061339a601583613696565b91506133a582613bfb565b602082019050919050565b6133b981613831565b82525050565b60006133cb82856131e8565b91506133d782846131e8565b91508190509392505050565b60006133ef82866131e8565b91506133fb82856131e8565b91506134078284613219565b9150819050949350505050565b60006020820190506134296000830184613158565b92915050565b60006080820190506134446000830187613158565b6134516020830186613158565b61345e60408301856133b0565b81810360608301526134708184613176565b905095945050505050565b60006020820190506134906000830184613167565b92915050565b600060208201905081810360008301526134b081846131af565b905092915050565b600060208201905081810360008301526134d181613298565b9050919050565b600060208201905081810360008301526134f1816132bb565b9050919050565b60006020820190508181036000830152613511816132de565b9050919050565b6000602082019050818103600083015261353181613301565b9050919050565b6000602082019050818103600083015261355181613324565b9050919050565b6000602082019050818103600083015261357181613347565b9050919050565b600060208201905081810360008301526135918161336a565b9050919050565b600060208201905081810360008301526135b18161338d565b9050919050565b60006020820190506135cd60008301846133b0565b92915050565b60006135dd6135ee565b90506135e982826138af565b919050565b6000604051905090565b600067ffffffffffffffff82111561361357613612613a16565b5b61361c82613a59565b9050602081019050919050565b600067ffffffffffffffff82111561364457613643613a16565b5b61364d82613a59565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136bd82613831565b91506136c883613831565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136fd576136fc61395a565b5b828201905092915050565b600061371382613831565b915061371e83613831565b92508261372e5761372d613989565b5b828204905092915050565b600061374482613831565b915061374f83613831565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137885761378761395a565b5b828202905092915050565b600061379e82613831565b91506137a983613831565b9250828210156137bc576137bb61395a565b5b828203905092915050565b60006137d282613811565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386857808201518184015260208101905061384d565b83811115613877576000848401525b50505050565b6000600282049050600182168061389557607f821691505b602082108114156138a9576138a86139b8565b5b50919050565b6138b882613a59565b810181811067ffffffffffffffff821117156138d7576138d6613a16565b5b80604052505050565b60006138eb82613831565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391e5761391d61395a565b5b600182019050919050565b600061393482613831565b915061393f83613831565b92508261394f5761394e613989565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74203131313120746f6b656e732061742061207460008201527f696d650000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742057414300600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613c2d816137c7565b8114613c3857600080fd5b50565b613c44816137d9565b8114613c4f57600080fd5b50565b613c5b816137e5565b8114613c6657600080fd5b50565b613c7281613831565b8114613c7d57600080fd5b5056fea26469706673582212204829072806971a8509c36899088730eda24d8d2a1d3ea6e82e12a87428c9a4b864736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44871:3660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24475:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27588:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29091:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45227:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28654:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23724:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29956:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45040:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47570:80;;;;;;;;;;;;;:::i;:::-;;30197:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48383:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48283:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47900:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27396:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45088:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44984:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44945:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24844:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43933:103;;;;;;;;;;;;;:::i;:::-;;45129:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45168:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43282:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27757:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45490:637;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29367:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30453:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45262:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46319:992;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48012:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47470:92;;;;;;;;;;;;;:::i;:::-;;29725:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47766:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44191:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47658:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24475:305;24577:4;24629:25;24614:40;;;:11;:40;;;;:105;;;;24686:33;24671:48;;;:11;:48;;;;24614:105;:158;;;;24736:36;24760:11;24736:23;:36::i;:::-;24614:158;24594:178;;24475:305;;;:::o;27588:100::-;27642:13;27675:5;27668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27588:100;:::o;29091:204::-;29159:7;29184:16;29192:7;29184;:16::i;:::-;29179:64;;29209:34;;;;;;;;;;;;;;29179:64;29263:15;:24;29279:7;29263:24;;;;;;;;;;;;;;;;;;;;;29256:31;;29091:204;;;:::o;45227:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28654:371::-;28727:13;28743:24;28759:7;28743:15;:24::i;:::-;28727:40;;28788:5;28782:11;;:2;:11;;;28778:48;;;28802:24;;;;;;;;;;;;;;28778:48;28859:5;28843:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28869:37;28886:5;28893:12;:10;:12::i;:::-;28869:16;:37::i;:::-;28868:38;28843:63;28839:138;;;28930:35;;;;;;;;;;;;;;28839:138;28989:28;28998:2;29002:7;29011:5;28989:8;:28::i;:::-;28716:309;28654:371;;:::o;23724:303::-;23768:7;23993:15;:13;:15::i;:::-;23978:12;;23962:13;;:28;:46;23955:53;;23724:303;:::o;29956:170::-;30090:28;30100:4;30106:2;30110:7;30090:9;:28::i;:::-;29956:170;;;:::o;45040:41::-;45077:4;45040:41;:::o;47570:80::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47633:9:::1;;;;;;;;;;;47632:10;47620:9;;:22;;;;;;;;;;;;;;;;;;47570:80::o:0;30197:185::-;30335:39;30352:4;30358:2;30362:7;30335:39;;;;;;;;;;;;:16;:39::i;:::-;30197:185;;;:::o;48383:145::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48441:15:::1;48459:21;48441:39;;48499:2;48491:20;;:29;48512:7;48491:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48430:98;48383:145:::0;:::o;48283:92::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48359:8:::1;48349:7;:18;;;;48283:92:::0;:::o;47900:104::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47985:11:::1;47975:7;:21;;;;;;;;;;;;:::i;:::-;;47900:104:::0;:::o;27396:125::-;27460:7;27487:21;27500:7;27487:12;:21::i;:::-;:26;;;27480:33;;27396:125;;;:::o;45088:34::-;;;;:::o;44984:29::-;;;;;;;;;;;;;:::o;44945:32::-;;;;;;;;;;;;;:::o;24844:206::-;24908:7;24949:1;24932:19;;:5;:19;;;24928:60;;;24960:28;;;;;;;;;;;;;;24928:60;25014:12;:19;25027:5;25014:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25006:36;;24999:43;;24844:206;;;:::o;43933:103::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43998:30:::1;44025:1;43998:18;:30::i;:::-;43933:103::o:0;45129:32::-;;;;:::o;45168:29::-;;;;:::o;43282:87::-;43328:7;43355:6;;;;;;;;;;;43348:13;;43282:87;:::o;27757:104::-;27813:13;27846:7;27839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27757:104;:::o;48171:::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48256:11:::1;48243:10;:24;;;;48171:104:::0;:::o;45490:637::-;45077:4;45591:13;45575;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;45553:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;45693:13;;;;;;;;;;;45685:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45816:10;;45799:13;45775:21;45785:10;45775:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;45753:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;45945:9;45932;;45916:13;:25;;;;:::i;:::-;:38;;45894:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46039:7;;46022:13;:24;;46014:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46099:20;46105:13;46099:5;:20::i;:::-;45490:637;:::o;29367:287::-;29478:12;:10;:12::i;:::-;29466:24;;:8;:24;;;29462:54;;;29499:17;;;;;;;;;;;;;;29462:54;29574:8;29529:18;:32;29548:12;:10;:12::i;:::-;29529:32;;;;;;;;;;;;;;;:42;29562:8;29529:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29627:8;29598:48;;29613:12;:10;:12::i;:::-;29598:48;;;29637:8;29598:48;;;;;;:::i;:::-;;;;;;;;29367:287;;:::o;30453:369::-;30620:28;30630:4;30636:2;30640:7;30620:9;:28::i;:::-;30663:15;:2;:13;;;:15::i;:::-;:76;;;;;30683:56;30714:4;30720:2;30724:7;30733:5;30683:30;:56::i;:::-;30682:57;30663:76;30659:156;;;30763:40;;;;;;;;;;;;;;30659:156;30453:369;;;;:::o;45262:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46319:992::-;46437:13;46490:16;46498:7;46490;:16::i;:::-;46468:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46611:5;46598:18;;:9;;;;;;;;;;;:18;;;46594:72;;;46640:14;46633:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46594:72;46678:23;46704:10;:19;46715:7;46704:19;;;;;;;;;;;46678:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46734:18;46755:10;:8;:10::i;:::-;46734:31;;46863:1;46847:4;46841:18;:23;46837:72;;;46888:9;46881:16;;;;;;46837:72;47039:1;47019:9;47013:23;:27;47009:108;;;47088:4;47094:9;47071:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47057:48;;;;;;47009:108;47262:4;47268:18;:7;:16;:18::i;:::-;47288:13;47245:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47218:85;;;;46319:992;;;;:::o;48012:151::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48138:17:::1;48122:13;:33;;;;;;;;;;;;:::i;:::-;;48012:151:::0;:::o;47470:92::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47541:13:::1;;;;;;;;;;;47540:14;47524:13;;:30;;;;;;;;;;;;;;;;;;47470:92::o:0;29725:164::-;29822:4;29846:18;:25;29865:5;29846:25;;;;;;;;;;;;;;;:35;29872:8;29846:35;;;;;;;;;;;;;;;;;;;;;;;;;29839:42;;29725:164;;;;:::o;47766:126::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47869:15:::1;47852:14;:32;;;;;;;;;;;;:::i;:::-;;47766:126:::0;:::o;44191:201::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44300:1:::1;44280:22;;:8;:22;;;;44272:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44356:28;44375:8;44356:18;:28::i;:::-;44191:201:::0;:::o;47658:100::-;43513:12;:10;:12::i;:::-;43502:23;;:7;:5;:7::i;:::-;:23;;;43494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47740:10:::1;47728:9;:22;;;;47658:100:::0;:::o;11349:157::-;11434:4;11473:25;11458:40;;;:11;:40;;;;11451:47;;11349:157;;;:::o;31077:174::-;31134:4;31177:7;31158:15;:13;:15::i;:::-;:26;;:53;;;;;31198:13;;31188:7;:23;31158:53;:85;;;;;31216:11;:20;31228:7;31216:20;;;;;;;;;;;:27;;;;;;;;;;;;31215:28;31158:85;31151:92;;31077:174;;;:::o;19991:98::-;20044:7;20071:10;20064:17;;19991:98;:::o;39234:196::-;39376:2;39349:15;:24;39365:7;39349:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39414:7;39410:2;39394:28;;39403:5;39394:28;;;;;;;;;;;;39234:196;;;:::o;23498:92::-;23554:7;23498:92;:::o;34177:2130::-;34292:35;34330:21;34343:7;34330:12;:21::i;:::-;34292:59;;34390:4;34368:26;;:13;:18;;;:26;;;34364:67;;34403:28;;;;;;;;;;;;;;34364:67;34444:22;34486:4;34470:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34507:36;34524:4;34530:12;:10;:12::i;:::-;34507:16;:36::i;:::-;34470:73;:126;;;;34584:12;:10;:12::i;:::-;34560:36;;:20;34572:7;34560:11;:20::i;:::-;:36;;;34470:126;34444:153;;34615:17;34610:66;;34641:35;;;;;;;;;;;;;;34610:66;34705:1;34691:16;;:2;:16;;;34687:52;;;34716:23;;;;;;;;;;;;;;34687:52;34752:43;34774:4;34780:2;34784:7;34793:1;34752:21;:43::i;:::-;34860:35;34877:1;34881:7;34890:4;34860:8;:35::i;:::-;35221:1;35191:12;:18;35204:4;35191:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35265:1;35237:12;:16;35250:2;35237:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35283:31;35317:11;:20;35329:7;35317:20;;;;;;;;;;;35283:54;;35368:2;35352:8;:13;;;:18;;;;;;;;;;;;;;;;;;35418:15;35385:8;:23;;;:49;;;;;;;;;;;;;;;;;;35686:19;35718:1;35708:7;:11;35686:33;;35734:31;35768:11;:24;35780:11;35768:24;;;;;;;;;;;35734:58;;35836:1;35811:27;;:8;:13;;;;;;;;;;;;:27;;;35807:384;;;36021:13;;36006:11;:28;36002:174;;36075:4;36059:8;:13;;;:20;;;;;;;;;;;;;;;;;;36128:13;:28;;;36102:8;:23;;;:54;;;;;;;;;;;;;;;;;;36002:174;35807:384;35166:1036;;;36238:7;36234:2;36219:27;;36228:4;36219:27;;;;;;;;;;;;36257:42;36278:4;36284:2;36288:7;36297:1;36257:20;:42::i;:::-;34281:2026;;34177:2130;;;:::o;26225:1109::-;26287:21;;:::i;:::-;26321:12;26336:7;26321:22;;26404:4;26385:15;:13;:15::i;:::-;:23;;:47;;;;;26419:13;;26412:4;:20;26385:47;26381:886;;;26453:31;26487:11;:17;26499:4;26487:17;;;;;;;;;;;26453:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26528:9;:16;;;26523:729;;26599:1;26573:28;;:9;:14;;;:28;;;26569:101;;26637:9;26630:16;;;;;;26569:101;26972:261;26979:4;26972:261;;;27012:6;;;;;;;;27057:11;:17;27069:4;27057:17;;;;;;;;;;;27045:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27131:1;27105:28;;:9;:14;;;:28;;;27101:109;;27173:9;27166:16;;;;;;27101:109;26972:261;;;26523:729;26434:833;26381:886;27295:31;;;;;;;;;;;;;;26225:1109;;;;:::o;44552:191::-;44626:16;44645:6;;;;;;;;;;;44626:25;;44671:8;44662:6;;:17;;;;;;;;;;;;;;;;;;44726:8;44695:40;;44716:8;44695:40;;;;;;;;;;;;44615:128;44552:191;:::o;46135:176::-;45077:4;46213:13;46197;:11;:13::i;:::-;:29;;;;:::i;:::-;:42;46193:111;;;46256:36;46266:10;46278:13;46256:9;:36::i;:::-;46193:111;46135:176;:::o;1266:326::-;1326:4;1583:1;1561:7;:19;;;:23;1554:30;;1266:326;;;:::o;39922:667::-;40085:4;40122:2;40106:36;;;40143:12;:10;:12::i;:::-;40157:4;40163:7;40172:5;40106:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40102:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40357:1;40340:6;:13;:18;40336:235;;;40386:40;;;;;;;;;;;;;;40336:235;40529:6;40523:13;40514:6;40510:2;40506:15;40499:38;40102:480;40235:45;;;40225:55;;;:6;:55;;;;40218:62;;;39922:667;;;;;;:::o;47336:108::-;47396:13;47429:7;47422:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47336:108;:::o;17553:723::-;17609:13;17839:1;17830:5;:10;17826:53;;;17857:10;;;;;;;;;;;;;;;;;;;;;17826:53;17889:12;17904:5;17889:20;;17920:14;17945:78;17960:1;17952:4;:9;17945:78;;17978:8;;;;;:::i;:::-;;;;18009:2;18001:10;;;;;:::i;:::-;;;17945:78;;;18033:19;18065:6;18055:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18033:39;;18083:154;18099:1;18090:5;:10;18083:154;;18127:1;18117:11;;;;;:::i;:::-;;;18194:2;18186:5;:10;;;;:::i;:::-;18173:2;:24;;;;:::i;:::-;18160:39;;18143:6;18150;18143:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18223:2;18214:11;;;;;:::i;:::-;;;18083:154;;;18261:6;18247:21;;;;;17553:723;;;;:::o;41237:159::-;;;;;:::o;42055:158::-;;;;;:::o;31259:104::-;31328:27;31338:2;31342:8;31328:27;;;;;;;;;;;;:9;:27::i;:::-;31259:104;;:::o;31726:163::-;31849:32;31855:2;31859:8;31869:5;31876:4;31849:5;:32::i;:::-;31726:163;;;:::o;32148:1775::-;32287:20;32310:13;;32287:36;;32352:1;32338:16;;:2;:16;;;32334:48;;;32363:19;;;;;;;;;;;;;;32334:48;32409:1;32397:8;:13;32393:44;;;32419:18;;;;;;;;;;;;;;32393:44;32450:61;32480:1;32484:2;32488:12;32502:8;32450:21;:61::i;:::-;32823:8;32788:12;:16;32801:2;32788:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32887:8;32847:12;:16;32860:2;32847:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32946:2;32913:11;:25;32925:12;32913:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33013:15;32963:11;:25;32975:12;32963:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33046:20;33069:12;33046:35;;33096:11;33125:8;33110:12;:23;33096:37;;33154:4;:23;;;;;33162:15;:2;:13;;;:15::i;:::-;33154:23;33150:641;;;33198:314;33254:12;33250:2;33229:38;;33246:1;33229:38;;;;;;;;;;;;33295:69;33334:1;33338:2;33342:14;;;;;;33358:5;33295:30;:69::i;:::-;33290:174;;33400:40;;;;;;;;;;;;;;33290:174;33507:3;33491:12;:19;;33198:314;;33593:12;33576:13;;:29;33572:43;;33607:8;;;33572:43;33150:641;;;33656:120;33712:14;;;;;;33708:2;33687:40;;33704:1;33687:40;;;;;;;;;;;;33771:3;33755:12;:19;;33656:120;;33150:641;33821:12;33805:13;:28;;;;32763:1082;;33855:60;33884:1;33888:2;33892:12;33906:8;33855:20;:60::i;:::-;32276:1647;32148:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:118::-;12454:24;12472:5;12454:24;:::i;:::-;12449:3;12442:37;12367:118;;:::o;12491:435::-;12671:3;12693:95;12784:3;12775:6;12693:95;:::i;:::-;12686:102;;12805:95;12896:3;12887:6;12805:95;:::i;:::-;12798:102;;12917:3;12910:10;;12491:435;;;;;:::o;12932:589::-;13157:3;13179:95;13270:3;13261:6;13179:95;:::i;:::-;13172:102;;13291:95;13382:3;13373:6;13291:95;:::i;:::-;13284:102;;13403:92;13491:3;13482:6;13403:92;:::i;:::-;13396:99;;13512:3;13505:10;;12932:589;;;;;;:::o;13527:222::-;13620:4;13658:2;13647:9;13643:18;13635:26;;13671:71;13739:1;13728:9;13724:17;13715:6;13671:71;:::i;:::-;13527:222;;;;:::o;13755:640::-;13950:4;13988:3;13977:9;13973:19;13965:27;;14002:71;14070:1;14059:9;14055:17;14046:6;14002:71;:::i;:::-;14083:72;14151:2;14140:9;14136:18;14127:6;14083:72;:::i;:::-;14165;14233:2;14222:9;14218:18;14209:6;14165:72;:::i;:::-;14284:9;14278:4;14274:20;14269:2;14258:9;14254:18;14247:48;14312:76;14383:4;14374:6;14312:76;:::i;:::-;14304:84;;13755:640;;;;;;;:::o;14401:210::-;14488:4;14526:2;14515:9;14511:18;14503:26;;14539:65;14601:1;14590:9;14586:17;14577:6;14539:65;:::i;:::-;14401:210;;;;:::o;14617:313::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:78;14918:4;14909:6;14845:78;:::i;:::-;14837:86;;14617:313;;;;:::o;14936:419::-;15102:4;15140:2;15129:9;15125:18;15117:26;;15189:9;15183:4;15179:20;15175:1;15164:9;15160:17;15153:47;15217:131;15343:4;15217:131;:::i;:::-;15209:139;;14936:419;;;:::o;15361:::-;15527:4;15565:2;15554:9;15550:18;15542:26;;15614:9;15608:4;15604:20;15600:1;15589:9;15585:17;15578:47;15642:131;15768:4;15642:131;:::i;:::-;15634:139;;15361:419;;;:::o;15786:::-;15952:4;15990:2;15979:9;15975:18;15967:26;;16039:9;16033:4;16029:20;16025:1;16014:9;16010:17;16003:47;16067:131;16193:4;16067:131;:::i;:::-;16059:139;;15786:419;;;:::o;16211:::-;16377:4;16415:2;16404:9;16400:18;16392:26;;16464:9;16458:4;16454:20;16450:1;16439:9;16435:17;16428:47;16492:131;16618:4;16492:131;:::i;:::-;16484:139;;16211:419;;;:::o;16636:::-;16802:4;16840:2;16829:9;16825:18;16817:26;;16889:9;16883:4;16879:20;16875:1;16864:9;16860:17;16853:47;16917:131;17043:4;16917:131;:::i;:::-;16909:139;;16636:419;;;:::o;17061:::-;17227:4;17265:2;17254:9;17250:18;17242:26;;17314:9;17308:4;17304:20;17300:1;17289:9;17285:17;17278:47;17342:131;17468:4;17342:131;:::i;:::-;17334:139;;17061:419;;;:::o;17486:::-;17652:4;17690:2;17679:9;17675:18;17667:26;;17739:9;17733:4;17729:20;17725:1;17714:9;17710:17;17703:47;17767:131;17893:4;17767:131;:::i;:::-;17759:139;;17486:419;;;:::o;17911:::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:222::-;18429:4;18467:2;18456:9;18452:18;18444:26;;18480:71;18548:1;18537:9;18533:17;18524:6;18480:71;:::i;:::-;18336:222;;;;:::o;18564:129::-;18598:6;18625:20;;:::i;:::-;18615:30;;18654:33;18682:4;18674:6;18654:33;:::i;:::-;18564:129;;;:::o;18699:75::-;18732:6;18765:2;18759:9;18749:19;;18699:75;:::o;18780:307::-;18841:4;18931:18;18923:6;18920:30;18917:56;;;18953:18;;:::i;:::-;18917:56;18991:29;19013:6;18991:29;:::i;:::-;18983:37;;19075:4;19069;19065:15;19057:23;;18780:307;;;:::o;19093:308::-;19155:4;19245:18;19237:6;19234:30;19231:56;;;19267:18;;:::i;:::-;19231:56;19305:29;19327:6;19305:29;:::i;:::-;19297:37;;19389:4;19383;19379:15;19371:23;;19093:308;;;:::o;19407:141::-;19456:4;19479:3;19471:11;;19502:3;19499:1;19492:14;19536:4;19533:1;19523:18;19515:26;;19407:141;;;:::o;19554:98::-;19605:6;19639:5;19633:12;19623:22;;19554:98;;;:::o;19658:99::-;19710:6;19744:5;19738:12;19728:22;;19658:99;;;:::o;19763:168::-;19846:11;19880:6;19875:3;19868:19;19920:4;19915:3;19911:14;19896:29;;19763:168;;;;:::o;19937:169::-;20021:11;20055:6;20050:3;20043:19;20095:4;20090:3;20086:14;20071:29;;19937:169;;;;:::o;20112:148::-;20214:11;20251:3;20236:18;;20112:148;;;;:::o;20266:305::-;20306:3;20325:20;20343:1;20325:20;:::i;:::-;20320:25;;20359:20;20377:1;20359:20;:::i;:::-;20354:25;;20513:1;20445:66;20441:74;20438:1;20435:81;20432:107;;;20519:18;;:::i;:::-;20432:107;20563:1;20560;20556:9;20549:16;;20266:305;;;;:::o;20577:185::-;20617:1;20634:20;20652:1;20634:20;:::i;:::-;20629:25;;20668:20;20686:1;20668:20;:::i;:::-;20663:25;;20707:1;20697:35;;20712:18;;:::i;:::-;20697:35;20754:1;20751;20747:9;20742:14;;20577:185;;;;:::o;20768:348::-;20808:7;20831:20;20849:1;20831:20;:::i;:::-;20826:25;;20865:20;20883:1;20865:20;:::i;:::-;20860:25;;21053:1;20985:66;20981:74;20978:1;20975:81;20970:1;20963:9;20956:17;20952:105;20949:131;;;21060:18;;:::i;:::-;20949:131;21108:1;21105;21101:9;21090:20;;20768:348;;;;:::o;21122:191::-;21162:4;21182:20;21200:1;21182:20;:::i;:::-;21177:25;;21216:20;21234:1;21216:20;:::i;:::-;21211:25;;21255:1;21252;21249:8;21246:34;;;21260:18;;:::i;:::-;21246:34;21305:1;21302;21298:9;21290:17;;21122:191;;;;:::o;21319:96::-;21356:7;21385:24;21403:5;21385:24;:::i;:::-;21374:35;;21319:96;;;:::o;21421:90::-;21455:7;21498:5;21491:13;21484:21;21473:32;;21421:90;;;:::o;21517:149::-;21553:7;21593:66;21586:5;21582:78;21571:89;;21517:149;;;:::o;21672:126::-;21709:7;21749:42;21742:5;21738:54;21727:65;;21672:126;;;:::o;21804:77::-;21841:7;21870:5;21859:16;;21804:77;;;:::o;21887:154::-;21971:6;21966:3;21961;21948:30;22033:1;22024:6;22019:3;22015:16;22008:27;21887:154;;;:::o;22047:307::-;22115:1;22125:113;22139:6;22136:1;22133:13;22125:113;;;22224:1;22219:3;22215:11;22209:18;22205:1;22200:3;22196:11;22189:39;22161:2;22158:1;22154:10;22149:15;;22125:113;;;22256:6;22253:1;22250:13;22247:101;;;22336:1;22327:6;22322:3;22318:16;22311:27;22247:101;22096:258;22047:307;;;:::o;22360:320::-;22404:6;22441:1;22435:4;22431:12;22421:22;;22488:1;22482:4;22478:12;22509:18;22499:81;;22565:4;22557:6;22553:17;22543:27;;22499:81;22627:2;22619:6;22616:14;22596:18;22593:38;22590:84;;;22646:18;;:::i;:::-;22590:84;22411:269;22360:320;;;:::o;22686:281::-;22769:27;22791:4;22769:27;:::i;:::-;22761:6;22757:40;22899:6;22887:10;22884:22;22863:18;22851:10;22848:34;22845:62;22842:88;;;22910:18;;:::i;:::-;22842:88;22950:10;22946:2;22939:22;22729:238;22686:281;;:::o;22973:233::-;23012:3;23035:24;23053:5;23035:24;:::i;:::-;23026:33;;23081:66;23074:5;23071:77;23068:103;;;23151:18;;:::i;:::-;23068:103;23198:1;23191:5;23187:13;23180:20;;22973:233;;;:::o;23212:176::-;23244:1;23261:20;23279:1;23261:20;:::i;:::-;23256:25;;23295:20;23313:1;23295:20;:::i;:::-;23290:25;;23334:1;23324:35;;23339:18;;:::i;:::-;23324:35;23380:1;23377;23373:9;23368:14;;23212:176;;;;:::o;23394:180::-;23442:77;23439:1;23432:88;23539:4;23536:1;23529:15;23563:4;23560:1;23553:15;23580:180;23628:77;23625:1;23618:88;23725:4;23722:1;23715:15;23749:4;23746:1;23739:15;23766:180;23814:77;23811:1;23804:88;23911:4;23908:1;23901:15;23935:4;23932:1;23925:15;23952:180;24000:77;23997:1;23990:88;24097:4;24094:1;24087:15;24121:4;24118:1;24111:15;24138:180;24186:77;24183:1;24176:88;24283:4;24280:1;24273:15;24307:4;24304:1;24297:15;24324:117;24433:1;24430;24423:12;24447:117;24556:1;24553;24546:12;24570:117;24679:1;24676;24669:12;24693:117;24802:1;24799;24792:12;24816:102;24857:6;24908:2;24904:7;24899:2;24892:5;24888:14;24884:28;24874:38;;24816:102;;;:::o;24924:222::-;25064:34;25060:1;25052:6;25048:14;25041:58;25133:5;25128:2;25120:6;25116:15;25109:30;24924:222;:::o;25152:181::-;25292:33;25288:1;25280:6;25276:14;25269:57;25152:181;:::o;25339:225::-;25479:34;25475:1;25467:6;25463:14;25456:58;25548:8;25543:2;25535:6;25531:15;25524:33;25339:225;:::o;25570:178::-;25710:30;25706:1;25698:6;25694:14;25687:54;25570:178;:::o;25754:179::-;25894:31;25890:1;25882:6;25878:14;25871:55;25754:179;:::o;25939:182::-;26079:34;26075:1;26067:6;26063:14;26056:58;25939:182;:::o;26127:234::-;26267:34;26263:1;26255:6;26251:14;26244:58;26336:17;26331:2;26323:6;26319:15;26312:42;26127:234;:::o;26367:171::-;26507:23;26503:1;26495:6;26491:14;26484:47;26367:171;:::o;26544:122::-;26617:24;26635:5;26617:24;:::i;:::-;26610:5;26607:35;26597:63;;26656:1;26653;26646:12;26597:63;26544:122;:::o;26672:116::-;26742:21;26757:5;26742:21;:::i;:::-;26735:5;26732:32;26722:60;;26778:1;26775;26768:12;26722:60;26672:116;:::o;26794:120::-;26866:23;26883:5;26866:23;:::i;:::-;26859:5;26856:34;26846:62;;26904:1;26901;26894:12;26846:62;26794:120;:::o;26920:122::-;26993:24;27011:5;26993:24;:::i;:::-;26986:5;26983:35;26973:63;;27032:1;27029;27022:12;26973:63;26920:122;:::o

Swarm Source

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