ETH Price: $3,011.51 (+4.53%)
Gas: 2 Gwei

Token

InvisibleDucks (IVDKS)
 

Overview

Max Total Supply

1,424 IVDKS

Holders

187

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
frankiestellar.eth
Balance
5 IVDKS
0x429955967384605d5ab6f8319b46c1133a0d6b3a
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:
InvisibleDucks

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-11
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/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();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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);
    }

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

    /**
     * @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/InvisibleDucks.sol


pragma solidity ^0.8.0;



 contract InvisibleDucks is ERC721A, Ownable {
    using Address for address;
    using Strings for uint256;
    
    string public baseURI;

    uint256 public constant TOTAL_FREE = 999;
    uint256 public constant MAX_FREE = 5;
    uint256 public constant MAX_PUBLIC = 10;

    string public constant BASE_EXTENSION = ".json";

    uint256 public maxSupply = 6969;
    uint256 public price = 0.0069 ether;

    bool public saleActive = false;
    bool public adminClaimed = false;

    constructor() ERC721A("InvisibleDucks", "IVDKS") { 
    }

    function adminMint() public onlyOwner {
        require(!adminClaimed, "Admim has claimed");
        adminClaimed = true;
        _safeMint( msg.sender, 10); 
    }

    function freeMint(uint256 _numberOfMints) private {
        require(_numberOfMints > 0 && _numberOfMints <= MAX_FREE, "Invalid mint amount");
        if(totalSupply() + _numberOfMints > TOTAL_FREE){
            _safeMint( msg.sender, TOTAL_FREE - totalSupply()); 
        } else {
            _safeMint( msg.sender, _numberOfMints); 
        }   
    }
    
    function publicMint(uint256 _numberOfMints) private {
        require(_numberOfMints > 0 && _numberOfMints <= MAX_PUBLIC, "Invalid mint amount");
        require(totalSupply() + _numberOfMints <= maxSupply, "Purchase would exceed max supply of tokens");
        require(price * _numberOfMints == msg.value, "Ether value sent is not correct");
        
        _safeMint( msg.sender, _numberOfMints );
    }

    function mint(uint256 _numberOfMints) public payable {
        require(saleActive, "Sales not yet started");
        require(tx.origin == msg.sender, "Please no");
        if(totalSupply() < TOTAL_FREE){
            freeMint(_numberOfMints);
        } else {
            publicMint(_numberOfMints);
        }
    }

    function setSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 _id) public view virtual override returns (string memory) {
         require(
            _exists(_id),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _id.toString(), BASE_EXTENSION))
            : "";
    }

    function reserve(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Exceeds supply");
        _safeMint(to, quantity);
    }

    function withdraw(address _address) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_address).transfer(balance);
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611b39600a556618838370f34000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200005857600080fd5b506040518060400160405280600e81526020017f496e76697369626c654475636b730000000000000000000000000000000000008152506040518060400160405280600581526020017f4956444b530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000dd92919062000208565b508060039080519060200190620000f692919062000208565b50620001076200013560201b60201c565b60008190555050506200012f620001236200013a60201b60201c565b6200014260201b60201c565b6200031d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021690620002e7565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030057607f821691505b60208210811415620003175762000316620002b8565b5b50919050565b613b74806200032d6000396000f3fe6080604052600436106101f95760003560e01c80637d8966e41161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106d8578063df3fdf0014610703578063e985e9c51461072e578063ed6661c21461076b578063f2fde38b14610796576101f9565b8063a22cb46514610620578063b88d4fde14610649578063c87b56dd14610672578063cc47a40b146106af576101f9565b806395d89b41116100dc57806395d89b41146105835780639753eac0146105ae578063a035b1fe146105d9578063a0712d6814610604576101f9565b80637d8966e414610501578063895fc788146105185780638da5cb5b1461052f57806391b7f5ed1461055a576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461041a57806368428a1b146104575780636c0360eb1461048257806370a08231146104ad578063715018a6146104ea576101f9565b806342842e0e1461037457806351cff8d91461039d57806355f804b3146103c657806358d94992146103ef576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780633b4c4b251461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b5780630739554c14610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c86565b6107bf565b6040516102329190612cce565b60405180910390f35b34801561024757600080fd5b506102506108a1565b60405161025d9190612d82565b60405180910390f35b34801561027257600080fd5b5061027b610933565b6040516102889190612cce565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612dda565b610946565b6040516102c59190612e48565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e8f565b6109c2565b005b34801561030357600080fd5b5061030c610acd565b6040516103199190612ede565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ef9565b610ae4565b005b34801561035757600080fd5b50610372600480360381019061036d9190612dda565b610af4565b005b34801561038057600080fd5b5061039b60048036038101906103969190612ef9565b610b7a565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612f4c565b610b9a565b005b3480156103d257600080fd5b506103ed60048036038101906103e891906130ae565b610c66565b005b3480156103fb57600080fd5b50610404610cfc565b6040516104119190612ede565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612dda565b610d02565b60405161044e9190612e48565b60405180910390f35b34801561046357600080fd5b5061046c610d18565b6040516104799190612cce565b60405180910390f35b34801561048e57600080fd5b50610497610d2b565b6040516104a49190612d82565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f4c565b610db9565b6040516104e19190612ede565b60405180910390f35b3480156104f657600080fd5b506104ff610e89565b005b34801561050d57600080fd5b50610516610f11565b005b34801561052457600080fd5b5061052d610fb9565b005b34801561053b57600080fd5b506105446110ad565b6040516105519190612e48565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612dda565b6110d7565b005b34801561058f57600080fd5b5061059861115d565b6040516105a59190612d82565b60405180910390f35b3480156105ba57600080fd5b506105c36111ef565b6040516105d09190612ede565b60405180910390f35b3480156105e557600080fd5b506105ee6111f4565b6040516105fb9190612ede565b60405180910390f35b61061e60048036038101906106199190612dda565b6111fa565b005b34801561062c57600080fd5b5061064760048036038101906106429190613123565b6112e3565b005b34801561065557600080fd5b50610670600480360381019061066b9190613204565b61145b565b005b34801561067e57600080fd5b5061069960048036038101906106949190612dda565b6114d7565b6040516106a69190612d82565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612e8f565b6115b5565b005b3480156106e457600080fd5b506106ed611696565b6040516106fa9190612ede565b60405180910390f35b34801561070f57600080fd5b5061071861169c565b6040516107259190612d82565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613287565b6116d5565b6040516107629190612cce565b60405180910390f35b34801561077757600080fd5b50610780611769565b60405161078d9190612ede565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612f4c565b61176e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611866565b5b9050919050565b6060600280546108b0906132f6565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906132f6565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600c60019054906101000a900460ff1681565b6000610951826118d0565b610987576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd82610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5461191e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a865750610a8481610a7f61191e565b6116d5565b155b15610abd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac8838383611926565b505050565b6000610ad76119d8565b6001546000540303905090565b610aef8383836119dd565b505050565b610afc61191e565b73ffffffffffffffffffffffffffffffffffffffff16610b1a6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613374565b60405180910390fd5b80600a8190555050565b610b958383836040518060200160405280600081525061145b565b505050565b610ba261191e565b73ffffffffffffffffffffffffffffffffffffffff16610bc06110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613374565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c61573d6000803e3d6000fd5b505050565b610c6e61191e565b73ffffffffffffffffffffffffffffffffffffffff16610c8c6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613374565b60405180910390fd5b8060099080519060200190610cf8929190612b34565b5050565b6103e781565b6000610d0d82611ece565b600001519050919050565b600c60009054906101000a900460ff1681565b60098054610d38906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d64906132f6565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e9161191e565b73ffffffffffffffffffffffffffffffffffffffff16610eaf6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613374565b60405180910390fd5b610f0f600061215d565b565b610f1961191e565b73ffffffffffffffffffffffffffffffffffffffff16610f376110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490613374565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610fc161191e565b73ffffffffffffffffffffffffffffffffffffffff16610fdf6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613374565b60405180910390fd5b600c60019054906101000a900460ff1615611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c906133e0565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506110ab33600a612223565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110df61191e565b73ffffffffffffffffffffffffffffffffffffffff166110fd6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613374565b60405180910390fd5b80600b8190555050565b60606003805461116c906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611198906132f6565b80156111e55780601f106111ba576101008083540402835291602001916111e5565b820191906000526020600020905b8154815290600101906020018083116111c857829003601f168201915b5050505050905090565b600a81565b600b5481565b600c60009054906101000a900460ff16611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061344c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906134b8565b60405180910390fd5b6103e76112c2610acd565b10156112d6576112d181612241565b6112e0565b6112df816122de565b5b50565b6112eb61191e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061135d61191e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140a61191e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144f9190612cce565b60405180910390a35050565b6114668484846119dd565b6114858373ffffffffffffffffffffffffffffffffffffffff166123e1565b801561149a575061149884848484612404565b155b156114d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114e2826118d0565b611521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115189061354a565b60405180910390fd5b600061152b612555565b9050600081511161154b57604051806020016040528060008152506115ad565b80611555846125e7565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161159d939291906135a6565b6040516020818303038152906040525b915050919050565b6115bd61191e565b73ffffffffffffffffffffffffffffffffffffffff166115db6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613374565b60405180910390fd5b600a548161163d610acd565b6116479190613606565b1115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f906136a8565b60405180910390fd5b6116928282612223565b5050565b600a5481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b61177661191e565b73ffffffffffffffffffffffffffffffffffffffff166117946110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613374565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118519061373a565b60405180910390fd5b6118638161215d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118db6119d8565b111580156118ea575060005482105b8015611917575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119e882611ece565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a0f61191e565b73ffffffffffffffffffffffffffffffffffffffff161480611a425750611a418260000151611a3c61191e565b6116d5565b5b80611a875750611a5061191e565b73ffffffffffffffffffffffffffffffffffffffff16611a6f84610946565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ac0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b90576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9d8585856001612748565b611bad6000848460000151611926565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5e57600054811015611e5d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec7858585600161274e565b5050505050565b611ed6612bba565b600082905080611ee46119d8565b11158015611ef3575060005481105b15612126576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161212457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612008578092505050612158565b5b60011561212357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211e578092505050612158565b612009565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61223d828260405180602001604052806000815250612754565b5050565b600081118015612252575060058111155b612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906137a6565b60405180910390fd5b6103e78161229d610acd565b6122a79190613606565b11156122d0576122cb336122b9610acd565b6103e76122c691906137c6565b612223565b6122db565b6122da3382612223565b5b50565b6000811180156122ef5750600a8111155b61232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906137a6565b60405180910390fd5b600a548161233a610acd565b6123449190613606565b1115612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c9061386c565b60405180910390fd5b3481600b54612394919061388c565b146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613932565b60405180910390fd5b6123de3382612223565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242a61191e565b8786866040518563ffffffff1660e01b815260040161244c94939291906139a7565b6020604051808303816000875af192505050801561248857506040513d601f19601f820116820180604052508101906124859190613a08565b60015b612502573d80600081146124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b506000815114156124fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612564906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612590906132f6565b80156125dd5780601f106125b2576101008083540402835291602001916125dd565b820191906000526020600020905b8154815290600101906020018083116125c057829003601f168201915b5050505050905090565b6060600082141561262f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612743565b600082905060005b6000821461266157808061264a90613a35565b915050600a8261265a9190613aad565b9150612637565b60008167ffffffffffffffff81111561267d5761267c612f83565b5b6040519080825280601f01601f1916602001820160405280156126af5781602001600182028036833780820191505090505b5090505b6000851461273c576001826126c891906137c6565b9150600a856126d79190613ade565b60306126e39190613606565b60f81b8183815181106126f9576126f8613b0f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127359190613aad565b94506126b3565b8093505050505b919050565b50505050565b50505050565b6127618383836001612766565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561280e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61281b6000868387612748565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129e557506129e48773ffffffffffffffffffffffffffffffffffffffff166123e1565b5b15612aab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5a6000888480600101955088612404565b612a90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129eb578260005414612aa657600080fd5b612b17565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612aac575b816000819055505050612b2d600086838761274e565b5050505050565b828054612b40906132f6565b90600052602060002090601f016020900481019282612b625760008555612ba9565b82601f10612b7b57805160ff1916838001178555612ba9565b82800160010185558215612ba9579182015b82811115612ba8578251825591602001919060010190612b8d565b5b509050612bb69190612bfd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c16576000816000905550600101612bfe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6381612c2e565b8114612c6e57600080fd5b50565b600081359050612c8081612c5a565b92915050565b600060208284031215612c9c57612c9b612c24565b5b6000612caa84828501612c71565b91505092915050565b60008115159050919050565b612cc881612cb3565b82525050565b6000602082019050612ce36000830184612cbf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d23578082015181840152602081019050612d08565b83811115612d32576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d5482612ce9565b612d5e8185612cf4565b9350612d6e818560208601612d05565b612d7781612d38565b840191505092915050565b60006020820190508181036000830152612d9c8184612d49565b905092915050565b6000819050919050565b612db781612da4565b8114612dc257600080fd5b50565b600081359050612dd481612dae565b92915050565b600060208284031215612df057612def612c24565b5b6000612dfe84828501612dc5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e3282612e07565b9050919050565b612e4281612e27565b82525050565b6000602082019050612e5d6000830184612e39565b92915050565b612e6c81612e27565b8114612e7757600080fd5b50565b600081359050612e8981612e63565b92915050565b60008060408385031215612ea657612ea5612c24565b5b6000612eb485828601612e7a565b9250506020612ec585828601612dc5565b9150509250929050565b612ed881612da4565b82525050565b6000602082019050612ef36000830184612ecf565b92915050565b600080600060608486031215612f1257612f11612c24565b5b6000612f2086828701612e7a565b9350506020612f3186828701612e7a565b9250506040612f4286828701612dc5565b9150509250925092565b600060208284031215612f6257612f61612c24565b5b6000612f7084828501612e7a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fbb82612d38565b810181811067ffffffffffffffff82111715612fda57612fd9612f83565b5b80604052505050565b6000612fed612c1a565b9050612ff98282612fb2565b919050565b600067ffffffffffffffff82111561301957613018612f83565b5b61302282612d38565b9050602081019050919050565b82818337600083830152505050565b600061305161304c84612ffe565b612fe3565b90508281526020810184848401111561306d5761306c612f7e565b5b61307884828561302f565b509392505050565b600082601f83011261309557613094612f79565b5b81356130a584826020860161303e565b91505092915050565b6000602082840312156130c4576130c3612c24565b5b600082013567ffffffffffffffff8111156130e2576130e1612c29565b5b6130ee84828501613080565b91505092915050565b61310081612cb3565b811461310b57600080fd5b50565b60008135905061311d816130f7565b92915050565b6000806040838503121561313a57613139612c24565b5b600061314885828601612e7a565b92505060206131598582860161310e565b9150509250929050565b600067ffffffffffffffff82111561317e5761317d612f83565b5b61318782612d38565b9050602081019050919050565b60006131a76131a284613163565b612fe3565b9050828152602081018484840111156131c3576131c2612f7e565b5b6131ce84828561302f565b509392505050565b600082601f8301126131eb576131ea612f79565b5b81356131fb848260208601613194565b91505092915050565b6000806000806080858703121561321e5761321d612c24565b5b600061322c87828801612e7a565b945050602061323d87828801612e7a565b935050604061324e87828801612dc5565b925050606085013567ffffffffffffffff81111561326f5761326e612c29565b5b61327b878288016131d6565b91505092959194509250565b6000806040838503121561329e5761329d612c24565b5b60006132ac85828601612e7a565b92505060206132bd85828601612e7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330e57607f821691505b60208210811415613322576133216132c7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061335e602083612cf4565b915061336982613328565b602082019050919050565b6000602082019050818103600083015261338d81613351565b9050919050565b7f41646d696d2068617320636c61696d6564000000000000000000000000000000600082015250565b60006133ca601183612cf4565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f53616c6573206e6f742079657420737461727465640000000000000000000000600082015250565b6000613436601583612cf4565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f506c65617365206e6f0000000000000000000000000000000000000000000000600082015250565b60006134a2600983612cf4565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613534602f83612cf4565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600081905092915050565b600061358082612ce9565b61358a818561356a565b935061359a818560208601612d05565b80840191505092915050565b60006135b28286613575565b91506135be8285613575565b91506135ca8284613575565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361182612da4565b915061361c83612da4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613651576136506135d7565b5b828201905092915050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b6000613692600e83612cf4565b915061369d8261365c565b602082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613724602683612cf4565b915061372f826136c8565b604082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613790601383612cf4565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60006137d182612da4565b91506137dc83612da4565b9250828210156137ef576137ee6135d7565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613856602a83612cf4565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b600061389782612da4565b91506138a283612da4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138db576138da6135d7565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061391c601f83612cf4565b9150613927826138e6565b602082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061397982613952565b613983818561395d565b9350613993818560208601612d05565b61399c81612d38565b840191505092915050565b60006080820190506139bc6000830187612e39565b6139c96020830186612e39565b6139d66040830185612ecf565b81810360608301526139e8818461396e565b905095945050505050565b600081519050613a0281612c5a565b92915050565b600060208284031215613a1e57613a1d612c24565b5b6000613a2c848285016139f3565b91505092915050565b6000613a4082612da4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a7357613a726135d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ab882612da4565b9150613ac383612da4565b925082613ad357613ad2613a7e565b5b828204905092915050565b6000613ae982612da4565b9150613af483612da4565b925082613b0457613b03613a7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a53ed7869d0e3b7a2d70e604ee02181b1df26d6c27d4df3a6f83cd2b3a451ef364736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637d8966e41161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106d8578063df3fdf0014610703578063e985e9c51461072e578063ed6661c21461076b578063f2fde38b14610796576101f9565b8063a22cb46514610620578063b88d4fde14610649578063c87b56dd14610672578063cc47a40b146106af576101f9565b806395d89b41116100dc57806395d89b41146105835780639753eac0146105ae578063a035b1fe146105d9578063a0712d6814610604576101f9565b80637d8966e414610501578063895fc788146105185780638da5cb5b1461052f57806391b7f5ed1461055a576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461041a57806368428a1b146104575780636c0360eb1461048257806370a08231146104ad578063715018a6146104ea576101f9565b806342842e0e1461037457806351cff8d91461039d57806355f804b3146103c657806358d94992146103ef576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780633b4c4b251461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b5780630739554c14610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c86565b6107bf565b6040516102329190612cce565b60405180910390f35b34801561024757600080fd5b506102506108a1565b60405161025d9190612d82565b60405180910390f35b34801561027257600080fd5b5061027b610933565b6040516102889190612cce565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612dda565b610946565b6040516102c59190612e48565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e8f565b6109c2565b005b34801561030357600080fd5b5061030c610acd565b6040516103199190612ede565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ef9565b610ae4565b005b34801561035757600080fd5b50610372600480360381019061036d9190612dda565b610af4565b005b34801561038057600080fd5b5061039b60048036038101906103969190612ef9565b610b7a565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612f4c565b610b9a565b005b3480156103d257600080fd5b506103ed60048036038101906103e891906130ae565b610c66565b005b3480156103fb57600080fd5b50610404610cfc565b6040516104119190612ede565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612dda565b610d02565b60405161044e9190612e48565b60405180910390f35b34801561046357600080fd5b5061046c610d18565b6040516104799190612cce565b60405180910390f35b34801561048e57600080fd5b50610497610d2b565b6040516104a49190612d82565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f4c565b610db9565b6040516104e19190612ede565b60405180910390f35b3480156104f657600080fd5b506104ff610e89565b005b34801561050d57600080fd5b50610516610f11565b005b34801561052457600080fd5b5061052d610fb9565b005b34801561053b57600080fd5b506105446110ad565b6040516105519190612e48565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612dda565b6110d7565b005b34801561058f57600080fd5b5061059861115d565b6040516105a59190612d82565b60405180910390f35b3480156105ba57600080fd5b506105c36111ef565b6040516105d09190612ede565b60405180910390f35b3480156105e557600080fd5b506105ee6111f4565b6040516105fb9190612ede565b60405180910390f35b61061e60048036038101906106199190612dda565b6111fa565b005b34801561062c57600080fd5b5061064760048036038101906106429190613123565b6112e3565b005b34801561065557600080fd5b50610670600480360381019061066b9190613204565b61145b565b005b34801561067e57600080fd5b5061069960048036038101906106949190612dda565b6114d7565b6040516106a69190612d82565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612e8f565b6115b5565b005b3480156106e457600080fd5b506106ed611696565b6040516106fa9190612ede565b60405180910390f35b34801561070f57600080fd5b5061071861169c565b6040516107259190612d82565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613287565b6116d5565b6040516107629190612cce565b60405180910390f35b34801561077757600080fd5b50610780611769565b60405161078d9190612ede565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612f4c565b61176e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611866565b5b9050919050565b6060600280546108b0906132f6565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906132f6565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600c60019054906101000a900460ff1681565b6000610951826118d0565b610987576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cd82610d02565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5461191e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a865750610a8481610a7f61191e565b6116d5565b155b15610abd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac8838383611926565b505050565b6000610ad76119d8565b6001546000540303905090565b610aef8383836119dd565b505050565b610afc61191e565b73ffffffffffffffffffffffffffffffffffffffff16610b1a6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613374565b60405180910390fd5b80600a8190555050565b610b958383836040518060200160405280600081525061145b565b505050565b610ba261191e565b73ffffffffffffffffffffffffffffffffffffffff16610bc06110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613374565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c61573d6000803e3d6000fd5b505050565b610c6e61191e565b73ffffffffffffffffffffffffffffffffffffffff16610c8c6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613374565b60405180910390fd5b8060099080519060200190610cf8929190612b34565b5050565b6103e781565b6000610d0d82611ece565b600001519050919050565b600c60009054906101000a900460ff1681565b60098054610d38906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d64906132f6565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e9161191e565b73ffffffffffffffffffffffffffffffffffffffff16610eaf6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613374565b60405180910390fd5b610f0f600061215d565b565b610f1961191e565b73ffffffffffffffffffffffffffffffffffffffff16610f376110ad565b73ffffffffffffffffffffffffffffffffffffffff1614610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490613374565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610fc161191e565b73ffffffffffffffffffffffffffffffffffffffff16610fdf6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613374565b60405180910390fd5b600c60019054906101000a900460ff1615611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c906133e0565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506110ab33600a612223565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110df61191e565b73ffffffffffffffffffffffffffffffffffffffff166110fd6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613374565b60405180910390fd5b80600b8190555050565b60606003805461116c906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611198906132f6565b80156111e55780601f106111ba576101008083540402835291602001916111e5565b820191906000526020600020905b8154815290600101906020018083116111c857829003601f168201915b5050505050905090565b600a81565b600b5481565b600c60009054906101000a900460ff16611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061344c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906134b8565b60405180910390fd5b6103e76112c2610acd565b10156112d6576112d181612241565b6112e0565b6112df816122de565b5b50565b6112eb61191e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061135d61191e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140a61191e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144f9190612cce565b60405180910390a35050565b6114668484846119dd565b6114858373ffffffffffffffffffffffffffffffffffffffff166123e1565b801561149a575061149884848484612404565b155b156114d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114e2826118d0565b611521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115189061354a565b60405180910390fd5b600061152b612555565b9050600081511161154b57604051806020016040528060008152506115ad565b80611555846125e7565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161159d939291906135a6565b6040516020818303038152906040525b915050919050565b6115bd61191e565b73ffffffffffffffffffffffffffffffffffffffff166115db6110ad565b73ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613374565b60405180910390fd5b600a548161163d610acd565b6116479190613606565b1115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f906136a8565b60405180910390fd5b6116928282612223565b5050565b600a5481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b61177661191e565b73ffffffffffffffffffffffffffffffffffffffff166117946110ad565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613374565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118519061373a565b60405180910390fd5b6118638161215d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118db6119d8565b111580156118ea575060005482105b8015611917575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119e882611ece565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a0f61191e565b73ffffffffffffffffffffffffffffffffffffffff161480611a425750611a418260000151611a3c61191e565b6116d5565b5b80611a875750611a5061191e565b73ffffffffffffffffffffffffffffffffffffffff16611a6f84610946565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ac0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b90576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9d8585856001612748565b611bad6000848460000151611926565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5e57600054811015611e5d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec7858585600161274e565b5050505050565b611ed6612bba565b600082905080611ee46119d8565b11158015611ef3575060005481105b15612126576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161212457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612008578092505050612158565b5b60011561212357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211e578092505050612158565b612009565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61223d828260405180602001604052806000815250612754565b5050565b600081118015612252575060058111155b612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906137a6565b60405180910390fd5b6103e78161229d610acd565b6122a79190613606565b11156122d0576122cb336122b9610acd565b6103e76122c691906137c6565b612223565b6122db565b6122da3382612223565b5b50565b6000811180156122ef5750600a8111155b61232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906137a6565b60405180910390fd5b600a548161233a610acd565b6123449190613606565b1115612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c9061386c565b60405180910390fd5b3481600b54612394919061388c565b146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613932565b60405180910390fd5b6123de3382612223565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242a61191e565b8786866040518563ffffffff1660e01b815260040161244c94939291906139a7565b6020604051808303816000875af192505050801561248857506040513d601f19601f820116820180604052508101906124859190613a08565b60015b612502573d80600081146124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b506000815114156124fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612564906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612590906132f6565b80156125dd5780601f106125b2576101008083540402835291602001916125dd565b820191906000526020600020905b8154815290600101906020018083116125c057829003601f168201915b5050505050905090565b6060600082141561262f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612743565b600082905060005b6000821461266157808061264a90613a35565b915050600a8261265a9190613aad565b9150612637565b60008167ffffffffffffffff81111561267d5761267c612f83565b5b6040519080825280601f01601f1916602001820160405280156126af5781602001600182028036833780820191505090505b5090505b6000851461273c576001826126c891906137c6565b9150600a856126d79190613ade565b60306126e39190613606565b60f81b8183815181106126f9576126f8613b0f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127359190613aad565b94506126b3565b8093505050505b919050565b50505050565b50505050565b6127618383836001612766565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561280e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61281b6000868387612748565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129e557506129e48773ffffffffffffffffffffffffffffffffffffffff166123e1565b5b15612aab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5a6000888480600101955088612404565b612a90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129eb578260005414612aa657600080fd5b612b17565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612aac575b816000819055505050612b2d600086838761274e565b5050505050565b828054612b40906132f6565b90600052602060002090601f016020900481019282612b625760008555612ba9565b82601f10612b7b57805160ff1916838001178555612ba9565b82800160010185558215612ba9579182015b82811115612ba8578251825591602001919060010190612b8d565b5b509050612bb69190612bfd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c16576000816000905550600101612bfe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c6381612c2e565b8114612c6e57600080fd5b50565b600081359050612c8081612c5a565b92915050565b600060208284031215612c9c57612c9b612c24565b5b6000612caa84828501612c71565b91505092915050565b60008115159050919050565b612cc881612cb3565b82525050565b6000602082019050612ce36000830184612cbf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d23578082015181840152602081019050612d08565b83811115612d32576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d5482612ce9565b612d5e8185612cf4565b9350612d6e818560208601612d05565b612d7781612d38565b840191505092915050565b60006020820190508181036000830152612d9c8184612d49565b905092915050565b6000819050919050565b612db781612da4565b8114612dc257600080fd5b50565b600081359050612dd481612dae565b92915050565b600060208284031215612df057612def612c24565b5b6000612dfe84828501612dc5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e3282612e07565b9050919050565b612e4281612e27565b82525050565b6000602082019050612e5d6000830184612e39565b92915050565b612e6c81612e27565b8114612e7757600080fd5b50565b600081359050612e8981612e63565b92915050565b60008060408385031215612ea657612ea5612c24565b5b6000612eb485828601612e7a565b9250506020612ec585828601612dc5565b9150509250929050565b612ed881612da4565b82525050565b6000602082019050612ef36000830184612ecf565b92915050565b600080600060608486031215612f1257612f11612c24565b5b6000612f2086828701612e7a565b9350506020612f3186828701612e7a565b9250506040612f4286828701612dc5565b9150509250925092565b600060208284031215612f6257612f61612c24565b5b6000612f7084828501612e7a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fbb82612d38565b810181811067ffffffffffffffff82111715612fda57612fd9612f83565b5b80604052505050565b6000612fed612c1a565b9050612ff98282612fb2565b919050565b600067ffffffffffffffff82111561301957613018612f83565b5b61302282612d38565b9050602081019050919050565b82818337600083830152505050565b600061305161304c84612ffe565b612fe3565b90508281526020810184848401111561306d5761306c612f7e565b5b61307884828561302f565b509392505050565b600082601f83011261309557613094612f79565b5b81356130a584826020860161303e565b91505092915050565b6000602082840312156130c4576130c3612c24565b5b600082013567ffffffffffffffff8111156130e2576130e1612c29565b5b6130ee84828501613080565b91505092915050565b61310081612cb3565b811461310b57600080fd5b50565b60008135905061311d816130f7565b92915050565b6000806040838503121561313a57613139612c24565b5b600061314885828601612e7a565b92505060206131598582860161310e565b9150509250929050565b600067ffffffffffffffff82111561317e5761317d612f83565b5b61318782612d38565b9050602081019050919050565b60006131a76131a284613163565b612fe3565b9050828152602081018484840111156131c3576131c2612f7e565b5b6131ce84828561302f565b509392505050565b600082601f8301126131eb576131ea612f79565b5b81356131fb848260208601613194565b91505092915050565b6000806000806080858703121561321e5761321d612c24565b5b600061322c87828801612e7a565b945050602061323d87828801612e7a565b935050604061324e87828801612dc5565b925050606085013567ffffffffffffffff81111561326f5761326e612c29565b5b61327b878288016131d6565b91505092959194509250565b6000806040838503121561329e5761329d612c24565b5b60006132ac85828601612e7a565b92505060206132bd85828601612e7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330e57607f821691505b60208210811415613322576133216132c7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061335e602083612cf4565b915061336982613328565b602082019050919050565b6000602082019050818103600083015261338d81613351565b9050919050565b7f41646d696d2068617320636c61696d6564000000000000000000000000000000600082015250565b60006133ca601183612cf4565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f53616c6573206e6f742079657420737461727465640000000000000000000000600082015250565b6000613436601583612cf4565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f506c65617365206e6f0000000000000000000000000000000000000000000000600082015250565b60006134a2600983612cf4565b91506134ad8261346c565b602082019050919050565b600060208201905081810360008301526134d181613495565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613534602f83612cf4565b915061353f826134d8565b604082019050919050565b6000602082019050818103600083015261356381613527565b9050919050565b600081905092915050565b600061358082612ce9565b61358a818561356a565b935061359a818560208601612d05565b80840191505092915050565b60006135b28286613575565b91506135be8285613575565b91506135ca8284613575565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361182612da4565b915061361c83612da4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613651576136506135d7565b5b828201905092915050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b6000613692600e83612cf4565b915061369d8261365c565b602082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613724602683612cf4565b915061372f826136c8565b604082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613790601383612cf4565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60006137d182612da4565b91506137dc83612da4565b9250828210156137ef576137ee6135d7565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613856602a83612cf4565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b600061389782612da4565b91506138a283612da4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138db576138da6135d7565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061391c601f83612cf4565b9150613927826138e6565b602082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061397982613952565b613983818561395d565b9350613993818560208601612d05565b61399c81612d38565b840191505092915050565b60006080820190506139bc6000830187612e39565b6139c96020830186612e39565b6139d66040830185612ecf565b81810360608301526139e8818461396e565b905095945050505050565b600081519050613a0281612c5a565b92915050565b600060208284031215613a1e57613a1d612c24565b5b6000613a2c848285016139f3565b91505092915050565b6000613a4082612da4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a7357613a726135d7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ab882612da4565b9150613ac383612da4565b925082613ad357613ad2613a7e565b5b828204905092915050565b6000613ae982612da4565b9150613af483612da4565b925082613b0457613b03613a7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a53ed7869d0e3b7a2d70e604ee02181b1df26d6c27d4df3a6f83cd2b3a451ef364736f6c634300080c0033

Deployed Bytecode Sourcemap

45810:3149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46274:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47678:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48795:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47965:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45961:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46237:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45931:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;47875:82;;;;;;;;;;;;;:::i;:::-;;46381:168;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47783:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46051:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46193:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47348:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48173:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48604:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46155:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46099:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46008:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;46274:32::-;;;;;;;;;;;;;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;47678:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47757:10:::1;47745:9;:22;;;;47678:97:::0;:::o;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;48795:157::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48859:15:::1;48877:21;48859:39;;48917:8;48909:26;;:35;48936:7;48909:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48848:104;48795:157:::0;:::o;47965:88::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48042:3:::1;48032:7;:13;;;;;;;;;;;;:::i;:::-;;47965:88:::0;:::o;45961:40::-;45998:3;45961:40;:::o;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;46237:30::-;;;;;;;;;;;;;:::o;45931:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47875:82::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47939:10:::1;;;;;;;;;;;47938:11;47925:10;;:24;;;;;;;;;;;;;;;;;;47875:82::o:0;46381:168::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46439:12:::1;;;;;;;;;;;46438:13;46430:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:4;46484:12;;:19;;;;;;;;;;;;;;;;;;46514:26;46525:10;46537:2;46514:9;:26::i;:::-;46381:168::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;47783:84::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47853:6:::1;47845:5;:14;;;;47783:84:::0;:::o;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;46051:39::-;46088:2;46051:39;:::o;46193:35::-;;;;:::o;47348:322::-;47420:10;;;;;;;;;;;47412:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47488:10;47475:23;;:9;:23;;;47467:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;45998:3;47526:13;:11;:13::i;:::-;:26;47523:140;;;47568:24;47577:14;47568:8;:24::i;:::-;47523:140;;;47625:26;47636:14;47625:10;:26::i;:::-;47523:140;47348:322;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;48173:423::-;48242:13;48291:12;48299:3;48291:7;:12::i;:::-;48269:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;48391:28;48422:10;:8;:10::i;:::-;48391:41;;48481:1;48456:14;48450:28;:32;:138;;;;;;;;;;;;;;;;;48522:14;48538;:3;:12;:14::i;:::-;48554;;;;;;;;;;;;;;;;;48505:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48450:138;48443:145;;;48173:423;;;:::o;48604:183::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48717:9:::1;;48705:8;48689:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;48681:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48756:23;48766:2;48770:8;48756:9;:23::i;:::-;48604:183:::0;;:::o;46155:31::-;;;;:::o;46099:47::-;;;;;;;;;;;;;;;;;;;:::o;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;46008:36::-;46043:1;46008:36;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;27245:92::-;27301:7;27245:92;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;46557:359::-;46643:1;46626:14;:18;:48;;;;;46043:1;46648:14;:26;;46626:48;46618:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45998:3;46728:14;46712:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;46709:197;;;46771:50;46782:10;46807:13;:11;:13::i;:::-;45998:3;46794:26;;;;:::i;:::-;46771:9;:50::i;:::-;46709:197;;;46855:38;46866:10;46878:14;46855:9;:38::i;:::-;46709:197;46557:359;:::o;46928:412::-;47016:1;46999:14;:18;:50;;;;;46088:2;47021:14;:28;;46999:50;46991:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;47126:9;;47108:14;47092:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;47084:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47227:9;47209:14;47201:5;;:22;;;;:::i;:::-;:35;47193:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47293:39;47304:10;47316:14;47293:9;:39::i;:::-;46928:412;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;48065:100::-;48117:13;48150:7;48143:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48065:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:167::-;13758:19;13754:1;13746:6;13742:14;13735:43;13618:167;:::o;13791:366::-;13933:3;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14030:93;14119:3;14030:93;:::i;:::-;14148:2;14143:3;14139:12;14132:19;;13791:366;;;:::o;14163:419::-;14329:4;14367:2;14356:9;14352:18;14344:26;;14416:9;14410:4;14406:20;14402:1;14391:9;14387:17;14380:47;14444:131;14570:4;14444:131;:::i;:::-;14436:139;;14163:419;;;:::o;14588:171::-;14728:23;14724:1;14716:6;14712:14;14705:47;14588:171;:::o;14765:366::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:419::-;15303:4;15341:2;15330:9;15326:18;15318:26;;15390:9;15384:4;15380:20;15376:1;15365:9;15361:17;15354:47;15418:131;15544:4;15418:131;:::i;:::-;15410:139;;15137:419;;;:::o;15562:159::-;15702:11;15698:1;15690:6;15686:14;15679:35;15562:159;:::o;15727:365::-;15869:3;15890:66;15954:1;15949:3;15890:66;:::i;:::-;15883:73;;15965:93;16054:3;15965:93;:::i;:::-;16083:2;16078:3;16074:12;16067:19;;15727:365;;;:::o;16098:419::-;16264:4;16302:2;16291:9;16287:18;16279:26;;16351:9;16345:4;16341:20;16337:1;16326:9;16322:17;16315:47;16379:131;16505:4;16379:131;:::i;:::-;16371:139;;16098:419;;;:::o;16523:234::-;16663:34;16659:1;16651:6;16647:14;16640:58;16732:17;16727:2;16719:6;16715:15;16708:42;16523:234;:::o;16763:366::-;16905:3;16926:67;16990:2;16985:3;16926:67;:::i;:::-;16919:74;;17002:93;17091:3;17002:93;:::i;:::-;17120:2;17115:3;17111:12;17104:19;;16763:366;;;:::o;17135:419::-;17301:4;17339:2;17328:9;17324:18;17316:26;;17388:9;17382:4;17378:20;17374:1;17363:9;17359:17;17352:47;17416:131;17542:4;17416:131;:::i;:::-;17408:139;;17135:419;;;:::o;17560:148::-;17662:11;17699:3;17684:18;;17560:148;;;;:::o;17714:377::-;17820:3;17848:39;17881:5;17848:39;:::i;:::-;17903:89;17985:6;17980:3;17903:89;:::i;:::-;17896:96;;18001:52;18046:6;18041:3;18034:4;18027:5;18023:16;18001:52;:::i;:::-;18078:6;18073:3;18069:16;18062:23;;17824:267;17714:377;;;;:::o;18097:595::-;18325:3;18347:95;18438:3;18429:6;18347:95;:::i;:::-;18340:102;;18459:95;18550:3;18541:6;18459:95;:::i;:::-;18452:102;;18571:95;18662:3;18653:6;18571:95;:::i;:::-;18564:102;;18683:3;18676:10;;18097:595;;;;;;:::o;18698:180::-;18746:77;18743:1;18736:88;18843:4;18840:1;18833:15;18867:4;18864:1;18857:15;18884:305;18924:3;18943:20;18961:1;18943:20;:::i;:::-;18938:25;;18977:20;18995:1;18977:20;:::i;:::-;18972:25;;19131:1;19063:66;19059:74;19056:1;19053:81;19050:107;;;19137:18;;:::i;:::-;19050:107;19181:1;19178;19174:9;19167:16;;18884:305;;;;:::o;19195:164::-;19335:16;19331:1;19323:6;19319:14;19312:40;19195:164;:::o;19365:366::-;19507:3;19528:67;19592:2;19587:3;19528:67;:::i;:::-;19521:74;;19604:93;19693:3;19604:93;:::i;:::-;19722:2;19717:3;19713:12;19706:19;;19365:366;;;:::o;19737:419::-;19903:4;19941:2;19930:9;19926:18;19918:26;;19990:9;19984:4;19980:20;19976:1;19965:9;19961:17;19954:47;20018:131;20144:4;20018:131;:::i;:::-;20010:139;;19737:419;;;:::o;20162:225::-;20302:34;20298:1;20290:6;20286:14;20279:58;20371:8;20366:2;20358:6;20354:15;20347:33;20162:225;:::o;20393:366::-;20535:3;20556:67;20620:2;20615:3;20556:67;:::i;:::-;20549:74;;20632:93;20721:3;20632:93;:::i;:::-;20750:2;20745:3;20741:12;20734:19;;20393:366;;;:::o;20765:419::-;20931:4;20969:2;20958:9;20954:18;20946:26;;21018:9;21012:4;21008:20;21004:1;20993:9;20989:17;20982:47;21046:131;21172:4;21046:131;:::i;:::-;21038:139;;20765:419;;;:::o;21190:169::-;21330:21;21326:1;21318:6;21314:14;21307:45;21190:169;:::o;21365:366::-;21507:3;21528:67;21592:2;21587:3;21528:67;:::i;:::-;21521:74;;21604:93;21693:3;21604:93;:::i;:::-;21722:2;21717:3;21713:12;21706:19;;21365:366;;;:::o;21737:419::-;21903:4;21941:2;21930:9;21926:18;21918:26;;21990:9;21984:4;21980:20;21976:1;21965:9;21961:17;21954:47;22018:131;22144:4;22018:131;:::i;:::-;22010:139;;21737:419;;;:::o;22162:191::-;22202:4;22222:20;22240:1;22222:20;:::i;:::-;22217:25;;22256:20;22274:1;22256:20;:::i;:::-;22251:25;;22295:1;22292;22289:8;22286:34;;;22300:18;;:::i;:::-;22286:34;22345:1;22342;22338:9;22330:17;;22162:191;;;;:::o;22359:229::-;22499:34;22495:1;22487:6;22483:14;22476:58;22568:12;22563:2;22555:6;22551:15;22544:37;22359:229;:::o;22594:366::-;22736:3;22757:67;22821:2;22816:3;22757:67;:::i;:::-;22750:74;;22833:93;22922:3;22833:93;:::i;:::-;22951:2;22946:3;22942:12;22935:19;;22594:366;;;:::o;22966:419::-;23132:4;23170:2;23159:9;23155:18;23147:26;;23219:9;23213:4;23209:20;23205:1;23194:9;23190:17;23183:47;23247:131;23373:4;23247:131;:::i;:::-;23239:139;;22966:419;;;:::o;23391:348::-;23431:7;23454:20;23472:1;23454:20;:::i;:::-;23449:25;;23488:20;23506:1;23488:20;:::i;:::-;23483:25;;23676:1;23608:66;23604:74;23601:1;23598:81;23593:1;23586:9;23579:17;23575:105;23572:131;;;23683:18;;:::i;:::-;23572:131;23731:1;23728;23724:9;23713:20;;23391:348;;;;:::o;23745:181::-;23885:33;23881:1;23873:6;23869:14;23862:57;23745:181;:::o;23932:366::-;24074:3;24095:67;24159:2;24154:3;24095:67;:::i;:::-;24088:74;;24171:93;24260:3;24171:93;:::i;:::-;24289:2;24284:3;24280:12;24273:19;;23932:366;;;:::o;24304:419::-;24470:4;24508:2;24497:9;24493:18;24485:26;;24557:9;24551:4;24547:20;24543:1;24532:9;24528:17;24521:47;24585:131;24711:4;24585:131;:::i;:::-;24577:139;;24304:419;;;:::o;24729:98::-;24780:6;24814:5;24808:12;24798:22;;24729:98;;;:::o;24833:168::-;24916:11;24950:6;24945:3;24938:19;24990:4;24985:3;24981:14;24966:29;;24833:168;;;;:::o;25007:360::-;25093:3;25121:38;25153:5;25121:38;:::i;:::-;25175:70;25238:6;25233:3;25175:70;:::i;:::-;25168:77;;25254:52;25299:6;25294:3;25287:4;25280:5;25276:16;25254:52;:::i;:::-;25331:29;25353:6;25331:29;:::i;:::-;25326:3;25322:39;25315:46;;25097:270;25007:360;;;;:::o;25373:640::-;25568:4;25606:3;25595:9;25591:19;25583:27;;25620:71;25688:1;25677:9;25673:17;25664:6;25620:71;:::i;:::-;25701:72;25769:2;25758:9;25754:18;25745:6;25701:72;:::i;:::-;25783;25851:2;25840:9;25836:18;25827:6;25783:72;:::i;:::-;25902:9;25896:4;25892:20;25887:2;25876:9;25872:18;25865:48;25930:76;26001:4;25992:6;25930:76;:::i;:::-;25922:84;;25373:640;;;;;;;:::o;26019:141::-;26075:5;26106:6;26100:13;26091:22;;26122:32;26148:5;26122:32;:::i;:::-;26019:141;;;;:::o;26166:349::-;26235:6;26284:2;26272:9;26263:7;26259:23;26255:32;26252:119;;;26290:79;;:::i;:::-;26252:119;26410:1;26435:63;26490:7;26481:6;26470:9;26466:22;26435:63;:::i;:::-;26425:73;;26381:127;26166:349;;;;:::o;26521:233::-;26560:3;26583:24;26601:5;26583:24;:::i;:::-;26574:33;;26629:66;26622:5;26619:77;26616:103;;;26699:18;;:::i;:::-;26616:103;26746:1;26739:5;26735:13;26728:20;;26521:233;;;:::o;26760:180::-;26808:77;26805:1;26798:88;26905:4;26902:1;26895:15;26929:4;26926:1;26919:15;26946:185;26986:1;27003:20;27021:1;27003:20;:::i;:::-;26998:25;;27037:20;27055:1;27037:20;:::i;:::-;27032:25;;27076:1;27066:35;;27081:18;;:::i;:::-;27066:35;27123:1;27120;27116:9;27111:14;;26946:185;;;;:::o;27137:176::-;27169:1;27186:20;27204:1;27186:20;:::i;:::-;27181:25;;27220:20;27238:1;27220:20;:::i;:::-;27215:25;;27259:1;27249:35;;27264:18;;:::i;:::-;27249:35;27305:1;27302;27298:9;27293:14;;27137:176;;;;:::o;27319:180::-;27367:77;27364:1;27357:88;27464:4;27461:1;27454:15;27488:4;27485:1;27478:15

Swarm Source

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