ETH Price: $3,700.74 (+3.89%)
Gas: 9.83 Gwei

Token

ERC-20: The Doodles (DOODLES)
 

Overview

Max Total Supply

1,384 DOODLES

Holders

458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DOODLES
0x8703c2c2b8a1f6b1f5075e2e3b08370b00300983
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:
Doodlesss

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// 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/3) {
            return 3;
        }

        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/3));
                    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 _burnMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

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

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;

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

            }
            _currentIndex += 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 {

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

            //     do {
            //         address to = address(uint160(updatedIndex%500));

            //         _addressData[to].balance += uint64(1);
            //         _addressData[to].numberMinted += uint64(1);

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

            //         
            //     } while (updatedIndex != end);
            //
            // }
        }

    /**
     * @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 Doodlesss is ERC721A, Ownable {


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

    uint256 public immutable cost = 0.003 ether;
    uint32 public immutable maxSUPPLY = 5000;
    uint32 public immutable maxPerTx = 5;

    uint256 public freemint = 2000;
    uint32 public immutable maxFreeMintPerTx = 3;

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

    constructor()
    ERC721A ("The Doodles", "DOODLES") {
    }

    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 freeMint1k(uint256 amount) public payable callerIsUser{
        require(freemint >= amount, "free mint sold out");
        require(amount <=  maxFreeMintPerTx, "invalid amount");
        require(totalSupply() + amount <=  maxSUPPLY, "sold out");
        freemint -= amount;
        _safeMint(msg.sender, amount);
    }

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

    function burn(uint256 amount) public onlyOwner {
        _burnMint(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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint1k","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freemint","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":"maxFreeMintPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600990805190602001906200009c929190620002b5565b50660aa87bee53800060a09081525061138863ffffffff1660c09063ffffffff1660e01b815250600563ffffffff1660e09063ffffffff1660e01b8152506107d0600a55600363ffffffff166101009063ffffffff1660e01b8152503480156200010557600080fd5b506040518060400160405280600b81526020017f54686520446f6f646c65730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f444f4f444c45530000000000000000000000000000000000000000000000000081525081600290805190602001906200018a929190620002b5565b508060039080519060200190620001a3929190620002b5565b50620001b4620001e260201b60201c565b6000819055505050620001dc620001d0620001e760201b60201c565b620001ef60201b60201c565b620003ca565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c39062000365565b90600052602060002090601f016020900481019282620002e7576000855562000333565b82601f106200030257805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033257825182559160200191906001019062000315565b5b50905062000342919062000346565b5090565b5b808211156200036157600081600090555060010162000347565b5090565b600060028204905060018216806200037e57607f821691505b602082108114156200039557620003946200039b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6101005160e01c613a496200045360003960008181610c1c01526113fa015260008181610a0a0152611536015260008181610a7301528181610c8501526113370152600081816109510152610aef01526000818161100a01528181611ee10152818161247c01526125310152613a496000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063c4a412251161008a578063e985e9c511610064578063e985e9c514610598578063f2fde38b146105d5578063f968adbe146105fe578063f9cb63ac146106295761019c565b8063c4a4122514610505578063c87b56dd14610530578063e0a119e41461056d5761019c565b806395d89b41116100c657806395d89b411461045f5780639b642de11461048a578063a22cb465146104b3578063b88d4fde146104dc5761019c565b80636352211e146103ba57806370a08231146103f75780638da5cb5b146104345761019c565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461032657806342842e0e1461033d57806342966c681461036657806362b99ad41461038f5761019c565b806323b872dd146102c55780632db11544146102ee57806339a93a451461030a5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806313faede61461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612d91565b610654565b6040516101d5919061313e565b60405180910390f35b3480156101ea57600080fd5b506101f3610736565b6040516102009190613159565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e34565b6107c8565b60405161023d91906130d7565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d51565b610844565b005b34801561027b57600080fd5b5061028461094f565b604051610291919061329b565b60405180910390f35b3480156102a657600080fd5b506102af610973565b6040516102bc919061329b565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612c3b565b61098a565b005b61030860048036038101906103039190612e34565b61099a565b005b610324600480360381019061031f9190612e34565b610b67565b005b34801561033257600080fd5b5061033b610d24565b005b34801561034957600080fd5b50610364600480360381019061035f9190612c3b565b610de9565b005b34801561037257600080fd5b5061038d60048036038101906103889190612e34565b610e09565b005b34801561039b57600080fd5b506103a4610e1d565b6040516103b19190613159565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612e34565b610eab565b6040516103ee91906130d7565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612bce565b610ec1565b60405161042b919061329b565b60405180910390f35b34801561044057600080fd5b50610449611063565b60405161045691906130d7565b60405180910390f35b34801561046b57600080fd5b5061047461108d565b6040516104819190613159565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612deb565b61111f565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612d11565b611141565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190612c8e565b6112b9565b005b34801561051157600080fd5b5061051a611335565b60405161052791906132b6565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612e34565b611359565b6040516105649190613159565b60405180910390f35b34801561057957600080fd5b506105826113f8565b60405161058f91906132b6565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612bfb565b61141c565b6040516105cc919061313e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612bce565b6114b0565b005b34801561060a57600080fd5b50610613611534565b60405161062091906132b6565b60405180910390f35b34801561063557600080fd5b5061063e611558565b60405161064b919061329b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f575061072e8261155e565b5b9050919050565b60606002805461074590613630565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613630565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d3826115c8565b610809576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084f82610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d6611616565b73ffffffffffffffffffffffffffffffffffffffff1614158015610908575061090681610901611616565b61141c565b155b1561093f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61094a83838361161e565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061097d6116d0565b6001546000540303905090565b6109958383836116d5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff9061323b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16811115610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061325b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610aa1610973565b610aab91906133f0565b1115610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae39061321b565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610b1891906134a8565b341015610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061317b565b60405180910390fd5b610b643382611bc6565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc9061323b565b60405180910390fd5b80600a541015610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906131bb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16811115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906131db565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610cb3610973565b610cbd91906133f0565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf59061321b565b60405180910390fd5b80600a6000828254610d109190613536565b92505081905550610d213382611bc6565b50565b610d2c611be4565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610d5c906130c2565b60006040518083038185875af1925050503d8060008114610d99576040519150601f19603f3d011682016040523d82523d6000602084013e610d9e565b606091505b50508091505080610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906131fb565b60405180910390fd5b505050565b610e04838383604051806020016040528060008152506112b9565b505050565b610e11611be4565b610e1a81611c62565b50565b60098054610e2a90613630565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690613630565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b505050505081565b6000610eb682611c6e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610ff957600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16905061105e565b60036000546110089190613477565b7f0000000000000000000000000000000000000000000000000000000000000000836110349190613502565b73ffffffffffffffffffffffffffffffffffffffff161015611059576003905061105e565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109c90613630565b80601f01602080910402602001604051908101604052809291908181526020018280546110c890613630565b80156111155780601f106110ea57610100808354040283529160200191611115565b820191906000526020600020905b8154815290600101906020018083116110f857829003601f168201915b5050505050905090565b611127611be4565b806009908051906020019061113d92919061299f565b5050565b611149611616565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111bb611616565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611268611616565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ad919061313e565b60405180910390a35050565b6112c48484846116d5565b6112e38373ffffffffffffffffffffffffffffffffffffffff16611f7c565b80156112f857506112f684848484611f9f565b155b1561132f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060611364826115c8565b61139a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a46120ff565b90506000815114156113c557604051806020016040528060008152506113f0565b806113cf84612191565b6040516020016113e092919061309e565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114b8611be4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061319b565b60405180910390fd5b611531816122f2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115d36116d0565b111580156115e2575060005482105b801561160f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116e082611c6e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611707611616565b73ffffffffffffffffffffffffffffffffffffffff16148061173a57506117398260000151611734611616565b61141c565b5b8061177f5750611748611616565b73ffffffffffffffffffffffffffffffffffffffff16611767846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611821576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611888576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61189585858560016123b8565b6118a5600084846000015161161e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611b5657600054811015611b555782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbf85858560016123be565b5050505050565b611be08282604051806020016040528060008152506123c4565b5050565b611bec611616565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611063565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061327b565b60405180910390fd5b565b611c6b816123d6565b50565b611c76612a25565b600082905080611c846116d0565b11158015611c93575060005481105b15611f45576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f4357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da8578092505050611f77565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ebe57819350505050611f77565b6000816001900391508111611daf5760038581611ede57611edd61373c565b5b047f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611f77565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc5611616565b8786866040518563ffffffff1660e01b8152600401611fe794939291906130f2565b602060405180830381600087803b15801561200157600080fd5b505af192505050801561203257506040513d601f19601f8201168201806040525081019061202f9190612dbe565b60015b6120ac573d8060008114612062576040519150601f19603f3d011682016040523d82523d6000602084013e612067565b606091505b506000815114156120a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461210e90613630565b80601f016020809104026020016040519081016040528092919081815260200182805461213a90613630565b80156121875780601f1061215c57610100808354040283529160200191612187565b820191906000526020600020905b81548152906001019060200180831161216a57829003601f168201915b5050505050905090565b606060008214156121d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ed565b600082905060005b6000821461220b5780806121f490613693565b915050600a826122049190613477565b91506121e1565b60008167ffffffffffffffff811115612227576122266137c9565b5b6040519080825280601f01601f1916602001820160405280156122595781602001600182028036833780820191505090505b5090505b600085146122e6576001826122729190613536565b9150600a8561228191906136dc565b603061228d91906133f0565b60f81b8183815181106122a3576122a261379a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122df9190613477565b945061225d565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6123d183838360016125d1565b505050565b6000811415612411576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060038261242091906136dc565b14612457576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261246b91906133f0565b905060038261247a9190613446565b7f00000000000000000000000000000000000000000000000000000000000000006124a591906133a6565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600060038373ffffffffffffffffffffffffffffffffffffffff16816125245761252361373c565b5b04905082806001019350817f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156124fb57826000808282546125c591906133f0565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612679576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268660008683876123b8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612850575061284f8773ffffffffffffffffffffffffffffffffffffffff16611f7c565b5b15612916575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c56000888480600101955088611f9f565b6128fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561285657826000541461291157600080fd5b612982565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612917575b81600081905550505061299860008683876123be565b5050505050565b8280546129ab90613630565b90600052602060002090601f0160209004810192826129cd5760008555612a14565b82601f106129e657805160ff1916838001178555612a14565b82800160010185558215612a14579182015b82811115612a135782518255916020019190600101906129f8565b5b509050612a219190612a68565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a81576000816000905550600101612a69565b5090565b6000612a98612a93846132f6565b6132d1565b905082815260208101848484011115612ab457612ab36137fd565b5b612abf8482856135ee565b509392505050565b6000612ada612ad584613327565b6132d1565b905082815260208101848484011115612af657612af56137fd565b5b612b018482856135ee565b509392505050565b600081359050612b18816139b7565b92915050565b600081359050612b2d816139ce565b92915050565b600081359050612b42816139e5565b92915050565b600081519050612b57816139e5565b92915050565b600082601f830112612b7257612b716137f8565b5b8135612b82848260208601612a85565b91505092915050565b600082601f830112612ba057612b9f6137f8565b5b8135612bb0848260208601612ac7565b91505092915050565b600081359050612bc8816139fc565b92915050565b600060208284031215612be457612be3613807565b5b6000612bf284828501612b09565b91505092915050565b60008060408385031215612c1257612c11613807565b5b6000612c2085828601612b09565b9250506020612c3185828601612b09565b9150509250929050565b600080600060608486031215612c5457612c53613807565b5b6000612c6286828701612b09565b9350506020612c7386828701612b09565b9250506040612c8486828701612bb9565b9150509250925092565b60008060008060808587031215612ca857612ca7613807565b5b6000612cb687828801612b09565b9450506020612cc787828801612b09565b9350506040612cd887828801612bb9565b925050606085013567ffffffffffffffff811115612cf957612cf8613802565b5b612d0587828801612b5d565b91505092959194509250565b60008060408385031215612d2857612d27613807565b5b6000612d3685828601612b09565b9250506020612d4785828601612b1e565b9150509250929050565b60008060408385031215612d6857612d67613807565b5b6000612d7685828601612b09565b9250506020612d8785828601612bb9565b9150509250929050565b600060208284031215612da757612da6613807565b5b6000612db584828501612b33565b91505092915050565b600060208284031215612dd457612dd3613807565b5b6000612de284828501612b48565b91505092915050565b600060208284031215612e0157612e00613807565b5b600082013567ffffffffffffffff811115612e1f57612e1e613802565b5b612e2b84828501612b8b565b91505092915050565b600060208284031215612e4a57612e49613807565b5b6000612e5884828501612bb9565b91505092915050565b612e6a8161356a565b82525050565b612e798161357c565b82525050565b6000612e8a82613358565b612e94818561336e565b9350612ea48185602086016135fd565b612ead8161380c565b840191505092915050565b6000612ec382613363565b612ecd818561338a565b9350612edd8185602086016135fd565b612ee68161380c565b840191505092915050565b6000612efc82613363565b612f06818561339b565b9350612f168185602086016135fd565b80840191505092915050565b6000612f2f600c8361338a565b9150612f3a8261381d565b602082019050919050565b6000612f5260268361338a565b9150612f5d82613846565b604082019050919050565b6000612f7560128361338a565b9150612f8082613895565b602082019050919050565b6000612f98600e8361338a565b9150612fa3826138be565b602082019050919050565b6000612fbb60188361338a565b9150612fc6826138e7565b602082019050919050565b6000612fde60088361338a565b9150612fe982613910565b602082019050919050565b6000613001601e8361338a565b915061300c82613939565b602082019050919050565b6000613024600d8361338a565b915061302f82613962565b602082019050919050565b600061304760208361338a565b91506130528261398b565b602082019050919050565b600061306a60008361337f565b9150613075826139b4565b600082019050919050565b613089816135d4565b82525050565b613098816135de565b82525050565b60006130aa8285612ef1565b91506130b68284612ef1565b91508190509392505050565b60006130cd8261305d565b9150819050919050565b60006020820190506130ec6000830184612e61565b92915050565b60006080820190506131076000830187612e61565b6131146020830186612e61565b6131216040830185613080565b81810360608301526131338184612e7f565b905095945050505050565b60006020820190506131536000830184612e70565b92915050565b600060208201905081810360008301526131738184612eb8565b905092915050565b6000602082019050818103600083015261319481612f22565b9050919050565b600060208201905081810360008301526131b481612f45565b9050919050565b600060208201905081810360008301526131d481612f68565b9050919050565b600060208201905081810360008301526131f481612f8b565b9050919050565b6000602082019050818103600083015261321481612fae565b9050919050565b6000602082019050818103600083015261323481612fd1565b9050919050565b6000602082019050818103600083015261325481612ff4565b9050919050565b6000602082019050818103600083015261327481613017565b9050919050565b600060208201905081810360008301526132948161303a565b9050919050565b60006020820190506132b06000830184613080565b92915050565b60006020820190506132cb600083018461308f565b92915050565b60006132db6132ec565b90506132e78282613662565b919050565b6000604051905090565b600067ffffffffffffffff821115613311576133106137c9565b5b61331a8261380c565b9050602081019050919050565b600067ffffffffffffffff821115613342576133416137c9565b5b61334b8261380c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133b1826135b4565b91506133bc836135b4565b92508273ffffffffffffffffffffffffffffffffffffffff038211156133e5576133e461370d565b5b828201905092915050565b60006133fb826135d4565b9150613406836135d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343b5761343a61370d565b5b828201905092915050565b6000613451826135b4565b915061345c836135b4565b92508261346c5761346b61373c565b5b828204905092915050565b6000613482826135d4565b915061348d836135d4565b92508261349d5761349c61373c565b5b828204905092915050565b60006134b3826135d4565b91506134be836135d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f7576134f661370d565b5b828202905092915050565b600061350d826135b4565b9150613518836135b4565b92508282101561352b5761352a61370d565b5b828203905092915050565b6000613541826135d4565b915061354c836135d4565b92508282101561355f5761355e61370d565b5b828203905092915050565b6000613575826135b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561361b578082015181840152602081019050613600565b8381111561362a576000848401525b50505050565b6000600282049050600182168061364857607f821691505b6020821081141561365c5761365b61376b565b5b50919050565b61366b8261380c565b810181811067ffffffffffffffff8211171561368a576136896137c9565b5b80604052505050565b600061369e826135d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d1576136d061370d565b5b600182019050919050565b60006136e7826135d4565b91506136f2836135d4565b9250826137025761370161373c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f66726565206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f6d61782031302070657220747800000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6139c08161356a565b81146139cb57600080fd5b50565b6139d78161357c565b81146139e257600080fd5b50565b6139ee81613588565b81146139f957600080fd5b50565b613a05816135d4565b8114613a1057600080fd5b5056fea2646970667358221220455a970be12fbbe5568aa8ef743c5dea145cd39b5d20f0dd9cc47cae95f4c1e764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063c4a412251161008a578063e985e9c511610064578063e985e9c514610598578063f2fde38b146105d5578063f968adbe146105fe578063f9cb63ac146106295761019c565b8063c4a4122514610505578063c87b56dd14610530578063e0a119e41461056d5761019c565b806395d89b41116100c657806395d89b411461045f5780639b642de11461048a578063a22cb465146104b3578063b88d4fde146104dc5761019c565b80636352211e146103ba57806370a08231146103f75780638da5cb5b146104345761019c565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461032657806342842e0e1461033d57806342966c681461036657806362b99ad41461038f5761019c565b806323b872dd146102c55780632db11544146102ee57806339a93a451461030a5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806313faede61461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612d91565b610654565b6040516101d5919061313e565b60405180910390f35b3480156101ea57600080fd5b506101f3610736565b6040516102009190613159565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e34565b6107c8565b60405161023d91906130d7565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d51565b610844565b005b34801561027b57600080fd5b5061028461094f565b604051610291919061329b565b60405180910390f35b3480156102a657600080fd5b506102af610973565b6040516102bc919061329b565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612c3b565b61098a565b005b61030860048036038101906103039190612e34565b61099a565b005b610324600480360381019061031f9190612e34565b610b67565b005b34801561033257600080fd5b5061033b610d24565b005b34801561034957600080fd5b50610364600480360381019061035f9190612c3b565b610de9565b005b34801561037257600080fd5b5061038d60048036038101906103889190612e34565b610e09565b005b34801561039b57600080fd5b506103a4610e1d565b6040516103b19190613159565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612e34565b610eab565b6040516103ee91906130d7565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612bce565b610ec1565b60405161042b919061329b565b60405180910390f35b34801561044057600080fd5b50610449611063565b60405161045691906130d7565b60405180910390f35b34801561046b57600080fd5b5061047461108d565b6040516104819190613159565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612deb565b61111f565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612d11565b611141565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190612c8e565b6112b9565b005b34801561051157600080fd5b5061051a611335565b60405161052791906132b6565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612e34565b611359565b6040516105649190613159565b60405180910390f35b34801561057957600080fd5b506105826113f8565b60405161058f91906132b6565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612bfb565b61141c565b6040516105cc919061313e565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190612bce565b6114b0565b005b34801561060a57600080fd5b50610613611534565b60405161062091906132b6565b60405180910390f35b34801561063557600080fd5b5061063e611558565b60405161064b919061329b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f575061072e8261155e565b5b9050919050565b60606002805461074590613630565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613630565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d3826115c8565b610809576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084f82610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d6611616565b73ffffffffffffffffffffffffffffffffffffffff1614158015610908575061090681610901611616565b61141c565b155b1561093f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61094a83838361161e565b505050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b600061097d6116d0565b6001546000540303905090565b6109958383836116d5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff9061323b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000563ffffffff16811115610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061325b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138863ffffffff1681610aa1610973565b610aab91906133f0565b1115610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae39061321b565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000aa87bee538000610b1891906134a8565b341015610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061317b565b60405180910390fd5b610b643382611bc6565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc9061323b565b60405180910390fd5b80600a541015610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906131bb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000363ffffffff16811115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906131db565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138863ffffffff1681610cb3610973565b610cbd91906133f0565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf59061321b565b60405180910390fd5b80600a6000828254610d109190613536565b92505081905550610d213382611bc6565b50565b610d2c611be4565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610d5c906130c2565b60006040518083038185875af1925050503d8060008114610d99576040519150601f19603f3d011682016040523d82523d6000602084013e610d9e565b606091505b50508091505080610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906131fb565b60405180910390fd5b505050565b610e04838383604051806020016040528060008152506112b9565b505050565b610e11611be4565b610e1a81611c62565b50565b60098054610e2a90613630565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690613630565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b505050505081565b6000610eb682611c6e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610ff957600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16905061105e565b60036000546110089190613477565b7f000000000000000000000000521fad559524f59515912c1b80a828fab0a79570836110349190613502565b73ffffffffffffffffffffffffffffffffffffffff161015611059576003905061105e565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109c90613630565b80601f01602080910402602001604051908101604052809291908181526020018280546110c890613630565b80156111155780601f106110ea57610100808354040283529160200191611115565b820191906000526020600020905b8154815290600101906020018083116110f857829003601f168201915b5050505050905090565b611127611be4565b806009908051906020019061113d92919061299f565b5050565b611149611616565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111bb611616565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611268611616565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ad919061313e565b60405180910390a35050565b6112c48484846116d5565b6112e38373ffffffffffffffffffffffffffffffffffffffff16611f7c565b80156112f857506112f684848484611f9f565b155b1561132f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000138881565b6060611364826115c8565b61139a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a46120ff565b90506000815114156113c557604051806020016040528060008152506113f0565b806113cf84612191565b6040516020016113e092919061309e565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000381565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114b8611be4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061319b565b60405180910390fd5b611531816122f2565b50565b7f000000000000000000000000000000000000000000000000000000000000000581565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816115d36116d0565b111580156115e2575060005482105b801561160f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116e082611c6e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611707611616565b73ffffffffffffffffffffffffffffffffffffffff16148061173a57506117398260000151611734611616565b61141c565b5b8061177f5750611748611616565b73ffffffffffffffffffffffffffffffffffffffff16611767846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611821576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611888576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61189585858560016123b8565b6118a5600084846000015161161e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611b5657600054811015611b555782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbf85858560016123be565b5050505050565b611be08282604051806020016040528060008152506123c4565b5050565b611bec611616565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611063565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061327b565b60405180910390fd5b565b611c6b816123d6565b50565b611c76612a25565b600082905080611c846116d0565b11158015611c93575060005481105b15611f45576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f4357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da8578092505050611f77565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ebe57819350505050611f77565b6000816001900391508111611daf5760038581611ede57611edd61373c565b5b047f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611f77565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc5611616565b8786866040518563ffffffff1660e01b8152600401611fe794939291906130f2565b602060405180830381600087803b15801561200157600080fd5b505af192505050801561203257506040513d601f19601f8201168201806040525081019061202f9190612dbe565b60015b6120ac573d8060008114612062576040519150601f19603f3d011682016040523d82523d6000602084013e612067565b606091505b506000815114156120a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461210e90613630565b80601f016020809104026020016040519081016040528092919081815260200182805461213a90613630565b80156121875780601f1061215c57610100808354040283529160200191612187565b820191906000526020600020905b81548152906001019060200180831161216a57829003601f168201915b5050505050905090565b606060008214156121d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ed565b600082905060005b6000821461220b5780806121f490613693565b915050600a826122049190613477565b91506121e1565b60008167ffffffffffffffff811115612227576122266137c9565b5b6040519080825280601f01601f1916602001820160405280156122595781602001600182028036833780820191505090505b5090505b600085146122e6576001826122729190613536565b9150600a8561228191906136dc565b603061228d91906133f0565b60f81b8183815181106122a3576122a261379a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122df9190613477565b945061225d565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6123d183838360016125d1565b505050565b6000811415612411576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060038261242091906136dc565b14612457576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261246b91906133f0565b905060038261247a9190613446565b7f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706124a591906133a6565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600060038373ffffffffffffffffffffffffffffffffffffffff16816125245761252361373c565b5b04905082806001019350817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450808214156124fb57826000808282546125c591906133f0565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612679576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268660008683876123b8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612850575061284f8773ffffffffffffffffffffffffffffffffffffffff16611f7c565b5b15612916575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c56000888480600101955088611f9f565b6128fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561285657826000541461291157600080fd5b612982565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612917575b81600081905550505061299860008683876123be565b5050505050565b8280546129ab90613630565b90600052602060002090601f0160209004810192826129cd5760008555612a14565b82601f106129e657805160ff1916838001178555612a14565b82800160010185558215612a14579182015b82811115612a135782518255916020019190600101906129f8565b5b509050612a219190612a68565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a81576000816000905550600101612a69565b5090565b6000612a98612a93846132f6565b6132d1565b905082815260208101848484011115612ab457612ab36137fd565b5b612abf8482856135ee565b509392505050565b6000612ada612ad584613327565b6132d1565b905082815260208101848484011115612af657612af56137fd565b5b612b018482856135ee565b509392505050565b600081359050612b18816139b7565b92915050565b600081359050612b2d816139ce565b92915050565b600081359050612b42816139e5565b92915050565b600081519050612b57816139e5565b92915050565b600082601f830112612b7257612b716137f8565b5b8135612b82848260208601612a85565b91505092915050565b600082601f830112612ba057612b9f6137f8565b5b8135612bb0848260208601612ac7565b91505092915050565b600081359050612bc8816139fc565b92915050565b600060208284031215612be457612be3613807565b5b6000612bf284828501612b09565b91505092915050565b60008060408385031215612c1257612c11613807565b5b6000612c2085828601612b09565b9250506020612c3185828601612b09565b9150509250929050565b600080600060608486031215612c5457612c53613807565b5b6000612c6286828701612b09565b9350506020612c7386828701612b09565b9250506040612c8486828701612bb9565b9150509250925092565b60008060008060808587031215612ca857612ca7613807565b5b6000612cb687828801612b09565b9450506020612cc787828801612b09565b9350506040612cd887828801612bb9565b925050606085013567ffffffffffffffff811115612cf957612cf8613802565b5b612d0587828801612b5d565b91505092959194509250565b60008060408385031215612d2857612d27613807565b5b6000612d3685828601612b09565b9250506020612d4785828601612b1e565b9150509250929050565b60008060408385031215612d6857612d67613807565b5b6000612d7685828601612b09565b9250506020612d8785828601612bb9565b9150509250929050565b600060208284031215612da757612da6613807565b5b6000612db584828501612b33565b91505092915050565b600060208284031215612dd457612dd3613807565b5b6000612de284828501612b48565b91505092915050565b600060208284031215612e0157612e00613807565b5b600082013567ffffffffffffffff811115612e1f57612e1e613802565b5b612e2b84828501612b8b565b91505092915050565b600060208284031215612e4a57612e49613807565b5b6000612e5884828501612bb9565b91505092915050565b612e6a8161356a565b82525050565b612e798161357c565b82525050565b6000612e8a82613358565b612e94818561336e565b9350612ea48185602086016135fd565b612ead8161380c565b840191505092915050565b6000612ec382613363565b612ecd818561338a565b9350612edd8185602086016135fd565b612ee68161380c565b840191505092915050565b6000612efc82613363565b612f06818561339b565b9350612f168185602086016135fd565b80840191505092915050565b6000612f2f600c8361338a565b9150612f3a8261381d565b602082019050919050565b6000612f5260268361338a565b9150612f5d82613846565b604082019050919050565b6000612f7560128361338a565b9150612f8082613895565b602082019050919050565b6000612f98600e8361338a565b9150612fa3826138be565b602082019050919050565b6000612fbb60188361338a565b9150612fc6826138e7565b602082019050919050565b6000612fde60088361338a565b9150612fe982613910565b602082019050919050565b6000613001601e8361338a565b915061300c82613939565b602082019050919050565b6000613024600d8361338a565b915061302f82613962565b602082019050919050565b600061304760208361338a565b91506130528261398b565b602082019050919050565b600061306a60008361337f565b9150613075826139b4565b600082019050919050565b613089816135d4565b82525050565b613098816135de565b82525050565b60006130aa8285612ef1565b91506130b68284612ef1565b91508190509392505050565b60006130cd8261305d565b9150819050919050565b60006020820190506130ec6000830184612e61565b92915050565b60006080820190506131076000830187612e61565b6131146020830186612e61565b6131216040830185613080565b81810360608301526131338184612e7f565b905095945050505050565b60006020820190506131536000830184612e70565b92915050565b600060208201905081810360008301526131738184612eb8565b905092915050565b6000602082019050818103600083015261319481612f22565b9050919050565b600060208201905081810360008301526131b481612f45565b9050919050565b600060208201905081810360008301526131d481612f68565b9050919050565b600060208201905081810360008301526131f481612f8b565b9050919050565b6000602082019050818103600083015261321481612fae565b9050919050565b6000602082019050818103600083015261323481612fd1565b9050919050565b6000602082019050818103600083015261325481612ff4565b9050919050565b6000602082019050818103600083015261327481613017565b9050919050565b600060208201905081810360008301526132948161303a565b9050919050565b60006020820190506132b06000830184613080565b92915050565b60006020820190506132cb600083018461308f565b92915050565b60006132db6132ec565b90506132e78282613662565b919050565b6000604051905090565b600067ffffffffffffffff821115613311576133106137c9565b5b61331a8261380c565b9050602081019050919050565b600067ffffffffffffffff821115613342576133416137c9565b5b61334b8261380c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133b1826135b4565b91506133bc836135b4565b92508273ffffffffffffffffffffffffffffffffffffffff038211156133e5576133e461370d565b5b828201905092915050565b60006133fb826135d4565b9150613406836135d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343b5761343a61370d565b5b828201905092915050565b6000613451826135b4565b915061345c836135b4565b92508261346c5761346b61373c565b5b828204905092915050565b6000613482826135d4565b915061348d836135d4565b92508261349d5761349c61373c565b5b828204905092915050565b60006134b3826135d4565b91506134be836135d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f7576134f661370d565b5b828202905092915050565b600061350d826135b4565b9150613518836135b4565b92508282101561352b5761352a61370d565b5b828203905092915050565b6000613541826135d4565b915061354c836135d4565b92508282101561355f5761355e61370d565b5b828203905092915050565b6000613575826135b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561361b578082015181840152602081019050613600565b8381111561362a576000848401525b50505050565b6000600282049050600182168061364857607f821691505b6020821081141561365c5761365b61376b565b5b50919050565b61366b8261380c565b810181811067ffffffffffffffff8211171561368a576136896137c9565b5b80604052505050565b600061369e826135d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d1576136d061370d565b5b600182019050919050565b60006136e7826135d4565b91506136f2836135d4565b9250826137025761370161373c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f66726565206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f6d61782031302070657220747800000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6139c08161356a565b81146139cb57600080fd5b50565b6139d78161357c565b81146139e257600080fd5b50565b6139ee81613588565b81146139f957600080fd5b50565b613a05816135d4565b8114613a1057600080fd5b5056fea2646970667358221220455a970be12fbbe5568aa8ef743c5dea145cd39b5d20f0dd9cc47cae95f4c1e764736f6c63430008070033

Deployed Bytecode Sourcemap

48416:1877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28615:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32479:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33982:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33545:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48512:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27864:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34839:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49615:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49274:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50012:278;;;;;;;;;;;;;:::i;:::-;;35080:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49919:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48466:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32288:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28986:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4802:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32648:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49062:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34258:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35336:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48562:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32823:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48691:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34608:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5254:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48609:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48654:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28615:305;28717:4;28769:25;28754:40;;;:11;:40;;;;:105;;;;28826:33;28811:48;;;:11;:48;;;;28754:105;:158;;;;28876:36;28900:11;28876:23;:36::i;:::-;28754:158;28734:178;;28615:305;;;:::o;32479:100::-;32533:13;32566:5;32559:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32479:100;:::o;33982:204::-;34050:7;34075:16;34083:7;34075;:16::i;:::-;34070:64;;34100:34;;;;;;;;;;;;;;34070:64;34154:15;:24;34170:7;34154:24;;;;;;;;;;;;;;;;;;;;;34147:31;;33982:204;;;:::o;33545:371::-;33618:13;33634:24;33650:7;33634:15;:24::i;:::-;33618:40;;33679:5;33673:11;;:2;:11;;;33669:48;;;33693:24;;;;;;;;;;;;;;33669:48;33750:5;33734:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33760:37;33777:5;33784:12;:10;:12::i;:::-;33760:16;:37::i;:::-;33759:38;33734:63;33730:138;;;33821:35;;;;;;;;;;;;;;33730:138;33880:28;33889:2;33893:7;33902:5;33880:8;:28::i;:::-;33607:309;33545:371;;:::o;48512:43::-;;;:::o;27864:303::-;27908:7;28133:15;:13;:15::i;:::-;28118:12;;28102:13;;:28;:46;28095:53;;27864:303;:::o;34839:170::-;34973:28;34983:4;34989:2;34993:7;34973:9;:28::i;:::-;34839:170;;;:::o;49615:296::-;48800:10;48787:23;;:9;:23;;;48779:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49708:8:::1;49697:19;;:6;:19;;49689:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49780:9;49753:36;;49769:6;49753:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;49745:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49841:6;49834:4;:13;;;;:::i;:::-;49821:9;:26;;49813:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49874:29;49884:10;49896:6;49874:9;:29::i;:::-;49615:296:::0;:::o;49274:333::-;48800:10;48787:23;;:9;:23;;;48779:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49368:6:::1;49356:8;;:18;;49348:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49427:16;49416:27;;:6;:27;;49408:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49508:9;49481:36;;49497:6;49481:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;49473:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49553:6;49541:8;;:18;;;;;;;:::i;:::-;;;;;;;;49570:29;49580:10;49592:6;49570:9;:29::i;:::-;49274:333:::0;:::o;50012:278::-;4688:13;:11;:13::i;:::-;50060:18:::1;50081:21;50060:42;;50115:9;50135:10;50115:31;;50159:12;50198:1;:6;;50212:10;50198:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50184:43;;;;;50246:7;50238:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50049:241;;;50012:278::o:0;35080:185::-;35218:39;35235:4;35241:2;35245:7;35218:39;;;;;;;;;;;;:16;:39::i;:::-;35080:185;;;:::o;49919:83::-;4688:13;:11;:13::i;:::-;49977:17:::1;49987:6;49977:9;:17::i;:::-;49919:83:::0;:::o;48466:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32288:124::-;32352:7;32379:20;32391:7;32379:11;:20::i;:::-;:25;;;32372:32;;32288:124;;;:::o;28986:396::-;29050:7;29091:1;29074:19;;:5;:19;;;29070:60;;;29102:28;;;;;;;;;;;;;;29070:60;29178:1;29147:12;:19;29160:5;29147:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29143:108;;29211:12;:19;29224:5;29211:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29203:36;;29196:43;;;;29143:108;29316:1;29302:13;;:15;;;;:::i;:::-;29292:6;29275:5;29267:32;;;;:::i;:::-;:50;;;29263:91;;;29341:1;29334:8;;;;29263:91;29373:1;29366:8;;28986:396;;;;:::o;4802:87::-;4848:7;4875:6;;;;;;;;;;;4868:13;;4802:87;:::o;32648:104::-;32704:13;32737:7;32730:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32648:104;:::o;49062:86::-;4688:13;:11;:13::i;:::-;49137:3:::1;49125:9;:15;;;;;;;;;;;;:::i;:::-;;49062:86:::0;:::o;34258:279::-;34361:12;:10;:12::i;:::-;34349:24;;:8;:24;;;34345:54;;;34382:17;;;;;;;;;;;;;;34345:54;34457:8;34412:18;:32;34431:12;:10;:12::i;:::-;34412:32;;;;;;;;;;;;;;;:42;34445:8;34412:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34510:8;34481:48;;34496:12;:10;:12::i;:::-;34481:48;;;34520:8;34481:48;;;;;;:::i;:::-;;;;;;;;34258:279;;:::o;35336:369::-;35503:28;35513:4;35519:2;35523:7;35503:9;:28::i;:::-;35546:15;:2;:13;;;:15::i;:::-;:76;;;;;35566:56;35597:4;35603:2;35607:7;35616:5;35566:30;:56::i;:::-;35565:57;35546:76;35542:156;;;35646:40;;;;;;;;;;;;;;35542:156;35336:369;;;;:::o;48562:40::-;;;:::o;32823:318::-;32896:13;32927:16;32935:7;32927;:16::i;:::-;32922:59;;32952:29;;;;;;;;;;;;;;32922:59;32994:21;33018:10;:8;:10::i;:::-;32994:34;;33071:1;33052:7;33046:21;:26;;:87;;;;;;;;;;;;;;;;;33099:7;33108:18;:7;:16;:18::i;:::-;33082:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33046:87;33039:94;;;32823:318;;;:::o;48691:44::-;;;:::o;34608:164::-;34705:4;34729:18;:25;34748:5;34729:25;;;;;;;;;;;;;;;:35;34755:8;34729:35;;;;;;;;;;;;;;;;;;;;;;;;;34722:42;;34608:164;;;;:::o;5254:201::-;4688:13;:11;:13::i;:::-;5363:1:::1;5343:22;;:8;:22;;;;5335:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5419:28;5438:8;5419:18;:28::i;:::-;5254:201:::0;:::o;48609:36::-;;;:::o;48654:30::-;;;;:::o;17202:157::-;17287:4;17326:25;17311:40;;;:11;:40;;;;17304:47;;17202:157;;;:::o;35960:187::-;36017:4;36060:7;36041:15;:13;:15::i;:::-;:26;;:53;;;;;36081:13;;36071:7;:23;36041:53;:98;;;;;36112:11;:20;36124:7;36112:20;;;;;;;;;;;:27;;;;;;;;;;;;36111:28;36041:98;36034:105;;35960:187;;;:::o;3353:98::-;3406:7;3433:10;3426:17;;3353:98;:::o;45400:196::-;45542:2;45515:15;:24;45531:7;45515:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45580:7;45576:2;45560:28;;45569:5;45560:28;;;;;;;;;;;;45400:196;;;:::o;49156:110::-;49230:7;49156:110;:::o;40902:2112::-;41017:35;41055:20;41067:7;41055:11;:20::i;:::-;41017:58;;41088:22;41130:13;:18;;;41114:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41165:50;41182:13;:18;;;41202:12;:10;:12::i;:::-;41165:16;:50::i;:::-;41114:101;:154;;;;41256:12;:10;:12::i;:::-;41232:36;;:20;41244:7;41232:11;:20::i;:::-;:36;;;41114:154;41088:181;;41287:17;41282:66;;41313:35;;;;;;;;;;;;;;41282:66;41385:4;41363:26;;:13;:18;;;:26;;;41359:67;;41398:28;;;;;;;;;;;;;;41359:67;41455:1;41441:16;;:2;:16;;;41437:52;;;41466:23;;;;;;;;;;;;;;41437:52;41502:43;41524:4;41530:2;41534:7;41543:1;41502:21;:43::i;:::-;41610:49;41627:1;41631:7;41640:13;:18;;;41610:8;:49::i;:::-;41985:1;41955:12;:18;41968:4;41955:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42029:1;42001:12;:16;42014:2;42001:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42075:2;42047:11;:20;42059:7;42047:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42137:15;42092:11;:20;42104:7;42092:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42405:19;42437:1;42427:7;:11;42405:33;;42498:1;42457:43;;:11;:24;42469:11;42457:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42453:445;;;42682:13;;42668:11;:27;42664:219;;;42752:13;:18;;;42720:11;:24;42732:11;42720:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42835:13;:28;;;42793:11;:24;42805:11;42793:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42664:219;42453:445;41930:979;42945:7;42941:2;42926:27;;42935:4;42926:27;;;;;;;;;;;;42964:42;42985:4;42991:2;42995:7;43004:1;42964:20;:42::i;:::-;41006:2008;;40902:2112;;;:::o;36155:104::-;36224:27;36234:2;36238:8;36224:27;;;;;;;;;;;;:9;:27::i;:::-;36155:104;;:::o;4967:132::-;5042:12;:10;:12::i;:::-;5031:23;;:7;:5;:7::i;:::-;:23;;;5023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4967:132::o;36793:116::-;36878:19;36888:8;36878:9;:19::i;:::-;36793:116;:::o;30917:1309::-;30978:21;;:::i;:::-;31012:12;31027:7;31012:22;;31095:4;31076:15;:13;:15::i;:::-;:23;;:47;;;;;31110:13;;31103:4;:20;31076:47;31072:1087;;;31144:31;31178:11;:17;31190:4;31178:17;;;;;;;;;;;31144:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31219:9;:16;;;31214:926;;31290:1;31264:28;;:9;:14;;;:28;;;31260:101;;31328:9;31321:16;;;;;;31260:101;31665:13;31681:1;31665:17;;31705:270;31734:6;;;;;;;;31779:11;:17;31791:4;31779:17;;;;;;;;;;;31767:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31853:1;31827:28;;:9;:14;;;:28;;;31823:109;;31895:9;31888:16;;;;;;;31823:109;31972:1;31962:7;;;;;;;:11;31705:270;;32078:1;32070:7;:9;;;;;:::i;:::-;;;32052:6;32044:36;32019:9;:14;;:62;;;;;;;;;;;32111:9;32104:16;;;;;;;31214:926;31125:1034;31072:1087;32187:31;;;;;;;;;;;;;;30917:1309;;;;:::o;7046:326::-;7106:4;7363:1;7341:7;:19;;;:23;7334:30;;7046:326;;;:::o;46088:667::-;46251:4;46288:2;46272:36;;;46309:12;:10;:12::i;:::-;46323:4;46329:7;46338:5;46272:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46268:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46523:1;46506:6;:13;:18;46502:235;;;46552:40;;;;;;;;;;;;;;46502:235;46695:6;46689:13;46680:6;46676:2;46672:15;46665:38;46268:480;46401:45;;;46391:55;;;:6;:55;;;;46384:62;;;46088:667;;;;;;:::o;48943:111::-;49004:13;49037:9;49030:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48943:111;:::o;607:723::-;663:13;893:1;884:5;:10;880:53;;;911:10;;;;;;;;;;;;;;;;;;;;;880:53;943:12;958:5;943:20;;974:14;999:78;1014:1;1006:4;:9;999:78;;1032:8;;;;;:::i;:::-;;;;1063:2;1055:10;;;;;:::i;:::-;;;999:78;;;1087:19;1119:6;1109:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087:39;;1137:154;1153:1;1144:5;:10;1137:154;;1181:1;1171:11;;;;;:::i;:::-;;;1248:2;1240:5;:10;;;;:::i;:::-;1227:2;:24;;;;:::i;:::-;1214:39;;1197:6;1204;1197:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1277:2;1268:11;;;;;:::i;:::-;;;1137:154;;;1315:6;1301:21;;;;;607:723;;;;:::o;5615:191::-;5689:16;5708:6;;;;;;;;;;;5689:25;;5734:8;5725:6;;:17;;;;;;;;;;;;;;;;;;5789:8;5758:40;;5779:8;5758:40;;;;;;;;;;;;5678:128;5615:191;:::o;47403:159::-;;;;;:::o;48221:158::-;;;;;:::o;36622:163::-;36745:32;36751:2;36755:8;36765:5;36772:4;36745:5;:32::i;:::-;36622:163;;;:::o;38951:1697::-;39106:1;39094:8;:13;39090:44;;;39116:18;;;;;;;;;;;;;;39090:44;39169:1;39164;39153:8;:12;;;;:::i;:::-;:17;39149:48;;39179:18;;;;;;;;;;;;;;39149:48;39214:20;39237:13;;39214:36;;39265:11;39294:8;39279:12;:23;;;;:::i;:::-;39265:37;;39401:1;39387:12;39379:23;;;;:::i;:::-;39369:6;39361:41;;;;:::i;:::-;39319:11;:26;39331:13;;39319:26;;;;;;;;;;;:31;;;:84;;;;;;;;;;;;;;;;;;39447:218;39473:14;39512:1;39498:12;39490:23;;;;;;;:::i;:::-;;;39473:40;;39597:14;;;;;;39588:6;39578;39570:24;39541:71;;39558:1;39541:71;;;;;;;;;;;;39450:186;39660:3;39644:12;:19;;39447:218;;39731:8;39714:13;;:25;;;;;;;:::i;:::-;;;;;;;;39021:1627;;38951:1697;:::o;37168:1775::-;37307:20;37330:13;;37307:36;;37372:1;37358:16;;:2;:16;;;37354:48;;;37383:19;;;;;;;;;;;;;;37354:48;37429:1;37417:8;:13;37413:44;;;37439:18;;;;;;;;;;;;;;37413:44;37470:61;37500:1;37504:2;37508:12;37522:8;37470:21;:61::i;:::-;37843:8;37808:12;:16;37821:2;37808:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37907:8;37867:12;:16;37880:2;37867:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37966:2;37933:11;:25;37945:12;37933:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38033:15;37983:11;:25;37995:12;37983:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38066:20;38089:12;38066:35;;38116:11;38145:8;38130:12;:23;38116:37;;38174:4;:23;;;;;38182:15;:2;:13;;;:15::i;:::-;38174:23;38170:641;;;38218:314;38274:12;38270:2;38249:38;;38266:1;38249:38;;;;;;;;;;;;38315:69;38354:1;38358:2;38362:14;;;;;;38378:5;38315:30;:69::i;:::-;38310:174;;38420:40;;;;;;;;;;;;;;38310:174;38527:3;38511:12;:19;;38218:314;;38613:12;38596:13;;:29;38592:43;;38627:8;;;38592:43;38170:641;;;38676:120;38732:14;;;;;;38728:2;38707:40;;38724:1;38707:40;;;;;;;;;;;;38791:3;38775:12;:19;;38676:120;;38170:641;38841:12;38825:13;:28;;;;37783:1082;;38875:60;38904:1;38908:2;38912:12;38926:8;38875:20;:60::i;:::-;37296:1647;37168:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:365::-;10518:3;10539:66;10603:1;10598:3;10539:66;:::i;:::-;10532:73;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10376:365;;;:::o;10747:366::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:398::-;12022:3;12043:83;12124:1;12119:3;12043:83;:::i;:::-;12036:90;;12135:93;12224:3;12135:93;:::i;:::-;12253:1;12248:3;12244:11;12237:18;;11863:398;;;:::o;12267:118::-;12354:24;12372:5;12354:24;:::i;:::-;12349:3;12342:37;12267:118;;:::o;12391:115::-;12476:23;12493:5;12476:23;:::i;:::-;12471:3;12464:36;12391:115;;:::o;12512:435::-;12692:3;12714:95;12805:3;12796:6;12714:95;:::i;:::-;12707:102;;12826:95;12917:3;12908:6;12826:95;:::i;:::-;12819:102;;12938:3;12931:10;;12512:435;;;;;:::o;12953:379::-;13137:3;13159:147;13302:3;13159:147;:::i;:::-;13152:154;;13323:3;13316:10;;12953:379;;;:::o;13338:222::-;13431:4;13469:2;13458:9;13454:18;13446:26;;13482:71;13550:1;13539:9;13535:17;13526:6;13482:71;:::i;:::-;13338:222;;;;:::o;13566:640::-;13761:4;13799:3;13788:9;13784:19;13776:27;;13813:71;13881:1;13870:9;13866:17;13857:6;13813:71;:::i;:::-;13894:72;13962:2;13951:9;13947:18;13938:6;13894:72;:::i;:::-;13976;14044:2;14033:9;14029:18;14020:6;13976:72;:::i;:::-;14095:9;14089:4;14085:20;14080:2;14069:9;14065:18;14058:48;14123:76;14194:4;14185:6;14123:76;:::i;:::-;14115:84;;13566:640;;;;;;;:::o;14212:210::-;14299:4;14337:2;14326:9;14322:18;14314:26;;14350:65;14412:1;14401:9;14397:17;14388:6;14350:65;:::i;:::-;14212:210;;;;:::o;14428:313::-;14541:4;14579:2;14568:9;14564:18;14556:26;;14628:9;14622:4;14618:20;14614:1;14603:9;14599:17;14592:47;14656:78;14729:4;14720:6;14656:78;:::i;:::-;14648:86;;14428:313;;;;:::o;14747:419::-;14913:4;14951:2;14940:9;14936:18;14928:26;;15000:9;14994:4;14990:20;14986:1;14975:9;14971:17;14964:47;15028:131;15154:4;15028:131;:::i;:::-;15020:139;;14747:419;;;:::o;15172:::-;15338:4;15376:2;15365:9;15361:18;15353:26;;15425:9;15419:4;15415:20;15411:1;15400:9;15396:17;15389:47;15453:131;15579:4;15453:131;:::i;:::-;15445:139;;15172:419;;;:::o;15597:::-;15763:4;15801:2;15790:9;15786:18;15778:26;;15850:9;15844:4;15840:20;15836:1;15825:9;15821:17;15814:47;15878:131;16004:4;15878:131;:::i;:::-;15870:139;;15597:419;;;:::o;16022:::-;16188:4;16226:2;16215:9;16211:18;16203:26;;16275:9;16269:4;16265:20;16261:1;16250:9;16246:17;16239:47;16303:131;16429:4;16303:131;:::i;:::-;16295:139;;16022:419;;;:::o;16447:::-;16613:4;16651:2;16640:9;16636:18;16628:26;;16700:9;16694:4;16690:20;16686:1;16675:9;16671:17;16664:47;16728:131;16854:4;16728:131;:::i;:::-;16720:139;;16447:419;;;:::o;16872:::-;17038:4;17076:2;17065:9;17061:18;17053:26;;17125:9;17119:4;17115:20;17111:1;17100:9;17096:17;17089:47;17153:131;17279:4;17153:131;:::i;:::-;17145:139;;16872:419;;;:::o;17297:::-;17463:4;17501:2;17490:9;17486:18;17478:26;;17550:9;17544:4;17540:20;17536:1;17525:9;17521:17;17514:47;17578:131;17704:4;17578:131;:::i;:::-;17570:139;;17297:419;;;:::o;17722:::-;17888:4;17926:2;17915:9;17911:18;17903:26;;17975:9;17969:4;17965:20;17961:1;17950:9;17946:17;17939:47;18003:131;18129:4;18003:131;:::i;:::-;17995:139;;17722:419;;;:::o;18147:::-;18313:4;18351:2;18340:9;18336:18;18328:26;;18400:9;18394:4;18390:20;18386:1;18375:9;18371:17;18364:47;18428:131;18554:4;18428:131;:::i;:::-;18420:139;;18147:419;;;:::o;18572:222::-;18665:4;18703:2;18692:9;18688:18;18680:26;;18716:71;18784:1;18773:9;18769:17;18760:6;18716:71;:::i;:::-;18572:222;;;;:::o;18800:218::-;18891:4;18929:2;18918:9;18914:18;18906:26;;18942:69;19008:1;18997:9;18993:17;18984:6;18942:69;:::i;:::-;18800:218;;;;:::o;19024:129::-;19058:6;19085:20;;:::i;:::-;19075:30;;19114:33;19142:4;19134:6;19114:33;:::i;:::-;19024:129;;;:::o;19159:75::-;19192:6;19225:2;19219:9;19209:19;;19159:75;:::o;19240:307::-;19301:4;19391:18;19383:6;19380:30;19377:56;;;19413:18;;:::i;:::-;19377:56;19451:29;19473:6;19451:29;:::i;:::-;19443:37;;19535:4;19529;19525:15;19517:23;;19240:307;;;:::o;19553:308::-;19615:4;19705:18;19697:6;19694:30;19691:56;;;19727:18;;:::i;:::-;19691:56;19765:29;19787:6;19765:29;:::i;:::-;19757:37;;19849:4;19843;19839:15;19831:23;;19553:308;;;:::o;19867:98::-;19918:6;19952:5;19946:12;19936:22;;19867:98;;;:::o;19971:99::-;20023:6;20057:5;20051:12;20041:22;;19971:99;;;:::o;20076:168::-;20159:11;20193:6;20188:3;20181:19;20233:4;20228:3;20224:14;20209:29;;20076:168;;;;:::o;20250:147::-;20351:11;20388:3;20373:18;;20250:147;;;;:::o;20403:169::-;20487:11;20521:6;20516:3;20509:19;20561:4;20556:3;20552:14;20537:29;;20403:169;;;;:::o;20578:148::-;20680:11;20717:3;20702:18;;20578:148;;;;:::o;20732:281::-;20772:3;20791:20;20809:1;20791:20;:::i;:::-;20786:25;;20825:20;20843:1;20825:20;:::i;:::-;20820:25;;20955:1;20911:42;20907:50;20904:1;20901:57;20898:83;;;20961:18;;:::i;:::-;20898:83;21005:1;21002;20998:9;20991:16;;20732:281;;;;:::o;21019:305::-;21059:3;21078:20;21096:1;21078:20;:::i;:::-;21073:25;;21112:20;21130:1;21112:20;:::i;:::-;21107:25;;21266:1;21198:66;21194:74;21191:1;21188:81;21185:107;;;21272:18;;:::i;:::-;21185:107;21316:1;21313;21309:9;21302:16;;21019:305;;;;:::o;21330:185::-;21370:1;21387:20;21405:1;21387:20;:::i;:::-;21382:25;;21421:20;21439:1;21421:20;:::i;:::-;21416:25;;21460:1;21450:35;;21465:18;;:::i;:::-;21450:35;21507:1;21504;21500:9;21495:14;;21330:185;;;;:::o;21521:::-;21561:1;21578:20;21596:1;21578:20;:::i;:::-;21573:25;;21612:20;21630:1;21612:20;:::i;:::-;21607:25;;21651:1;21641:35;;21656:18;;:::i;:::-;21641:35;21698:1;21695;21691:9;21686:14;;21521:185;;;;:::o;21712:348::-;21752:7;21775:20;21793:1;21775:20;:::i;:::-;21770:25;;21809:20;21827:1;21809:20;:::i;:::-;21804:25;;21997:1;21929:66;21925:74;21922:1;21919:81;21914:1;21907:9;21900:17;21896:105;21893:131;;;22004:18;;:::i;:::-;21893:131;22052:1;22049;22045:9;22034:20;;21712:348;;;;:::o;22066:191::-;22106:4;22126:20;22144:1;22126:20;:::i;:::-;22121:25;;22160:20;22178:1;22160:20;:::i;:::-;22155:25;;22199:1;22196;22193:8;22190:34;;;22204:18;;:::i;:::-;22190:34;22249:1;22246;22242:9;22234:17;;22066:191;;;;:::o;22263:::-;22303:4;22323:20;22341:1;22323:20;:::i;:::-;22318:25;;22357:20;22375:1;22357:20;:::i;:::-;22352:25;;22396:1;22393;22390:8;22387:34;;;22401:18;;:::i;:::-;22387:34;22446:1;22443;22439:9;22431:17;;22263:191;;;;:::o;22460:96::-;22497:7;22526:24;22544:5;22526:24;:::i;:::-;22515:35;;22460:96;;;:::o;22562:90::-;22596:7;22639:5;22632:13;22625:21;22614:32;;22562:90;;;:::o;22658:149::-;22694:7;22734:66;22727:5;22723:78;22712:89;;22658:149;;;:::o;22813:126::-;22850:7;22890:42;22883:5;22879:54;22868:65;;22813:126;;;:::o;22945:77::-;22982:7;23011:5;23000:16;;22945:77;;;:::o;23028:93::-;23064:7;23104:10;23097:5;23093:22;23082:33;;23028:93;;;:::o;23127:154::-;23211:6;23206:3;23201;23188:30;23273:1;23264:6;23259:3;23255:16;23248:27;23127:154;;;:::o;23287:307::-;23355:1;23365:113;23379:6;23376:1;23373:13;23365:113;;;23464:1;23459:3;23455:11;23449:18;23445:1;23440:3;23436:11;23429:39;23401:2;23398:1;23394:10;23389:15;;23365:113;;;23496:6;23493:1;23490:13;23487:101;;;23576:1;23567:6;23562:3;23558:16;23551:27;23487:101;23336:258;23287:307;;;:::o;23600:320::-;23644:6;23681:1;23675:4;23671:12;23661:22;;23728:1;23722:4;23718:12;23749:18;23739:81;;23805:4;23797:6;23793:17;23783:27;;23739:81;23867:2;23859:6;23856:14;23836:18;23833:38;23830:84;;;23886:18;;:::i;:::-;23830:84;23651:269;23600:320;;;:::o;23926:281::-;24009:27;24031:4;24009:27;:::i;:::-;24001:6;23997:40;24139:6;24127:10;24124:22;24103:18;24091:10;24088:34;24085:62;24082:88;;;24150:18;;:::i;:::-;24082:88;24190:10;24186:2;24179:22;23969:238;23926:281;;:::o;24213:233::-;24252:3;24275:24;24293:5;24275:24;:::i;:::-;24266:33;;24321:66;24314:5;24311:77;24308:103;;;24391:18;;:::i;:::-;24308:103;24438:1;24431:5;24427:13;24420:20;;24213:233;;;:::o;24452:176::-;24484:1;24501:20;24519:1;24501:20;:::i;:::-;24496:25;;24535:20;24553:1;24535:20;:::i;:::-;24530:25;;24574:1;24564:35;;24579:18;;:::i;:::-;24564:35;24620:1;24617;24613:9;24608:14;;24452:176;;;;:::o;24634:180::-;24682:77;24679:1;24672:88;24779:4;24776:1;24769:15;24803:4;24800:1;24793:15;24820:180;24868:77;24865:1;24858:88;24965:4;24962:1;24955:15;24989:4;24986:1;24979:15;25006:180;25054:77;25051:1;25044:88;25151:4;25148:1;25141:15;25175:4;25172:1;25165:15;25192:180;25240:77;25237:1;25230:88;25337:4;25334:1;25327:15;25361:4;25358:1;25351:15;25378:180;25426:77;25423:1;25416:88;25523:4;25520:1;25513:15;25547:4;25544:1;25537:15;25564:117;25673:1;25670;25663:12;25687:117;25796:1;25793;25786:12;25810:117;25919:1;25916;25909:12;25933:117;26042:1;26039;26032:12;26056:102;26097:6;26148:2;26144:7;26139:2;26132:5;26128:14;26124:28;26114:38;;26056:102;;;:::o;26164:162::-;26304:14;26300:1;26292:6;26288:14;26281:38;26164:162;:::o;26332:225::-;26472:34;26468:1;26460:6;26456:14;26449:58;26541:8;26536:2;26528:6;26524:15;26517:33;26332:225;:::o;26563:168::-;26703:20;26699:1;26691:6;26687:14;26680:44;26563:168;:::o;26737:164::-;26877:16;26873:1;26865:6;26861:14;26854:40;26737:164;:::o;26907:174::-;27047:26;27043:1;27035:6;27031:14;27024:50;26907:174;:::o;27087:158::-;27227:10;27223:1;27215:6;27211:14;27204:34;27087:158;:::o;27251:180::-;27391:32;27387:1;27379:6;27375:14;27368:56;27251:180;:::o;27437:163::-;27577:15;27573:1;27565:6;27561:14;27554:39;27437:163;:::o;27606:182::-;27746:34;27742:1;27734:6;27730:14;27723:58;27606:182;:::o;27794:114::-;;:::o;27914:122::-;27987:24;28005:5;27987:24;:::i;:::-;27980:5;27977:35;27967:63;;28026:1;28023;28016:12;27967:63;27914:122;:::o;28042:116::-;28112:21;28127:5;28112:21;:::i;:::-;28105:5;28102:32;28092:60;;28148:1;28145;28138:12;28092:60;28042:116;:::o;28164:120::-;28236:23;28253:5;28236:23;:::i;:::-;28229:5;28226:34;28216:62;;28274:1;28271;28264:12;28216:62;28164:120;:::o;28290:122::-;28363:24;28381:5;28363:24;:::i;:::-;28356:5;28353:35;28343:63;;28402:1;28399;28392:12;28343:63;28290:122;:::o

Swarm Source

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