ETH Price: $3,466.03 (+2.22%)
Gas: 6 Gwei

Token

Empty Headz (EmptyHeadz)
 

Overview

Max Total Supply

4,000 EmptyHeadz

Holders

1,473

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
doovik.eth
Balance
1 EmptyHeadz
0x620f28e81ccd57a4cb71502bc9f04afb00bd8c0d
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:
EmptyHeadz

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-08-11
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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




pragma solidity ^0.8.0;





contract EmptyHeadz is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "";
  uint256  public  maxSupply = 4000;
  uint256 public  MAX_PER_TX = 10;
  uint256 public  SALE_PRICE = 0.002 ether;
  uint256 public  NUM_FREE_MINTS = 4000;
  uint256 public  MAX_FREE_PER_WALLET = 1;
    uint256 public  MAX_PER_WALLET = 11;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = true;

  constructor(

  ) ERC721A("Empty Headz", "EmptyHeadz") {

  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");
    require(balanceOf(msg.sender)+ numberOfTokens <= MAX_PER_WALLET, "Max mints per wallet exceeded ");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200023b565b50610fa0600b55600a600c5566071afd498d0000600d55610fa0600e556001600f55600b60105560006011556001601260006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600b81526020017f456d70747920486561647a0000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f456d707479486561647a000000000000000000000000000000000000000000008152508160029080519060200190620001049291906200023b565b5080600390805190602001906200011d9291906200023b565b506200012e6200016460201b60201c565b6000819055505050620001566200014a6200016d60201b60201c565b6200017560201b60201c565b600160098190555062000350565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024990620002eb565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b600060028204905060018216806200030457607f821691505b602082108114156200031b576200031a62000321565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613eb780620003606000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610720578063e985e9c51461074b578063efdc778814610788578063f2fde38b146107b1578063f43a22dc146107da57610204565b8063a22cb46514610666578063b88d4fde1461068f578063c87b56dd146106b8578063d547cfb7146106f557610204565b806395d89b41116100e757806395d89b41146105a0578063982d669e146105cb57806398710d1e146105f65780639e9fcffc14610621578063a0712d681461064a57610204565b806370a08231146104f6578063715018a6146105335780637f205a741461054a5780638da5cb5b1461057557610204565b8063193ad7b41161019b57806328cad13d1161016a57806328cad13d146104275780633ccfd60b1461045057806342842e0e1461046757806355f804b3146104905780636352211e146104b957610204565b8063193ad7b41461037f5780631e84c413146103aa578063202f298a146103d557806323b872dd146103fe57610204565b80630a00ae83116101d75780630a00ae83146102d75780630f2cdd6c1461030057806318160ddd1461032b5780631919fed71461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f84565b610805565b60405161023d9190613489565b60405180910390f35b34801561025257600080fd5b5061025b6108e7565b60405161026891906134a4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613027565b610979565b6040516102a59190613422565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f17565b6109f5565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613027565b610b00565b005b34801561030c57600080fd5b50610315610b86565b6040516103229190613666565b60405180910390f35b34801561033757600080fd5b50610340610b8c565b60405161034d9190613666565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613027565b610ba3565b005b34801561038b57600080fd5b50610394610c29565b6040516103a19190613666565b60405180910390f35b3480156103b657600080fd5b506103bf610c2f565b6040516103cc9190613489565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613027565b610c42565b005b34801561040a57600080fd5b5061042560048036038101906104209190612e01565b610cc8565b005b34801561043357600080fd5b5061044e60048036038101906104499190612f57565b610cd8565b005b34801561045c57600080fd5b50610465610d71565b005b34801561047357600080fd5b5061048e60048036038101906104899190612e01565b610e4f565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612fde565b610e6f565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613027565b610f05565b6040516104ed9190613422565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612d94565b610f1b565b60405161052a9190613666565b60405180910390f35b34801561053f57600080fd5b50610548610feb565b005b34801561055657600080fd5b5061055f611073565b60405161056c9190613666565b60405180910390f35b34801561058157600080fd5b5061058a611079565b6040516105979190613422565b60405180910390f35b3480156105ac57600080fd5b506105b56110a3565b6040516105c291906134a4565b60405180910390f35b3480156105d757600080fd5b506105e0611135565b6040516105ed9190613666565b60405180910390f35b34801561060257600080fd5b5061060b61113b565b6040516106189190613666565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190613027565b611141565b005b610664600480360381019061065f9190613027565b6111c7565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ed7565b611460565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612e54565b6115d8565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613027565b611654565b6040516106ec91906134a4565b60405180910390f35b34801561070157600080fd5b5061070a6116d0565b60405161071791906134a4565b60405180910390f35b34801561072c57600080fd5b5061073561175e565b6040516107429190613666565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612dc1565b611764565b60405161077f9190613489565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613027565b6117f8565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612d94565b61191b565b005b3480156107e657600080fd5b506107ef611a13565b6040516107fc9190613666565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e057506108df82611a19565b5b9050919050565b6060600280546108f690613936565b80601f016020809104026020016040519081016040528092919081815260200182805461092290613936565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b600061098482611a83565b6109ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0082610f05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a68576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a87611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab95750610ab781610ab2611ad1565b611764565b155b15610af0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afb838383611ad9565b505050565b610b08611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610b26611079565b73ffffffffffffffffffffffffffffffffffffffff1614610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b73906135a6565b60405180910390fd5b80600e8190555050565b60105481565b6000610b96611b8b565b6001546000540303905090565b610bab611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611079565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906135a6565b60405180910390fd5b80600d8190555050565b60115481565b601260009054906101000a900460ff1681565b610c4a611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610c68611079565b73ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906135a6565b60405180910390fd5b80600f8190555050565b610cd3838383611b94565b505050565b610ce0611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610cfe611079565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906135a6565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b610d79611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610d97611079565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906135a6565b60405180910390fd5b60026009541415610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613626565b60405180910390fd5b6002600981905550610e45334761204a565b6001600981905550565b610e6a838383604051806020016040528060008152506115d8565b505050565b610e77611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610e95611079565b73ffffffffffffffffffffffffffffffffffffffff1614610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906135a6565b60405180910390fd5b80600a9080519060200190610f01929190612b65565b5050565b6000610f108261213e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff3611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611011611079565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906135a6565b60405180910390fd5b61107160006123cd565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110b290613936565b80601f01602080910402602001604051908101604052809291908181526020018280546110de90613936565b801561112b5780601f106111005761010080835404028352916020019161112b565b820191906000526020600020905b81548152906001019060200180831161110e57829003601f168201915b5050505050905090565b600e5481565b600f5481565b611149611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611167611079565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906135a6565b60405180910390fd5b80600c8190555050565b601260009054906101000a900460ff16611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613646565b60405180910390fd5b6001600b54611225919061376b565b8161122e610b8c565b611238919061376b565b10611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906134c6565b60405180910390fd5b6010548161128533610f1b565b61128f919061376b565b11156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613506565b60405180910390fd5b600e54816011546112e1919061376b565b111561133c573481600d546112f691906137f2565b1115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613606565b60405180910390fd5b611453565b600f548161134933610f1b565b611353919061376b565b11156113f3573481600d5461136891906137f2565b11156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613606565b60405180910390fd5b600c548111156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613566565b60405180910390fd5b611452565b600f54811115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613566565b60405180910390fd5b806011600082825461144a919061376b565b925050819055505b5b61145d3382612493565b50565b611468611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114da611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611587611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cc9190613489565b60405180910390a35050565b6115e3848484611b94565b6116028373ffffffffffffffffffffffffffffffffffffffff166124b1565b80156116175750611615848484846124d4565b155b1561164e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061165f82611a83565b61169e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611695906135c6565b60405180910390fd5b600a6116a983612634565b6040516020016116ba9291906133d3565b6040516020818303038152906040529050919050565b600a80546116dd90613936565b80601f016020809104026020016040519081016040528092919081815260200182805461170990613936565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611800611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661181e611079565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906135a6565b60405180910390fd5b600081116118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906135e6565b60405180910390fd5b600b54816118c3610b8c565b6118cd919061376b565b111561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613586565b60405180910390fd5b6119183382612493565b50565b611923611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611941611079565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906135a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906134e6565b60405180910390fd5b611a10816123cd565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a8e611b8b565b11158015611a9d575060005482105b8015611aca575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b9f8261213e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c2b611ad1565b73ffffffffffffffffffffffffffffffffffffffff161480611c5a5750611c5985611c54611ad1565b611764565b5b80611c9f5750611c68611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611c8784610979565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cd8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d4c8585856001612795565b611d5860008487611ad9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fd8576000548214611fd757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612043858585600161279b565b5050505050565b8047101561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490613546565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120b39061340d565b60006040518083038185875af1925050503d80600081146120f0576040519150601f19603f3d011682016040523d82523d6000602084013e6120f5565b606091505b5050905080612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613526565b60405180910390fd5b505050565b612146612beb565b600082905080612154611b8b565b11158015612163575060005481105b15612396576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161239457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122785780925050506123c8565b5b60011561239357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238e5780925050506123c8565b612279565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ad8282604051806020016040528060008152506127a1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124fa611ad1565b8786866040518563ffffffff1660e01b815260040161251c949392919061343d565b602060405180830381600087803b15801561253657600080fd5b505af192505050801561256757506040513d601f19601f820116820180604052508101906125649190612fb1565b60015b6125e1573d8060008114612597576040519150601f19603f3d011682016040523d82523d6000602084013e61259c565b606091505b506000815114156125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561267c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612790565b600082905060005b600082146126ae57808061269790613999565b915050600a826126a791906137c1565b9150612684565b60008167ffffffffffffffff8111156126ca576126c9613acf565b5b6040519080825280601f01601f1916602001820160405280156126fc5781602001600182028036833780820191505090505b5090505b6000851461278957600182612715919061384c565b9150600a8561272491906139e2565b6030612730919061376b565b60f81b81838151811061274657612745613aa0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561278291906137c1565b9450612700565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561280e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612849576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128566000858386612795565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612a178673ffffffffffffffffffffffffffffffffffffffff166124b1565b15612add575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8c60008784806001019550876124d4565b612ac2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a1d578260005414612ad857600080fd5b612b49565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ade575b816000819055505050612b5f600085838661279b565b50505050565b828054612b7190613936565b90600052602060002090601f016020900481019282612b935760008555612bda565b82601f10612bac57805160ff1916838001178555612bda565b82800160010185558215612bda579182015b82811115612bd9578251825591602001919060010190612bbe565b5b509050612be79190612c2e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c47576000816000905550600101612c2f565b5090565b6000612c5e612c59846136a6565b613681565b905082815260208101848484011115612c7a57612c79613b03565b5b612c858482856138f4565b509392505050565b6000612ca0612c9b846136d7565b613681565b905082815260208101848484011115612cbc57612cbb613b03565b5b612cc78482856138f4565b509392505050565b600081359050612cde81613e25565b92915050565b600081359050612cf381613e3c565b92915050565b600081359050612d0881613e53565b92915050565b600081519050612d1d81613e53565b92915050565b600082601f830112612d3857612d37613afe565b5b8135612d48848260208601612c4b565b91505092915050565b600082601f830112612d6657612d65613afe565b5b8135612d76848260208601612c8d565b91505092915050565b600081359050612d8e81613e6a565b92915050565b600060208284031215612daa57612da9613b0d565b5b6000612db884828501612ccf565b91505092915050565b60008060408385031215612dd857612dd7613b0d565b5b6000612de685828601612ccf565b9250506020612df785828601612ccf565b9150509250929050565b600080600060608486031215612e1a57612e19613b0d565b5b6000612e2886828701612ccf565b9350506020612e3986828701612ccf565b9250506040612e4a86828701612d7f565b9150509250925092565b60008060008060808587031215612e6e57612e6d613b0d565b5b6000612e7c87828801612ccf565b9450506020612e8d87828801612ccf565b9350506040612e9e87828801612d7f565b925050606085013567ffffffffffffffff811115612ebf57612ebe613b08565b5b612ecb87828801612d23565b91505092959194509250565b60008060408385031215612eee57612eed613b0d565b5b6000612efc85828601612ccf565b9250506020612f0d85828601612ce4565b9150509250929050565b60008060408385031215612f2e57612f2d613b0d565b5b6000612f3c85828601612ccf565b9250506020612f4d85828601612d7f565b9150509250929050565b600060208284031215612f6d57612f6c613b0d565b5b6000612f7b84828501612ce4565b91505092915050565b600060208284031215612f9a57612f99613b0d565b5b6000612fa884828501612cf9565b91505092915050565b600060208284031215612fc757612fc6613b0d565b5b6000612fd584828501612d0e565b91505092915050565b600060208284031215612ff457612ff3613b0d565b5b600082013567ffffffffffffffff81111561301257613011613b08565b5b61301e84828501612d51565b91505092915050565b60006020828403121561303d5761303c613b0d565b5b600061304b84828501612d7f565b91505092915050565b61305d81613880565b82525050565b61306c81613892565b82525050565b600061307d8261371d565b6130878185613733565b9350613097818560208601613903565b6130a081613b12565b840191505092915050565b60006130b682613728565b6130c0818561374f565b93506130d0818560208601613903565b6130d981613b12565b840191505092915050565b60006130ef82613728565b6130f98185613760565b9350613109818560208601613903565b80840191505092915050565b6000815461312281613936565b61312c8186613760565b9450600182166000811461314757600181146131585761318b565b60ff1983168652818601935061318b565b61316185613708565b60005b8381101561318357815481890152600182019150602081019050613164565b838801955050505b50505092915050565b60006131a160078361374f565b91506131ac82613b23565b602082019050919050565b60006131c460268361374f565b91506131cf82613b4c565b604082019050919050565b60006131e7601e8361374f565b91506131f282613b9b565b602082019050919050565b600061320a603a8361374f565b915061321582613bc4565b604082019050919050565b600061322d601d8361374f565b915061323882613c13565b602082019050919050565b600061325060228361374f565b915061325b82613c3c565b604082019050919050565b600061327360178361374f565b915061327e82613c8b565b602082019050919050565b6000613296600583613760565b91506132a182613cb4565b600582019050919050565b60006132b960208361374f565b91506132c482613cdd565b602082019050919050565b60006132dc602f8361374f565b91506132e782613d06565b604082019050919050565b60006132ff600083613744565b915061330a82613d55565b600082019050919050565b600061332260138361374f565b915061332d82613d58565b602082019050919050565b600061334560188361374f565b915061335082613d81565b602082019050919050565b6000613368601f8361374f565b915061337382613daa565b602082019050919050565b600061338b60178361374f565b915061339682613dd3565b602082019050919050565b60006133ae600183613760565b91506133b982613dfc565b600182019050919050565b6133cd816138ea565b82525050565b60006133df8285613115565b91506133ea826133a1565b91506133f682846130e4565b915061340182613289565b91508190509392505050565b6000613418826132f2565b9150819050919050565b60006020820190506134376000830184613054565b92915050565b60006080820190506134526000830187613054565b61345f6020830186613054565b61346c60408301856133c4565b818103606083015261347e8184613072565b905095945050505050565b600060208201905061349e6000830184613063565b92915050565b600060208201905081810360008301526134be81846130ab565b905092915050565b600060208201905081810360008301526134df81613194565b9050919050565b600060208201905081810360008301526134ff816131b7565b9050919050565b6000602082019050818103600083015261351f816131da565b9050919050565b6000602082019050818103600083015261353f816131fd565b9050919050565b6000602082019050818103600083015261355f81613220565b9050919050565b6000602082019050818103600083015261357f81613243565b9050919050565b6000602082019050818103600083015261359f81613266565b9050919050565b600060208201905081810360008301526135bf816132ac565b9050919050565b600060208201905081810360008301526135df816132cf565b9050919050565b600060208201905081810360008301526135ff81613315565b9050919050565b6000602082019050818103600083015261361f81613338565b9050919050565b6000602082019050818103600083015261363f8161335b565b9050919050565b6000602082019050818103600083015261365f8161337e565b9050919050565b600060208201905061367b60008301846133c4565b92915050565b600061368b61369c565b90506136978282613968565b919050565b6000604051905090565b600067ffffffffffffffff8211156136c1576136c0613acf565b5b6136ca82613b12565b9050602081019050919050565b600067ffffffffffffffff8211156136f2576136f1613acf565b5b6136fb82613b12565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613776826138ea565b9150613781836138ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b6576137b5613a13565b5b828201905092915050565b60006137cc826138ea565b91506137d7836138ea565b9250826137e7576137e6613a42565b5b828204905092915050565b60006137fd826138ea565b9150613808836138ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384157613840613a13565b5b828202905092915050565b6000613857826138ea565b9150613862836138ea565b92508282101561387557613874613a13565b5b828203905092915050565b600061388b826138ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613921578082015181840152602081019050613906565b83811115613930576000848401525b50505050565b6000600282049050600182168061394e57607f821691505b6020821081141561396257613961613a71565b5b50919050565b61397182613b12565b810181811067ffffffffffffffff821117156139905761398f613acf565b5b80604052505050565b60006139a4826138ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d7576139d6613a13565b5b600182019050919050565b60006139ed826138ea565b91506139f8836138ea565b925082613a0857613a07613a42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613e2e81613880565b8114613e3957600080fd5b50565b613e4581613892565b8114613e5057600080fd5b50565b613e5c8161389e565b8114613e6757600080fd5b50565b613e73816138ea565b8114613e7e57600080fd5b5056fea264697066735822122075e39af901b5e2fee1f2dc63697a1f14bb24e41fc571474f6ab32f5f6affce4f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610720578063e985e9c51461074b578063efdc778814610788578063f2fde38b146107b1578063f43a22dc146107da57610204565b8063a22cb46514610666578063b88d4fde1461068f578063c87b56dd146106b8578063d547cfb7146106f557610204565b806395d89b41116100e757806395d89b41146105a0578063982d669e146105cb57806398710d1e146105f65780639e9fcffc14610621578063a0712d681461064a57610204565b806370a08231146104f6578063715018a6146105335780637f205a741461054a5780638da5cb5b1461057557610204565b8063193ad7b41161019b57806328cad13d1161016a57806328cad13d146104275780633ccfd60b1461045057806342842e0e1461046757806355f804b3146104905780636352211e146104b957610204565b8063193ad7b41461037f5780631e84c413146103aa578063202f298a146103d557806323b872dd146103fe57610204565b80630a00ae83116101d75780630a00ae83146102d75780630f2cdd6c1461030057806318160ddd1461032b5780631919fed71461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f84565b610805565b60405161023d9190613489565b60405180910390f35b34801561025257600080fd5b5061025b6108e7565b60405161026891906134a4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613027565b610979565b6040516102a59190613422565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f17565b6109f5565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613027565b610b00565b005b34801561030c57600080fd5b50610315610b86565b6040516103229190613666565b60405180910390f35b34801561033757600080fd5b50610340610b8c565b60405161034d9190613666565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613027565b610ba3565b005b34801561038b57600080fd5b50610394610c29565b6040516103a19190613666565b60405180910390f35b3480156103b657600080fd5b506103bf610c2f565b6040516103cc9190613489565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613027565b610c42565b005b34801561040a57600080fd5b5061042560048036038101906104209190612e01565b610cc8565b005b34801561043357600080fd5b5061044e60048036038101906104499190612f57565b610cd8565b005b34801561045c57600080fd5b50610465610d71565b005b34801561047357600080fd5b5061048e60048036038101906104899190612e01565b610e4f565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612fde565b610e6f565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613027565b610f05565b6040516104ed9190613422565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612d94565b610f1b565b60405161052a9190613666565b60405180910390f35b34801561053f57600080fd5b50610548610feb565b005b34801561055657600080fd5b5061055f611073565b60405161056c9190613666565b60405180910390f35b34801561058157600080fd5b5061058a611079565b6040516105979190613422565b60405180910390f35b3480156105ac57600080fd5b506105b56110a3565b6040516105c291906134a4565b60405180910390f35b3480156105d757600080fd5b506105e0611135565b6040516105ed9190613666565b60405180910390f35b34801561060257600080fd5b5061060b61113b565b6040516106189190613666565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190613027565b611141565b005b610664600480360381019061065f9190613027565b6111c7565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ed7565b611460565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612e54565b6115d8565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613027565b611654565b6040516106ec91906134a4565b60405180910390f35b34801561070157600080fd5b5061070a6116d0565b60405161071791906134a4565b60405180910390f35b34801561072c57600080fd5b5061073561175e565b6040516107429190613666565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612dc1565b611764565b60405161077f9190613489565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613027565b6117f8565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612d94565b61191b565b005b3480156107e657600080fd5b506107ef611a13565b6040516107fc9190613666565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e057506108df82611a19565b5b9050919050565b6060600280546108f690613936565b80601f016020809104026020016040519081016040528092919081815260200182805461092290613936565b801561096f5780601f106109445761010080835404028352916020019161096f565b820191906000526020600020905b81548152906001019060200180831161095257829003601f168201915b5050505050905090565b600061098482611a83565b6109ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0082610f05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a68576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a87611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab95750610ab781610ab2611ad1565b611764565b155b15610af0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afb838383611ad9565b505050565b610b08611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610b26611079565b73ffffffffffffffffffffffffffffffffffffffff1614610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b73906135a6565b60405180910390fd5b80600e8190555050565b60105481565b6000610b96611b8b565b6001546000540303905090565b610bab611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610bc9611079565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906135a6565b60405180910390fd5b80600d8190555050565b60115481565b601260009054906101000a900460ff1681565b610c4a611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610c68611079565b73ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb5906135a6565b60405180910390fd5b80600f8190555050565b610cd3838383611b94565b505050565b610ce0611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610cfe611079565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906135a6565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b610d79611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610d97611079565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906135a6565b60405180910390fd5b60026009541415610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613626565b60405180910390fd5b6002600981905550610e45334761204a565b6001600981905550565b610e6a838383604051806020016040528060008152506115d8565b505050565b610e77611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610e95611079565b73ffffffffffffffffffffffffffffffffffffffff1614610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906135a6565b60405180910390fd5b80600a9080519060200190610f01929190612b65565b5050565b6000610f108261213e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff3611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611011611079565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906135a6565b60405180910390fd5b61107160006123cd565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110b290613936565b80601f01602080910402602001604051908101604052809291908181526020018280546110de90613936565b801561112b5780601f106111005761010080835404028352916020019161112b565b820191906000526020600020905b81548152906001019060200180831161110e57829003601f168201915b5050505050905090565b600e5481565b600f5481565b611149611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611167611079565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906135a6565b60405180910390fd5b80600c8190555050565b601260009054906101000a900460ff16611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613646565b60405180910390fd5b6001600b54611225919061376b565b8161122e610b8c565b611238919061376b565b10611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906134c6565b60405180910390fd5b6010548161128533610f1b565b61128f919061376b565b11156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613506565b60405180910390fd5b600e54816011546112e1919061376b565b111561133c573481600d546112f691906137f2565b1115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613606565b60405180910390fd5b611453565b600f548161134933610f1b565b611353919061376b565b11156113f3573481600d5461136891906137f2565b11156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613606565b60405180910390fd5b600c548111156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613566565b60405180910390fd5b611452565b600f54811115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613566565b60405180910390fd5b806011600082825461144a919061376b565b925050819055505b5b61145d3382612493565b50565b611468611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114da611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611587611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cc9190613489565b60405180910390a35050565b6115e3848484611b94565b6116028373ffffffffffffffffffffffffffffffffffffffff166124b1565b80156116175750611615848484846124d4565b155b1561164e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061165f82611a83565b61169e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611695906135c6565b60405180910390fd5b600a6116a983612634565b6040516020016116ba9291906133d3565b6040516020818303038152906040529050919050565b600a80546116dd90613936565b80601f016020809104026020016040519081016040528092919081815260200182805461170990613936565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611800611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661181e611079565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906135a6565b60405180910390fd5b600081116118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906135e6565b60405180910390fd5b600b54816118c3610b8c565b6118cd919061376b565b111561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613586565b60405180910390fd5b6119183382612493565b50565b611923611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611941611079565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906135a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906134e6565b60405180910390fd5b611a10816123cd565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a8e611b8b565b11158015611a9d575060005482105b8015611aca575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b9f8261213e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c2b611ad1565b73ffffffffffffffffffffffffffffffffffffffff161480611c5a5750611c5985611c54611ad1565b611764565b5b80611c9f5750611c68611ad1565b73ffffffffffffffffffffffffffffffffffffffff16611c8784610979565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cd8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d4c8585856001612795565b611d5860008487611ad9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fd8576000548214611fd757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612043858585600161279b565b5050505050565b8047101561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490613546565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120b39061340d565b60006040518083038185875af1925050503d80600081146120f0576040519150601f19603f3d011682016040523d82523d6000602084013e6120f5565b606091505b5050905080612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613526565b60405180910390fd5b505050565b612146612beb565b600082905080612154611b8b565b11158015612163575060005481105b15612396576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161239457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122785780925050506123c8565b5b60011561239357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238e5780925050506123c8565b612279565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ad8282604051806020016040528060008152506127a1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124fa611ad1565b8786866040518563ffffffff1660e01b815260040161251c949392919061343d565b602060405180830381600087803b15801561253657600080fd5b505af192505050801561256757506040513d601f19601f820116820180604052508101906125649190612fb1565b60015b6125e1573d8060008114612597576040519150601f19603f3d011682016040523d82523d6000602084013e61259c565b606091505b506000815114156125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561267c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612790565b600082905060005b600082146126ae57808061269790613999565b915050600a826126a791906137c1565b9150612684565b60008167ffffffffffffffff8111156126ca576126c9613acf565b5b6040519080825280601f01601f1916602001820160405280156126fc5781602001600182028036833780820191505090505b5090505b6000851461278957600182612715919061384c565b9150600a8561272491906139e2565b6030612730919061376b565b60f81b81838151811061274657612745613aa0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561278291906137c1565b9450612700565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561280e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612849576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128566000858386612795565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612a178673ffffffffffffffffffffffffffffffffffffffff166124b1565b15612add575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8c60008784806001019550876124d4565b612ac2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a1d578260005414612ad857600080fd5b612b49565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ade575b816000819055505050612b5f600085838661279b565b50505050565b828054612b7190613936565b90600052602060002090601f016020900481019282612b935760008555612bda565b82601f10612bac57805160ff1916838001178555612bda565b82800160010185558215612bda579182015b82811115612bd9578251825591602001919060010190612bbe565b5b509050612be79190612c2e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c47576000816000905550600101612c2f565b5090565b6000612c5e612c59846136a6565b613681565b905082815260208101848484011115612c7a57612c79613b03565b5b612c858482856138f4565b509392505050565b6000612ca0612c9b846136d7565b613681565b905082815260208101848484011115612cbc57612cbb613b03565b5b612cc78482856138f4565b509392505050565b600081359050612cde81613e25565b92915050565b600081359050612cf381613e3c565b92915050565b600081359050612d0881613e53565b92915050565b600081519050612d1d81613e53565b92915050565b600082601f830112612d3857612d37613afe565b5b8135612d48848260208601612c4b565b91505092915050565b600082601f830112612d6657612d65613afe565b5b8135612d76848260208601612c8d565b91505092915050565b600081359050612d8e81613e6a565b92915050565b600060208284031215612daa57612da9613b0d565b5b6000612db884828501612ccf565b91505092915050565b60008060408385031215612dd857612dd7613b0d565b5b6000612de685828601612ccf565b9250506020612df785828601612ccf565b9150509250929050565b600080600060608486031215612e1a57612e19613b0d565b5b6000612e2886828701612ccf565b9350506020612e3986828701612ccf565b9250506040612e4a86828701612d7f565b9150509250925092565b60008060008060808587031215612e6e57612e6d613b0d565b5b6000612e7c87828801612ccf565b9450506020612e8d87828801612ccf565b9350506040612e9e87828801612d7f565b925050606085013567ffffffffffffffff811115612ebf57612ebe613b08565b5b612ecb87828801612d23565b91505092959194509250565b60008060408385031215612eee57612eed613b0d565b5b6000612efc85828601612ccf565b9250506020612f0d85828601612ce4565b9150509250929050565b60008060408385031215612f2e57612f2d613b0d565b5b6000612f3c85828601612ccf565b9250506020612f4d85828601612d7f565b9150509250929050565b600060208284031215612f6d57612f6c613b0d565b5b6000612f7b84828501612ce4565b91505092915050565b600060208284031215612f9a57612f99613b0d565b5b6000612fa884828501612cf9565b91505092915050565b600060208284031215612fc757612fc6613b0d565b5b6000612fd584828501612d0e565b91505092915050565b600060208284031215612ff457612ff3613b0d565b5b600082013567ffffffffffffffff81111561301257613011613b08565b5b61301e84828501612d51565b91505092915050565b60006020828403121561303d5761303c613b0d565b5b600061304b84828501612d7f565b91505092915050565b61305d81613880565b82525050565b61306c81613892565b82525050565b600061307d8261371d565b6130878185613733565b9350613097818560208601613903565b6130a081613b12565b840191505092915050565b60006130b682613728565b6130c0818561374f565b93506130d0818560208601613903565b6130d981613b12565b840191505092915050565b60006130ef82613728565b6130f98185613760565b9350613109818560208601613903565b80840191505092915050565b6000815461312281613936565b61312c8186613760565b9450600182166000811461314757600181146131585761318b565b60ff1983168652818601935061318b565b61316185613708565b60005b8381101561318357815481890152600182019150602081019050613164565b838801955050505b50505092915050565b60006131a160078361374f565b91506131ac82613b23565b602082019050919050565b60006131c460268361374f565b91506131cf82613b4c565b604082019050919050565b60006131e7601e8361374f565b91506131f282613b9b565b602082019050919050565b600061320a603a8361374f565b915061321582613bc4565b604082019050919050565b600061322d601d8361374f565b915061323882613c13565b602082019050919050565b600061325060228361374f565b915061325b82613c3c565b604082019050919050565b600061327360178361374f565b915061327e82613c8b565b602082019050919050565b6000613296600583613760565b91506132a182613cb4565b600582019050919050565b60006132b960208361374f565b91506132c482613cdd565b602082019050919050565b60006132dc602f8361374f565b91506132e782613d06565b604082019050919050565b60006132ff600083613744565b915061330a82613d55565b600082019050919050565b600061332260138361374f565b915061332d82613d58565b602082019050919050565b600061334560188361374f565b915061335082613d81565b602082019050919050565b6000613368601f8361374f565b915061337382613daa565b602082019050919050565b600061338b60178361374f565b915061339682613dd3565b602082019050919050565b60006133ae600183613760565b91506133b982613dfc565b600182019050919050565b6133cd816138ea565b82525050565b60006133df8285613115565b91506133ea826133a1565b91506133f682846130e4565b915061340182613289565b91508190509392505050565b6000613418826132f2565b9150819050919050565b60006020820190506134376000830184613054565b92915050565b60006080820190506134526000830187613054565b61345f6020830186613054565b61346c60408301856133c4565b818103606083015261347e8184613072565b905095945050505050565b600060208201905061349e6000830184613063565b92915050565b600060208201905081810360008301526134be81846130ab565b905092915050565b600060208201905081810360008301526134df81613194565b9050919050565b600060208201905081810360008301526134ff816131b7565b9050919050565b6000602082019050818103600083015261351f816131da565b9050919050565b6000602082019050818103600083015261353f816131fd565b9050919050565b6000602082019050818103600083015261355f81613220565b9050919050565b6000602082019050818103600083015261357f81613243565b9050919050565b6000602082019050818103600083015261359f81613266565b9050919050565b600060208201905081810360008301526135bf816132ac565b9050919050565b600060208201905081810360008301526135df816132cf565b9050919050565b600060208201905081810360008301526135ff81613315565b9050919050565b6000602082019050818103600083015261361f81613338565b9050919050565b6000602082019050818103600083015261363f8161335b565b9050919050565b6000602082019050818103600083015261365f8161337e565b9050919050565b600060208201905061367b60008301846133c4565b92915050565b600061368b61369c565b90506136978282613968565b919050565b6000604051905090565b600067ffffffffffffffff8211156136c1576136c0613acf565b5b6136ca82613b12565b9050602081019050919050565b600067ffffffffffffffff8211156136f2576136f1613acf565b5b6136fb82613b12565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613776826138ea565b9150613781836138ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b6576137b5613a13565b5b828201905092915050565b60006137cc826138ea565b91506137d7836138ea565b9250826137e7576137e6613a42565b5b828204905092915050565b60006137fd826138ea565b9150613808836138ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384157613840613a13565b5b828202905092915050565b6000613857826138ea565b9150613862836138ea565b92508282101561387557613874613a13565b5b828203905092915050565b600061388b826138ca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613921578082015181840152602081019050613906565b83811115613930576000848401525b50505050565b6000600282049050600182168061394e57607f821691505b6020821081141561396257613961613a71565b5b50919050565b61397182613b12565b810181811067ffffffffffffffff821117156139905761398f613acf565b5b80604052505050565b60006139a4826138ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d7576139d6613a13565b5b600182019050919050565b60006139ed826138ea565b91506139f8836138ea565b925082613a0857613a07613a42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613e2e81613880565b8114613e3957600080fd5b50565b613e4581613892565b8114613e5057600080fd5b50565b613e5c8161389e565b8114613e6757600080fd5b50565b613e73816138ea565b8114613e7e57600080fd5b5056fea264697066735822122075e39af901b5e2fee1f2dc63697a1f14bb24e41fc571474f6ab32f5f6affce4f64736f6c63430008070033

Deployed Bytecode Sourcemap

48611:3378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29756:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34372:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33935:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51484:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48979:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29005:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51619:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49019:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49063:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51860:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35237:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51330:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50723:142;;;;;;;;;;;;;:::i;:::-;;35478:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50319:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32677:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30125:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;48846:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48891:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48933:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51733:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49180:1133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34648:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35734:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50871:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48734:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48772;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35006:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50433:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48810:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29756:305;29858:4;29910:25;29895:40;;;:11;:40;;;;:105;;;;29967:33;29952:48;;;:11;:48;;;;29895:105;:158;;;;30017:36;30041:11;30017:23;:36::i;:::-;29895:158;29875:178;;29756:305;;;:::o;32869:100::-;32923:13;32956:5;32949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:100;:::o;34372:204::-;34440:7;34465:16;34473:7;34465;:16::i;:::-;34460:64;;34490:34;;;;;;;;;;;;;;34460:64;34544:15;:24;34560:7;34544:24;;;;;;;;;;;;;;;;;;;;;34537:31;;34372:204;;;:::o;33935:371::-;34008:13;34024:24;34040:7;34024:15;:24::i;:::-;34008:40;;34069:5;34063:11;;:2;:11;;;34059:48;;;34083:24;;;;;;;;;;;;;;34059:48;34140:5;34124:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34150:37;34167:5;34174:12;:10;:12::i;:::-;34150:16;:37::i;:::-;34149:38;34124:63;34120:138;;;34211:35;;;;;;;;;;;;;;34120:138;34270:28;34279:2;34283:7;34292:5;34270:8;:28::i;:::-;33997:309;33935:371;;:::o;51484:129::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51594:13:::1;51577:14;:30;;;;51484:129:::0;:::o;48979:35::-;;;;:::o;29005:303::-;29049:7;29274:15;:13;:15::i;:::-;29259:12;;29243:13;;:28;:46;29236:53;;29005:303;:::o;51619:108::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51715:6:::1;51702:10;:19;;;;51619:108:::0;:::o;49019:39::-;;;;:::o;49063:37::-;;;;;;;;;;;;;:::o;51860:126::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51974:6:::1;51952:19;:28;;;;51860:126:::0;:::o;35237:170::-;35371:28;35381:4;35387:2;35391:7;35371:9;:28::i;:::-;35237:170;;;:::o;51330:148::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51453:19:::1;51432:18;;:40;;;;;;;;;;;;;;;;;;51330:148:::0;:::o;50723:142::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;50798:61:::2;50824:10;50837:21;50798:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;50723:142::o:0;35478:185::-;35616:39;35633:4;35639:2;35643:7;35616:39;;;;;;;;;;;;:16;:39::i;:::-;35478:185;;;:::o;50319:108::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50414:7:::1;50399:12;:22;;;;;;;;;;;;:::i;:::-;;50319:108:::0;:::o;32677:125::-;32741:7;32768:21;32781:7;32768:12;:21::i;:::-;:26;;;32761:33;;32677:125;;;:::o;30125:206::-;30189:7;30230:1;30213:19;;:5;:19;;;30209:60;;;30241:28;;;;;;;;;;;;;;30209:60;30295:12;:19;30308:5;30295:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30287:36;;30280:43;;30125:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;48846:40::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;33038:104::-;33094:13;33127:7;33120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:104;:::o;48891:37::-;;;;:::o;48933:39::-;;;;:::o;51733:121::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51842:6:::1;51829:10;:19;;;;51733:121:::0;:::o;49180:1133::-;49267:18;;;;;;;;;;;49259:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49373:1;49361:9;;:13;;;;:::i;:::-;49344:14;49328:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49320:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49442:14;;49424;49401:21;49411:10;49401:9;:21::i;:::-;:37;;;;:::i;:::-;:55;;49393:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49543:14;;49526;49503:20;;:37;;;;:::i;:::-;:54;49500:764;;;49624:9;49605:14;49592:10;;:27;;;;:::i;:::-;49591:42;;49569:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;49500:764;;;49755:19;;49738:14;49714:21;49724:10;49714:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49710:547;;;49842:9;49823:14;49810:10;;:27;;;;:::i;:::-;49809:42;;49787:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;49954:10;;49936:14;:28;;49914:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;49710:547;;;50103:19;;50085:14;:37;;50059:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50231:14;50207:20;;:38;;;;;;;:::i;:::-;;;;;;;;49710:547;49500:764;50270:37;50280:10;50292:14;50270:9;:37::i;:::-;49180:1133;:::o;34648:287::-;34759:12;:10;:12::i;:::-;34747:24;;:8;:24;;;34743:54;;;34780:17;;;;;;;;;;;;;;34743:54;34855:8;34810:18;:32;34829:12;:10;:12::i;:::-;34810:32;;;;;;;;;;;;;;;:42;34843:8;34810:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34908:8;34879:48;;34894:12;:10;:12::i;:::-;34879:48;;;34918:8;34879:48;;;;;;:::i;:::-;;;;;;;;34648:287;;:::o;35734:369::-;35901:28;35911:4;35917:2;35921:7;35901:9;:28::i;:::-;35944:15;:2;:13;;;:15::i;:::-;:76;;;;;35964:56;35995:4;36001:2;36005:7;36014:5;35964:30;:56::i;:::-;35963:57;35944:76;35940:156;;;36044:40;;;;;;;;;;;;;;35940:156;35734:369;;;;:::o;50871:312::-;50967:13;51008:17;51016:8;51008:7;:17::i;:::-;50992:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51128:12;51147:19;:8;:17;:19::i;:::-;51111:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51097:80;;50871:312;;;:::o;48734:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48772:::-;;;;:::o;35006:164::-;35103:4;35127:18;:25;35146:5;35127:25;;;;;;;;;;;;;;;:35;35153:8;35127:35;;;;;;;;;;;;;;;;;;;;;;;;;35120:42;;35006:164;;;;:::o;50433:284::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50534:1:::1;50523:8;:12;50507:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50623:9;;50611:8;50595:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50579:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50680:31;50690:10;50702:8;50680:9;:31::i;:::-;50433:284:::0;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;48810:31::-;;;;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36358:174::-;36415:4;36458:7;36439:15;:13;:15::i;:::-;:26;;:53;;;;;36479:13;;36469:7;:23;36439:53;:85;;;;;36497:11;:20;36509:7;36497:20;;;;;;;;;;;:27;;;;;;;;;;;;36496:28;36439:85;36432:92;;36358:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;45584:196::-;45726:2;45699:15;:24;45715:7;45699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45764:7;45760:2;45744:28;;45753:5;45744:28;;;;;;;;;;;;45584:196;;;:::o;28779:92::-;28835:7;28862:1;28855:8;;28779:92;:::o;40532:2130::-;40647:35;40685:21;40698:7;40685:12;:21::i;:::-;40647:59;;40745:4;40723:26;;:13;:18;;;:26;;;40719:67;;40758:28;;;;;;;;;;;;;;40719:67;40799:22;40841:4;40825:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40862:36;40879:4;40885:12;:10;:12::i;:::-;40862:16;:36::i;:::-;40825:73;:126;;;;40939:12;:10;:12::i;:::-;40915:36;;:20;40927:7;40915:11;:20::i;:::-;:36;;;40825:126;40799:153;;40970:17;40965:66;;40996:35;;;;;;;;;;;;;;40965:66;41060:1;41046:16;;:2;:16;;;41042:52;;;41071:23;;;;;;;;;;;;;;41042:52;41107:43;41129:4;41135:2;41139:7;41148:1;41107:21;:43::i;:::-;41215:35;41232:1;41236:7;41245:4;41215:8;:35::i;:::-;41576:1;41546:12;:18;41559:4;41546:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:1;41592:12;:16;41605:2;41592:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:31;41672:11;:20;41684:7;41672:20;;;;;;;;;;;41638:54;;41723:2;41707:8;:13;;;:18;;;;;;;;;;;;;;;;;;41773:15;41740:8;:23;;;:49;;;;;;;;;;;;;;;;;;42041:19;42073:1;42063:7;:11;42041:33;;42089:31;42123:11;:24;42135:11;42123:24;;;;;;;;;;;42089:58;;42191:1;42166:27;;:8;:13;;;;;;;;;;;;:27;;;42162:384;;;42376:13;;42361:11;:28;42357:174;;42430:4;42414:8;:13;;;:20;;;;;;;;;;;;;;;;;;42483:13;:28;;;42457:8;:23;;;:54;;;;;;;;;;;;;;;;;;42357:174;42162:384;41521:1036;;;42593:7;42589:2;42574:27;;42583:4;42574:27;;;;;;;;;;;;42612:42;42633:4;42639:2;42643:7;42652:1;42612:20;:42::i;:::-;40636:2026;;40532:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;31506:1109::-;31568:21;;:::i;:::-;31602:12;31617:7;31602:22;;31685:4;31666:15;:13;:15::i;:::-;:23;;:47;;;;;31700:13;;31693:4;:20;31666:47;31662:886;;;31734:31;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31734:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31809:9;:16;;;31804:729;;31880:1;31854:28;;:9;:14;;;:28;;;31850:101;;31918:9;31911:16;;;;;;31850:101;32253:261;32260:4;32253:261;;;32293:6;;;;;;;;32338:11;:17;32350:4;32338:17;;;;;;;;;;;32326:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:1;32386:28;;:9;:14;;;:28;;;32382:109;;32454:9;32447:16;;;;;;32382:109;32253:261;;;31804:729;31715:833;31662:886;32576:31;;;;;;;;;;;;;;31506:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;36616:104::-;36685:27;36695:2;36699:8;36685:27;;;;;;;;;;;;:9;:27::i;:::-;36616:104;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;46272:667::-;46435:4;46472:2;46456:36;;;46493:12;:10;:12::i;:::-;46507:4;46513:7;46522:5;46456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46452:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46707:1;46690:6;:13;:18;46686:235;;;46736:40;;;;;;;;;;;;;;46686:235;46879:6;46873:13;46864:6;46860:2;46856:15;46849:38;46452:480;46585:45;;;46575:55;;;:6;:55;;;;46568:62;;;46272:667;;;;;;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;47587:159::-;;;;;:::o;48405:158::-;;;;;:::o;37094:1751::-;37217:20;37240:13;;37217:36;;37282:1;37268:16;;:2;:16;;;37264:48;;;37293:19;;;;;;;;;;;;;;37264:48;37339:1;37327:8;:13;37323:44;;;37349:18;;;;;;;;;;;;;;37323:44;37380:61;37410:1;37414:2;37418:12;37432:8;37380:21;:61::i;:::-;37753:8;37718:12;:16;37731:2;37718:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37817:8;37777:12;:16;37790:2;37777:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37876:2;37843:11;:25;37855:12;37843:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37943:15;37893:11;:25;37905:12;37893:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37976:20;37999:12;37976:35;;38026:11;38055:8;38040:12;:23;38026:37;;38084:15;:2;:13;;;:15::i;:::-;38080:633;;;38120:314;38176:12;38172:2;38151:38;;38168:1;38151:38;;;;;;;;;;;;38217:69;38256:1;38260:2;38264:14;;;;;;38280:5;38217:30;:69::i;:::-;38212:174;;38322:40;;;;;;;;;;;;;;38212:174;38429:3;38413:12;:19;;38120:314;;38515:12;38498:13;;:29;38494:43;;38529:8;;;38494:43;38080:633;;;38578:120;38634:14;;;;;;38630:2;38609:40;;38626:1;38609:40;;;;;;;;;;;;38693:3;38677:12;:19;;38578:120;;38080:633;38743:12;38727:13;:28;;;;37693:1074;;38777:60;38806:1;38810:2;38814:12;38828:8;38777:20;:60::i;:::-;37206:1639;37094:1751;;;:::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;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:400::-;12483:3;12504:84;12586:1;12581:3;12504:84;:::i;:::-;12497:91;;12597:93;12686:3;12597:93;:::i;:::-;12715:1;12710:3;12706:11;12699:18;;12323:400;;;:::o;12729:366::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:398::-;13632:3;13653:83;13734:1;13729:3;13653:83;:::i;:::-;13646:90;;13745:93;13834:3;13745:93;:::i;:::-;13863:1;13858:3;13854:11;13847:18;;13473:398;;;:::o;13877:366::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:::-;14391:3;14412:67;14476:2;14471:3;14412:67;:::i;:::-;14405:74;;14488:93;14577:3;14488:93;:::i;:::-;14606:2;14601:3;14597:12;14590:19;;14249:366;;;:::o;14621:::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:400::-;15525:3;15546:84;15628:1;15623:3;15546:84;:::i;:::-;15539:91;;15639:93;15728:3;15639:93;:::i;:::-;15757:1;15752:3;15748:11;15741:18;;15365:400;;;:::o;15771:118::-;15858:24;15876:5;15858:24;:::i;:::-;15853:3;15846:37;15771:118;;:::o;15895:961::-;16274:3;16296:92;16384:3;16375:6;16296:92;:::i;:::-;16289:99;;16405:148;16549:3;16405:148;:::i;:::-;16398:155;;16570:95;16661:3;16652:6;16570:95;:::i;:::-;16563:102;;16682:148;16826:3;16682:148;:::i;:::-;16675:155;;16847:3;16840:10;;15895:961;;;;;:::o;16862:379::-;17046:3;17068:147;17211:3;17068:147;:::i;:::-;17061:154;;17232:3;17225:10;;16862:379;;;:::o;17247:222::-;17340:4;17378:2;17367:9;17363:18;17355:26;;17391:71;17459:1;17448:9;17444:17;17435:6;17391:71;:::i;:::-;17247:222;;;;:::o;17475:640::-;17670:4;17708:3;17697:9;17693:19;17685:27;;17722:71;17790:1;17779:9;17775:17;17766:6;17722:71;:::i;:::-;17803:72;17871:2;17860:9;17856:18;17847:6;17803:72;:::i;:::-;17885;17953:2;17942:9;17938:18;17929:6;17885:72;:::i;:::-;18004:9;17998:4;17994:20;17989:2;17978:9;17974:18;17967:48;18032:76;18103:4;18094:6;18032:76;:::i;:::-;18024:84;;17475:640;;;;;;;:::o;18121:210::-;18208:4;18246:2;18235:9;18231:18;18223:26;;18259:65;18321:1;18310:9;18306:17;18297:6;18259:65;:::i;:::-;18121:210;;;;:::o;18337:313::-;18450:4;18488:2;18477:9;18473:18;18465:26;;18537:9;18531:4;18527:20;18523:1;18512:9;18508:17;18501:47;18565:78;18638:4;18629:6;18565:78;:::i;:::-;18557:86;;18337:313;;;;:::o;18656:419::-;18822:4;18860:2;18849:9;18845:18;18837:26;;18909:9;18903:4;18899:20;18895:1;18884:9;18880:17;18873:47;18937:131;19063:4;18937:131;:::i;:::-;18929:139;;18656:419;;;:::o;19081:::-;19247:4;19285:2;19274:9;19270:18;19262:26;;19334:9;19328:4;19324:20;19320:1;19309:9;19305:17;19298:47;19362:131;19488:4;19362:131;:::i;:::-;19354:139;;19081:419;;;:::o;19506:::-;19672:4;19710:2;19699:9;19695:18;19687:26;;19759:9;19753:4;19749:20;19745:1;19734:9;19730:17;19723:47;19787:131;19913:4;19787:131;:::i;:::-;19779:139;;19506:419;;;:::o;19931:::-;20097:4;20135:2;20124:9;20120:18;20112:26;;20184:9;20178:4;20174:20;20170:1;20159:9;20155:17;20148:47;20212:131;20338:4;20212:131;:::i;:::-;20204:139;;19931:419;;;:::o;20356:::-;20522:4;20560:2;20549:9;20545:18;20537:26;;20609:9;20603:4;20599:20;20595:1;20584:9;20580:17;20573:47;20637:131;20763:4;20637:131;:::i;:::-;20629:139;;20356:419;;;:::o;20781:::-;20947:4;20985:2;20974:9;20970:18;20962:26;;21034:9;21028:4;21024:20;21020:1;21009:9;21005:17;20998:47;21062:131;21188:4;21062:131;:::i;:::-;21054:139;;20781:419;;;:::o;21206:::-;21372:4;21410:2;21399:9;21395:18;21387:26;;21459:9;21453:4;21449:20;21445:1;21434:9;21430:17;21423:47;21487:131;21613:4;21487:131;:::i;:::-;21479:139;;21206:419;;;:::o;21631:::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:222::-;24274:4;24312:2;24301:9;24297:18;24289:26;;24325:71;24393:1;24382:9;24378:17;24369:6;24325:71;:::i;:::-;24181:222;;;;:::o;24409:129::-;24443:6;24470:20;;:::i;:::-;24460:30;;24499:33;24527:4;24519:6;24499:33;:::i;:::-;24409:129;;;:::o;24544:75::-;24577:6;24610:2;24604:9;24594:19;;24544:75;:::o;24625:307::-;24686:4;24776:18;24768:6;24765:30;24762:56;;;24798:18;;:::i;:::-;24762:56;24836:29;24858:6;24836:29;:::i;:::-;24828:37;;24920:4;24914;24910:15;24902:23;;24625:307;;;:::o;24938:308::-;25000:4;25090:18;25082:6;25079:30;25076:56;;;25112:18;;:::i;:::-;25076:56;25150:29;25172:6;25150:29;:::i;:::-;25142:37;;25234:4;25228;25224:15;25216:23;;24938:308;;;:::o;25252:141::-;25301:4;25324:3;25316:11;;25347:3;25344:1;25337:14;25381:4;25378:1;25368:18;25360:26;;25252:141;;;:::o;25399:98::-;25450:6;25484:5;25478:12;25468:22;;25399:98;;;:::o;25503:99::-;25555:6;25589:5;25583:12;25573:22;;25503:99;;;:::o;25608:168::-;25691:11;25725:6;25720:3;25713:19;25765:4;25760:3;25756:14;25741:29;;25608:168;;;;:::o;25782:147::-;25883:11;25920:3;25905:18;;25782:147;;;;:::o;25935:169::-;26019:11;26053:6;26048:3;26041:19;26093:4;26088:3;26084:14;26069:29;;25935:169;;;;:::o;26110:148::-;26212:11;26249:3;26234:18;;26110:148;;;;:::o;26264:305::-;26304:3;26323:20;26341:1;26323:20;:::i;:::-;26318:25;;26357:20;26375:1;26357:20;:::i;:::-;26352:25;;26511:1;26443:66;26439:74;26436:1;26433:81;26430:107;;;26517:18;;:::i;:::-;26430:107;26561:1;26558;26554:9;26547:16;;26264:305;;;;:::o;26575:185::-;26615:1;26632:20;26650:1;26632:20;:::i;:::-;26627:25;;26666:20;26684:1;26666:20;:::i;:::-;26661:25;;26705:1;26695:35;;26710:18;;:::i;:::-;26695:35;26752:1;26749;26745:9;26740:14;;26575:185;;;;:::o;26766:348::-;26806:7;26829:20;26847:1;26829:20;:::i;:::-;26824:25;;26863:20;26881:1;26863:20;:::i;:::-;26858:25;;27051:1;26983:66;26979:74;26976:1;26973:81;26968:1;26961:9;26954:17;26950:105;26947:131;;;27058:18;;:::i;:::-;26947:131;27106:1;27103;27099:9;27088:20;;26766:348;;;;:::o;27120:191::-;27160:4;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27214:20;27232:1;27214:20;:::i;:::-;27209:25;;27253:1;27250;27247:8;27244:34;;;27258:18;;:::i;:::-;27244:34;27303:1;27300;27296:9;27288:17;;27120:191;;;;:::o;27317:96::-;27354:7;27383:24;27401:5;27383:24;:::i;:::-;27372:35;;27317:96;;;:::o;27419:90::-;27453:7;27496:5;27489:13;27482:21;27471:32;;27419:90;;;:::o;27515:149::-;27551:7;27591:66;27584:5;27580:78;27569:89;;27515:149;;;:::o;27670:126::-;27707:7;27747:42;27740:5;27736:54;27725:65;;27670:126;;;:::o;27802:77::-;27839:7;27868:5;27857:16;;27802:77;;;:::o;27885:154::-;27969:6;27964:3;27959;27946:30;28031:1;28022:6;28017:3;28013:16;28006:27;27885:154;;;:::o;28045:307::-;28113:1;28123:113;28137:6;28134:1;28131:13;28123:113;;;28222:1;28217:3;28213:11;28207:18;28203:1;28198:3;28194:11;28187:39;28159:2;28156:1;28152:10;28147:15;;28123:113;;;28254:6;28251:1;28248:13;28245:101;;;28334:1;28325:6;28320:3;28316:16;28309:27;28245:101;28094:258;28045:307;;;:::o;28358:320::-;28402:6;28439:1;28433:4;28429:12;28419:22;;28486:1;28480:4;28476:12;28507:18;28497:81;;28563:4;28555:6;28551:17;28541:27;;28497:81;28625:2;28617:6;28614:14;28594:18;28591:38;28588:84;;;28644:18;;:::i;:::-;28588:84;28409:269;28358:320;;;:::o;28684:281::-;28767:27;28789:4;28767:27;:::i;:::-;28759:6;28755:40;28897:6;28885:10;28882:22;28861:18;28849:10;28846:34;28843:62;28840:88;;;28908:18;;:::i;:::-;28840:88;28948:10;28944:2;28937:22;28727:238;28684:281;;:::o;28971:233::-;29010:3;29033:24;29051:5;29033:24;:::i;:::-;29024:33;;29079:66;29072:5;29069:77;29066:103;;;29149:18;;:::i;:::-;29066:103;29196:1;29189:5;29185:13;29178:20;;28971:233;;;:::o;29210:176::-;29242:1;29259:20;29277:1;29259:20;:::i;:::-;29254:25;;29293:20;29311:1;29293:20;:::i;:::-;29288:25;;29332:1;29322:35;;29337:18;;:::i;:::-;29322:35;29378:1;29375;29371:9;29366:14;;29210:176;;;;:::o;29392:180::-;29440:77;29437:1;29430:88;29537:4;29534:1;29527:15;29561:4;29558:1;29551:15;29578:180;29626:77;29623:1;29616:88;29723:4;29720:1;29713:15;29747:4;29744:1;29737:15;29764:180;29812:77;29809:1;29802:88;29909:4;29906:1;29899:15;29933:4;29930:1;29923:15;29950:180;29998:77;29995:1;29988:88;30095:4;30092:1;30085:15;30119:4;30116:1;30109:15;30136:180;30184:77;30181:1;30174:88;30281:4;30278:1;30271:15;30305:4;30302:1;30295:15;30322:117;30431:1;30428;30421:12;30445:117;30554:1;30551;30544:12;30568:117;30677:1;30674;30667:12;30691:117;30800:1;30797;30790:12;30814:102;30855:6;30906:2;30902:7;30897:2;30890:5;30886:14;30882:28;30872:38;;30814:102;;;:::o;30922:157::-;31062:9;31058:1;31050:6;31046:14;31039:33;30922:157;:::o;31085:225::-;31225:34;31221:1;31213:6;31209:14;31202:58;31294:8;31289:2;31281:6;31277:15;31270:33;31085:225;:::o;31316:180::-;31456:32;31452:1;31444:6;31440:14;31433:56;31316:180;:::o;31502:245::-;31642:34;31638:1;31630:6;31626:14;31619:58;31711:28;31706:2;31698:6;31694:15;31687:53;31502:245;:::o;31753:179::-;31893:31;31889:1;31881:6;31877:14;31870:55;31753:179;:::o;31938:221::-;32078:34;32074:1;32066:6;32062:14;32055:58;32147:4;32142:2;32134:6;32130:15;32123:29;31938:221;:::o;32165:173::-;32305:25;32301:1;32293:6;32289:14;32282:49;32165:173;:::o;32344:155::-;32484:7;32480:1;32472:6;32468:14;32461:31;32344:155;:::o;32505:182::-;32645:34;32641:1;32633:6;32629:14;32622:58;32505:182;:::o;32693:234::-;32833:34;32829:1;32821:6;32817:14;32810:58;32902:17;32897:2;32889:6;32885:15;32878:42;32693:234;:::o;32933:114::-;;:::o;33053:169::-;33193:21;33189:1;33181:6;33177:14;33170:45;33053:169;:::o;33228:174::-;33368:26;33364:1;33356:6;33352:14;33345:50;33228:174;:::o;33408:181::-;33548:33;33544:1;33536:6;33532:14;33525:57;33408:181;:::o;33595:173::-;33735:25;33731:1;33723:6;33719:14;33712:49;33595:173;:::o;33774:151::-;33914:3;33910:1;33902:6;33898:14;33891:27;33774:151;:::o;33931:122::-;34004:24;34022:5;34004:24;:::i;:::-;33997:5;33994:35;33984:63;;34043:1;34040;34033:12;33984:63;33931:122;:::o;34059:116::-;34129:21;34144:5;34129:21;:::i;:::-;34122:5;34119:32;34109:60;;34165:1;34162;34155:12;34109:60;34059:116;:::o;34181:120::-;34253:23;34270:5;34253:23;:::i;:::-;34246:5;34243:34;34233:62;;34291:1;34288;34281:12;34233:62;34181:120;:::o;34307:122::-;34380:24;34398:5;34380:24;:::i;:::-;34373:5;34370:35;34360:63;;34419:1;34416;34409:12;34360:63;34307:122;:::o

Swarm Source

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