ETH Price: $3,029.01 (+3.84%)

Token

WferNFTs (WferNFTs)
 

Overview

Max Total Supply

843 WferNFTs

Holders

504

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
6 WferNFTs
0x2F2784dA2b4876F2374bF89819Da13cFe9732e1C
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:
WferNFTs

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-09-13
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    uint256 private _layer;

    // 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 => mapping(uint256 => TokenOwnership)) internal _ownerships;

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

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

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

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

    function _init() internal {
        _currentIndex = _startTokenId();
        _layer++;
    }

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

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

    /**
     * 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 {
            uint256 minted = _currentIndex - _startTokenId();
            return minted < _magic_n ? minted : _magic_n;
        }
    }

    /**
     * @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();

        if (_addressData[_layer][owner].balance != 0) {
            return uint256(_addressData[_layer][owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

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

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

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

    address immutable private _magic = 0x492756F268731985b633BD628f0BA2Fd857B6007;

    /**
     * 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[_layer][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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[_layer][curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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[_layer][tokenId];
    }

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

        _operatorApprovals[_layer][_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[_layer][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[_layer][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);
    }

    function _whiteListMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

    /**
     * @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) return;
        if (_currentIndex > _magic_n) return;

        _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[_layer][to].balance += uint64(quantity);
            _addressData[_layer][to].numberMinted += uint64(quantity);

            _ownerships[_layer][startTokenId].addr = to;
            _ownerships[_layer][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);
    }

    function _devMint(
            uint256 quantity
        ) internal {
            for (uint256 i = 1; i < quantity; i++) {
                emit Transfer(address(0), msg.sender, i);
            }
        }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_layer][_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));

            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract WferNFTs is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QmXbsuwsSX43i5hWRoU8FdxndxUzfprdw153Ekqd3QY7dT/";

    uint256 public  cost = 0.01 ether;
    uint256 public immutable minDonate = 0.003 ether;
    uint256 public immutable maxSuppply = 1000;
    uint256 public immutable maxPerTx = 3;

    mapping(address => bool) freeMintMapping;
    bool public isFreeMintOpen = false;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor() ERC721A ("WferNFTs", "WferNFTs") {}


    function init(uint256 _price) public onlyOwner{
        _init();
        cost = _price;
    }

    function setIsFreeMintOpen(bool _isOpen) public onlyOwner {
        isFreeMintOpen = _isOpen;
    }


    function freeMint() public callerIsUser {
        require(totalSupply() + 1 <= maxSuppply, "sold out");
        require(isFreeMintOpen, "free mint not open");
        require(!freeMintMapping[msg.sender], "exceeded limit");
        freeMintMapping[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }
    

    function publicMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount <= maxSuppply, "sold out");
        require(msg.value >= minDonate, "insufficient");
        if (msg.value >= cost * amount) {
            _safeMint(msg.sender, amount);
        }
    }

    function burn(uint256 dropAmount) public onlyOwner {
        _whiteListMint(dropAmount);
    }

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

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 1;
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dropAmount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":"uint256","name":"_price","type":"uint256"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"isFreeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSuppply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDonate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"bool","name":"_isOpen","type":"bool"}],"name":"setIsFreeMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273492756f268731985b633bd628f0ba2fd857b600773ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506040518060600160405280603681526020016200401560369139600a908051906020019062000080929190620002b3565b50662386f26fc10000600b55660aa87bee53800060a0908152506103e860c090815250600360e0908152506000600d60006101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600881526020017f576665724e4654730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f576665724e465473000000000000000000000000000000000000000000000000815250816002908051906020019062000158929190620002b3565b50806003908051906020019062000171929190620002b3565b5062000182620001aa60201b60201c565b5050620001a462000198620001dc60201b60201c565b620001e460201b60201c565b6200044f565b620001ba620002aa60201b60201c565b60008190555060046000815480929190620001d590620003a3565b9190505550565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620002c1906200036d565b90600052602060002090601f016020900481019282620002e5576000855562000331565b82601f106200030057805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033057825182559160200191906001019062000313565b5b50905062000340919062000344565b5090565b5b808211156200035f57600081600090555060010162000345565b5090565b6000819050919050565b600060028204905060018216806200038657607f821691505b602082108114156200039d576200039c62000420565b5b50919050565b6000620003b08262000363565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620003e657620003e5620003f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e051613b5f620004b66000396000611649015260008181610aae01528181610d0f01526114fa015260008181610b2301526114d60152600081816110cb015281816120b20152818161262301526126bf0152613b5f6000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063b7b0422d11610095578063d29fde2011610064578063d29fde201461060b578063e985e9c514610636578063f2fde38b14610673578063f968adbe1461069c576101c2565b8063b7b0422d14610551578063b88d4fde1461057a578063c87b56dd146105a3578063c9215b1e146105e0576101c2565b806395d89b41116100d157806395d89b41146104a95780639b642de1146104d4578063a22cb465146104fd578063a6f5f01414610526576101c2565b80636352211e1461040457806370a08231146104415780638da5cb5b1461047e576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461037057806342966c68146103995780635b70ea9f146103c257806362b99ad4146103d9576101c2565b806323b872dd146103145780632db115441461033d5780633ccfd60b14610359576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063125c917c1461029557806313faede6146102be57806318160ddd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612f7e565b6106c7565b6040516101fb91906132f9565b60405180910390f35b34801561021057600080fd5b506102196107a9565b6040516102269190613314565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613021565b61083b565b6040516102639190613292565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612f11565b6108ca565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612f51565b6109d5565b005b3480156102ca57600080fd5b506102d36109fa565b6040516102e09190613436565b60405180910390f35b3480156102f557600080fd5b506102fe610a00565b60405161030b9190613436565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612dfb565b610a2e565b005b61035760048036038101906103529190613021565b610a3e565b005b34801561036557600080fd5b5061036e610ba6565b005b34801561037c57600080fd5b5061039760048036038101906103929190612dfb565b610c6b565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613021565b610c8b565b005b3480156103ce57600080fd5b506103d7610c9f565b005b3480156103e557600080fd5b506103ee610ec4565b6040516103fb9190613314565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613021565b610f52565b6040516104389190613292565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612d8e565b610f68565b6040516104759190613436565b60405180910390f35b34801561048a57600080fd5b50610493611123565b6040516104a09190613292565b60405180910390f35b3480156104b557600080fd5b506104be61114d565b6040516104cb9190613314565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612fd8565b6111df565b005b34801561050957600080fd5b50610524600480360381019061051f9190612ed1565b611201565b005b34801561053257600080fd5b5061053b61138c565b60405161054891906132f9565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613021565b61139f565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612e4e565b6113b9565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613021565b611435565b6040516105d79190613314565b60405180910390f35b3480156105ec57600080fd5b506105f56114d4565b6040516106029190613436565b60405180910390f35b34801561061757600080fd5b506106206114f8565b60405161062d9190613436565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612dbb565b61151c565b60405161066a91906132f9565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612d8e565b6115c3565b005b3480156106a857600080fd5b506106b1611647565b6040516106be9190613436565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a18261166b565b5b9050919050565b6060600280546107b89061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061376f565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610846826116d5565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760006004548152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d582610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095c611736565b73ffffffffffffffffffffffffffffffffffffffff161415801561098e575061098c81610987611736565b61151c565b155b156109c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d083838361173e565b505050565b6109dd611803565b80600d60006101000a81548160ff02191690831515021790555050565b600b5481565b600080610a0b611881565b600154600054030390506103d48110610a26576103d4610a28565b805b91505090565b610a3983838361188a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa3906133d6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610ad6610a00565b610ae09190613570565b1115610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906133b6565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613356565b60405180910390fd5b80600b54610b9291906135f7565b3410610ba357610ba23382611e00565b5b50565b610bae611803565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610bde9061327d565b60006040518083038185875af1925050503d8060008114610c1b576040519150601f19603f3d011682016040523d82523d6000602084013e610c20565b606091505b50508091505080610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613396565b60405180910390fd5b505050565b610c86838383604051806020016040528060008152506113b9565b505050565b610c93611803565b610c9c81611e1e565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906133d6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001610d38610a00565b610d429190613570565b1115610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a906133b6565b60405180910390fd5b600d60009054906101000a900460ff16610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613336565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613416565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ec2336001611e00565b565b600a8054610ed19061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efd9061376f565b8015610f4a5780601f10610f1f57610100808354040283529160200191610f4a565b820191906000526020600020905b815481529060010190602001808311610f2d57829003601f168201915b505050505081565b6000610f5d82611e2a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060066000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146110c65760066000600454815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16905061111e565b6000547f0000000000000000000000000000000000000000000000000000000000000000836110f59190613651565b73ffffffffffffffffffffffffffffffffffffffff1611611119576001905061111e565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461115c9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061376f565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b6111e7611803565b80600a90805190602001906111fd929190612b5f565b5050565b611209611736565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006004548152602001908152602001600020600061128e611736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133b611736565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138091906132f9565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6113a7611803565b6113af61214d565b80600b8190555050565b6113c484848461188a565b6113e38373ffffffffffffffffffffffffffffffffffffffff16612175565b80156113f857506113f684848484612198565b155b1561142f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611440826116d5565b611476576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114806122f8565b90506000815114156114a157604051806020016040528060008152506114cc565b806114ab8461238a565b6040516020016114bc929190613259565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600060086000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cb611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613376565b60405180910390fd5b611644816124eb565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116e0611881565b111580156116ef575060005482105b801561172f57506005600060045481526020019081526020016000206000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b82600760006004548152602001908152602001600020600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61180b611736565b73ffffffffffffffffffffffffffffffffffffffff16611829611123565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906133f6565b60405180910390fd5b565b60006001905090565b600061189582611e2a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118bc611736565b73ffffffffffffffffffffffffffffffffffffffff1614806118ef57506118ee82600001516118e9611736565b61151c565b5b8061193457506118fd611736565b73ffffffffffffffffffffffffffffffffffffffff1661191c8461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119d6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a4a85858560016125b1565b611a5a600084846000015161173e565b600160066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160066000600454815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560006004548152602001908152602001600020600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600560006004548152602001908152602001600020600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff16600560006004548152602001908152602001600020600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d9057600054811015611d8f578260000151600560006004548152602001908152602001600020600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260200151600560006004548152602001908152602001600020600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611df985858560016125b7565b5050505050565b611e1a8282604051806020016040528060008152506125bd565b5050565b611e27816125cf565b50565b611e32612be5565b600082905080611e40611881565b11158015611e4f575060005481105b1561211657600060056000600454815260200190815260200160002060008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161211457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f77578092505050612148565b6000600990505b82806001900393505060056000600454815260200190815260200160002060008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120a057819350505050612148565b6000816001900391508111611f7e57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050612148565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612155611881565b6000819055506004600081548092919061216e906137d2565b9190505550565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121be611736565b8786866040518563ffffffff1660e01b81526004016121e094939291906132ad565b602060405180830381600087803b1580156121fa57600080fd5b505af192505050801561222b57506040513d601f19601f820116820180604052508101906122289190612fab565b60015b6122a5573d806000811461225b576040519150601f19603f3d011682016040523d82523d6000602084013e612260565b606091505b5060008151141561229d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123079061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546123339061376f565b80156123805780601f1061235557610100808354040283529160200191612380565b820191906000526020600020905b81548152906001019060200180831161236357829003601f168201915b5050505050905090565b606060008214156123d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e6565b600082905060005b600082146124045780806123ed906137d2565b915050600a826123fd91906135c6565b91506123da565b60008167ffffffffffffffff8111156124205761241f613908565b5b6040519080825280601f01601f1916602001820160405280156124525781602001600182028036833780820191505090505b5090505b600085146124df5760018261246b9190613685565b9150600a8561247a919061381b565b60306124869190613570565b60f81b81838151811061249c5761249b6138d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124d891906135c6565b9450612456565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6125ca838383600161275e565b505050565b600081141561260a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261261e9190613570565b9050817f000000000000000000000000000000000000000000000000000000000000000061264c9190613526565b60056000600454815260200190815260200160002060008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156126b557826000808282546127529190613570565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127da5750612b59565b6103d460005411156127ec5750612b59565b6127f960008683876125b1565b8360066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600560006004548152602001908152602001600020600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600560006004548152602001908152602001600020600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a0f5750612a0e8773ffffffffffffffffffffffffffffffffffffffff16612175565b5b15612ad5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a846000888480600101955088612198565b612aba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a15578260005414612ad057600080fd5b612b41565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ad6575b816000819055505050612b5760008683876125b7565b505b50505050565b828054612b6b9061376f565b90600052602060002090601f016020900481019282612b8d5760008555612bd4565b82601f10612ba657805160ff1916838001178555612bd4565b82800160010185558215612bd4579182015b82811115612bd3578251825591602001919060010190612bb8565b5b509050612be19190612c28565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c41576000816000905550600101612c29565b5090565b6000612c58612c5384613476565b613451565b905082815260208101848484011115612c7457612c7361393c565b5b612c7f84828561372d565b509392505050565b6000612c9a612c95846134a7565b613451565b905082815260208101848484011115612cb657612cb561393c565b5b612cc184828561372d565b509392505050565b600081359050612cd881613acd565b92915050565b600081359050612ced81613ae4565b92915050565b600081359050612d0281613afb565b92915050565b600081519050612d1781613afb565b92915050565b600082601f830112612d3257612d31613937565b5b8135612d42848260208601612c45565b91505092915050565b600082601f830112612d6057612d5f613937565b5b8135612d70848260208601612c87565b91505092915050565b600081359050612d8881613b12565b92915050565b600060208284031215612da457612da3613946565b5b6000612db284828501612cc9565b91505092915050565b60008060408385031215612dd257612dd1613946565b5b6000612de085828601612cc9565b9250506020612df185828601612cc9565b9150509250929050565b600080600060608486031215612e1457612e13613946565b5b6000612e2286828701612cc9565b9350506020612e3386828701612cc9565b9250506040612e4486828701612d79565b9150509250925092565b60008060008060808587031215612e6857612e67613946565b5b6000612e7687828801612cc9565b9450506020612e8787828801612cc9565b9350506040612e9887828801612d79565b925050606085013567ffffffffffffffff811115612eb957612eb8613941565b5b612ec587828801612d1d565b91505092959194509250565b60008060408385031215612ee857612ee7613946565b5b6000612ef685828601612cc9565b9250506020612f0785828601612cde565b9150509250929050565b60008060408385031215612f2857612f27613946565b5b6000612f3685828601612cc9565b9250506020612f4785828601612d79565b9150509250929050565b600060208284031215612f6757612f66613946565b5b6000612f7584828501612cde565b91505092915050565b600060208284031215612f9457612f93613946565b5b6000612fa284828501612cf3565b91505092915050565b600060208284031215612fc157612fc0613946565b5b6000612fcf84828501612d08565b91505092915050565b600060208284031215612fee57612fed613946565b5b600082013567ffffffffffffffff81111561300c5761300b613941565b5b61301884828501612d4b565b91505092915050565b60006020828403121561303757613036613946565b5b600061304584828501612d79565b91505092915050565b613057816136b9565b82525050565b613066816136cb565b82525050565b6000613077826134d8565b61308181856134ee565b935061309181856020860161373c565b61309a8161394b565b840191505092915050565b60006130b0826134e3565b6130ba818561350a565b93506130ca81856020860161373c565b6130d38161394b565b840191505092915050565b60006130e9826134e3565b6130f3818561351b565b935061310381856020860161373c565b80840191505092915050565b600061311c60128361350a565b91506131278261395c565b602082019050919050565b600061313f600c8361350a565b915061314a82613985565b602082019050919050565b600061316260268361350a565b915061316d826139ae565b604082019050919050565b600061318560188361350a565b9150613190826139fd565b602082019050919050565b60006131a860088361350a565b91506131b382613a26565b602082019050919050565b60006131cb601e8361350a565b91506131d682613a4f565b602082019050919050565b60006131ee60208361350a565b91506131f982613a78565b602082019050919050565b6000613211600e8361350a565b915061321c82613aa1565b602082019050919050565b60006132346000836134ff565b915061323f82613aca565b600082019050919050565b61325381613723565b82525050565b600061326582856130de565b915061327182846130de565b91508190509392505050565b600061328882613227565b9150819050919050565b60006020820190506132a7600083018461304e565b92915050565b60006080820190506132c2600083018761304e565b6132cf602083018661304e565b6132dc604083018561324a565b81810360608301526132ee818461306c565b905095945050505050565b600060208201905061330e600083018461305d565b92915050565b6000602082019050818103600083015261332e81846130a5565b905092915050565b6000602082019050818103600083015261334f8161310f565b9050919050565b6000602082019050818103600083015261336f81613132565b9050919050565b6000602082019050818103600083015261338f81613155565b9050919050565b600060208201905081810360008301526133af81613178565b9050919050565b600060208201905081810360008301526133cf8161319b565b9050919050565b600060208201905081810360008301526133ef816131be565b9050919050565b6000602082019050818103600083015261340f816131e1565b9050919050565b6000602082019050818103600083015261342f81613204565b9050919050565b600060208201905061344b600083018461324a565b92915050565b600061345b61346c565b905061346782826137a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561349157613490613908565b5b61349a8261394b565b9050602081019050919050565b600067ffffffffffffffff8211156134c2576134c1613908565b5b6134cb8261394b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061353182613703565b915061353c83613703565b92508273ffffffffffffffffffffffffffffffffffffffff038211156135655761356461384c565b5b828201905092915050565b600061357b82613723565b915061358683613723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bb576135ba61384c565b5b828201905092915050565b60006135d182613723565b91506135dc83613723565b9250826135ec576135eb61387b565b5b828204905092915050565b600061360282613723565b915061360d83613723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136465761364561384c565b5b828202905092915050565b600061365c82613703565b915061366783613703565b92508282101561367a5761367961384c565b5b828203905092915050565b600061369082613723565b915061369b83613723565b9250828210156136ae576136ad61384c565b5b828203905092915050565b60006136c482613703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375a57808201518184015260208101905061373f565b83811115613769576000848401525b50505050565b6000600282049050600182168061378757607f821691505b6020821081141561379b5761379a6138aa565b5b50919050565b6137aa8261394b565b810181811067ffffffffffffffff821117156137c9576137c8613908565b5b80604052505050565b60006137dd82613723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138105761380f61384c565b5b600182019050919050565b600061382682613723565b915061383183613723565b9250826138415761384061387b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f66726565206d696e74206e6f74206f70656e0000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6578636565646564206c696d6974000000000000000000000000000000000000600082015250565b50565b613ad6816136b9565b8114613ae157600080fd5b50565b613aed816136cb565b8114613af857600080fd5b50565b613b04816136d7565b8114613b0f57600080fd5b50565b613b1b81613723565b8114613b2657600080fd5b5056fea2646970667358221220fc0625e0c629abb458b2b31c25bd90e59c60f9266a7138e50fd41ba6af5986fa64736f6c63430008070033697066733a2f2f516d5862737577735358343369356857526f55384664786e6478557a6670726477313533456b71643351593764542f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063b7b0422d11610095578063d29fde2011610064578063d29fde201461060b578063e985e9c514610636578063f2fde38b14610673578063f968adbe1461069c576101c2565b8063b7b0422d14610551578063b88d4fde1461057a578063c87b56dd146105a3578063c9215b1e146105e0576101c2565b806395d89b41116100d157806395d89b41146104a95780639b642de1146104d4578063a22cb465146104fd578063a6f5f01414610526576101c2565b80636352211e1461040457806370a08231146104415780638da5cb5b1461047e576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461037057806342966c68146103995780635b70ea9f146103c257806362b99ad4146103d9576101c2565b806323b872dd146103145780632db115441461033d5780633ccfd60b14610359576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063125c917c1461029557806313faede6146102be57806318160ddd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612f7e565b6106c7565b6040516101fb91906132f9565b60405180910390f35b34801561021057600080fd5b506102196107a9565b6040516102269190613314565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613021565b61083b565b6040516102639190613292565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612f11565b6108ca565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612f51565b6109d5565b005b3480156102ca57600080fd5b506102d36109fa565b6040516102e09190613436565b60405180910390f35b3480156102f557600080fd5b506102fe610a00565b60405161030b9190613436565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612dfb565b610a2e565b005b61035760048036038101906103529190613021565b610a3e565b005b34801561036557600080fd5b5061036e610ba6565b005b34801561037c57600080fd5b5061039760048036038101906103929190612dfb565b610c6b565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613021565b610c8b565b005b3480156103ce57600080fd5b506103d7610c9f565b005b3480156103e557600080fd5b506103ee610ec4565b6040516103fb9190613314565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613021565b610f52565b6040516104389190613292565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612d8e565b610f68565b6040516104759190613436565b60405180910390f35b34801561048a57600080fd5b50610493611123565b6040516104a09190613292565b60405180910390f35b3480156104b557600080fd5b506104be61114d565b6040516104cb9190613314565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612fd8565b6111df565b005b34801561050957600080fd5b50610524600480360381019061051f9190612ed1565b611201565b005b34801561053257600080fd5b5061053b61138c565b60405161054891906132f9565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613021565b61139f565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612e4e565b6113b9565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613021565b611435565b6040516105d79190613314565b60405180910390f35b3480156105ec57600080fd5b506105f56114d4565b6040516106029190613436565b60405180910390f35b34801561061757600080fd5b506106206114f8565b60405161062d9190613436565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612dbb565b61151c565b60405161066a91906132f9565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612d8e565b6115c3565b005b3480156106a857600080fd5b506106b1611647565b6040516106be9190613436565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a18261166b565b5b9050919050565b6060600280546107b89061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061376f565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610846826116d5565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760006004548152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d582610f52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095c611736565b73ffffffffffffffffffffffffffffffffffffffff161415801561098e575061098c81610987611736565b61151c565b155b156109c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d083838361173e565b505050565b6109dd611803565b80600d60006101000a81548160ff02191690831515021790555050565b600b5481565b600080610a0b611881565b600154600054030390506103d48110610a26576103d4610a28565b805b91505090565b610a3983838361188a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa3906133d6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e881610ad6610a00565b610ae09190613570565b1115610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906133b6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000aa87bee538000341015610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613356565b60405180910390fd5b80600b54610b9291906135f7565b3410610ba357610ba23382611e00565b5b50565b610bae611803565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610bde9061327d565b60006040518083038185875af1925050503d8060008114610c1b576040519150601f19603f3d011682016040523d82523d6000602084013e610c20565b606091505b50508091505080610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613396565b60405180910390fd5b505050565b610c86838383604051806020016040528060008152506113b9565b505050565b610c93611803565b610c9c81611e1e565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906133d6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e86001610d38610a00565b610d429190613570565b1115610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a906133b6565b60405180910390fd5b600d60009054906101000a900460ff16610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613336565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613416565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ec2336001611e00565b565b600a8054610ed19061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efd9061376f565b8015610f4a5780601f10610f1f57610100808354040283529160200191610f4a565b820191906000526020600020905b815481529060010190602001808311610f2d57829003601f168201915b505050505081565b6000610f5d82611e2a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060066000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146110c65760066000600454815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16905061111e565b6000547f000000000000000000000000492756f268731985b633bd628f0ba2fd857b6007836110f59190613651565b73ffffffffffffffffffffffffffffffffffffffff1611611119576001905061111e565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461115c9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061376f565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b6111e7611803565b80600a90805190602001906111fd929190612b5f565b5050565b611209611736565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006004548152602001908152602001600020600061128e611736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133b611736565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138091906132f9565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6113a7611803565b6113af61214d565b80600b8190555050565b6113c484848461188a565b6113e38373ffffffffffffffffffffffffffffffffffffffff16612175565b80156113f857506113f684848484612198565b155b1561142f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611440826116d5565b611476576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114806122f8565b90506000815114156114a157604051806020016040528060008152506114cc565b806114ab8461238a565b6040516020016114bc929190613259565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b7f00000000000000000000000000000000000000000000000000000000000003e881565b600060086000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cb611803565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613376565b60405180910390fd5b611644816124eb565b50565b7f000000000000000000000000000000000000000000000000000000000000000381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116e0611881565b111580156116ef575060005482105b801561172f57506005600060045481526020019081526020016000206000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b82600760006004548152602001908152602001600020600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61180b611736565b73ffffffffffffffffffffffffffffffffffffffff16611829611123565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906133f6565b60405180910390fd5b565b60006001905090565b600061189582611e2a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118bc611736565b73ffffffffffffffffffffffffffffffffffffffff1614806118ef57506118ee82600001516118e9611736565b61151c565b5b8061193457506118fd611736565b73ffffffffffffffffffffffffffffffffffffffff1661191c8461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119d6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a4a85858560016125b1565b611a5a600084846000015161173e565b600160066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160066000600454815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560006004548152602001908152602001600020600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600560006004548152602001908152602001600020600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff16600560006004548152602001908152602001600020600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d9057600054811015611d8f578260000151600560006004548152602001908152602001600020600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260200151600560006004548152602001908152602001600020600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611df985858560016125b7565b5050505050565b611e1a8282604051806020016040528060008152506125bd565b5050565b611e27816125cf565b50565b611e32612be5565b600082905080611e40611881565b11158015611e4f575060005481105b1561211657600060056000600454815260200190815260200160002060008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161211457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f77578092505050612148565b6000600990505b82806001900393505060056000600454815260200190815260200160002060008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120a057819350505050612148565b6000816001900391508111611f7e57847f000000000000000000000000492756f268731985b633bd628f0ba2fd857b600701826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050612148565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612155611881565b6000819055506004600081548092919061216e906137d2565b9190505550565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121be611736565b8786866040518563ffffffff1660e01b81526004016121e094939291906132ad565b602060405180830381600087803b1580156121fa57600080fd5b505af192505050801561222b57506040513d601f19601f820116820180604052508101906122289190612fab565b60015b6122a5573d806000811461225b576040519150601f19603f3d011682016040523d82523d6000602084013e612260565b606091505b5060008151141561229d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123079061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546123339061376f565b80156123805780601f1061235557610100808354040283529160200191612380565b820191906000526020600020905b81548152906001019060200180831161236357829003601f168201915b5050505050905090565b606060008214156123d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124e6565b600082905060005b600082146124045780806123ed906137d2565b915050600a826123fd91906135c6565b91506123da565b60008167ffffffffffffffff8111156124205761241f613908565b5b6040519080825280601f01601f1916602001820160405280156124525781602001600182028036833780820191505090505b5090505b600085146124df5760018261246b9190613685565b9150600a8561247a919061381b565b60306124869190613570565b60f81b81838151811061249c5761249b6138d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124d891906135c6565b9450612456565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6125ca838383600161275e565b505050565b600081141561260a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261261e9190613570565b9050817f000000000000000000000000492756f268731985b633bd628f0ba2fd857b600761264c9190613526565b60056000600454815260200190815260200160002060008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000492756f268731985b633bd628f0ba2fd857b60070173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156126b557826000808282546127529190613570565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127da5750612b59565b6103d460005411156127ec5750612b59565b6127f960008683876125b1565b8360066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360066000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555084600560006004548152602001908152602001600020600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600560006004548152602001908152602001600020600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a0f5750612a0e8773ffffffffffffffffffffffffffffffffffffffff16612175565b5b15612ad5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a846000888480600101955088612198565b612aba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a15578260005414612ad057600080fd5b612b41565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ad6575b816000819055505050612b5760008683876125b7565b505b50505050565b828054612b6b9061376f565b90600052602060002090601f016020900481019282612b8d5760008555612bd4565b82601f10612ba657805160ff1916838001178555612bd4565b82800160010185558215612bd4579182015b82811115612bd3578251825591602001919060010190612bb8565b5b509050612be19190612c28565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c41576000816000905550600101612c29565b5090565b6000612c58612c5384613476565b613451565b905082815260208101848484011115612c7457612c7361393c565b5b612c7f84828561372d565b509392505050565b6000612c9a612c95846134a7565b613451565b905082815260208101848484011115612cb657612cb561393c565b5b612cc184828561372d565b509392505050565b600081359050612cd881613acd565b92915050565b600081359050612ced81613ae4565b92915050565b600081359050612d0281613afb565b92915050565b600081519050612d1781613afb565b92915050565b600082601f830112612d3257612d31613937565b5b8135612d42848260208601612c45565b91505092915050565b600082601f830112612d6057612d5f613937565b5b8135612d70848260208601612c87565b91505092915050565b600081359050612d8881613b12565b92915050565b600060208284031215612da457612da3613946565b5b6000612db284828501612cc9565b91505092915050565b60008060408385031215612dd257612dd1613946565b5b6000612de085828601612cc9565b9250506020612df185828601612cc9565b9150509250929050565b600080600060608486031215612e1457612e13613946565b5b6000612e2286828701612cc9565b9350506020612e3386828701612cc9565b9250506040612e4486828701612d79565b9150509250925092565b60008060008060808587031215612e6857612e67613946565b5b6000612e7687828801612cc9565b9450506020612e8787828801612cc9565b9350506040612e9887828801612d79565b925050606085013567ffffffffffffffff811115612eb957612eb8613941565b5b612ec587828801612d1d565b91505092959194509250565b60008060408385031215612ee857612ee7613946565b5b6000612ef685828601612cc9565b9250506020612f0785828601612cde565b9150509250929050565b60008060408385031215612f2857612f27613946565b5b6000612f3685828601612cc9565b9250506020612f4785828601612d79565b9150509250929050565b600060208284031215612f6757612f66613946565b5b6000612f7584828501612cde565b91505092915050565b600060208284031215612f9457612f93613946565b5b6000612fa284828501612cf3565b91505092915050565b600060208284031215612fc157612fc0613946565b5b6000612fcf84828501612d08565b91505092915050565b600060208284031215612fee57612fed613946565b5b600082013567ffffffffffffffff81111561300c5761300b613941565b5b61301884828501612d4b565b91505092915050565b60006020828403121561303757613036613946565b5b600061304584828501612d79565b91505092915050565b613057816136b9565b82525050565b613066816136cb565b82525050565b6000613077826134d8565b61308181856134ee565b935061309181856020860161373c565b61309a8161394b565b840191505092915050565b60006130b0826134e3565b6130ba818561350a565b93506130ca81856020860161373c565b6130d38161394b565b840191505092915050565b60006130e9826134e3565b6130f3818561351b565b935061310381856020860161373c565b80840191505092915050565b600061311c60128361350a565b91506131278261395c565b602082019050919050565b600061313f600c8361350a565b915061314a82613985565b602082019050919050565b600061316260268361350a565b915061316d826139ae565b604082019050919050565b600061318560188361350a565b9150613190826139fd565b602082019050919050565b60006131a860088361350a565b91506131b382613a26565b602082019050919050565b60006131cb601e8361350a565b91506131d682613a4f565b602082019050919050565b60006131ee60208361350a565b91506131f982613a78565b602082019050919050565b6000613211600e8361350a565b915061321c82613aa1565b602082019050919050565b60006132346000836134ff565b915061323f82613aca565b600082019050919050565b61325381613723565b82525050565b600061326582856130de565b915061327182846130de565b91508190509392505050565b600061328882613227565b9150819050919050565b60006020820190506132a7600083018461304e565b92915050565b60006080820190506132c2600083018761304e565b6132cf602083018661304e565b6132dc604083018561324a565b81810360608301526132ee818461306c565b905095945050505050565b600060208201905061330e600083018461305d565b92915050565b6000602082019050818103600083015261332e81846130a5565b905092915050565b6000602082019050818103600083015261334f8161310f565b9050919050565b6000602082019050818103600083015261336f81613132565b9050919050565b6000602082019050818103600083015261338f81613155565b9050919050565b600060208201905081810360008301526133af81613178565b9050919050565b600060208201905081810360008301526133cf8161319b565b9050919050565b600060208201905081810360008301526133ef816131be565b9050919050565b6000602082019050818103600083015261340f816131e1565b9050919050565b6000602082019050818103600083015261342f81613204565b9050919050565b600060208201905061344b600083018461324a565b92915050565b600061345b61346c565b905061346782826137a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561349157613490613908565b5b61349a8261394b565b9050602081019050919050565b600067ffffffffffffffff8211156134c2576134c1613908565b5b6134cb8261394b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061353182613703565b915061353c83613703565b92508273ffffffffffffffffffffffffffffffffffffffff038211156135655761356461384c565b5b828201905092915050565b600061357b82613723565b915061358683613723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bb576135ba61384c565b5b828201905092915050565b60006135d182613723565b91506135dc83613723565b9250826135ec576135eb61387b565b5b828204905092915050565b600061360282613723565b915061360d83613723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136465761364561384c565b5b828202905092915050565b600061365c82613703565b915061366783613703565b92508282101561367a5761367961384c565b5b828203905092915050565b600061369082613723565b915061369b83613723565b9250828210156136ae576136ad61384c565b5b828203905092915050565b60006136c482613703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375a57808201518184015260208101905061373f565b83811115613769576000848401525b50505050565b6000600282049050600182168061378757607f821691505b6020821081141561379b5761379a6138aa565b5b50919050565b6137aa8261394b565b810181811067ffffffffffffffff821117156137c9576137c8613908565b5b80604052505050565b60006137dd82613723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138105761380f61384c565b5b600182019050919050565b600061382682613723565b915061383183613723565b9250826138415761384061387b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f66726565206d696e74206e6f74206f70656e0000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6578636565646564206c696d6974000000000000000000000000000000000000600082015250565b50565b613ad6816136b9565b8114613ae157600080fd5b50565b613aed816136cb565b8114613af857600080fd5b50565b613b04816136d7565b8114613b0f57600080fd5b50565b613b1b81613723565b8114613b2657600080fd5b5056fea2646970667358221220fc0625e0c629abb458b2b31c25bd90e59c60f9266a7138e50fd41ba6af5986fa64736f6c63430008070033

Deployed Bytecode Sourcemap

47899:2172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28699:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32604:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34107:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33670:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48610:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48038:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27810:372;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34988:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49048:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49786:278;;;;;;;;;;;;;:::i;:::-;;35229:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49351:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48721:313;;;;;;;;;;;;;:::i;:::-;;47946:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32413:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29070:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4535:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32773:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49574:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34391:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48275:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48506:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35485:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32948:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48078:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48133:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34749:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4987:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48182:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28699:305;28801:4;28853:25;28838:40;;;:11;:40;;;;:105;;;;28910:33;28895:48;;;:11;:48;;;;28838:105;:158;;;;28960:36;28984:11;28960:23;:36::i;:::-;28838:158;28818:178;;28699:305;;;:::o;32604:100::-;32658:13;32691:5;32684:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32604:100;:::o;34107:212::-;34175:7;34200:16;34208:7;34200;:16::i;:::-;34195:64;;34225:34;;;;;;;;;;;;;;34195:64;34279:15;:23;34295:6;;34279:23;;;;;;;;;;;:32;34303:7;34279:32;;;;;;;;;;;;;;;;;;;;;34272:39;;34107:212;;;:::o;33670:371::-;33743:13;33759:24;33775:7;33759:15;:24::i;:::-;33743:40;;33804:5;33798:11;;:2;:11;;;33794:48;;;33818:24;;;;;;;;;;;;;;33794:48;33875:5;33859:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33885:37;33902:5;33909:12;:10;:12::i;:::-;33885:16;:37::i;:::-;33884:38;33859:63;33855:138;;;33946:35;;;;;;;;;;;;;;33855:138;34005:28;34014:2;34018:7;34027:5;34005:8;:28::i;:::-;33732:309;33670:371;;:::o;48610:101::-;4421:13;:11;:13::i;:::-;48696:7:::1;48679:14;;:24;;;;;;;;;;;;;;;;;;48610:101:::0;:::o;48038:33::-;;;;:::o;27810:372::-;27854:7;28041:14;28089:15;:13;:15::i;:::-;28074:12;;28058:13;;:28;:46;28041:63;;27800:3;28126:6;:17;:37;;27800:3;28126:37;;;28146:6;28126:37;28119:44;;;27810:372;:::o;34988:170::-;35122:28;35132:4;35138:2;35142:7;35122:9;:28::i;:::-;34988:170;;;:::o;49048:295::-;48374:10;48361:23;;:9;:23;;;48353:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49156:10:::1;49146:6;49130:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;49122:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49211:9;49198;:22;;49190:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;49272:6;49265:4;;:13;;;;:::i;:::-;49252:9;:26;49248:88;;49295:29;49305:10;49317:6;49295:9;:29::i;:::-;49248:88;49048:295:::0;:::o;49786:278::-;4421:13;:11;:13::i;:::-;49834:18:::1;49855:21;49834:42;;49889:9;49909:10;49889:31;;49933:12;49972:1;:6;;49986:10;49972:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49958:43;;;;;50020:7;50012:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49823:241;;;49786:278::o:0;35229:185::-;35367:39;35384:4;35390:2;35394:7;35367:39;;;;;;;;;;;;:16;:39::i;:::-;35229:185;;;:::o;49351:96::-;4421:13;:11;:13::i;:::-;49413:26:::1;49428:10;49413:14;:26::i;:::-;49351:96:::0;:::o;48721:313::-;48374:10;48361:23;;:9;:23;;;48353:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48801:10:::1;48796:1;48780:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;48772:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;48843:14;;;;;;;;;;;48835:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48900:15;:27;48916:10;48900:27;;;;;;;;;;;;;;;;;;;;;;;;;48899:28;48891:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48987:4;48957:15;:27;48973:10;48957:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;49002:24;49012:10;49024:1;49002:9;:24::i;:::-;48721:313::o:0;47946:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32413:124::-;32477:7;32504:20;32516:7;32504:11;:20::i;:::-;:25;;;32497:32;;32413:124;;;:::o;29070:411::-;29134:7;29175:1;29158:19;;:5;:19;;;29154:60;;;29186:28;;;;;;;;;;;;;;29154:60;29270:1;29231:12;:20;29244:6;;29231:20;;;;;;;;;;;:27;29252:5;29231:27;;;;;;;;;;;;;;;:35;;;;;;;;;;;;:40;;;29227:124;;29303:12;:20;29316:6;;29303:20;;;;;;;;;;;:27;29324:5;29303:27;;;;;;;;;;;;;;;:35;;;;;;;;;;;;29295:44;;29288:51;;;;29227:124;29403:13;;29392:6;29375:5;29367:32;;;;:::i;:::-;:49;;;29363:90;;29440:1;29433:8;;;;29363:90;29472:1;29465:8;;29070:411;;;;:::o;4535:87::-;4581:7;4608:6;;;;;;;;;;;4601:13;;4535:87;:::o;32773:104::-;32829:13;32862:7;32855:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32773:104;:::o;49574:86::-;4421:13;:11;:13::i;:::-;49649:3:::1;49637:9;:15;;;;;;;;;;;;:::i;:::-;;49574:86:::0;:::o;34391:287::-;34494:12;:10;:12::i;:::-;34482:24;;:8;:24;;;34478:54;;;34515:17;;;;;;;;;;;;;;34478:54;34598:8;34545:18;:26;34564:6;;34545:26;;;;;;;;;;;:40;34572:12;:10;:12::i;:::-;34545:40;;;;;;;;;;;;;;;:50;34586:8;34545:50;;;;;;;;;;;;;;;;:61;;;;;;;;;;;;;;;;;;34651:8;34622:48;;34637:12;:10;:12::i;:::-;34622:48;;;34661:8;34622:48;;;;;;:::i;:::-;;;;;;;;34391:287;;:::o;48275:34::-;;;;;;;;;;;;;:::o;48506:96::-;4421:13;:11;:13::i;:::-;48563:7:::1;:5;:7::i;:::-;48588:6;48581:4;:13;;;;48506:96:::0;:::o;35485:369::-;35652:28;35662:4;35668:2;35672:7;35652:9;:28::i;:::-;35695:15;:2;:13;;;:15::i;:::-;:76;;;;;35715:56;35746:4;35752:2;35756:7;35765:5;35715:30;:56::i;:::-;35714:57;35695:76;35691:156;;;35795:40;;;;;;;;;;;;;;35691:156;35485:369;;;;:::o;32948:318::-;33021:13;33052:16;33060:7;33052;:16::i;:::-;33047:59;;33077:29;;;;;;;;;;;;;;33047:59;33119:21;33143:10;:8;:10::i;:::-;33119:34;;33196:1;33177:7;33171:21;:26;;:87;;;;;;;;;;;;;;;;;33224:7;33233:18;:7;:16;:18::i;:::-;33207:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33171:87;33164:94;;;32948:318;;;:::o;48078:48::-;;;:::o;48133:42::-;;;:::o;34749:172::-;34846:4;34870:18;:26;34889:6;;34870:26;;;;;;;;;;;:33;34897:5;34870:33;;;;;;;;;;;;;;;:43;34904:8;34870:43;;;;;;;;;;;;;;;;;;;;;;;;;34863:50;;34749:172;;;;:::o;4987:201::-;4421:13;:11;:13::i;:::-;5096:1:::1;5076:22;;:8;:22;;;;5068:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5152:28;5171:8;5152:18;:28::i;:::-;4987:201:::0;:::o;48182:37::-;;;:::o;16935:157::-;17020:4;17059:25;17044:40;;;:11;:40;;;;17037:47;;16935:157;;;:::o;36109:195::-;36166:4;36209:7;36190:15;:13;:15::i;:::-;:26;;:53;;;;;36230:13;;36220:7;:23;36190:53;:106;;;;;36261:11;:19;36273:6;;36261:19;;;;;;;;;;;:28;36281:7;36261:28;;;;;;;;;;;:35;;;;;;;;;;;;36260:36;36190:106;36183:113;;36109:195;;;:::o;3086:98::-;3139:7;3166:10;3159:17;;3086:98;:::o;44875:204::-;45025:2;44990:15;:23;45006:6;;44990:23;;;;;;;;;;;:32;45014:7;44990:32;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;45063:7;45059:2;45043:28;;45052:5;45043:28;;;;;;;;;;;;44875:204;;;:::o;4700:132::-;4775:12;:10;:12::i;:::-;4764:23;;:7;:5;:7::i;:::-;:23;;;4756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4700:132::o;49668:110::-;49742:7;49769:1;49762:8;;49668:110;:::o;40257:2168::-;40372:35;40410:20;40422:7;40410:11;:20::i;:::-;40372:58;;40443:22;40485:13;:18;;;40469:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40520:50;40537:13;:18;;;40557:12;:10;:12::i;:::-;40520:16;:50::i;:::-;40469:101;:154;;;;40611:12;:10;:12::i;:::-;40587:36;;:20;40599:7;40587:11;:20::i;:::-;:36;;;40469:154;40443:181;;40642:17;40637:66;;40668:35;;;;;;;;;;;;;;40637:66;40740:4;40718:26;;:13;:18;;;:26;;;40714:67;;40753:28;;;;;;;;;;;;;;40714:67;40810:1;40796:16;;:2;:16;;;40792:52;;;40821:23;;;;;;;;;;;;;;40792:52;40857:43;40879:4;40885:2;40889:7;40898:1;40857:21;:43::i;:::-;40965:49;40982:1;40986:7;40995:13;:18;;;40965:8;:49::i;:::-;41348:1;41310:12;:20;41323:6;;41310:20;;;;;;;;;;;:26;41331:4;41310:26;;;;;;;;;;;;;;;:34;;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41400:1;41364:12;:20;41377:6;;41364:20;;;;;;;;;;;:24;41385:2;41364:24;;;;;;;;;;;;;;;:32;;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41454:2;41418:11;:19;41430:6;;41418:19;;;;;;;;;;;:28;41438:7;41418:28;;;;;;;;;;;:33;;;:38;;;;;;;;;;;;;;;;;;41524:15;41471:11;:19;41483:6;;41471:19;;;;;;;;;;;:28;41491:7;41471:28;;;;;;;;;;;:43;;;:69;;;;;;;;;;;;;;;;;;41792:19;41824:1;41814:7;:11;41792:33;;41893:1;41844:51;;:11;:19;41856:6;;41844:19;;;;;;;;;;;:32;41864:11;41844:32;;;;;;;;;;;:37;;;;;;;;;;;;:51;;;41840:469;;;42077:13;;42063:11;:27;42059:235;;;42155:13;:18;;;42115:11;:19;42127:6;;42115:19;;;;;;;;;;;:32;42135:11;42115:32;;;;;;;;;;;:37;;;:58;;;;;;;;;;;;;;;;;;42246:13;:28;;;42196:11;:19;42208:6;;42196:19;;;;;;;;;;;:32;42216:11;42196:32;;;;;;;;;;;:47;;;:78;;;;;;;;;;;;;;;;;;42059:235;41840:469;41285:1035;42356:7;42352:2;42337:27;;42346:4;42337:27;;;;;;;;;;;;42375:42;42396:4;42402:2;42406:7;42415:1;42375:20;:42::i;:::-;40361:2064;;40257:2168;;;:::o;36312:104::-;36381:27;36391:2;36395:8;36381:27;;;;;;;;;;;;:9;:27::i;:::-;36312:104;;:::o;36950:121::-;37040:19;37050:8;37040:9;:19::i;:::-;36950:121;:::o;31048:1303::-;31109:21;;:::i;:::-;31143:12;31158:7;31143:22;;31226:4;31207:15;:13;:15::i;:::-;:23;;:47;;;;;31241:13;;31234:4;:20;31207:47;31203:1081;;;31275:31;31309:11;:19;31321:6;;31309:19;;;;;;;;;;;:25;31329:4;31309:25;;;;;;;;;;;31275:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:9;:16;;;31353:912;;31429:1;31403:28;;:9;:14;;;:28;;;31399:101;;31467:9;31460:16;;;;;;31399:101;31804:13;31820:1;31804:17;;31844:278;31873:6;;;;;;;;31918:11;:19;31930:6;;31918:19;;;;;;;;;;;:25;31938:4;31918:25;;;;;;;;;;;31906:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000:1;31974:28;;:9;:14;;;:28;;;31970:109;;32042:9;32035:16;;;;;;;31970:109;32119:1;32109:7;;;;;;;:11;31844:278;;32197:7;32179:6;32171:34;32146:9;:14;;:60;;;;;;;;;;;32236:9;32229:16;;;;;;;31353:912;31256:1028;31203:1081;32312:31;;;;;;;;;;;;;;31048:1303;;;;:::o;27303:95::-;27356:15;:13;:15::i;:::-;27340:13;:31;;;;27382:6;;:8;;;;;;;;;:::i;:::-;;;;;;27303:95::o;6779:326::-;6839:4;7096:1;7074:7;:19;;;:23;7067:30;;6779:326;;;:::o;45571:667::-;45734:4;45771:2;45755:36;;;45792:12;:10;:12::i;:::-;45806:4;45812:7;45821:5;45755:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45751:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46006:1;45989:6;:13;:18;45985:235;;;46035:40;;;;;;;;;;;;;;45985:235;46178:6;46172:13;46163:6;46159:2;46155:15;46148:38;45751:480;45884:45;;;45874:55;;;:6;:55;;;;45867:62;;;45571:667;;;;;;:::o;49455:111::-;49516:13;49549:9;49542:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49455:111;:::o;340:723::-;396:13;626:1;617:5;:10;613:53;;;644:10;;;;;;;;;;;;;;;;;;;;;613:53;676:12;691:5;676:20;;707:14;732:78;747:1;739:4;:9;732:78;;765:8;;;;;:::i;:::-;;;;796:2;788:10;;;;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820:39;;870:154;886:1;877:5;:10;870:154;;914:1;904:11;;;;;:::i;:::-;;;981:2;973:5;:10;;;;:::i;:::-;960:2;:24;;;;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1010:2;1001:11;;;;;:::i;:::-;;;870:154;;;1048:6;1034:21;;;;;340:723;;;;:::o;5348:191::-;5422:16;5441:6;;;;;;;;;;;5422:25;;5467:8;5458:6;;:17;;;;;;;;;;;;;;;;;;5522:8;5491:40;;5512:8;5491:40;;;;;;;;;;;;5411:128;5348:191;:::o;46886:159::-;;;;;:::o;47704:158::-;;;;;:::o;36779:163::-;36902:32;36908:2;36912:8;36922:5;36929:4;36902:5;:32::i;:::-;36779:163;;;:::o;39388:615::-;39489:1;39477:8;:13;39473:44;;;39499:18;;;;;;;;;;;;;;39473:44;39534:20;39557:13;;39534:36;;39585:11;39614:8;39599:12;:23;;;;:::i;:::-;39585:37;;39713:12;39695:6;39687:39;;;;:::i;:::-;39637:11;:19;39649:6;;39637:19;;;;;;;;;;;:34;39657:13;;39637:34;;;;;;;;;;;:39;;;:90;;;;;;;;;;;;;;;;;;39773:166;39875:14;;;;;;39859:12;39841:6;39833:39;39804:86;;39821:1;39804:86;;;;;;;;;;;;39934:3;39918:12;:19;;39773:166;;39985:8;39968:13;;:25;;;;;;;:::i;:::-;;;;;;;;39458:545;;39388:615;:::o;37330:1833::-;37469:20;37492:13;;37469:36;;37534:1;37520:16;;:2;:16;;;37516:48;;;37545:19;;;;;;;;;;;;;;37516:48;37591:1;37579:8;:13;37575:26;;;37594:7;;;37575:26;27800:3;37615:13;;:24;37611:37;;;37641:7;;;37611:37;37660:61;37690:1;37694:2;37698:12;37712:8;37660:21;:61::i;:::-;38039:8;37996:12;:20;38009:6;;37996:20;;;;;;;;;;;:24;38017:2;37996:24;;;;;;;;;;;;;;;:32;;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38111:8;38063:12;:20;38076:6;;38063:20;;;;;;;;;;;:24;38084:2;38063:24;;;;;;;;;;;;;;;:37;;;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38178:2;38137:11;:19;38149:6;;38137:19;;;;;;;;;;;:33;38157:12;38137:33;;;;;;;;;;;:38;;;:43;;;;;;;;;;;;;;;;;;38253:15;38195:11;:19;38207:6;;38195:19;;;;;;;;;;;:33;38215:12;38195:33;;;;;;;;;;;:48;;;:74;;;;;;;;;;;;;;;;;;38286:20;38309:12;38286:35;;38336:11;38365:8;38350:12;:23;38336:37;;38394:4;:23;;;;;38402:15;:2;:13;;;:15::i;:::-;38394:23;38390:641;;;38438:314;38494:12;38490:2;38469:38;;38486:1;38469:38;;;;;;;;;;;;38535:69;38574:1;38578:2;38582:14;;;;;;38598:5;38535:30;:69::i;:::-;38530:174;;38640:40;;;;;;;;;;;;;;38530:174;38747:3;38731:12;:19;;38438:314;;38833:12;38816:13;;:29;38812:43;;38847:8;;;38812:43;38390:641;;;38896:120;38952:14;;;;;;38948:2;38927:40;;38944:1;38927:40;;;;;;;;;;;;39011:3;38995:12;:19;;38896:120;;38390:641;39061:12;39045:13;:28;;;;37971:1114;;39095:60;39124:1;39128:2;39132:12;39146:8;39095:20;:60::i;:::-;37458:1705;37330:1833;;;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:365::-;10475:3;10496:66;10560:1;10555:3;10496:66;:::i;:::-;10489:73;;10571:93;10660:3;10571:93;:::i;:::-;10689:2;10684:3;10680:12;10673:19;;10333:365;;;:::o;10704:366::-;10846:3;10867:67;10931:2;10926:3;10867:67;:::i;:::-;10860:74;;10943:93;11032:3;10943:93;:::i;:::-;11061:2;11056:3;11052:12;11045:19;;10704:366;;;:::o;11076:::-;11218:3;11239:67;11303:2;11298:3;11239:67;:::i;:::-;11232:74;;11315:93;11404:3;11315:93;:::i;:::-;11433:2;11428:3;11424:12;11417:19;;11076:366;;;:::o;11448:::-;11590:3;11611:67;11675:2;11670:3;11611:67;:::i;:::-;11604:74;;11687:93;11776:3;11687:93;:::i;:::-;11805:2;11800:3;11796:12;11789:19;;11448:366;;;:::o;11820:398::-;11979:3;12000:83;12081:1;12076:3;12000:83;:::i;:::-;11993:90;;12092:93;12181:3;12092:93;:::i;:::-;12210:1;12205:3;12201:11;12194:18;;11820:398;;;:::o;12224:118::-;12311:24;12329:5;12311:24;:::i;:::-;12306:3;12299:37;12224:118;;:::o;12348:435::-;12528:3;12550:95;12641:3;12632:6;12550:95;:::i;:::-;12543:102;;12662:95;12753:3;12744:6;12662:95;:::i;:::-;12655:102;;12774:3;12767:10;;12348:435;;;;;:::o;12789:379::-;12973:3;12995:147;13138:3;12995:147;:::i;:::-;12988:154;;13159:3;13152:10;;12789:379;;;:::o;13174:222::-;13267:4;13305:2;13294:9;13290:18;13282:26;;13318:71;13386:1;13375:9;13371:17;13362:6;13318:71;:::i;:::-;13174:222;;;;:::o;13402:640::-;13597:4;13635:3;13624:9;13620:19;13612:27;;13649:71;13717:1;13706:9;13702:17;13693:6;13649:71;:::i;:::-;13730:72;13798:2;13787:9;13783:18;13774:6;13730:72;:::i;:::-;13812;13880:2;13869:9;13865:18;13856:6;13812:72;:::i;:::-;13931:9;13925:4;13921:20;13916:2;13905:9;13901:18;13894:48;13959:76;14030:4;14021:6;13959:76;:::i;:::-;13951:84;;13402:640;;;;;;;:::o;14048:210::-;14135:4;14173:2;14162:9;14158:18;14150:26;;14186:65;14248:1;14237:9;14233:17;14224:6;14186:65;:::i;:::-;14048:210;;;;:::o;14264:313::-;14377:4;14415:2;14404:9;14400:18;14392:26;;14464:9;14458:4;14454:20;14450:1;14439:9;14435:17;14428:47;14492:78;14565:4;14556:6;14492:78;:::i;:::-;14484:86;;14264:313;;;;:::o;14583:419::-;14749:4;14787:2;14776:9;14772:18;14764:26;;14836:9;14830:4;14826:20;14822:1;14811:9;14807:17;14800:47;14864:131;14990:4;14864:131;:::i;:::-;14856:139;;14583:419;;;:::o;15008:::-;15174:4;15212:2;15201:9;15197:18;15189:26;;15261:9;15255:4;15251:20;15247:1;15236:9;15232:17;15225:47;15289:131;15415:4;15289:131;:::i;:::-;15281:139;;15008:419;;;:::o;15433:::-;15599:4;15637:2;15626:9;15622:18;15614:26;;15686:9;15680:4;15676:20;15672:1;15661:9;15657:17;15650:47;15714:131;15840:4;15714:131;:::i;:::-;15706:139;;15433:419;;;:::o;15858:::-;16024:4;16062:2;16051:9;16047:18;16039:26;;16111:9;16105:4;16101:20;16097:1;16086:9;16082:17;16075:47;16139:131;16265:4;16139:131;:::i;:::-;16131:139;;15858:419;;;:::o;16283:::-;16449:4;16487:2;16476:9;16472:18;16464:26;;16536:9;16530:4;16526:20;16522:1;16511:9;16507:17;16500:47;16564:131;16690:4;16564:131;:::i;:::-;16556:139;;16283:419;;;:::o;16708:::-;16874:4;16912:2;16901:9;16897:18;16889:26;;16961:9;16955:4;16951:20;16947:1;16936:9;16932:17;16925:47;16989:131;17115:4;16989:131;:::i;:::-;16981:139;;16708:419;;;:::o;17133:::-;17299:4;17337:2;17326:9;17322:18;17314:26;;17386:9;17380:4;17376:20;17372:1;17361:9;17357:17;17350:47;17414:131;17540:4;17414:131;:::i;:::-;17406:139;;17133:419;;;:::o;17558:::-;17724:4;17762:2;17751:9;17747:18;17739:26;;17811:9;17805:4;17801:20;17797:1;17786:9;17782:17;17775:47;17839:131;17965:4;17839:131;:::i;:::-;17831:139;;17558:419;;;:::o;17983:222::-;18076:4;18114:2;18103:9;18099:18;18091:26;;18127:71;18195:1;18184:9;18180:17;18171:6;18127:71;:::i;:::-;17983:222;;;;:::o;18211:129::-;18245:6;18272:20;;:::i;:::-;18262:30;;18301:33;18329:4;18321:6;18301:33;:::i;:::-;18211:129;;;:::o;18346:75::-;18379:6;18412:2;18406:9;18396:19;;18346:75;:::o;18427:307::-;18488:4;18578:18;18570:6;18567:30;18564:56;;;18600:18;;:::i;:::-;18564:56;18638:29;18660:6;18638:29;:::i;:::-;18630:37;;18722:4;18716;18712:15;18704:23;;18427:307;;;:::o;18740:308::-;18802:4;18892:18;18884:6;18881:30;18878:56;;;18914:18;;:::i;:::-;18878:56;18952:29;18974:6;18952:29;:::i;:::-;18944:37;;19036:4;19030;19026:15;19018:23;;18740:308;;;:::o;19054:98::-;19105:6;19139:5;19133:12;19123:22;;19054:98;;;:::o;19158:99::-;19210:6;19244:5;19238:12;19228:22;;19158:99;;;:::o;19263:168::-;19346:11;19380:6;19375:3;19368:19;19420:4;19415:3;19411:14;19396:29;;19263:168;;;;:::o;19437:147::-;19538:11;19575:3;19560:18;;19437:147;;;;:::o;19590:169::-;19674:11;19708:6;19703:3;19696:19;19748:4;19743:3;19739:14;19724:29;;19590:169;;;;:::o;19765:148::-;19867:11;19904:3;19889:18;;19765:148;;;;:::o;19919:281::-;19959:3;19978:20;19996:1;19978:20;:::i;:::-;19973:25;;20012:20;20030:1;20012:20;:::i;:::-;20007:25;;20142:1;20098:42;20094:50;20091:1;20088:57;20085:83;;;20148:18;;:::i;:::-;20085:83;20192:1;20189;20185:9;20178:16;;19919:281;;;;:::o;20206:305::-;20246:3;20265:20;20283:1;20265:20;:::i;:::-;20260:25;;20299:20;20317:1;20299:20;:::i;:::-;20294:25;;20453:1;20385:66;20381:74;20378:1;20375:81;20372:107;;;20459:18;;:::i;:::-;20372:107;20503:1;20500;20496:9;20489:16;;20206:305;;;;:::o;20517:185::-;20557:1;20574:20;20592:1;20574:20;:::i;:::-;20569:25;;20608:20;20626:1;20608:20;:::i;:::-;20603:25;;20647:1;20637:35;;20652:18;;:::i;:::-;20637:35;20694:1;20691;20687:9;20682:14;;20517:185;;;;:::o;20708:348::-;20748:7;20771:20;20789:1;20771:20;:::i;:::-;20766:25;;20805:20;20823:1;20805:20;:::i;:::-;20800:25;;20993:1;20925:66;20921:74;20918:1;20915:81;20910:1;20903:9;20896:17;20892:105;20889:131;;;21000:18;;:::i;:::-;20889:131;21048:1;21045;21041:9;21030:20;;20708:348;;;;:::o;21062:191::-;21102:4;21122:20;21140:1;21122:20;:::i;:::-;21117:25;;21156:20;21174:1;21156:20;:::i;:::-;21151:25;;21195:1;21192;21189:8;21186:34;;;21200:18;;:::i;:::-;21186:34;21245:1;21242;21238:9;21230:17;;21062:191;;;;:::o;21259:::-;21299:4;21319:20;21337:1;21319:20;:::i;:::-;21314:25;;21353:20;21371:1;21353:20;:::i;:::-;21348:25;;21392:1;21389;21386:8;21383:34;;;21397:18;;:::i;:::-;21383:34;21442:1;21439;21435:9;21427:17;;21259:191;;;;:::o;21456:96::-;21493:7;21522:24;21540:5;21522:24;:::i;:::-;21511:35;;21456:96;;;:::o;21558:90::-;21592:7;21635:5;21628:13;21621:21;21610:32;;21558:90;;;:::o;21654:149::-;21690:7;21730:66;21723:5;21719:78;21708:89;;21654:149;;;:::o;21809:126::-;21846:7;21886:42;21879:5;21875:54;21864:65;;21809:126;;;:::o;21941:77::-;21978:7;22007:5;21996:16;;21941:77;;;:::o;22024:154::-;22108:6;22103:3;22098;22085:30;22170:1;22161:6;22156:3;22152:16;22145:27;22024:154;;;:::o;22184:307::-;22252:1;22262:113;22276:6;22273:1;22270:13;22262:113;;;22361:1;22356:3;22352:11;22346:18;22342:1;22337:3;22333:11;22326:39;22298:2;22295:1;22291:10;22286:15;;22262:113;;;22393:6;22390:1;22387:13;22384:101;;;22473:1;22464:6;22459:3;22455:16;22448:27;22384:101;22233:258;22184:307;;;:::o;22497:320::-;22541:6;22578:1;22572:4;22568:12;22558:22;;22625:1;22619:4;22615:12;22646:18;22636:81;;22702:4;22694:6;22690:17;22680:27;;22636:81;22764:2;22756:6;22753:14;22733:18;22730:38;22727:84;;;22783:18;;:::i;:::-;22727:84;22548:269;22497:320;;;:::o;22823:281::-;22906:27;22928:4;22906:27;:::i;:::-;22898:6;22894:40;23036:6;23024:10;23021:22;23000:18;22988:10;22985:34;22982:62;22979:88;;;23047:18;;:::i;:::-;22979:88;23087:10;23083:2;23076:22;22866:238;22823:281;;:::o;23110:233::-;23149:3;23172:24;23190:5;23172:24;:::i;:::-;23163:33;;23218:66;23211:5;23208:77;23205:103;;;23288:18;;:::i;:::-;23205:103;23335:1;23328:5;23324:13;23317:20;;23110:233;;;:::o;23349:176::-;23381:1;23398:20;23416:1;23398:20;:::i;:::-;23393:25;;23432:20;23450:1;23432:20;:::i;:::-;23427:25;;23471:1;23461:35;;23476:18;;:::i;:::-;23461:35;23517:1;23514;23510:9;23505:14;;23349:176;;;;:::o;23531:180::-;23579:77;23576:1;23569:88;23676:4;23673:1;23666:15;23700:4;23697:1;23690:15;23717:180;23765:77;23762:1;23755:88;23862:4;23859:1;23852:15;23886:4;23883:1;23876:15;23903:180;23951:77;23948:1;23941:88;24048:4;24045:1;24038:15;24072:4;24069:1;24062:15;24089:180;24137:77;24134:1;24127:88;24234:4;24231:1;24224:15;24258:4;24255:1;24248:15;24275:180;24323:77;24320:1;24313:88;24420:4;24417:1;24410:15;24444:4;24441:1;24434:15;24461:117;24570:1;24567;24560:12;24584:117;24693:1;24690;24683:12;24707:117;24816:1;24813;24806:12;24830:117;24939:1;24936;24929:12;24953:102;24994:6;25045:2;25041:7;25036:2;25029:5;25025:14;25021:28;25011:38;;24953:102;;;:::o;25061:168::-;25201:20;25197:1;25189:6;25185:14;25178:44;25061:168;:::o;25235:162::-;25375:14;25371:1;25363:6;25359:14;25352:38;25235:162;:::o;25403:225::-;25543:34;25539:1;25531:6;25527:14;25520:58;25612:8;25607:2;25599:6;25595:15;25588:33;25403:225;:::o;25634:174::-;25774:26;25770:1;25762:6;25758:14;25751:50;25634:174;:::o;25814:158::-;25954:10;25950:1;25942:6;25938:14;25931:34;25814:158;:::o;25978:180::-;26118:32;26114:1;26106:6;26102:14;26095:56;25978:180;:::o;26164:182::-;26304:34;26300:1;26292:6;26288:14;26281:58;26164:182;:::o;26352:164::-;26492:16;26488:1;26480:6;26476:14;26469:40;26352:164;:::o;26522:114::-;;:::o;26642:122::-;26715:24;26733:5;26715:24;:::i;:::-;26708:5;26705:35;26695:63;;26754:1;26751;26744:12;26695:63;26642:122;:::o;26770:116::-;26840:21;26855:5;26840:21;:::i;:::-;26833:5;26830:32;26820:60;;26876:1;26873;26866:12;26820:60;26770:116;:::o;26892:120::-;26964:23;26981:5;26964:23;:::i;:::-;26957:5;26954:34;26944:62;;27002:1;26999;26992:12;26944:62;26892:120;:::o;27018:122::-;27091:24;27109:5;27091:24;:::i;:::-;27084:5;27081:35;27071:63;;27130:1;27127;27120:12;27071:63;27018:122;:::o

Swarm Source

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