ETH Price: $3,403.91 (-1.60%)
Gas: 8 Gwei

Token

MyBeautifulDarkTwistedFantasy (MBDTF)
 

Overview

Max Total Supply

1,000 MBDTF

Holders

479

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptogenik.eth
Balance
1 MBDTF
0x1264eb4ad33cef667c0fe2a84150b6a98ff4caf7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BEEBLE BLOCKS presents MY BEAUTIFUL DARK TWISTED FANTASY: a genesis collection. This collection is an exploration of other-worldly cityscapes and dark fantasies in the visual aesthetic of BEEBLE’s distinct style with abstract digital paint in psychedelic colors.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MyBeautifulDarkTwistedFantasy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : BeebleBlock.sol
// 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/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: beebleblocks.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

    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;

        _;

        _status = _NOT_ENTERED;
    }
}

//newerc.sol

import "@openzeppelin/[email protected]/utils/cryptography/MerkleProof.sol";

pragma solidity ^0.8.0;


contract MyBeautifulDarkTwistedFantasy is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.0088 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxFree = 1000;
    uint256 public maxperAddressFreeLimit = 1;
    uint256 public maxperAddressPublicMint = 1;
    bool public revealed;
    bytes32 private merkleRoot;
    mapping(address => uint256) public whitelistFreeClaimed;
    mapping(address => uint256) public whitelistPaidClaimed;
    bool public whitelistActive;
    bool private whitelistEnded;
    bool public PublicActive;
    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("MyBeautifulDarkTwistedFantasy", "MBDTF") {
    }

    modifier WLnotEnded() {
        require(!whitelistEnded, "WHITELIST_ENDED");
        _;
    }

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

    function mintFreeWL(bytes32[] memory _merkleProof) external payable WLnotEnded {
        require(whitelistActive, "WHITELIST_INACTIVE");
        uint256 s = totalSupply();
        require(s + 1 <= maxSupply, "Cant go over supply");
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
        require(whitelistFreeClaimed[msg.sender] + 1 <= 1, "WLFREE_MAXED");
        unchecked {
            whitelistFreeClaimed[msg.sender] += 1;
        }
        _safeMint(msg.sender, 1);
    }

    function mintPaidWL(bytes32[] memory _merkleProof) public payable WLnotEnded {
        require(whitelistActive, "WHITELIST_INACTIVE");
        uint256 s = totalSupply();
        require(s + 1 <= maxSupply, "Cant go over supply");
        require(msg.value >= cost);
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
        require(whitelistPaidClaimed[msg.sender] + 1 <= 1, "WLPAID_MAXED");
        unchecked {
            whitelistPaidClaimed[msg.sender] += 1;
        }
        _safeMint(msg.sender, 1);
        delete s;
    }

    function mintFree(uint256 _mintAmount) public payable nonReentrant{
        require(PublicActive, "PUBLIC_INACTIVE");
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mintPublic(uint256 _mintAmount) public payable nonReentrant {
        require(PublicActive, "PUBLIC_INACTIVE");
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function releaseAirdropsAndTreasury(address _account, uint256 _quantity)
        external
        onlyOwner
    {
        require(_quantity > 0, "INVALID_QUANTITY");
        _safeMint(_account, _quantity);
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Cannot query non-existent token");
        if (revealed) {
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
        } else {
            return baseURI;
        }
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function activateWhitelist() external onlyOwner {
        !whitelistActive ? whitelistActive = true : whitelistActive = false;
    }

    function activatePublicSale() external onlyOwner {
        whitelistActive = false;
        if (!whitelistEnded) whitelistEnded = true;
        !PublicActive ? PublicActive = true : PublicActive = false;
    }

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

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
        maxFree = _newMaxFreeSupply;
    }

    function setBaseURI(string calldata _baseURI, bool reveal) external onlyOwner {
        if (!revealed && reveal) revealed = reveal; 
        baseURI = _baseURI;
    }

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _amount;
    }
    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

File 2 of 2 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"PublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintFreeWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPaidWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"releaseAirdropsAndTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"reveal","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistFreeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistPaidClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052661f438daa060000600a556103e8600b556103e8600c556001600d556001600e553480156200003257600080fd5b506040518060400160405280601d81526020017f4d7942656175746966756c4461726b5477697374656446616e746173790000008152506040518060400160405280600581526020017f4d424454460000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001ea565b508060029080519060200190620000d0929190620001ea565b505050620000f3620000e76200011c60201b60201c565b6200012460201b60201c565b6000600760146101000a81548160ff0219169083151502179055506001600881905550620002ff565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f8906200029a565b90600052602060002090601f0160209004810192826200021c576000855562000268565b82601f106200023757805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002675782518255916020019190600101906200024a565b5b5090506200027791906200027b565b5090565b5b80821115620002965760008160009055506001016200027c565b5090565b60006002820490506001821680620002b357607f821691505b60208210811415620002ca57620002c9620002d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6158b2806200030f6000396000f3fe6080604052600436106102935760003560e01c80636c0360eb1161015a578063a4146733116100c1578063c89b350d1161007a578063c89b350d146109a9578063d5abeb01146109d4578063dc4e66b5146109ff578063e985e9c514610a28578063efd0cbf914610a65578063f2fde38b14610a8157610293565b8063a4146733146108ac578063b4dd6777146108c8578063b64b21ca146108f1578063b88d4fde1461091a578063bde12d7314610943578063c87b56dd1461096c57610293565b80637cb64759116101135780637cb64759146107d157806389e877a3146107fa5780638a865371146108115780638da5cb5b1461082d57806395d89b4114610858578063a22cb4651461088357610293565b80636c0360eb146106bc5780636fae5a5c146106e757806370a0823114610724578063715018a61461076157806377ad99f0146107785780637c6b172d1461079457610293565b80632f745c59116101fe578063485a68a3116101b7578063485a68a3146105965780634f6ccce7146105c157806351830227146105fe57806356569a1d146106295780635c975abb146106545780636352211e1461067f57610293565b80632f745c59146104b657806334c8fd75146104f35780633ccfd60b1461051e57806342842e0e1461052857806342fb91bd1461055157806344a0d68a1461056d57610293565b806311eb30471161025057806311eb3047146103ba57806313faede6146103d1578063146f14cb146103fc57806318160ddd14610439578063228025e81461046457806323b872dd1461048d57610293565b806301ffc9a714610298578063022d67dd146102d557806302ce5813146102fe57806306fdde0314610329578063081812fc14610354578063095ea7b314610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fc1565b610aaa565b6040516102cc919061474c565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f7919061407b565b610bf4565b005b34801561030a57600080fd5b50610313610c7a565b604051610320919061474c565b60405180910390f35b34801561033557600080fd5b5061033e610c8d565b60405161034b9190614767565b60405180910390f35b34801561036057600080fd5b5061037b6004803603810190610376919061407b565b610d1f565b60405161038891906146e5565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613f0b565b610da4565b005b3480156103c657600080fd5b506103cf610ebd565b005b3480156103dd57600080fd5b506103e6610fd6565b6040516103f39190614b89565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613d88565b610fdc565b6040516104309190614b89565b60405180910390f35b34801561044557600080fd5b5061044e610ff4565b60405161045b9190614b89565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061407b565b610ffd565b005b34801561049957600080fd5b506104b460048036038101906104af9190613df5565b6110c8565b005b3480156104c257600080fd5b506104dd60048036038101906104d89190613f0b565b6110d8565b6040516104ea9190614b89565b60405180910390f35b3480156104ff57600080fd5b506105086112ca565b6040516105159190614b89565b60405180910390f35b6105266112d0565b005b34801561053457600080fd5b5061054f600480360381019061054a9190613df5565b6113c5565b005b61056b60048036038101906105669190613f4b565b6113e5565b005b34801561057957600080fd5b50610594600480360381019061058f919061407b565b61164b565b005b3480156105a257600080fd5b506105ab6116d1565b6040516105b89190614b89565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061407b565b6116d7565b6040516105f59190614b89565b60405180910390f35b34801561060a57600080fd5b5061061361172a565b604051610620919061474c565b60405180910390f35b34801561063557600080fd5b5061063e61173d565b60405161064b9190614b89565b60405180910390f35b34801561066057600080fd5b50610669611743565b604051610676919061474c565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061407b565b61175a565b6040516106b391906146e5565b60405180910390f35b3480156106c857600080fd5b506106d1611770565b6040516106de9190614767565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190613d88565b6117fe565b60405161071b9190614b89565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613d88565b611816565b6040516107589190614b89565b60405180910390f35b34801561076d57600080fd5b506107766118ff565b005b610792600480360381019061078d919061407b565b611987565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190613d88565b611a7d565b6040516107c89190614b89565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613f94565b611a95565b005b34801561080657600080fd5b5061080f611b1b565b005b61082b60048036038101906108269190613f4b565b611be9565b005b34801561083957600080fd5b50610842611e62565b60405161084f91906146e5565b60405180910390f35b34801561086457600080fd5b5061086d611e8c565b60405161087a9190614767565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613ecb565b611f1e565b005b6108c660048036038101906108c1919061407b565b61209f565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613f0b565b612300565b005b3480156108fd57600080fd5b506109186004803603810190610913919061401b565b6123cd565b005b34801561092657600080fd5b50610941600480360381019061093c9190613e48565b61249a565b005b34801561094f57600080fd5b5061096a6004803603810190610965919061407b565b6124f6565b005b34801561097857600080fd5b50610993600480360381019061098e919061407b565b61257c565b6040516109a09190614767565b60405180910390f35b3480156109b557600080fd5b506109be6126a0565b6040516109cb919061474c565b60405180910390f35b3480156109e057600080fd5b506109e96126b3565b6040516109f69190614b89565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a21919061407b565b6126b9565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190613db5565b61273f565b604051610a5c919061474c565b60405180910390f35b610a7f6004803603810190610a7a919061407b565b6127d3565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa39190613d88565b612988565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bdd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bed5750610bec82612a80565b5b9050919050565b610bfc612aea565b73ffffffffffffffffffffffffffffffffffffffff16610c1a611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c67906149a9565b60405180910390fd5b80600e8190555050565b601360009054906101000a900460ff1681565b606060018054610c9c90614e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc890614e5e565b8015610d155780601f10610cea57610100808354040283529160200191610d15565b820191906000526020600020905b815481529060010190602001808311610cf857829003601f168201915b5050505050905090565b6000610d2a82612af2565b610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090614b69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610daf8261175a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614a49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e3f612aea565b73ffffffffffffffffffffffffffffffffffffffff161480610e6e5750610e6d81610e68612aea565b61273f565b5b610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906148e9565b60405180910390fd5b610eb8838383612aff565b505050565b610ec5612aea565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906149a9565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550601360019054906101000a900460ff16610f84576001601360016101000a81548160ff0219169083151502179055505b601360029054906101000a900460ff1615610fb8576000601360026101000a81548160ff0219169083151502179055610fd3565b6001601360026101000a81548160ff02191690831515021790555b50565b600a5481565b60126020528060005260406000206000915090505481565b60008054905090565b611005612aea565b73ffffffffffffffffffffffffffffffffffffffff16611023611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906149a9565b60405180910390fd5b600b548111156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590614909565b60405180910390fd5b80600b8190555050565b6110d3838383612bb1565b505050565b60006110e383611816565b8210611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614789565b60405180910390fd5b600061112e610ff4565b905060008060005b83811015611288576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461122857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561127a57868414156112715781955050505050506112c4565b83806001019450505b508080600101915050611136565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614b09565b60405180910390fd5b92915050565b600e5481565b6112d8612aea565b73ffffffffffffffffffffffffffffffffffffffff166112f6611e62565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906149a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611372906146d0565b60006040518083038185875af1925050503d80600081146113af576040519150601f19603f3d011682016040523d82523d6000602084013e6113b4565b606091505b50509050806113c257600080fd5b50565b6113e08383836040518060200160405280600081525061249a565b505050565b601360019054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906148a9565b60405180910390fd5b601360009054906101000a900460ff16611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906148c9565b60405180910390fd5b600061148e610ff4565b9050600b546001826114a09190614c89565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614949565b60405180910390fd5b60006114eb612aea565b6040516020016114fb9190614691565b60405160208183030381529060405280519060200120905061152083601054836130f1565b61155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906147c9565b60405180910390fd5b600180601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ac9190614c89565b11156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490614889565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611646336001613108565b505050565b611653612aea565b73ffffffffffffffffffffffffffffffffffffffff16611671611e62565b73ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906149a9565b60405180910390fd5b80600a8190555050565b600c5481565b60006116e1610ff4565b8210611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990614849565b60405180910390fd5b819050919050565b600f60009054906101000a900460ff1681565b600d5481565b6000600760149054906101000a900460ff16905090565b600061176582613126565b600001519050919050565b6009805461177d90614e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546117a990614e5e565b80156117f65780601f106117cb576101008083540402835291602001916117f6565b820191906000526020600020905b8154815290600101906020018083116117d957829003601f168201915b505050505081565b60116020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90614929565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611907612aea565b73ffffffffffffffffffffffffffffffffffffffff16611925611e62565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906149a9565b60405180910390fd5b61198560006132c0565b565b61198f612aea565b73ffffffffffffffffffffffffffffffffffffffff166119ad611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa906149a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051611a29906146d0565b60006040518083038185875af1925050503d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b5050905080611a7957600080fd5b5050565b60146020528060005260406000206000915090505481565b611a9d612aea565b73ffffffffffffffffffffffffffffffffffffffff16611abb611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906149a9565b60405180910390fd5b8060108190555050565b611b23612aea565b73ffffffffffffffffffffffffffffffffffffffff16611b41611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906149a9565b60405180910390fd5b601360009054906101000a900460ff1615611bcb576000601360006101000a81548160ff0219169083151502179055611be6565b6001601360006101000a81548160ff02191690831515021790555b50565b601360019054906101000a900460ff1615611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c30906148a9565b60405180910390fd5b601360009054906101000a900460ff16611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906148c9565b60405180910390fd5b6000611c92610ff4565b9050600b54600182611ca49190614c89565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614949565b60405180910390fd5b600a54341015611cf457600080fd5b6000611cfe612aea565b604051602001611d0e9190614691565b604051602081830303815290604052805190602001209050611d3383601054836130f1565b611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906147c9565b60405180910390fd5b600180601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dbf9190614c89565b1115611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790614a09565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e59336001613108565b60009150505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611e9b90614e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790614e5e565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b611f26612aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b906149c9565b60405180910390fd5b8060066000611fa1612aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661204e612aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612093919061474c565b60405180910390a35050565b600260085414156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614b29565b60405180910390fd5b6002600881905550601360029054906101000a900460ff1661213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390614969565b60405180910390fd5b6000612146610ff4565b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54838261219b9190614c89565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614829565b60405180910390fd5b6000831161221f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612216906147a9565b60405180910390fd5b600c54838361222e9190614c89565b111561226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690614949565b60405180910390fd5b60005b838110156122e057601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122ca90614ec1565b9190505550806122d990614ec1565b9050612272565b506122eb3384613108565b60009150600090505050600160088190555050565b612308612aea565b73ffffffffffffffffffffffffffffffffffffffff16612326611e62565b73ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906149a9565b60405180910390fd5b600081116123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614ae9565b60405180910390fd5b6123c98282613108565b5050565b6123d5612aea565b73ffffffffffffffffffffffffffffffffffffffff166123f3611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612440906149a9565b60405180910390fd5b600f60009054906101000a900460ff161580156124635750805b156124835780600f60006101000a81548160ff0219169083151502179055505b828260099190612494929190613ac9565b50505050565b6124a5848484612bb1565b6124b184848484613386565b6124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790614a69565b60405180910390fd5b50505050565b6124fe612aea565b73ffffffffffffffffffffffffffffffffffffffff1661251c611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906149a9565b60405180910390fd5b80600c8190555050565b606061258782612af2565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614a29565b60405180910390fd5b600f60009054906101000a900460ff161561260d5760096125e68361351d565b6040516020016125f79291906146ac565b604051602081830303815290604052905061269b565b6009805461261a90614e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461264690614e5e565b80156126935780601f1061266857610100808354040283529160200191612693565b820191906000526020600020905b81548152906001019060200180831161267657829003601f168201915b505050505090505b919050565b601360029054906101000a900460ff1681565b600b5481565b6126c1612aea565b73ffffffffffffffffffffffffffffffffffffffff166126df611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c906149a9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60026008541415612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614b29565b60405180910390fd5b6002600881905550601360029054906101000a900460ff16612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614969565b60405180910390fd5b600061287a610ff4565b9050600082116128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b6906147a9565b60405180910390fd5b600e54821115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614a89565b60405180910390fd5b600b5482826129139190614c89565b1115612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614949565b60405180910390fd5b81600a546129629190614d10565b34101561296e57600080fd5b6129783383613108565b6000905050600160088190555050565b612990612aea565b73ffffffffffffffffffffffffffffffffffffffff166129ae611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb906149a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b906147e9565b60405180910390fd5b612a7d816132c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612bbc82613126565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612be3612aea565b73ffffffffffffffffffffffffffffffffffffffff161480612c3f5750612c08612aea565b73ffffffffffffffffffffffffffffffffffffffff16612c2784610d1f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c5b5750612c5a8260000151612c55612aea565b61273f565b5b905080612c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c94906149e9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614989565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7690614869565b60405180910390fd5b612d8c858585600161367e565b612d9c6000848460000151612aff565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561308157612fe081612af2565b156130805782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ea8585856001613684565b5050505050565b6000826130fe858461368a565b1490509392505050565b6131228282604051806020016040528060008152506136ff565b5050565b61312e613b4f565b61313782612af2565b613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d90614809565b60405180910390fd5b60008290505b6000811061327f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132705780925050506132bb565b5080806001900391505061317c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614b49565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133a78473ffffffffffffffffffffffffffffffffffffffff16613711565b15613510578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133d0612aea565b8786866040518563ffffffff1660e01b81526004016133f29493929190614700565b602060405180830381600087803b15801561340c57600080fd5b505af192505050801561343d57506040513d601f19601f8201168201806040525081019061343a9190613fee565b60015b6134c0573d806000811461346d576040519150601f19603f3d011682016040523d82523d6000602084013e613472565b606091505b506000815114156134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90614a69565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613515565b600190505b949350505050565b60606000821415613565576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613679565b600082905060005b6000821461359757808061358090614ec1565b915050600a826135909190614cdf565b915061356d565b60008167ffffffffffffffff8111156135b3576135b261501b565b5b6040519080825280601f01601f1916602001820160405280156135e55781602001600182028036833780820191505090505b5090505b60008514613672576001826135fe9190614d6a565b9150600a8561360d9190614f2e565b60306136199190614c89565b60f81b81838151811061362f5761362e614fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561366b9190614cdf565b94506135e9565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156136f45760008582815181106136b1576136b0614fec565b5b602002602001015190508083116136d3576136cc8382613734565b92506136e0565b6136dd8184613734565b92505b5080806136ec90614ec1565b915050613693565b508091505092915050565b61370c838383600161374b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b890614aa9565b60405180910390fd5b6000841415613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc90614ac9565b60405180910390fd5b613812600086838761367e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613aac57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9757613a576000888488613386565b613a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8d90614a69565b60405180910390fd5b5b818060010192505080806001019150506139e0565b508060008190555050613ac26000868387613684565b5050505050565b828054613ad590614e5e565b90600052602060002090601f016020900481019282613af75760008555613b3e565b82601f10613b1057803560ff1916838001178555613b3e565b82800160010185558215613b3e579182015b82811115613b3d578235825591602001919060010190613b22565b5b509050613b4b9190613b89565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ba2576000816000905550600101613b8a565b5090565b6000613bb9613bb484614bc9565b614ba4565b90508083825260208201905082856020860282011115613bdc57613bdb615054565b5b60005b85811015613c0c5781613bf28882613cb0565b845260208401935060208301925050600181019050613bdf565b5050509392505050565b6000613c29613c2484614bf5565b614ba4565b905082815260208101848484011115613c4557613c44615059565b5b613c50848285614e1c565b509392505050565b600081359050613c6781615809565b92915050565b600082601f830112613c8257613c8161504f565b5b8135613c92848260208601613ba6565b91505092915050565b600081359050613caa81615820565b92915050565b600081359050613cbf81615837565b92915050565b600081359050613cd48161584e565b92915050565b600081519050613ce98161584e565b92915050565b600082601f830112613d0457613d0361504f565b5b8135613d14848260208601613c16565b91505092915050565b60008083601f840112613d3357613d3261504f565b5b8235905067ffffffffffffffff811115613d5057613d4f61504a565b5b602083019150836001820283011115613d6c57613d6b615054565b5b9250929050565b600081359050613d8281615865565b92915050565b600060208284031215613d9e57613d9d615063565b5b6000613dac84828501613c58565b91505092915050565b60008060408385031215613dcc57613dcb615063565b5b6000613dda85828601613c58565b9250506020613deb85828601613c58565b9150509250929050565b600080600060608486031215613e0e57613e0d615063565b5b6000613e1c86828701613c58565b9350506020613e2d86828701613c58565b9250506040613e3e86828701613d73565b9150509250925092565b60008060008060808587031215613e6257613e61615063565b5b6000613e7087828801613c58565b9450506020613e8187828801613c58565b9350506040613e9287828801613d73565b925050606085013567ffffffffffffffff811115613eb357613eb261505e565b5b613ebf87828801613cef565b91505092959194509250565b60008060408385031215613ee257613ee1615063565b5b6000613ef085828601613c58565b9250506020613f0185828601613c9b565b9150509250929050565b60008060408385031215613f2257613f21615063565b5b6000613f3085828601613c58565b9250506020613f4185828601613d73565b9150509250929050565b600060208284031215613f6157613f60615063565b5b600082013567ffffffffffffffff811115613f7f57613f7e61505e565b5b613f8b84828501613c6d565b91505092915050565b600060208284031215613faa57613fa9615063565b5b6000613fb884828501613cb0565b91505092915050565b600060208284031215613fd757613fd6615063565b5b6000613fe584828501613cc5565b91505092915050565b60006020828403121561400457614003615063565b5b600061401284828501613cda565b91505092915050565b60008060006040848603121561403457614033615063565b5b600084013567ffffffffffffffff8111156140525761405161505e565b5b61405e86828701613d1d565b9350935050602061407186828701613c9b565b9150509250925092565b60006020828403121561409157614090615063565b5b600061409f84828501613d73565b91505092915050565b6140b181614d9e565b82525050565b6140c86140c382614d9e565b614f0a565b82525050565b6140d781614db0565b82525050565b60006140e882614c3b565b6140f28185614c51565b9350614102818560208601614e2b565b61410b81615068565b840191505092915050565b600061412182614c46565b61412b8185614c6d565b935061413b818560208601614e2b565b61414481615068565b840191505092915050565b600061415a82614c46565b6141648185614c7e565b9350614174818560208601614e2b565b80840191505092915050565b6000815461418d81614e5e565b6141978186614c7e565b945060018216600081146141b257600181146141c3576141f6565b60ff198316865281860193506141f6565b6141cc85614c26565b60005b838110156141ee578154818901526001820191506020810190506141cf565b838801955050505b50505092915050565b600061420c602283614c6d565b915061421782615086565b604082019050919050565b600061422f600b83614c6d565b915061423a826150d5565b602082019050919050565b6000614252600e83614c6d565b915061425d826150fe565b602082019050919050565b6000614275602683614c6d565b915061428082615127565b604082019050919050565b6000614298602a83614c6d565b91506142a382615176565b604082019050919050565b60006142bb601c83614c6d565b91506142c6826151c5565b602082019050919050565b60006142de602383614c6d565b91506142e9826151ee565b604082019050919050565b6000614301602583614c6d565b915061430c8261523d565b604082019050919050565b6000614324600c83614c6d565b915061432f8261528c565b602082019050919050565b6000614347600f83614c6d565b9150614352826152b5565b602082019050919050565b600061436a601283614c6d565b9150614375826152de565b602082019050919050565b600061438d603983614c6d565b915061439882615307565b604082019050919050565b60006143b0601a83614c6d565b91506143bb82615356565b602082019050919050565b60006143d3602b83614c6d565b91506143de8261537f565b604082019050919050565b60006143f6601383614c6d565b9150614401826153ce565b602082019050919050565b6000614419600f83614c6d565b9150614424826153f7565b602082019050919050565b600061443c602683614c6d565b915061444782615420565b604082019050919050565b600061445f602083614c6d565b915061446a8261546f565b602082019050919050565b6000614482601a83614c6d565b915061448d82615498565b602082019050919050565b60006144a5603283614c6d565b91506144b0826154c1565b604082019050919050565b60006144c8600c83614c6d565b91506144d382615510565b602082019050919050565b60006144eb601f83614c6d565b91506144f682615539565b602082019050919050565b600061450e602283614c6d565b915061451982615562565b604082019050919050565b6000614531600083614c62565b915061453c826155b1565b600082019050919050565b6000614554603383614c6d565b915061455f826155b4565b604082019050919050565b6000614577601b83614c6d565b915061458282615603565b602082019050919050565b600061459a602183614c6d565b91506145a58261562c565b604082019050919050565b60006145bd602883614c6d565b91506145c88261567b565b604082019050919050565b60006145e0601083614c6d565b91506145eb826156ca565b602082019050919050565b6000614603602e83614c6d565b915061460e826156f3565b604082019050919050565b6000614626601f83614c6d565b915061463182615742565b602082019050919050565b6000614649602f83614c6d565b91506146548261576b565b604082019050919050565b600061466c602d83614c6d565b9150614677826157ba565b604082019050919050565b61468b81614e12565b82525050565b600061469d82846140b7565b60148201915081905092915050565b60006146b88285614180565b91506146c4828461414f565b91508190509392505050565b60006146db82614524565b9150819050919050565b60006020820190506146fa60008301846140a8565b92915050565b600060808201905061471560008301876140a8565b61472260208301866140a8565b61472f6040830185614682565b818103606083015261474181846140dd565b905095945050505050565b600060208201905061476160008301846140ce565b92915050565b600060208201905081810360008301526147818184614116565b905092915050565b600060208201905081810360008301526147a2816141ff565b9050919050565b600060208201905081810360008301526147c281614222565b9050919050565b600060208201905081810360008301526147e281614245565b9050919050565b6000602082019050818103600083015261480281614268565b9050919050565b600060208201905081810360008301526148228161428b565b9050919050565b60006020820190508181036000830152614842816142ae565b9050919050565b60006020820190508181036000830152614862816142d1565b9050919050565b60006020820190508181036000830152614882816142f4565b9050919050565b600060208201905081810360008301526148a281614317565b9050919050565b600060208201905081810360008301526148c28161433a565b9050919050565b600060208201905081810360008301526148e28161435d565b9050919050565b6000602082019050818103600083015261490281614380565b9050919050565b60006020820190508181036000830152614922816143a3565b9050919050565b60006020820190508181036000830152614942816143c6565b9050919050565b60006020820190508181036000830152614962816143e9565b9050919050565b600060208201905081810360008301526149828161440c565b9050919050565b600060208201905081810360008301526149a28161442f565b9050919050565b600060208201905081810360008301526149c281614452565b9050919050565b600060208201905081810360008301526149e281614475565b9050919050565b60006020820190508181036000830152614a0281614498565b9050919050565b60006020820190508181036000830152614a22816144bb565b9050919050565b60006020820190508181036000830152614a42816144de565b9050919050565b60006020820190508181036000830152614a6281614501565b9050919050565b60006020820190508181036000830152614a8281614547565b9050919050565b60006020820190508181036000830152614aa28161456a565b9050919050565b60006020820190508181036000830152614ac28161458d565b9050919050565b60006020820190508181036000830152614ae2816145b0565b9050919050565b60006020820190508181036000830152614b02816145d3565b9050919050565b60006020820190508181036000830152614b22816145f6565b9050919050565b60006020820190508181036000830152614b4281614619565b9050919050565b60006020820190508181036000830152614b628161463c565b9050919050565b60006020820190508181036000830152614b828161465f565b9050919050565b6000602082019050614b9e6000830184614682565b92915050565b6000614bae614bbf565b9050614bba8282614e90565b919050565b6000604051905090565b600067ffffffffffffffff821115614be457614be361501b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c1057614c0f61501b565b5b614c1982615068565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c9482614e12565b9150614c9f83614e12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cd457614cd3614f5f565b5b828201905092915050565b6000614cea82614e12565b9150614cf583614e12565b925082614d0557614d04614f8e565b5b828204905092915050565b6000614d1b82614e12565b9150614d2683614e12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5f57614d5e614f5f565b5b828202905092915050565b6000614d7582614e12565b9150614d8083614e12565b925082821015614d9357614d92614f5f565b5b828203905092915050565b6000614da982614df2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e49578082015181840152602081019050614e2e565b83811115614e58576000848401525b50505050565b60006002820490506001821680614e7657607f821691505b60208210811415614e8a57614e89614fbd565b5b50919050565b614e9982615068565b810181811067ffffffffffffffff82111715614eb857614eb761501b565b5b80604052505050565b6000614ecc82614e12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eff57614efe614f5f565b5b600182019050919050565b6000614f1582614f1c565b9050919050565b6000614f2782615079565b9050919050565b6000614f3982614e12565b9150614f4483614e12565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f574c465245455f4d415845440000000000000000000000000000000000000000600082015250565b7f57484954454c4953545f454e4445440000000000000000000000000000000000600082015250565b7f57484954454c4953545f494e4143544956450000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f574c504149445f4d415845440000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f5155414e5449545900000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61581281614d9e565b811461581d57600080fd5b50565b61582981614db0565b811461583457600080fd5b50565b61584081614dbc565b811461584b57600080fd5b50565b61585781614dc6565b811461586257600080fd5b50565b61586e81614e12565b811461587957600080fd5b5056fea2646970667358221220a04c809b0bb14539c01b1243697ba9b19294e212c671374989eca1ab7069119264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636c0360eb1161015a578063a4146733116100c1578063c89b350d1161007a578063c89b350d146109a9578063d5abeb01146109d4578063dc4e66b5146109ff578063e985e9c514610a28578063efd0cbf914610a65578063f2fde38b14610a8157610293565b8063a4146733146108ac578063b4dd6777146108c8578063b64b21ca146108f1578063b88d4fde1461091a578063bde12d7314610943578063c87b56dd1461096c57610293565b80637cb64759116101135780637cb64759146107d157806389e877a3146107fa5780638a865371146108115780638da5cb5b1461082d57806395d89b4114610858578063a22cb4651461088357610293565b80636c0360eb146106bc5780636fae5a5c146106e757806370a0823114610724578063715018a61461076157806377ad99f0146107785780637c6b172d1461079457610293565b80632f745c59116101fe578063485a68a3116101b7578063485a68a3146105965780634f6ccce7146105c157806351830227146105fe57806356569a1d146106295780635c975abb146106545780636352211e1461067f57610293565b80632f745c59146104b657806334c8fd75146104f35780633ccfd60b1461051e57806342842e0e1461052857806342fb91bd1461055157806344a0d68a1461056d57610293565b806311eb30471161025057806311eb3047146103ba57806313faede6146103d1578063146f14cb146103fc57806318160ddd14610439578063228025e81461046457806323b872dd1461048d57610293565b806301ffc9a714610298578063022d67dd146102d557806302ce5813146102fe57806306fdde0314610329578063081812fc14610354578063095ea7b314610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fc1565b610aaa565b6040516102cc919061474c565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f7919061407b565b610bf4565b005b34801561030a57600080fd5b50610313610c7a565b604051610320919061474c565b60405180910390f35b34801561033557600080fd5b5061033e610c8d565b60405161034b9190614767565b60405180910390f35b34801561036057600080fd5b5061037b6004803603810190610376919061407b565b610d1f565b60405161038891906146e5565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613f0b565b610da4565b005b3480156103c657600080fd5b506103cf610ebd565b005b3480156103dd57600080fd5b506103e6610fd6565b6040516103f39190614b89565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613d88565b610fdc565b6040516104309190614b89565b60405180910390f35b34801561044557600080fd5b5061044e610ff4565b60405161045b9190614b89565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061407b565b610ffd565b005b34801561049957600080fd5b506104b460048036038101906104af9190613df5565b6110c8565b005b3480156104c257600080fd5b506104dd60048036038101906104d89190613f0b565b6110d8565b6040516104ea9190614b89565b60405180910390f35b3480156104ff57600080fd5b506105086112ca565b6040516105159190614b89565b60405180910390f35b6105266112d0565b005b34801561053457600080fd5b5061054f600480360381019061054a9190613df5565b6113c5565b005b61056b60048036038101906105669190613f4b565b6113e5565b005b34801561057957600080fd5b50610594600480360381019061058f919061407b565b61164b565b005b3480156105a257600080fd5b506105ab6116d1565b6040516105b89190614b89565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061407b565b6116d7565b6040516105f59190614b89565b60405180910390f35b34801561060a57600080fd5b5061061361172a565b604051610620919061474c565b60405180910390f35b34801561063557600080fd5b5061063e61173d565b60405161064b9190614b89565b60405180910390f35b34801561066057600080fd5b50610669611743565b604051610676919061474c565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061407b565b61175a565b6040516106b391906146e5565b60405180910390f35b3480156106c857600080fd5b506106d1611770565b6040516106de9190614767565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190613d88565b6117fe565b60405161071b9190614b89565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613d88565b611816565b6040516107589190614b89565b60405180910390f35b34801561076d57600080fd5b506107766118ff565b005b610792600480360381019061078d919061407b565b611987565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190613d88565b611a7d565b6040516107c89190614b89565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613f94565b611a95565b005b34801561080657600080fd5b5061080f611b1b565b005b61082b60048036038101906108269190613f4b565b611be9565b005b34801561083957600080fd5b50610842611e62565b60405161084f91906146e5565b60405180910390f35b34801561086457600080fd5b5061086d611e8c565b60405161087a9190614767565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613ecb565b611f1e565b005b6108c660048036038101906108c1919061407b565b61209f565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613f0b565b612300565b005b3480156108fd57600080fd5b506109186004803603810190610913919061401b565b6123cd565b005b34801561092657600080fd5b50610941600480360381019061093c9190613e48565b61249a565b005b34801561094f57600080fd5b5061096a6004803603810190610965919061407b565b6124f6565b005b34801561097857600080fd5b50610993600480360381019061098e919061407b565b61257c565b6040516109a09190614767565b60405180910390f35b3480156109b557600080fd5b506109be6126a0565b6040516109cb919061474c565b60405180910390f35b3480156109e057600080fd5b506109e96126b3565b6040516109f69190614b89565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a21919061407b565b6126b9565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190613db5565b61273f565b604051610a5c919061474c565b60405180910390f35b610a7f6004803603810190610a7a919061407b565b6127d3565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa39190613d88565b612988565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bdd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bed5750610bec82612a80565b5b9050919050565b610bfc612aea565b73ffffffffffffffffffffffffffffffffffffffff16610c1a611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c67906149a9565b60405180910390fd5b80600e8190555050565b601360009054906101000a900460ff1681565b606060018054610c9c90614e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc890614e5e565b8015610d155780601f10610cea57610100808354040283529160200191610d15565b820191906000526020600020905b815481529060010190602001808311610cf857829003601f168201915b5050505050905090565b6000610d2a82612af2565b610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090614b69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610daf8261175a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614a49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e3f612aea565b73ffffffffffffffffffffffffffffffffffffffff161480610e6e5750610e6d81610e68612aea565b61273f565b5b610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906148e9565b60405180910390fd5b610eb8838383612aff565b505050565b610ec5612aea565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906149a9565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550601360019054906101000a900460ff16610f84576001601360016101000a81548160ff0219169083151502179055505b601360029054906101000a900460ff1615610fb8576000601360026101000a81548160ff0219169083151502179055610fd3565b6001601360026101000a81548160ff02191690831515021790555b50565b600a5481565b60126020528060005260406000206000915090505481565b60008054905090565b611005612aea565b73ffffffffffffffffffffffffffffffffffffffff16611023611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906149a9565b60405180910390fd5b600b548111156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590614909565b60405180910390fd5b80600b8190555050565b6110d3838383612bb1565b505050565b60006110e383611816565b8210611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614789565b60405180910390fd5b600061112e610ff4565b905060008060005b83811015611288576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461122857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561127a57868414156112715781955050505050506112c4565b83806001019450505b508080600101915050611136565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614b09565b60405180910390fd5b92915050565b600e5481565b6112d8612aea565b73ffffffffffffffffffffffffffffffffffffffff166112f6611e62565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906149a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611372906146d0565b60006040518083038185875af1925050503d80600081146113af576040519150601f19603f3d011682016040523d82523d6000602084013e6113b4565b606091505b50509050806113c257600080fd5b50565b6113e08383836040518060200160405280600081525061249a565b505050565b601360019054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906148a9565b60405180910390fd5b601360009054906101000a900460ff16611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906148c9565b60405180910390fd5b600061148e610ff4565b9050600b546001826114a09190614c89565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614949565b60405180910390fd5b60006114eb612aea565b6040516020016114fb9190614691565b60405160208183030381529060405280519060200120905061152083601054836130f1565b61155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906147c9565b60405180910390fd5b600180601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ac9190614c89565b11156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490614889565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611646336001613108565b505050565b611653612aea565b73ffffffffffffffffffffffffffffffffffffffff16611671611e62565b73ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be906149a9565b60405180910390fd5b80600a8190555050565b600c5481565b60006116e1610ff4565b8210611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990614849565b60405180910390fd5b819050919050565b600f60009054906101000a900460ff1681565b600d5481565b6000600760149054906101000a900460ff16905090565b600061176582613126565b600001519050919050565b6009805461177d90614e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546117a990614e5e565b80156117f65780601f106117cb576101008083540402835291602001916117f6565b820191906000526020600020905b8154815290600101906020018083116117d957829003601f168201915b505050505081565b60116020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90614929565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611907612aea565b73ffffffffffffffffffffffffffffffffffffffff16611925611e62565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906149a9565b60405180910390fd5b61198560006132c0565b565b61198f612aea565b73ffffffffffffffffffffffffffffffffffffffff166119ad611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa906149a9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051611a29906146d0565b60006040518083038185875af1925050503d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b5050905080611a7957600080fd5b5050565b60146020528060005260406000206000915090505481565b611a9d612aea565b73ffffffffffffffffffffffffffffffffffffffff16611abb611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906149a9565b60405180910390fd5b8060108190555050565b611b23612aea565b73ffffffffffffffffffffffffffffffffffffffff16611b41611e62565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906149a9565b60405180910390fd5b601360009054906101000a900460ff1615611bcb576000601360006101000a81548160ff0219169083151502179055611be6565b6001601360006101000a81548160ff02191690831515021790555b50565b601360019054906101000a900460ff1615611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c30906148a9565b60405180910390fd5b601360009054906101000a900460ff16611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906148c9565b60405180910390fd5b6000611c92610ff4565b9050600b54600182611ca49190614c89565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614949565b60405180910390fd5b600a54341015611cf457600080fd5b6000611cfe612aea565b604051602001611d0e9190614691565b604051602081830303815290604052805190602001209050611d3383601054836130f1565b611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906147c9565b60405180910390fd5b600180601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dbf9190614c89565b1115611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790614a09565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e59336001613108565b60009150505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611e9b90614e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790614e5e565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b611f26612aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b906149c9565b60405180910390fd5b8060066000611fa1612aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661204e612aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612093919061474c565b60405180910390a35050565b600260085414156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614b29565b60405180910390fd5b6002600881905550601360029054906101000a900460ff1661213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390614969565b60405180910390fd5b6000612146610ff4565b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54838261219b9190614c89565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614829565b60405180910390fd5b6000831161221f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612216906147a9565b60405180910390fd5b600c54838361222e9190614c89565b111561226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690614949565b60405180910390fd5b60005b838110156122e057601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122ca90614ec1565b9190505550806122d990614ec1565b9050612272565b506122eb3384613108565b60009150600090505050600160088190555050565b612308612aea565b73ffffffffffffffffffffffffffffffffffffffff16612326611e62565b73ffffffffffffffffffffffffffffffffffffffff161461237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906149a9565b60405180910390fd5b600081116123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614ae9565b60405180910390fd5b6123c98282613108565b5050565b6123d5612aea565b73ffffffffffffffffffffffffffffffffffffffff166123f3611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612440906149a9565b60405180910390fd5b600f60009054906101000a900460ff161580156124635750805b156124835780600f60006101000a81548160ff0219169083151502179055505b828260099190612494929190613ac9565b50505050565b6124a5848484612bb1565b6124b184848484613386565b6124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e790614a69565b60405180910390fd5b50505050565b6124fe612aea565b73ffffffffffffffffffffffffffffffffffffffff1661251c611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612569906149a9565b60405180910390fd5b80600c8190555050565b606061258782612af2565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614a29565b60405180910390fd5b600f60009054906101000a900460ff161561260d5760096125e68361351d565b6040516020016125f79291906146ac565b604051602081830303815290604052905061269b565b6009805461261a90614e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461264690614e5e565b80156126935780601f1061266857610100808354040283529160200191612693565b820191906000526020600020905b81548152906001019060200180831161267657829003601f168201915b505050505090505b919050565b601360029054906101000a900460ff1681565b600b5481565b6126c1612aea565b73ffffffffffffffffffffffffffffffffffffffff166126df611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c906149a9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60026008541415612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614b29565b60405180910390fd5b6002600881905550601360029054906101000a900460ff16612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614969565b60405180910390fd5b600061287a610ff4565b9050600082116128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b6906147a9565b60405180910390fd5b600e54821115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614a89565b60405180910390fd5b600b5482826129139190614c89565b1115612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90614949565b60405180910390fd5b81600a546129629190614d10565b34101561296e57600080fd5b6129783383613108565b6000905050600160088190555050565b612990612aea565b73ffffffffffffffffffffffffffffffffffffffff166129ae611e62565b73ffffffffffffffffffffffffffffffffffffffff1614612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb906149a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b906147e9565b60405180910390fd5b612a7d816132c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612bbc82613126565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612be3612aea565b73ffffffffffffffffffffffffffffffffffffffff161480612c3f5750612c08612aea565b73ffffffffffffffffffffffffffffffffffffffff16612c2784610d1f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c5b5750612c5a8260000151612c55612aea565b61273f565b5b905080612c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c94906149e9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614989565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7690614869565b60405180910390fd5b612d8c858585600161367e565b612d9c6000848460000151612aff565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561308157612fe081612af2565b156130805782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ea8585856001613684565b5050505050565b6000826130fe858461368a565b1490509392505050565b6131228282604051806020016040528060008152506136ff565b5050565b61312e613b4f565b61313782612af2565b613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d90614809565b60405180910390fd5b60008290505b6000811061327f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132705780925050506132bb565b5080806001900391505061317c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614b49565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133a78473ffffffffffffffffffffffffffffffffffffffff16613711565b15613510578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133d0612aea565b8786866040518563ffffffff1660e01b81526004016133f29493929190614700565b602060405180830381600087803b15801561340c57600080fd5b505af192505050801561343d57506040513d601f19601f8201168201806040525081019061343a9190613fee565b60015b6134c0573d806000811461346d576040519150601f19603f3d011682016040523d82523d6000602084013e613472565b606091505b506000815114156134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90614a69565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613515565b600190505b949350505050565b60606000821415613565576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613679565b600082905060005b6000821461359757808061358090614ec1565b915050600a826135909190614cdf565b915061356d565b60008167ffffffffffffffff8111156135b3576135b261501b565b5b6040519080825280601f01601f1916602001820160405280156135e55781602001600182028036833780820191505090505b5090505b60008514613672576001826135fe9190614d6a565b9150600a8561360d9190614f2e565b60306136199190614c89565b60f81b81838151811061362f5761362e614fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561366b9190614cdf565b94506135e9565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156136f45760008582815181106136b1576136b0614fec565b5b602002602001015190508083116136d3576136cc8382613734565b92506136e0565b6136dd8184613734565b92505b5080806136ec90614ec1565b915050613693565b508091505092915050565b61370c838383600161374b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b890614aa9565b60405180910390fd5b6000841415613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc90614ac9565b60405180910390fd5b613812600086838761367e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613aac57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a9757613a576000888488613386565b613a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8d90614a69565b60405180910390fd5b5b818060010192505080806001019150506139e0565b508060008190555050613ac26000868387613684565b5050505050565b828054613ad590614e5e565b90600052602060002090601f016020900481019282613af75760008555613b3e565b82601f10613b1057803560ff1916838001178555613b3e565b82800160010185558215613b3e579182015b82811115613b3d578235825591602001919060010190613b22565b5b509050613b4b9190613b89565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ba2576000816000905550600101613b8a565b5090565b6000613bb9613bb484614bc9565b614ba4565b90508083825260208201905082856020860282011115613bdc57613bdb615054565b5b60005b85811015613c0c5781613bf28882613cb0565b845260208401935060208301925050600181019050613bdf565b5050509392505050565b6000613c29613c2484614bf5565b614ba4565b905082815260208101848484011115613c4557613c44615059565b5b613c50848285614e1c565b509392505050565b600081359050613c6781615809565b92915050565b600082601f830112613c8257613c8161504f565b5b8135613c92848260208601613ba6565b91505092915050565b600081359050613caa81615820565b92915050565b600081359050613cbf81615837565b92915050565b600081359050613cd48161584e565b92915050565b600081519050613ce98161584e565b92915050565b600082601f830112613d0457613d0361504f565b5b8135613d14848260208601613c16565b91505092915050565b60008083601f840112613d3357613d3261504f565b5b8235905067ffffffffffffffff811115613d5057613d4f61504a565b5b602083019150836001820283011115613d6c57613d6b615054565b5b9250929050565b600081359050613d8281615865565b92915050565b600060208284031215613d9e57613d9d615063565b5b6000613dac84828501613c58565b91505092915050565b60008060408385031215613dcc57613dcb615063565b5b6000613dda85828601613c58565b9250506020613deb85828601613c58565b9150509250929050565b600080600060608486031215613e0e57613e0d615063565b5b6000613e1c86828701613c58565b9350506020613e2d86828701613c58565b9250506040613e3e86828701613d73565b9150509250925092565b60008060008060808587031215613e6257613e61615063565b5b6000613e7087828801613c58565b9450506020613e8187828801613c58565b9350506040613e9287828801613d73565b925050606085013567ffffffffffffffff811115613eb357613eb261505e565b5b613ebf87828801613cef565b91505092959194509250565b60008060408385031215613ee257613ee1615063565b5b6000613ef085828601613c58565b9250506020613f0185828601613c9b565b9150509250929050565b60008060408385031215613f2257613f21615063565b5b6000613f3085828601613c58565b9250506020613f4185828601613d73565b9150509250929050565b600060208284031215613f6157613f60615063565b5b600082013567ffffffffffffffff811115613f7f57613f7e61505e565b5b613f8b84828501613c6d565b91505092915050565b600060208284031215613faa57613fa9615063565b5b6000613fb884828501613cb0565b91505092915050565b600060208284031215613fd757613fd6615063565b5b6000613fe584828501613cc5565b91505092915050565b60006020828403121561400457614003615063565b5b600061401284828501613cda565b91505092915050565b60008060006040848603121561403457614033615063565b5b600084013567ffffffffffffffff8111156140525761405161505e565b5b61405e86828701613d1d565b9350935050602061407186828701613c9b565b9150509250925092565b60006020828403121561409157614090615063565b5b600061409f84828501613d73565b91505092915050565b6140b181614d9e565b82525050565b6140c86140c382614d9e565b614f0a565b82525050565b6140d781614db0565b82525050565b60006140e882614c3b565b6140f28185614c51565b9350614102818560208601614e2b565b61410b81615068565b840191505092915050565b600061412182614c46565b61412b8185614c6d565b935061413b818560208601614e2b565b61414481615068565b840191505092915050565b600061415a82614c46565b6141648185614c7e565b9350614174818560208601614e2b565b80840191505092915050565b6000815461418d81614e5e565b6141978186614c7e565b945060018216600081146141b257600181146141c3576141f6565b60ff198316865281860193506141f6565b6141cc85614c26565b60005b838110156141ee578154818901526001820191506020810190506141cf565b838801955050505b50505092915050565b600061420c602283614c6d565b915061421782615086565b604082019050919050565b600061422f600b83614c6d565b915061423a826150d5565b602082019050919050565b6000614252600e83614c6d565b915061425d826150fe565b602082019050919050565b6000614275602683614c6d565b915061428082615127565b604082019050919050565b6000614298602a83614c6d565b91506142a382615176565b604082019050919050565b60006142bb601c83614c6d565b91506142c6826151c5565b602082019050919050565b60006142de602383614c6d565b91506142e9826151ee565b604082019050919050565b6000614301602583614c6d565b915061430c8261523d565b604082019050919050565b6000614324600c83614c6d565b915061432f8261528c565b602082019050919050565b6000614347600f83614c6d565b9150614352826152b5565b602082019050919050565b600061436a601283614c6d565b9150614375826152de565b602082019050919050565b600061438d603983614c6d565b915061439882615307565b604082019050919050565b60006143b0601a83614c6d565b91506143bb82615356565b602082019050919050565b60006143d3602b83614c6d565b91506143de8261537f565b604082019050919050565b60006143f6601383614c6d565b9150614401826153ce565b602082019050919050565b6000614419600f83614c6d565b9150614424826153f7565b602082019050919050565b600061443c602683614c6d565b915061444782615420565b604082019050919050565b600061445f602083614c6d565b915061446a8261546f565b602082019050919050565b6000614482601a83614c6d565b915061448d82615498565b602082019050919050565b60006144a5603283614c6d565b91506144b0826154c1565b604082019050919050565b60006144c8600c83614c6d565b91506144d382615510565b602082019050919050565b60006144eb601f83614c6d565b91506144f682615539565b602082019050919050565b600061450e602283614c6d565b915061451982615562565b604082019050919050565b6000614531600083614c62565b915061453c826155b1565b600082019050919050565b6000614554603383614c6d565b915061455f826155b4565b604082019050919050565b6000614577601b83614c6d565b915061458282615603565b602082019050919050565b600061459a602183614c6d565b91506145a58261562c565b604082019050919050565b60006145bd602883614c6d565b91506145c88261567b565b604082019050919050565b60006145e0601083614c6d565b91506145eb826156ca565b602082019050919050565b6000614603602e83614c6d565b915061460e826156f3565b604082019050919050565b6000614626601f83614c6d565b915061463182615742565b602082019050919050565b6000614649602f83614c6d565b91506146548261576b565b604082019050919050565b600061466c602d83614c6d565b9150614677826157ba565b604082019050919050565b61468b81614e12565b82525050565b600061469d82846140b7565b60148201915081905092915050565b60006146b88285614180565b91506146c4828461414f565b91508190509392505050565b60006146db82614524565b9150819050919050565b60006020820190506146fa60008301846140a8565b92915050565b600060808201905061471560008301876140a8565b61472260208301866140a8565b61472f6040830185614682565b818103606083015261474181846140dd565b905095945050505050565b600060208201905061476160008301846140ce565b92915050565b600060208201905081810360008301526147818184614116565b905092915050565b600060208201905081810360008301526147a2816141ff565b9050919050565b600060208201905081810360008301526147c281614222565b9050919050565b600060208201905081810360008301526147e281614245565b9050919050565b6000602082019050818103600083015261480281614268565b9050919050565b600060208201905081810360008301526148228161428b565b9050919050565b60006020820190508181036000830152614842816142ae565b9050919050565b60006020820190508181036000830152614862816142d1565b9050919050565b60006020820190508181036000830152614882816142f4565b9050919050565b600060208201905081810360008301526148a281614317565b9050919050565b600060208201905081810360008301526148c28161433a565b9050919050565b600060208201905081810360008301526148e28161435d565b9050919050565b6000602082019050818103600083015261490281614380565b9050919050565b60006020820190508181036000830152614922816143a3565b9050919050565b60006020820190508181036000830152614942816143c6565b9050919050565b60006020820190508181036000830152614962816143e9565b9050919050565b600060208201905081810360008301526149828161440c565b9050919050565b600060208201905081810360008301526149a28161442f565b9050919050565b600060208201905081810360008301526149c281614452565b9050919050565b600060208201905081810360008301526149e281614475565b9050919050565b60006020820190508181036000830152614a0281614498565b9050919050565b60006020820190508181036000830152614a22816144bb565b9050919050565b60006020820190508181036000830152614a42816144de565b9050919050565b60006020820190508181036000830152614a6281614501565b9050919050565b60006020820190508181036000830152614a8281614547565b9050919050565b60006020820190508181036000830152614aa28161456a565b9050919050565b60006020820190508181036000830152614ac28161458d565b9050919050565b60006020820190508181036000830152614ae2816145b0565b9050919050565b60006020820190508181036000830152614b02816145d3565b9050919050565b60006020820190508181036000830152614b22816145f6565b9050919050565b60006020820190508181036000830152614b4281614619565b9050919050565b60006020820190508181036000830152614b628161463c565b9050919050565b60006020820190508181036000830152614b828161465f565b9050919050565b6000602082019050614b9e6000830184614682565b92915050565b6000614bae614bbf565b9050614bba8282614e90565b919050565b6000604051905090565b600067ffffffffffffffff821115614be457614be361501b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c1057614c0f61501b565b5b614c1982615068565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c9482614e12565b9150614c9f83614e12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cd457614cd3614f5f565b5b828201905092915050565b6000614cea82614e12565b9150614cf583614e12565b925082614d0557614d04614f8e565b5b828204905092915050565b6000614d1b82614e12565b9150614d2683614e12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5f57614d5e614f5f565b5b828202905092915050565b6000614d7582614e12565b9150614d8083614e12565b925082821015614d9357614d92614f5f565b5b828203905092915050565b6000614da982614df2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e49578082015181840152602081019050614e2e565b83811115614e58576000848401525b50505050565b60006002820490506001821680614e7657607f821691505b60208210811415614e8a57614e89614fbd565b5b50919050565b614e9982615068565b810181811067ffffffffffffffff82111715614eb857614eb761501b565b5b80604052505050565b6000614ecc82614e12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eff57614efe614f5f565b5b600182019050919050565b6000614f1582614f1c565b9050919050565b6000614f2782615079565b9050919050565b6000614f3982614e12565b9150614f4483614e12565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f574c465245455f4d415845440000000000000000000000000000000000000000600082015250565b7f57484954454c4953545f454e4445440000000000000000000000000000000000600082015250565b7f57484954454c4953545f494e4143544956450000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f574c504149445f4d415845440000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f494e56414c49445f5155414e5449545900000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61581281614d9e565b811461581d57600080fd5b50565b61582981614db0565b811461583457600080fd5b50565b61584081614dbc565b811461584b57600080fd5b50565b61585781614dc6565b811461586257600080fd5b50565b61586e81614e12565b811461587957600080fd5b5056fea2646970667358221220a04c809b0bb14539c01b1243697ba9b19294e212c671374989eca1ab7069119264736f6c63430008070033

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.