ETH Price: $2,484.65 (-1.77%)

Token

ZatoichiCyborg (ZC)
 

Overview

Max Total Supply

1,934 ZC

Holders

1,186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 ZC
0x9c92f6c44254b2d41a3910fe6d958f953e095b07
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZatoichiCyborg

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-25
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-16
*/

// SPDX-License-Identifier: MIT

/**
 *Submitted for verification at Etherscan.io on 2022-07-10
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

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

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

        return 0;
    }

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

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

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

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

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }

                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    return ownership;
                }


            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

     function _whiteListDrop(
            address to,
            uint256 quantity
        ) internal {
            _mintZeroTo(to, quantity);
        }

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

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

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

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

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

    function _mintZeroTo(
            address to,
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = to;

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

    }

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

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            
            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract ZatoichiCyborg is ERC721A, Ownable {

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

    uint256 public immutable cost = 0.003 ether;
    uint32 public immutable maxSupply = 2000;
    uint32 public immutable maxPerTx = 5;

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

    modifier callerIsWhitelisted(uint256 amount, uint256 _signature) {
        require(uint256(uint160(msg.sender))+amount == _signature,"invalid signature");
        _;
    }

    constructor()
    ERC721A ("ZatoichiCyborg", "ZC") {
    }

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

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

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

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

    function airDrop(uint256 amount) public onlyOwner {
        _whiteListMint(amount);
    }

    function whiteListMint(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListMint(amount);
    }

    function whiteListDrop(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListDrop(msg.sender, amount);
    }

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

        address h = payable(msg.sender);

        bool success;

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

Contract Security Audit

Contract ABI

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

61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff16815250604051806060016040528060368152602001620040f76036913960099081620000769190620004d7565b50660aa87bee53800060a0908152506107d063ffffffff1660c09063ffffffff16815250600563ffffffff1660e09063ffffffff16815250348015620000bb57600080fd5b506040518060400160405280600e81526020017f5a61746f696368694379626f72670000000000000000000000000000000000008152506040518060400160405280600281526020017f5a430000000000000000000000000000000000000000000000000000000000008152508160029081620001399190620004d7565b5080600390816200014b9190620004d7565b506200015c6200018a60201b60201c565b600081905550505062000184620001786200018f60201b60201c565b6200019760201b60201c565b620005be565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002df57607f821691505b602082108103620002f557620002f462000297565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200035f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000320565b6200036b868362000320565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b8620003b2620003ac8462000383565b6200038d565b62000383565b9050919050565b6000819050919050565b620003d48362000397565b620003ec620003e382620003bf565b8484546200032d565b825550505050565b600090565b62000403620003f4565b62000410818484620003c9565b505050565b5b8181101562000438576200042c600082620003f9565b60018101905062000416565b5050565b601f82111562000487576200045181620002fb565b6200045c8462000310565b810160208510156200046c578190505b620004846200047b8562000310565b83018262000415565b50505b505050565b600082821c905092915050565b6000620004ac600019846008026200048c565b1980831691505092915050565b6000620004c7838362000499565b9150826002028217905092915050565b620004e2826200025d565b67ffffffffffffffff811115620004fe57620004fd62000268565b5b6200050a8254620002c6565b620005178282856200043c565b600060209050601f8311600181146200054f57600084156200053a578287015190505b620005468582620004b9565b865550620005b6565b601f1984166200055f86620002fb565b60005b82811015620005895784890151825560018201915060208501945060208101905062000562565b86831015620005a95784890151620005a5601f89168262000499565b8355505b6001600288020188555050505b505050505050565b60805160a05160c05160e051613ad56200062260003960008181610a5d01526113ea0152600081816109e2015261123a0152600081816109150152610ac7015260008181610e0401528181611d7c015281816122a3015261232c0152613ad56000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063c87b56dd1161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c87b56dd146104ce578063ce24359c1461050b578063d5abeb011461053457610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298f565b610619565b6040516101ba91906129d7565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190612a82565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612ada565b61078d565b6040516102229190612b48565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b8f565b610809565b005b34801561026057600080fd5b50610269610913565b6040516102769190612bde565b60405180910390f35b34801561028b57600080fd5b50610294610937565b6040516102a19190612bde565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ada565b61094e565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612bf9565b610962565b005b61031660048036038101906103119190612ada565b610972565b005b34801561032457600080fd5b5061032d610b3f565b005b34801561033b57600080fd5b5061035660048036038101906103519190612bf9565b610c04565b005b34801561036457600080fd5b5061036d610c24565b60405161037a9190612a82565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612ada565b610cb2565b6040516103b79190612b48565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612c4c565b610cc8565b6040516103f49190612bde565b60405180910390f35b34801561040957600080fd5b50610412610e5c565b60405161041f9190612b48565b60405180910390f35b34801561043457600080fd5b5061043d610e86565b60405161044a9190612a82565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612dae565b610f18565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612e23565b610f33565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612f04565b6110aa565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612ada565b611126565b6040516105029190612a82565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612f87565b6111c4565b005b34801561054057600080fd5b50610549611238565b6040516105569190612fe6565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190612f87565b61125c565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613001565b6112d1565b6040516105bc91906129d7565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612c4c565b611365565b005b3480156105fa57600080fd5b506106036113e8565b6040516106109190612fe6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261140c565b5b9050919050565b60606002805461070a90613070565b80601f016020809104026020016040519081016040528092919081815260200182805461073690613070565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611476565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610cb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089a6114c4565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cc57506108ca816108c56114c4565b6112d1565b155b15610903576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090e8383836114cc565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061094161157e565b6001546000540303905090565b610956611583565b61095f81611601565b50565b61096d83838361160d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906130ed565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610a10610937565b610a1a919061313c565b1115610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a52906131bc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16811115610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613228565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610af09190613248565b341015610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906132d6565b60405180910390fd5b610b3c3382611afc565b50565b610b47611583565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b7790613327565b60006040518083038185875af1925050503d8060008114610bb4576040519150601f19603f3d011682016040523d82523d6000602084013e610bb9565b606091505b50508091505080610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613388565b60405180910390fd5b505050565b610c1f838383604051806020016040528060008152506110aa565b505050565b60098054610c3190613070565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5d90613070565b8015610caa5780601f10610c7f57610100808354040283529160200191610caa565b820191906000526020600020905b815481529060010190602001808311610c8d57829003601f168201915b505050505081565b6000610cbd82611b1a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610dff57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e57565b6000547f000000000000000000000000000000000000000000000000000000000000000083610e2e91906133a8565b73ffffffffffffffffffffffffffffffffffffffff1611610e525760019050610e57565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e9590613070565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613070565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b610f20611583565b8060099081610f2f919061359c565b5050565b610f3b6114c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fac6114c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110596114c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109e91906129d7565b60405180910390a35050565b6110b584848461160d565b6110d48373ffffffffffffffffffffffffffffffffffffffff16611e17565b80156110e957506110e784848484611e3a565b155b15611120576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061113182611476565b611167576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611171611f8a565b9050600081510361119157604051806020016040528060008152506111bc565b8061119b8461201c565b6040516020016111ac9291906136aa565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111e9919061313c565b14611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061371a565b60405180910390fd5b61123284611601565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b818180823373ffffffffffffffffffffffffffffffffffffffff16611281919061313c565b146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b89061371a565b60405180910390fd5b6112cb338561217c565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61136d611583565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906137ac565b60405180910390fd5b6113e58161218a565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161148161157e565b11158015611490575060005482105b80156114bd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61158b6114c4565b73ffffffffffffffffffffffffffffffffffffffff166115a9610e5c565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613818565b60405180910390fd5b565b61160a81612250565b50565b600061161882611b1a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661163f6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614806116725750611671826000015161166c6114c4565b6112d1565b5b806116b757506116806114c4565b73ffffffffffffffffffffffffffffffffffffffff1661169f8461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611759576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117cc85858560016123ca565b6117dc60008484600001516114cc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a8c57600054811015611a8b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af585858560016123d0565b5050505050565b611b168282604051806020016040528060008152506123d6565b5050565b611b226128e0565b600082905080611b3061157e565b11158015611b3f575060005481105b15611de0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611dde57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c54578092505050611e12565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d6a57819350505050611e12565b6000816001900391508111611c5b57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e12565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e606114c4565b8786866040518563ffffffff1660e01b8152600401611e82949392919061388d565b6020604051808303816000875af1925050508015611ebe57506040513d601f19601f82011682018060405250810190611ebb91906138ee565b60015b611f37573d8060008114611eee576040519150601f19603f3d011682016040523d82523d6000602084013e611ef3565b606091505b506000815103611f2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f9990613070565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc590613070565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b606060008203612063576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461209557808061207e9061391b565b915050600a8261208e9190613992565b915061206b565b60008167ffffffffffffffff8111156120b1576120b0612c83565b5b6040519080825280601f01601f1916602001820160405280156120e35781602001600182028036833780820191505090505b5090505b60008514612170576001826120fc91906139c3565b9150600a8561210b91906139f7565b6030612117919061313c565b60f81b81838151811061212d5761212c613a28565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613992565b94506120e7565b8093505050505b919050565b61218682826123e8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000810361228a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261229e919061313c565b9050817f00000000000000000000000000000000000000000000000000000000000000006122cc9190613a57565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361232257826000808282546123be919061313c565b92505081905550505050565b50505050565b50505050565b6123e38383836001612516565b505050565b60008103612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008282612436919061313c565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361248f5782600080828254612509919061313c565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036125bc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c960008683876123ca565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561279357506127928773ffffffffffffffffffffffffffffffffffffffff16611e17565b5b15612858575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128086000888480600101955088611e3a565b61283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361279957826000541461285357600080fd5b6128c3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612859575b8160008190555050506128d960008683876123d0565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296c81612937565b811461297757600080fd5b50565b60008135905061298981612963565b92915050565b6000602082840312156129a5576129a461292d565b5b60006129b38482850161297a565b91505092915050565b60008115159050919050565b6129d1816129bc565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2c578082015181840152602081019050612a11565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a54826129f2565b612a5e81856129fd565b9350612a6e818560208601612a0e565b612a7781612a38565b840191505092915050565b60006020820190508181036000830152612a9c8184612a49565b905092915050565b6000819050919050565b612ab781612aa4565b8114612ac257600080fd5b50565b600081359050612ad481612aae565b92915050565b600060208284031215612af057612aef61292d565b5b6000612afe84828501612ac5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3282612b07565b9050919050565b612b4281612b27565b82525050565b6000602082019050612b5d6000830184612b39565b92915050565b612b6c81612b27565b8114612b7757600080fd5b50565b600081359050612b8981612b63565b92915050565b60008060408385031215612ba657612ba561292d565b5b6000612bb485828601612b7a565b9250506020612bc585828601612ac5565b9150509250929050565b612bd881612aa4565b82525050565b6000602082019050612bf36000830184612bcf565b92915050565b600080600060608486031215612c1257612c1161292d565b5b6000612c2086828701612b7a565b9350506020612c3186828701612b7a565b9250506040612c4286828701612ac5565b9150509250925092565b600060208284031215612c6257612c6161292d565b5b6000612c7084828501612b7a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cbb82612a38565b810181811067ffffffffffffffff82111715612cda57612cd9612c83565b5b80604052505050565b6000612ced612923565b9050612cf98282612cb2565b919050565b600067ffffffffffffffff821115612d1957612d18612c83565b5b612d2282612a38565b9050602081019050919050565b82818337600083830152505050565b6000612d51612d4c84612cfe565b612ce3565b905082815260208101848484011115612d6d57612d6c612c7e565b5b612d78848285612d2f565b509392505050565b600082601f830112612d9557612d94612c79565b5b8135612da5848260208601612d3e565b91505092915050565b600060208284031215612dc457612dc361292d565b5b600082013567ffffffffffffffff811115612de257612de1612932565b5b612dee84828501612d80565b91505092915050565b612e00816129bc565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b60008060408385031215612e3a57612e3961292d565b5b6000612e4885828601612b7a565b9250506020612e5985828601612e0e565b9150509250929050565b600067ffffffffffffffff821115612e7e57612e7d612c83565b5b612e8782612a38565b9050602081019050919050565b6000612ea7612ea284612e63565b612ce3565b905082815260208101848484011115612ec357612ec2612c7e565b5b612ece848285612d2f565b509392505050565b600082601f830112612eeb57612eea612c79565b5b8135612efb848260208601612e94565b91505092915050565b60008060008060808587031215612f1e57612f1d61292d565b5b6000612f2c87828801612b7a565b9450506020612f3d87828801612b7a565b9350506040612f4e87828801612ac5565b925050606085013567ffffffffffffffff811115612f6f57612f6e612932565b5b612f7b87828801612ed6565b91505092959194509250565b60008060408385031215612f9e57612f9d61292d565b5b6000612fac85828601612ac5565b9250506020612fbd85828601612ac5565b9150509250929050565b600063ffffffff82169050919050565b612fe081612fc7565b82525050565b6000602082019050612ffb6000830184612fd7565b92915050565b600080604083850312156130185761301761292d565b5b600061302685828601612b7a565b925050602061303785828601612b7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061308857607f821691505b60208210810361309b5761309a613041565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006130d7601e836129fd565b91506130e2826130a1565b602082019050919050565b60006020820190508181036000830152613106816130ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314782612aa4565b915061315283612aa4565b925082820190508082111561316a5761316961310d565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006131a66008836129fd565b91506131b182613170565b602082019050919050565b600060208201905081810360008301526131d581613199565b9050919050565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613212600e836129fd565b915061321d826131dc565b602082019050919050565b6000602082019050818103600083015261324181613205565b9050919050565b600061325382612aa4565b915061325e83612aa4565b925082820261326c81612aa4565b915082820484148315176132835761328261310d565b5b5092915050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b60006132c0600c836129fd565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b600081905092915050565b50565b60006133116000836132f6565b915061331c82613301565b600082019050919050565b600061333282613304565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006133726018836129fd565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b60006133b382612b07565b91506133be83612b07565b9250828203905073ffffffffffffffffffffffffffffffffffffffff8111156133ea576133e961310d565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613415565b61345c8683613415565b95508019841693508086168417925050509392505050565b6000819050919050565b600061349961349461348f84612aa4565b613474565b612aa4565b9050919050565b6000819050919050565b6134b38361347e565b6134c76134bf826134a0565b848454613422565b825550505050565b600090565b6134dc6134cf565b6134e78184846134aa565b505050565b5b8181101561350b576135006000826134d4565b6001810190506134ed565b5050565b601f82111561355057613521816133f0565b61352a84613405565b81016020851015613539578190505b61354d61354585613405565b8301826134ec565b50505b505050565b600082821c905092915050565b600061357360001984600802613555565b1980831691505092915050565b600061358c8383613562565b9150826002028217905092915050565b6135a5826129f2565b67ffffffffffffffff8111156135be576135bd612c83565b5b6135c88254613070565b6135d382828561350f565b600060209050601f83116001811461360657600084156135f4578287015190505b6135fe8582613580565b865550613666565b601f198416613614866133f0565b60005b8281101561363c57848901518255600182019150602085019450602081019050613617565b868310156136595784890151613655601f891682613562565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613684826129f2565b61368e818561366e565b935061369e818560208601612a0e565b80840191505092915050565b60006136b68285613679565b91506136c28284613679565b91508190509392505050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006137046011836129fd565b915061370f826136ce565b602082019050919050565b60006020820190508181036000830152613733816136f7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137966026836129fd565b91506137a18261373a565b604082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138026020836129fd565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061385f82613838565b6138698185613843565b9350613879818560208601612a0e565b61388281612a38565b840191505092915050565b60006080820190506138a26000830187612b39565b6138af6020830186612b39565b6138bc6040830185612bcf565b81810360608301526138ce8184613854565b905095945050505050565b6000815190506138e881612963565b92915050565b6000602082840312156139045761390361292d565b5b6000613912848285016138d9565b91505092915050565b600061392682612aa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139585761395761310d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061399d82612aa4565b91506139a883612aa4565b9250826139b8576139b7613963565b5b828204905092915050565b60006139ce82612aa4565b91506139d983612aa4565b92508282039050818111156139f1576139f061310d565b5b92915050565b6000613a0282612aa4565b9150613a0d83612aa4565b925082613a1d57613a1c613963565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a6282612b07565b9150613a6d83612b07565b9250828201905073ffffffffffffffffffffffffffffffffffffffff811115613a9957613a9861310d565b5b9291505056fea26469706673582212201f1b1999266a2a7343e7dabc3431e14468da4f24e88edc5efc874a1c80beb7c164736f6c63430008110033697066733a2f2f516d564c4b5655674b3632444c374c4a4747347a324c66683465535671424e666e54544a64364a477541544135702f

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063c87b56dd1161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c87b56dd146104ce578063ce24359c1461050b578063d5abeb011461053457610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298f565b610619565b6040516101ba91906129d7565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190612a82565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612ada565b61078d565b6040516102229190612b48565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b8f565b610809565b005b34801561026057600080fd5b50610269610913565b6040516102769190612bde565b60405180910390f35b34801561028b57600080fd5b50610294610937565b6040516102a19190612bde565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ada565b61094e565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612bf9565b610962565b005b61031660048036038101906103119190612ada565b610972565b005b34801561032457600080fd5b5061032d610b3f565b005b34801561033b57600080fd5b5061035660048036038101906103519190612bf9565b610c04565b005b34801561036457600080fd5b5061036d610c24565b60405161037a9190612a82565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612ada565b610cb2565b6040516103b79190612b48565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612c4c565b610cc8565b6040516103f49190612bde565b60405180910390f35b34801561040957600080fd5b50610412610e5c565b60405161041f9190612b48565b60405180910390f35b34801561043457600080fd5b5061043d610e86565b60405161044a9190612a82565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612dae565b610f18565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612e23565b610f33565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612f04565b6110aa565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612ada565b611126565b6040516105029190612a82565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612f87565b6111c4565b005b34801561054057600080fd5b50610549611238565b6040516105569190612fe6565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190612f87565b61125c565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613001565b6112d1565b6040516105bc91906129d7565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612c4c565b611365565b005b3480156105fa57600080fd5b506106036113e8565b6040516106109190612fe6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261140c565b5b9050919050565b60606002805461070a90613070565b80601f016020809104026020016040519081016040528092919081815260200182805461073690613070565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611476565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610cb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361087b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089a6114c4565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cc57506108ca816108c56114c4565b6112d1565b155b15610903576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090e8383836114cc565b505050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b600061094161157e565b6001546000540303905090565b610956611583565b61095f81611601565b50565b61096d83838361160d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906130ed565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000007d063ffffffff1681610a10610937565b610a1a919061313c565b1115610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a52906131bc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000563ffffffff16811115610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613228565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000aa87bee538000610af09190613248565b341015610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906132d6565b60405180910390fd5b610b3c3382611afc565b50565b610b47611583565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b7790613327565b60006040518083038185875af1925050503d8060008114610bb4576040519150601f19603f3d011682016040523d82523d6000602084013e610bb9565b606091505b50508091505080610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613388565b60405180910390fd5b505050565b610c1f838383604051806020016040528060008152506110aa565b505050565b60098054610c3190613070565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5d90613070565b8015610caa5780601f10610c7f57610100808354040283529160200191610caa565b820191906000526020600020905b815481529060010190602001808311610c8d57829003601f168201915b505050505081565b6000610cbd82611b1a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610dff57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e57565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610e2e91906133a8565b73ffffffffffffffffffffffffffffffffffffffff1611610e525760019050610e57565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e9590613070565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613070565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b610f20611583565b8060099081610f2f919061359c565b5050565b610f3b6114c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fac6114c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110596114c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109e91906129d7565b60405180910390a35050565b6110b584848461160d565b6110d48373ffffffffffffffffffffffffffffffffffffffff16611e17565b80156110e957506110e784848484611e3a565b155b15611120576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061113182611476565b611167576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611171611f8a565b9050600081510361119157604051806020016040528060008152506111bc565b8061119b8461201c565b6040516020016111ac9291906136aa565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111e9919061313c565b14611229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112209061371a565b60405180910390fd5b61123284611601565b50505050565b7f00000000000000000000000000000000000000000000000000000000000007d081565b818180823373ffffffffffffffffffffffffffffffffffffffff16611281919061313c565b146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b89061371a565b60405180910390fd5b6112cb338561217c565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61136d611583565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906137ac565b60405180910390fd5b6113e58161218a565b50565b7f000000000000000000000000000000000000000000000000000000000000000581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161148161157e565b11158015611490575060005482105b80156114bd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61158b6114c4565b73ffffffffffffffffffffffffffffffffffffffff166115a9610e5c565b73ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613818565b60405180910390fd5b565b61160a81612250565b50565b600061161882611b1a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661163f6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614806116725750611671826000015161166c6114c4565b6112d1565b5b806116b757506116806114c4565b73ffffffffffffffffffffffffffffffffffffffff1661169f8461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611759576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117cc85858560016123ca565b6117dc60008484600001516114cc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611a8c57600054811015611a8b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af585858560016123d0565b5050505050565b611b168282604051806020016040528060008152506123d6565b5050565b611b226128e0565b600082905080611b3061157e565b11158015611b3f575060005481105b15611de0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611dde57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c54578092505050611e12565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d6a57819350505050611e12565b6000816001900391508111611c5b57847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e12565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e606114c4565b8786866040518563ffffffff1660e01b8152600401611e82949392919061388d565b6020604051808303816000875af1925050508015611ebe57506040513d601f19601f82011682018060405250810190611ebb91906138ee565b60015b611f37573d8060008114611eee576040519150601f19603f3d011682016040523d82523d6000602084013e611ef3565b606091505b506000815103611f2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f9990613070565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc590613070565b80156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b5050505050905090565b606060008203612063576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461209557808061207e9061391b565b915050600a8261208e9190613992565b915061206b565b60008167ffffffffffffffff8111156120b1576120b0612c83565b5b6040519080825280601f01601f1916602001820160405280156120e35781602001600182028036833780820191505090505b5090505b60008514612170576001826120fc91906139c3565b9150600a8561210b91906139f7565b6030612117919061313c565b60f81b81838151811061212d5761212c613a28565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613992565b94506120e7565b8093505050505b919050565b61218682826123e8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000810361228a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261229e919061313c565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706122cc9190613a57565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361232257826000808282546123be919061313c565b92505081905550505050565b50505050565b50505050565b6123e38383836001612516565b505050565b60008103612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008282612436919061313c565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361248f5782600080828254612509919061313c565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036125bc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c960008683876123ca565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561279357506127928773ffffffffffffffffffffffffffffffffffffffff16611e17565b5b15612858575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128086000888480600101955088611e3a565b61283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361279957826000541461285357600080fd5b6128c3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612859575b8160008190555050506128d960008683876123d0565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296c81612937565b811461297757600080fd5b50565b60008135905061298981612963565b92915050565b6000602082840312156129a5576129a461292d565b5b60006129b38482850161297a565b91505092915050565b60008115159050919050565b6129d1816129bc565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2c578082015181840152602081019050612a11565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a54826129f2565b612a5e81856129fd565b9350612a6e818560208601612a0e565b612a7781612a38565b840191505092915050565b60006020820190508181036000830152612a9c8184612a49565b905092915050565b6000819050919050565b612ab781612aa4565b8114612ac257600080fd5b50565b600081359050612ad481612aae565b92915050565b600060208284031215612af057612aef61292d565b5b6000612afe84828501612ac5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3282612b07565b9050919050565b612b4281612b27565b82525050565b6000602082019050612b5d6000830184612b39565b92915050565b612b6c81612b27565b8114612b7757600080fd5b50565b600081359050612b8981612b63565b92915050565b60008060408385031215612ba657612ba561292d565b5b6000612bb485828601612b7a565b9250506020612bc585828601612ac5565b9150509250929050565b612bd881612aa4565b82525050565b6000602082019050612bf36000830184612bcf565b92915050565b600080600060608486031215612c1257612c1161292d565b5b6000612c2086828701612b7a565b9350506020612c3186828701612b7a565b9250506040612c4286828701612ac5565b9150509250925092565b600060208284031215612c6257612c6161292d565b5b6000612c7084828501612b7a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cbb82612a38565b810181811067ffffffffffffffff82111715612cda57612cd9612c83565b5b80604052505050565b6000612ced612923565b9050612cf98282612cb2565b919050565b600067ffffffffffffffff821115612d1957612d18612c83565b5b612d2282612a38565b9050602081019050919050565b82818337600083830152505050565b6000612d51612d4c84612cfe565b612ce3565b905082815260208101848484011115612d6d57612d6c612c7e565b5b612d78848285612d2f565b509392505050565b600082601f830112612d9557612d94612c79565b5b8135612da5848260208601612d3e565b91505092915050565b600060208284031215612dc457612dc361292d565b5b600082013567ffffffffffffffff811115612de257612de1612932565b5b612dee84828501612d80565b91505092915050565b612e00816129bc565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b60008060408385031215612e3a57612e3961292d565b5b6000612e4885828601612b7a565b9250506020612e5985828601612e0e565b9150509250929050565b600067ffffffffffffffff821115612e7e57612e7d612c83565b5b612e8782612a38565b9050602081019050919050565b6000612ea7612ea284612e63565b612ce3565b905082815260208101848484011115612ec357612ec2612c7e565b5b612ece848285612d2f565b509392505050565b600082601f830112612eeb57612eea612c79565b5b8135612efb848260208601612e94565b91505092915050565b60008060008060808587031215612f1e57612f1d61292d565b5b6000612f2c87828801612b7a565b9450506020612f3d87828801612b7a565b9350506040612f4e87828801612ac5565b925050606085013567ffffffffffffffff811115612f6f57612f6e612932565b5b612f7b87828801612ed6565b91505092959194509250565b60008060408385031215612f9e57612f9d61292d565b5b6000612fac85828601612ac5565b9250506020612fbd85828601612ac5565b9150509250929050565b600063ffffffff82169050919050565b612fe081612fc7565b82525050565b6000602082019050612ffb6000830184612fd7565b92915050565b600080604083850312156130185761301761292d565b5b600061302685828601612b7a565b925050602061303785828601612b7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061308857607f821691505b60208210810361309b5761309a613041565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006130d7601e836129fd565b91506130e2826130a1565b602082019050919050565b60006020820190508181036000830152613106816130ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314782612aa4565b915061315283612aa4565b925082820190508082111561316a5761316961310d565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006131a66008836129fd565b91506131b182613170565b602082019050919050565b600060208201905081810360008301526131d581613199565b9050919050565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613212600e836129fd565b915061321d826131dc565b602082019050919050565b6000602082019050818103600083015261324181613205565b9050919050565b600061325382612aa4565b915061325e83612aa4565b925082820261326c81612aa4565b915082820484148315176132835761328261310d565b5b5092915050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b60006132c0600c836129fd565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b600081905092915050565b50565b60006133116000836132f6565b915061331c82613301565b600082019050919050565b600061333282613304565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006133726018836129fd565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b60006133b382612b07565b91506133be83612b07565b9250828203905073ffffffffffffffffffffffffffffffffffffffff8111156133ea576133e961310d565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613415565b61345c8683613415565b95508019841693508086168417925050509392505050565b6000819050919050565b600061349961349461348f84612aa4565b613474565b612aa4565b9050919050565b6000819050919050565b6134b38361347e565b6134c76134bf826134a0565b848454613422565b825550505050565b600090565b6134dc6134cf565b6134e78184846134aa565b505050565b5b8181101561350b576135006000826134d4565b6001810190506134ed565b5050565b601f82111561355057613521816133f0565b61352a84613405565b81016020851015613539578190505b61354d61354585613405565b8301826134ec565b50505b505050565b600082821c905092915050565b600061357360001984600802613555565b1980831691505092915050565b600061358c8383613562565b9150826002028217905092915050565b6135a5826129f2565b67ffffffffffffffff8111156135be576135bd612c83565b5b6135c88254613070565b6135d382828561350f565b600060209050601f83116001811461360657600084156135f4578287015190505b6135fe8582613580565b865550613666565b601f198416613614866133f0565b60005b8281101561363c57848901518255600182019150602085019450602081019050613617565b868310156136595784890151613655601f891682613562565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613684826129f2565b61368e818561366e565b935061369e818560208601612a0e565b80840191505092915050565b60006136b68285613679565b91506136c28284613679565b91508190509392505050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006137046011836129fd565b915061370f826136ce565b602082019050919050565b60006020820190508181036000830152613733816136f7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137966026836129fd565b91506137a18261373a565b604082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138026020836129fd565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061385f82613838565b6138698185613843565b9350613879818560208601612a0e565b61388281612a38565b840191505092915050565b60006080820190506138a26000830187612b39565b6138af6020830186612b39565b6138bc6040830185612bcf565b81810360608301526138ce8184613854565b905095945050505050565b6000815190506138e881612963565b92915050565b6000602082840312156139045761390361292d565b5b6000613912848285016138d9565b91505092915050565b600061392682612aa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139585761395761310d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061399d82612aa4565b91506139a883612aa4565b9250826139b8576139b7613963565b5b828204905092915050565b60006139ce82612aa4565b91506139d983612aa4565b92508282039050818111156139f1576139f061310d565b5b92915050565b6000613a0282612aa4565b9150613a0d83612aa4565b925082613a1d57613a1c613963565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a6282612b07565b9150613a6d83612b07565b9250828201905073ffffffffffffffffffffffffffffffffffffffff811115613a9957613a9861310d565b5b9291505056fea26469706673582212201f1b1999266a2a7343e7dabc3431e14468da4f24e88edc5efc874a1c80beb7c164736f6c63430008110033

Deployed Bytecode Sourcemap

48171:2003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28757:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32598:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34101:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33664:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48316:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28006:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49472:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34958:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49168:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49893:278;;;;;;;;;;;;;:::i;:::-;;35199:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48224:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32407:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29128:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4944:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32767:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48956:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34377:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35455:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32942:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49571:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48366:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49726:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34727:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48413:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28757:305;28859:4;28911:25;28896:40;;;:11;:40;;;;:105;;;;28968:33;28953:48;;;:11;:48;;;;28896:105;:158;;;;29018:36;29042:11;29018:23;:36::i;:::-;28896:158;28876:178;;28757:305;;;:::o;32598:100::-;32652:13;32685:5;32678:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32598:100;:::o;34101:204::-;34169:7;34194:16;34202:7;34194;:16::i;:::-;34189:64;;34219:34;;;;;;;;;;;;;;34189:64;34273:15;:24;34289:7;34273:24;;;;;;;;;;;;;;;;;;;;;34266:31;;34101:204;;;:::o;33664:371::-;33737:13;33753:24;33769:7;33753:15;:24::i;:::-;33737:40;;33798:5;33792:11;;:2;:11;;;33788:48;;33812:24;;;;;;;;;;;;;;33788:48;33869:5;33853:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33879:37;33896:5;33903:12;:10;:12::i;:::-;33879:16;:37::i;:::-;33878:38;33853:63;33849:138;;;33940:35;;;;;;;;;;;;;;33849:138;33999:28;34008:2;34012:7;34021:5;33999:8;:28::i;:::-;33726:309;33664:371;;:::o;48316:43::-;;;:::o;28006:303::-;28050:7;28275:15;:13;:15::i;:::-;28260:12;;28244:13;;:28;:46;28237:53;;28006:303;:::o;49472:91::-;4830:13;:11;:13::i;:::-;49533:22:::1;49548:6;49533:14;:22::i;:::-;49472:91:::0;:::o;34958:170::-;35092:28;35102:4;35108:2;35112:7;35092:9;:28::i;:::-;34958:170;;;:::o;49168:296::-;48514:10;48501:23;;:9;:23;;;48493:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49276:9:::1;49250:35;;49266:6;49250:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49242:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49328:8;49317:19;;:6;:19;;49309:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49394:6;49387:4;:13;;;;:::i;:::-;49374:9;:26;;49366:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49427:29;49437:10;49449:6;49427:9;:29::i;:::-;49168:296:::0;:::o;49893:278::-;4830:13;:11;:13::i;:::-;49941:18:::1;49962:21;49941:42;;49996:9;50016:10;49996:31;;50040:12;50079:1;:6;;50093:10;50079:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50065:43;;;;;50127:7;50119:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49930:241;;;49893:278::o:0;35199:185::-;35337:39;35354:4;35360:2;35364:7;35337:39;;;;;;;;;;;;:16;:39::i;:::-;35199:185;;;:::o;48224:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32407:124::-;32471:7;32498:20;32510:7;32498:11;:20::i;:::-;:25;;;32491:32;;32407:124;;;:::o;29128:395::-;29192:7;29233:1;29216:19;;:5;:19;;;29212:60;;29244:28;;;;;;;;;;;;;;29212:60;29320:1;29289:12;:19;29302:5;29289:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29285:108;;29353:12;:19;29366:5;29353:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29345:36;;29338:43;;;;29285:108;29445:13;;29434:6;29417:5;29409:32;;;;:::i;:::-;:49;;;29405:90;;29482:1;29475:8;;;;29405:90;29514:1;29507:8;;29128:395;;;;:::o;4944:87::-;4990:7;5017:6;;;;;;;;;;;5010:13;;4944:87;:::o;32767:104::-;32823:13;32856:7;32849:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32767:104;:::o;48956:86::-;4830:13;:11;:13::i;:::-;49031:3:::1;49019:9;:15;;;;;;:::i;:::-;;48956:86:::0;:::o;34377:279::-;34480:12;:10;:12::i;:::-;34468:24;;:8;:24;;;34464:54;;34501:17;;;;;;;;;;;;;;34464:54;34576:8;34531:18;:32;34550:12;:10;:12::i;:::-;34531:32;;;;;;;;;;;;;;;:42;34564:8;34531:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34629:8;34600:48;;34615:12;:10;:12::i;:::-;34600:48;;;34639:8;34600:48;;;;;;:::i;:::-;;;;;;;;34377:279;;:::o;35455:369::-;35622:28;35632:4;35638:2;35642:7;35622:9;:28::i;:::-;35665:15;:2;:13;;;:15::i;:::-;:76;;;;;35685:56;35716:4;35722:2;35726:7;35735:5;35685:30;:56::i;:::-;35684:57;35665:76;35661:156;;;35765:40;;;;;;;;;;;;;;35661:156;35455:369;;;;:::o;32942:318::-;33015:13;33046:16;33054:7;33046;:16::i;:::-;33041:59;;33071:29;;;;;;;;;;;;;;33041:59;33113:21;33137:10;:8;:10::i;:::-;33113:34;;33190:1;33171:7;33165:21;:26;:87;;;;;;;;;;;;;;;;;33218:7;33227:18;:7;:16;:18::i;:::-;33201:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33165:87;33158:94;;;32942:318;;;:::o;49571:147::-;49657:6;49665:10;48710;48700:6;48687:10;48671:28;;:35;;;;:::i;:::-;:49;48663:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49688:22:::1;49703:6;49688:14;:22::i;:::-;49571:147:::0;;;;:::o;48366:40::-;;;:::o;49726:159::-;49812:6;49820:10;48710;48700:6;48687:10;48671:28;;:35;;;;:::i;:::-;:49;48663:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49843:34:::1;49858:10;49870:6;49843:14;:34::i;:::-;49726:159:::0;;;;:::o;34727:164::-;34824:4;34848:18;:25;34867:5;34848:25;;;;;;;;;;;;;;;:35;34874:8;34848:35;;;;;;;;;;;;;;;;;;;;;;;;;34841:42;;34727:164;;;;:::o;5396:201::-;4830:13;:11;:13::i;:::-;5505:1:::1;5485:22;;:8;:22;;::::0;5477:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:28;5580:8;5561:18;:28::i;:::-;5396:201:::0;:::o;48413:36::-;;;:::o;17344:157::-;17429:4;17468:25;17453:40;;;:11;:40;;;;17446:47;;17344:157;;;:::o;36079:187::-;36136:4;36179:7;36160:15;:13;:15::i;:::-;:26;;:53;;;;;36200:13;;36190:7;:23;36160:53;:98;;;;;36231:11;:20;36243:7;36231:20;;;;;;;;;;;:27;;;;;;;;;;;;36230:28;36160:98;36153:105;;36079:187;;;:::o;3495:98::-;3548:7;3575:10;3568:17;;3495:98;:::o;45155:196::-;45297:2;45270:15;:24;45286:7;45270:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45335:7;45331:2;45315:28;;45324:5;45315:28;;;;;;;;;;;;45155:196;;;:::o;49050:110::-;49124:7;49050:110;:::o;5109:132::-;5184:12;:10;:12::i;:::-;5173:23;;:7;:5;:7::i;:::-;:23;;;5165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5109:132::o;36912:121::-;37002:19;37012:8;37002:9;:19::i;:::-;36912:121;:::o;40657:2112::-;40772:35;40810:20;40822:7;40810:11;:20::i;:::-;40772:58;;40843:22;40885:13;:18;;;40869:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40920:50;40937:13;:18;;;40957:12;:10;:12::i;:::-;40920:16;:50::i;:::-;40869:101;:154;;;;41011:12;:10;:12::i;:::-;40987:36;;:20;40999:7;40987:11;:20::i;:::-;:36;;;40869:154;40843:181;;41042:17;41037:66;;41068:35;;;;;;;;;;;;;;41037:66;41140:4;41118:26;;:13;:18;;;:26;;;41114:67;;41153:28;;;;;;;;;;;;;;41114:67;41210:1;41196:16;;:2;:16;;;41192:52;;41221:23;;;;;;;;;;;;;;41192:52;41257:43;41279:4;41285:2;41289:7;41298:1;41257:21;:43::i;:::-;41365:49;41382:1;41386:7;41395:13;:18;;;41365:8;:49::i;:::-;41740:1;41710:12;:18;41723:4;41710:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41784:1;41756:12;:16;41769:2;41756:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41830:2;41802:11;:20;41814:7;41802:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41892:15;41847:11;:20;41859:7;41847:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42160:19;42192:1;42182:7;:11;42160:33;;42253:1;42212:43;;:11;:24;42224:11;42212:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42208:445;;42437:13;;42423:11;:27;42419:219;;;42507:13;:18;;;42475:11;:24;42487:11;42475:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42590:13;:28;;;42548:11;:24;42560:11;42548:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42419:219;42208:445;41685:979;42700:7;42696:2;42681:27;;42690:4;42681:27;;;;;;;;;;;;42719:42;42740:4;42746:2;42750:7;42759:1;42719:20;:42::i;:::-;40761:2008;;40657:2112;;;:::o;36274:104::-;36343:27;36353:2;36357:8;36343:27;;;;;;;;;;;;:9;:27::i;:::-;36274:104;;:::o;31058:1287::-;31119:21;;:::i;:::-;31153:12;31168:7;31153:22;;31236:4;31217:15;:13;:15::i;:::-;:23;;:47;;;;;31251:13;;31244:4;:20;31217:47;31213:1065;;;31285:31;31319:11;:17;31331:4;31319:17;;;;;;;;;;;31285:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31360:9;:16;;;31355:904;;31431:1;31405:28;;:9;:14;;;:28;;;31401:101;;31469:9;31462:16;;;;;;31401:101;31806:13;31822:1;31806:17;;31846:270;31875:6;;;;;;;;31920:11;:17;31932:4;31920:17;;;;;;;;;;;31908:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31994:1;31968:28;;:9;:14;;;:28;;;31964:109;;32036:9;32029:16;;;;;;;31964:109;32113:1;32103:7;;;;;;;:11;31846:270;;32191:7;32173:6;32165:34;32140:9;:14;;:60;;;;;;;;;;;32230:9;32223:16;;;;;;;31355:904;31266:1012;31213:1065;32306:31;;;;;;;;;;;;;;31058:1287;;;;:::o;7188:326::-;7248:4;7505:1;7483:7;:19;;;:23;7476:30;;7188:326;;;:::o;45843:667::-;46006:4;46043:2;46027:36;;;46064:12;:10;:12::i;:::-;46078:4;46084:7;46093:5;46027:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46023:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46278:1;46261:6;:13;:18;46257:235;;46307:40;;;;;;;;;;;;;;46257:235;46450:6;46444:13;46435:6;46431:2;46427:15;46420:38;46023:480;46156:45;;;46146:55;;;:6;:55;;;;46139:62;;;45843:667;;;;;;:::o;48837:111::-;48898:13;48931:9;48924:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48837:111;:::o;749:723::-;805:13;1035:1;1026:5;:10;1022:53;;1053:10;;;;;;;;;;;;;;;;;;;;;1022:53;1085:12;1100:5;1085:20;;1116:14;1141:78;1156:1;1148:4;:9;1141:78;;1174:8;;;;;:::i;:::-;;;;1205:2;1197:10;;;;;:::i;:::-;;;1141:78;;;1229:19;1261:6;1251:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1229:39;;1279:154;1295:1;1286:5;:10;1279:154;;1323:1;1313:11;;;;;:::i;:::-;;;1390:2;1382:5;:10;;;;:::i;:::-;1369:2;:24;;;;:::i;:::-;1356:39;;1339:6;1346;1339:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1419:2;1410:11;;;;;:::i;:::-;;;1279:154;;;1457:6;1443:21;;;;;749:723;;;;:::o;37042:152::-;37157:25;37169:2;37173:8;37157:11;:25::i;:::-;37042:152;;:::o;5757:191::-;5831:16;5850:6;;;;;;;;;;;5831:25;;5876:8;5867:6;;:17;;;;;;;;;;;;;;;;;;5931:8;5900:40;;5921:8;5900:40;;;;;;;;;;;;5820:128;5757:191;:::o;39784:619::-;39885:1;39873:8;:13;39869:44;;39895:18;;;;;;;;;;;;;;39869:44;39930:20;39953:13;;39930:36;;39981:11;40010:8;39995:12;:23;;;;:::i;:::-;39981:37;;40101:12;40083:6;40075:39;;;;:::i;:::-;40033:11;:26;40045:13;;40033:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40173:166;40275:14;;;;;;40259:12;40241:6;40233:39;40204:86;;40221:1;40204:86;;;;;;;;;;;;40334:3;40318:12;:19;40173:166;;40385:8;40368:13;;:25;;;;;;;:::i;:::-;;;;;;;;39854:549;;39784:619;:::o;47158:159::-;;;;;:::o;47976:158::-;;;;;:::o;36741:163::-;36864:32;36870:2;36874:8;36884:5;36891:4;36864:5;:32::i;:::-;36741:163;;;:::o;39234:542::-;39362:1;39350:8;:13;39346:44;;39372:18;;;;;;;;;;;;;;39346:44;39407:20;39430:13;;39407:36;;39458:11;39487:8;39472:12;:23;;;;:::i;:::-;39458:37;;39544:2;39510:11;:26;39522:13;;39510:26;;;;;;;;;;;:31;;;:36;;;;;;;;;;;;;;;;;;39592:120;39648:14;;;;;;39644:2;39623:40;;39640:1;39623:40;;;;;;;;;;;;39707:3;39691:12;:19;39592:120;;39758:8;39741:13;;:25;;;;;;;:::i;:::-;;;;;;;;39331:445;;39234:542;;:::o;37453:1773::-;37592:20;37615:13;;37592:36;;37657:1;37643:16;;:2;:16;;;37639:48;;37668:19;;;;;;;;;;;;;;37639:48;37714:1;37702:8;:13;37698:44;;37724:18;;;;;;;;;;;;;;37698:44;37755:61;37785:1;37789:2;37793:12;37807:8;37755:21;:61::i;:::-;38126:8;38091:12;:16;38104:2;38091:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38190:8;38150:12;:16;38163:2;38150:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38249:2;38216:11;:25;38228:12;38216:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38316:15;38266:11;:25;38278:12;38266:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38349:20;38372:12;38349:35;;38399:11;38428:8;38413:12;:23;38399:37;;38457:4;:23;;;;;38465:15;:2;:13;;;:15::i;:::-;38457:23;38453:641;;;38501:314;38557:12;38553:2;38532:38;;38549:1;38532:38;;;;;;;;;;;;38598:69;38637:1;38641:2;38645:14;;;;;;38661:5;38598:30;:69::i;:::-;38593:174;;38703:40;;;;;;;;;;;;;;38593:174;38810:3;38794:12;:19;38501:314;;38896:12;38879:13;;:29;38875:43;;38910:8;;;38875:43;38453:641;;;38959:120;39015:14;;;;;;39011:2;38990:40;;39007:1;38990:40;;;;;;;;;;;;39074:3;39058:12;:19;38959:120;;38453:641;39124:12;39108:13;:28;;;;38066:1082;;39158:60;39187:1;39191:2;39195:12;39209:8;39158:20;:60::i;:::-;37581:1645;37453:1773;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:93::-;12127:7;12167:10;12160:5;12156:22;12145:33;;12091:93;;;:::o;12190:115::-;12275:23;12292:5;12275:23;:::i;:::-;12270:3;12263:36;12190:115;;:::o;12311:218::-;12402:4;12440:2;12429:9;12425:18;12417:26;;12453:69;12519:1;12508:9;12504:17;12495:6;12453:69;:::i;:::-;12311:218;;;;:::o;12535:474::-;12603:6;12611;12660:2;12648:9;12639:7;12635:23;12631:32;12628:119;;;12666:79;;:::i;:::-;12628:119;12786:1;12811:53;12856:7;12847:6;12836:9;12832:22;12811:53;:::i;:::-;12801:63;;12757:117;12913:2;12939:53;12984:7;12975:6;12964:9;12960:22;12939:53;:::i;:::-;12929:63;;12884:118;12535:474;;;;;:::o;13015:180::-;13063:77;13060:1;13053:88;13160:4;13157:1;13150:15;13184:4;13181:1;13174:15;13201:320;13245:6;13282:1;13276:4;13272:12;13262:22;;13329:1;13323:4;13319:12;13350:18;13340:81;;13406:4;13398:6;13394:17;13384:27;;13340:81;13468:2;13460:6;13457:14;13437:18;13434:38;13431:84;;13487:18;;:::i;:::-;13431:84;13252:269;13201:320;;;:::o;13527:180::-;13667:32;13663:1;13655:6;13651:14;13644:56;13527:180;:::o;13713:366::-;13855:3;13876:67;13940:2;13935:3;13876:67;:::i;:::-;13869:74;;13952:93;14041:3;13952:93;:::i;:::-;14070:2;14065:3;14061:12;14054:19;;13713:366;;;:::o;14085:419::-;14251:4;14289:2;14278:9;14274:18;14266:26;;14338:9;14332:4;14328:20;14324:1;14313:9;14309:17;14302:47;14366:131;14492:4;14366:131;:::i;:::-;14358:139;;14085:419;;;:::o;14510:180::-;14558:77;14555:1;14548:88;14655:4;14652:1;14645:15;14679:4;14676:1;14669:15;14696:191;14736:3;14755:20;14773:1;14755:20;:::i;:::-;14750:25;;14789:20;14807:1;14789:20;:::i;:::-;14784:25;;14832:1;14829;14825:9;14818:16;;14853:3;14850:1;14847:10;14844:36;;;14860:18;;:::i;:::-;14844:36;14696:191;;;;:::o;14893:158::-;15033:10;15029:1;15021:6;15017:14;15010:34;14893:158;:::o;15057:365::-;15199:3;15220:66;15284:1;15279:3;15220:66;:::i;:::-;15213:73;;15295:93;15384:3;15295:93;:::i;:::-;15413:2;15408:3;15404:12;15397:19;;15057:365;;;:::o;15428:419::-;15594:4;15632:2;15621:9;15617:18;15609:26;;15681:9;15675:4;15671:20;15667:1;15656:9;15652:17;15645:47;15709:131;15835:4;15709:131;:::i;:::-;15701:139;;15428:419;;;:::o;15853:164::-;15993:16;15989:1;15981:6;15977:14;15970:40;15853:164;:::o;16023:366::-;16165:3;16186:67;16250:2;16245:3;16186:67;:::i;:::-;16179:74;;16262:93;16351:3;16262:93;:::i;:::-;16380:2;16375:3;16371:12;16364:19;;16023:366;;;:::o;16395:419::-;16561:4;16599:2;16588:9;16584:18;16576:26;;16648:9;16642:4;16638:20;16634:1;16623:9;16619:17;16612:47;16676:131;16802:4;16676:131;:::i;:::-;16668:139;;16395:419;;;:::o;16820:410::-;16860:7;16883:20;16901:1;16883:20;:::i;:::-;16878:25;;16917:20;16935:1;16917:20;:::i;:::-;16912:25;;16972:1;16969;16965:9;16994:30;17012:11;16994:30;:::i;:::-;16983:41;;17173:1;17164:7;17160:15;17157:1;17154:22;17134:1;17127:9;17107:83;17084:139;;17203:18;;:::i;:::-;17084:139;16868:362;16820:410;;;;:::o;17236:162::-;17376:14;17372:1;17364:6;17360:14;17353:38;17236:162;:::o;17404:366::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:419::-;17942:4;17980:2;17969:9;17965:18;17957:26;;18029:9;18023:4;18019:20;18015:1;18004:9;18000:17;17993:47;18057:131;18183:4;18057:131;:::i;:::-;18049:139;;17776:419;;;:::o;18201:147::-;18302:11;18339:3;18324:18;;18201:147;;;;:::o;18354:114::-;;:::o;18474:398::-;18633:3;18654:83;18735:1;18730:3;18654:83;:::i;:::-;18647:90;;18746:93;18835:3;18746:93;:::i;:::-;18864:1;18859:3;18855:11;18848:18;;18474:398;;;:::o;18878:379::-;19062:3;19084:147;19227:3;19084:147;:::i;:::-;19077:154;;19248:3;19241:10;;18878:379;;;:::o;19263:174::-;19403:26;19399:1;19391:6;19387:14;19380:50;19263:174;:::o;19443:366::-;19585:3;19606:67;19670:2;19665:3;19606:67;:::i;:::-;19599:74;;19682:93;19771:3;19682:93;:::i;:::-;19800:2;19795:3;19791:12;19784:19;;19443:366;;;:::o;19815:419::-;19981:4;20019:2;20008:9;20004:18;19996:26;;20068:9;20062:4;20058:20;20054:1;20043:9;20039:17;20032:47;20096:131;20222:4;20096:131;:::i;:::-;20088:139;;19815:419;;;:::o;20240:235::-;20280:4;20300:20;20318:1;20300:20;:::i;:::-;20295:25;;20334:20;20352:1;20334:20;:::i;:::-;20329:25;;20378:1;20375;20371:9;20363:17;;20402:42;20396:4;20393:52;20390:78;;;20448:18;;:::i;:::-;20390:78;20240:235;;;;:::o;20481:141::-;20530:4;20553:3;20545:11;;20576:3;20573:1;20566:14;20610:4;20607:1;20597:18;20589:26;;20481:141;;;:::o;20628:93::-;20665:6;20712:2;20707;20700:5;20696:14;20692:23;20682:33;;20628:93;;;:::o;20727:107::-;20771:8;20821:5;20815:4;20811:16;20790:37;;20727:107;;;;:::o;20840:393::-;20909:6;20959:1;20947:10;20943:18;20982:97;21012:66;21001:9;20982:97;:::i;:::-;21100:39;21130:8;21119:9;21100:39;:::i;:::-;21088:51;;21172:4;21168:9;21161:5;21157:21;21148:30;;21221:4;21211:8;21207:19;21200:5;21197:30;21187:40;;20916:317;;20840:393;;;;;:::o;21239:60::-;21267:3;21288:5;21281:12;;21239:60;;;:::o;21305:142::-;21355:9;21388:53;21406:34;21415:24;21433:5;21415:24;:::i;:::-;21406:34;:::i;:::-;21388:53;:::i;:::-;21375:66;;21305:142;;;:::o;21453:75::-;21496:3;21517:5;21510:12;;21453:75;;;:::o;21534:269::-;21644:39;21675:7;21644:39;:::i;:::-;21705:91;21754:41;21778:16;21754:41;:::i;:::-;21746:6;21739:4;21733:11;21705:91;:::i;:::-;21699:4;21692:105;21610:193;21534:269;;;:::o;21809:73::-;21854:3;21809:73;:::o;21888:189::-;21965:32;;:::i;:::-;22006:65;22064:6;22056;22050:4;22006:65;:::i;:::-;21941:136;21888:189;;:::o;22083:186::-;22143:120;22160:3;22153:5;22150:14;22143:120;;;22214:39;22251:1;22244:5;22214:39;:::i;:::-;22187:1;22180:5;22176:13;22167:22;;22143:120;;;22083:186;;:::o;22275:543::-;22376:2;22371:3;22368:11;22365:446;;;22410:38;22442:5;22410:38;:::i;:::-;22494:29;22512:10;22494:29;:::i;:::-;22484:8;22480:44;22677:2;22665:10;22662:18;22659:49;;;22698:8;22683:23;;22659:49;22721:80;22777:22;22795:3;22777:22;:::i;:::-;22767:8;22763:37;22750:11;22721:80;:::i;:::-;22380:431;;22365:446;22275:543;;;:::o;22824:117::-;22878:8;22928:5;22922:4;22918:16;22897:37;;22824:117;;;;:::o;22947:169::-;22991:6;23024:51;23072:1;23068:6;23060:5;23057:1;23053:13;23024:51;:::i;:::-;23020:56;23105:4;23099;23095:15;23085:25;;22998:118;22947:169;;;;:::o;23121:295::-;23197:4;23343:29;23368:3;23362:4;23343:29;:::i;:::-;23335:37;;23405:3;23402:1;23398:11;23392:4;23389:21;23381:29;;23121:295;;;;:::o;23421:1395::-;23538:37;23571:3;23538:37;:::i;:::-;23640:18;23632:6;23629:30;23626:56;;;23662:18;;:::i;:::-;23626:56;23706:38;23738:4;23732:11;23706:38;:::i;:::-;23791:67;23851:6;23843;23837:4;23791:67;:::i;:::-;23885:1;23909:4;23896:17;;23941:2;23933:6;23930:14;23958:1;23953:618;;;;24615:1;24632:6;24629:77;;;24681:9;24676:3;24672:19;24666:26;24657:35;;24629:77;24732:67;24792:6;24785:5;24732:67;:::i;:::-;24726:4;24719:81;24588:222;23923:887;;23953:618;24005:4;24001:9;23993:6;23989:22;24039:37;24071:4;24039:37;:::i;:::-;24098:1;24112:208;24126:7;24123:1;24120:14;24112:208;;;24205:9;24200:3;24196:19;24190:26;24182:6;24175:42;24256:1;24248:6;24244:14;24234:24;;24303:2;24292:9;24288:18;24275:31;;24149:4;24146:1;24142:12;24137:17;;24112:208;;;24348:6;24339:7;24336:19;24333:179;;;24406:9;24401:3;24397:19;24391:26;24449:48;24491:4;24483:6;24479:17;24468:9;24449:48;:::i;:::-;24441:6;24434:64;24356:156;24333:179;24558:1;24554;24546:6;24542:14;24538:22;24532:4;24525:36;23960:611;;;23923:887;;23513:1303;;;23421:1395;;:::o;24822:148::-;24924:11;24961:3;24946:18;;24822:148;;;;:::o;24976:390::-;25082:3;25110:39;25143:5;25110:39;:::i;:::-;25165:89;25247:6;25242:3;25165:89;:::i;:::-;25158:96;;25263:65;25321:6;25316:3;25309:4;25302:5;25298:16;25263:65;:::i;:::-;25353:6;25348:3;25344:16;25337:23;;25086:280;24976:390;;;;:::o;25372:435::-;25552:3;25574:95;25665:3;25656:6;25574:95;:::i;:::-;25567:102;;25686:95;25777:3;25768:6;25686:95;:::i;:::-;25679:102;;25798:3;25791:10;;25372:435;;;;;:::o;25813:167::-;25953:19;25949:1;25941:6;25937:14;25930:43;25813:167;:::o;25986:366::-;26128:3;26149:67;26213:2;26208:3;26149:67;:::i;:::-;26142:74;;26225:93;26314:3;26225:93;:::i;:::-;26343:2;26338:3;26334:12;26327:19;;25986:366;;;:::o;26358:419::-;26524:4;26562:2;26551:9;26547:18;26539:26;;26611:9;26605:4;26601:20;26597:1;26586:9;26582:17;26575:47;26639:131;26765:4;26639:131;:::i;:::-;26631:139;;26358:419;;;:::o;26783:225::-;26923:34;26919:1;26911:6;26907:14;26900:58;26992:8;26987:2;26979:6;26975:15;26968:33;26783:225;:::o;27014:366::-;27156:3;27177:67;27241:2;27236:3;27177:67;:::i;:::-;27170:74;;27253:93;27342:3;27253:93;:::i;:::-;27371:2;27366:3;27362:12;27355:19;;27014:366;;;:::o;27386:419::-;27552:4;27590:2;27579:9;27575:18;27567:26;;27639:9;27633:4;27629:20;27625:1;27614:9;27610:17;27603:47;27667:131;27793:4;27667:131;:::i;:::-;27659:139;;27386:419;;;:::o;27811:182::-;27951:34;27947:1;27939:6;27935:14;27928:58;27811:182;:::o;27999:366::-;28141:3;28162:67;28226:2;28221:3;28162:67;:::i;:::-;28155:74;;28238:93;28327:3;28238:93;:::i;:::-;28356:2;28351:3;28347:12;28340:19;;27999:366;;;:::o;28371:419::-;28537:4;28575:2;28564:9;28560:18;28552:26;;28624:9;28618:4;28614:20;28610:1;28599:9;28595:17;28588:47;28652:131;28778:4;28652:131;:::i;:::-;28644:139;;28371:419;;;:::o;28796:98::-;28847:6;28881:5;28875:12;28865:22;;28796:98;;;:::o;28900:168::-;28983:11;29017:6;29012:3;29005:19;29057:4;29052:3;29048:14;29033:29;;28900:168;;;;:::o;29074:373::-;29160:3;29188:38;29220:5;29188:38;:::i;:::-;29242:70;29305:6;29300:3;29242:70;:::i;:::-;29235:77;;29321:65;29379:6;29374:3;29367:4;29360:5;29356:16;29321:65;:::i;:::-;29411:29;29433:6;29411:29;:::i;:::-;29406:3;29402:39;29395:46;;29164:283;29074:373;;;;:::o;29453:640::-;29648:4;29686:3;29675:9;29671:19;29663:27;;29700:71;29768:1;29757:9;29753:17;29744:6;29700:71;:::i;:::-;29781:72;29849:2;29838:9;29834:18;29825:6;29781:72;:::i;:::-;29863;29931:2;29920:9;29916:18;29907:6;29863:72;:::i;:::-;29982:9;29976:4;29972:20;29967:2;29956:9;29952:18;29945:48;30010:76;30081:4;30072:6;30010:76;:::i;:::-;30002:84;;29453:640;;;;;;;:::o;30099:141::-;30155:5;30186:6;30180:13;30171:22;;30202:32;30228:5;30202:32;:::i;:::-;30099:141;;;;:::o;30246:349::-;30315:6;30364:2;30352:9;30343:7;30339:23;30335:32;30332:119;;;30370:79;;:::i;:::-;30332:119;30490:1;30515:63;30570:7;30561:6;30550:9;30546:22;30515:63;:::i;:::-;30505:73;;30461:127;30246:349;;;;:::o;30601:233::-;30640:3;30663:24;30681:5;30663:24;:::i;:::-;30654:33;;30709:66;30702:5;30699:77;30696:103;;30779:18;;:::i;:::-;30696:103;30826:1;30819:5;30815:13;30808:20;;30601:233;;;:::o;30840:180::-;30888:77;30885:1;30878:88;30985:4;30982:1;30975:15;31009:4;31006:1;30999:15;31026:185;31066:1;31083:20;31101:1;31083:20;:::i;:::-;31078:25;;31117:20;31135:1;31117:20;:::i;:::-;31112:25;;31156:1;31146:35;;31161:18;;:::i;:::-;31146:35;31203:1;31200;31196:9;31191:14;;31026:185;;;;:::o;31217:194::-;31257:4;31277:20;31295:1;31277:20;:::i;:::-;31272:25;;31311:20;31329:1;31311:20;:::i;:::-;31306:25;;31355:1;31352;31348:9;31340:17;;31379:1;31373:4;31370:11;31367:37;;;31384:18;;:::i;:::-;31367:37;31217:194;;;;:::o;31417:176::-;31449:1;31466:20;31484:1;31466:20;:::i;:::-;31461:25;;31500:20;31518:1;31500:20;:::i;:::-;31495:25;;31539:1;31529:35;;31544:18;;:::i;:::-;31529:35;31585:1;31582;31578:9;31573:14;;31417:176;;;;:::o;31599:180::-;31647:77;31644:1;31637:88;31744:4;31741:1;31734:15;31768:4;31765:1;31758:15;31785:232;31825:3;31844:20;31862:1;31844:20;:::i;:::-;31839:25;;31878:20;31896:1;31878:20;:::i;:::-;31873:25;;31921:1;31918;31914:9;31907:16;;31944:42;31939:3;31936:51;31933:77;;;31990:18;;:::i;:::-;31933:77;31785:232;;;;:::o

Swarm Source

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